/* ==========================================================================
   House of Hearts 2.0 – main.css
   Aufbau: Fonts · Tokens · Basis · Typografie · Buttons · Layout · Header ·
           Hero · Sektionen · Kurs · Formular · Footer · Unterseiten · Vorschau
   ========================================================================== */

/* ---------- Fonts (SIL OFL 1.1, selbst gehostet, Lizenzen in /assets/fonts) */
@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/InstrumentSerif-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/InstrumentSans-Variable.ttf") format("truetype");
  font-weight: 400 700; font-stretch: 75% 100%; font-style: normal; font-display: swap;
}

/* ---------- Design Tokens ------------------------------------------------ */
:root {
  /* Markenfarben (Briefing) */
  --ivory: #FAF7F2;
  --sand: #E8D9C9;
  --taupe: #6B5E55;
  --sage: #A7B29A;
  --terracotta: #C97F6B;          /* nur punktuell, nie als Textfarbe */
  /* Aus Logo abgeleitet (Pixelmessung) */
  --brown: #665349;               /* Wortmarke – Überschriften, 6.8:1 auf Ivory */
  --bronze: #846851;              /* Zeichen – Akzente, Linien, 4.8:1 auf Ivory */
  --umber: #554335;               /* Buttons */
  /* Abgeleitete Neutraltöne */
  --ink: #3A2E26;                 /* Fließtext */
  --sand-soft: #F2EADF;           /* Funktionsflächen (Termine, Footer) */
  --paper: #FFFDF9;
  --line: rgb(102 83 73 / .22);
  --line-strong: rgb(102 83 73 / .45);
  --on-dark: #F4EEE6;
  --on-dark-muted: #D9CBBB;

  --font-serif: "Instrument Serif", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-sans: "Instrument Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1320px;
  --gutter: clamp(1rem, 4.5vw, 3rem);
  --section: clamp(4.5rem, 9vw, 8.5rem);
  --header-h: 68px;
  --radius: 2px;
  --ease: cubic-bezier(.2, .6, .2, 1);
}
@media (min-width: 1100px) {
  :root { --header-h: 88px; }
}

/* ---------- Basis -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img, picture { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .2em; }
a:hover { color: var(--brown); }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
address { font-style: normal; }
figure, blockquote { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }

:focus-visible {
  outline: 2px solid var(--brown);
  outline-offset: 3px;
  border-radius: var(--radius);
}
main:focus { outline: none; }
.section--dark :focus-visible { outline-color: var(--sand); }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 100;
  padding: .75rem 1rem; background: var(--umber); color: var(--ivory);
}
.skip-link:focus { top: 1rem; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Typografie --------------------------------------------------- */
.eyebrow {
  margin: 0 0 1.25rem;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  font-stretch: 85%;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--bronze);
}
.display {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.2vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -.012em;
  color: var(--brown);
  text-wrap: balance;
}
.h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 2.875rem);
  line-height: 1.08;
  color: var(--brown);
  text-wrap: balance;
}
.h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 2.2vw, 2rem);
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: .75rem;
}
.lead { font-size: inherit; line-height: inherit; font-weight: 600; }

/* ---------- Buttons & Links ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: .75rem 1.5rem;
  border: 1px solid var(--umber); border-radius: var(--radius);
  font-family: var(--font-sans); font-size: .8125rem; font-weight: 600; font-stretch: 90%;
  letter-spacing: .14em; line-height: 1.2; text-transform: uppercase; text-decoration: none;
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn--primary { background: var(--umber); color: var(--ivory); }
.btn--primary:hover { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.btn--secondary { background: transparent; color: var(--umber); }
.btn--secondary:hover { background: var(--umber); color: var(--ivory); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .6em;
  min-height: 44px;
  font-weight: 600; font-size: .9375rem;
  color: var(--brown); text-decoration: none;
  border-bottom: 1px solid transparent;
}
.link-arrow::after { content: "→"; transition: transform .2s var(--ease); }
.link-arrow:hover { color: var(--ink); }
.link-arrow:hover::after { transform: translateX(3px); }

/* ---------- Layout ------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section); }
.section--band { background: var(--sand-soft); }
.section--dark { background: #3E3129; color: var(--on-dark); }
.section--dark .eyebrow { color: var(--on-dark-muted); }
.section--dark .display, .section--dark .h2, .section--dark .h3 { color: var(--on-dark); }
.section--dark a { color: var(--on-dark); }
.section--dark .link-arrow:hover { color: var(--sand); }

@media (min-width: 900px) {
  .grid-12 { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(1.25rem, 2.5vw, 2.5rem); }
}

/* ---------- Header ------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.site-header__row {
  display: flex; align-items: center; gap: 1rem;
  height: var(--header-h);
}
.brand { display: block; flex: none; margin-right: auto; text-decoration: none; }

/* Finales Logo: Datei unverändert, ohne CSS-Cropping. */
.logo { display: block; }
.logo img { display: block; width: 100%; height: auto; mix-blend-mode: multiply; }
.logo--header { width: 126px; }
.logo--full { width: min(340px, 80vw); }
@media (min-width: 1100px) { .logo--header { width: 168px; } }

