/* ==========================================================================
   LUMURE — Personalisierte Songs
   Design-System / Stylesheet
   --------------------------------------------------------------------------
   Aufbau:
   01  Design-Tokens (Farben, Typo, Abstände, Schatten)
   02  Reset & Basis
   03  Layout-Hilfen (Container, Sections, Grid)
   04  Typografie
   05  Buttons
   06  Karten & Glassmorphism
   07  Navigation (Sticky Header, Mobile-Menü)
   08  Hero
   09  Sections (Ablauf, Galerie, Preise, Testimonials, FAQ …)
   10  Formular / Bestell-Assistent
   11  Audio-Player
   12  Footer
   13  Animationen (Reveal, Parallax, Hover)
   14  Utilities & Accessibility
   ========================================================================== */

/* ==========================================================================
   01  DESIGN-TOKENS
   ========================================================================== */
:root {
  /* --- Farben: warm, edel, emotional ------------------------------------ */
  --cream:        #FDFBF7;   /* Basis-Hintergrund   */
  --sand:         #F7F0E7;   /* abwechselnde Section*/
  --blush:        #F7E6E0;   /* zartes Rosé         */
  --white:        #FFFFFF;

  --ink:          #2B201C;   /* Headlines / Haupttext */
  --ink-2:        #5E4B45;   /* Fließtext           */
  --ink-3:        #8C7A73;   /* Sekundär / Labels   */
  --line:         #ECDFD4;   /* Rahmen              */
  --line-strong:  #DCC9BB;

  --accent:       #C2705A;   /* Terrakotta-Rosé     */
  --accent-2:     #A9543E;   /* Hover / Tiefe       */
  --accent-soft:  #F2D9D0;
  --gold:         #C9A063;   /* Sterne / Feinheiten */
  --plum:         #4B2B36;   /* dunkler Kontrast    */

  --ok:           #3F7D5C;
  --err:          #B3402F;

  /* --- Verläufe ---------------------------------------------------------- */
  --grad-warm:    linear-gradient(135deg, #F9E7DE 0%, #FDF6EE 45%, #F4E2D2 100%);
  --grad-accent:  linear-gradient(135deg, #C2705A 0%, #A9543E 100%);
  --grad-dark:    linear-gradient(140deg, #3A2226 0%, #2B201C 60%, #4B2B36 100%);
  --grad-text:    linear-gradient(100deg, #C2705A 0%, #A9543E 50%, #8E5E3C 100%);

  /* --- Typografie -------------------------------------------------------- */
  --font-display: "Playfair Display", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --fs-hero:  clamp(2.65rem, 1.35rem + 5.2vw, 5.1rem);
  --fs-h1:    clamp(2.25rem, 1.35rem + 3.5vw, 3.85rem);
  --fs-h2:    clamp(1.85rem, 1.20rem + 2.5vw, 3.05rem);
  --fs-h3:    clamp(1.28rem, 1.05rem + 0.9vw, 1.65rem);
  --fs-lead:  clamp(1.05rem, 0.98rem + 0.4vw, 1.28rem);
  --fs-body:  1rem;
  --fs-sm:    0.9375rem;
  --fs-xs:    0.8125rem;

  /* --- Abstände ---------------------------------------------------------- */
  --container:  1180px;
  --container-n:820px;              /* schmal, für Fließtext */
  --gutter:     clamp(1.15rem, 4vw, 2.5rem);
  --section-y:  clamp(4.5rem, 9vw, 8.75rem);

  /* --- Radien ------------------------------------------------------------ */
  --r-xs:  10px;
  --r-sm:  14px;
  --r:     20px;
  --r-lg:  28px;
  --r-xl:  36px;
  --r-pill:999px;

  /* --- Schatten ---------------------------------------------------------- */
  --sh-1: 0 1px 2px rgba(43,32,28,.05), 0 4px 14px -6px rgba(43,32,28,.10);
  --sh-2: 0 2px 6px rgba(43,32,28,.05), 0 16px 36px -18px rgba(43,32,28,.22);
  --sh-3: 0 4px 10px rgba(43,32,28,.06), 0 32px 64px -28px rgba(43,32,28,.30);
  --sh-accent: 0 10px 30px -10px rgba(169,84,62,.55);

  /* --- Bewegung ---------------------------------------------------------- */
  --ease:    cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);
  --dur:     .45s;
  --dur-lg:  .85s;

  /* --- Glas -------------------------------------------------------------- */
  --glass-bg:     rgba(255, 253, 250, .68);
  --glass-bg-str: rgba(255, 253, 250, .86);
  --glass-brd:    rgba(255, 255, 255, .70);
  --glass-blur:   saturate(170%) blur(18px);

  --header-h: 76px;
}

@media (max-width: 720px) {
  :root { --header-h: 66px; }
}

/* ==========================================================================
   02  RESET & BASIS
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.68;
  color: var(--ink-2);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "kern" 1, "liga" 1;
}

body.is-locked { overflow: hidden; }

img, svg, video { max-width: 100%; height: auto; display: block; }
img { background: var(--sand); }

a { color: var(--accent-2); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--accent); }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.015em;
  margin: 0 0 .6em;
  text-wrap: balance;
}

p  { margin: 0 0 1.1em; text-wrap: pretty; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .4em; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

::selection { background: var(--accent-soft); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   03  LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-n); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight  { padding-block: clamp(3rem, 6vw, 5rem); }
.section--sand   { background: var(--sand); }
.section--blush  { background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 45%, var(--cream) 100%); }
.section--dark   { background: var(--grad-dark); color: rgba(255,250,246,.80); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #FFF7F0; }

.section-head { max-width: 46rem; margin-bottom: clamp(2.2rem, 4vw, 3.6rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  opacity: .5;
}
.section-head--center .eyebrow::after {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  opacity: .5;
}
.section--dark .eyebrow { color: var(--accent-soft); }

.grid { display: grid; gap: clamp(1.1rem, 2.4vw, 1.9rem); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--media-first .split__media { order: -1; }
@media (max-width: 900px) {
  .split { grid-template-columns: minmax(0, 1fr); }
  .split__media { order: -1; }
}

/* ==========================================================================
   04  TYPOGRAFIE
   ========================================================================== */
.h-hero { font-size: var(--fs-hero); letter-spacing: -.03em; line-height: 1.03; }
.h1 { font-size: var(--fs-h1); }
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.62;
  color: var(--ink-2);
}
.section--dark .lead { color: rgba(255,247,240,.78); }

.text-accent { color: var(--accent-2); }
.text-muted  { color: var(--ink-3); }
.text-center { text-align: center; }

.italic-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1rem + 1.6vw, 2.1rem);
  line-height: 1.35;
  font-style: italic;
  color: var(--ink);
}

