/* ==========================================================================
   Rafael dein Engel
   --------------------------------------------------------------------------
   Ein warmer Lichtfaden, der durch ein ruhiges Gespraech zu Klarheit fuehrt.

   Aufbau
     01 Tokens
     02 Reset & Basis
     03 Typografie
     04 Layout & Container
     05 Buttons & Links
     06 Header, Navigation, Sprachumschalter
     07 Hero
     08 Sektionen
     09 Karten, Listen, Tabellen
     10 Themen-Modul
     11 Markenkern mit Lichtfaden
     12 Schritte
     13 Preise
     14 Accordion
     15 Formulare
     16 Footer & Mobile-CTA
     17 Hinweise / Rechtliches
     18 Bewegung, Reveal, reduced motion
   ========================================================================== */

/* == 01 Tokens ============================================================ */

:root {
  /* Farbwelt */
  --cream:        #F6F0E7;
  --ivory:        #FFFDF9;
  --champagne:    #D8C5A8;
  --ink:          #2C2723;
  --brown:        #675D55;
  --gold:         #A97A3D;
  --gold-text:    #8A5F28;   /* dunkleres Gold: erreicht auf Creme 4.95:1 */
  --deep:         #211C19;

  /* Abgeleitete Flaechen */
  --surface:          var(--ivory);
  --surface-warm:     var(--cream);
  --surface-sunk:     #F1E9DD;
  --line:             rgba(44, 39, 35, 0.12);
  --line-soft:        rgba(44, 39, 35, 0.07);
  --line-gold:        rgba(169, 122, 61, 0.30);
  --shadow-sm:        0 1px 2px rgba(44, 39, 35, 0.04), 0 2px 8px rgba(44, 39, 35, 0.03);
  --shadow-md:        0 2px 6px rgba(44, 39, 35, 0.05), 0 12px 32px rgba(44, 39, 35, 0.06);
  --shadow-lift:      0 4px 12px rgba(44, 39, 35, 0.06), 0 18px 44px rgba(44, 39, 35, 0.08);

  /* Typografie
     Die beiden Variablen sind der einzige Ort, an dem die Schriften
     festgelegt werden. Liegen echte Webfonts unter /assets/fonts/,
     genuegt es, "Newsreader" bzw. "Manrope" hier voranzustellen. */
  --font-serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Palatino,
                Cambria, Georgia, "Times New Roman", serif;
  --font-sans:  "Manrope", "Segoe UI Variable Text", "Segoe UI", Inter,
                -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Fluide Typoskala
     Die Hero-Headline besteht aus zwei vollstaendigen Saetzen. Sie darf
     deshalb nicht so gross werden, dass die beiden CTAs unter die Falz
     rutschen - die Botschaft und der Handlungsaufruf gehoeren zusammen. */
  --fs-display:  clamp(2.05rem, 1.20rem + 2.75vw, 3.45rem);
  --fs-h1:       clamp(2.05rem, 1.35rem + 2.55vw, 3.35rem);
  --fs-h2:       clamp(1.68rem, 1.24rem + 1.55vw, 2.50rem);
  --fs-h3:       clamp(1.20rem, 1.06rem + 0.50vw, 1.50rem);
  --fs-lead:     clamp(1.10rem, 1.02rem + 0.36vw, 1.35rem);
  --fs-body:     clamp(1.03rem, 0.99rem + 0.20vw, 1.175rem); /* ~18.8px Desktop */
  --fs-small:    0.9375rem;
  --fs-micro:    0.8125rem;

  /* Raster */
  --container:      72rem;   /* 1152px */
  --container-wide: 84rem;
  --container-text: 44rem;
  --gutter:         clamp(1.15rem, 0.55rem + 2.6vw, 2.75rem);
  --section-y:      clamp(3.5rem, 2rem + 5.2vw, 5.5rem);
  --radius:         24px;
  --radius-sm:      14px;
  --radius-pill:    999px;

  /* Bewegung */
  --ease-out:  cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-soft: cubic-bezier(0.33, 0.02, 0.16, 1);

  --header-h: 4.5rem;
}

@media (min-width: 60em) {
  :root { --header-h: 5.5rem; }
}

/* ==========================================================================
   Echte Webfonts
   --------------------------------------------------------------------------
   Sobald die Dateien unter src/assets/fonts/ liegen, diesen Block
   aktivieren. Es werden bewusst keine externen Font-Requests geladen.
   ==========================================================================

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-variable.woff2") format("woff2-variations");
  font-weight: 300 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-variable.woff2") format("woff2-variations");
  font-weight: 300 800; font-style: normal; font-display: swap;
}
*/


/* == 02 Reset & Basis ===================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.002em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;      /* Sicherheitsnetz gegen versehentlichen Overflow */
}

img, svg, picture, video { display: block; max-width: 100%; }
img { height: auto; }

button, input, select, textarea { font: inherit; color: inherit; }

:target { scroll-margin-top: calc(var(--header-h) + 1.5rem); }

/* Fokus: sichtbar und hochwertig, nie nur ueber Farbe */
:focus-visible {
  outline: 2px solid var(--gold-text);
  outline-offset: 3px;
  border-radius: 4px;
}
.on-deep :focus-visible { outline-color: var(--champagne); }

::selection { background: rgba(216, 197, 168, 0.55); color: var(--ink); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--ink);
  color: var(--ivory);
  padding: 0.85rem 1.5rem;
  border-radius: 0 0 12px 12px;
  font-size: var(--fs-small);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out);
}
.skip-link:focus-visible { transform: translate(-50%, 0); }


