/* ============================================================
   DiscoDash — Designsystem (fiktive Demo)
   Register: brand · Strategie: Committed (after dark + Magenta + Gold)
   Display: Bricolage Grotesque · Body: Hanken Grotesk (self-hosted)
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/fonts/bricolage-grotesque.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("/assets/fonts/hanken-grotesk.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

/* ---------- Tokens ---------- */
:root {
  /* Surfaces (after dark, plum-tinted) */
  --ink-900: oklch(0.15 0.028 320);
  --ink-850: oklch(0.185 0.030 320);
  --ink-800: oklch(0.225 0.032 320);
  --ink-750: oklch(0.275 0.032 320);
  --line:    oklch(0.32 0.030 320);
  --line-soft: oklch(0.26 0.026 320);

  /* Text on dark */
  --paper: oklch(0.96 0.012 80);
  --muted: oklch(0.745 0.020 320);
  --faint: oklch(0.63 0.020 320);

  /* Signature + festlich */
  --magenta:        oklch(0.62 0.23 350);
  --magenta-bright: oklch(0.70 0.215 350);
  --on-magenta:     oklch(0.99 0.012 350);
  --gold:           oklch(0.83 0.125 78);
  --gold-deep:      oklch(0.74 0.13 70);

  /* Warme Hell-Sektion (goldene Stunde) */
  --cream:     oklch(0.96 0.020 78);
  --cream-2:   oklch(0.93 0.022 78);
  --cream-ink: oklch(0.23 0.030 320);
  --cream-mut: oklch(0.45 0.022 320);
  --cream-line: oklch(0.86 0.020 78);

  --success: oklch(0.74 0.15 155);
  --danger:  oklch(0.64 0.20 25);

  /* Type */
  --font-display: "Bricolage Grotesque", system-ui, "Segoe UI", sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  --step-hero: clamp(2.85rem, 1.4rem + 6vw, 5.75rem);
  --step-xl:   clamp(2.1rem, 1.2rem + 3.6vw, 3.4rem);
  --step-lg:   clamp(1.55rem, 1.1rem + 1.9vw, 2.25rem);
  --step-md:   clamp(1.2rem, 1.05rem + 0.7vw, 1.45rem);
  --lead:      clamp(1.08rem, 1rem + 0.5vw, 1.3rem);

  /* Space + shape */
  --content: 1200px;
  --narrow: 760px;
  --gutter: clamp(1.25rem, 4.5vw, 3rem);
  --section-y: clamp(4.5rem, 3rem + 6vw, 8.5rem);
  --r-sm: 10px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 30px;

  --shadow-1: 0 1px 2px rgba(0,0,0,.45);
  --shadow-card: 0 26px 60px -28px rgba(0,0,0,.75);
  --shadow-float: 0 18px 40px -16px rgba(0,0,0,.6);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.33, 0, 0.1, 1);

  --nav-h: 68px;
  --band-h: 36px;
}

/* Fallback für sehr alte Browser ohne OKLCH */
@supports not (color: oklch(0.5 0.1 320)) {
  :root {
    --ink-900:#15101c; --ink-850:#1b1426; --ink-800:#231a30; --ink-750:#2c2139;
    --line:#372b46; --line-soft:#2a2036; --paper:#f6f3ec; --muted:#b4a7c2; --faint:#9a8fac;
    --magenta:#d61f86; --magenta-bright:#ee5aae; --on-magenta:#fff6fb; --gold:#ecc061; --gold-deep:#d6a23f;
    --cream:#f5efe2; --cream-2:#eee5d2; --cream-ink:#2a2233; --cream-mut:#6a607a; --cream-line:#e2d8c4;
    --success:#3fbf83; --danger:#e0584a;
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--paper);
  background: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
img { background: var(--ink-800); }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--magenta-bright); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--magenta); color: var(--on-magenta); }