.site-header__cta { min-height: 44px; padding: .6rem 1rem; font-size: .75rem; }
@media (max-width: 379.98px) {
  .site-header__cta { padding-inline: .7rem; letter-spacing: .08em; }
}

.nav-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  min-width: 44px; min-height: 44px; padding: 0 .25rem;
  background: none; border: 0; color: var(--ink); cursor: pointer;
  font: 600 .75rem/1 var(--font-sans); letter-spacing: .14em; text-transform: uppercase;
}
.nav-toggle__icon { position: relative; width: 22px; height: 10px; }
.nav-toggle__icon::before, .nav-toggle__icon::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: currentColor;
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.nav-toggle__icon::before { top: 0; }
.nav-toggle__icon::after { top: 8px; }
.is-open .nav-toggle__icon::before { top: 4px; transform: rotate(45deg); }
.is-open .nav-toggle__icon::after { top: 4px; transform: rotate(-45deg); }
@media (max-width: 479.98px) {
  .nav-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
}

/* Mobile/Tablet-Navigation: eigenes Vollbild-Panel */
.nav__list { list-style: none; }
.nav__sub { list-style: none; }
@media (max-width: 1099.98px) {
  .nav {
    position: fixed; left: 0; right: 0; top: var(--nav-top, var(--header-h)); bottom: 0;
    z-index: 49;
    display: flex; flex-direction: column;
    padding: 1.5rem var(--gutter) 2.5rem;
    background: var(--ivory);
    overflow-y: auto;
    visibility: hidden; opacity: 0;
    transition: opacity .2s var(--ease), visibility 0s linear .2s;
  }
  .is-open .nav { visibility: visible; opacity: 1; transition: opacity .2s var(--ease); }
  .nav__item { border-bottom: 1px solid var(--line); }
  .nav__item > a, .nav__trigger {
    display: flex; align-items: center; width: 100%; min-height: 60px;
    font-family: var(--font-serif); font-size: 1.75rem; line-height: 1.1; color: var(--brown);
    text-decoration: none;
  }
  .nav__trigger {
    background: none; border: 0; padding: 0; cursor: default; pointer-events: none; text-align: left;
    min-height: 52px; padding-top: .5rem;
    font-family: var(--font-sans); font-size: .75rem; font-weight: 600; font-stretch: 85%;
    letter-spacing: .2em; text-transform: uppercase; color: var(--bronze);
  }
  .nav__caret { display: none; }
  .nav__sub { padding-bottom: .75rem; }
  .nav__sub a {
    display: flex; align-items: center; min-height: 52px;
    font-family: var(--font-serif); font-size: 1.75rem; color: var(--brown); text-decoration: none;
  }
  .nav [aria-current="page"] { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .2em; }
  .nav__contact { margin-top: auto; padding-top: 2rem; font-size: 1rem; line-height: 2.2; }
  .nav__contact a { display: inline-block; min-height: 44px; }
}
@media (max-width: 1099.98px) and (min-width: 700px) {
  .nav__list { max-width: 36rem; }
}

