/* ============================================================
   Melodie des Lebens — „Warmes Editorial-Songbook"
   Fraunces (Display, echte Italics) · Bricolage (Labels) · Inter (Body)
   Warme Papiertöne + dunkles Hörzimmer, Notenlinien, Papier-Grain.
   ============================================================ */
:root {
  --paper:    #ffffff;
  --paper-2:  #f6f5f2;
  --card:     #ffffff;
  --ink:      #17130f;
  --ink-2:    #55504a;
  --ink-3:    #8a8279;
  --terra:    #b8542e;
  --terra-2:  #9c451f;
  --gold:     #c98a34;
  --rose:     #c97a5e;
  --green:    #3f8f5e;

  /* dunkles Hörzimmer */
  --night:    #241809;
  --night-2:  #33220f;
  --cream:    #f6ead2;
  --cream-2:  #cdb894;
  --cream-dim:#b39f7e;

  --line:    rgba(23,19,15,0.09);
  --line-2:  rgba(23,19,15,0.15);
  --accent:  linear-gradient(135deg, #d99a44 0%, #c96f3f 55%, #b8542e 100%);
  --shadow:  0 24px 50px -30px rgba(35,28,20,0.22);
  --shadow-s:0 6px 20px -12px rgba(35,28,20,0.16);
  --shadow-lg: 0 40px 80px -42px rgba(35,28,20,.34);
  --r: 18px;
  --maxw: 1160px;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --label:   "Bricolage Grotesque", system-ui, sans-serif;
  --body:    "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(.22,1,.36,1);
  --dur-step: .5s; --dur-micro: .2s;
  --nav-h: 60px; --wizard-maxw: 680px;
  --z-progress: 200; --z-nav: 100; --z-player: 150; --z-stickycta: 140;
  --focus-ring: 0 0 0 3px rgba(184,84,46,.35);

  /* mood duotone gradients (Wizard) */
  --mood-romantic:  linear-gradient(135deg, var(--rose), var(--gold));
  --mood-happy:     linear-gradient(135deg, var(--gold), #e0a54f);
  --mood-nostalgic: linear-gradient(135deg, var(--paper-2), var(--rose));
  --mood-hopeful:   linear-gradient(135deg, var(--gold), var(--paper-2));
  --mood-dreamy:    linear-gradient(135deg, var(--rose), var(--paper-2));
  --mood-epic:      linear-gradient(135deg, var(--terra), var(--ink));
  --mood-peaceful:  linear-gradient(135deg, var(--paper-2), var(--gold));
  --mood-energetic: linear-gradient(135deg, var(--gold), var(--terra));
}

:where(a, button, input, textarea, [tabindex]):focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 8px; }
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper); color: var(--ink); font-family: var(--body);
  font-size: 17px; line-height: 1.6; letter-spacing: -0.01em; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* cleaner Weiß-Hintergrund, nur ein Hauch Wärme ganz oben */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(52% 30% at 50% -8%, rgba(201,138,52,0.06), transparent 72%),
    var(--paper);
}
img, svg, audio, video { max-width: 100%; display: block; }
em { font-style: italic; }

h1, h2, h3 { font-family: var(--display); font-optical-sizing: auto; font-weight: 430; line-height: 1.04; letter-spacing: -0.015em; color: var(--ink); }
h1 { font-size: clamp(2.15rem, 5.4vw + .8rem, 4.7rem); }
h2 { font-size: clamp(2rem, 5.4vw, 3.2rem); }
h3 { font-size: 1.28rem; font-weight: 520; }
h1 em, h2 em { font-style: italic; font-weight: 400; color: var(--terra); }

.eyebrow { font-family: var(--label); font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terra-2); display: inline-flex; gap: 0.6em; align-items: center; font-weight: 600; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--terra); opacity: .6; }
.section-title { text-align: center; }
.section-sub { text-align: center; color: var(--ink-2); margin-top: 0.6rem; }

/* buttons — flach, editorial; Hover: Pfeil wandert statt Button hebt ab */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.55em; font-family: var(--label); font-size: 1rem; font-weight: 600; letter-spacing: 0; padding: 0.95rem 1.6rem; border-radius: 12px; border: 1px solid transparent; cursor: pointer; text-decoration: none; transition: background .25s, border-color .25s, color .25s, transform .15s; min-height: 54px; }
.btn .arr { display: inline-block; transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--terra); color: #fff8ef; box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 10px 24px -14px rgba(156,69,31,.7); }
.btn-primary:hover { background: var(--terra-2); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: rgba(36,26,15,0.05); border-color: var(--ink-3); }
.btn-block { width: 100%; }
.btn-sub { display: block; text-align: center; font-size: 0.8rem; color: var(--ink-3); margin-top: 0.7rem; }
.btn:active { transform: translateY(0) scale(.985); }
.btn:disabled, .btn[disabled] { opacity: .45; cursor: not-allowed; box-shadow: none; }
.btn:disabled:hover, .btn[disabled]:hover { transform: none; box-shadow: none; }

/* nav — Standard: solide weiß (Rechts-/Danke-Seiten) */
.nav { position: sticky; top: 0; z-index: var(--z-nav); display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 1.5rem; background: rgba(255,255,255,0.85); backdrop-filter: blur(14px) saturate(150%); border-bottom: 1px solid var(--line); transition: background .3s var(--ease), border-color .3s, padding .3s, box-shadow .3s; }
.brand { font-family: var(--display); font-weight: 480; font-size: 1.32rem; color: var(--ink); text-decoration: none; display: inline-flex; align-items: center; gap: 0.45rem; letter-spacing: -0.02em; transition: color .3s; }
.brand-mark { color: var(--terra); flex: 0 0 auto; transition: color .3s; }
span.brand-mark { font-style: normal; }
.nav-cta { padding: 0.55rem 1.15rem; min-height: 42px; font-size: 0.9rem; }