/* ---------- Typo ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
p { text-wrap: pretty; }
.display { font-family: var(--font-display); }
.italic-gold { color: var(--gold); font-style: italic; font-weight: 600; }
strong { font-weight: 650; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 0.6em;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold-deep); opacity: .8; }

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--content); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5rem); }
.section--alt { background: var(--ink-850); }
.section--cream { background: var(--cream); color: var(--cream-ink); }
.section--cream .eyebrow { color: var(--gold-deep); }
.section--cream .eyebrow::before { background: var(--gold-deep); }
.section--cream p { color: var(--cream-mut); }
.section__head { max-width: 56ch; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section__head h2 { font-size: var(--step-xl); margin-top: 0.7rem; }
.section__head .lead { font-size: var(--lead); color: var(--muted); margin-top: 1rem; max-width: 60ch; }
.section--cream .section__head .lead { color: var(--cream-mut); }
.center { text-align: center; margin-inline: auto; }
.center .lead { margin-inline: auto; }

/* ---------- Demo band ---------- */
.demo-band {
  background: linear-gradient(90deg, var(--ink-850), var(--ink-800));
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.78rem; color: var(--muted);
  min-height: var(--band-h);
  display: flex; align-items: center; justify-content: center;
  gap: 0.55em; text-align: center; padding: 0.4rem var(--gutter);
}
.demo-band b { color: var(--paper); font-weight: 600; }
.demo-band .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; box-shadow: 0 0 0 3px oklch(0.83 0.125 78 / .18); }
.demo-band a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: oklch(0.15 0.028 320 / 0.78); backdrop-filter: blur(14px) saturate(1.2); border-bottom: 1px solid var(--line-soft); }
.nav__inner { display: flex; align-items: center; gap: 1.5rem; height: var(--nav-h); }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 800; font-size: 1.32rem; letter-spacing: -0.03em; color: var(--paper); }
.brand__mark { width: 26px; height: 26px; flex: none; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; margin-left: auto; }
.nav__links a { color: var(--muted); font-size: 0.95rem; font-weight: 500; transition: color .2s var(--ease); position: relative; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--paper); }
.nav__links a[aria-current="page"]::after { content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background: var(--magenta); border-radius:2px; }
.nav__cta { margin-left: 0.4rem; }
.nav__burger { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--r-sm); align-items: center; justify-content: center; }
.nav__burger svg { width: 22px; height: 22px; }

/* Mobile sheet */
.sheet { position: fixed; inset: 0; z-index: 60; background: var(--ink-900); padding: var(--gutter); transform: translateY(-100%); transition: transform .42s var(--ease); display: flex; flex-direction: column; }
.sheet[data-open="true"] { transform: translateY(0); }
.sheet__top { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.sheet__close { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--r-sm); display: grid; place-items: center; }
.sheet__links { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 2rem; }
.sheet__links a { font-family: var(--font-display); font-weight: 700; font-size: 2rem; letter-spacing: -0.02em; padding: 0.4rem 0; border-bottom: 1px solid var(--line-soft); }
.sheet__cta { margin-top: auto; padding-top: 2rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  height: 48px; padding: 0 1.4rem; border-radius: 12px;
  font-weight: 600; font-size: 0.98rem; letter-spacing: -0.01em;
  transition: transform .18s var(--ease), background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--lg { height: 54px; padding: 0 1.8rem; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--magenta); color: var(--on-magenta); }
.btn--primary:hover { background: var(--magenta-bright); transform: translateY(-2px); }
.btn--outline { border: 1px solid var(--line); color: var(--paper); background: oklch(1 0 0 / 0.02); }
.btn--outline:hover { border-color: var(--paper); background: oklch(1 0 0 / 0.06); }
.btn--ghost { color: var(--paper); padding-inline: 0.4rem; }
.btn--ghost .arrow { transition: transform .25s var(--ease); }
.btn--ghost:hover .arrow { transform: translateX(4px); }
.btn--ghost:hover { color: var(--magenta-bright); }
.section--cream .btn--outline { border-color: var(--cream-line); color: var(--cream-ink); background: oklch(0 0 0 / 0.02); }
.section--cream .btn--outline:hover { border-color: var(--cream-ink); background: oklch(0 0 0 / 0.05); }
.section--cream .btn--ghost { color: var(--cream-ink); }

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