/* Desktop-Navigation */
@media (min-width: 1100px) {
  .nav-toggle { display: none; }
  .nav { display: block; }
  .nav__contact { display: none; }
  .nav__list { display: flex; align-items: center; gap: .25rem; }
  .nav__item { position: relative; }
  .nav__item > a, .nav__trigger {
    display: inline-flex; align-items: center; gap: .45rem;
    min-height: 44px; padding: .5rem .8rem;
    background: none; border: 0; cursor: pointer;
    font: 500 .78rem/1 var(--font-sans); font-stretch: 90%;
    letter-spacing: .14em; text-transform: uppercase; color: var(--ink);
    text-decoration: none;
  }
  .nav__item > a:hover, .nav__trigger:hover { color: var(--brown); }
  .nav__item.is-active > a, .nav__item.is-active > .nav__trigger { color: var(--brown); box-shadow: inset 0 -1px 0 var(--bronze); }
  .nav__caret {
    width: 6px; height: 6px; margin-top: -3px;
    border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
    transform: rotate(45deg); transition: transform .2s var(--ease);
  }
  .nav__trigger[aria-expanded="true"] .nav__caret { transform: rotate(-135deg); margin-top: 3px; }
  .nav__sub {
    position: absolute; top: calc(100% + 10px); left: .25rem; min-width: 250px;
    padding: .5rem 0; background: var(--paper);
    border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: 0 12px 30px -18px rgb(58 46 38 / .35);
    visibility: hidden; opacity: 0; transform: translateY(-4px);
    transition: opacity .15s var(--ease), transform .15s var(--ease), visibility 0s linear .15s;
  }
  .nav__trigger[aria-expanded="true"] + .nav__sub,
  .nav__item--group:hover .nav__sub {
    visibility: visible; opacity: 1; transform: none;
    transition: opacity .15s var(--ease), transform .15s var(--ease);
  }
  .nav__item--group::after { /* Hover-Brücke zum Untermenü */
    content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 12px;
  }
  .nav__sub a {
    display: flex; align-items: center; min-height: 44px; padding: .5rem 1.25rem;
    font-size: .9375rem; text-decoration: none;
  }
  .nav__sub a:hover, .nav__sub [aria-current="page"] { background: var(--sand-soft); color: var(--brown); }
  .site-header__cta { margin-left: 1rem; padding-inline: 1.25rem; }
}

/* ---------- Hero --------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--ivory); }
.hero__media { margin: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__veil { display: none; }
.hero__text { position: relative; z-index: 2; padding: clamp(2.25rem, 7vw, 3.5rem) var(--gutter) 2rem; }
.hero__eyebrow { display: flex; align-items: center; gap: .9rem; }
.hero__eyebrow::before { content: ""; width: 2rem; height: 1px; background: var(--bronze); }
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.1rem, 12vw, 4.5rem);
  line-height: .96; letter-spacing: -.025em; color: var(--brown); margin-bottom: 1.25rem;
}
.hero__descriptor { max-width: 27ch; font-size: clamp(1.125rem, 1.6vw, 1.375rem); font-weight: 500; line-height: 1.4; color: var(--ink); margin-bottom: .75rem; }
.hero__support { max-width: 36ch; color: var(--taupe); margin-bottom: 1.75rem; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1.75rem; margin: 0; }
@media (max-width: 899.98px) {
  .hero { display: flex; flex-direction: column; }
  .hero__text { order: 1; }
  .hero__media { order: 2; }
  .hero__media img { aspect-ratio: 16 / 11; object-position: 69% 42%; }
}
@media (min-width: 900px) {
  .hero { min-height: clamp(610px, calc(100svh - var(--header-h) - var(--preview-h, 0px)), 900px); display: grid; }
  .hero__media, .hero__media picture, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
  .hero__media img { object-position: center center; }
  .hero__veil {
    display: block; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, rgba(250,247,242,.98) 0%, rgba(250,247,242,.94) 20%, rgba(250,247,242,.72) 34%, rgba(250,247,242,.30) 46%, rgba(250,247,242,0) 58%);
    pointer-events: none;
  }
  .hero__text { align-self: center; width: min(47vw, 700px); padding: 4.5rem 2rem 4.5rem max(var(--gutter), calc((100vw - var(--wrap)) / 2)); }
  .hero__title { font-size: clamp(4.2rem, 6.5vw, 7rem); }
}

/* ---------- 03 Signature ------------------------------------------------- */
.signature__grid { display: grid; gap: 2.5rem; }
.signature__title { max-width: 14ch; margin-bottom: 1.5rem; }
.signature__intro .lead { max-width: 40ch; }
.flow { list-style: none; counter-reset: none; border-bottom: 1px solid var(--line); }
.flow__step {
  display: grid; grid-template-columns: 2.5rem minmax(0, 1fr); column-gap: 1rem;
  padding: 1.1rem 0; border-top: 1px solid var(--line);
}
.flow__num { grid-row: span 2; font-family: var(--font-serif); font-size: 1.125rem; color: var(--bronze); line-height: 1.5; }
.flow__name { font-family: var(--font-serif); font-size: 1.5rem; line-height: 1.2; color: var(--brown); }
.flow__text { font-size: .9375rem; color: var(--taupe); }
.signature__body { max-width: 38rem; }
.signature__body p:first-child { font-family: var(--font-sans); font-size: inherit; line-height: inherit; font-weight: 600; color: var(--brown); margin-bottom: 1.75rem; }
@media (min-width: 900px) {
  .signature__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(1.25rem, 2.5vw, 2.5rem); row-gap: 3.5rem; }
  .signature__intro { grid-column: 1 / 8; }
  .flow { grid-column: 1 / 8; }
  .flow__step { grid-template-columns: 3rem minmax(0, 13rem) minmax(0, 1fr); align-items: baseline; }
  .flow__num { grid-row: auto; }
  .signature__media { grid-column: 9 / 13; grid-row: 1 / 3; align-self: start; margin-top: 5rem; }
  .signature__body { grid-column: 3 / 10; }
}