/* == 03 Typografie ======================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.25; letter-spacing: -0.005em; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--brown);
  max-width: 34ch;
}
.lead--wide { max-width: 46ch; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin: 0 0 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  max-width: 4.5rem;
  background: linear-gradient(90deg, var(--line-gold), transparent);
}
.eyebrow--plain::after { display: none; }

.section-intro {
  font-size: var(--fs-lead);
  color: var(--brown);
  max-width: 46ch;
  margin-bottom: 0;
}

.text-muted  { color: var(--brown); }
.text-small  { font-size: var(--fs-small); }
.text-micro  { font-size: var(--fs-micro); line-height: 1.55; }

.prose { max-width: var(--container-text); }
.prose > * + h2 { margin-top: 2.4em; }
.prose > * + h3 { margin-top: 1.9em; }
.prose ul, .prose ol { padding-left: 1.35em; margin: 0 0 1.3em; }
.prose li { margin-bottom: 0.5em; }
.prose li::marker { color: var(--gold); }


/* == 04 Layout & Container ================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: var(--container-wide); }
.container--text { max-width: calc(var(--container-text) + var(--gutter) * 2); }

main { display: block; }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: calc(var(--section-y) * 0.62); }
.section--warm  { background: var(--surface-warm); }
.section--sunk  { background: var(--surface-sunk); }

.section--deep {
  background: var(--deep);
  color: var(--cream);
}
.section--deep h1, .section--deep h2, .section--deep h3 { color: var(--ivory); }
.section--deep .lead,
.section--deep .section-intro,
.section--deep .text-muted { color: rgba(246, 240, 231, 0.74); }
.section--deep .eyebrow { color: var(--champagne); }
.section--deep .eyebrow::after {
  background: linear-gradient(90deg, rgba(216, 197, 168, 0.45), transparent);
}

.section-head { margin-bottom: clamp(1.75rem, 1rem + 2.4vw, 2.75rem); }
.section-head > h2 { margin-bottom: 0.45em; }
.section-head--center { text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::after { display: none; }
.section-head--center .section-intro { margin-inline: auto; }

/* Zweispaltiger Kopf: Ueberschrift links, Intro rechts */
.section-head--split {
  display: grid;
  gap: clamp(0.75rem, 0.2rem + 2vw, 3rem);
  align-items: end;
}
@media (min-width: 56em) {
  .section-head--split { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
}

.stack > * + * { margin-top: var(--stack-gap, 1.15rem); }

.divider {
  height: 1px;
  border: 0;
  margin: 0;
  background: var(--line-soft);
}


/* == 05 Buttons & Links =================================================== */

a { color: inherit; }

.link {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  text-decoration-color: var(--line-gold);
  transition: text-decoration-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.link:hover { text-decoration-color: var(--gold); }
.section--deep .link { color: var(--ivory); text-decoration-color: rgba(216,197,168,0.5); }

.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--ivory);
  --btn-bd: var(--ink);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  min-height: 3rem;
  padding: 0.85rem 1.7rem;
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.012em;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s var(--ease-out),
              box-shadow 0.25s var(--ease-out),
              background-color 0.25s var(--ease-out),
              border-color 0.25s var(--ease-out),
              color 0.25s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn__arrow {
  flex: none;
  width: 1em; height: 1em;
  transition: transform 0.25s var(--ease-out);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary { --btn-bg: var(--ink); --btn-fg: var(--ivory); --btn-bd: var(--ink); }
.btn--primary:hover { --btn-bg: #1c1815; }

.btn--secondary {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: rgba(44, 39, 35, 0.28);
}
.btn--secondary:hover { --btn-bd: var(--ink); --btn-bg: rgba(44, 39, 35, 0.04); }

.btn--onDeep {
  --btn-bg: var(--cream);
  --btn-fg: var(--deep);
  --btn-bd: var(--cream);
}
.btn--onDeep:hover { --btn-bg: var(--ivory); }

.btn--ghostDeep {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  --btn-bd: rgba(246, 240, 231, 0.38);
}
.btn--ghostDeep:hover { --btn-bd: var(--champagne); --btn-bg: rgba(246, 240, 231, 0.07); }

.btn--sm { min-height: 2.75rem; padding: 0.55rem 1.3rem; font-size: var(--fs-micro); }
.btn--block { width: 100%; }

/* Goldener Lichtlauf - ausschliesslich beim Hover, nie dauerhaft.
   Gilt fuer alle Buttons, damit der Effekt zur Marke gehoert und nicht
   zu einem einzelnen Element. */
.btn::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -60%;
  width: 55%;
  z-index: -1;
  background: linear-gradient(100deg,
              transparent 0%,
              rgba(232, 211, 174, 0.00) 20%,
              rgba(232, 211, 174, 0.55) 50%,
              rgba(232, 211, 174, 0.00) 80%,
              transparent 100%);
  transform: translateX(0);
  opacity: 0;
}
.js-motion .btn:hover::after,
.js-motion .btn:focus-visible::after { animation: btn-sweep 0.85s var(--ease-soft) 1 both; }

@keyframes btn-sweep {
  0%   { transform: translateX(0);    opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateX(340%); opacity: 0; }
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: center;
}

/* Textlink mit Pfeil */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line-gold);
  padding-bottom: 2px;
  transition: border-color 0.2s var(--ease-out);
}
.arrow-link:hover { border-color: var(--gold); }
.arrow-link svg { width: 0.95em; height: 0.95em; transition: transform 0.25s var(--ease-out); }
.arrow-link:hover svg { transform: translateX(4px); }
.section--deep .arrow-link { color: var(--ivory); border-color: rgba(216,197,168,0.45); }


/* == 06 Header, Navigation, Sprachumschalter ============================== */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s var(--ease-out),
              border-color 0.35s var(--ease-out),
              backdrop-filter 0.35s var(--ease-out),
              box-shadow 0.35s var(--ease-out);
}
.header.is-stuck {
  background: rgba(246, 240, 231, 0.86);
  -webkit-backdrop-filter: saturate(1.15) blur(14px);
  backdrop-filter: saturate(1.15) blur(14px);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 1px 24px rgba(44, 39, 35, 0.045);
}
/* Auf Unterseiten ohne Hero ist der Header von Beginn an lesbar */
.header--solid {
  background: rgba(246, 240, 231, 0.86);
  -webkit-backdrop-filter: saturate(1.15) blur(14px);
  backdrop-filter: saturate(1.15) blur(14px);
  border-bottom-color: var(--line-soft);
}

.header__inner {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  min-height: 44px;      /* WCAG 2.2: ausreichend grosses Ziel */
  margin-right: auto;
  padding-right: 0.5rem;
  text-decoration: none;
  border-radius: 6px;
}
.brand img {
  /* Vorgabe: Desktop rund 135-150 px breit, Mobil rund 105-120 px.
     Die Wortmarke hat ein Seitenverhaeltnis von 640:235, deshalb wird
     ueber die Breite gesteuert. */
  width: clamp(6.5rem, 6.3rem + 2.86vw, 9.4rem);
  height: auto;
  /* Der Papiergrund der Wortmarke wurde in der Bildpipeline exakt auf
     das Creme des Designs gezogen. Deshalb ist hier kein Blend-Mode
     noetig - der wuerde auf dem halbtransparenten Header sonst als
     Rechteck sichtbar. */
}

.nav { display: none; }
@media (min-width: 72em) {
  /* Der Abstand steckt zum Teil im Innenabstand der Links, damit auch
     kurze Eintraege wie "FAQ" ein ausreichend grosses Ziel ergeben. */
  .nav { display: flex; align-items: center; gap: clamp(0.25rem, -0.3rem + 1.1vw, 1.05rem); }
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;      /* 44px Zielgroesse, auch auf Tablets */
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  min-width: 2.75rem;
  justify-content: center;
  white-space: nowrap;
  transition: color 0.2s var(--ease-out);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.6rem; right: 0.6rem; bottom: 0.5rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--gold-text); font-weight: 600; }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 0.65rem; flex: none; }

.lang {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: rgba(255, 253, 249, 0.55);
}
.lang__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;    /* 44px - WCAG 2.2 Zielgroesse */
  min-height: 2.75rem;
  padding: 0.2rem 0.6rem;
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--brown);
  transition: background-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.lang__item:hover { background: rgba(216, 197, 168, 0.3); color: var(--ink); }
.lang__item[aria-current="true"] {
  background: var(--ink);
  color: var(--ivory);
}