/* nav-over — transparent über dem dunklen Hero (Startseite), weiß beim Scrollen */
.nav-over { position: fixed; top: 0; left: 0; right: 0; padding: 1rem 1.5rem; background: transparent; backdrop-filter: none; border-bottom-color: transparent; }
.nav-over .brand { color: var(--cream); }
.nav-over .brand-mark { color: var(--gold); }
.nav-over .nav-cta { background: rgba(246,234,210,.12); border: 1px solid rgba(246,234,210,.3); color: var(--cream); backdrop-filter: blur(8px); }
.nav-over .nav-cta:hover { background: rgba(246,234,210,.2); }
.nav-over.scrolled { padding: 0.7rem 1.5rem; background: rgba(255,255,255,0.85); backdrop-filter: blur(14px) saturate(150%); border-bottom-color: var(--line); box-shadow: 0 8px 30px -24px rgba(35,28,20,.5); }
.nav-over.scrolled .brand { color: var(--ink); }
.nav-over.scrolled .brand-mark { color: var(--terra); }
.nav-over.scrolled .nav-cta { background: var(--terra); border-color: transparent; color: #fff8ef; backdrop-filter: none; }
@media (max-width: 480px) {
  .nav .brand { font-size: 1.05rem; }
  .nav-cta { padding: .5rem .85rem; font-size: .82rem; min-height: 40px; }
}

section { padding: clamp(3.4rem, 8vw, 6.5rem) 1.25rem; }
.steps, .faq, .memory, .moments { margin: 0 auto; }
.steps, .faq, .moments { max-width: var(--maxw); }

/* allgemeine Lede (mehrfach genutzt) */
.lede { font-size: clamp(1.02rem, 2.2vw, 1.2rem); color: var(--ink-2); max-width: 46ch; }

/* handgezeichneter Unterstrich unterm Schlüsselwort (Creed-Motto) */
.u-hand { position: relative; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.u-hand::after { content: ""; position: absolute; left: -1%; right: -1%; bottom: -0.08em; height: .16em; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 14' preserveAspectRatio='none'%3E%3Cpath d='M3 10 C 60 4, 150 3, 297 7' fill='none' stroke='%23b8542e' stroke-width='3.2' stroke-linecap='round' opacity='.75'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

/* ============================================================
   HERO — Fullscreen-Video (ArtVibes-Stil), warme Gold-Akzente
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background: #140d04; isolation: isolate; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; z-index: -2; }
.hero-scrim { position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(102deg, rgba(15,10,3,.95) 0%, rgba(15,10,3,.74) 40%, rgba(15,10,3,.32) 72%, rgba(15,10,3,.12) 100%),
    linear-gradient(to top, rgba(15,10,3,.88) 0%, transparent 40%); }
.hero-content { position: relative; z-index: 1; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 7rem 1.5rem 5rem; }
.hero-badge { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--label); font-size: .8rem; color: rgba(246,234,210,.85); background: rgba(246,234,210,.08); border: 1px solid rgba(246,234,210,.18); backdrop-filter: blur(8px); border-radius: 999px; padding: .5rem 1rem; margin-bottom: 1.5rem; animation: heroUp .6s var(--ease) both; }
.hb-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex: 0 0 auto; }
.hb-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--gold); animation: pulse 1.8s ease-out infinite; }
.hero h1 { color: var(--cream); font-size: clamp(2.5rem, 4vw + 1.4rem, 5.4rem); line-height: 1.03; max-width: 15ch; text-shadow: 0 2px 40px rgba(0,0,0,.45); animation: heroUp .6s var(--ease) .08s both; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-sub { margin-top: 1.5rem; max-width: 44ch; font-size: clamp(1.05rem, 1.3vw, 1.25rem); font-weight: 300; line-height: 1.55; color: rgba(246,234,210,.82); animation: heroUp .6s var(--ease) .16s both; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.1rem; animation: heroUp .6s var(--ease) .24s both; }
.hero-trust { margin-top: 1.7rem; font-family: var(--label); font-size: .86rem; color: rgba(246,234,210,.72); animation: heroUp .6s var(--ease) .32s both; }
.hero-trust b { color: var(--cream); font-weight: 600; }
.ht-stars { color: var(--gold); letter-spacing: .08em; }
.btn-glass { background: rgba(246,234,210,.1); border: 1px solid rgba(246,234,210,.28); color: var(--cream); backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(246,234,210,.18); border-color: rgba(246,234,210,.45); }
.btn-glass .bg-play { font-size: .82em; }

/* Now-Playing-Glaskarte im Hero */
.song-card { display: inline-flex; align-items: center; gap: .75rem; margin-top: 2rem; background: rgba(246,234,210,.08); border: 1px solid rgba(246,234,210,.2); backdrop-filter: blur(10px); border-radius: 14px; padding: .7rem .95rem; width: min(320px, 100%); animation: heroUp .6s var(--ease) .4s both; }
.song-card .sc-note { width: 32px; height: 32px; flex: 0 0 auto; border-radius: 50%; background: var(--gold); color: #241809; display: grid; place-items: center; }
.song-card .sc-body { flex: 1 1 auto; min-width: 0; }
.song-card b { display: block; font-family: var(--display); font-size: .9rem; font-weight: 520; color: var(--cream); line-height: 1.25; }
.song-card small { display: block; font-size: .7rem; color: rgba(246,234,210,.6); margin-top: .1rem; }
.sc-wave { position: relative; display: block; height: 20px; margin-top: .4rem; --p: 0%; }
.sc-wave svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.sc-wave .w-base rect { fill: rgba(246,234,210,.3); }
.sc-wave .w-fill { clip-path: inset(0 calc(100% - var(--p)) 0 0); }
.sc-wave .w-fill rect { fill: var(--gold); }
/* Hero-Song-Karte als Play-Button */
button.song-card { cursor: pointer; text-align: left; color: inherit; font: inherit; transition: background .2s var(--ease), transform .15s var(--ease); }
button.song-card:hover { background: rgba(246,234,210,.14); }
button.song-card:active { transform: scale(.99); }
button.song-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.song-card .sc-ic { display: grid; place-items: center; font-size: .78rem; line-height: 1; padding-left: 1px; }
.song-card .sc-ic .pz { display: none; padding-left: 0; }
.song-card.playing .sc-ic .p { display: none; }
.song-card.playing .sc-ic .pz { display: inline; }

.hero-scroll { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 1; width: 24px; height: 40px; border: 2px solid rgba(246,234,210,.3); border-radius: 999px; display: grid; justify-items: center; padding-top: 7px; animation: bounceY 1.9s ease-in-out infinite; }
.hero-scroll span { width: 5px; height: 8px; border-radius: 3px; background: rgba(246,234,210,.65); }
@keyframes heroUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes bounceY { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
@media (max-width: 560px) { .hero-content { padding-top: 6rem; } .hero-cta .btn { flex: 1 1 100%; } }

/* ============================================================
   TICKER — Anlass-Marquee
   ============================================================ */
.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); padding: .85rem 0; overflow: hidden; position: relative; }
.ticker-track { display: flex; width: max-content; animation: ticker 36s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-seq { display: flex; align-items: center; flex: 0 0 auto; }
.ticker a { font-family: var(--label); font-size: .92rem; font-weight: 500; color: var(--ink-2); text-decoration: none; padding: .15rem .4rem; border-radius: 8px; white-space: nowrap; }
.ticker a:hover { color: var(--terra); }
.ticker .tick-sep { color: var(--gold); margin: 0 1.1rem; font-size: .8rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   EXPLAIN — Editorial-Absatz mit Initial + Liner-Notes
   ============================================================ */
.explain { max-width: var(--maxw); margin: 0 auto; }
.explain-grid { display: grid; gap: 2.4rem; align-items: start; }
.explain-copy h2 { margin: .6rem 0 1.2rem; max-width: 16ch; }
.explain-copy .lede { max-width: 52ch; }
.explain-points { list-style: none; display: grid; gap: 0; margin-top: .4rem; border-top: 1px solid var(--line-2); }
.explain-points li { display: flex; align-items: baseline; gap: .9rem; color: var(--ink); font-size: 1rem; padding: .95rem .2rem; border-bottom: 1px solid var(--line); }
.explain-points .pt-num { font-family: var(--display); font-style: italic; color: var(--terra); font-size: .95rem; flex: 0 0 2ch; }
.explain-points b { font-weight: 600; }
.explain-points small { display: block; color: var(--ink-3); font-size: .84rem; margin-top: .1rem; }
@media (min-width: 820px) { .explain-grid { grid-template-columns: 1.2fr .8fr; gap: 4rem; } .explain-points { margin-top: 2.2rem; } }

/* ============================================================
   STEPS — riesige Editorial-Nummern
   ============================================================ */
.steps { position: relative; }
.step-grid { display: grid; gap: 2.2rem; margin-top: 2.8rem; }
.step { position: relative; padding-left: 0; background: none; border: none; box-shadow: none; }
.step-num { display: block; font-family: var(--display); font-style: italic; font-weight: 380; font-size: clamp(3.6rem, 7vw, 5.2rem); line-height: .9; color: transparent; -webkit-text-stroke: 1.3px rgba(184,84,46,.75); margin-bottom: .8rem; }
.step h3 { margin: 0 0 0.5rem; font-size: 1.32rem; }
.step p { color: var(--ink-2); font-size: 0.98rem; max-width: 34ch; }
.step::after { content: ""; position: absolute; top: 2.4rem; left: calc(100% + .4rem); width: calc(100% - 60%); border-top: 1.5px dashed rgba(36,26,15,.25); display: none; }
@media (min-width: 760px) {
  .step-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .step:nth-child(2) { transform: translateY(1.6rem); }
  .step:nth-child(3) { transform: translateY(3.2rem); }
  .steps { padding-bottom: clamp(6rem, 10vw, 9rem); }
}

/* ============================================================
   HÖRZIMMER — dunkle Sample-Sektion
   ============================================================ */
.listen { position: relative; background: var(--night); color: var(--cream); overflow: hidden; }
.listen::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(52% 44% at 22% 8%, rgba(207,146,64,.22), transparent 70%),
    radial-gradient(40% 40% at 88% 90%, rgba(184,84,46,.18), transparent 70%);
}
.listen::after { content: "♪"; position: absolute; right: -2%; bottom: -14%; font-family: var(--display); font-style: italic; font-size: clamp(14rem, 30vw, 26rem); line-height: 1; color: rgba(246,234,210,.045); pointer-events: none; }
.listen-inner { position: relative; max-width: 860px; margin: 0 auto; text-align: center; }
.listen .eyebrow { color: var(--gold); }
.listen .eyebrow::before { background: var(--gold); }
.listen h2 { color: var(--cream); margin-top: .7rem; }
.listen h2 em { color: var(--gold); }
.listen .section-sub { color: var(--cream-dim); }
.sample-row { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; margin: 2.2rem 0 1.2rem; }
.sample-pill { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--label); font-size: .95rem; font-weight: 500; color: var(--cream); background: rgba(246,234,210,.06); border: 1px solid rgba(246,234,210,.22); border-radius: 999px; padding: .6rem 1.05rem .6rem .7rem; cursor: pointer; transition: border-color .2s, transform .15s, background .2s; min-height: 46px; }
.sample-pill:hover { border-color: var(--gold); transform: translateY(-1px); background: rgba(246,234,210,.1); }
.sample-pill[aria-pressed="true"] { border-color: var(--gold); background: rgba(207,146,64,.16); box-shadow: 0 0 0 2px rgba(207,146,64,.25); }
.sample-pill .sp-ic { width: 30px; height: 30px; flex: 0 0 auto; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: .8rem; }
.sample-pill[aria-pressed="true"] .sp-ic .p { display: none; }
.sample-pill .sp-ic .pz { display: none; }
.sample-pill[aria-pressed="true"] .sp-ic .pz { display: inline; }
.player-note { color: var(--cream-dim); font-size: .86rem; margin-top: 1rem; }
.listen-claim { margin-top: 2.6rem; padding-top: 2rem; border-top: 1px solid rgba(246,234,210,.14); font-family: var(--display); font-style: italic; font-size: clamp(1.15rem, 2.6vw, 1.5rem); color: var(--cream); max-width: 34ch; margin-left: auto; margin-right: auto; line-height: 1.4; }
.listen-claim .sign { display: block; margin-top: 1rem; font-family: var(--label); font-style: normal; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--cream-dim); }

/* ============================================================
   SÄNGER / STIMMEN — Auswahl mit Hörprobe + Favorit
   ============================================================ */
.singers { max-width: var(--maxw); margin: 0 auto; }
.singers .section-sub { max-width: 52ch; margin-left: auto; margin-right: auto; }
.singer-grid { display: grid; gap: 1.2rem; margin-top: 2.8rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .singer-grid { grid-template-columns: repeat(3, 1fr); } }
.singer-card { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-s); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.singer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.singer-card.is-fav { border-color: rgba(184,84,46,.5); }
.singer-fav { position: absolute; top: .85rem; left: .85rem; z-index: 2; font-family: var(--label); font-size: .68rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: #fff8ef; background: var(--terra); padding: .32rem .7rem; border-radius: 999px; box-shadow: var(--shadow-s); }
.singer-photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.singer-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.singer-card:hover .singer-photo img { transform: scale(1.04); }
.singer-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(18,12,4,.55)); pointer-events: none; }
.singer-play { position: absolute; bottom: .9rem; right: .9rem; z-index: 3; width: 54px; height: 54px; border-radius: 50%; border: none; cursor: pointer; background: rgba(255,253,247,.92); color: var(--terra); display: grid; place-items: center; font-size: 1rem; box-shadow: 0 8px 22px -8px rgba(20,13,4,.6); transition: transform .2s, background .2s, color .2s; }
.singer-play:hover { transform: scale(1.08); background: #fff; }
.singer-play .sp-pause { display: none; }
.singer-card.playing .singer-play .sp-play { display: none; }
.singer-card.playing .singer-play .sp-pause { display: inline; }
.singer-card.playing .singer-play { background: var(--terra); color: #fff8ef; }
.singer-body { padding: 1.1rem 1.2rem 1.35rem; }
.singer-body b { font-family: var(--display); font-size: 1.3rem; font-weight: 500; color: var(--ink); display: block; }
.singer-voice { display: block; color: var(--ink-2); font-size: .95rem; margin-top: .25rem; line-height: 1.4; }
.singer-genres { display: block; font-family: var(--label); font-size: .74rem; letter-spacing: .05em; text-transform: uppercase; color: var(--terra); margin-top: .6rem; }
.singer-note { text-align: center; color: var(--ink-3); font-size: .92rem; margin-top: 1.9rem; }
.singer-note b { color: var(--ink-2); font-weight: 600; }

/* ============================================================
   TEAM — Studio-Split
   ============================================================ */
.team { max-width: var(--maxw); margin: 0 auto; }
.team-grid { display: grid; gap: 0; align-items: stretch; background: var(--paper-2); border: 1px solid var(--line); border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-s); }
.team-media { position: relative; min-height: 300px; }
.team-media img { width: 100%; height: 100%; object-fit: cover; }
.team-inner { padding: clamp(1.8rem, 5vw, 3.2rem); }
.team-inner h2 { margin: .7rem 0 1rem; font-size: clamp(1.9rem, 4.6vw, 2.7rem); }
.team-inner p { color: var(--ink-2); }
.team-sign { margin-top: 1.4rem; font-family: var(--display); font-style: italic; color: var(--terra); font-size: 1.05rem; line-height: 1.4; }
@media (min-width: 760px) { .team-grid { grid-template-columns: 1fr 1.05fr; } .team-media { min-height: auto; } }

/* ============================================================
   MOMENTE — Pinnwand: Fotos (Polaroids) + Notiz-Zettel auf Kork
   ============================================================ */
.moments .section-sub { max-width: 52ch; margin-left: auto; margin-right: auto; }

/* Korkbrett-Panel */
.moment-collage {
  display: grid; gap: 1rem; margin-top: 2.8rem;
  grid-template-columns: repeat(2, 1fr);
  padding: clamp(1rem, 3.5vw, 2.1rem);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.16), transparent 55%),
    radial-gradient(rgba(120,80,40,.07) 1px, transparent 1.5px) 0 0 / 15px 15px,
    linear-gradient(158deg, #ecd6b2, #dcc097);
  box-shadow: inset 0 2px 12px rgba(60,38,14,.20), var(--shadow-s);
  border: 1px solid rgba(120,80,40,.20);
}

/* Foto-Kacheln als Polaroids */
.moment-ph { position: relative; border-radius: 10px; overflow: hidden; border: 4px solid #fffdf8; box-shadow: 0 7px 20px rgba(40,26,10,.24); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.moment-ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.moment-ph:hover img { transform: scale(1.05); }
.moment-ph .ph-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.7rem .9rem .7rem; color: #fff; font-family: var(--display); font-style: italic; font-size: .95rem; background: linear-gradient(180deg, transparent, rgba(30,20,8,.74)); }
/* Play direkt auf dem Momente-Foto */
.moment-ph[data-song] { cursor: pointer; }
.moment-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3; width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer; background: rgba(255,253,247,.92); color: var(--terra); display: grid; place-items: center; font-size: .95rem; box-shadow: 0 8px 22px -8px rgba(20,13,4,.6); transition: transform .2s var(--ease), background .2s, color .2s, box-shadow .2s; }
.moment-play:hover { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.moment-play:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.moment-play .pz { display: none; }
.moment-ph.playing .moment-play { background: var(--terra); color: #fff; box-shadow: 0 0 0 4px rgba(184,84,46,.28), 0 8px 22px -8px rgba(20,13,4,.6); }
.moment-ph.playing .moment-play .p { display: none; }
.moment-ph.playing .moment-play .pz { display: block; }
@media (prefers-reduced-motion: reduce) { .moment-play, .moment-play:hover { transition: none; } }

/* Notiz-Zettel */
.scenario { position: relative; background: linear-gradient(180deg, #fffefb, #fdf6e9); border: 1px solid rgba(120,80,40,.14); border-radius: 3px; padding: 1.15rem 1.25rem; box-shadow: 0 6px 16px rgba(40,26,10,.18); display: flex; flex-direction: column; }
.scenario::before { content: ""; position: absolute; top: -8px; left: 50%; margin-left: -26px; width: 52px; height: 17px; background: rgba(232,206,150,.7); border: 1px solid rgba(160,120,60,.18); transform: rotate(-2.5deg); box-shadow: 0 1px 2px rgba(40,26,10,.12); }
.scenario p { color: var(--ink); font-size: .99rem; font-family: var(--display); font-weight: 420; line-height: 1.45; }
.scenario .s-tag { display: block; margin-top: auto; padding-top: .7rem; font-family: var(--label); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--terra); }
.moment-collage > * { min-height: 150px; }

/* leicht schräg angeheftet */
.moment-collage .scenario:nth-child(odd) { transform: rotate(-.6deg); }
.moment-collage .scenario:nth-child(even) { transform: rotate(.7deg); }
.moment-collage .moment-ph:nth-child(3n) { transform: rotate(.7deg); }
.moment-collage .moment-ph:nth-child(3n+2) { transform: rotate(-.8deg); }
.moment-collage .scenario:hover, .moment-collage .moment-ph:hover { transform: rotate(0) translateY(-3px); box-shadow: 0 12px 26px rgba(40,26,10,.28); z-index: 4; }

@media (min-width: 760px) {
  .moment-collage { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 165px; grid-auto-flow: dense; }
  .moment-ph.big { grid-column: span 2; grid-row: span 2; }
  .moment-ph.wide { grid-column: span 2; grid-row: span 1; }
  .moment-ph { grid-row: span 2; }
  .scenario.tall { grid-row: span 2; }
}

/* use-case chips */
.usecases { padding-top: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }
.chip { font-family: var(--label); font-size: 0.94rem; font-weight: 500; color: var(--ink); background: var(--card); border: 1px solid var(--line-2); border-radius: 999px; padding: 0.62rem 1.15rem; cursor: pointer; transition: all .2s; min-height: 46px; text-decoration: none; display: inline-flex; align-items: center; gap: .45rem; }
.chip:hover { border-color: var(--terra); transform: translateY(-1px); }
.chip[aria-pressed="true"] { background: var(--accent); color: #fff; border-color: transparent; font-weight: 600; }

/* ============================================================
   RATING-BAR (Social Proof unter Ticker)
   ============================================================ */
.ratingbar { padding: .95rem 1.25rem; border-bottom: 1px solid var(--line); }
.ratingbar-inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .5rem 1.4rem; text-align: center; }
.ratingbar span { font-family: var(--label); font-size: .88rem; color: var(--ink-2); position: relative; }
.ratingbar span:not(:last-child)::after { content: "·"; position: absolute; right: -.85rem; color: var(--line-2); }
.ratingbar b { color: var(--ink); font-weight: 600; }
.rb-stars { color: var(--gold) !important; letter-spacing: .08em; }
.rb-stars b { color: var(--ink); }

/* ============================================================
   STIMMEN — Editorial Pull-Quote + versetzte Karten
   ============================================================ */
.voices { max-width: var(--maxw); margin: 0 auto; }
.voices-grid { display: grid; gap: 1rem; margin-top: 2.8rem; }
.voice-lead { grid-column: 1 / -1; text-align: center; max-width: 800px; margin: 0 auto 1.4rem; }
.voice-lead blockquote { position: relative; font-family: var(--display); font-style: italic; font-weight: 420; font-size: clamp(1.5rem, 3.2vw, 2.35rem); line-height: 1.3; color: var(--ink); text-wrap: balance; }
.voice-lead blockquote::before { content: "„"; font-size: 1.3em; color: var(--terra); opacity: .55; line-height: 0; vertical-align: -0.35em; margin-right: .04em; }
.voice-lead figcaption { display: flex; flex-direction: column; gap: .15rem; margin-top: 1.2rem; }
.voice-lead .v-stars { color: var(--gold); font-size: .9rem; letter-spacing: .08em; }
.voice-lead b { font-family: var(--label); font-weight: 600; color: var(--ink); }
.voice-lead .v-tag { font-family: var(--label); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--terra); }
.voice { background: var(--card); border: 1px solid var(--line); border-radius: 4px 16px 16px 16px; padding: 1.3rem 1.4rem; box-shadow: var(--shadow-s); display: flex; flex-direction: column; gap: .9rem; }
.voice::before { content: ""; position: absolute; }
.voice blockquote { font-size: 1rem; line-height: 1.5; color: var(--ink); }
.voice blockquote::before { content: "„"; color: var(--terra); opacity: .5; }
.voice figcaption { margin-top: auto; }
.voice b { font-family: var(--label); font-weight: 600; font-size: .9rem; color: var(--ink); display: block; }
.voice .v-tag { font-family: var(--label); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--terra); }
.voices-grid .voice:nth-child(odd) { transform: rotate(-.5deg); }
.voices-grid .voice:nth-child(even) { transform: rotate(.5deg); }
@media (min-width: 760px) { .voices-grid { grid-template-columns: repeat(4, 1fr); } }

/* Urgency an der Preiskarte */
.urgency { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--label); font-size: .84rem; color: var(--terra-2); background: rgba(184,84,46,.08); border: 1px solid rgba(184,84,46,.2); border-radius: 999px; padding: .5rem .95rem; margin: 0 auto 1rem; }
.urgency-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terra); flex: 0 0 auto; position: relative; }
.urgency-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--terra); animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(2.6); opacity: 0; } }