/* ---------- 04 Termine --------------------------------------------------- */
.termine { padding-block: clamp(3.5rem, 7vw, 6rem); }
.termine:focus { outline: none; }
.termine__grid { display: grid; gap: 1.5rem; }
.termine .eyebrow { color: var(--taupe); }
@media (min-width: 900px) {
  .termine__grid { grid-template-columns: minmax(0, 3fr) minmax(0, 9fr); column-gap: clamp(1.25rem, 2.5vw, 2.5rem); }
}

.course__head { margin-bottom: 2rem; }
.course__title { font-family: var(--font-serif); font-size: clamp(1.75rem, 2.6vw, 2.25rem); line-height: 1.1; color: var(--brown); margin-bottom: .5rem; }
.course__lead { color: var(--taupe); max-width: 48ch; margin: 0; }
.status {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
  margin: 0 0 .75rem;
  font-size: .75rem; font-weight: 600; font-stretch: 85%; letter-spacing: .16em; text-transform: uppercase;
  color: var(--taupe);
}
.status__dot { width: 8px; height: 8px; background: var(--taupe); }
.status--registration-open .status__dot { background: #5F6B55; }
.status--sold-out .status__dot { background: var(--terracotta); }
.course__facts {
  display: grid; grid-template-columns: minmax(0, 1fr); margin: 0;
  border-bottom: 1px solid var(--line-strong);
}
.course__fact { padding: 1rem 0 1.1rem; border-top: 1px solid var(--line-strong); }
.course__fact dt {
  margin-bottom: .35rem;
  font-size: .72rem; font-weight: 600; font-stretch: 85%; letter-spacing: .16em; text-transform: uppercase; color: var(--taupe);
}
.course__fact dd { margin: 0; font-size: 1.0625rem; line-height: 1.5; color: var(--ink); }
.course__meta { font-size: .9375rem; color: var(--taupe); }
@media (min-width: 560px) {
  .course__facts { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 2rem; }
  .course__fact--wide { grid-column: 1 / -1; }
}
@media (min-width: 1100px) {
  .course__facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.course__dates { margin: 1.5rem 0 0; }
.course__dates ol { list-style: none; display: flex; flex-wrap: wrap; gap: .25rem 1.25rem; }
.course__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 2rem 0 0; }
.course--empty { max-width: 40rem; }
.course__empty { font-size: 1.125rem; }

/* ---------- 05 Specials & Retreats --------------------------------------- */
.offers__grid { display: grid; gap: 2.5rem; }
.offers__title { max-width: 18ch; }
.offers__item p { max-width: 42ch; }
.events { list-style: none; margin: 1.25rem 0 1rem; border-bottom: 1px solid var(--line); }
.events__item { border-top: 1px solid var(--line); }
.events__link { display: grid; gap: .15rem; padding: .9rem 0; min-height: 44px; text-decoration: none; }
.events__date { font-size: .8125rem; font-weight: 600; letter-spacing: .06em; color: var(--taupe); }
.events__title { font-family: var(--font-serif); font-size: 1.375rem; color: var(--brown); }
.events__meta { font-size: .9375rem; color: var(--taupe); }
.events__empty {
  margin: 1.25rem 0 .5rem; padding: .9rem 0;
  border-block: 1px solid var(--line);
  color: var(--taupe); font-size: .9375rem;
}
@media (min-width: 900px) {
  .offers__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(1.25rem, 2.5vw, 2.5rem); row-gap: 3rem; }
  .offers__head { grid-column: 1 / 9; }
  .offers__item--specials { grid-column: 1 / 6; grid-row: 2; align-self: start; padding-top: 1rem; }
  .offers__media { grid-column: 7 / 13; grid-row: 2; }
  .offers__item--retreats { grid-column: 7 / 12; grid-row: 3; }
}