/* ==========================================================================
   05  BUTTONS
   ========================================================================== */
.btn {
  --btn-bg: var(--grad-accent);
  --btn-fg: #FFF8F3;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: 1.05em 2.05em;
  min-height: 54px;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1;
  text-align: center;
  box-shadow: var(--sh-accent);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.30) 50%, transparent 80%);
  transform: translateX(-110%);
  transition: transform .8s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 38px -12px rgba(169,84,62,.62); color: #FFF8F3; }
.btn:hover::after { transform: translateX(110%); }
.btn:active { transform: translateY(-1px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border: 1.5px solid var(--line-strong);
  box-shadow: none;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  background-color: rgba(255,253,250,.55);
}
.btn--ghost:hover {
  color: var(--ink);
  border-color: var(--accent);
  background-color: rgba(255,255,255,.85);
  box-shadow: var(--sh-2);
}

.btn--light {
  --btn-bg: rgba(255,255,255,.94);
  --btn-fg: var(--ink);
  box-shadow: var(--sh-2);
}
.btn--light:hover { color: var(--ink); background: #fff; }

.btn--onDark {
  --btn-bg: transparent;
  --btn-fg: #FFF7F0;
  border: 1.5px solid rgba(255,255,255,.38);
  box-shadow: none;
}
.btn--onDark:hover { color: var(--ink); background: #FFF7F0; border-color: #FFF7F0; }

.btn--lg { padding: 1.2em 2.5em; min-height: 60px; font-size: 1rem; }
.btn--sm { padding: .75em 1.4em; min-height: 44px; font-size: var(--fs-xs); }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }

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

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  font-weight: 600;
  font-size: var(--fs-sm);
}
.link-arrow svg { transition: transform var(--dur) var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ==========================================================================
   06  KARTEN & GLASSMORPHISM
   ========================================================================== */
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  box-shadow: var(--sh-1);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  height: 100%;
}
.card--hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-3);
  border-color: var(--accent-soft);
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-brd);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
}
.glass--strong { background: var(--glass-bg-str); }
.glass--dark {
  background: rgba(43,32,28,.42);
  border-color: rgba(255,255,255,.18);
  color: #FFF7F0;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 18px;
  background: linear-gradient(140deg, var(--accent-soft), #FBEDE7);
  color: var(--accent-2);
  margin-bottom: 1.2rem;
  box-shadow: inset 0 0 0 1px rgba(194,112,90,.16);
  transition: transform var(--dur) var(--ease);
}
.card--hover:hover .icon-badge { transform: scale(1.07) rotate(-4deg); }
.icon-badge svg { width: 26px; height: 26px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  padding: .42em 1em;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  color: var(--accent-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .02em;
}
.pill--gold { background: rgba(201,160,99,.16); color: #8A6B34; }
.pill--glass {
  background: rgba(255,255,255,.20);
  color: #FFF7F0;
  border: 1px solid rgba(255,255,255,.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ==========================================================================
   07  NAVIGATION
   ========================================================================== */
.skip-link {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translate(-50%, -220%);
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1.4rem;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: transform .25s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); color: #fff; }

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color .4s var(--ease),
              box-shadow .4s var(--ease),
              border-color .4s var(--ease),
              backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(253,251,247,.82);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -18px rgba(43,32,28,.35);
}
.header__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .62rem;
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--ink);
  flex-shrink: 0;
}
.brand:hover { color: var(--ink); }
.brand__mark {
  width: 34px; height: 34px;
  border-radius: 11px;
  background: var(--grad-accent);
  display: grid;
  place-items: center;
  box-shadow: var(--sh-1);
  flex-shrink: 0;
}
.brand__mark svg { width: 18px; height: 18px; color: #FFF6EE; }
.brand__sub {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
  align-self: flex-end;
  padding-bottom: .38rem;
}
@media (max-width: 520px) { .brand__sub { display: none; } }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav__link {
  position: relative;
  padding: .55rem .82rem;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: .82rem; right: .82rem;
  bottom: .34rem;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--accent-2); font-weight: 600; }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

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

@media (max-width: 1040px) {
  .nav, .header__actions .btn { display: none; }
}

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.nav-toggle:hover { border-color: var(--accent); }
.nav-toggle span {
  display: block;
  width: 19px; height: 1.8px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

@media (max-width: 1040px) { .nav-toggle { display: flex; } }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 890;
  background: rgba(253,251,247,.96);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: clamp(1.5rem, 5vw, 2.5rem) var(--gutter) 2.5rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-nav__list { list-style: none; margin: 0 0 1.8rem; padding: 0; }
.mobile-nav__list li { margin: 0; border-bottom: 1px solid var(--line); }
.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem .2rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
}
.mobile-nav__link[aria-current="page"] { color: var(--accent-2); }
.mobile-nav__link svg { width: 18px; height: 18px; color: var(--ink-3); }

/* Sticky Bestell-Leiste (mobil) */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 880;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem var(--gutter) calc(.75rem + env(safe-area-inset-bottom));
  background: rgba(253,251,247,.90);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 34px -20px rgba(43,32,28,.45);
  transform: translateY(110%);
  transition: transform .45s var(--ease);
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta__meta { line-height: 1.25; }
.sticky-cta__price { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); font-weight: 600; }
.sticky-cta__note  { display: block; font-size: var(--fs-xs); color: var(--ink-3); }
.sticky-cta .btn { flex-shrink: 0; }

@media (max-width: 860px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 0; }
}