/* ---------- Pills / chips ---------- */
.pill { display: inline-flex; align-items: center; gap: 0.5em; padding: 0.4rem 0.85rem; border: 1px solid var(--line); border-radius: 999px; font-size: 0.84rem; color: var(--muted); background: oklch(1 0 0 / 0.02); }
.pill .stars { color: var(--gold); letter-spacing: 0.05em; }
.pill b { color: var(--paper); font-weight: 600; font-variant-numeric: tabular-nums; }
.pill-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.tag { display:inline-block; font-size:0.72rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color: var(--gold); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(3rem, 2rem + 5vw, 6rem) var(--section-y); overflow: clip; }
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__kicker { margin-bottom: 1.4rem; }
.hero h1 { font-size: var(--step-hero); font-weight: 800; max-width: 14ch; }
.hero__lead { font-size: var(--lead); color: var(--muted); margin-top: 1.4rem; max-width: 46ch; line-height: 1.6; }
.hero__cta { margin-top: 2rem; }
.hero__trust { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.65rem 1.3rem; align-items: center; color: var(--muted); font-size: 0.9rem; }
.hero__trust .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--faint); }
.hero__trust b { color: var(--paper); font-variant-numeric: tabular-nums; }

.hero__media { position: relative; }
.frame { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--line-soft); }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--photo::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, oklch(0.15 0.028 320 / 0.55)); pointer-events:none; }
.hero__media .frame { aspect-ratio: 4 / 5; }

/* floating chips on hero photo */
.float-chip { position: absolute; display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.6rem 0.85rem; background: oklch(0.15 0.028 320 / 0.78); backdrop-filter: blur(10px); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-float); font-size: 0.85rem; }
.float-chip--rating { top: 1rem; right: 1rem; }
.float-chip--rating .stars { color: var(--gold); }
.float-chip--rating b { font-variant-numeric: tabular-nums; }
.float-chip--np { bottom: 1rem; left: 1rem; max-width: 78%; }
.float-chip--np .eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 16px; }
.float-chip--np .eq span { width: 3px; background: var(--magenta-bright); border-radius: 2px; animation: eq 1.1s var(--ease) infinite alternate; }
.float-chip--np .eq span:nth-child(2){ animation-delay:.18s } .float-chip--np .eq span:nth-child(3){ animation-delay:.36s } .float-chip--np .eq span:nth-child(4){ animation-delay:.5s }
.float-chip--np .np__t { color: var(--muted); font-size: 0.74rem; }
.float-chip--np .np__s { color: var(--paper); font-weight: 600; }
@keyframes eq { from { height: 4px } to { height: 16px } }
@media (prefers-reduced-motion: reduce){ .float-chip--np .eq span { animation: none; height: 12px; } }

/* glow accent behind hero (single, subtle, not a glow-shadow on a card) */
.hero::before { content:""; position:absolute; top:-12%; right:-6%; width:46vw; height:46vw; max-width:620px; max-height:620px; background: radial-gradient(circle, oklch(0.62 0.23 350 / 0.22), transparent 62%); filter: blur(20px); z-index:-1; pointer-events:none; }

/* ---------- Proof strip ---------- */
.proof { border-block: 1px solid var(--line-soft); background: var(--ink-850); }
.proof__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem 2.5rem; padding-block: 1.4rem; }
.proof__lead { font-size: 0.88rem; color: var(--muted); max-width: 22ch; }
.proof__logos { display: flex; flex-wrap: wrap; align-items: center; gap: 1.6rem 2.2rem; }
.proof__logos span { color: var(--faint); font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; opacity: .8; }