/* ---------- 06 Über ------------------------------------------------------ */
.about { border-top: 1px solid var(--line); }
.about__grid { display: grid; gap: 2.5rem; }
.about__title { font-size: clamp(2.75rem, 7vw, 6rem); line-height: .98; margin-bottom: 2rem; }
.about__text { max-width: 40rem; }
@media (min-width: 900px) {
  .about__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(1.25rem, 2.5vw, 2.5rem); align-items: start; }
  .about__media { grid-column: 1 / 5; margin-top: 7rem; }
  .about__text { grid-column: 6 / 12; }
}

/* ---------- 07 Energiearbeit --------------------------------------------- */
.energy__grid { display: grid; gap: 2.5rem; }
.energy__title { max-width: 16ch; margin-bottom: 1.5rem; }
.energy__head p { max-width: 42ch; color: var(--on-dark-muted); }
.energy__item { padding-top: 1.5rem; border-top: 1px solid rgb(232 217 201 / .35); }
.energy__item p { color: var(--on-dark-muted); }
.energy__facts { font-size: .875rem; letter-spacing: .04em; color: var(--on-dark) !important; }
.energy__note { font-size: .875rem; color: var(--on-dark-muted); max-width: 60ch; margin: 0; }
@media (min-width: 900px) {
  .energy__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(1.25rem, 2.5vw, 2.5rem); row-gap: 3rem; }
  .energy__head { grid-column: 1 / 6; grid-row: 1 / 3; }
  .energy__item:nth-of-type(2) { grid-column: 7 / 10; }
  .energy__item:nth-of-type(3) { grid-column: 10 / 13; }
  .energy__note { grid-column: 7 / 13; }
}

/* ---------- 08 Stimmen --------------------------------------------------- */
.voices__grid { display: grid; gap: 3rem; }
.voice blockquote p {
  font-family: var(--font-serif); font-size: clamp(1.375rem, 2.2vw, 1.875rem); line-height: 1.3;
  color: var(--brown); margin-bottom: 1rem; text-wrap: pretty;
}
.voice blockquote p::before { content: "„"; }
.voice blockquote p::after { content: "“"; }
.voice figcaption { font-size: .875rem; color: var(--taupe); }
.voice__name { font-weight: 600; color: var(--ink); }
.voices__note { font-size: .875rem; color: var(--taupe); margin: 0; }
@media (min-width: 900px) {
  .voices__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(1.25rem, 2.5vw, 2.5rem); row-gap: 4.5rem; }
  .voices__head { grid-column: 1 / 5; }
  .voice--1 { grid-column: 5 / 12; }
  .voice--2 { grid-column: 2 / 8; }
  .voice--3 { grid-column: 7 / 12; }
  .voice--2 blockquote p, .voice--3 blockquote p { font-size: clamp(1.25rem, 1.7vw, 1.5rem); }
  .voices__note { grid-column: 7 / 12; }
}

/* ---------- 09 Abschluss ------------------------------------------------- */
.closing { border-top: 1px solid var(--line); }
.closing__title { font-size: clamp(2.5rem, 6vw, 5.25rem); max-width: 16ch; margin-bottom: 1.5rem; }
.closing .lead { max-width: 44ch; color: var(--taupe); }
.closing__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 2rem 0 0; }
@media (min-width: 900px) {
  .closing__inner { padding-left: calc((100% - 2 * var(--gutter)) / 12); }
}

