/* ============================================================
   Moritz Denninger | Persönlichkeitscoach
   Palette aus den Fotos abgeleitet: warmes Creme-Papier,
   tiefes Navy (Hemd/Anker), Sand als warmer Lichtton.
   Radius-System: Buttons = Pill, Karten = 20px, Inputs = 12px.
   ============================================================ */

@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('../fonts/cabinet-grotesk-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('../fonts/cabinet-grotesk-800.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;

  --paper: #F7F4ED;
  --paper-tint: #EFEAE0;
  --card: #FCFAF5;
  --ink: #1B2A3A;
  --ink-soft: rgb(27 42 58 / 0.85);
  --ink-faint: rgb(27 42 58 / 0.12);
  --navy: #23405E;
  --navy-deep: #16273A;
  --sand: #E9D5A8;
  --cream: #F7F4ED;
  --cream-soft: rgb(247 244 237 / 0.85);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.32, 0.72, 0, 1);

  --radius-card: 20px;
  --radius-input: 12px;

  --shadow-soft: 0 24px 60px -28px rgb(22 39 58 / 0.35);
  --shadow-lift: 0 12px 32px -16px rgb(22 39 58 / 0.30);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Satoshi', 'Avenir Next', 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

/* Feiner Papier-Grain, fixiert, nie auf scrollenden Containern */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }

h1, h2, h3 {
  font-family: 'Cabinet Grotesk', 'Satoshi', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 1.25rem;
}

h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy); }

.container {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--navy);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-input) 0;
}
.skip-link:focus { left: 0; }

/* ============ Buttons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 1rem 1.6rem;
  cursor: pointer;
  transition: transform 0.45s var(--ease-snap), background-color 0.45s var(--ease-snap), box-shadow 0.45s var(--ease-snap), color 0.45s var(--ease-snap);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.97); }
.btn:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  margin-right: -0.5rem;
  border-radius: 999px;
  background: rgb(27 42 58 / 0.08);
  transition: transform 0.45s var(--ease-snap);
}
.btn:hover .btn-icon { transform: translateX(3px); }

.btn-primary {
  background: var(--navy);
  color: var(--cream);
  box-shadow: var(--shadow-lift);
}
.btn-primary:hover { background: var(--navy-deep); }
.btn-primary .btn-icon { background: rgb(247 244 237 / 0.16); }

.btn-light {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 16px 40px -16px rgb(0 0 0 / 0.45);
}
.btn-light:hover { background: #FFFFFF; }

.btn-ghost {
  background: rgb(22 39 58 / 0.25);
  color: var(--cream);
  border: 1px solid rgb(247 244 237 / 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgb(22 39 58 / 0.45); }

.btn-nav {
  background: var(--navy);
  color: var(--cream);
  padding: 0.7rem 1.2rem;
  font-size: 0.92rem;
}
.btn-nav:hover { background: var(--navy-deep); }

/* ============ Navigation ============ */

.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background-color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.nav-inner {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--cream);
  transition: color 0.5s var(--ease-out);
}
.nav-brand-sub {
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
  text-decoration: none;
  color: var(--cream);
  opacity: 0.9;
  transition: opacity 0.3s var(--ease-out), color 0.5s var(--ease-out);
}
.nav-links a:hover { opacity: 1; }

.nav-lang {
  margin-left: auto;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--cream);
  border: 1px solid rgb(247 244 237 / 0.5);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  transition: background-color 0.3s var(--ease-out), color 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
}
.nav-lang:hover { background: rgb(247 244 237 / 0.14); }
.nav-links + .nav-lang { margin-left: 0; }

.nav.is-scrolled .nav-lang {
  color: var(--ink);
  border-color: rgb(27 42 58 / 0.3);
}
.nav.is-scrolled .nav-lang:hover { background: rgb(27 42 58 / 0.07); }

.nav.is-scrolled {
  background: rgb(247 244 237 / 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--ink-faint), 0 12px 32px -24px rgb(22 39 58 / 0.35);
}
.nav.is-scrolled .nav-brand,
.nav.is-scrolled .nav-links a { color: var(--ink); }

/* ============ Hero ============ */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgb(13 22 33 / 0.82) 0%, rgb(13 22 33 / 0.35) 45%, rgb(13 22 33 / 0.30) 100%),
    linear-gradient(105deg, rgb(13 22 33 / 0.40) 0%, rgb(13 22 33 / 0) 55%);
}

