@charset "UTF-8";
/* ============================================================
   derhochzeitssong.de
   Statisches Stylesheet. Farben, Schriften und Aufbau
   entsprechen dem Original, mit korrigiertem Textkontrast.
   ============================================================ */

/* ---------- Schriften, lokal ---------- */
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-var.woff2') format('woff2-variations'),
       url('../fonts/playfair-var.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'InterVar';
  src: url('../fonts/inter-var.woff2') format('woff2-variations'),
       url('../fonts/inter-var.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* Farben, Hex als Fallback */
  --bg:        #fefbf8;
  --sec:       #f6f1eb;
  --card:      #ffffff;
  --fg:        #282018;
  --muted:     #6c6158;
  --bord:      #e2ddd7;
  --acc:       #b9832c;   /* dekoratives Gold */
  --acc-text:  #9f6200;   /* Gold fuer Text und Buttons, 4.8:1 */
  --acc-soft:  #d7b174;
  --acc-tint:  #faf3e7;
  --dark:      #1b1512;
  --dark-2:    #241c17;

  /* Abstaende, luftige Skala */
  --s-1: .5rem;  --s-2: .75rem; --s-3: 1rem;   --s-4: 1.5rem;
  --s-5: 2rem;   --s-6: 3rem;   --s-7: 4rem;   --s-8: 6rem;  --s-9: 8rem;

  /* Radien */
  --r-1: 6px; --r-2: 12px; --r-3: 20px; --r-4: 28px; --r-pill: 999px;

  /* Schrift */
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'InterVar', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Weiches Licht statt harter Schatten */
  --sh-1: 0 1px 2px rgba(40,32,24,.04), 0 2px 8px rgba(40,32,24,.04);
  --sh-2: 0 2px 4px rgba(40,32,24,.04), 0 12px 32px rgba(40,32,24,.07);
  --sh-3: 0 4px 8px rgba(40,32,24,.05), 0 24px 56px rgba(40,32,24,.10);

  --wrap: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}
@supports (color: oklch(50% .1 100)) {
  :root {
    --bg:    oklch(99% .005 75);
    --sec:   oklch(96% .010 75);
    --fg:    oklch(25% .020 65);
    --muted: oklch(50% .020 65);
    --bord:  oklch(90% .010 75);
    --acc:   oklch(65% .120 75);
    --acc-text: oklch(55% .130 72);
    --acc-soft: oklch(78% .090 78);
    --acc-tint: oklch(96.5% .022 80);
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, video, iframe { max-width: 100%; display: block; }
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.015em;
  margin: 0 0 var(--s-3);
  text-wrap: balance;
}
h1 { font-size: clamp(2.15rem, 3.7vw, 3rem); font-weight: 500; }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.6rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p  { margin: 0 0 var(--s-3); }
p:last-child { margin-bottom: 0; }
a { color: var(--acc-text); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
ul { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 600; }
:focus-visible {
  outline: 3px solid var(--acc-text);
  outline-offset: 3px;
  border-radius: var(--r-1);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  z-index: 2000; background: var(--fg); color: #fff;
  padding: .7rem 1.2rem; border-radius: 0 0 var(--r-2) var(--r-2); font-size: .95rem;
  transition: top .2s var(--ease);
}
.skip:focus { top: 0; text-decoration: none; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--s-4); }
section { position: relative; }
.sect { padding: var(--s-8) 0; }
.sect-tint { background: var(--sec); }
@media (max-width: 700px) { .sect { padding: var(--s-7) 0; } }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--acc-text);
  margin-bottom: var(--s-2);
}
.sect-head { max-width: 46rem; margin: 0 auto var(--s-7); text-align: center; }
.sect-head p { color: var(--muted); font-size: 1.125rem; margin: 0; }
.lead { color: var(--muted); font-size: 1.125rem; }
.rule {
  width: 54px; height: 2px; margin: var(--s-3) auto 0;
  background: linear-gradient(90deg, transparent, var(--acc), transparent);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--acc-text);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 52px;
  padding: .85rem 1.75rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; border-radius: var(--r-pill);
  font-family: var(--sans); font-size: 1rem; font-weight: 600;
  line-height: 1.2; text-align: center; text-decoration: none;
  cursor: pointer;
  transition: background-color .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), box-shadow .22s var(--ease),
              transform .22s var(--ease);
  box-shadow: var(--sh-1);
  touch-action: manipulation;
}
.btn:hover { background: #8a5500; box-shadow: var(--sh-2); transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--fg); border-color: var(--bord); box-shadow: none; }
.btn-ghost:hover { background: var(--acc-tint); border-color: var(--acc-soft); color: var(--acc-text); box-shadow: none; }
.btn-onDark { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.42); box-shadow: none; }
.btn-onDark:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; box-shadow: none; }
.btn-block { width: 100%; }
.btn-lg { min-height: 58px; padding: 1rem 2.1rem; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 900;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease),
              border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-in { display: flex; align-items: center; gap: var(--s-4); min-height: 76px; }