/* ==========================================================================
   08  HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(96svh, 900px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + clamp(2rem, 6vw, 4.5rem));
  padding-bottom: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
  background: var(--grad-warm);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  will-change: transform;
}
.hero__orb--1 { width: 46vw; height: 46vw; max-width: 620px; max-height: 620px; top: -12%; right: -8%;  background: radial-gradient(circle, #F5C6AE 0%, rgba(245,198,174,0) 70%); }
.hero__orb--2 { width: 40vw; height: 40vw; max-width: 520px; max-height: 520px; bottom: -14%; left: -10%; background: radial-gradient(circle, #EFC9D2 0%, rgba(239,201,210,0) 70%); }
.hero__orb--3 { width: 30vw; height: 30vw; max-width: 400px; max-height: 400px; top: 34%; left: 42%; background: radial-gradient(circle, #F6E0B8 0%, rgba(246,224,184,0) 70%); opacity: .45; }

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  width: 100%;
}
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: minmax(0,1fr); text-align: center; }
  .hero .btn-row { justify-content: center; }
  .hero__trust { justify-content: center; }
}

.hero__copy { max-width: 40rem; }
.hero__sub {
  font-size: clamp(1.05rem, .96rem + .5vw, 1.32rem);
  color: var(--ink-2);
  margin-bottom: 2rem;
  max-width: 34rem;
}
@media (max-width: 960px) { .hero__sub { margin-inline: auto; } }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.4rem;
  font-size: var(--fs-xs);
  color: var(--ink-3);
}
.hero__trust-item { display: inline-flex; align-items: center; gap: .45em; }
.hero__trust-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

.hero__media { position: relative; }
.hero__frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-3);
  aspect-ratio: 4 / 3.15;
  will-change: transform;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }

.hero__floating {
  position: absolute;
  padding: .85rem 1.1rem;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  gap: .75rem;
  animation: float 6s ease-in-out infinite;
}
.hero__floating--1 { bottom: 8%; left: -6%; }
.hero__floating--2 { top: 8%; right: -4%; animation-delay: -3s; }
@media (max-width: 1100px) {
  .hero__floating--1 { left: 4%; }
  .hero__floating--2 { right: 4%; }
}
@media (max-width: 560px) { .hero__floating { display: none; } }

.hero__floating strong { display: block; font-size: var(--fs-sm); color: var(--ink); font-weight: 600; line-height: 1.3; }
.hero__floating span   { display: block; font-size: var(--fs-xs); color: var(--ink-3); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-11px); }
}

.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 15px; height: 15px; }
.stars--lg svg { width: 19px; height: 19px; }

/* Vertrauensleiste */
.trustbar {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.55);
  padding-block: 1.35rem;
}
.trustbar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3.2rem);
  list-style: none;
  margin: 0; padding: 0;
}
.trustbar__list li {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  margin: 0;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-2);
}
.trustbar__list svg { width: 19px; height: 19px; color: var(--accent); flex-shrink: 0; }