.hero-content {
  width: 100%;
  padding-top: 7rem;
  padding-bottom: clamp(3.5rem, 8vh, 6.5rem);
}

.hero-title {
  max-width: 17ch;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  color: #FDFCF9;
  text-wrap: balance;
  margin-bottom: 1.4rem;
}
.hero-line { display: block; }
.hero-line-warm { color: var(--sand); }

.hero-sub {
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: rgb(253 252 249 / 0.92);
  text-shadow: 0 1px 8px rgb(0 0 0 / 0.45);
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ============ Retreat-Seite ============ */

.retreat-hero {
  padding-top: calc(72px + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
}

.split-retreat {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}

.retreat-eyebrow {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.retreat-title {
  font-size: clamp(2.3rem, 4.8vw, 3.6rem);
  max-width: 16ch;
  text-wrap: balance;
}

.retreat-sub {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--navy);
  max-width: 30ch;
  margin-bottom: 1.25rem;
}

.retreat-intro {
  max-width: 54ch;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.retreat-note {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin: 1rem 0 0;
}

.retreat-video-figure { max-width: 26rem; justify-self: end; }
.retreat-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius-card);
  background: var(--ink-faint);
}

.check-grid-retreat { max-width: 60rem; }

.host { max-width: 46rem; margin-bottom: 2.25rem; }
.host:last-child { margin-bottom: 0; }
.host h3 { color: var(--sand); margin-bottom: 0.5rem; }
.host p { color: var(--cream-soft); }
.host a { color: var(--sand); }

.expect-list-retreat {
  grid-template-columns: 1fr;
  max-width: 34rem;
}

@media (max-width: 900px) {
  .split-retreat { grid-template-columns: 1fr; }
  .retreat-video-figure {
    order: 1;
    justify-self: center;
    max-width: 22rem;
    width: 100%;
  }
}

/* ============ Sections ============ */

.section { padding-block: clamp(5rem, 11vw, 8.5rem); }
.section-tint { background: var(--paper-tint); }

.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-ansatz { padding-block: clamp(4rem, 8vw, 6.5rem); }
.section-intro {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 38rem;
}

/* ============ Split (Ansatz / Kontakt) ============ */

.split {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.split-text h2 { max-width: 16ch; }
.split-text > p { max-width: 54ch; color: var(--ink-soft); }
.split-text > p.lead-line {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 1.6rem;
}

/* Doppelrand-Rahmen: Bild liegt wie in einer Passepartout-Schale */
.split-figure { margin: 0; }
.figure-shell {
  background: rgb(27 42 58 / 0.05);
  border: 1px solid var(--ink-faint);
  border-radius: calc(var(--radius-card) + 8px);
  padding: 8px;
  box-shadow: var(--shadow-soft);
}
.figure-shell img {
  border-radius: var(--radius-card);
  box-shadow: inset 0 1px 1px rgb(255 255 255 / 0.2);
}

/* ============ Check-Grid (Für wen) ============ */

.check-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2.5rem;
  max-width: 56rem;
}
.check-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--ink-faint);
}

.check {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-top: 0.05rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--sand);
}

/* ============ Bento (Themenbereiche) ============ */

.bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(150px, auto);
  gap: 1rem;
}

.bento-cell {
  background: var(--card);
  border: 1px solid var(--ink-faint);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.bento-cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.bento-cell h3 { margin-bottom: 0.4rem; }
.bento-cell p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  margin: 0;
}

.bento-img {
  grid-row: span 2;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-card);
}
.bento-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-navy {
  grid-column: span 2;
  background: var(--navy);
  border-color: transparent;
}
.bento-navy h3 { color: var(--cream); }
.bento-navy p { color: var(--cream-soft); }

/* ============ Story-Kapitel (Mein Weg) ============ */

.chapter {
  background: var(--navy-deep);
  color: var(--cream-soft);
}
.chapter h2 { color: var(--cream); }

.chapter-inner { max-width: 46rem; }

.chapter-quote {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--sand);
  margin: 0 0 2.5rem;
}

.chapter-body p { margin-bottom: 1.4rem; }

.chapter-conclusion {
  font-weight: 700;
  color: var(--cream);
  font-size: 1.15rem;
}

