/* ==========================================================================
   DONUM — Casino Landing Page · VERSION F-v2 (Launch)
   Editorial luxury. Vollbild-Hero mit geschütztem Flakon, ruhiges globales
   Motion-System, Habanero-Fleuron, EIN klarer Conversion-Pfad.
   ========================================================================== */

/* ---------- Design tokens (aus der DONUM-Verpackung abgeleitet) ---------- */
:root {
  --navy-950: #0a1220;
  --navy-900: #0e1a2c;
  --navy-800: #142338;
  --navy-700: #1c3049;
  --navy-600: #27405f;
  --cream:    #efe8db;
  --paper:    #f5f0e7;
  --ink:      #1d2634;
  --ink-soft: #4a5568;
  --gold:     #c2a06b;
  --gold-soft:#dcc59a;
  --gold-dim: rgba(194, 160, 107, 0.32);
  --habanero: #c4571e;
  --text-on-dark: #e9e2d4;
  --muted-on-dark: #aab4c2;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Jost", "Segoe UI", sans-serif;

  --fs-hero:  clamp(1.9rem, calc(1rem + 3.6vw), 3.9rem);
  --fs-h2:    clamp(1.65rem, calc(1.05rem + 2.4vw), 2.9rem);
  --fs-h3:    clamp(1.2rem, calc(1rem + 0.9vw), 1.6rem);
  --fs-body:  clamp(1.02rem, calc(0.96rem + 0.25vw), 1.15rem);
  --fs-kicker:clamp(0.72rem, calc(0.68rem + 0.2vw), 0.82rem);
  --fs-statement: clamp(1.25rem, calc(1rem + 1.3vw), 1.9rem);

  --container: 78rem;
  --container-mid: 56rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9.5vw, 9rem);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 4.6rem; /* Höhe des fixierten Headers (Mobile/Tablet-Versatz) */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  /* Fixierter Header: verankerte Überschriften nie verdecken */
  scroll-padding-top: 5.5rem;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.68;
  color: var(--text-on-dark);
  background: var(--navy-900);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, p, ul, ol, figure, figcaption, fieldset { margin: 0; }
