/* ========== TOKENS ========== */
:root {
  /* Light (Oberfläche) */
  --paper: #F4F1EB;
  --paper-2: #EDE8DD;
  --ink: #1A1A1A;
  --ink-soft: #2A2A2A;
  --muted: #6B6258;
  --slate: #3A4A52;
  --stone: #A89A85;
  --sand: #D9D2C5;
  --line: rgba(26,26,26,0.12);
  --line-2: rgba(26,26,26,0.06);
  --accent: oklch(0.55 0.06 220);

  /* Tiefe (deep) — wird beim Scrollen einlerpt */
  --deep-bg: #0E1518;
  --deep-fg: #E8E4DA;
  --deep-line: rgba(232,228,218,0.12);

  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Inter Tight", -apple-system, "Helvetica Neue", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  --maxw: 1440px;
  --gutter: clamp(20px, 4vw, 64px);

  --t-fast: 220ms cubic-bezier(.2,.7,.2,1);
  --t-med: 480ms cubic-bezier(.2,.7,.2,1);
  --t-slow: 900ms cubic-bezier(.2,.7,.2,1);
}

[data-theme="dark"] {
  --paper: #0E1518;
  --paper-2: #14202A;
  --ink: #ECE7DC;
  --ink-soft: #D6D1C5;
  --muted: #8A8378;
  --slate: #B8C4CC;
  --stone: #6B6258;
  --sand: #1F2A33;
  --line: rgba(236,231,220,0.14);
  --line-2: rgba(236,231,220,0.06);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background var(--t-med), color var(--t-med);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }

/* ========== TYPO ========== */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; }
.serif-light { font-family: var(--serif); font-weight: 300; font-style: normal; letter-spacing: -0.01em; }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 300; }
.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.h-display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  font-variation-settings: "SOFT" 30, "opsz" 144;
}
.h-1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.h-2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 3.8vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.015em;
}
.h-3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: var(--ink-soft);
  text-wrap: pretty;
}
p { text-wrap: pretty; }

/* ========== LAYOUT ========== */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section {
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative;
}
.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  background: color-mix(in oklab, var(--paper) 84%, transparent);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border-bottom: 1px solid var(--line-2);
  transition: background var(--t-med), border-color var(--t-med), color var(--t-med);
}
.nav-logo {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink); transition: background var(--t-med);
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
  transition: color var(--t-fast), opacity var(--t-fast);
  position: relative;
  padding: 6px 0;
}
.nav-link:hover { opacity: 0.6; }
.nav-link.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--ink);
}
.nav-badge {
  font-family: var(--sans);
  font-size: 13px; font-weight: 500;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex; align-items: center; gap: 8px;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.nav-badge:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.nav-badge .dot-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: oklch(0.65 0.13 145);
  box-shadow: 0 0 0 0 oklch(0.65 0.13 145 / 0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 oklch(0.65 0.13 145 / 0.5); }
  70% { box-shadow: 0 0 0 8px oklch(0.65 0.13 145 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.65 0.13 145 / 0); }
}