/* ============================================================
   MOTTO 1 — „Sag's mit einem Song" (helles Split-Statement)
   ============================================================ */
.creed { max-width: var(--maxw); margin: 0 auto; }
.creed-grid { display: grid; gap: 2rem; align-items: center; }
.creed-copy h2 { font-size: clamp(2.3rem, 6vw, 3.8rem); margin: .5rem 0 1.1rem; }
.creed-copy .lede { margin-bottom: 1.6rem; }
.creed-media { position: relative; }
.creed-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow); }
.creed-media::after { content: "♫"; position: absolute; top: -.6rem; right: -.4rem; width: 46px; height: 46px; border-radius: 50%; background: var(--terra); color: #fff8ef; display: grid; place-items: center; font-family: var(--display); font-style: italic; box-shadow: var(--shadow-s); }
@media (min-width: 820px) { .creed-grid { grid-template-columns: 1.05fr .95fr; gap: 3.6rem; } }

/* ============================================================
   MOTTO 2 — „Musik verbindet" (Vollbild-Band)
   ============================================================ */
.bond { position: relative; isolation: isolate; padding: clamp(5rem, 13vw, 9.5rem) 1.5rem; text-align: center; color: #fff8ef; overflow: hidden; }
.bond-bg { position: absolute; inset: 0; z-index: -1; background: url("img/bond-friends.jpg") center 35% / cover no-repeat; transform: scale(1.02); }
.bond-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,18,7,.5), rgba(28,18,7,.68)); }
.bond-inner { max-width: 720px; margin: 0 auto; }
.bond .eyebrow { color: #f0d6a4; justify-content: center; }
.bond .eyebrow::before { background: #f0d6a4; }
.bond h2 { color: #fff8ef; font-size: clamp(2.8rem, 9vw, 5.4rem); margin-top: .7rem; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.bond h2 em { color: #f0d6a4; }
.bond p { margin: 1.3rem auto 0; max-width: 46ch; color: rgba(255,248,239,.9); font-size: clamp(1.02rem, 2.4vw, 1.2rem); }

/* ============================================================
   KONTRAST — erzählt statt Checkliste
   ============================================================ */
.compare { max-width: 980px; margin: 0 auto; }
.contrast { display: grid; gap: 2.2rem; align-items: stretch; }
.contrast-col { text-align: left; padding: .4rem 0; }
.contrast .c-when { font-family: var(--label); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .9rem; }
.contrast .c-what { font-family: var(--display); font-size: clamp(1.7rem, 3.6vw, 2.5rem); line-height: 1.12; color: var(--ink-3); }
.contrast .c-what em { font-style: italic; }
.contrast .c-sub { margin-top: 1rem; color: var(--ink-3); font-size: .95rem; max-width: 34ch; }
.contrast .c-song .c-when { color: var(--terra-2); }
.contrast .c-song .c-what { color: var(--ink); }
.contrast .c-song .c-what em { color: var(--terra); }
.contrast .c-song .c-sub { color: var(--ink-2); }
.contrast-divider { border-top: 1px solid var(--line-2); }
@media (min-width: 760px) {
  .contrast { grid-template-columns: 1fr 1px 1.1fr; gap: clamp(2rem, 5vw, 4rem); }
  .contrast-divider { border-top: none; border-left: 1px solid var(--line-2); }
}

/* ============================================================
   ERINNERUNG — ruhig, viel Weißraum
   ============================================================ */
.memory { max-width: var(--maxw); }
.memory-grid { display: grid; gap: 0; align-items: stretch; background: var(--paper-2); border: 1px solid var(--line); border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-s); }
.memory-media img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; }
.memory-inner { padding: clamp(1.8rem, 5vw, 3.2rem); align-self: center; }
.memory-inner h2 { margin: 0.8rem 0 1rem; }
.memory-inner .lede { margin: 0 0 1.6rem; max-width: none; }
@media (min-width: 760px) { .memory-grid { grid-template-columns: 1.05fr 1fr; } }

/* ============================================================
   PREIS — Editorial-Karte mit Stempel
   ============================================================ */
.pricetease { max-width: 640px; margin: 0 auto; }
.pricetease-card { position: relative; background: var(--card); border: 1px solid var(--line-2); border-radius: 24px; padding: clamp(1.8rem, 5vw, 2.8rem); box-shadow: var(--shadow); text-align: center; }
.pricetease-card::before { content: "♫"; position: absolute; top: 1.2rem; left: 1.4rem; font-family: var(--display); font-style: italic; color: rgba(184,84,46,.25); font-size: 1.4rem; }
.pt-eyebrow { font-family: var(--label); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.pricetease .pt-price { font-family: var(--display); font-weight: 400; font-size: 4rem; color: var(--ink); display: block; line-height: 1; margin-top: .5rem; }
.pricetease .pt-was { font-size: 1.1rem; color: var(--ink-3); text-decoration: line-through; margin-left: .3rem; vertical-align: middle; }
.pricetease .pt-sub { color: var(--ink-2); margin: .6rem 0 1.4rem; }
.value-stack { list-style: none; display: grid; gap: .55rem; text-align: left; max-width: 420px; margin: 0 auto 1.6rem; }
.value-stack li { display: flex; justify-content: space-between; gap: 1rem; color: var(--ink-2); font-size: .95rem; padding-bottom: .55rem; border-bottom: 1px dashed var(--line-2); }
.value-stack li b { color: var(--ink); font-weight: 600; }
.value-stack li .vs-in { color: var(--green); font-weight: 600; }
.guarantee { display: flex; gap: 0.7rem; align-items: flex-start; text-align: left; background: rgba(207,146,64,0.11); border: 1px solid rgba(207,146,64,0.35); border-radius: 12px; padding: 0.9rem 1rem; margin-bottom: 1.2rem; font-size: 0.9rem; color: var(--ink-2); }
.guarantee b { color: var(--ink); }
.order-fine { text-align: center; color: var(--ink-3); font-size: 0.82rem; margin-top: 0.9rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 720px; margin: 2.4rem auto 0; display: grid; gap: 0; border-top: 1px solid var(--line-2); }
.faq-item { border-bottom: 1px solid var(--line); background: none; }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--ink); font-family: var(--display); font-size: 1.12rem; font-weight: 460; padding: 1.15rem .3rem; cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq-q .plus { color: var(--terra); transition: transform .3s; flex: 0 0 auto; font-family: var(--body); }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; color: var(--ink-2); }
.faq-a p { padding: 0 .3rem 1.2rem; font-size: 0.96rem; max-width: 62ch; }