.header__cta { display: none; }
@media (min-width: 48em) { .header__cta { display: inline-flex; } }

/* Menue-Button */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 2.9rem; height: 2.9rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 253, 249, 0.55);
  cursor: pointer;
}
@media (min-width: 72em) { .menu-toggle { display: none; } }

.menu-toggle__bars { position: relative; width: 18px; height: 12px; }
.menu-toggle__bars span {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s var(--ease-out);
}
.menu-toggle__bars span:nth-child(1) { top: 0; }
.menu-toggle__bars span:nth-child(2) { top: 5.25px; }
.menu-toggle__bars span:nth-child(3) { top: 10.5px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(1) { transform: translateY(5.25px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(3) { transform: translateY(-5.25px) rotate(-45deg); }

/* Mobiles Menue */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  grid-template-rows: var(--header-h) 1fr;
  background: var(--cream);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out), visibility 0s linear 0.3s;
}
.mobile-menu[data-open="true"] {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s var(--ease-out), visibility 0s;
}
.mobile-menu__body {
  overflow-y: auto;
  padding: 1.5rem var(--gutter) 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mobile-menu__nav { display: flex; flex-direction: column; }
.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ink);
  text-decoration: none;
}
.mobile-menu__link[aria-current="page"] { color: var(--gold-text); }
.mobile-menu__link svg { width: 0.8em; height: 0.8em; opacity: 0.4; flex: none; }
.mobile-menu__foot { display: flex; flex-direction: column; gap: 1.25rem; }

body.is-locked { overflow: hidden; }


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

.hero {
  position: relative;
  isolation: isolate;
  background: var(--cream);
  overflow: hidden;
}

.hero__media {
  position: relative;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}

/* Weicher Champagner-Lichtschein hinter Rafael, sehr langsam atmend */
.hero__glow {
  position: absolute;
  z-index: 1;
  width: 62vmax; height: 62vmax;
  border-radius: 50%;
  background: radial-gradient(circle,
              rgba(216, 197, 168, 0.42) 0%,
              rgba(216, 197, 168, 0.18) 42%,
              rgba(216, 197, 168, 0) 68%);
  filter: blur(28px);
  pointer-events: none;
  will-change: transform;
}
/* Der Schein hinter Rafael atmet innerhalb des 14-Sekunden-Zyklus
   genau einmal auf und wieder ab - zwischen Sekunde 3 und 6. */
.js-motion .hero__glow { animation: glow-breathe 14s var(--ease-soft) 1.8s infinite; }

@keyframes glow-breathe {
  0%,   21.4% { transform: scale(1);     opacity: 0.75; }
  32%         { transform: scale(1.055); opacity: 1; }
  42.8%       { transform: scale(1);     opacity: 0.75; }
  100%        { transform: scale(1);     opacity: 0.75; }
}

/* Der feine goldene Lichtbogen hinter der Textflaeche */
.hero__arc {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}
/* ==========================================================================
   Golden Listening Line Loop
   --------------------------------------------------------------------------
   Die Signatur der Marke. Ein 14-Sekunden-Zyklus, der nahtlos weiterlaeuft:

     0-3 s    ein Lichtpunkt wandert die Linie entlang
     3-6 s    hinter dem Portrait atmet ein warmer Schein einmal auf und ab
     6-9 s    drei Punkte leuchten nacheinander sehr zurueckhaltend auf
     9-14 s   vollstaendige Ruhe, dann beginnt der Zyklus ohne Sprung erneut

   Bewegt werden nur transform, opacity und stroke-dashoffset.
   Der Loop startet erst nach der einmaligen Eintrittsanimation (1,8 s).
   ========================================================================== */

.hero__arc path {
  fill: none;
  stroke-linecap: round;
}

.hero__arcPath {
  stroke: url(#rdeArcGradient);
  stroke-width: 1.6;
  /* Der Bogen liegt hinter der Textflaeche. Er soll spuerbar sein,
     aber die Headline nie schwerer lesbar machen. */
  opacity: 0.58;
  filter: drop-shadow(0 0 7px rgba(169, 122, 61, 0.30));
}
.js-motion .hero__arcPath {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: arc-draw 1.2s var(--ease-soft) 0.35s forwards;
}
@keyframes arc-draw { to { stroke-dashoffset: 0; } }

/* Der wandernde Lichtpunkt: ein sehr kurzes helles Segment derselben
   Linie. Ueber stroke-dashoffset laeuft es an ihr entlang - das ist
   deutlich guenstiger als ein separat positioniertes Element. */
.hero__arcSpark {
  stroke: #F3E3C4;
  stroke-width: 2.6;
  stroke-dasharray: 26 974;
  stroke-dashoffset: 1000;
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(232, 211, 174, 0.9));
}
.js-motion .hero__arcSpark { animation: spark-travel 14s linear 1.8s infinite; }

@keyframes spark-travel {
  0%    { stroke-dashoffset: 1000; opacity: 0; }
  2%    { opacity: 0.9; }
  19%   { opacity: 0.9; }
  21.4% { stroke-dashoffset: 0;    opacity: 0; }
  100%  { stroke-dashoffset: 0;    opacity: 0; }
}

/* Die drei Punkte: Zuhoeren - Verstehen - Orientierung.
   Sie leuchten zwischen Sekunde 6 und 9 nacheinander auf. */