/* Nav on dark sections */
.nav.on-dark {
  background: color-mix(in oklab, #0E1518 70%, transparent);
  color: var(--deep-fg);
  border-bottom-color: var(--deep-line);
}
.nav.on-dark .nav-link { color: rgba(232,228,218,0.78); }
.nav.on-dark .nav-logo .dot { background: var(--deep-fg); }
.nav.on-dark .nav-badge { border-color: rgba(232,228,218,0.2); }

/* ========== FLOATING CTA ========== */
.fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 22px 14px 18px;
  background: var(--ink); color: var(--paper);
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  box-shadow: 0 8px 30px rgba(0,0,0,0.16), 0 2px 6px rgba(0,0,0,0.08);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.22), 0 2px 6px rgba(0,0,0,0.08);
}
.fab .dot-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: oklch(0.7 0.16 145);
  animation: pulse 2.4s infinite;
}
.fab .arrow { transition: transform var(--t-fast); }
.fab:hover .arrow { transform: translateX(3px); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  font-size: 14px; font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all var(--t-fast);
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--slate); transform: translateY(-1px); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.btn .arrow { transition: transform var(--t-fast); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 9vw, 130px);
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease, transform 8s ease-out;
  transform: scale(1.04);
}
.hero-img.active {
  opacity: 1;
  transform: scale(1.0);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      color-mix(in oklab, var(--paper) 40%, transparent) 0%,
      color-mix(in oklab, var(--paper) 8%, transparent) 30%,
      color-mix(in oklab, var(--paper) 30%, transparent) 75%,
      var(--paper) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
}
.hero-meta {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 36px;
  gap: 40px;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow .line { width: 40px; height: 1px; background: currentColor; opacity: 0.4; }

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(54px, 9.5vw, 152px);
  line-height: 0.93;
  letter-spacing: -0.03em;
  font-variation-settings: "SOFT" 30, "opsz" 144;
  max-width: 1200px;
}
.hero-title .em {
  font-style: italic;
  font-weight: 300;
  color: var(--slate);
}
.hero-sub {
  margin-top: 36px;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  max-width: 580px;
  color: var(--ink-soft);
}
.hero-cta-row {
  margin-top: 44px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.hero-counter {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(60px, 9vw, 130px);
  z-index: 3;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-align: right;
}
.hero-counter .num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 6px;
}
.hero-counter .dots {
  display: flex; gap: 6px;
  margin-top: 16px;
  justify-content: flex-end;
}
.hero-counter .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink);
  opacity: 0.18;
  transition: opacity var(--t-fast), transform var(--t-fast);
  cursor: pointer;
}
.hero-counter .dot.active { opacity: 1; transform: scale(1.3); }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  left: var(--gutter);
  bottom: 32px;
  z-index: 3;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-hint .bar {
  width: 1px; height: 38px;
  background: linear-gradient(180deg, var(--ink), transparent);
  opacity: 0.5;
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .55s; }

/* ========== DEEP TRANSITION SECTION ========== */
/* Hintergrund "atmet" beim Scroll von paper → deep-bg.
   Konkret realisiert über class .is-deep auf <body>, geändert via IntersectionObserver. */
.deep-shift {
  background: var(--deep-bg);
  color: var(--deep-fg);
  transition: background var(--t-slow), color var(--t-med);
}
.deep-shift .lede { color: rgba(232,228,218,0.78); }
.deep-shift .eyebrow { color: rgba(232,228,218,0.55); }
.deep-shift .h-display, .deep-shift .h-1, .deep-shift .h-2, .deep-shift .h-3 {
  color: var(--deep-fg);
}
.deep-shift hr, .deep-shift .rule { background: var(--deep-line); }

/* ========== WOFÜR DEEP — GROSSE SETZUNG ========== */
.statement-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .statement-grid { grid-template-columns: 1fr; gap: 30px; }
}
.statement-side {
  position: sticky; top: 120px;
}
.statement-headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.8vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.statement-headline em {
  font-style: italic;
  color: var(--slate);
}
.statement-body {
  margin-top: 50px;
  font-size: 19px;
  line-height: 1.65;
  max-width: 60ch;
  color: var(--ink-soft);
}
.statement-body p + p { margin-top: 1.2em; }
.statement-body strong { color: var(--ink); font-weight: 500; }

/* ========== TIEFENACHSE / DEPTH RAIL ========== */
.depth-rail {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 60px;
  margin-top: 80px;
}
.depth-rail .rail {
  position: relative;
  width: 1px;
  background: var(--line);
  margin-left: 28px;
}
.depth-rail .rail::after {
  content: ""; position: absolute; left: -3px; top: 0;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink);
}
.depth-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: start;
  gap: 30px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.depth-step:last-child { border-bottom: 0; }
.depth-step .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  padding-top: 6px;
}
.depth-step .label-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 30px;
  flex-wrap: wrap;
}
.depth-step .label {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.depth-step .label em { font-style: italic; }
.depth-step .desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 36ch;
  text-align: right;
}