ul, ol { padding: 0; list-style: none; }
fieldset { border: 0; padding: 0; }
a { color: inherit; }
::selection { background: var(--gold); color: var(--navy-950); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* ---------- Typografie ---------- */
h1, h2, h3, .statement-inline, .result-headline, .pull-quote, .ops-headline {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.16;
  text-wrap: balance;
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
.lang-en { font-style: italic; font-weight: 400; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--sans);
  font-size: var(--fs-kicker);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.kicker::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
  flex: 0 0 auto;
}
.kicker-ink { color: #9a7b3f; }
.kicker-center { justify-content: center; }

.statement-inline {
  font-size: var(--fs-statement);
  line-height: 1.3;
  margin-top: 1.6rem;
}
.statement-gold { color: var(--gold-soft); }

.pull-quote {
  font-size: var(--fs-statement);
  color: var(--gold-soft);
  margin: 1.8rem 0;
  padding-left: 1.4rem;
  border-left: 1px solid var(--gold);
}

.positioning-line {
  font-family: var(--serif);
  font-size: clamp(1.1rem, calc(1rem + 0.6vw), 1.45rem);
  color: var(--gold-soft);
  letter-spacing: 0.02em;
  margin: 1.6rem 0 0;
}
.positioning-dark { color: #9a7b3f; }

.microcopy {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--muted-on-dark);
  margin-top: 0.9rem;
}

.section p + p,
.hero-copy p + p { margin-top: 1em; }

/* ---------- Buttons & Link-CTAs ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 1.05rem 2.1rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 50px;
  transition: color 0.45s var(--ease), border-color 0.45s var(--ease);
}
.btn .btn-arrow { transition: transform 0.45s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(5px); }
.btn-primary { background: var(--gold); color: var(--navy-950); }
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold-soft);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
}
.btn-primary:hover::before, .btn-primary:focus-visible::before { transform: translateY(0); }
.btn-primary > * { position: relative; }
.btn-ghost {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(233, 226, 212, 0.4);
}
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--gold); color: var(--gold-soft); }
.btn-outline { background: transparent; color: var(--gold-soft); }
.btn-outline:hover, .btn-outline:focus-visible { background: var(--gold); color: var(--navy-950); }
.btn-small { padding: 0.55rem 1.3rem; font-size: 0.74rem; min-height: 40px; white-space: nowrap; }
.btn-block { width: 100%; }
.btn:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 3px; }

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-soft);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold-dim);
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.link-cta .btn-arrow { transition: transform 0.45s var(--ease); }
.link-cta:hover, .link-cta:focus-visible { border-color: var(--habanero); }
.link-cta:hover .btn-arrow { transform: translateX(5px); color: var(--habanero); }
.link-cta:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 3px; }
.cta-inline { margin-top: 2.2rem; }

/* ---------- Scroll progress + Header ---------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 60;
}
/* Header: von Anfang an sichtbar dunkles Navy, nie transparent */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(10, 18, 32, 0.97);
  box-shadow: 0 1px 0 rgba(194, 160, 107, 0.1);
  transition: box-shadow 0.45s var(--ease), backdrop-filter 0.45s var(--ease);
}
.site-header.scrolled {
  background: rgba(10, 18, 32, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(194, 160, 107, 0.24);
}
.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.05rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand img { width: clamp(110px, 11.3vw, 150px); height: auto; }
.header-nav { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-on-dark);
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.nav-link:hover, .nav-link:focus-visible { color: var(--gold-soft); }
/* Header-CTA: langer Text auf Desktop, kurzer einzeiliger Text auf Mobile */
.cta-short { display: none; }
@media (max-width: 719px) {
  :root { --header-h: 4.1rem; }
  .nav-link { display: none; }
  .cta-full { display: none; }
  .cta-short { display: inline; }
  .header-inner { padding: 0.8rem var(--gutter); }
  .brand img { width: 104px; }
  .btn-small { font-size: 0.7rem; letter-spacing: 0.14em; padding: 0.5rem 1rem; }
}

/* ---------- 1 · HERO — Vollbild, Text rechts, Flakon geschützt ---------- */
.hero {
  position: relative;
  min-height: 100vh;  /* Fallback */
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-950);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Bild zentriert — bei 16:9-Viewports praktisch ohne Beschnitt */
  object-position: center;
  transform-origin: center;
}
/* Scrim nur rechts, wo der Text steht — Bild nicht flächig abdunkeln */
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(270deg, rgba(8, 14, 26, 0.88) 0%, rgba(8, 14, 26, 0.6) 30%, rgba(8, 14, 26, 0.12) 58%, rgba(8, 14, 26, 0) 76%),
    linear-gradient(0deg, rgba(8, 14, 26, 0.45) 0%, rgba(8, 14, 26, 0) 24%);
}
.hero-inner {
  width: 100%;
  padding-top: clamp(6.5rem, 12vh, 8.5rem);
  padding-bottom: clamp(3.5rem, 7vh, 5.5rem);
}
.hero-content {
  max-width: min(36rem, 100%);
  margin-left: auto; /* Inhalt rechts, über Box-/Hintergrundfläche */
}
.hero h1 {
  color: #f3ecdd;
  letter-spacing: -0.01em;
  margin-top: 0.3rem;
}
/* Maskierter Wort-Reveal */
.hero h1 .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.hero h1 .w > span { display: inline-block; }
.hero-copy {
  margin-top: 1.6rem;
  max-width: min(32rem, 100%);
}
.hero-copy p { color: var(--text-on-dark); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

/* Hero-Entrance: Bild zuerst (Fade + sehr langsamer Zoom),
   danach Headline als maskierter Wort-Reveal, dann sanfter Stagger.
   Nur mit JS und erlaubter Bewegung — sonst alles statisch sichtbar. */
@media (prefers-reduced-motion: no-preference) {
  .js .hero-media img {
    opacity: 0;
    animation:
      heroFade 1.4s ease forwards,
      heroZoom 26s linear forwards;
  }
  .js .hero [data-stagger] {
    opacity: 0;
    transform: translateY(18px);
    animation: rise 0.95s var(--ease) forwards;
  }
  .js .hero [data-stagger="1"] { animation-delay: 1s; }
  .js .hero [data-stagger="3"] { animation-delay: 2.3s; }
  .js .hero [data-stagger="4"] { animation-delay: 2.5s; }
  .js .hero [data-stagger="5"] { animation-delay: 2.7s; }
  .js .hero h1 .w > span {
    opacity: 0;
    transform: translateY(112%);
    animation: wordRise 0.8s var(--ease) forwards;
    animation-delay: calc(1.25s + var(--i) * 0.06s);
  }
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes wordRise { to { opacity: 1; transform: translateY(0); } }
@keyframes heroFade { to { opacity: 1; } }
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.07); }
}