.hero__beat {
  fill: url(#rdeSparkGradient);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.js-motion .hero__beat { animation: beat-glow 14s var(--ease-soft) 1.8s infinite; }
.js-motion .hero__beat--2 { animation-delay: 2.6s; }
.js-motion .hero__beat--3 { animation-delay: 3.4s; }

@keyframes beat-glow {
  0%,   42.8% { opacity: 0;    transform: scale(0.7); }
  47%         { opacity: 0.85; transform: scale(1); }
  57%         { opacity: 0.6;  transform: scale(1); }
  64.3%,100%  { opacity: 0;    transform: scale(0.7); }
}

/* Auf kleinen Bildschirmen bleibt nur die goldene Linie und der weiche
   Schein. Wanderpunkt und Taktpunkte entfallen, damit das Scrollen auch
   auf aelteren Geraeten fluessig bleibt. */
@media (max-width: 61.999em) {
  .hero__arcSpark, .hero__beats { display: none; }
}

/* Bei reduzierter Bewegung steht der Loop still. Das ist zusaetzlich zur
   Media Query weiter unten ueber die von JavaScript gesetzte Klasse
   abgesichert - beide Wege greifen unabhaengig voneinander. */
.no-motion .hero__arcSpark,
.no-motion .hero__beats { display: none; }
.no-motion .hero__arcPath { stroke-dasharray: none; stroke-dashoffset: 0; }


.hero__content { position: relative; z-index: 3; }

.hero__eyebrow {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin: 0 0 clamp(1rem, 0.6rem + 1.4vw, 1.9rem);
}

.hero h1 {
  font-size: var(--fs-display);
  line-height: 1.10;
  letter-spacing: -0.019em;
  margin: 0 0 clamp(1.1rem, 0.7rem + 1.4vw, 1.75rem);
  max-width: 24ch;
}
.hero h1 .line { display: block; }
.hero h1 .line--2 { color: var(--brown); }

.hero__sub {
  font-size: var(--fs-lead);
  color: var(--brown);
  margin: 0 0 clamp(1.6rem, 1rem + 2vw, 2.5rem);
  max-width: 38rem;
}

.hero__micro {
  margin: clamp(1.5rem, 1rem + 1.6vw, 2.25rem) 0 0;
  font-size: var(--fs-small);
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero__micro::before {
  content: "";
  width: 1.75rem; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  flex: none;
}

.hero__scroll {
  display: none;
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  min-height: 2.75rem;
  padding: 0.5rem 1rem;
  font-size: var(--fs-micro);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.72;
}
.hero__scroll svg { width: 0.9rem; height: 0.9rem; }
.hero__scroll:hover { opacity: 1; }
@media (min-width: 64em) and (min-height: 44em) { .hero__scroll { display: inline-flex; } }

/* ---- Hero mobil: erst die Botschaft, dann das Portrait ---- */
.hero__inner {
  display: grid;
  padding-inline: var(--gutter);
  padding-top: calc(var(--header-h) + clamp(1.75rem, 1rem + 4vw, 3.5rem));
  padding-bottom: 0;
}
.hero__media {
  margin: clamp(2rem, 1rem + 5vw, 3rem) var(--gutter) clamp(2rem, 1rem + 4vw, 3.5rem);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
/* picture ist der direkte Kindknoten und muss die Flaeche selbst
   aufspannen, sonst bestimmt das Seitenverhaeltnis des Bildes die Hoehe
   und der Creme-Verlauf endet zu frueh. */
.hero__media > picture { display: block; width: 100%; height: 100%; }
.hero__media img { width: 100%; height: 100%; }
.hero__glow { top: -12%; right: -22%; }
/* Mobil liegt der Bogen hinter dem Textblock im oberen Bereich,
   nicht ueber dem Portrait. */
.hero__arc  { left: -10%; top: 9%; width: 132%; height: 36%; }

/* ---- Hero ab Tablet: Rafael rechts, ruhige Textflaeche links ---- */
@media (min-width: 62em) {
  .hero { min-height: min(90vh, 52rem); display: flex; align-items: stretch; }

  .hero__inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container-wide);
    margin-inline: auto;
    padding-inline: var(--gutter);
    padding-top: calc(var(--header-h) + 2rem);
    padding-bottom: 4rem;
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
  }
  .hero__content { max-width: 40rem; }

  /* Das Portrait fuellt die rechte Bildhaelfte als Hintergrundebene. */
  .hero__media {
    position: absolute;
    inset: 0 0 0 auto;
    width: 62%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    aspect-ratio: auto;
    z-index: 0;
  }
  .hero__img { object-position: 62% 26%; }

  /* Warmer Creme-Verlauf von links.
     Er deckt genau so weit, wie der Text reicht (rund 20 % der Bildflaeche),
     und ist danach zuegig bei null. Rafaels Gesicht sitzt bei etwa 72 % der
     Bildbreite und bleibt dadurch vollstaendig unangetastet - dort liegt
     keine Aufhellung mehr ueber dem Bild. */
  .hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
                var(--cream) 0%,
                var(--cream) 22%,
                rgba(246, 240, 231, 0.94) 30%,
                rgba(246, 240, 231, 0.62) 38%,
                rgba(246, 240, 231, 0.28) 46%,
                rgba(246, 240, 231, 0.08) 54%,
                rgba(246, 240, 231, 0) 64%);
  }
  .hero__glow { top: -18%; right: -8%; width: 46vmax; height: 46vmax; }
  .hero__arc  { left: -5%; top: 34%; width: 72%; height: 44%; }
}

@media (min-width: 78em) {
  .hero__media { width: 58%; }
  .hero__content { max-width: 42rem; }
}


/* == 08 Sektionen ========================================================= */

/* Vertrauensleiste */
.trust {
  background: var(--surface);
  border-block: 1px solid var(--line-soft);
}
.trust__list {
  list-style: none;
  margin: 0;
  padding: clamp(1.5rem, 1rem + 2vw, 2.25rem) 0;
  display: grid;
  gap: clamp(1rem, 0.5rem + 2vw, 2rem);
  grid-template-columns: 1fr;
}
@media (min-width: 34em) { .trust__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 66em) { .trust__list { grid-template-columns: repeat(4, 1fr); } }

.trust__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: var(--fs-small);
  line-height: 1.4;
  color: var(--ink);
}
.trust__icon {
  flex: none;
  width: 1.4rem; height: 1.4rem;
  color: var(--gold);
}
.trust__icon svg { width: 100%; height: 100%; }


/* == 09 Karten, Listen, Tabellen ========================================== */

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 1rem + 1.8vw, 2.25rem);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out);
}
.card__icon {
  width: 2.5rem; height: 2.5rem;
  margin-bottom: 1.15rem;
  color: var(--gold);
}
.card__icon svg { width: 100%; height: 100%; }
.card h3 { margin-bottom: 0.5em; }
.card__text { color: var(--brown); font-size: var(--fs-small); line-height: 1.6; margin-bottom: 1.5rem; }
.card__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line-soft);
}
.card__price { font-family: var(--font-serif); font-size: 1.2rem; color: var(--ink); }
.card__price .from { font-family: var(--font-sans); font-size: var(--fs-micro); color: var(--brown); }

/* Karte hebt sich beim Hover um maximal 4 px */
.card--link:hover { transform: translateY(-4px); border-color: var(--line-gold); box-shadow: var(--shadow-lift); }
.card--link:focus-within { border-color: var(--line-gold); box-shadow: var(--shadow-lift); }

/* Ganze Karte klickbar, ohne verschachtelte Links */
.card__stretch::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }

.card--muted { background: var(--surface-warm); box-shadow: none; }
.card--slim { padding: clamp(1.25rem, 1rem + 1vw, 1.65rem); }

.grid { display: grid; gap: clamp(1rem, 0.5rem + 1.6vw, 1.75rem); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 42em) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 46em) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68em) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

/* Ja/Nein-Listen */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.8rem; }
.check-list li {
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: var(--fs-small);
  line-height: 1.55;
}
.check-list svg { width: 1.35rem; height: 1.35rem; margin-top: 0.1em; flex: none; }
.check-list--do svg   { color: var(--gold); }
.check-list--dont svg { color: var(--brown); opacity: 0.6; }

/* Rafael Begleitung: bewusst als eigene, ruhige Premium-Flaeche
   abgesetzt - nicht als vierte gleichrangige Karte. */