/* ==========================================================================
   09  SECTIONS
   ========================================================================== */

/* --- Ablauf / Schritte -------------------------------------------------- */
.steps { counter-reset: step; position: relative; }
.step { position: relative; }
.step__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--accent-soft);
  font-weight: 700;
  margin-bottom: .35rem;
  display: block;
}
.step h3 { margin-bottom: .5rem; }
.step p  { font-size: var(--fs-sm); margin-bottom: 0; }

.steps__line {
  position: absolute;
  top: 96px; left: 12%; right: 12%;
  height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 18px);
  z-index: -1;
}
@media (max-width: 980px) { .steps__line { display: none; } }

/* --- Song-Galerie ------------------------------------------------------- */
.song-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-1);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.song-card:hover { transform: translateY(-6px); box-shadow: var(--sh-3); }

.song-card__cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sand);
}
.song-card__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.song-card:hover .song-card__cover img { transform: scale(1.06); }

.song-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43,32,28,.55) 0%, rgba(43,32,28,.05) 45%, transparent 100%);
  opacity: .85;
  transition: opacity var(--dur) var(--ease);
}
.song-card:hover .song-card__overlay { opacity: 1; }

.song-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 66px; height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--accent-2);
  box-shadow: 0 12px 30px -10px rgba(43,32,28,.5);
  transform: scale(.88);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .35s var(--ease), background-color var(--dur) var(--ease);
}
.song-card:hover .song-card__play,
.song-card:focus-within .song-card__play,
.song-card.is-playing .song-card__play { opacity: 1; transform: scale(1); }
.song-card__play:hover { background: #fff; transform: scale(1.07); }
.song-card__play svg { width: 24px; height: 24px; margin-left: 3px; }
.song-card.is-playing .song-card__play svg { margin-left: 0; }

.song-card__badge {
  position: absolute;
  top: 1rem; left: 1rem;
}
.song-card__body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.song-card__title { font-family: var(--font-display); font-size: 1.22rem; color: var(--ink); margin: 0; font-weight: 600; }
.song-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem .85rem;
  font-size: var(--fs-xs);
  color: var(--ink-3);
  margin: 0;
}
.song-card__meta span { display: inline-flex; align-items: center; gap: .35em; }
.song-card__meta svg { width: 13px; height: 13px; }
.song-card__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line-strong); }

/* --- Preise ------------------------------------------------------------- */
.price-grid { align-items: stretch; }

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.7rem, 3vw, 2.4rem);
  box-shadow: var(--sh-1);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  height: 100%;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--sh-3); }