/* ============================================================
   FINAL
   ============================================================ */
.final { position: relative; text-align: center; overflow: hidden; background: var(--paper-2); border-top: 1px solid var(--line); padding-top: clamp(4.5rem, 10vw, 8rem); padding-bottom: clamp(4.5rem, 10vw, 8rem); }
.final::before { content: ""; position: absolute; inset: 12% 0 12% 0; pointer-events: none; opacity: .5;
  background: repeating-linear-gradient(180deg, transparent 0 22px, rgba(36,26,15,.08) 22px 23px);
  -webkit-mask-image: radial-gradient(60% 80% at 50% 50%, #000 20%, transparent 75%);
          mask-image: radial-gradient(60% 80% at 50% 50%, #000 20%, transparent 75%);
}
.final h2 { position: relative; margin-bottom: 2rem; font-size: clamp(2.4rem, 7vw, 4.2rem); }
.final .btn { position: relative; }

/* footer */
.footer { border-top: 1px solid var(--line); padding: 2.5rem 1.25rem; text-align: center; display: grid; gap: 1rem; color: var(--ink-3); }
.footer-brand { font-family: var(--display); font-size: 1.2rem; color: var(--ink-2); }
.footer-links { display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; }
.footer-links a { color: var(--ink-2); text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--terra); }
.footer-fine { font-size: 0.82rem; }

/* reveal */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
html.js .reveal.in { opacity: 1; transform: none; }
html.js .hero .reveal { transition-delay: 0s; }
html.js .hero h1.reveal { transition-delay: .06s; }
html.js .hero .lede.reveal { transition-delay: .12s; }
html.js .hero .hero-cta.reveal { transition-delay: .18s; }
html.js .hero .hero-stage.reveal { transition-delay: .14s; }

/* audio player (Wizard + generisch) */
.player-wrap { max-width: 720px; margin: 0 auto; text-align: center; }
.player { display: flex; align-items: center; gap: 1.1rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 1.1rem 1.3rem; box-shadow: var(--shadow-s); text-align: left; }
.player-btn { flex: 0 0 auto; width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer; background: var(--accent); color: #fff; font-size: 1rem; display: grid; place-items: center; box-shadow: 0 10px 24px -8px rgba(184,84,46,0.55); transition: transform .2s; }
.player-btn:hover { transform: scale(1.06); }
.player-btn .ic-pause { display: none; }
.player.playing .ic-play { display: none; }
.player.playing .ic-pause { display: inline; }
.player-body { flex: 1 1 auto; min-width: 0; }
.player-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 0.7rem; }
.player-title { font-weight: 500; font-size: 0.95rem; }
.player-time { font-variant-numeric: tabular-nums; color: var(--ink-3); font-size: 0.85rem; }
.wave { display: flex; align-items: center; gap: 3px; height: 34px; }
.wave span { flex: 1; background: linear-gradient(180deg, var(--gold), var(--terra)); border-radius: 2px; height: 30%; opacity: 0.5; }
.player.playing .wave span { animation: bar 1.1s ease-in-out infinite; opacity: 0.85; }
@keyframes bar { 0%,100% { height: 22%; } 50% { height: 100%; } }

/* sticky mobile CTA */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-stickycta); padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom)); background: linear-gradient(180deg, rgba(255,255,255,0), var(--paper) 40%); display: none; }
.sticky-cta .btn { box-shadow: var(--shadow-lg); }
.sticky-cta .sc-sub { display: block; text-align: center; font-size: .74rem; color: var(--ink-3); margin-top: .3rem; }
@media (max-width: 760px) { .sticky-cta { display: block; } body { padding-bottom: 84px; } }