.companion {
  display: grid;
  gap: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  padding: clamp(1.75rem, 1.2rem + 2.2vw, 2.75rem);
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-sunk) 100%);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
@media (min-width: 52em) {
  .companion { grid-template-columns: minmax(0, 1fr) minmax(0, 15rem); align-items: center; }
}
.companion__title { font-size: clamp(1.4rem, 1.15rem + 1vw, 1.9rem); margin-bottom: 0.35em; }
.companion__intro { font-size: var(--fs-small); color: var(--brown); margin-bottom: 1.35rem; }
.companion__list { margin-bottom: 1.35rem; }
.companion__limits {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--fs-micro);
  color: var(--brown);
  margin: 0;
}
.companion__limits .trust__icon { flex: none; width: 1.1rem; height: 1.1rem; color: var(--gold); }
.companion__aside {
  display: grid;
  gap: 1rem;
  justify-items: start;
  padding-top: clamp(0rem, -1rem + 3vw, 0rem);
}
@media (min-width: 52em) {
  .companion__aside {
    justify-items: center;
    text-align: center;
    padding-left: clamp(1rem, 0.5rem + 1.5vw, 2rem);
    border-left: 1px solid var(--line-soft);
  }
}
.companion__price {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.6rem);
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}
.companion__price span {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brown);
  margin-top: 0.5rem;
}

/* == Begruessungsvideo =====================================================
   Der Bereich soll nicht wie ein schwarzer Standard-Player wirken, sondern
   wie ein gerahmtes Bild: Creme-Rahmen, weicher Schatten, dezenter
   goldener Lichtschein. Das Seitenverhaeltnis ist fest gesetzt, damit beim
   Laden nichts springt - hochkant auf kleinen, quer auf grossen Schirmen.
   ========================================================================== */

.video-block { display: grid; gap: clamp(1.75rem, 1rem + 3vw, 3rem); align-items: center; }
@media (min-width: 62em) {
  .video-block { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }
}
.video-block__text .section-intro { max-width: 34ch; }

.video { position: relative; margin: 0; }

.video__frame {
  position: relative;
  aspect-ratio: 720 / 1280;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-sunk);
  border: 6px solid var(--ivory);
  box-shadow:
    0 0 0 1px var(--line-gold),
    0 2px 10px rgba(44, 39, 35, 0.06),
    0 24px 60px rgba(44, 39, 35, 0.12),
    0 0 60px rgba(216, 197, 168, 0.35);
}
@media (min-width: 48em) {
  .video__frame { aspect-ratio: 1280 / 720; }
}

.video__poster,
.video__poster img,
.video__el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* keine schwarzen Balken */
}
.video__el { background: var(--deep); }
.video__el[hidden] { display: none; }
.video__poster[hidden] { display: none; }

/* Sanfte Verdunklung, damit der Play-Button sicher lesbar bleibt */
.video__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(33, 28, 25, 0.18), rgba(33, 28, 25, 0.34));
  opacity: 1;
  transition: opacity 0.3s var(--ease-out);
  pointer-events: none;
}
.video[data-playing="true"] .video__frame::after { opacity: 0; }

.video__play {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  padding: 1.5rem 1.25rem 1.75rem;
  border: 0;
  background: none;
  color: var(--ivory);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: 600;
}
.video__play[hidden] { display: none; }
@media (min-width: 48em) {
  .video__play { inset: 0; justify-content: center; padding: 1.5rem; }
}

.video__playIcon {
  position: relative;
  width: 4.5rem; height: 4.5rem;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 6px 26px rgba(33, 28, 25, 0.3);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.video__playIcon::before {
  content: "";
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0.72rem 0 0.72rem 1.15rem;
  border-color: transparent transparent transparent var(--ink);
}
.video__play:hover .video__playIcon { transform: scale(1.06); box-shadow: 0 10px 34px rgba(33, 28, 25, 0.36); }
.video__play:focus-visible { outline: 2px solid var(--champagne); outline-offset: -6px; border-radius: var(--radius); }

.video__playLabel {
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(33, 28, 25, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.video__caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-top: 1rem;
  font-size: var(--fs-micro);
  color: var(--brown);
}
.video__ai {
  padding: 0.25rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}
.video__meta { margin: 0; }

/* Angebotskarten mit Preis */
.grid--offers { align-items: stretch; }
.card--offer { text-align: left; }
.card--offer .card__foot--single { border-top: 0; padding-top: 0; margin-top: auto; }
.card--featured { border-color: var(--line-gold); box-shadow: var(--shadow-md); }
.card__badge {
  align-self: flex-start;
  margin-bottom: 0.9rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-pill);
  font-size: var(--fs-micro);
  font-weight: 600;
  color: var(--gold-text);
}
.card__meta { font-size: var(--fs-micro); letter-spacing: 0.08em; text-transform: uppercase; color: var(--brown); margin: 0 0 0.35rem; }
.card__priceBig {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.2rem);
  line-height: 1;
  color: var(--ink);
  margin: 0 0 1rem;
}
.card__specs { margin: 0 0 1.1rem; display: grid; gap: 0.4rem; }
.card__specs div { display: grid; grid-template-columns: minmax(0, 9rem) 1fr; gap: 0.25rem 0.75rem; font-size: var(--fs-micro); }
.card__specs dt { color: var(--brown); }
.card__specs dd { margin: 0; }
.card__notes { list-style: none; margin: 0 0 1.35rem; padding: 0; display: grid; gap: 0.55rem; }
.card__notes li { display: grid; grid-template-columns: 1.1rem 1fr; gap: 0.6rem; align-items: start; font-size: var(--fs-micro); color: var(--brown); }
.card__notes svg { width: 1.1rem; height: 1.1rem; margin-top: 0.1em; color: var(--gold); }

.offers__foot { display: grid; gap: 0.6rem; margin-top: clamp(1.75rem, 1rem + 2vw, 2.5rem); }

/* Auswahl auf der Buchungsseite */
.choices { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(0.75rem, 0.4rem + 1vw, 1rem); }
@media (min-width: 46em) { .choices { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 72em) { .choices { grid-template-columns: repeat(3, 1fr); } }
.choice {
  position: relative;
  padding: 1.25rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
}
.choice[data-selected="true"] { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(169, 122, 61, 0.14); }
.choice__mark { display: none; }
.choice[data-selected="true"] .choice__mark {
  display: block;
  position: absolute; top: 1.1rem; right: 1.1rem;
  width: 1.2rem; height: 1.2rem; color: var(--gold);
}
.choice__title { font-weight: 600; margin: 0 0 0.2rem; padding-right: 2rem; }
.choice__meta { font-size: var(--fs-micro); color: var(--brown); margin: 0 0 0.5rem; }
.choice__price { font-family: var(--font-serif); font-size: 1.3rem; color: var(--ink); margin: 0; }
.choice__flag {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
  background: var(--gold-text);
  color: var(--ivory);
  font-size: var(--fs-micro);
  font-weight: 600;
}
.choices__topic {
  margin: 0 0 1.25rem;
  padding: 0.6rem 1rem;
  background: var(--surface-warm);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--fs-small);
}

/* Abschluss-Ueberschrift in zwei Zeilen */
.final__heading { max-width: 28ch; }
.final__line { display: block; }
.final__line + .final__line { color: var(--champagne); }

/* Direkte Kontaktwege */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; }
.contact-list li { display: flex; align-items: center; gap: 0.75rem; font-size: var(--fs-small); }
.contact-list .trust__icon { flex: none; width: 1.3rem; height: 1.3rem; color: var(--gold); }