.chapter-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 3.5rem 0 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgb(247 244 237 / 0.16);
}
.chapter-facts dt {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--sand);
  letter-spacing: -0.01em;
}
.chapter-facts dd {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: rgb(247 244 237 / 0.72);
}

/* ============ Kontakt ============ */

.section-kontakt { background: var(--paper); }

.split-kontakt { align-items: start; }

.expect-list {
  list-style: none;
  margin: 1.75rem 0 2.25rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.5rem;
}
.expect-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.98rem;
  font-weight: 500;
}
.expect-list .check {
  width: 1.45rem;
  height: 1.45rem;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-direct a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  transition: color 0.3s var(--ease-out);
}
.contact-direct a:hover { color: var(--navy); }
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: rgb(27 42 58 / 0.07);
  color: var(--navy);
}

/* Formular: Doppelrand-Schale wie beim Portrait */
.form-shell {
  position: relative;
  background: rgb(27 42 58 / 0.05);
  border: 1px solid var(--ink-faint);
  border-radius: calc(var(--radius-card) + 8px);
  padding: 8px;
  box-shadow: var(--shadow-soft);
}

.form-card {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.form-title {
  margin-bottom: 0.35rem;
  font-size: 1.45rem;
}
.form-sub {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}

.field { margin-bottom: 1.2rem; }

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
}
.field .optional {
  font-weight: 400;
  color: var(--ink-soft);
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #FFFFFF;
  border: 1.5px solid rgb(27 42 58 / 0.30);
  border-radius: var(--radius-input);
  padding: 0.8rem 1rem;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.field textarea { resize: vertical; min-height: 7rem; }

.field ::placeholder { color: rgb(27 42 58 / 0.55); }

.field input:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgb(35 64 94 / 0.22);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #A33B2E;
}

.field-error {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: #A33B2E;
}

/* Honeypot: visuell raus, für Bots ein normales Feld */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-hint {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 0.5rem;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}
.btn-submit[disabled] {
  opacity: 0.65;
  cursor: progress;
  transform: none;
}