.price-card--featured {
  border-color: var(--accent);
  box-shadow: var(--sh-2), 0 0 0 1px var(--accent);
  background: linear-gradient(175deg, #FFFDFB 0%, #FDF3EE 100%);
}
.price-card--featured::before {
  content: "Beliebteste Wahl";
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  padding: .35em 1.1em;
  border-radius: var(--r-pill);
  background: var(--grad-accent);
  color: #FFF8F3;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  box-shadow: var(--sh-accent);
}

.price-card__name {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: .9rem;
}
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 2rem + 2vw, 3.4rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: .35rem;
}
.price-card__price small { font-size: 1rem; font-weight: 500; color: var(--ink-3); font-family: var(--font-body); }
.price-card__claim { font-size: var(--fs-sm); color: var(--ink-3); margin-bottom: 1.6rem; }

.feature-list { list-style: none; margin: 0 0 1.9rem; padding: 0; display: grid; gap: .72rem; flex: 1; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: var(--fs-sm);
  color: var(--ink-2);
  margin: 0;
}
.feature-list svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.feature-list li.is-muted { color: var(--ink-3); }
.feature-list li.is-muted svg { color: var(--line-strong); }

.guarantee {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: clamp(1.3rem, 2.5vw, 1.9rem);
  border-radius: var(--r-lg);
  border: 1px dashed var(--line-strong);
  background: rgba(255,255,255,.6);
}
.guarantee svg { width: 34px; height: 34px; color: var(--accent); flex-shrink: 0; }
.guarantee p { margin: 0; font-size: var(--fs-sm); }
.guarantee strong { color: var(--ink); display: block; margin-bottom: .2rem; font-size: 1rem; }

/* --- Testimonials ------------------------------------------------------- */
.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  height: 100%;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.testimonial__author { display: flex; align-items: center; gap: .8rem; }
.testimonial__author img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial__name { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); line-height: 1.3; }
.testimonial__role { font-size: var(--fs-xs); color: var(--ink-3); }
.testimonial__verified {
  display: inline-flex;
  align-items: center;
  gap: .3em;
  font-size: var(--fs-xs);
  color: var(--ok);
  font-weight: 500;
}
.testimonial__verified svg { width: 13px; height: 13px; }

/* --- Anlässe ------------------------------------------------------------ */
.occasion {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--sh-1);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.occasion:hover { transform: translateY(-6px); box-shadow: var(--sh-3); }
.occasion img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.occasion:hover img { transform: scale(1.07); }
.occasion__label {
  position: absolute;
  left: 1.15rem; right: 1.15rem; bottom: 1.15rem;
  color: #FFF8F3;
  z-index: 1;
}
.occasion__label strong { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.occasion__label span { display: block; font-size: var(--fs-xs); opacity: .85; }
.occasion::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(43,32,28,.72) 0%, rgba(43,32,28,.12) 55%, transparent 100%);
}

/* --- FAQ ---------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem .25rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1rem + .35vw, 1.28rem);
  font-weight: 600;
  color: var(--ink);
  transition: color var(--dur) var(--ease);
}
.faq__trigger:hover { color: var(--accent-2); }
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .4s var(--ease), background-color var(--dur) var(--ease);
}
.faq__icon::before { width: 13px; height: 1.6px; }
.faq__icon::after  { width: 1.6px; height: 13px; }
.faq__trigger[aria-expanded="true"] .faq__icon { background: var(--accent); border-color: var(--accent); transform: rotate(180deg); }
.faq__trigger[aria-expanded="true"] .faq__icon::before,
.faq__trigger[aria-expanded="true"] .faq__icon::after { background: #FFF8F3; }
.faq__trigger[aria-expanded="true"] .faq__icon::after { transform: scaleY(0); }

.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease);
}
.faq__panel[data-open="true"] { grid-template-rows: 1fr; }
.faq__panel > div { overflow: hidden; }
.faq__panel p { padding: 0 3rem 1.6rem .25rem; margin: 0; font-size: var(--fs-sm); }
.faq__panel p + p { padding-top: 0; }

/* --- CTA-Band ----------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  background: var(--grad-dark);
  color: rgba(255,247,240,.82);
  text-align: center;
  box-shadow: var(--sh-3);
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.cta-band::before { width: 380px; height: 380px; top: -40%; right: -8%; background: rgba(194,112,90,.55); }
.cta-band::after  { width: 320px; height: 320px; bottom: -45%; left: -6%; background: rgba(201,160,99,.35); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #FFF7F0; }
.cta-band p { max-width: 34rem; margin-inline: auto; }

/* ==========================================================================
   10  FORMULAR / BESTELL-ASSISTENT
   ========================================================================== */