/* Mobile & Tablet (bis 1023px): bildgeführte Komposition — das VOLLSTÄNDIGE
   Bild oben in natürlicher Proportion (kein Crop), Navy-Textfläche darunter.
   Kein Textblock über dem Flakon. */
@media (max-width: 1023px) {
  .hero {
    display: block;
    min-height: 0;
    /* Fixierter Header überdeckt das Bild nicht: Hero beginnt direkt darunter.
       Der Versatz ist Navy auf Navy — unsichtbar, kein Layout-Sprung. */
    padding-top: var(--header-h, 4.6rem);
  }
  .hero-media {
    position: relative;
    inset: auto;
  }
  .hero-media img {
    width: 100%;
    height: auto;          /* natürliche 16:9-Proportion — Flakon UND Box sichtbar */
    object-fit: contain;
    object-position: center;
  }
  .hero-scrim {
    inset: 0;
    background: linear-gradient(0deg, var(--navy-950) 0%, rgba(8, 14, 26, 0.04) 18%, rgba(8, 14, 26, 0) 40%);
    z-index: 0;
  }
  .hero-inner {
    position: relative;
    background: var(--navy-950);
    padding-top: 1.25rem;
    padding-bottom: 3.5rem;
  }
  .hero-content { margin-left: 0; max-width: 40rem; }
}
@media (max-width: 719px) {
  .hero-actions .btn { width: 100%; }
}

/* ---------- Sektionen / Container ---------- */
.section { padding-block: var(--section-y); position: relative; }
.section-slim { padding-block: clamp(3.5rem, 7vw, 6rem); }
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-mid { max-width: var(--container-mid); }