/* ========== ZIELGRUPPEN-CARDS (FÜR WEN) ========== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 1000px) {
  .audience-grid { grid-template-columns: 1fr; }
}
.audience-card {
  background: var(--paper);
  padding: 48px 38px 44px;
  display: flex; flex-direction: column;
  position: relative;
  min-height: 520px;
  cursor: pointer;
  transition: background var(--t-fast);
}
.audience-card:hover { background: var(--paper-2); }
.audience-card .audience-img {
  height: 220px;
  margin: -48px -38px 32px;
  background-size: cover; background-position: center;
  filter: saturate(0.88);
  transition: filter var(--t-med), transform var(--t-med);
}
.audience-card:hover .audience-img { filter: saturate(1); transform: scale(1.02); }
.audience-card .audience-num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: var(--muted);
  margin-bottom: 16px;
}
.audience-card h3 {
  font-family: var(--serif); font-weight: 300;
  font-size: 32px; line-height: 1.08; letter-spacing: -0.015em;
  margin: 0 0 18px;
}
.audience-card .quote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 19px; line-height: 1.4; color: var(--slate);
  margin: 0 0 22px;
}
.audience-card .body {
  font-size: 15px; line-height: 1.6; color: var(--ink-soft);
  margin-bottom: 28px;
}
.audience-card .for-whom {
  font-size: 14px; line-height: 1.55;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: auto;
}
.audience-card .for-whom .label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 10px; display: block;
}
.audience-card .arrow-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--ink);
  margin-top: 22px;
}
.audience-card .arrow-link .arrow { transition: transform var(--t-fast); }
.audience-card:hover .arrow-link .arrow { transform: translateX(5px); }

.audience-card.coming-soon { opacity: 0.85; }
.audience-card.coming-soon .badge {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  padding: 4px 9px; border: 1px solid var(--line); border-radius: 4px;
  background: var(--paper);
}

/* ========== ARBEITSWEISE / PRINCIPLES ========== */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 80px;
}
@media (max-width: 900px) { .principles { grid-template-columns: 1fr; gap: 40px; } }
.principle {
  border-top: 1px solid currentColor;
  padding-top: 28px;
  position: relative;
}
.principle .pn {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.2em;
  margin-bottom: 18px;
  opacity: 0.6;
}
.principle h4 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
}
.principle h4 em { font-style: italic; }
.principle p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.78;
  max-width: 32ch;
}

/* ========== ÜBER MICH (vertrauen) ========== */
.trust-block {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .trust-block { grid-template-columns: 1fr; gap: 40px; } }
.trust-portrait {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.35) contrast(1.04);
}
.trust-text .h-1 { margin: 18px 0 28px; }
.trust-text .lede { margin-bottom: 26px; }

/* ========== END CTA ========== */
.end-cta {
  text-align: center;
  padding: clamp(80px, 12vw, 180px) 0;
}
.end-cta .h-display { max-width: 16ch; margin: 0 auto 50px; text-wrap: balance; }
.end-cta .links {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 100px var(--gutter) 36px;
}
[data-theme="dark"] .footer { background: #050709; }
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(244,241,235,0.12);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: 36px; line-height: 1; letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.footer-brand p {
  color: rgba(244,241,235,0.65);
  font-size: 15px; max-width: 30ch;
}
.footer-col h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(244,241,235,0.5);
  margin: 0 0 18px;
}
.footer-col a, .footer-col p {
  display: block;
  color: rgba(244,241,235,0.85);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  max-width: var(--maxw);
  margin: 36px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  color: rgba(244,241,235,0.4);
}

/* ========== DEEP PAGE specific ========== */
.deep-hero {
  min-height: 100vh;
  background: var(--deep-bg);
  color: var(--deep-fg);
  display: flex; align-items: flex-end;
  padding: 0 var(--gutter) clamp(80px, 12vw, 160px);
  position: relative;
  overflow: hidden;
}
.deep-hero .bg-art {
  position: absolute; inset: 0;
  background-image: url('assets/img/04-zen-garten-beton-meer.png');
  background-size: cover;
  background-position: center;
  opacity: 0.42;
  filter: grayscale(0.2);
}
.deep-hero .bg-fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,21,24,0.65) 0%, rgba(14,21,24,0.85) 60%, var(--deep-bg) 100%);
}
.deep-hero .inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.deep-hero .h-display { color: var(--deep-fg); font-weight: 300; }
.deep-hero .h-display em { color: rgba(232,228,218,0.65); font-style: italic; }
.deep-hero .lede { color: rgba(232,228,218,0.78); max-width: 640px; }