.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(1.6rem, 3.5vw, 3rem);
  align-items: start;
}
@media (max-width: 1040px) {
  .order-layout { grid-template-columns: minmax(0, 1fr); }
  .order-aside { order: -1; }
}

.order-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-2);
  overflow: hidden;
}

/* Fortschritt */
.progress { padding: clamp(1.3rem, 3vw, 1.9rem) clamp(1.3rem, 3.5vw, 2.4rem) 0; }
.progress__track {
  height: 5px;
  border-radius: var(--r-pill);
  background: var(--sand);
  overflow: hidden;
  margin-bottom: 1.1rem;
}
.progress__bar {
  height: 100%;
  width: 25%;
  border-radius: var(--r-pill);
  background: var(--grad-accent);
  transition: width .55s var(--ease);
}
.progress__steps {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  list-style: none;
  margin: 0; padding: 0;
}
.progress__steps li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--ink-3);
  margin: 0;
  transition: color var(--dur) var(--ease);
}
.progress__steps li b {
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  font-size: .72rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: all var(--dur) var(--ease);
}
.progress__steps li.is-active { color: var(--accent-2); }
.progress__steps li.is-active b { border-color: var(--accent); background: var(--accent); color: #FFF8F3; }
.progress__steps li.is-done { color: var(--ink-2); }
.progress__steps li.is-done b { border-color: var(--accent); color: var(--accent-2); background: var(--accent-soft); }
@media (max-width: 720px) {
  .progress__steps li span { display: none; }
  .progress__steps { justify-content: flex-start; gap: .75rem; }
}

.form-step { padding: clamp(1.5rem, 3.5vw, 2.4rem); }
.form-step[hidden] { display: none; }
.form-step__title { margin-bottom: .35rem; }
.form-step__hint { font-size: var(--fs-sm); color: var(--ink-3); margin-bottom: 1.9rem; }

.field-grid { display: grid; gap: 1.15rem; }
.field-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 620px) { .field-grid--2 { grid-template-columns: minmax(0,1fr); } }

.field { display: flex; flex-direction: column; gap: .45rem; }
.field__label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: .4rem;
  flex-wrap: wrap;
}
.field__optional { font-size: var(--fs-xs); font-weight: 400; color: var(--ink-3); }
.field__hint { font-size: var(--fs-xs); color: var(--ink-3); }

.input, .select, .textarea {
  width: 100%;
  padding: .92rem 1.05rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: #FEFCFA;
  color: var(--ink);
  font-size: var(--fs-body);
  line-height: 1.5;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background-color var(--dur) var(--ease);
  appearance: none;
  -webkit-appearance: none;
  min-height: 50px;
}
.input::placeholder, .textarea::placeholder { color: #B7A69E; }
.input:hover, .select:hover, .textarea:hover { border-color: var(--line-strong); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(194,112,90,.14);
}
.textarea { min-height: 132px; resize: vertical; line-height: 1.6; }
.textarea--lg { min-height: 190px; }

.select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238C7A73' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.8rem;
  cursor: pointer;
}

.input[aria-invalid="true"], .select[aria-invalid="true"], .textarea[aria-invalid="true"] {
  border-color: var(--err);
  background: #FFF9F8;
}
.field__error {
  display: none;
  align-items: center;
  gap: .4em;
  font-size: var(--fs-xs);
  color: var(--err);
  font-weight: 500;
}
.field__error svg { width: 14px; height: 14px; flex-shrink: 0; }
.field__error.is-shown { display: flex; }

.char-count { font-size: var(--fs-xs); color: var(--ink-3); text-align: right; font-variant-numeric: tabular-nums; }

/* Auswahl-Kacheln (Radio / Checkbox) */
.choice-grid { display: grid; gap: .7rem; }
.choice-grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.choice-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 620px) { .choice-grid--2, .choice-grid--3 { grid-template-columns: minmax(0,1fr); } }