.nav-logo { display: flex; align-items: center; gap: .65rem; margin-right: auto; text-decoration: none; }
.nav-logo img { width: 46px; height: 46px; }
.nav-logo b {
  font-family: var(--serif); font-size: 1.08rem; font-weight: 500;
  letter-spacing: .01em; color: #fff; transition: color .3s var(--ease); white-space: nowrap;
}
.nav.scrolled { background: rgba(254,251,248,.92); backdrop-filter: saturate(180%) blur(14px); border-bottom-color: var(--bord); box-shadow: var(--sh-1); }
.nav.scrolled .nav-logo b { color: var(--fg); }
.nav-links { display: flex; align-items: center; gap: var(--s-4); }
.nav-links a {
  display: inline-flex; align-items: center; min-height: 44px;
  font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.88);
  padding: .5rem 0; position: relative; transition: color .22s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 9px; height: 1.5px;
  background: var(--acc-soft); transition: right .28s var(--ease);
}
.nav-links a:hover { color: #fff; text-decoration: none; }
.nav-links a:hover::after { right: 0; }
.nav.scrolled .nav-links a { color: var(--muted); }
.nav.scrolled .nav-links a:hover { color: var(--acc-text); }
.nav .btn { min-height: 44px; padding: .6rem 1.25rem; font-size: .93rem; }
.hamb {
  display: none; width: 46px; height: 46px; padding: 0;
  background: none; border: 1px solid rgba(255,255,255,.34); border-radius: var(--r-1);
  cursor: pointer; position: relative;
}
.nav.scrolled .hamb { border-color: var(--bord); }
.hamb i {
  position: absolute; left: 12px; right: 12px; height: 2px; background: #fff;
  transition: transform .26s var(--ease), opacity .2s var(--ease), background-color .3s var(--ease);
}
.nav.scrolled .hamb i { background: var(--fg); }
.hamb i:nth-child(1) { top: 15px; }
.hamb i:nth-child(2) { top: 21.5px; }
.hamb i:nth-child(3) { top: 28px; }
.hamb.open i:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamb.open i:nth-child(2) { opacity: 0; }
.hamb.open i:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 980px) {
  .hamb { display: block; }
  .nav-links {
    position: fixed; inset: 76px 0 auto; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--bg); border-bottom: 1px solid var(--bord);
    padding: var(--s-2) var(--s-4) var(--s-4); box-shadow: var(--sh-2);
    max-height: calc(100dvh - 76px); overflow-y: auto;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .24s var(--ease), transform .24s var(--ease), visibility .24s;
  }
  .nav-links.open { transform: none; opacity: 1; visibility: visible; }
  .nav-links a, .nav.scrolled .nav-links a {
    color: var(--fg); padding: .95rem .25rem; border-bottom: 1px solid var(--bord); font-size: 1.05rem;
  }
  .nav-links a::after { display: none; }
  .nav-links .btn { margin-top: var(--s-3); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--dark);
  color: #fff;
  padding: calc(76px + var(--s-6)) 0 var(--s-7);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(70% 55% at 4% -6%,   rgba(199,148,64,.26), transparent 70%),
    radial-gradient(60% 55% at 104% 30%, rgba(215,177,116,.10), transparent 68%),
    radial-gradient(90% 70% at 50% 120%, rgba(0,0,0,.45), transparent 70%),
    linear-gradient(168deg, #1f1813 0%, #17120f 55%, #100c0a 100%);
}
/* weiche Lichtflecken, reines CSS */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    radial-gradient(circle closest-side, rgba(240,208,150,.16), transparent),
    radial-gradient(circle closest-side, rgba(240,208,150,.11), transparent),
    radial-gradient(circle closest-side, rgba(240,208,150,.09), transparent);
  background-size: 190px 190px, 120px 120px, 260px 260px;
  background-position: 6% 12%, 84% 8%, 26% 92%;
  background-repeat: no-repeat;
}
.hero-grid {
  position: relative; display: grid;
  gap: var(--s-5) var(--s-6);
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  grid-template-areas: "copy video" "cta video";
  align-content: center;
  align-items: start;
}
.hero-copy  { grid-area: copy; }
.hero-video { grid-area: video; align-self: center; }
.hero-cta   { grid-area: cta; }
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "video" "cta";
    gap: var(--s-5);
  }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem .5rem .8rem;
  background: rgba(215,177,116,.14);
  border: 1px solid rgba(215,177,116,.38);
  border-radius: var(--r-pill);
  font-size: .84rem; font-weight: 500; color: #f0d9ac;
  margin-bottom: var(--s-4);
  line-height: 1.4;
}
.hero-badge svg { flex: none; color: var(--acc-soft); }
.hero h1 { color: #fff; margin-bottom: var(--s-4); }
.hero h1 em { font-style: normal; color: var(--acc-soft); }
.hero-sub { font-size: 1.14rem; color: rgba(255,255,255,.82); max-width: 34rem; margin-bottom: var(--s-4); }
.hero-story {
  position: relative; max-width: 34rem;
  margin: 0 0 var(--s-5); padding-left: var(--s-4);
  border-left: 2px solid rgba(215,177,116,.5);
  font-family: var(--serif); font-size: 1.08rem; font-style: italic;
  line-height: 1.6; color: rgba(255,255,255,.78);
}
.hero .btn-row { margin-bottom: var(--s-5); }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-5);
  padding-top: var(--s-4); border-top: 1px solid rgba(255,255,255,.14);
}
.hero-meta div { min-width: 0; }
.hero-meta b {
  display: block; font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--acc-soft);
  font-variant-numeric: tabular-nums;
}
.hero-meta span { font-size: .82rem; color: rgba(255,255,255,.62); }