/* mini audio player (Landing) — klein & schlicht, taucht beim Abspielen auf */
.mini-player { position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-player); display: flex; justify-content: center; padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom)); transform: translateY(140%); transition: transform .35s var(--ease); pointer-events: none; }
.mini-player.show { transform: none; }
.mp-inner { pointer-events: auto; display: flex; align-items: center; gap: .7rem; width: 100%; max-width: 440px; background: var(--card); border: 1px solid var(--line-2); border-radius: 999px; padding: .45rem .55rem; box-shadow: var(--shadow-lg); }
.mp-btn, .mp-fwd { flex: 0 0 auto; border: none; cursor: pointer; display: grid; place-items: center; transition: transform .2s, background .2s; }
.mp-btn { width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: #fff; font-size: .8rem; box-shadow: 0 8px 20px -8px rgba(184,84,46,0.55); }
.mp-btn:hover { transform: scale(1.06); }
.mp-btn .ic-pause { display: none; }
.mini-player.playing .ic-play { display: none; }
.mini-player.playing .ic-pause { display: inline; }
.mp-body { flex: 1 1 auto; min-width: 0; display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; }
.mp-title { font-weight: 500; font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mp-time { flex: 0 0 auto; font-variant-numeric: tabular-nums; color: var(--ink-3); font-size: .8rem; }
.mp-fwd { width: 40px; height: 40px; border-radius: 50%; background: rgba(0,0,0,.05); color: var(--ink-2); font-size: .72rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.mp-fwd:hover { background: rgba(0,0,0,.09); }
@media (max-width: 760px) { .mini-player { bottom: 76px; } }

/* consent banner */
.consent-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 300; display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.2rem; justify-content: center; padding: .9rem 1.2rem calc(.9rem + env(safe-area-inset-bottom)); background: var(--card); border-top: 1px solid var(--line-2); box-shadow: 0 -12px 30px -20px rgba(80,52,24,.5); }
.consent-bar p { font-size: .86rem; color: var(--ink-2); max-width: 62ch; margin: 0; }
.consent-bar a { color: var(--terra); }
.consent-actions { display: flex; gap: .6rem; flex: 0 0 auto; }
.consent-actions .btn { min-height: 44px; padding: .6rem 1.2rem; font-size: .9rem; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none !important; }
}

/* =====================================================================
   WIZARD (gestalten.html) + Tiles + Legal + Danke — Funktionsklassen
   ===================================================================== */
.tile-grid { display: grid; gap: 0.7rem; grid-template-columns: repeat(2, 1fr); }
.tile-grid.voices { grid-template-columns: repeat(3, 1fr); }
.tile { position: relative; display: flex; flex-direction: column; align-items: stretch; text-align: left; padding: 0; background: var(--card); border: 1px solid var(--line-2); border-radius: 14px; overflow: hidden; cursor: pointer; transition: transform .2s, border-color .2s, box-shadow .2s; }
.tile:hover { transform: translateY(-2px); border-color: var(--terra); box-shadow: var(--shadow-s); }
.tile:active, .chip:active, .occ-card:active, .sample-pill:active, .bump:active { transform: scale(.98); }
.tile .tile-face { position: relative; display: flex; flex-direction: column; align-items: center; gap: .5rem; padding: 1.1rem .7rem 0.9rem; }
.tile-label { padding: 0; text-align: center; font-weight: 600; font-size: 0.9rem; color: var(--ink); font-family: var(--label); }
.tile-desc { padding: 0 .7rem .6rem; text-align: center; font-size: 0.74rem; color: var(--ink-3); }
.tile[aria-pressed="true"] { border-color: var(--terra); box-shadow: 0 0 0 2px var(--terra); }
.tile[aria-pressed="true"] .tile-face::after,
.tile.mood-tile[aria-pressed="true"] .mood-chip::after { content: "✓"; position: absolute; top: .45rem; right: .45rem; width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: .8rem; font-weight: 700; animation: pop-in .3s var(--ease); }
@keyframes pop-in { 0% { transform: scale(0); } 70% { transform: scale(1.15); } 100% { transform: scale(1); } }

.genre-medal { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle at 30% 25%, rgba(207,146,64,.28), rgba(184,84,46,.12)); color: var(--terra); border: 1px solid rgba(184,84,46,.25); }
.genre-medal svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.mini-wave { display: flex; align-items: flex-end; justify-content: center; gap: 2px; height: 16px; margin-top: .2rem; opacity: .55; }
.mini-wave span { width: 3px; border-radius: 2px; background: linear-gradient(180deg, var(--gold), var(--terra)); height: 40%; }
.tile.playing .mini-wave { opacity: 1; }
.tile.playing .mini-wave span { animation: bar 1s ease-in-out infinite; }
.tile.playing .genre-medal { border-color: var(--terra); box-shadow: 0 0 0 3px rgba(184,84,46,.12); }