.choice {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: #FEFCFA;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.choice:hover { border-color: var(--line-strong); background: #fff; transform: translateY(-2px); }
.choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice__box {
  flex-shrink: 0;
  width: 21px; height: 21px;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 2px;
  transition: all var(--dur) var(--ease);
}
.choice__box::after {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #FFF8F3;
  transform: scale(0);
  transition: transform .3s var(--ease);
}
.choice--check .choice__box { border-radius: 7px; }
.choice--check .choice__box::after {
  width: 11px; height: 11px;
  border-radius: 0;
  background: none;
  border-left: 2px solid #FFF8F3;
  border-bottom: 2px solid #FFF8F3;
  transform: rotate(-45deg) scale(0) translate(1px, -1px);
}
.choice input:checked ~ .choice__box { border-color: var(--accent); background: var(--accent); }
.choice input:checked ~ .choice__box::after { transform: scale(1); }
.choice--check input:checked ~ .choice__box::after { transform: rotate(-45deg) scale(1) translate(1px, -1px); }
.choice:has(input:checked) {
  border-color: var(--accent);
  background: linear-gradient(160deg, #FFFDFB, #FDF3EF);
  box-shadow: 0 0 0 1px var(--accent);
}
.choice:has(input:focus-visible) { outline: 3px solid var(--accent); outline-offset: 3px; }

.choice__text { min-width: 0; }
.choice__title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .7rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}
.choice__price { color: var(--accent-2); white-space: nowrap; font-variant-numeric: tabular-nums; }
.choice__desc { font-size: var(--fs-xs); color: var(--ink-3); margin-top: .18rem; line-height: 1.5; }

/* Formular-Navigation */
.form-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.1rem, 2.5vw, 1.5rem) clamp(1.5rem, 3.5vw, 2.4rem);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #FFFDFB, var(--sand));
  flex-wrap: wrap;
}
.form-nav__back {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-3);
  padding: .6rem .2rem;
  transition: color var(--dur) var(--ease);
}
.form-nav__back:hover { color: var(--ink); }
.form-nav__back svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.form-nav__back:hover svg { transform: translateX(-3px); }
.form-nav__back[hidden] { display: none; }

/* Zusammenfassung (Sidebar) */
.summary { position: sticky; top: calc(var(--header-h) + 20px); }
.summary__head {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.2rem;
}
.summary__head h3 { margin: 0; font-size: 1.15rem; }
.summary__list { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .6rem; }
.summary__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--fs-sm);
  margin: 0;
  color: var(--ink-2);
}
.summary__list li b { color: var(--ink); font-weight: 600; text-align: right; font-variant-numeric: tabular-nums; }
.summary__list li.is-empty { color: var(--ink-3); }
.summary__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
}
.summary__total b { font-size: 1.85rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.summary__note { font-size: var(--fs-xs); color: var(--ink-3); margin: .7rem 0 0; }

.trust-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .65rem; }
.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: var(--fs-xs);
  color: var(--ink-2);
  margin: 0;
}
.trust-list svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }

/* Erfolgsansicht */
.success {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
}
.success__icon {
  width: 84px; height: 84px;
  margin: 0 auto 1.8rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--accent-soft), #FBEDE7);
  color: var(--accent-2);
  animation: pop .6s var(--ease) both;
}
.success__icon svg { width: 40px; height: 40px; }
@keyframes pop {
  0%   { transform: scale(.6); opacity: 0; }
  60%  { transform: scale(1.06); }
  100% { transform: scale(1); opacity: 1; }
}

.form-error-box {
  display: none;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: 1.4rem;
  padding: .95rem 1.1rem;
  border-radius: var(--r-sm);
  border: 1px solid rgba(179,64,47,.28);
  background: #FFF6F4;
  color: var(--err);
  font-size: var(--fs-sm);
}
.form-error-box.is-shown { display: flex; }
.form-error-box svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ==========================================================================
   11  AUDIO-PLAYER
   ========================================================================== */
.player {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 2vw, 1.4rem);
  padding: clamp(1rem, 2.4vw, 1.4rem);
  border-radius: var(--r-lg);
}
.player__cover {
  width: clamp(64px, 12vw, 84px);
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--sh-1);
}
.player__main { flex: 1; min-width: 0; }
.player__title { font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; color: var(--ink); margin: 0 0 .1rem; }
.player__meta  { font-size: var(--fs-xs); color: var(--ink-3); margin: 0 0 .7rem; }

.player__btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-accent);
  color: #FFF8F3;
  flex-shrink: 0;
  box-shadow: var(--sh-accent);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.player__btn:hover { transform: scale(1.07); }
.player__btn svg { width: 20px; height: 20px; margin-left: 2px; }
.player.is-playing .player__btn svg { margin-left: 0; }