/* Kundenstimmen. Wird erst ausgegeben, wenn echte Texte vorliegen. */
.quote {
  margin: 0;
  padding: clamp(1.5rem, 1rem + 1.6vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.quote blockquote { margin: 0 0 1.1rem; }
.quote blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.2rem);
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.quote figcaption { font-size: var(--fs-micro); color: var(--brown); }

/* Portrait-Block */
.portrait-block { display: grid; gap: clamp(1.75rem, 1rem + 3.5vw, 3.5rem); align-items: center; }
@media (min-width: 58em) {
  .portrait-block { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }
  .portrait-block--flip > .portrait-block__media { order: 2; }
}
.portrait-block__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--surface-sunk);
}
.portrait-block__media img { width: 100%; height: auto; }
.portrait-block__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 32%;
  background: linear-gradient(to top, rgba(33, 28, 25, 0.12), transparent);
  pointer-events: none;
}


/* == 10 Themen-Modul ====================================================== */

.topics { display: grid; gap: clamp(1.5rem, 1rem + 2.5vw, 3rem); }
@media (min-width: 60em) {
  .topics { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; }
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  border: 0;
}
.chips legend { padding: 0; }

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.6rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--ink);
  font-size: var(--fs-small);
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.22s var(--ease-out),
              border-color 0.22s var(--ease-out),
              color 0.22s var(--ease-out),
              transform 0.22s var(--ease-out);
}
.chip:hover { border-color: var(--line-gold); transform: translateY(-1px); }
.chip[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--ivory);
  font-weight: 600;
}

.topics__panel {
  position: relative;
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.6rem, 1rem + 2vw, 2.5rem);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.topics__panel::before {
  content: "";
  position: absolute;
  left: clamp(1.6rem, 1rem + 2vw, 2.5rem);
  top: 0;
  width: 2.75rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.topics__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.6rem);
  line-height: 1.42;
  color: var(--ink);
  margin: 0 0 1.5rem;
}
.topics__panel .topics__quote { transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out); }
.topics__panel.is-swapping .topics__quote { opacity: 0; transform: translateY(6px); }
.topics__note { font-size: var(--fs-micro); color: var(--brown); margin-top: 1.25rem; }


/* == 11 Markenkern mit Lichtfaden ========================================= */

.core { position: relative; }
.core__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(2.25rem, 1rem + 4vw, 3.5rem);
  position: relative;
  z-index: 1;
}
@media (min-width: 58em) { .core__list { grid-template-columns: repeat(3, 1fr); } }

.core__word {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 1.2rem + 2.1vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin: 0 0 0.5em;
}
.core__text { font-size: var(--fs-small); color: rgba(246, 240, 231, 0.74); margin: 0; max-width: 26ch; }

/* Der Lichtfaden verbindet die drei Begriffe beim Scrollen. */
.core__thread {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  inset: 0;
  overflow: visible;
}
.core__thread path {
  fill: none;
  stroke: url(#rdeThreadGradient);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: var(--len, 1000);
  stroke-dashoffset: var(--len, 1000);
  filter: drop-shadow(0 0 7px rgba(169, 122, 61, 0.42));
}
.js-motion .core__thread path { transition: stroke-dashoffset 0.15s linear; }
.no-motion .core__thread path { stroke-dashoffset: 0; }

.core__dot {
  position: absolute;
  z-index: 2;
  width: 9px; height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 4px rgba(216, 197, 168, 0.16), 0 0 12px rgba(216, 197, 168, 0.6);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.core__dot.is-lit { opacity: 1; transform: scale(1); }
.no-motion .core__dot { opacity: 1; transform: scale(1); }


/* == 12 Schritte ========================================================== */

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(1.25rem, 0.8rem + 1.6vw, 1.75rem); counter-reset: step; }
@media (min-width: 46em) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 72em) { .steps { grid-template-columns: repeat(4, 1fr); } }

.steps__item {
  position: relative;
  counter-increment: step;
  padding: clamp(1.35rem, 1rem + 1.2vw, 1.85rem);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}
.steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem; height: 2.2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold-text);
}
.steps__item h3 { font-size: 1.08rem; line-height: 1.32; margin-bottom: 0.45em; }
.steps__text { font-size: var(--fs-small); color: var(--brown); margin: 0; }

/* Verbindende Linie zwischen den Schritten */
@media (min-width: 72em) {
  .steps__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: calc(clamp(1.35rem, 1rem + 1.2vw, 1.85rem) + 1.1rem);
    right: calc(clamp(1rem, 0.5rem + 1.6vw, 1.75rem) * -1);
    width: clamp(1rem, 0.5rem + 1.6vw, 1.75rem);
    height: 1px;
    background: var(--line-gold);
  }
}

.note-line {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: clamp(1.75rem, 1rem + 2vw, 2.5rem);
  padding: 1.05rem 1.35rem;
  background: var(--surface-warm);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--fs-small);
  color: var(--ink);
}
.section--warm .note-line { background: var(--surface); }
.section--deep .note-line {
  background: rgba(246, 240, 231, 0.06);
  border-left-color: var(--champagne);
  color: rgba(246, 240, 231, 0.9);
}


/* == 13 Preise ============================================================ */

.price-group + .price-group { margin-top: clamp(2.25rem, 1.5rem + 2.5vw, 3.25rem); }
.price-group__heading {
  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin: 0 0 1.15rem;
}

.price-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-soft); }
.price-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 1.25rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.price-item__name { font-size: var(--fs-body); color: var(--ink); }
.price-item__meta { grid-column: 1; font-size: var(--fs-small); color: var(--brown); }
.price-item__value {
  grid-row: 1 / -1;
  grid-column: 2;
  align-self: center;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.55rem);
  color: var(--ink);
  white-space: nowrap;
}
.price-item__badge {
  display: inline-block;
  margin-left: 0.6rem;
  padding: 0.18rem 0.65rem;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-pill);
  font-size: var(--fs-micro);
  font-weight: 600;
  color: var(--gold-text);
  white-space: nowrap;
  vertical-align: middle;
}
.price-item--featured { background: linear-gradient(90deg, rgba(216,197,168,0.14), transparent 72%); }
.price-item--featured .price-item__name { font-weight: 600; }

.price-meta {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.6rem;
  font-size: var(--fs-micro);
  color: var(--brown);
}
.tax-notice {
  font-size: var(--fs-small);
  color: var(--ink);
  padding: 0.7rem 1rem;
  background: var(--surface-warm);
  border: 1px dashed var(--line-gold);
  border-radius: var(--radius-sm);
  display: inline-block;
}
.section--warm .tax-notice { background: var(--surface); }