/* ---------- Video, DSGVO-freundlich ---------- */
.vid {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: var(--r-4); overflow: hidden;
  background: #000;
  box-shadow: 0 30px 70px rgba(0,0,0,.5), 0 0 0 1px rgba(215,177,116,.26);
}
.vid-btn {
  position: absolute; inset: 0; width: 100%; height: 100%; padding: 0;
  border: 0; background: none; cursor: pointer; display: block; text-align: left;
  color: #fff; font-family: inherit;
}
.vid-btn img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .4s var(--ease); }
.vid-btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,.86) 0%, rgba(10,8,6,.24) 46%, rgba(10,8,6,.14) 100%);
}
.vid-btn:hover img { transform: scale(1.035); filter: brightness(1.04); }
.vid-play {
  position: absolute; top: 50%; left: 50%; z-index: 2;
  width: 84px; height: 84px; margin: -42px 0 0 -42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: #1b1512;
  box-shadow: 0 10px 34px rgba(0,0,0,.42);
  transition: transform .28s var(--ease), background-color .28s var(--ease);
}
.vid-play::before {
  content: ''; position: absolute; inset: -12px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.4);
}
.vid-btn:hover .vid-play { transform: scale(1.07); background: #fff; }
.vid-play svg { margin-left: 4px; }
.vid-cap {
  position: absolute; z-index: 2; left: var(--s-4); right: var(--s-4); bottom: var(--s-4);
}
.vid-cap b {
  display: block; font-family: var(--serif); font-size: clamp(1.05rem,1.6vw,1.3rem);
  font-weight: 500; line-height: 1.25; margin-bottom: .25rem;
}
.vid-cap span { display: block; font-size: .84rem; color: rgba(255,255,255,.76); }
.vid-note {
  margin: var(--s-2) 0 0; font-size: .78rem; color: rgba(255,255,255,.52); text-align: center;
}
.vid iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 700px) {
  /* Play-Button hoch, damit er nicht auf dem Untertitel liegt */
  .vid-play { width: 64px; height: 64px; top: 38%; margin: -32px 0 0 -32px; }
  .vid-cap { left: var(--s-3); right: var(--s-3); bottom: var(--s-3); }
  .vid-cap b { font-size: 1rem; }
  .vid-cap span { font-size: .78rem; }
}