.mood-chip { width: 100%; aspect-ratio: 3 / 2; border-radius: 12px 12px 0 0; position: relative; }
.tile.mood-tile .tile-label { padding: .6rem .5rem .8rem; font-family: var(--display); font-style: italic; font-weight: 500; }
.mood-romantic{background:var(--mood-romantic)} .mood-happy{background:var(--mood-happy)}
.mood-nostalgic{background:var(--mood-nostalgic)} .mood-hopeful{background:var(--mood-hopeful)}
.mood-dreamy{background:var(--mood-dreamy)} .mood-epic{background:var(--mood-epic)}
.mood-peaceful{background:var(--mood-peaceful)} .mood-energetic{background:var(--mood-energetic)}

.voice-ic { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: rgba(36,26,15,.05); color: var(--terra); border: 1px solid var(--line); }
.voice-ic svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.style-group-title { font-family: var(--label); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; margin: 1.3rem 0 0.7rem; }
.style-group:first-child .style-group-title { margin-top: 0; }

@media (min-width: 560px) { .tile-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 760px) { .tile-grid { grid-template-columns: repeat(4, 1fr); } .tile-grid.voices { grid-template-columns: repeat(3, 1fr); max-width: 560px; } }

/* wizard shell */
.wnav { position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav); height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; padding: 0 1.25rem; background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.6)); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.wnav .brand { font-size: 1.2rem; }
.wnav-step { font-family: var(--label); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.wprogress { position: fixed; top: var(--nav-h); left: 0; height: 3px; width: 0; z-index: var(--z-progress); background: var(--accent); transition: width .7s var(--ease); }

.wizard-viewport { position: relative; min-height: 100vh; }
.wstep { position: absolute; inset: 0; display: flex; justify-content: center; padding: clamp(88px, 12vh, 120px) 24px 150px; opacity: 0; transform: translateY(20px); pointer-events: none; transition: opacity var(--dur-step) var(--ease), transform var(--dur-step) var(--ease); overflow-y: auto; }
.wstep.active { position: relative; opacity: 1; transform: none; pointer-events: auto; }
.wstep-inner { width: 100%; max-width: var(--wizard-maxw); }
.wstep .wlabel { display: inline-block; font-family: var(--label); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--terra); font-weight: 600; margin-bottom: .8rem; }
.wstep h2[tabindex]:focus, .wstep h2[tabindex]:focus-visible { outline: none; box-shadow: none; }
.wstep h2 { font-size: clamp(2.1rem, 5.5vw, 3.1rem); line-height: 1.05; }
.wstep .whelp { color: var(--ink-2); font-size: 1.05rem; margin: .7rem 0 2rem; max-width: 46ch; }
.wstep.active .wlabel { animation: wfade .5s var(--ease) both; }
.wstep.active h2 { animation: wfade .5s var(--ease) .04s both; }
.wstep.active .whelp { animation: wfade .5s var(--ease) .09s both; }
.wstep.active .wbody { animation: wfade .5s var(--ease) .14s both; }
@keyframes wfade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.occ-grid { display: grid; grid-template-columns: 1fr; gap: .7rem; }
@media (min-width: 560px) { .occ-grid { grid-template-columns: 1fr 1fr; } }
.occ-card { text-align: left; background: var(--card); border: 1.5px solid var(--line-2); border-radius: 16px; padding: 1.2rem 1.3rem; cursor: pointer; transition: border-color .2s, transform .15s, box-shadow .2s; position: relative; }
.occ-card:hover { border-color: var(--terra); transform: translateY(-2px); box-shadow: var(--shadow-s); }
.occ-card[aria-pressed="true"] { border-color: var(--terra); box-shadow: 0 0 0 2px var(--terra); }
.occ-card b { font-size: 1.15rem; font-weight: 600; color: var(--ink); font-family: var(--label); }
.occ-card span { display: block; margin-top: .2rem; font-family: var(--display); font-style: italic; color: var(--terra); font-size: 1rem; }
.occ-card .occ-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center 32%; border-radius: 10px; margin-bottom: .9rem; display: block; }

.wnav-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 2rem; }
.wback { display: inline-flex; align-items: center; gap: .4rem; background: none; border: none; color: var(--ink-2); font-family: var(--body); font-size: .92rem; cursor: pointer; padding: .6rem 0; }
.wback:hover { color: var(--terra); }
.wnext:disabled { opacity: .45; cursor: not-allowed; }