.pay-list { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pay-list li {
  padding: 0.45rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: var(--fs-micro);
  color: var(--brown);
}


/* == 14 Accordion ========================================================= */

.accordion { border-top: 1px solid var(--line-soft); }
.accordion__item { border-bottom: 1px solid var(--line-soft); }

.accordion__trigger {
  width: 100%;
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: clamp(1.08rem, 1rem + 0.35vw, 1.28rem);
  line-height: 1.35;
  color: var(--ink);
  transition: color 0.2s var(--ease-out);
}
.accordion__trigger:hover { color: var(--gold-text); }

.accordion__sign { position: relative; flex: none; width: 1.1rem; height: 1.1rem; }
.accordion__sign::before,
.accordion__sign::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: transform 0.3s var(--ease-out), opacity 0.25s var(--ease-out);
}
.accordion__sign::after { transform: translateY(-50%) rotate(90deg); }
.accordion__trigger[aria-expanded="true"] .accordion__sign::after { transform: translateY(-50%) rotate(0deg); opacity: 0; }

/* Das Panel wird ueber das hidden-Attribut geschaltet - eindeutig und
   ohne Zwischenzustand. Die Bewegung liegt auf dem Inhalt und nutzt
   ausschliesslich opacity und transform.
   (Die verbreitete Variante ueber grid-template-rows 0fr/1fr wurde
   verworfen: sie blieb im Test beim Schliessen haengen.) */
.accordion__panel { display: block; }
.accordion__panel[hidden] { display: none; }
.accordion__panel > div { overflow: hidden; }
.js-motion .accordion__panel[data-open="true"] > div {
  animation: acc-in 0.34s var(--ease-out) both;
}
@keyframes acc-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
.accordion__panel p {
  max-width: 62ch;
  padding-bottom: 1.6rem;
  color: var(--brown);
  font-size: var(--fs-small);
  line-height: 1.68;
  margin: 0;
}
.no-motion .accordion__panel > div { animation: none; }


/* == 15 Formulare ========================================================= */

.form { display: grid; gap: 1.35rem; }
.form__row { display: grid; gap: 1.35rem; }
@media (min-width: 40em) { .form__row--2 { grid-template-columns: repeat(2, 1fr); } }

.field { display: grid; gap: 0.45rem; }
.field__label { font-size: var(--fs-small); font-weight: 600; color: var(--ink); }
.field__req { color: var(--gold-text); margin-left: 0.15em; }
.field__hint { font-size: var(--fs-micro); color: var(--brown); }

.input, .textarea, .select {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: var(--fs-small);
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.textarea { min-height: 9rem; resize: vertical; line-height: 1.6; }
.input::placeholder, .textarea::placeholder { color: rgba(103, 93, 85, 0.6); }
.input:hover, .textarea:hover, .select:hover { border-color: rgba(44, 39, 35, 0.25); }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(169, 122, 61, 0.14);
}
.input:focus-visible, .textarea:focus-visible, .select:focus-visible { outline: 2px solid var(--gold-text); outline-offset: 2px; }

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%23675D55' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
  padding-right: 2.6rem;
}

.field[data-invalid="true"] .input,
.field[data-invalid="true"] .textarea,
.field[data-invalid="true"] .select { border-color: #A33B2B; box-shadow: 0 0 0 3px rgba(163, 59, 43, 0.12); }

.field__error {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-micro);
  color: #8C3122;
  font-weight: 600;
}
.field__error::before { content: "!"; display: inline-flex; align-items: center; justify-content: center; width: 1.05rem; height: 1.05rem; border-radius: 50%; background: #8C3122; color: var(--ivory); font-size: 0.7rem; flex: none; }
.field[data-invalid="true"] .field__error { display: flex; }

/* Das gesamte Label ist klickbar und damit das eigentliche Ziel.
   Die Box selbst erfuellt zusaetzlich die 24-px-Mindestgroesse
   aus WCAG 2.2 (2.5.8 Target Size, Minimum). */
.checkbox {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.75rem;
  align-items: start;
  min-height: 2.75rem;
  padding-block: 0.25rem;
  font-size: var(--fs-small);
  line-height: 1.55;
  cursor: pointer;
}
.checkbox input {
  width: 1.5rem; height: 1.5rem;
  margin: 0.05em 0 0;
  accent-color: var(--gold-text);
  cursor: pointer;
}

.form__note {
  font-size: var(--fs-micro);
  color: var(--brown);
  padding: 0.85rem 1.1rem;
  background: var(--surface-warm);
  border-radius: var(--radius-sm);
}
.section--warm .form__note { background: var(--surface); }

.form__status { display: none; padding: 1.05rem 1.35rem; border-radius: var(--radius-sm); font-size: var(--fs-small); }
.form__status[data-state="success"] { display: block; background: rgba(169, 122, 61, 0.10); border: 1px solid var(--line-gold); }
.form__status[data-state="error"]   { display: block; background: rgba(163, 59, 43, 0.08); border: 1px solid rgba(163, 59, 43, 0.3); }

/* Honeypot: fuer Menschen und Screenreader unsichtbar */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* Zweischrittiger Widerruf */
.wizard__step[hidden] { display: none !important; }
.wizard__summary { list-style: none; margin: 0 0 1.5rem; padding: 1.25rem 1.5rem; background: var(--surface-warm); border-radius: var(--radius-sm); display: grid; gap: 0.7rem; }
.section--warm .wizard__summary { background: var(--surface); }
.wizard__summary div { display: grid; grid-template-columns: minmax(0, 12rem) 1fr; gap: 0.35rem 1rem; font-size: var(--fs-small); }
.wizard__summary dt { color: var(--brown); }
.wizard__summary dd { margin: 0; color: var(--ink); font-weight: 600; overflow-wrap: anywhere; }


/* == 16 Footer & Mobile-CTA =============================================== */

.footer { background: var(--deep); color: rgba(246, 240, 231, 0.78); padding-block: clamp(2.75rem, 1.8rem + 3.2vw, 4rem) 2.25rem; }
.footer a { color: rgba(246, 240, 231, 0.78); text-decoration: none; }
.footer a:hover { color: var(--ivory); }

.footer__top { display: grid; gap: clamp(2rem, 1rem + 4vw, 3.5rem); }
@media (min-width: 56em) { .footer__top { grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); } }

/* Auf dunklem Grund wird die Wortmarke nicht umgefaerbt oder invertiert,
   sondern originalgetreu auf eine ruhige helle Platte gesetzt. */
.footer__brand {
  display: inline-block;
  margin-bottom: 1.35rem;
  padding: 0.7rem 1.1rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
}
.footer__brandImg { height: 2rem; width: auto; }
.footer__tagline { font-size: var(--fs-small); max-width: 32ch; margin: 0; }

.footer__heading {
  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  margin: 0 0 1.1rem;
}
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; font-size: var(--fs-small); }
.footer__list a { display: inline-block; min-height: 1.5rem; }

.social { display: flex; gap: 0.6rem; margin-top: 1.35rem; }
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem; height: 2.75rem;
  border: 1px solid rgba(246, 240, 231, 0.2);
  border-radius: 50%;
  transition: border-color 0.25s var(--ease-out), background-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.social a:hover { border-color: var(--champagne); background: rgba(246, 240, 231, 0.07); transform: translateY(-2px); }