/* ---------- Kuenstler ---------- */
.artist-grid {
  display: grid; gap: var(--s-7);
  grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr); align-items: center;
}
@media (max-width: 900px) { .artist-grid { grid-template-columns: 1fr; } }
.artist-txt p { color: var(--muted); }
.artist-card {
  position: relative; border-radius: var(--r-4); overflow: hidden;
  box-shadow: var(--sh-3);
  /* Robin ist ein Freisteller, deshalb eine warme Karte als Grund */
  background:
    radial-gradient(120% 90% at 22% 8%, rgba(215,177,116,.42), transparent 62%),
    linear-gradient(165deg, #f3e6d0 0%, #e7d3b4 46%, #d9bf98 100%);
  padding: var(--s-5) var(--s-4) 0;   /* Luft, damit Robin nicht am Rand klebt */
}
.artist-card img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 760/1072; object-fit: contain; object-position: 50% 100%;
  filter: drop-shadow(0 18px 34px rgba(40,32,24,.28));
}
.artist-card figcaption {
  position: absolute; inset: auto 0 0; padding: var(--s-7) var(--s-4) var(--s-4);
  background: linear-gradient(to top, rgba(20,16,13,.9), rgba(20,16,13,.45) 55%, transparent);
  color: #fff;
}
.artist-card figcaption b { display: block; font-family: var(--serif); font-size: 1.3rem; font-weight: 500; }
.artist-card figcaption span { font-size: .85rem; color: rgba(255,255,255,.8); }

/* ---------- Hoerproben ---------- */
.tracks { display: grid; gap: var(--s-4); grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 940px) { .tracks { grid-template-columns: 1fr; max-width: 34rem; margin: 0 auto; } }
.track {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--bord); border-radius: var(--r-3);
  overflow: hidden; box-shadow: var(--sh-1);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.track:hover { box-shadow: var(--sh-3); transform: translateY(-3px); border-color: var(--acc-soft); }
.track-art { position: relative; background: var(--sec); }
/* 2/3 entspricht genau zwei der drei Cover, die bleiben unbeschnitten.
   Beim dritten fehlt nur etwas Rand links und rechts, kein Text. */
