:root {
  --bg: #f5efe9;
  --surface: rgba(255, 252, 249, 0.72);
  --surface-strong: #fcf8f4;
  --text: #231d18;
  --muted: #72675d;
  --soft: #9c9187;
  --line: rgba(92, 69, 52, 0.18);
  --line-strong: rgba(92, 69, 52, 0.34);
  --accent: #7e4c2d;
  --accent-soft: rgba(126, 76, 45, 0.12);
  --shadow: 0 18px 48px rgba(61, 40, 24, 0.08);
  --page-max: 1240px;
  --content-max: 760px;
  --wide-max: 980px;
  --label-col: 12rem;
  --split-gap: 2rem;
  --radius: 28px;
  --font-body: "Vollkorn", Georgia, serif;
  --font-ui: "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(170, 120, 81, 0.18), transparent 28rem),
    radial-gradient(circle at top right, rgba(119, 86, 57, 0.12), transparent 24rem),
    linear-gradient(180deg, #efe6dc 0%, #f7f2ec 20%, #f5efe9 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
}

a,
button {
  touch-action: manipulation;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 30;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.page-frame {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2.5rem), var(--page-max));
  margin: 0 auto;
  padding: max(1.4rem, env(safe-area-inset-top)) 0 max(3rem, env(safe-area-inset-bottom));
}

.page-glow {
  position: fixed;
  z-index: 1;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
}

.page-glow-one {
  width: 16rem;
  height: 16rem;
  top: 8rem;
  right: -4rem;
  background: rgba(167, 120, 79, 0.18);
}

.page-glow-two {
  width: 18rem;
  height: 18rem;
  bottom: 5rem;
  left: -4rem;
  background: rgba(90, 104, 88, 0.12);
}

.site-header,
.content,
.site-footer {
  position: relative;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: start;
  padding: 0.75rem 0 1.15rem;
}

.site-brand {
  max-width: 56rem;
}

.site-line {
  display: block;
  margin: 0;
  padding-left: clamp(0.35rem, 1.2vw, 0.9rem);
  line-height: 1.55;
}

.site-name {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.site-separator {
  color: var(--soft);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  margin: 0 0.25rem;
}

.site-tagline {
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 48rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
  align-items: center;
  font-family: var(--font-ui);
}

.site-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.85rem;
}

.site-nav a {
  padding: 0.7rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.4);
}

.site-nav a.is-active {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.62);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--text);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.8);
}

.social-link svg {
  width: 1.02rem;
  height: 1.02rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.content {
  display: grid;
  gap: 2rem;
}

.content h1,
.content h2,
.content h3,
.content p,
.content ul,
.content ol,
.content dl,
.content hr {
  margin: 0;
}

.content h1,
.content h2 {
  text-wrap: balance;
}

.page-intro,
.hero,
.split-section,
.page-section,
.qa-section {
  position: relative;
}

.hero,
.page-intro,
.page-section,
.qa-section,
.site-footer {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero,
.page-intro {
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(16rem, 0.9fr);
  gap: 2.2rem;
  padding: clamp(2.2rem, 3.5vw, 3.4rem);
  min-height: clamp(27rem, calc(70svh - 3.5rem), 38rem);
  align-items: center;
}

.hero::before,
.page-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 55%),
    linear-gradient(180deg, transparent 0%, rgba(80, 51, 30, 0.08) 100%);
  pointer-events: none;
}

.hero-copy,
.hero-aside,
.page-intro-copy {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 42rem;
}