.section-cream { background: var(--cream); color: var(--ink); }
.section-cream .statement-inline { color: #14202f; }
.section-cream .microcopy { color: var(--ink-soft); }
.section-navy { background: var(--navy-800); }
.section-navy-deep { background: var(--navy-900); }
.section-cta { background: linear-gradient(180deg, var(--navy-900), var(--navy-950)); }

.section-navy h2, .section-navy-deep h2 { color: #f3ecdd; }
.section-navy p, .section-navy-deep p { color: var(--muted-on-dark); }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.head-sub {
  display: block;
  font-size: 0.6em;
  font-style: italic;
  font-weight: 400;
  color: var(--muted-on-dark);
  margin-top: 0.55rem;
}

/* ---------- Split-Layouts ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.split-text h2 { margin-bottom: 1.3rem; }
.split-media img {
  width: 100%;
  box-shadow: 0 34px 70px -34px rgba(10, 18, 32, 0.6);
}
/* Sektion 2: Text ~46 % / Bild ~54 % */
.split-beziehung { grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr); }
/* Sektion Herkunft: Text ~41 % / Bild ~59 % */
.split-herkunft { grid-template-columns: minmax(0, 0.41fr) minmax(0, 0.59fr); }
@media (max-width: 899px) {
  .split, .split-beziehung, .split-herkunft { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---------- 3 · Warum DONUM ---------- */
.split-warum { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); }
.warum-media {
  max-width: 27rem;
  width: 100%;
  margin-inline: auto;
}
.warum-media img { box-shadow: 0 40px 80px -36px rgba(0, 0, 0, 0.75); }
@media (max-width: 899px) {
  .split-warum { grid-template-columns: 1fr; }
  .warum-media { max-width: 24rem; }
}

/* ---------- 4 · The second visit ---------- */
.retention-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.retention-heading { max-width: 46rem; }
.second-visit {
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(0, 0.46fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.second-visit-media img {
  width: 100%;
  box-shadow: 0 34px 70px -34px rgba(10, 18, 32, 0.55);
}
.retention-intro {
  max-width: 40rem;
  color: var(--ink-soft);
}
.goal-list {
  margin-top: 2rem;
  display: grid;
  gap: 1.2rem;
}
.goal-list li {
  font-family: var(--serif);
  font-size: clamp(1.15rem, calc(1rem + 0.6vw), 1.45rem);
  font-weight: 500;
  line-height: 1.35;
  color: #14202f;
  padding-top: 1rem;
  border-top: 1px solid var(--gold);
}
.retention-statement {
  margin-top: clamp(3rem, 6vw, 5rem);
  text-align: center;
  font-size: clamp(1.45rem, calc(1.1rem + 1.6vw), 2.3rem);
  max-width: 30ch;
  margin-inline: auto;
}
@media (max-width: 899px) {
  .second-visit { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---------- 5 · Interaktive Bühne (Hotspots) ---------- */
.stage { position: relative; overflow: visible; }
.stage-media {
  overflow: hidden;
  aspect-ratio: 25 / 16;
}
.stage-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.stage-scrim {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(160deg, rgba(8, 14, 26, 0.78) 0%, rgba(8, 14, 26, 0.35) 34%, rgba(8, 14, 26, 0) 55%),
    linear-gradient(0deg, rgba(8, 14, 26, 0.35) 0%, rgba(8, 14, 26, 0) 22%);
}
.stage-head {
  position: absolute;
  top: clamp(1.5rem, 4vw, 3rem);
  left: clamp(1.5rem, 4vw, 3rem);
  max-width: 34rem;
  z-index: 2;
}
.stage-head h2 { color: #f3ecdd; text-shadow: 0 2px 18px rgba(8, 14, 26, 0.55); }

.hotspots { position: absolute; inset: 0; z-index: 3; }
.hotspot-point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  translate: -50% -50%;
}
.hotspot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  background: rgba(10, 18, 32, 0.72);
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.05rem;
  cursor: pointer;
  transition: background-color 0.35s var(--ease), transform 0.35s var(--ease), color 0.35s var(--ease);
}
.hotspot:hover, .hotspot:focus-visible { background: var(--navy-800); transform: scale(1.08); }
.hotspot:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 3px; }
/* Aktiver Hotspot: dezent hervorgehoben (Desktop-Klick + Mobile-Tap) */
.hotspot-point.active .hotspot {
  background: var(--gold);
  color: var(--navy-950);
  border-color: var(--gold);
}
@media (prefers-reduced-motion: no-preference) {
  .hotspot::before {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1px solid rgba(220, 197, 154, 0.5);
    animation: pulse 2.8s var(--ease) infinite;
  }
}
@keyframes pulse {
  0%   { transform: scale(0.82); opacity: 0; }
  35%  { opacity: 1; }
  100% { transform: scale(1.22); opacity: 0; }
}
.hotspot-card {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.9rem);
  translate: -18% 0;
  width: min(19rem, 74vw);
  background: rgba(14, 26, 44, 0.96);
  border: 1px solid var(--gold-dim);
  border-top: 2px solid var(--gold);
  padding: 1.3rem 1.4rem;
  box-shadow: 0 26px 55px -20px rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0s linear 0.4s;
  z-index: 4;
}
.hotspot-point.flip .hotspot-card { translate: -82% 0; }
.hotspot-point.rise .hotspot-card {
  top: auto;
  bottom: calc(100% + 0.9rem);
  transform: translateY(-8px);
}
.hotspot-point:hover .hotspot-card,
.hotspot-point:focus-within .hotspot-card,
.hotspot-point.active .hotspot-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.hotspot-card h3 {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  color: #f3ecdd;
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}
.card-n {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 0.95em;
}
.hotspot-card p { font-size: 0.92rem; color: var(--muted-on-dark); }
.hotspot-card p + p { margin-top: 0.6em; }
.step-note { font-style: italic; color: var(--gold-soft) !important; }

/* ---------- Mobile: Hotspots bleiben auf dem Foto, EIN Panel darunter ---------- */
.step-panel { display: none; }
@media (max-width: 899px) {
  /* Titel über dem Foto; Hotspot-Ebene exakt über der Foto-Fläche */
  .stage { display: flex; flex-direction: column; }
  .stage-head {
    position: static;
    order: -1;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  .stage-head h2 { color: #f3ecdd; text-shadow: none; }
  .stage-scrim { display: none; }
  .hotspots {
    top: auto;
    bottom: 0;
    height: calc((100vw - 2 * var(--gutter)) * 16 / 25);
  }
  /* Hotspots sichtbar und tappbar; Desktop-Popover-Karten aus */
  .hotspot-card { display: none; }
  .step-panel {
    display: block;
    margin-top: 1.1rem;
    background: var(--navy-800);
    border: 1px solid var(--gold-dim);
    border-top: 2px solid var(--gold);
    padding: 1.4rem 1.4rem 1.5rem;
    transition: opacity 0.24s var(--ease);
  }
  .step-panel.is-switching { opacity: 0; }
  .step-panel h3 {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    color: #f3ecdd;
    font-size: 1.2rem;
    margin-bottom: 0.55rem;
  }
  .step-panel p { font-size: 0.96rem; color: var(--muted-on-dark); }
  .step-panel p + p { margin-top: 0.6em; }
}

.ops {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(1.8rem, 4vw, 2.6rem) clamp(1.5rem, 4vw, 3rem);
  border-left: 2px solid var(--gold);
  background: var(--navy-800);
  max-width: 52rem;
}
.ops-headline {
  font-size: clamp(1.3rem, calc(1rem + 1vw), 1.7rem);
  color: #f3ecdd;
  margin-bottom: 0.9rem;
}
.ops-copy { color: var(--muted-on-dark); }
.ops-gold {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-soft) !important;
  margin-top: 1rem !important;
}

.result-banner {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(2.2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  border-block: 1px solid var(--gold-dim);
  text-align: center;
}
.result-headline {
  font-size: var(--fs-h2);
  color: #f3ecdd;
  max-width: 44rem;
  margin-inline: auto;
}
.result-sub {
  margin-top: 1rem;
  font-family: var(--serif);
  font-size: clamp(1.05rem, calc(1rem + 0.4vw), 1.3rem);
  color: var(--gold-soft) !important;
}
.result-actions { margin-top: 2rem; }

/* ---------- 6 · Cinema (Prinzip) ---------- */
.cinema {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  padding-block: clamp(5rem, 11vw, 10rem);
  display: flex;
  align-items: center;
}
.cinema-media {
  position: absolute;
  /* Bildfenster endet bei 76% der Breite: der Flakon (Bildmitte) steht bei
     ~38% — der Textblock rechts überdeckt Flakon und Stein nicht mehr */
  inset: -65px 24% -65px 0;
  z-index: 0;
  will-change: transform;
}
.cinema-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.cinema-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(270deg, rgba(8, 14, 26, 0.96) 0%, rgba(8, 14, 26, 0.85) 28%, rgba(8, 14, 26, 0.3) 55%, rgba(8, 14, 26, 0.05) 80%),
    linear-gradient(0deg, rgba(8, 14, 26, 0.5) 0%, rgba(8, 14, 26, 0) 25%);
}
.cinema-container { position: relative; z-index: 2; width: 100%; }
.cinema-content { max-width: 36rem; margin-left: auto; }
.cinema h2 { color: #f3ecdd; margin-bottom: 1.6rem; }
.cinema p { color: var(--muted-on-dark); }
.sense-list { margin-block: 1.8rem; }
.sense-list li {
  font-family: var(--serif);
  font-size: clamp(1.2rem, calc(1rem + 0.9vw), 1.6rem);
  font-weight: 500;
  color: #f3ecdd;
  line-height: 1.4;
  padding-block: 0.75rem;
  border-bottom: 1px solid rgba(194, 160, 107, 0.24);
}
.sense-list li:first-child { border-top: 1px solid rgba(194, 160, 107, 0.24); }
.edition-note {
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(194, 160, 107, 0.24);
}
.edition-note .statement-inline {
  font-size: clamp(1.15rem, calc(1rem + 0.8vw), 1.5rem);
  color: #f3ecdd;
}
@media (max-width: 899px) {
  .cinema { padding-block: 0; display: block; }
  .cinema-media {
    position: relative;
    inset: auto;
    aspect-ratio: 4 / 5;
    max-height: 70vh;
  }
  .cinema-media img { object-position: center 30%; }
  .cinema-scrim {
    background: linear-gradient(0deg, var(--navy-950) 0%, rgba(8, 14, 26, 0) 30%);
  }
  .cinema-container { padding-block: 3rem 4.5rem; }
  .cinema-content { margin-left: 0; max-width: 100%; }
}

/* ---------- 6b · Press-Band (Publikationen — redaktionell) ---------- */
.press-band {
  background: var(--navy-950);
  border-block: 1px solid rgba(194, 160, 107, 0.16);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.press-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem clamp(3rem, 7vw, 6rem);
  margin-bottom: 1.6rem;
}
.press-row a { display: block; transition: opacity 0.4s var(--ease); }
.press-row img {
  height: clamp(24px, calc(18px + 0.8vw), 34px);
  width: auto;
  filter: grayscale(1) brightness(1.35);
  opacity: 0.85;
}
.press-row a:hover img, .press-row a:focus-visible img { opacity: 1; }
.press-row a:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 4px; }
.press-caption {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--muted-on-dark);
}

/* ---------- 7 · Herkunft (Alpen) ---------- */
.herkunft-copy { max-width: 44rem; color: var(--ink); }
.herkunft-media { position: relative; }
.herkunft-media img {
  width: 100%;
  box-shadow: 0 34px 70px -34px rgba(10, 18, 32, 0.5);
}
.herkunft-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink-soft);
  padding-top: 0.8rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--habanero);
  display: inline-block;
}
.negation-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 0;
  margin-top: 2.6rem;
}
.negation-row li {
  font-family: var(--serif);
  font-size: clamp(1.1rem, calc(1rem + 0.5vw), 1.35rem);
  font-weight: 500;
  color: #14202f;
  padding-right: 1.6rem;
  margin-right: 1.6rem;
  border-right: 1px solid var(--gold);
}
.negation-row li:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
@media (max-width: 639px) {
  .negation-row { flex-direction: column; }
  .negation-row li {
    border-right: 0; margin-right: 0; padding-right: 0;
    padding-left: 1.2rem;
    border-left: 1px solid var(--gold);
  }
}