.wave {
  display: flex;
  align-items: center;
  gap: 2.5px;
  height: 40px;
  cursor: pointer;
  overflow: hidden;
}
.wave__bar {
  flex: 1;
  min-width: 2px;
  max-width: 5px;
  border-radius: var(--r-pill);
  background: var(--line-strong);
  transition: background-color .25s linear, transform .25s var(--ease);
  transform-origin: center;
}
.wave__bar.is-past { background: var(--accent); }
.player.is-playing .wave__bar.is-past:nth-child(3n)   { transform: scaleY(1.18); }
.player.is-playing .wave__bar.is-past:nth-child(3n+1) { transform: scaleY(.82); }

.player__times {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--ink-3);
  margin-top: .45rem;
  font-variant-numeric: tabular-nums;
}

.player-note {
  font-size: var(--fs-xs);
  color: var(--ink-3);
  text-align: center;
  margin-top: 1.2rem;
}

/* ==========================================================================
   12  FOOTER
   ========================================================================== */
.footer {
  background: var(--grad-dark);
  color: rgba(255,247,240,.68);
  padding-block: clamp(3rem, 6vw, 4.75rem) 0;
  font-size: var(--fs-sm);
}
.footer a { color: rgba(255,247,240,.68); }
.footer a:hover { color: #FFF7F0; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(1.8rem, 4vw, 3.2rem);
  padding-bottom: clamp(2.2rem, 4vw, 3.2rem);
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: minmax(0,1fr); } }

.footer .brand { color: #FFF7F0; margin-bottom: 1rem; }
.footer .brand__sub { color: rgba(255,247,240,.5); }
.footer__about { max-width: 26rem; margin-bottom: 1.4rem; }

.footer__title {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #FFF7F0;
  margin-bottom: 1.1rem;
}
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer__list li { margin: 0; }

.social { display: flex; gap: .6rem; }
.social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.social a:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); transform: translateY(-3px); }
.social svg { width: 18px; height: 18px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.13);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--fs-xs);
  color: rgba(255,247,240,.5);
}
.footer__pay { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; }
.footer__pay span {
  padding: .3em .75em;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.18);
  font-size: .72rem;
  letter-spacing: .04em;
}
@media (max-width: 860px) { .footer { padding-bottom: 80px; } }

/* ==========================================================================
   13  ANIMATIONEN
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur-lg) var(--ease), transform var(--dur-lg) var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="zoom"]  { transform: scale(.955); }
[data-reveal].is-visible { opacity: 1; transform: none; }

[data-parallax] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__floating { animation: none; }
}

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

.stack   { display: grid; gap: 1rem; }
.stack-2 { display: grid; gap: 2rem; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }

.page-head {
  padding-top: calc(var(--header-h) + clamp(2.8rem, 7vw, 5.5rem));
  padding-bottom: clamp(2.2rem, 5vw, 3.75rem);
  background: var(--grad-warm);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-head__orb {
  position: absolute;
  width: 40vw; height: 40vw;
  max-width: 520px; max-height: 520px;
  border-radius: 50%;
  filter: blur(75px);
  opacity: .5;
  background: radial-gradient(circle, #F5C6AE 0%, rgba(245,198,174,0) 70%);
  top: -35%; right: -6%;
  pointer-events: none;
}
.page-head .container { position: relative; z-index: 1; }
.page-head p { max-width: 40rem; margin-inline: auto; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  font-size: var(--fs-xs);
  color: var(--ink-3);
}
.breadcrumb li { margin: 0; display: inline-flex; align-items: center; gap: .45rem; }
.breadcrumb li + li::before { content: "/"; color: var(--line-strong); }

.prose { max-width: 46rem; }
.prose h2 { margin-top: 2.6rem; font-size: clamp(1.4rem, 1.15rem + 1vw, 1.85rem); }
.prose h3 { margin-top: 2rem; font-size: 1.2rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p, .prose li { font-size: var(--fs-sm); }
.prose .placeholder {
  background: rgba(201,160,99,.14);
  border-bottom: 1px dashed rgba(201,160,99,.6);
  padding: 0 .2em;
  border-radius: 3px;
}
.notice {
  padding: 1.1rem 1.3rem;
  border-radius: var(--r-sm);
  border: 1px solid rgba(201,160,99,.35);
  background: rgba(201,160,99,.10);
  font-size: var(--fs-sm);
  margin-bottom: 2.2rem;
}
.notice strong { color: var(--ink); }
.notice p:last-child { margin-bottom: 0; }

@media print {
  .header, .footer, .sticky-cta, .mobile-nav, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}