/* ---------- Occasions (asymmetric) ---------- */
.occasions { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(1.2rem, 3vw, 2rem); }
.occasion-hero { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.5rem, 3vw, 2.2rem); border: 1px solid var(--line-soft); }
.occasion-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.occasion-hero::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, oklch(0.15 0.028 320 / 0.1) 30%, oklch(0.13 0.028 320 / 0.88)); }
.occasion-hero h3 { font-size: var(--step-lg); }
.occasion-hero p { color: var(--muted); margin-top: 0.4rem; max-width: 40ch; }
.occasion-list { display: grid; gap: 0.8rem; align-content: start; }
.occasion { display: flex; gap: 1rem; align-items: flex-start; padding: 1.15rem 1.25rem; border: 1px solid var(--line-soft); border-radius: var(--r); background: var(--ink-850); transition: border-color .25s var(--ease), transform .25s var(--ease), background-color .25s var(--ease); }
.occasion:hover { border-color: var(--line); transform: translateX(4px); background: var(--ink-800); }
.occasion__no { font-family: var(--font-display); font-weight: 700; color: var(--gold); font-variant-numeric: tabular-nums; font-size: 1.05rem; min-width: 1.6em; }
.occasion h4 { font-family: var(--font-body); font-weight: 650; font-size: 1.05rem; letter-spacing: 0; }
.occasion p { color: var(--muted); font-size: 0.92rem; margin-top: 0.15rem; }