/* ---------- 8 · Anfrage / Formular ---------- */
.anfrage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.anfrage-text h2 { color: #f3ecdd; margin-bottom: 1.4rem; }
.anfrage-text p { color: var(--muted-on-dark); }
.anfrage-text strong { color: var(--text-on-dark); font-weight: 500; }
.anfrage-box { margin-top: 1.5rem; max-width: 26rem; }
.anfrage-box img {
  width: 100%;
  filter: drop-shadow(0 40px 50px rgba(0, 0, 0, 0.55));
}

.form-panel {
  background: var(--navy-700);
  border: 1px solid rgba(194, 160, 107, 0.2);
  padding: clamp(1.75rem, 4vw, 3rem);
  position: sticky;
  top: 6rem;
}
.form-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), transparent);
}
.form-heading { color: #f3ecdd; margin-bottom: 1.8rem; }
.field { margin-bottom: 1.4rem; }
.field label, .interest-field legend {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.55rem;
}
.req { color: var(--gold); }
.field label .opt {
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 300;
  color: var(--muted-on-dark);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.95rem 1.1rem;
  min-height: 50px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input::placeholder { color: #97917f; }
.field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(194, 160, 107, 0.25);
}
.field input[aria-invalid="true"] { border-color: #b3542e; }
.field-error {
  font-size: 0.84rem;
  color: #eda98a;
  margin-top: 0.45rem;
}
.interest-options { display: grid; gap: 0.7rem; }
.interest-option { position: relative; display: block; cursor: pointer; }
.interest-option input {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%; height: 100%;
  cursor: pointer;
}
.interest-label {
  display: block;
  font-size: 0.98rem;
  padding: 0.95rem 1.1rem 0.95rem 2.8rem;
  border: 1px solid var(--navy-600);
  background: var(--navy-800);
  color: var(--text-on-dark);
  min-height: 50px;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
/* Checkbox-Optik: beide Optionen kombinierbar */
.interest-label::before {
  content: "";
  position: absolute;
  left: 1.05rem; top: 50%;
  translate: 0 -50%;
  width: 18px; height: 18px;
  border: 1px solid var(--gold);
  background: transparent;
  transition: background-color 0.25s var(--ease);
}
.interest-label::after {
  content: "";
  position: absolute;
  left: calc(1.05rem + 4px); top: 50%;
  translate: 0 -68%;
  width: 9px; height: 5px;
  border-left: 2px solid var(--navy-950);
  border-bottom: 2px solid var(--navy-950);
  rotate: -45deg;
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}
.interest-option input:checked + .interest-label {
  border-color: var(--gold);
  background: rgba(194, 160, 107, 0.1);
}
.interest-option input:checked + .interest-label::before { background: var(--gold); }
.interest-option input:checked + .interest-label::after { opacity: 1; }
.interest-option input:focus-visible + .interest-label {
  outline: 2px solid var(--gold-soft);
  outline-offset: 2px;
}
#prototype-form .btn-block { margin-top: 0.6rem; }
.form-microcopy { text-align: center; }
/* Ehrlicher Prototyp-Hinweis — erscheint erst bei Klick auf „Anfrage senden“ */
.prototype-hint {
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  border: 1px dashed rgba(194, 160, 107, 0.4);
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--gold-soft);
  text-align: center;
}
.ghl-form-container { width: 100%; }
.ghl-form-container iframe {
  width: 100%;
  min-height: 560px;
  border: none;
  display: block;
}
@media (max-width: 999px) {
  .anfrage-grid { grid-template-columns: 1fr; }
  .form-panel { position: static; }
  .anfrage-box { max-width: 21rem; margin-inline: auto; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: #070d17;
  border-top: 1px solid rgba(194, 160, 107, 0.14);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
  text-align: center;
}
.footer-fleuron { width: 30px; height: auto; opacity: 0.85; }
.footer-inner > img:not(.footer-fleuron) { width: 110px; height: auto; }
.footer-line {
  font-family: var(--serif);
  color: var(--gold-soft);
  font-size: 1.05rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
}
.footer-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted-on-dark);
  transition: color 0.3s var(--ease);
}
.footer-nav a:hover, .footer-nav a:focus-visible { color: var(--gold-soft); }

/* ==========================================================================
   GLOBALES MOTION-SYSTEM (VERSION F-v2)
   Text:  Opacity 0→1, translateY 20px→0, ~0.9s
   Bild:  Opacity 0→1, Scale 1.025→1, dezente Maske, ~1.1s
   Paare: Bild folgt Text mit ~120ms Versatz. Alles läuft genau einmal.
   Ohne JS oder mit reduzierter Bewegung: alles sofort sichtbar.
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  }
  .js .reveal.in-view { opacity: 1; transform: translateY(0); }

  .js .img-reveal {
    opacity: 0;
    transform: scale(1.025);
    clip-path: inset(0 0 8% 0);
    transition:
      opacity 1.1s var(--ease),
      transform 1.1s var(--ease),
      clip-path 1.1s var(--ease);
  }
  .js .img-reveal.in-view,
  .js .reveal.in-view .img-reveal {
    opacity: 1;
    transform: scale(1);
    clip-path: inset(0);
  }
  /* Bild/Text-Paare: kleines Stagger für das Bild */
  .js .split .img-reveal,
  .js .second-visit .img-reveal {
    transition-delay: 0.12s;
  }
}