/* depth scale */
.depth-scale {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
}
@media (max-width: 900px) { .depth-scale { grid-template-columns: 1fr; gap: 30px; } }
.depth-layer {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(232,228,218,0.18);
  align-items: start;
}
.depth-layer:last-child { border-bottom: 0; }
.depth-layer .num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; opacity: 0.55; padding-top: 8px; }
.depth-layer h3 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1; margin: 0 0 4px; color: var(--deep-fg);
  letter-spacing: -0.015em;
}
.depth-layer h3 em { font-style: italic; opacity: 0.7; }
.depth-layer .role {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.55;
}
.depth-layer p {
  font-size: 16px; line-height: 1.6; color: rgba(232,228,218,0.78);
  margin: 0;
}

/* landkarten */
.maps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid rgba(232,228,218,0.18);
}
@media (max-width: 1000px) { .maps { grid-template-columns: 1fr; } }
.map-card {
  padding: 56px 44px;
  border-right: 1px solid rgba(232,228,218,0.18);
  border-top: 1px solid rgba(232,228,218,0.18);
  border-bottom: 1px solid rgba(232,228,218,0.18);
  display: flex; flex-direction: column;
  position: relative;
}
.map-card .num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  color: rgba(232,228,218,0.55); margin-bottom: 22px;
}
.map-card h4 {
  font-family: var(--serif); font-weight: 300;
  font-size: 32px; line-height: 1.06; letter-spacing: -0.015em;
  margin: 0 0 24px; color: var(--deep-fg);
}
.map-card .summary {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 18px; line-height: 1.4;
  color: rgba(232,228,218,0.75); margin: 0 0 26px;
}
.map-card .body {
  font-size: 14px; line-height: 1.65;
  color: rgba(232,228,218,0.7);
}

/* simple inline rule */
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* tweaks toggle button (light/dark) — minimal */
.theme-tog {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--t-fast);
}
.theme-tog:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.nav.on-dark .theme-tog { border-color: rgba(232,228,218,0.2); color: rgba(232,228,218,0.78); }

/* page switcher pill */
.page-pill {
  display: inline-flex;
  padding: 4px;
  background: var(--paper-2);
  border-radius: 999px;
  border: 1px solid var(--line);
}
.page-pill button {
  padding: 8px 16px;
  font-size: 13px; font-weight: 500;
  border-radius: 999px;
  color: var(--muted);
  transition: all var(--t-fast);
}
.page-pill button.on { background: var(--ink); color: var(--paper); }

/* stub page */
.stub {
  min-height: 100vh;
  padding: 160px var(--gutter) 100px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.stub .stub-meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 24px;
}
.stub .h-display { max-width: 18ch; margin-bottom: 36px; }
.stub .lede { max-width: 620px; margin-bottom: 60px; }
.stub-skeleton {
  display: grid; grid-template-columns: 5fr 7fr; gap: 60px;
  border-top: 1px solid var(--line);
  padding-top: 60px;
}
@media (max-width: 900px) { .stub-skeleton { grid-template-columns: 1fr; } }
.stub-skeleton .label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  color: var(--muted); text-transform: uppercase;
}
.stub-checklist {
  list-style: none; padding: 0; margin: 0;
}
.stub-checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.stub-checklist li::before {
  content: "→"; color: var(--muted); font-family: var(--mono); flex-shrink: 0;
}

/* image-island helper */
.island {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  margin: clamp(60px,8vw,120px) 0;
}
.island.tall { aspect-ratio: 4/5; }
.island.wide { aspect-ratio: 21/9; }

/* signs / list 5 punkte */
.signs-list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--deep-line);
}
.signs-list li {
  display: grid; grid-template-columns: 50px 1fr;
  gap: 30px; padding: 26px 0;
  border-bottom: 1px solid var(--deep-line);
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
  color: var(--deep-fg);
  letter-spacing: -0.015em;
}
.signs-list li .n {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; color: rgba(232,228,218,0.5);
  padding-top: 12px;
}
.signs-list li em { font-style: italic; color: rgba(232,228,218,0.7); }

/* reference quote */
.refquote {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.1; letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 22ch;
  font-style: italic;
}
.refquote .src {
  display: block; font-style: normal;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-top: 26px;
}

/* small responsive */
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-badge { font-size: 12px; padding: 6px 10px; }
  .fab { padding: 12px 18px; font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .hero-counter { display: none; }
  .scroll-hint { display: none; }
}