.eyebrow,
.section-label,
.section-kicker,
.qa-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  max-width: 12ch;
  margin-top: 1rem;
  font-size: clamp(3rem, 5.9vw, 5.2rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero-intro,
.page-intro-lead,
.section-lead {
  max-width: 34rem;
  margin-top: 1.2rem;
  color: rgba(35, 29, 24, 0.86);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.button-link:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(92, 69, 52, 0.5);
}

.button-link-secondary {
  background: transparent;
}

.hero-note {
  max-width: 32rem;
  margin-top: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.hero-aside {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 1.3rem;
}

.hero-panel,
.directory-group,
.project-list,
.qa-list,
.page-section {
  border-radius: var(--radius);
  border: 1px solid rgba(92, 69, 52, 0.12);
  background: rgba(255, 255, 255, 0.54);
}

.hero-panel {
  padding: 1.4rem 1.4rem 1.35rem;
}

.hero-panel h2,
.project-list h2,
.qa-list h2,
.page-section h2,
.split-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.directory-group h2 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-panel p {
  margin-top: 0.65rem;
  color: var(--muted);
  line-height: 1.58;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-facts div {
  padding: 1rem 0 0;
  border-top: 1px solid rgba(92, 69, 52, 0.14);
}

.hero-facts dt {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
}

.hero-facts dd {
  margin: 0.35rem 0 0;
  font-size: 1.02rem;
}

.split-section {
  display: grid;
  grid-template-columns: var(--label-col) minmax(0, 1fr);
  gap: var(--split-gap);
  align-items: start;
}

.split-section + .split-section {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.split-section-body {
  display: grid;
  gap: 1.3rem;
  max-width: var(--wide-max);
}

.statement-grid,
.directory-grid,
.two-column-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.statement {
  padding: 1.15rem 1.2rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(92, 69, 52, 0.1);
}

.statement strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.project-list,
.directory-group,
.qa-list,
.page-section {
  padding: clamp(1.35rem, 2vw, 2rem);
}

.project-list header,
.directory-group header,
.qa-list header,
.page-section header {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
}

.section-kicker {
  color: var(--soft);
}

.section-copy {
  color: var(--muted);
  max-width: 42rem;
}

.feature-list,
.directory-list,
.simple-list {
  list-style: none;
  padding: 0;
}

.feature-list {
  display: grid;
}

.feature-list li,
.directory-list li,
.simple-list li {
  border-top: 1px solid rgba(92, 69, 52, 0.12);
}

.feature-list li:first-child,
.directory-list li:first-child,
.simple-list li:first-child {
  border-top: none;
}

.feature-link,
.directory-link,
.inline-link-row {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0;
  color: inherit;
  text-decoration: none;
}

.feature-link:hover .feature-title,
.directory-link:hover .directory-title,
.inline-link-row:hover .inline-link-title {
  color: var(--accent);
}

.feature-title,
.directory-title,
.inline-link-title {
  font-size: 1.12rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.feature-meta,
.directory-copy,
.inline-link-copy {
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(92, 69, 52, 0.1);
  margin-top: 0.75rem;
}

.tag-row li {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.page-intro {
  padding: clamp(1.8rem, 4vw, 3rem);
}

.page-privat .content,
.page-private .content {
  gap: 2.3rem;
}

.page-privat .page-intro,
.page-private .page-intro {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(126, 76, 45, 0.06)),
    rgba(255, 252, 249, 0.74);
}

.locale-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  width: fit-content;
  margin-bottom: 0.75rem;
  padding: 0.24rem;
  border: 1px solid rgba(92, 69, 52, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 18px rgba(61, 40, 24, 0.05);
}

.locale-switch-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.8rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.locale-switch-link:hover {
  color: var(--text);
}

.locale-switch-link.is-active {
  background: rgba(126, 76, 45, 0.12);
  color: var(--text);
}

.page-intro h1 {
  max-width: 14ch;
  margin-top: 0.85rem;
  font-size: clamp(2.7rem, 5.4vw, 4.8rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.social-spotlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.3rem;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at top right, rgba(126, 76, 45, 0.16), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(250, 243, 236, 0.94));
  box-shadow: var(--shadow);
}

.social-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.24), transparent 48%),
    linear-gradient(180deg, transparent 0%, rgba(126, 76, 45, 0.06) 100%);
  pointer-events: none;
}

.social-spotlight-copy,
.social-profile-grid {
  position: relative;
  z-index: 1;
}

.social-spotlight h2 {
  max-width: 11ch;
  font-size: clamp(2.1rem, 4.6vw, 3.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.social-profile-grid {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.social-profile-card {
  display: grid;
  gap: 0.5rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(92, 69, 52, 0.14);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.68);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.social-profile-card:hover {
  transform: translateY(-2px);
  border-color: rgba(92, 69, 52, 0.28);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(61, 40, 24, 0.08);
}

.social-profile-label {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.social-profile-card strong {
  font-family: var(--font-ui);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.social-profile-copy {
  max-width: 28ch;
  color: var(--muted);
}

.page-section-warm {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(126, 76, 45, 0.06)),
    rgba(255, 255, 255, 0.52);
}

.page-section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(247, 241, 234, 0.9)),
    rgba(255, 255, 255, 0.56);
}

.private-tag-row {
  margin-top: 1.35rem;
}

.private-tag-row li {
  background: rgba(255, 255, 255, 0.82);
}

.directory-grid {
  align-items: start;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(92, 69, 52, 0.14);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  text-decoration: none;
}

.contact-address {
  margin-top: 1rem;
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

.qa-section {
  display: grid;
  gap: 1.4rem;
  border-radius: calc(var(--radius) + 2px);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.page-privat .qa-section,
.page-private .qa-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(251, 247, 243, 0.86)),
    rgba(255, 255, 255, 0.54);
}

.qa-section header {
  max-width: 42rem;
}

.page-privat .qa-section header,
.page-private .qa-section header {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(92, 69, 52, 0.1);
}

.qa-list {
  display: grid;
  gap: 0;
  padding: 0;
}

.qa-item {
  display: grid;
  grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.4rem clamp(1rem, 3vw, 1.5rem);
  border-top: 1px solid rgba(92, 69, 52, 0.12);
}

.qa-item:first-child {
  border-top: none;
}

.page-privat .qa-item,
.page-private .qa-item {
  transition: background-color 0.2s ease;
}

.page-privat .qa-item:hover,
.page-private .qa-item:hover {
  background: rgba(126, 76, 45, 0.035);
}

.qa-question {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
}

.qa-answer {
  color: var(--muted);
}

.qa-answer p + p {
  margin-top: 0.9rem;
}

.simple-list {
  display: grid;
}

.inline-link-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 1rem;
}

.inline-link-title {
  font-size: 1.04rem;
}

.inline-link-copy {
  font-family: var(--font-ui);
  font-size: 0.86rem;
  white-space: nowrap;
}

.content p {
  max-width: var(--content-max);
}

.content strong {
  font-weight: 600;
}

.content hr {
  border: none;
  border-top: 1px solid var(--line);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.2rem 1.4rem;
  border-radius: 1.25rem;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.82rem;
}

.page-index .site-footer {
  width: min(100%, calc(var(--label-col) + var(--split-gap) + var(--wide-max)));
}

.site-footer p {
  margin: 0;
}

.site-footer-left {
  margin: 0;
}

.site-footer-updated {
  text-align: right;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--text);
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .social-spotlight,
  .qa-item,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .site-actions {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .split-section {
    gap: 0.9rem;
  }

  .section-label {
    padding-top: 0.4rem;
  }

  .qa-item {
    gap: 0.5rem;
  }

  .site-footer p:last-child {
    text-align: left;
  }

  .site-footer-updated {
    text-align: left;
  }

}

@media (max-width: 720px) {
  body {
    font-size: 1.02rem;
  }

  .site-line {
    padding-left: 0;
  }

  .site-tagline {
    font-size: 0.92rem;
  }

  .page-frame {
    width: min(calc(100% - 2rem), var(--page-max));
  }

  .hero,
  .page-intro,
  .page-section,
  .qa-section,
  .social-spotlight,
  .site-footer {
    border-radius: 1.3rem;
  }

  .statement-grid,
  .directory-grid,
  .two-column-grid,
  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-intro h1 {
    max-width: none;
  }

  .button-link,
  .contact-chip,
  .locale-switch {
    width: 100%;
    justify-content: center;
  }

  .site-nav {
    gap: 0.5rem;
  }

  .site-nav a {
    padding-inline: 0.9rem;
  }

  .inline-link-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .inline-link-copy {
    white-space: normal;
  }

  .social-spotlight h2 {
    max-width: none;
  }

  .social-profile-card {
    border-radius: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