/* ---------- Steps (cream) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2.4rem); counter-reset: step; }
.step { position: relative; }
.step__no { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1; color: var(--magenta); font-variant-numeric: tabular-nums; }
.step h3 { font-size: 1.3rem; margin-top: 0.9rem; color: var(--cream-ink); }
.step p { margin-top: 0.5rem; font-size: 0.98rem; }
.step__line { position:absolute; top: 1.1rem; left: 3.2rem; right: -1.2rem; height:1px; background: repeating-linear-gradient(90deg, var(--cream-line) 0 8px, transparent 8px 16px); }
.step:last-child .step__line { display:none; }

/* ---------- Packages ---------- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: stretch; }
.package { display: flex; flex-direction: column; padding: clamp(1.4rem, 2.5vw, 2rem); border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--ink-850); }
.package--featured { background: linear-gradient(180deg, var(--ink-800), var(--ink-850)); border-color: var(--magenta); position: relative; box-shadow: var(--shadow-card); }
.package--featured .package__badge { position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%); background: var(--magenta); color: var(--on-magenta); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 999px; }
.package__name { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; }
.package__for { color: var(--muted); font-size: 0.9rem; margin-top: 0.3rem; min-height: 2.4em; }
.package__price { margin-top: 1.1rem; display: flex; align-items: baseline; gap: 0.4rem; }
.package__price .from { color: var(--faint); font-size: 0.82rem; }
.package__price .amt { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.package__price .amt .cur { color: var(--gold); }
.package__list { margin-top: 1.2rem; display: grid; gap: 0.7rem; font-size: 0.94rem; color: var(--muted); }
.package__list li { display: flex; gap: 0.6rem; align-items: flex-start; }
.package__list .ck { color: var(--magenta-bright); flex: none; margin-top: 0.15rem; }
.package__cta { margin-top: auto; padding-top: 1.4rem; }
.package__note { font-size: 0.78rem; color: var(--faint); margin-top: 0.8rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 0.9rem; }
.gallery a { position: relative; overflow: hidden; border-radius: var(--r); border: 1px solid var(--line-soft); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .5s var(--ease); filter: saturate(0.82) brightness(0.9); }
.gallery a:hover img { transform: scale(1.05); filter: saturate(1.05) brightness(1); }
.gallery .g-wide { grid-column: span 2; } .gallery .g-tall { grid-row: span 2; }
.gallery figcaption { position: absolute; left: 0.8rem; bottom: 0.7rem; font-size: 0.78rem; color: var(--paper); text-shadow: 0 1px 6px rgba(0,0,0,.7); opacity: 0; transform: translateY(6px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.gallery a:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---------- Sets ---------- */
.sets { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.set { display: flex; flex-direction: column; gap: 0.9rem; padding: 1.3rem; border: 1px solid var(--line-soft); border-radius: var(--r); background: var(--ink-850); }
.set__top { display: flex; align-items: center; gap: 0.9rem; }
.set__play { width: 46px; height: 46px; flex: none; border-radius: 50%; background: var(--magenta); color: var(--on-magenta); display: grid; place-items: center; transition: transform .2s var(--ease), background-color .2s var(--ease); }
.set__play:hover { transform: scale(1.06); background: var(--magenta-bright); }
.set__play svg { width: 18px; height: 18px; }
.set__meta h4 { font-family: var(--font-body); font-weight: 650; font-size: 1.02rem; letter-spacing: 0; }
.set__meta span { color: var(--muted); font-size: 0.84rem; }
.set__wave { width: 100%; height: 38px; color: var(--line); }
.set.is-playing .set__wave { color: var(--magenta); }
.set__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.set__tags span { font-size: 0.74rem; color: var(--faint); border: 1px solid var(--line-soft); padding: 0.15rem 0.55rem; border-radius: 999px; }

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.2rem; }
.quote { padding: clamp(1.4rem, 2.5vw, 2rem); border: 1px solid var(--line-soft); border-radius: var(--r-lg); background: var(--ink-850); display: flex; flex-direction: column; gap: 1.1rem; }
.quote__stars { color: var(--gold); letter-spacing: 0.1em; font-size: 0.95rem; }
.quote blockquote { font-size: 1.12rem; line-height: 1.55; color: var(--paper); }
.quote__who { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.quote__av { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex: none; border: 1px solid var(--line); }
.quote__who b { display: block; font-weight: 600; }
.quote__who span { color: var(--muted); font-size: 0.86rem; }

/* ---------- FAQ ---------- */
.faq { max-width: var(--narrow); }
.faq__item { border-bottom: 1px solid var(--line-soft); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; }
.faq__q .ic { flex: none; width: 22px; height: 22px; transition: transform .35s var(--ease); color: var(--gold); }
.faq__item[data-open="true"] .faq__q .ic { transform: rotate(45deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .38s var(--ease); }
.faq__item[data-open="true"] .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { color: var(--muted); padding-bottom: 1.3rem; max-width: 64ch; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(2.5rem, 5vw, 4.5rem); border: 1px solid var(--line); background: var(--ink-850); }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; filter: saturate(0.7); }
.cta-band::after { content:""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(105deg, oklch(0.14 0.03 320 / 0.94) 35%, oklch(0.14 0.03 320 / 0.55)); }
.cta-band h2 { font-size: var(--step-xl); max-width: 16ch; }
.cta-band p { color: var(--muted); margin-top: 0.9rem; max-width: 48ch; font-size: var(--lead); }
.cta-band .btn-row { margin-top: 1.8rem; }

/* ---------- Form ---------- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.45rem; }
.field > label { font-size: 0.86rem; font-weight: 600; color: var(--paper); }
.field .req { color: var(--magenta-bright); }
.field .hint { font-size: 0.8rem; color: var(--faint); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 0.9rem; background: var(--ink-850); border: 1px solid var(--line);
  border-radius: var(--r-sm); color: var(--paper); transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--magenta-bright); background: var(--ink-800); }
.field textarea { resize: vertical; min-height: 120px; }
.field[data-invalid="true"] input, .field[data-invalid="true"] select, .field[data-invalid="true"] textarea { border-color: var(--danger); }
.field .err { font-size: 0.8rem; color: var(--danger); display: none; }
.field[data-invalid="true"] .err { display: block; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form__note { font-size: 0.82rem; color: var(--faint); }
.form__ok { display: none; padding: 1.1rem 1.2rem; border: 1px solid var(--success); border-radius: var(--r); background: oklch(0.74 0.15 155 / 0.1); color: var(--paper); }
.form.is-sent .form__ok { display: block; }
.form.is-sent .form__fields { display: none; }
.section--cream .field input, .section--cream .field select, .section--cream .field textarea { background: #fff; border-color: var(--cream-line); color: var(--cream-ink); }
.section--cream .field > label { color: var(--cream-ink); }
.section--cream .field input:focus, .section--cream .field select:focus, .section--cream .field textarea:focus { border-color: var(--magenta); background: #fff; }

/* ---------- Prose (legal pages) ---------- */
.prose { max-width: var(--narrow); }
.prose h1 { font-size: var(--step-xl); margin-bottom: 0.6rem; }
.prose h2 { font-size: var(--step-lg); margin-top: 2.4rem; margin-bottom: 0.6rem; }
.prose h3 { font-size: 1.2rem; margin-top: 1.6rem; margin-bottom: 0.4rem; font-family: var(--font-body); font-weight: 650; letter-spacing: 0; }
.prose p, .prose li { color: var(--muted); }
.prose p, .prose ul { margin-top: 0.8rem; }
.prose ul { list-style: disc; padding-left: 1.3rem; display: grid; gap: 0.4rem; }
.prose a { color: var(--magenta-bright); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--paper); }