/* ---------- Bildslots / Reserven ----------------------------------------- */
.slot {
  display: grid; place-items: center;
  background: var(--sand-soft);
  border: 1px dashed var(--bronze);
  color: var(--taupe); text-align: center;
}
.slot--4x5 { aspect-ratio: 4 / 5; }
.slot--3x2 { aspect-ratio: 3 / 2; }
.slot--4x3 { aspect-ratio: 4 / 3; }
@media (max-width: 899.98px) {
  .slot--4x5 { aspect-ratio: 4 / 3; }
}
.slot__inner { display: grid; gap: .5rem; padding: 1.5rem; max-width: 26rem; }
.slot__label { font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--taupe); }
.slot__desc { font-family: var(--font-serif); font-size: 1.25rem; line-height: 1.3; color: var(--brown); }
.slot__todo { font-size: .8125rem; }

/* ---------- Footer ------------------------------------------------------- */
.site-footer { background: var(--sand-soft); padding-top: clamp(3.5rem, 7vw, 5.5rem); font-size: .9375rem; }
.site-footer__grid { display: grid; gap: 2.5rem; }
.site-footer__logo { display: inline-block; }
.site-footer__descriptor { margin: 1.25rem 0 0; color: var(--taupe); max-width: 28ch; }
.site-footer__col .eyebrow { color: var(--taupe); margin-bottom: .75rem; }
.site-footer__col ul { list-style: none; }
.site-footer__col a { display: inline-flex; align-items: center; min-height: 40px; text-decoration: none; }
.site-footer__col a:hover { text-decoration: underline; }
.site-footer address { line-height: 1.9; }
.site-footer address a { min-height: 0; }
.site-footer__legal {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1.5rem;
  margin-top: 3.5rem; padding-block: 1.5rem 2rem;
  border-top: 1px solid var(--line); font-size: .8125rem; color: var(--taupe);
}
.site-footer__legal p { margin: 0; align-self: center; }
.site-footer__legal ul { list-style: none; display: flex; gap: 1.5rem; }
.site-footer__legal a { display: inline-flex; align-items: center; min-height: 44px; }
@media (max-width: 699.98px) {
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1.5rem; }
  .site-footer__brand, .site-footer__col:last-child { grid-column: 1 / -1; }
}
@media (min-width: 700px) {
  .site-footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (min-width: 1100px) {
  .site-footer__grid { grid-template-columns: minmax(0, 5fr) repeat(3, minmax(0, 2fr)); }
  .site-footer__brand { grid-column: auto; }
}
@media (max-width: 480px) {
  .logo--full { --logo-h: 140px; }
}

/* ---------- Unterseiten -------------------------------------------------- */
.page-head { padding-block: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem); border-bottom: 1px solid var(--line); }
.page-head__title {
  font-family: var(--font-serif); font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1; letter-spacing: -.015em;
  color: var(--brown); max-width: 18ch; margin-bottom: 1.25rem; text-wrap: balance;
}
.page-head__lead { max-width: 46ch; color: var(--taupe); margin: 0; }
.breadcrumb { margin-bottom: 2rem; font-size: .8125rem; color: var(--taupe); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; }
.breadcrumb li + li::before { content: "/"; margin: 0 .6rem; opacity: .6; }
.breadcrumb a { display: inline-flex; align-items: center; min-height: 44px; margin-block: -12px; }
.prose > * { max-width: 44rem; }
@media (min-width: 900px) {
  .prose > * { margin-left: 16.666%; } /* Einrückung um 2 von 12 Rasterspalten */
}
.prose .h2 { margin: 2.5rem 0 1rem; }
.prose .h2:first-child { margin-top: 0; }
.prose .h3 { margin-top: 2rem; }
.plain-list { margin: 0 0 1.5rem; padding-left: 1.25rem; }
.plain-list li { margin-bottom: .4rem; }
.notice { padding: 1rem 0; border-block: 1px solid var(--line); font-size: .9375rem; color: var(--taupe); }