.track-art img { width: 100%; height: auto; aspect-ratio: 2/3; object-fit: cover; object-position: 50% 50%; }
.track-body { padding: var(--s-4); display: flex; flex-direction: column; gap: var(--s-3); flex: 1; }
.track-body h3 { margin: 0; font-size: 1.22rem; }
.track-body > p { margin: 0; font-size: .92rem; color: var(--muted); flex: 1; }
.track-ctrl { display: flex; align-items: center; gap: var(--s-3); }
.track-play {
  flex: none; width: 52px; height: 52px; padding: 0;
  display: grid; place-items: center;
  background: var(--acc-tint); color: var(--acc-text);
  border: 1px solid var(--acc-soft); border-radius: 50%;
  cursor: pointer; touch-action: manipulation;
  transition: background-color .22s var(--ease), color .22s var(--ease), transform .22s var(--ease);
}
.track-play:hover { background: var(--acc-text); color: #fff; border-color: var(--acc-text); }
.track-play:active { transform: scale(.95); }
.track-play .ic-pause { display: none; }
.track.playing .track-play { background: var(--acc-text); color: #fff; border-color: var(--acc-text); }
.track.playing .ic-play { display: none; }
.track.playing .ic-pause { display: block; }
.track-wave { flex: 1; min-width: 0; }
.track-wave canvas { display: block; width: 100%; height: 40px; }
.track-time {
  flex: none; font-size: .82rem; color: var(--muted);
  font-variant-numeric: tabular-nums; min-width: 4.1em; text-align: right;
}

/* ---------- Karten-Raster, generisch ---------- */
.cards { display: grid; gap: var(--s-4); grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 940px) { .cards { grid-template-columns: 1fr; max-width: 34rem; margin: 0 auto; } }
.card {
  background: var(--card); border: 1px solid var(--bord); border-radius: var(--r-3);
  padding: var(--s-5); box-shadow: var(--sh-1);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { box-shadow: var(--sh-2); transform: translateY(-3px); border-color: var(--acc-soft); }
.card-ic {
  width: 52px; height: 52px; margin-bottom: var(--s-3);
  display: grid; place-items: center;
  background: var(--acc-tint); color: var(--acc-text);
  border-radius: var(--r-2);
}
.card > p { color: var(--muted); font-size: .98rem; }
.ticks { margin-top: var(--s-4); padding-top: var(--s-4); border-top: 1px solid var(--bord); display: grid; gap: .7rem; }
.ticks li { display: flex; gap: .65rem; font-size: .93rem; line-height: 1.55; }
.ticks svg { flex: none; margin-top: .28em; color: var(--acc-text); }

/* ---------- Preise ---------- */
/* stretch, damit alle drei Karten gleich hoch sind und die Buttons auf einer Linie liegen */
.prices { display: grid; gap: var(--s-4); grid-template-columns: repeat(3, minmax(0,1fr)); align-items: stretch; }
@media (max-width: 980px) { .prices { grid-template-columns: 1fr; max-width: 30rem; margin: 0 auto; } }
.price {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--bord); border-radius: var(--r-3);
  padding: var(--s-5); box-shadow: var(--sh-1);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.price:hover { box-shadow: var(--sh-2); transform: translateY(-3px); }
.price-hi { border-color: var(--acc); border-width: 2px; box-shadow: var(--sh-2); }
.price-hi:hover { box-shadow: var(--sh-3); }
.price h3 { margin: 0 0 var(--s-2); font-size: 1.35rem; }
.price-amt {
  display: block; font-family: var(--serif); font-size: clamp(2.3rem,4vw,2.9rem);
  font-weight: 500; line-height: 1.05; color: var(--acc-text); letter-spacing: -.02em;
  font-variant-numeric: tabular-nums; margin-bottom: var(--s-2);
}
.price-amt small { font-family: var(--sans); font-size: .95rem; font-weight: 400; color: var(--muted); letter-spacing: 0; }
.price > p { color: var(--muted); font-size: .96rem; margin: 0; }
.price .ticks { flex: 1; }
.price .btn { margin-top: var(--s-4); }

.giftbox {
  margin-top: var(--s-4);
  background: var(--card); border: 1px solid var(--bord); border-radius: var(--r-3);
  padding: var(--s-5); box-shadow: var(--sh-1);
  display: grid; gap: var(--s-4); grid-template-columns: 52px minmax(0,1fr);
  align-items: start;
}
@media (max-width: 620px) { .giftbox { grid-template-columns: 1fr; } }
.giftbox h4 { margin: 0 0 .35rem; }
.giftbox > div > p { color: var(--muted); font-size: .96rem; margin: 0 0 var(--s-3); }
.giftbox-amt { font-family: var(--serif); font-size: 1.8rem; font-weight: 500; color: var(--acc-text); font-variant-numeric: tabular-nums; }
.giftbox-amt small { font-family: var(--sans); font-size: .95rem; font-weight: 400; color: var(--muted); margin-left: .4rem; }
.giftbox-opt { margin-top: var(--s-3); padding: var(--s-3) var(--s-4); background: var(--acc-tint); border-radius: var(--r-2); }
.giftbox-opt p { font-size: .9rem; font-weight: 600; margin: 0 0 .5rem; }
.giftbox-opt .ticks { margin: 0; padding: 0; border: 0; gap: .45rem; }

/* ---------- Grusskarten-Sektion ---------- */
.gift-grid { display: grid; gap: var(--s-7); grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); align-items: center; }
@media (max-width: 900px) { .gift-grid { grid-template-columns: 1fr; } }
.gift-img {
  border-radius: var(--r-4); overflow: hidden; background: var(--sec);
  box-shadow: var(--sh-3); transform: rotate(-1.4deg);
}
.gift-img img { width: 100%; height: auto; display: block; }
.gift-feats { display: grid; gap: var(--s-4); margin-top: var(--s-5); }
.gift-feat { display: grid; grid-template-columns: 44px minmax(0,1fr); gap: var(--s-3); align-items: start; }
.gift-feat span:first-child {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--acc-tint); color: var(--acc-text); border-radius: var(--r-2);
}
.gift-feat b { display: block; font-family: var(--serif); font-size: 1.1rem; font-weight: 600; }
.gift-feat p { margin: 0; font-size: .94rem; color: var(--muted); }

/* ---------- Ablauf ---------- */
.steps { display: grid; gap: var(--s-5); grid-template-columns: repeat(4, minmax(0,1fr)); counter-reset: st; }
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 600px)  { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: var(--s-5); }
.step::before {
  counter-increment: st; content: counter(st,decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--serif); font-size: 2.5rem; font-weight: 500; line-height: 1;
  color: var(--acc-soft); opacity: .85;
}
.step::after {
  content: ''; position: absolute; top: 1.55rem; left: 3.1rem; right: calc(var(--s-5) * -1); height: 1px;
  background: linear-gradient(90deg, var(--bord), transparent);
}
.steps .step:last-child::after { display: none; }
@media (max-width: 1000px) { .step::after { display: none; } }
.step h3 { margin: var(--s-2) 0 .55rem; font-size: 1.18rem; }
.step p { margin: 0; font-size: .95rem; color: var(--muted); }