/* ---------- Footer ---------- */
.footer { background: var(--ink-850); border-top: 1px solid var(--line-soft); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footer__brand .brand { font-size: 1.5rem; }
.footer__brand p { color: var(--muted); font-size: 0.92rem; margin-top: 0.9rem; max-width: 34ch; }
.footer__col h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); font-weight: 600; margin-bottom: 0.9rem; }
.footer__col a { display: block; color: var(--muted); padding: 0.28rem 0; font-size: 0.94rem; transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--paper); }
.footer__col button { display: block; width: 100%; text-align: left; background: none; border: 0; color: var(--muted); padding: 0.28rem 0; font: inherit; font-size: 0.94rem; cursor: pointer; transition: color .2s var(--ease); }
.footer__col button:hover { color: var(--paper); }
.footer__bottom { margin-top: clamp(2.2rem, 4vw, 3.2rem); padding-top: 1.6rem; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; align-items: center; justify-content: space-between; color: var(--faint); font-size: 0.82rem; }
.footer__bottom .demo-note { max-width: 60ch; }

/* ---------- Reveal animation (nur wenn JS aktiv, sonst sofort sichtbar) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"]{ transition-delay:.08s } .reveal[data-delay="2"]{ transition-delay:.16s } .reveal[data-delay="3"]{ transition-delay:.24s }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (min-width: 861px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
}
@media (max-width: 980px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__media .frame { aspect-ratio: 16 / 11; }
  .occasions { grid-template-columns: 1fr; }
  .packages { grid-template-columns: 1fr; }
  .package--featured { order: -1; }
  .steps { grid-template-columns: 1fr; gap: 1.6rem; }
  .step__line { display: none; }
  .form__row { grid-template-columns: 1fr; }
  .proof__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery .g-wide { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Page components (Unterseiten)
   ============================================================ */

/* Seiten-Intro (kompakter Hero auf Unterseiten) */
.page-intro { padding-block: clamp(2.5rem, 2rem + 4vw, 5rem) clamp(1.5rem,3vw,2.5rem); }
.page-intro h1 { font-size: var(--step-xl); max-width: 18ch; margin-top: 0.7rem; }
.page-intro .lead { font-size: var(--lead); color: var(--muted); margin-top: 1rem; max-width: 56ch; }