.story-fields { display: grid; gap: 1.1rem; }
.story-fields label { font-family: var(--label); font-size: .8rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: var(--ink-2); display: block; margin-bottom: .4rem; }
.story-fields input, .story-fields textarea { width: 100%; background: var(--card); border: 1.5px solid var(--line-2); border-radius: 12px; padding: .85rem 1rem; font-family: var(--body); font-size: 16px; color: var(--ink); transition: border-color .2s; }
.story-fields input:focus, .story-fields textarea:focus { outline: none; border-color: var(--terra); }
.story-fields textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.story-note { font-size: .82rem; color: var(--ink-3); margin-top: .3rem; }
.story-note a { color: var(--terra); }

.review-summary { font-family: var(--display); font-style: italic; color: var(--terra); font-size: 1.25rem; margin: .4rem 0 1.4rem; }
.review-card { background: var(--card); border: 1px solid var(--line-2); border-radius: 20px; padding: clamp(1.4rem,4vw,2rem); box-shadow: var(--shadow-s); }
.review-consent { display: flex; gap: .7rem; align-items: flex-start; margin: 1.2rem 0; font-size: .9rem; color: var(--ink-2); cursor: pointer; }
.review-consent input { margin-top: .2rem; width: 20px; height: 20px; flex: 0 0 auto; accent-color: var(--terra); }
.save-email { margin: 1.2rem 0 .2rem; }
.save-email label { font-family: var(--label); font-size: .8rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: var(--ink-2); display: block; margin-bottom: .4rem; }
.save-email-opt { font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--ink-3); }
.save-email input { width: 100%; background: var(--card); border: 1.5px solid var(--line-2); border-radius: 12px; padding: .85rem 1rem; font-family: var(--body); font-size: 16px; color: var(--ink); transition: border-color .2s; }
.save-email input:focus { outline: none; border-color: var(--terra); }
.save-email input.invalid { border-color: var(--terra-2); }
.save-email-hint { font-size: .78rem; color: var(--ink-3); margin: .5rem 0 0; }
.pay-logos { display: flex; gap: .8rem; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 1rem; color: var(--ink-3); font-size: .82rem; }
.pay-logos b { color: var(--ink-2); font-weight: 600; }
.provider-line { text-align: center; font-size: .78rem; color: var(--ink-3); margin-top: .6rem; }
.provider-line a { color: var(--ink-2); }

.bumps { display: grid; gap: 0.7rem; margin-bottom: 1.4rem; }
.bump { display: flex; gap: 0.9rem; align-items: flex-start; padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: 14px; cursor: pointer; transition: border-color .2s, background .2s; }
.bump:hover { border-color: var(--line-2); }
.bump.on { border-color: var(--terra); background: rgba(184,84,46,0.05); }
.bump-check { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 7px; border: 1.5px solid var(--line-2); display: grid; place-items: center; margin-top: 2px; color: #fff; font-size: 0.8rem; transition: all .2s; }
.bump.on .bump-check { background: var(--accent); border-color: transparent; }
.bump-info { flex: 1; } .bump-info b { font-weight: 600; }
.bump-price { font-weight: 600; color: var(--terra); white-space: nowrap; }
.bump-info p { color: var(--ink-2); font-size: 0.88rem; margin-top: 0.15rem; }

.wizard-player { position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-player); transform: translateY(110%); transition: transform .4s var(--ease); padding: .8rem 1rem calc(.8rem + env(safe-area-inset-bottom)); background: linear-gradient(180deg, rgba(255,255,255,0), var(--paper) 34%); }
.wizard-player.show { transform: none; }
.wizard-player .wp-inner { max-width: var(--wizard-maxw); margin: 0 auto; display: flex; align-items: center; gap: 1rem; background: var(--card); border: 1px solid var(--line-2); border-radius: 16px; padding: .7rem .9rem; box-shadow: var(--shadow-lg); }
.wp-body { flex: 1 1 auto; min-width: 0; }
.wp-title { font-weight: 600; font-size: .92rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wizard-player .wave { margin-top: .35rem; height: 24px; }
.wizard-player.playing .ic-play { display: none; }
.wizard-player .ic-pause { display: none; }
.wizard-player.playing .ic-pause { display: inline; }
.wizard-player.playing .wave span { animation: bar 1.1s ease-in-out infinite; opacity: .85; }

.cfg-bar-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 0.8rem; margin-bottom: 0.5rem; }