/* ---------- Kundenstimmen ---------- */
.quotes { display: grid; gap: var(--s-4); grid-template-columns: repeat(3, minmax(0,1fr)); align-items: start; }
@media (max-width: 980px) { .quotes { grid-template-columns: 1fr; max-width: 40rem; margin: 0 auto; } }
.quote {
  background: var(--card); border: 1px solid var(--bord); border-radius: var(--r-3);
  padding: var(--s-5); box-shadow: var(--sh-1);
  display: flex; flex-direction: column;
}
.quote-mark { font-family: var(--serif); font-size: 3rem; line-height: .7; color: var(--acc-soft); margin-bottom: var(--s-2); }
.quote blockquote { margin: 0; flex: 1; font-size: .98rem; line-height: 1.72; color: var(--fg); }
.quote figcaption { margin-top: var(--s-4); padding-top: var(--s-4); border-top: 1px solid var(--bord); }
.quote figcaption b { display: block; font-family: var(--serif); font-size: 1.1rem; font-weight: 600; }
.quote figcaption span { font-size: .86rem; color: var(--muted); }

/* ---------- Vertrauen ---------- */
.trust { display: grid; gap: var(--s-4); grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 900px) { .trust { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 520px) { .trust { grid-template-columns: 1fr; } }
.trust-item { text-align: center; padding: var(--s-4) var(--s-2); }
.trust-item span {
  width: 52px; height: 52px; margin: 0 auto var(--s-3);
  display: grid; place-items: center;
  background: var(--acc-tint); color: var(--acc-text); border-radius: 50%;
}
.trust-item h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.trust-item p { margin: 0; font-size: .9rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 48rem; margin: 0 auto; }
.faq details {
  background: var(--card); border: 1px solid var(--bord); border-radius: var(--r-2);
  margin-bottom: var(--s-2); overflow: hidden;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.faq details[open] { border-color: var(--acc-soft); box-shadow: var(--sh-1); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  padding: 1.15rem var(--s-4); cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: 1.12rem; font-weight: 600; line-height: 1.35;
  min-height: 56px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--acc-text); }
.faq summary svg { flex: none; color: var(--acc-text); transition: transform .26s var(--ease); }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq-a { padding: 0 var(--s-4) var(--s-4); color: var(--muted); font-size: .99rem; }
.faq-a p { margin: 0 0 .7rem; }
.faq-a p:last-child { margin: 0; }
.faq-a ul { display: grid; gap: .5rem; margin: 0; }
.faq-a ul li { padding-left: 1.1rem; position: relative; }
.faq-a ul li::before { content: ''; position: absolute; left: 0; top: .68em; width: 5px; height: 5px; border-radius: 50%; background: var(--acc-soft); }

/* ---------- Kontakt ---------- */
.contact { background: var(--dark); color: #fff; position: relative; overflow: hidden; isolation: isolate; }
.contact::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(80% 60% at 12% 0%, rgba(185,131,44,.24), transparent 62%),
    radial-gradient(70% 60% at 92% 100%, rgba(215,177,116,.14), transparent 62%),
    linear-gradient(170deg, #241c17, #17120f);
}
.contact h2 { color: #fff; }
.contact .sect-head p { color: rgba(255,255,255,.76); }
.contact .eyebrow { color: var(--acc-soft); }
.form {
  max-width: 44rem; margin: 0 auto;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-4);
  padding: var(--s-6);
  backdrop-filter: blur(6px);
}
@media (max-width: 620px) { .form { padding: var(--s-4); } }
.f-grid { display: grid; gap: var(--s-4); grid-template-columns: 1fr 1fr; }
@media (max-width: 620px) { .f-grid { grid-template-columns: 1fr; } }
.f-full { grid-column: 1 / -1; }
.f-row label {
  display: block; margin-bottom: .45rem;
  font-size: .87rem; font-weight: 600; letter-spacing: .01em; color: rgba(255,255,255,.9);
}
.f-row input, .f-row select, .f-row textarea {
  width: 100%; min-height: 52px; padding: .8rem 1rem;
  background: rgba(255,255,255,.06); color: #fff;
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-2);
  font-family: var(--sans); font-size: 1rem; line-height: 1.5;
  transition: border-color .22s var(--ease), background-color .22s var(--ease), box-shadow .22s var(--ease);
  appearance: none;
}
.f-row textarea { min-height: 128px; resize: vertical; }
.f-row input::placeholder, .f-row textarea::placeholder { color: rgba(255,255,255,.42); }
.f-row input:hover, .f-row select:hover, .f-row textarea:hover { border-color: rgba(255,255,255,.34); }
.f-row input:focus, .f-row select:focus, .f-row textarea:focus {
  outline: none; border-color: var(--acc-soft);
  background: rgba(255,255,255,.09);
  box-shadow: 0 0 0 3px rgba(215,177,116,.22);
}
.f-row select {
  color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23d7b174' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.1rem center; padding-right: 2.6rem;
}
.f-row select option { color: #282018; background: #fff; }
.f-hint { margin: var(--s-3) 0 0; font-size: .84rem; color: rgba(255,255,255,.58); }
.send-fail {
  margin: var(--s-4) 0 0; padding: .9rem 1.1rem;
  background: rgba(255,180,162,.12); border: 1px solid rgba(255,180,162,.42);
  border-radius: var(--r-2); color: #ffd5cb; font-size: .93rem;
}
.send-fail a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.f-err {
  display: none; margin: .4rem 0 0; font-size: .85rem; font-weight: 500; color: #ffb4a2;
}
.f-row.invalid .f-err { display: block; }
.f-row.invalid input, .f-row.invalid select { border-color: #ffb4a2; }
.form .btn { margin-top: var(--s-4); }
.form .btn[aria-busy="true"] { opacity: .72; pointer-events: none; }
.spin {
  width: 17px; height: 17px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.45); border-top-color: #fff;
  animation: spin .7s linear infinite; display: none;
}
.btn[aria-busy="true"] .spin { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.direct {
  max-width: 44rem; margin: var(--s-5) auto 0; text-align: center;
  padding-top: var(--s-5); border-top: 1px solid rgba(255,255,255,.12);
}
.direct > p { font-size: .92rem; color: rgba(255,255,255,.7); margin-bottom: var(--s-3); }
.direct-row { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; }
.direct-row a {
  display: inline-flex; align-items: center; gap: .55rem; min-height: 48px;
  padding: .6rem 1.2rem; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.22); color: #fff; font-size: .95rem; font-weight: 500;
  transition: background-color .22s var(--ease), border-color .22s var(--ease);
}
.direct-row a:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); text-decoration: none; }
.direct-row svg { color: var(--acc-soft); flex: none; }