.form-status {
  margin: 1rem 0 0;
  font-weight: 500;
  font-size: 0.95rem;
  min-height: 1.4em;
}
.form-status.is-error { color: #A33B2E; }

/* Erfolgszustand: Formular wird durch Danke-Karte ersetzt */
.form-success {
  text-align: center;
  padding: 2.5rem 1rem;
}
.form-success .check {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1.25rem;
}
.form-success h3 { margin-bottom: 0.6rem; }
.form-success p { color: var(--ink-soft); max-width: 26rem; margin-inline: auto; }

/* ============ Footer ============ */

.footer {
  background: var(--navy-deep);
  color: rgb(247 244 237 / 0.75);
  padding-block: 3rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 3rem;
}
.footer-name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--cream);
  margin: 0;
}
.footer-tag {
  font-size: 0.88rem;
  margin: 0.2rem 0 0;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-left: auto;
}
.footer-links a {
  color: rgb(247 244 237 / 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.footer-links a:hover { color: var(--cream); }
.footer-copy {
  width: 100%;
  margin: 0;
  font-size: 0.85rem;
  color: rgb(247 244 237 / 0.5);
}

/* ============ Scroll-Reveals ============ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Ohne JS oder mit reduzierter Bewegung: alles sofort sichtbar */
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn, .btn-icon, .bento-cell { transition: none; }
}

/* ============ Mobile ============ */

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .split-figure { order: -1; max-width: 26rem; }
  .split-kontakt .split-text { order: 0; }

  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento-img { grid-column: span 2; grid-row: auto; min-height: 230px; }
  .bento-navy { grid-column: span 2; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .nav-inner { height: 64px; gap: 0.6rem; }
  .nav-brand { font-size: 1rem; }
  .nav-brand-sub { font-size: 0.58rem; letter-spacing: 0.06em; }
  .nav-lang { padding: 0.3rem 0.55rem; font-size: 0.75rem; }
  .btn-nav { padding: 0.55rem 0.8rem; font-size: 0.8rem; }

  .hero { align-items: flex-end; }
  .hero-content { padding-bottom: 3rem; }
  .hero-title { font-size: clamp(2.15rem, 9.5vw, 2.8rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 1.4rem;
  }

  .check-grid { grid-template-columns: 1fr; gap: 0; }

  .bento { grid-template-columns: 1fr; }
  .bento-img, .bento-navy { grid-column: auto; }
  .bento-img { min-height: 280px; }

  .expect-list { grid-template-columns: 1fr; }

  .chapter-facts {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

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

/* ============================================================
   Multi-Page-Erweiterungen
   Neue Klassen fuer Unterseiten-Layout; bestehende Klassen
   bleiben unveraendert.
   ============================================================ */

/* ---------- .page-hero: Unterseiten-Hero ohne Video ---------- */

.page-hero {
  background: var(--navy-deep);
  /* Genug Abstand nach oben: feste Nav (72 px) + grosszuegiger Luft */
  padding-top: clamp(7rem, 16vh, 11rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  position: relative;
  overflow: hidden;
}

/* Dezenter Verlauf-Schimmer von unten — passend zur Video-Hero-Ästhetik */
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgb(22 39 58 / 0) 60%,
    rgb(22 39 58 / 0.35) 100%
  );
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: 'Cabinet Grotesk', 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #FDFCF9;
  max-width: 18ch;
  text-wrap: balance;
  margin-bottom: 1.1rem;
}

.page-hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: rgb(253 252 249 / 0.82);
  max-width: 36rem;
  margin: 0;
}

/* Eyebrow-Zeile (optional, wie .retreat-eyebrow) */
.page-hero-eyebrow {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.1rem;
}

/* ---------- .nav auf Seiten mit .page-hero ----------
   Seiten-Agents setzen data-solid="true" + is-scrolled auf dem
   <header class="nav">, damit die Nav sofort lesbar ist —
   identisches Muster wie retreat/index.html.
   Die folgende Regel ist eine CSS-Fallback-Absicherung:
   Wenn das <body>-Element die Klasse .has-page-hero traegt,
   erhaelt die Nav sofort ihren scrolled-Stil ohne JS. */

body.has-page-hero .nav {
  background: rgb(247 244 237 / 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--ink-faint), 0 12px 32px -24px rgb(22 39 58 / 0.35);
}

body.has-page-hero .nav .nav-brand,
body.has-page-hero .nav .nav-links a {
  color: var(--ink);
}

body.has-page-hero .nav .nav-lang {
  color: var(--ink);
  border-color: rgb(27 42 58 / 0.3);
}

body.has-page-hero .nav .nav-lang:hover {
  background: rgb(27 42 58 / 0.07);
}

/* ---------- .nav-links a[aria-current="page"] ----------
   Aktive Seite: etwas staerkeres Gewicht + Sand-Unterstrich.
   Funktioniert auf hellem Grund (is-scrolled / has-page-hero)
   und auf dunklem Grund (transparente Nav ueber Video-Hero). */

.nav-links a[aria-current="page"] {
  font-weight: 700;
  opacity: 1;
}

/* Unterstrich in Sand-Farbe — subtil aber eindeutig */
.nav-links a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 2px;
  border-radius: 999px;
  background: var(--sand);
  opacity: 0.9;
}

/* Auf hellem Grund (is-scrolled) etwas dunkler */
.nav.is-scrolled .nav-links a[aria-current="page"]::after,
body.has-page-hero .nav .nav-links a[aria-current="page"]::after {
  background: var(--navy);
  opacity: 0.55;
}

/* ---------- .cta-band: Abschluss-CTA-Band ---------- */

.cta-band {
  background: var(--navy-deep);
  padding-block: clamp(4rem, 8vw, 6rem);
  text-align: center;
}

.cta-band-inner {
  max-width: 40rem;
  margin-inline: auto;
}

.cta-band h2 {
  color: var(--cream);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  max-width: 22ch;
  margin-inline: auto;
  margin-bottom: 1.6rem;
  text-wrap: balance;
}

.cta-band p {
  color: var(--cream-soft);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* Kein p:last-child-Reset im Band */
.cta-band p:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
  .page-hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .cta-band h2 { font-size: clamp(1.6rem, 7vw, 2rem); }
}

/* Rechtstexte (Impressum, Datenschutz) */
.legal { max-width: 46rem; padding-top: 9rem; padding-bottom: 5rem; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.legal h2 { font-size: 1.3rem; margin-top: 2.5rem; }
.legal-back { display: inline-block; margin-bottom: 2rem; font-weight: 700; }