/* ===================== VOR-KAUF: Pakete + Sample-CTA ===================== */
.pkg-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .pkg-grid { grid-template-columns: 1fr 1fr; } }
.pkg-card { position: relative; text-align: left; background: var(--card); border: 1.5px solid var(--line-2); border-radius: 18px; padding: 1.4rem 1.4rem 1.5rem; cursor: pointer; transition: border-color .2s, box-shadow .2s, transform .15s; display: flex; flex-direction: column; gap: .5rem; }
.pkg-card:hover { border-color: var(--terra); transform: translateY(-2px); box-shadow: var(--shadow-s); }
.pkg-card.on { border-color: var(--terra); box-shadow: 0 0 0 2px var(--terra); }
.pkg-badge { position: absolute; top: -.7rem; right: 1.1rem; background: var(--accent); color: #fff8ef; font-family: var(--label); font-size: .68rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 999px; }
.pkg-head { display: flex; align-items: baseline; justify-content: space-between; gap: .8rem; flex-wrap: wrap; }
.pkg-head b { font-family: var(--display); font-size: 1.3rem; font-weight: 500; color: var(--ink); }
.pkg-price { font-family: var(--display); font-size: 1.7rem; color: var(--terra); }
.pkg-was { font-size: .9rem; color: var(--ink-3); text-decoration: line-through; margin-left: .2rem; }
.pkg-desc { color: var(--ink-2); font-size: .95rem; }
.pkg-feats { list-style: none; display: grid; gap: .4rem; margin-top: .3rem; }
.pkg-feats li { position: relative; padding-left: 1.5rem; color: var(--ink-2); font-size: .9rem; }
.pkg-feats li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.pkg-check { font-family: var(--label); font-size: .8rem; font-weight: 600; color: var(--terra); opacity: 0; margin-top: .3rem; }
.pkg-card.on .pkg-check { opacity: 1; }

.sample-cta { display: inline-flex; align-items: center; gap: .7rem; margin-top: 1.4rem; font-family: var(--label); font-weight: 500; font-size: .96rem; color: var(--ink); background: var(--paper-2); border: 1px solid var(--line-2); border-radius: 999px; padding: .7rem 1.2rem .7rem .8rem; cursor: pointer; transition: border-color .2s, transform .15s; }
.sample-cta:hover { border-color: var(--terra); transform: translateY(-1px); }
.sample-cta .sc-ic { width: 34px; height: 34px; flex: 0 0 auto; border-radius: 50%; background: var(--accent); color: #fff8ef; display: grid; place-items: center; font-size: .85rem; }
.sample-cta .sc-ic .pz { display: none; }
.sample-cta.playing .sc-ic .p { display: none; }
.sample-cta.playing .sc-ic .pz { display: inline; }
.sample-cta .sc-sub { color: var(--ink-3); font-weight: 400; }

/* ===================== VOR-KAUF: Ablauf-Spine (1-2-3) ===================== */
.flow-spine { list-style: none; display: flex; gap: .55rem; margin: 0 0 1.9rem; padding: 0; }
.fs-step { flex: 1 1 0; min-width: 0; display: flex; align-items: center; gap: .6rem; padding: .7rem .8rem; border-radius: 13px; background: var(--paper-2); border: 1px solid var(--line); }
.fs-num { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-family: var(--label); font-weight: 700; font-size: .82rem; background: var(--line-2); color: var(--ink-2); }
.fs-txt { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.fs-txt b { font-family: var(--label); font-size: .82rem; font-weight: 600; color: var(--ink); }
.fs-txt small { font-size: .71rem; color: var(--ink-3); margin-top: .12rem; }
.fs-step.is-current { border-color: var(--terra); background: rgba(184,84,46,0.06); box-shadow: inset 0 0 0 1.5px var(--terra); }
.fs-step.is-current .fs-num { background: var(--accent); color: #fff8ef; }
.fs-step.is-done .fs-num { background: var(--green); color: #fff; }
.fs-step.is-next { opacity: .68; }
@media (max-width: 620px) {
  .flow-spine { gap: .4rem; }
  .fs-step { flex-direction: column; align-items: flex-start; gap: .35rem; padding: .55rem .55rem; }
  .fs-txt small { display: none; }
  .fs-txt b { font-size: .74rem; }
}

/* ===================== VOR-KAUF: Vorschau „gestaltest du gleich" ===================== */
.preview-config { background: linear-gradient(180deg, #fffdf9, var(--paper-2)); border: 1px solid var(--line-2); border-radius: 18px; padding: 1.2rem 1.3rem; margin-bottom: 1.9rem; }
.pc-head { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; margin-bottom: .9rem; }
.pc-head b { font-family: var(--display); font-style: italic; font-size: 1.1rem; color: var(--ink); }
.pc-badge { font-family: var(--label); font-size: .68rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--terra); background: rgba(184,84,46,0.09); border: 1px solid rgba(184,84,46,0.25); padding: .25rem .6rem; border-radius: 999px; }
.pc-row { display: flex; gap: .8rem; align-items: flex-start; padding: .7rem 0; border-top: 1px solid var(--line); }
.pc-row:first-of-type { border-top: none; padding-top: 0; }
.pc-ic { flex: 0 0 auto; font-size: 1.1rem; width: 1.7rem; text-align: center; line-height: 1.4; }
.pc-body { flex: 1; min-width: 0; }
.pc-body > b { display: block; font-family: var(--label); font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.pc-body small { color: var(--ink-2); font-size: .9rem; }
.pc-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.pc-chip { font-family: var(--label); font-size: .8rem; color: var(--ink-2); background: var(--card); border: 1px solid var(--line-2); border-radius: 999px; padding: .3rem .7rem; }
.pc-chip.more { color: var(--terra); border-color: rgba(184,84,46,0.3); font-weight: 600; }
.pay-row { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 1rem; margin-bottom: 1rem; border-bottom: 1px solid var(--line); }
.pay-row span { color: var(--ink-2); }
.pay-row b { font-family: var(--display); font-size: 1.8rem; color: var(--ink); }

/* ===================== SONG-BRIEF (danke.html) ===================== */
.brief-wrap { max-width: 720px; margin: 0 auto; padding: clamp(5rem, 10vw, 7rem) 1.25rem 4rem; }
.brief-head { text-align: center; margin-bottom: 2.4rem; }
.brief-head h1 { font-size: clamp(2rem, 6vw, 3rem); margin: .6rem 0 1rem; }
.brief-head .lede { max-width: 48ch; }
.brief-head #brief-occ { display: block; margin-top: .6rem; color: var(--terra); font-family: var(--label); font-weight: 600; font-size: .9rem; }
.brief-card { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: var(--shadow-s); display: grid; gap: 2rem; }
.brief-block { display: grid; grid-template-columns: auto 1fr; gap: 1rem; }
.brief-num { font-family: var(--display); font-style: italic; color: transparent; -webkit-text-stroke: 1px rgba(184,84,46,.7); font-size: 1.8rem; line-height: 1; }
.brief-body { min-width: 0; }
.brief-body h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.brief-hint { color: var(--ink-3); font-size: .88rem; margin-bottom: .9rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .3rem; }
.chip-row .chip { font-size: .9rem; padding: .5rem 1rem; min-height: 40px; }
.voice-row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
@media (min-width: 560px) { .voice-row { grid-template-columns: repeat(4, 1fr); } }
.vpick { text-align: center; background: var(--card); border: 1.5px solid var(--line-2); border-radius: 14px; padding: .8rem .5rem; cursor: pointer; transition: border-color .2s, transform .15s; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.vpick:hover { border-color: var(--terra); transform: translateY(-2px); }
.vpick.on { border-color: var(--terra); box-shadow: 0 0 0 2px var(--terra); }
.vpick-img { width: 60px; height: 60px; border-radius: 50%; background-size: cover; background-position: center 30%; background-color: var(--paper-2); }
.vpick-auto { display: grid; place-items: center; color: var(--terra); font-size: 1.3rem; }
.vpick-body b { display: block; font-family: var(--label); font-size: .92rem; color: var(--ink); }
.vpick-body small { display: block; color: var(--ink-3); font-size: .74rem; margin-top: .1rem; }
.brief-done { text-align: center; max-width: 560px; margin: 0 auto; }
.brief-done h2 { margin-bottom: .4rem; }

/* Referral-Karte (Erfolgsseite) */
.referral { background: linear-gradient(180deg, rgba(201,138,52,.08), rgba(184,84,46,.06)); border: 1px solid rgba(184,84,46,.25); border-radius: 20px; padding: 1.8rem 1.5rem; margin: 0 auto 1.6rem; max-width: 480px; }
.referral .ref-gift { font-size: 1.8rem; display: block; }
.referral h3 { font-size: 1.35rem; margin: .5rem 0; }
.referral p { color: var(--ink-2); font-size: .95rem; }
.referral p b { color: var(--terra); }
.ref-share { display: flex; gap: .5rem; margin: 1.2rem 0 .8rem; }
.ref-share input { flex: 1 1 auto; min-width: 0; background: var(--card); border: 1.5px solid var(--line-2); border-radius: 12px; padding: .7rem .9rem; font-family: var(--body); font-size: .9rem; color: var(--ink-2); }
.ref-share .btn { min-height: 48px; padding: .7rem 1.1rem; white-space: nowrap; }
.ref-wa { display: inline-block; font-family: var(--label); font-weight: 600; font-size: .9rem; color: var(--terra); text-decoration: none; }
.ref-wa:hover { text-decoration: underline; }
@media (max-width: 460px) { .ref-share { flex-direction: column; } }

/* legal / danke */
.legal { max-width: 760px; margin: 0 auto; padding: clamp(2.2rem, 7vw, 4.5rem) 1.25rem 3rem; }
.legal .back { display: inline-block; margin-bottom: 1.4rem; color: var(--ink-2); text-decoration: none; font-size: 0.9rem; }
.legal .back:hover { color: var(--terra); }
.legal h1 { font-size: clamp(1.9rem, 6vw, 2.8rem); margin-bottom: 1.4rem; }
.legal h2 { font-size: 1.28rem; margin: 2.2rem 0 0.7rem; }
.legal h3 { font-size: 1.05rem; margin: 1.4rem 0 0.5rem; }
.legal p, .legal li { color: var(--ink-2); line-height: 1.7; }
.legal p { margin-bottom: 0.9rem; }
.legal ul { padding-left: 1.2rem; margin: 0.6rem 0 1rem; display: grid; gap: 0.4rem; }
.legal a { color: var(--terra); }
.legal .box { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 1.2rem 1.4rem; margin-bottom: 0.6rem; }
.legal .muted { color: var(--ink-3); font-size: 0.86rem; }

.danke { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: clamp(3rem, 9vw, 6rem) 1.25rem; }
.danke-card { max-width: 560px; }
.danke-badge { width: 84px; height: 84px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 2.2rem; margin: 0 auto 1.6rem; box-shadow: 0 16px 36px -14px rgba(184,84,46,0.6); }
.danke h1 { font-size: clamp(2rem, 6vw, 2.9rem); margin-bottom: 1rem; }
.danke .lede { margin-bottom: 2rem; margin-left: auto; margin-right: auto; }
.danke-steps { list-style: none; display: grid; gap: 0.7rem; text-align: left; max-width: 400px; margin: 0 auto 2rem; }
.danke-steps li { display: flex; gap: 0.7rem; color: var(--ink-2); }

@media (prefers-reduced-motion: reduce) {
  .wstep { transition: none; }
  .wstep.active .wlabel, .wstep.active h2, .wstep.active .whelp, .wstep.active .wbody { animation: none; }
  .wprogress, .wizard-player { transition: none; }
  .tile.playing .mini-wave span, .wizard-player.playing .wave span { animation: none; }
}