.social svg { width: 1.15rem; height: 1.15rem; }

.footer__bottom {
  margin-top: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  padding-top: 1.75rem;
  border-top: 1px solid rgba(246, 240, 231, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-micro);
}
.footer__legalRow { display: flex; flex-wrap: wrap; gap: 0.5rem 1.35rem; }

.footer__disclaimer {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(246, 240, 231, 0.055);
  border-radius: var(--radius-sm);
  font-size: var(--fs-micro);
  line-height: 1.7;
  color: rgba(246, 240, 231, 0.72);
}
.footer__disclaimer p + p { margin-top: 0.6em; }

/* Feste CTA-Leiste auf kleinen Bildschirmen */
.mobile-cta {
  position: fixed;
  z-index: 90;
  left: 0; right: 0; bottom: 0;
  padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(246, 240, 231, 0.93);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-soft);
  transform: translateY(115%);
  transition: transform 0.35s var(--ease-out);
}
.mobile-cta[data-show="true"] { transform: translateY(0); }
@media (min-width: 48em) { .mobile-cta { display: none; } }

/* Platz, damit die Leiste den Footer nie verdeckt */
body[data-mobilecta="true"] .footer { padding-bottom: 6.5rem; }
@media (min-width: 48em) { body[data-mobilecta="true"] .footer { padding-bottom: 2.5rem; } }


/* == 17 Hinweise / Rechtliches =========================================== */

.notice {
  padding: clamp(1.25rem, 1rem + 1.2vw, 1.75rem);
  background: var(--surface-warm);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  font-size: var(--fs-small);
  line-height: 1.65;
}
.section--warm .notice { background: var(--surface); }
.notice__heading {
  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin: 0 0 0.7rem;
}
.notice--gold { border-color: var(--line-gold); }
.notice--crisis { border-left: 3px solid var(--gold); }

.notice--todo {
  background: repeating-linear-gradient(45deg, rgba(163, 59, 43, 0.05) 0 12px, rgba(163, 59, 43, 0.09) 12px 24px);
  border: 1px solid rgba(163, 59, 43, 0.35);
}
.notice--todo .notice__heading { color: #8C3122; }

.todo {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  background: rgba(163, 59, 43, 0.12);
  border: 1px dashed rgba(163, 59, 43, 0.5);
  border-radius: 4px;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.82em;
  color: #8C3122;
}

.legal-meta { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.legal-meta div { display: grid; grid-template-columns: minmax(0, 14rem) 1fr; gap: 0.25rem 1.25rem; }
@media (max-width: 34em) { .legal-meta div { grid-template-columns: 1fr; } }
.legal-meta dt { color: var(--brown); font-size: var(--fs-small); }
.legal-meta dd { margin: 0; overflow-wrap: anywhere; }

/* 404 */
.error-page { display: grid; place-items: center; text-align: center; min-height: 62vh; padding-top: var(--header-h); }


/* == 18 Bewegung, Reveal, reduced motion ================================= */

/* Sektionen blenden beim Scrollen weich ein. Ohne JS bleibt alles sichtbar. */
.js-motion [data-reveal] {
  opacity: 0;
  transform: translateY(21px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.js-motion [data-reveal].is-visible { opacity: 1; transform: none; }

/* Hero: Marken-Zeile zuerst, dann die beiden Headline-Zeilen mit Versatz */
.js-motion .hero__animate {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(6px);
  animation: hero-rise 0.85s var(--ease-out) var(--d, 0ms) forwards;
}
@keyframes hero-rise {
  to { opacity: 1; transform: none; filter: blur(0); }
}

/* Das Portrait kommt einmalig sehr dezent aus einem warmen Licht hervor:
   hoechstens 12 px Weg und eine Skalierung von 1.025 auf 1, in 1,4 s. */
.js-motion .hero__img { animation: hero-settle 1.4s var(--ease-soft) both; }
@keyframes hero-settle {
  from { transform: scale(1.025) translate3d(0, 12px, 0); }
  to   { transform: scale(1)     translate3d(0, 0, 0); }
}

/* Sehr leichtes Parallax, ausschliesslich auf praezisen Zeigegeraeten */
.js-parallax .hero__media { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js-motion [data-reveal] { opacity: 1 !important; transform: none !important; }
  .js-motion .hero__animate { opacity: 1 !important; transform: none !important; filter: none !important; }
  .js-motion .hero__img { animation: none !important; transform: none !important; }
  .js-motion .hero__glow { animation: none !important; }
  /* Der gesamte Golden-Loop steht still. Die Linie bleibt sichtbar,
     Wanderpunkt und Taktpunkte verschwinden vollstaendig. */
  .js-motion .hero__arcPath { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; animation: none !important; }
  .hero__arcSpark, .hero__beats { display: none !important; }
  .js-motion .btn:hover::after, .js-motion .btn:focus-visible::after { animation: none !important; opacity: 0 !important; }
  .core__thread path { stroke-dashoffset: 0 !important; }
  .core__dot { opacity: 1 !important; transform: none !important; }
  .mobile-cta { transition: none !important; }
}

/* == 19 Utilities =========================================================
   Bewusst als Klassen statt als style-Attribute, damit die Content Security
   Policy ohne 'unsafe-inline' fuer style-src auskommt.
   ========================================================================== */

.u-mt-1 { margin-top: 1.25rem; }
.u-mt-2 { margin-top: 1.5rem; }
.u-mt-3 { margin-top: 1.75rem; }
.u-mt-4 { margin-top: 2rem; }
.u-mt-5 { margin-top: 2.5rem; }
.u-mt-6 { margin-top: 3rem; }
.u-mb-0 { margin-bottom: 0; }
.u-mb-1 { margin-bottom: 1rem; }
.u-mb-2 { margin-bottom: 1.25rem; }
.u-mb-4 { margin-bottom: 2rem; }
.u-m-0  { margin: 0; }

.u-center    { margin-inline: auto; }
.u-narrow    { max-width: 20ch; }
.u-jc-center { justify-content: center; }
.u-ai-start  { align-items: start; }
.u-bare      { list-style: none; padding: 0; }
.u-static    { cursor: default; }
.u-gold      { color: var(--gold-text); }
.u-stack-2   { --stack-gap: 2rem; }
.u-plain     { text-decoration: none; color: inherit; }

/* Ruhiger Seitenkopf der Unterseiten */
.page-header { padding-top: calc(var(--header-h) + var(--section-y) * 0.6); }

/* Gestaffelter Hero-Auftritt ohne inline-Style */
.hero__animate--1 { --d: 60ms; }
.hero__animate--2 { --d: 180ms; }
.hero__animate--3 { --d: 260ms; }
.hero__animate--4 { --d: 360ms; }
.hero__animate--5 { --d: 440ms; }
.hero__animate--6 { --d: 520ms; }

@media print {
  .header, .mobile-cta, .mobile-menu, .hero__glow, .hero__arc, .skip-link { display: none !important; }
  body { background: #fff; }
  .section--deep, .footer { background: #fff !important; color: #000 !important; }
}