/* ---------- Kontakt & Formular ------------------------------------------- */
.contact__grid { display: grid; gap: 3rem; }
@media (min-width: 900px) {
  .contact__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); column-gap: clamp(2rem, 6vw, 6rem); }
}
.contact__aside .eyebrow { color: var(--taupe); margin-bottom: .5rem; }
.contact__aside p { margin-bottom: 2rem; line-height: 1.9; }
.form { max-width: 40rem; }
.form__field { margin-bottom: 1.5rem; }
.form label { display: block; margin-bottom: .4rem; font-weight: 600; font-size: .9375rem; }
.form input, .form select, .form textarea {
  display: block; width: 100%; min-height: 48px; padding: .7rem .9rem;
  font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--radius);
}
.form select { appearance: none; background-image: none; }
.form textarea { resize: vertical; min-height: 10rem; }
.form input:focus-visible, .form select:focus-visible, .form textarea:focus-visible { border-color: var(--brown); }
.form [aria-invalid="true"] { border-color: #8A3B2A; }
.form__error { margin: .35rem 0 0; font-size: .875rem; color: #8A3B2A; }
.form__error:empty { display: none; }
.form__hint { margin: .35rem 0 0; font-size: .875rem; color: var(--taupe); }
.form__privacy { font-size: .875rem; color: var(--taupe); }
.form__hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { padding: 1.25rem 1.5rem; margin-bottom: 2rem; border-left: 3px solid var(--bronze); background: var(--sand-soft); }
.form-status--error { border-color: #8A3B2A; }
.form-status p:last-child { margin: 0; }

/* ---------- Vorschau-Markierungen (nur Staging) -------------------------- */
.preview-bar {
  padding: .45rem var(--gutter);
  background: #FFF3C4; color: #4A3A00;
  font-size: .75rem; line-height: 1.4; text-align: center;
}
.todo {
  display: inline-block;
  padding: .1em .45em;
  background: #FFF3C4; color: #4A3A00;
  border: 1px dashed #B08A12; border-radius: var(--radius);
  font-family: var(--font-sans); font-size: .72rem; font-weight: 600; font-style: normal;
  letter-spacing: .02em; line-height: 1.5; text-transform: none; vertical-align: .1em;
}
.todo--soft { background: #FFF9E3; border-style: dotted; font-weight: 500; }
.course__fact .todo--soft { display: table; margin-top: .35rem; }
.section--dark .todo { color: #4A3A00; }
.phase-note { margin: 1rem 0 1.5rem; }

/* ---------- Bewegung reduzieren ------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
\n\n/* Launch-ready atmospheric design panels. */\n.atmosphere, .brand-panel { min-height: 100%; width: 100%; display: flex; align-items: flex-end; padding: clamp(1.25rem,3vw,2.5rem); overflow: hidden; position: relative; }\n.signature__media--atmosphere, .about__media--brand { min-height: 34rem; }\n.offers__media--atmosphere { min-height: 22rem; }\n.atmosphere::before { content: \"\"; position:absolute; inset:0; background: radial-gradient(circle at 72% 28%, rgba(255,255,255,.75), transparent 24%), linear-gradient(135deg, #e8d9c9 0%, #faf7f2 48%, #a7b29a 140%); }\n.atmosphere::after { content: \"\"; position:absolute; width:52%; aspect-ratio:1; border-radius:50%; border:1px solid rgba(107,94,85,.28); right:-8%; bottom:-18%; box-shadow: -4rem -2rem 0 -3.9rem rgba(107,94,85,.22); }\n.atmosphere--retreat::before { background: linear-gradient(155deg, #faf7f2 0%, #e8d9c9 52%, #a7b29a 135%); }\n.atmosphere span { position:relative; z-index:1; font-size:.75rem; letter-spacing:.18em; text-transform:uppercase; color:#6b5e55; }\n.brand-panel { align-items:center; justify-content:center; flex-direction:column; text-align:center; background:#e8d9c9; color:#6b5e55; }\n.brand-panel__mark { font-family:var(--font-sans); letter-spacing:.18em; font-size:clamp(1.1rem,2vw,1.55rem); font-weight:600; }\n.brand-panel__claim { font-family:var(--font-serif); font-size:clamp(2rem,4vw,4rem); margin-top:.75rem; }\n