/* ---------- Footer ---------- */
.foot { background: #14100d; color: rgba(255,255,255,.7); padding: var(--s-7) 0 var(--s-5); font-size: .95rem; }
.foot-grid { display: grid; gap: var(--s-6); grid-template-columns: 1.3fr 1fr 1fr 1.2fr; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; gap: var(--s-5); } }
.foot h3 { color: #fff; font-size: 1.05rem; margin-bottom: var(--s-3); }
.foot-brand img { width: 62px; height: 62px; margin-bottom: var(--s-3); }
.foot-brand p { font-size: .92rem; color: rgba(255,255,255,.6); }
.foot ul { display: grid; gap: .6rem; }
.foot a { color: rgba(255,255,255,.78); }
.foot a:hover { color: var(--acc-soft); }
.foot address { font-style: normal; line-height: 1.75; }
.foot-bar {
  margin-top: var(--s-6); padding-top: var(--s-4);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-4); justify-content: space-between;
  font-size: .86rem; color: rgba(255,255,255,.5);
}
.foot-sisters { font-size: .84rem; color: rgba(255,255,255,.45); margin-top: var(--s-2); }
.foot-sisters a { color: rgba(255,255,255,.6); }

/* ---------- WhatsApp ---------- */
.wa {
  position: fixed; z-index: 850; right: max(var(--s-4), env(safe-area-inset-right));
  bottom: max(var(--s-4), env(safe-area-inset-bottom));
  width: 56px; height: 56px; display: grid; place-items: center;
  background: #25d366; color: #fff; border-radius: 50%;
  box-shadow: 0 6px 22px rgba(0,0,0,.26);
  transition: transform .24s var(--ease), background-color .24s var(--ease);
}
.wa:hover { background: #20ba5a; transform: scale(1.06); }

/* ---------- Cookie-Hinweis ---------- */
.cc {
  position: fixed; z-index: 1000; left: 50%; transform: translate(-50%, 130%);
  bottom: max(var(--s-4), env(safe-area-inset-bottom));
  width: min(560px, calc(100vw - 2rem));
  background: var(--card); color: var(--fg);
  border: 1px solid var(--bord); border-radius: var(--r-3);
  padding: var(--s-4); box-shadow: var(--sh-3);
  transition: transform .4s var(--ease);
}
.cc.show { transform: translate(-50%, 0); }
.cc h2 { font-size: 1.1rem; margin-bottom: .5rem; }
.cc p { font-size: .9rem; color: var(--muted); margin-bottom: var(--s-3); }
.cc-row { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.cc .btn { min-height: 46px; padding: .6rem 1.2rem; font-size: .93rem; }

/* ---------- Reveal ---------- */
.fade { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.fade.in { opacity: 1; transform: none; }
.fade-1 { transition-delay: .07s; } .fade-2 { transition-delay: .14s; } .fade-3 { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce) {
  .fade { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .vid-btn:hover img, .card:hover, .track:hover, .price:hover { transform: none; }
}

/* ---------- Rechtsseiten ---------- */
.legal { padding: calc(76px + var(--s-7)) 0 var(--s-8); }
.legal .wrap { max-width: 46rem; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: var(--s-5); }
.legal h2 { font-size: clamp(1.25rem, 2vw, 1.6rem); margin: var(--s-6) 0 var(--s-3); }
.legal h3 { font-size: 1.12rem; margin: var(--s-5) 0 var(--s-2); }
.legal p, .legal li { color: var(--muted); }
.legal ul { display: grid; gap: .6rem; margin: 0 0 var(--s-3); }
.legal ul li { padding-left: 1.2rem; position: relative; }
.legal ul li::before { content: ''; position: absolute; left: 0; top: .7em; width: 5px; height: 5px; border-radius: 50%; background: var(--acc-soft); }
.legal address { font-style: normal; color: var(--muted); line-height: 1.85; margin-bottom: var(--s-3); }
.legal-back { display: inline-flex; align-items: center; gap: .5rem; margin-top: var(--s-7); font-weight: 500; }
.legal-nav { background: var(--bg); border-bottom: 1px solid var(--bord); }
.legal-nav .nav-logo b { color: var(--fg); }
.legal-nav .nav-links a { color: var(--muted); }
.legal-nav .nav-links a:hover { color: var(--acc-text); }
.legal-nav .hamb { border-color: var(--bord); }
.legal-nav .hamb i { background: var(--fg); }

/* ---------- Danke ---------- */
.thanks { min-height: 100dvh; display: grid; place-items: center; text-align: center; padding: var(--s-7) 0; }
.thanks-ic {
  width: 88px; height: 88px; margin: 0 auto var(--s-4);
  display: grid; place-items: center;
  background: var(--acc-tint); color: var(--acc-text); border-radius: 50%;
}
.thanks .wrap { max-width: 38rem; }
.thanks p { color: var(--muted); font-size: 1.1rem; }