/* Split: Text + Bild */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.split--narrow { grid-template-columns: 1.1fr 0.9fr; }
.split__body h2 { font-size: var(--step-lg); }
.split__body h2 + p { margin-top: 1rem; }
.split__body p { color: var(--muted); }
.split__body p + p { margin-top: 0.9rem; }
.split .frame { aspect-ratio: 4/3; }
.split--reverse .split__media { order: -1; }
@media (max-width: 820px) { .split, .split--narrow { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

/* Stats (dezent, kein Hero-Metric-Cliché) */
.stats { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; padding: 1.4rem 0; border-block: 1px solid var(--line-soft); }
.stat__n { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.stat__n .u { color: var(--gold); }
.stat__l { color: var(--muted); font-size: 0.88rem; margin-top: 0.1rem; }

/* Checklist (generisch) */
.checklist { display: grid; gap: 0.7rem; }
.checklist li { display: flex; gap: 0.65rem; align-items: flex-start; color: var(--muted); }
.checklist .ck { color: var(--magenta-bright); flex: none; margin-top: 0.18rem; }
.checklist b { color: var(--paper); font-weight: 600; }

/* Crew */
.crew { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.crew__card { border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden; background: var(--ink-850); }
.crew__photo { aspect-ratio: 4/5; }
.crew__photo img { width: 100%; height: 100%; object-fit: cover; }
.crew__body { padding: 1.1rem 1.2rem 1.3rem; }
.crew__body h3 { font-family: var(--font-body); font-weight: 650; font-size: 1.1rem; letter-spacing: 0; }
.crew__role { color: var(--gold); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; }
.crew__body p { color: var(--muted); font-size: 0.92rem; margin-top: 0.6rem; }

/* Vergleichstabelle */
.cmp-wrap { overflow-x: auto; border: 1px solid var(--line-soft); border-radius: var(--r-lg); }
.cmp { width: 100%; border-collapse: collapse; min-width: 540px; }
.cmp caption { text-align: left; padding: 1rem 1.2rem; color: var(--faint); font-size: 0.82rem; }
.cmp th, .cmp td { padding: 0.95rem 1.1rem; text-align: center; border-top: 1px solid var(--line-soft); }
.cmp thead th { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; border-top: none; }
.cmp tbody th { text-align: left; font-family: var(--font-body); font-weight: 500; color: var(--muted); }
.cmp .col-feat { background: var(--ink-800); color: var(--paper); }
.cmp thead .col-feat { color: var(--magenta-bright); }
.cmp .ck { color: var(--magenta-bright); } .cmp .dash { color: var(--faint); }
.cmp .price-row td, .cmp .price-row th { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--paper); }

/* Add-ons */
.addons { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
.addon { border: 1px solid var(--line-soft); border-radius: var(--r); padding: 1.2rem; background: var(--ink-850); }
.addon__top { display: flex; align-items: baseline; justify-content: space-between; gap: 0.8rem; }
.addon h3 { font-family: var(--font-body); font-weight: 650; font-size: 1.05rem; letter-spacing: 0; }
.addon__price { color: var(--gold); font-weight: 600; white-space: nowrap; font-variant-numeric: tabular-nums; }
.addon p { color: var(--muted); font-size: 0.9rem; margin-top: 0.5rem; }

/* Kontakt-Layout */
.contact-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.contact-aside { display: grid; gap: 1.6rem; }
.info-list { display: grid; gap: 1.1rem; }
.info { display: flex; gap: 0.85rem; align-items: flex-start; }
.info__ic { width: 38px; height: 38px; flex: none; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold); }
.info__ic svg { width: 19px; height: 19px; }
.info h3 { font-family: var(--font-body); font-weight: 650; font-size: 1rem; letter-spacing: 0; }
.info p, .info a { color: var(--muted); font-size: 0.92rem; }
.info a:hover { color: var(--paper); }
.aside-card { border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 1.4rem; background: var(--ink-850); }
.aside-card h3 { font-family: var(--font-body); font-weight: 650; font-size: 1.02rem; letter-spacing: 0; margin-bottom: 0.5rem; }
.aside-card p { color: var(--muted); font-size: 0.92rem; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* Bestätigung / Danke */
.confirm { max-width: 620px; text-align: center; margin-inline: auto; }
.confirm__badge { width: 72px; height: 72px; border-radius: 50%; background: oklch(0.74 0.15 155 / 0.14); border: 1px solid var(--success); color: var(--success); display: grid; place-items: center; margin: 0 auto 1.6rem; }
.confirm__badge svg { width: 34px; height: 34px; }
.confirm h1 { font-size: var(--step-xl); }
.confirm p { color: var(--muted); margin-top: 1rem; font-size: var(--lead); }
.confirm .btn-row { justify-content: center; margin-top: 2rem; }
.confirm__next { text-align: left; margin-top: 2.5rem; border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 1.5rem; background: var(--ink-850); }
.confirm__next h2 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 650; letter-spacing: 0; margin-bottom: 0.8rem; }

/* 404 */
.notfound { min-height: 56vh; display: grid; place-items: center; text-align: center; }
.notfound__code { font-family: var(--font-display); font-weight: 800; font-size: clamp(4rem, 14vw, 9rem); line-height: 1; color: var(--magenta); letter-spacing: -0.04em; }

/* Utility */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }
.mt-0 { margin-top: 0; } .nowrap { white-space: nowrap; }
.skip-link { position:absolute; left:-999px; top:0; z-index:100; background:var(--magenta); color:var(--on-magenta); padding:0.6rem 1rem; border-radius:0 0 var(--r-sm) 0; }
.skip-link:focus { left:0; }
