/* =====================================================================
   ZLATA.DE – Relaunch 2026 · v2 „Cover Edition“
   Bildformate der Originalseite werden 1:1 respektiert:
     Cover   416 × 624 (2:3)  – enthält Titel/Model/Fotoanzahl → nie beschneiden
     Quer    546 × 365        – Vorschau/Video-Still
     Hintergrund bg_free.jpg 1950 × 1080 – Models links/rechts, Mitte #040e0f
   ===================================================================== */

@font-face { font-family: "Cormorant"; font-style: normal; font-weight: 500; font-display: swap; src: url(../fonts/cormorant-garamond-latin-500-normal.woff2) format("woff2"); }
@font-face { font-family: "Cormorant"; font-style: normal; font-weight: 600; font-display: swap; src: url(../fonts/cormorant-garamond-latin-600-normal.woff2) format("woff2"); }
@font-face { font-family: "Cormorant"; font-style: italic; font-weight: 500; font-display: swap; src: url(../fonts/cormorant-garamond-latin-500-italic.woff2) format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 400; font-display: swap; src: url(../fonts/manrope-latin-400-normal.woff2) format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 500; font-display: swap; src: url(../fonts/manrope-latin-500-normal.woff2) format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 600; font-display: swap; src: url(../fonts/manrope-latin-600-normal.woff2) format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 700; font-display: swap; src: url(../fonts/manrope-latin-700-normal.woff2) format("woff2"); }

:root {
  /* Farbwelt aus dem Original-Hintergrund (Mitte = #040e0f) */
  --bg: #040e0f;
  --bg-2: #061416;
  --surface: #0a1c1e;
  --surface-2: #0f272a;
  --line: rgba(214, 240, 238, .09);
  --line-strong: rgba(214, 240, 238, .18);
  --text: #f3efe8;
  --muted: #9fb3b2;
  --faint: #62797a;
  --gold: #dcb56b;
  --gold-2: #b98c42;
  --gold-3: #f5dfae;
  --gold-soft: rgba(220, 181, 107, .13);
  --teal: #3fd0c5;
  --danger: #ef8474;
  --ok: #7fd3a4;

  --font-display: "Cormorant", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --radius: 14px;
  --container: 1320px;
  --gutter: clamp(16px, 4vw, 44px);
  --header-h: 70px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --cover-ratio: 416 / 624;
  --wide-ratio: 546 / 365;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 400 16px/1.65 var(--font-body);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
body.age-locked, body.drawer-open, body.lb-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p a, .prose a, .link { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(220,181,107,.4); text-underline-offset: 3px; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.12; font-weight: 600; }
p { margin: 0 0 1em; }
::selection { background: var(--gold); color: #1a1408; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 999; background: var(--gold); color: #111; padding: 8px 14px; border-radius: 6px; }
.skip:focus { left: 8px; }
[hidden] { display: none !important; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 860px; }
.center { text-align: center; }
.section { padding-block: clamp(64px, 10vw, 128px); position: relative; }
.section-tight { padding-block: clamp(36px, 6vw, 64px); }
.section-alt { background: var(--bg-2); }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font: 600 12px/1 var(--font-body); letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .7; }
.center .eyebrow::after { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .7; }
.display { font-family: var(--font-display); font-weight: 500; font-size: clamp(44px, 7vw, 104px); letter-spacing: -.015em; line-height: .98; }
.h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(36px, 5vw, 66px); line-height: 1.02; letter-spacing: -.01em; }
.lead { font-size: clamp(16px, 1.5vw, 19px); color: var(--muted); max-width: 58ch; }
.center .lead { margin-inline: auto; }
.gold-text { background: linear-gradient(100deg, var(--gold-3), var(--gold) 40%, var(--gold-2) 70%, var(--gold-3)); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: goldflow 8s linear infinite; }
@keyframes goldflow { to { background-position: -200% 0; } }
em.serif { font-family: var(--font-display); font-style: italic; font-weight: 500; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: clamp(28px, 4vw, 52px); flex-wrap: wrap; }
.section-head .lead { margin: 0; }
.section-head > div { max-width: 720px; }
.section-head .h2 { margin-bottom: 14px; }

/* ---------- Buttons ---------- */
.btn {
  --h: 50px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--h); padding: 0 26px; border-radius: 999px; border: 1px solid transparent;
  font: 600 14px/1 var(--font-body); letter-spacing: .05em; cursor: pointer; white-space: nowrap; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), background .3s, border-color .3s, color .3s, box-shadow .3s;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn-sm { --h: 40px; padding: 0 18px; font-size: 13px; }
.btn-lg { --h: 58px; padding: 0 34px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-gold { background: linear-gradient(135deg, var(--gold-3), var(--gold) 45%, var(--gold-2)); color: #1c1509; box-shadow: 0 12px 34px -12px rgba(220,181,107,.7); }
.btn-gold::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%); transform: translateX(-120%); transition: transform .8s var(--ease); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -12px rgba(220,181,107,.85); }
.btn-gold:hover::after { transform: translateX(120%); }
.btn-ghost { border-color: var(--line-strong); color: var(--text); background: rgba(4,14,15,.35); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-3); }

/* ---------- Logo ---------- */
.logo {
  display: inline-flex; flex-direction: column; line-height: 1;
  font-family: var(--font-display); font-weight: 600; font-size: 32px; letter-spacing: .3em;
  background: linear-gradient(100deg, var(--gold-3), var(--gold) 50%, var(--gold-2)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.logo-tag { font: 500 9.5px/1 var(--font-body); letter-spacing: .34em; text-transform: uppercase; color: var(--muted); -webkit-text-fill-color: var(--muted); margin-top: 6px; }
.logo-lg { font-size: 48px; margin-bottom: 18px; display: flex; align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60; height: var(--header-h);
  background: rgba(4, 14, 15, .8); backdrop-filter: saturate(140%) blur(16px); -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--line); transition: background .4s, border-color .4s;
}
body.has-hero .site-header { position: fixed; left: 0; right: 0; background: transparent; border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
body.has-hero .site-header.scrolled { background: rgba(4, 14, 15, .86); border-color: var(--line); backdrop-filter: saturate(140%) blur(16px); -webkit-backdrop-filter: saturate(140%) blur(16px); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 24px; }
.main-nav { display: none; gap: 4px; margin-left: auto; }
.main-nav a { padding: 10px 14px; font-size: 14px; font-weight: 500; color: rgba(243,239,232,.78); border-radius: 999px; transition: color .2s, background .2s; }
.main-nav a:hover { color: var(--text); }
.main-nav a[aria-current="page"] { color: var(--gold-3); background: var(--gold-soft); }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.lang { font: 600 12px/1 var(--font-body); letter-spacing: .12em; color: var(--muted); padding: 10px 8px; }
.lang:hover { color: var(--gold); }
.hide-sm { display: none; }
.burger { width: 44px; height: 44px; display: inline-grid; place-content: center; gap: 5px; background: rgba(4,14,15,.35); border: 1px solid var(--line-strong); border-radius: 50%; cursor: pointer; }
.burger span { display: block; width: 18px; height: 1.5px; background: var(--text); transition: transform .3s var(--ease), opacity .3s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (max-width: 420px) {
  .header-inner { gap: 12px; }
  .header-actions { gap: 6px; }
  .header-actions .btn-gold { padding: 0 14px; font-size: 12px; }
  .logo { font-size: 26px; letter-spacing: .22em; }
  .logo-tag { font-size: 7.5px; letter-spacing: .22em; }
}
@media (min-width: 720px) { .hide-sm { display: inline-flex; } }
@media (min-width: 1060px) { .main-nav { display: flex; } .header-actions { margin-left: 8px; } .burger { display: none; } }

.drawer {
  position: fixed; inset: var(--header-h) 0 0; z-index: 59; background: rgba(4,14,15,.98);
  padding: 28px var(--gutter) calc(28px + env(safe-area-inset-bottom)); display: flex; flex-direction: column; overflow-y: auto; animation: fade .25s var(--ease);
}
.drawer-nav { display: flex; flex-direction: column; }
.drawer-nav a { font-family: var(--font-display); font-size: 36px; font-weight: 500; padding: 10px 0; border-bottom: 1px solid var(--line); }
.drawer-nav a[aria-current="page"] { color: var(--gold); }
.drawer-actions { margin-top: auto; padding-top: 28px; display: grid; gap: 12px; }
.drawer-lang { text-align: center; color: var(--muted); padding: 10px; font-size: 14px; }
@keyframes fade { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- Altersabfrage ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px;
  background: rgba(3,10,11,.82); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
}
.age-gate::before { content: ""; position: absolute; inset: 0; background: var(--age-bg) center/cover no-repeat; opacity: .35; z-index: -1; }
.age-card { width: min(520px, 100%); text-align: center; background: rgba(10,28,30,.85); border: 1px solid var(--line-strong); border-radius: 24px; padding: clamp(28px, 6vw, 48px); box-shadow: 0 40px 80px -30px #000; }
.age-card h2 { font-family: var(--font-display); font-weight: 500; font-size: 40px; }
.age-card p { color: var(--muted); }
.age-card .eyebrow { display: flex; justify-content: center; }
.age-actions { display: grid; gap: 12px; margin-top: 24px; }
.age-lang { margin: 18px 0 0; font-size: 13px; }
.age-lang a { color: var(--muted); }

/* =====================================================================
   HERO – Original-Hintergrund + 3D-Cover-Fächer
   ===================================================================== */
.hero {
  position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; isolation: isolate;
  padding: calc(var(--header-h) + 24px) 0 90px;
}
.hero-bg {
  position: absolute; inset: -4% 0; z-index: -3;
  background: var(--bg) var(--hero-bg) center / cover no-repeat;
  transform: translate3d(0, var(--py, 0px), 0) scale(1.06);
  animation: heroIn 2.4s var(--ease) both;
}
@keyframes heroIn { from { opacity: 0; transform: scale(1.14); filter: blur(6px); } to { opacity: 1; filter: none; } }
.hero::before { /* Vignette + Lesbarkeit */
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 42% 60% at 50% 50%, rgba(4,14,15,.0) 0%, rgba(4,14,15,.0) 60%, transparent 100%),
    linear-gradient(180deg, rgba(4,14,15,.55) 0%, rgba(4,14,15,0) 22%, rgba(4,14,15,0) 70%, var(--bg) 100%);
}
.hero::after { /* goldener Lichtschein hinter dem Fächer */
  content: ""; position: absolute; z-index: -1; width: 60vmin; height: 60vmin; left: 50%; top: 50%; transform: translate(-10%, -50%);
  background: radial-gradient(circle, rgba(220,181,107,.22), transparent 65%); filter: blur(10px); pointer-events: none;
}
.hero-inner { display: grid; gap: clamp(28px, 4vw, 56px); align-items: center; max-width: 1060px; margin-inline: auto; }
@media (min-width: 980px) { .hero-inner { grid-template-columns: 1.05fr 1fr; } }
.hero-copy { position: relative; z-index: 2; text-align: center; }
@media (min-width: 980px) { .hero-copy { text-align: left; } }
.hero .display { margin: 22px 0 18px; text-shadow: 0 10px 40px rgba(0,0,0,.6); }
.hero .display em { display: block; }
.hero-sub { color: rgba(243,239,232,.8); font-size: clamp(16px, 1.5vw, 19px); max-width: 44ch; margin-inline: auto; }
@media (min-width: 980px) { .hero-sub { margin-inline: 0; } }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; justify-content: center; }
@media (min-width: 980px) { .hero-actions { justify-content: flex-start; } }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 30px; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); justify-content: center; }
@media (min-width: 980px) { .hero-trust { justify-content: flex-start; } }
.hero-trust b { color: var(--gold-3); font-weight: 700; }
.pill { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 12px; border-radius: 999px; background: rgba(4,14,15,.55); border: 1px solid rgba(220,181,107,.35); color: var(--gold-3); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(220,181,107,.2); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(220,181,107,0); } }

/* Cover-Fächer */
.fan { position: relative; height: clamp(360px, 52vw, 560px); perspective: 1400px; }
.fan-stage { position: absolute; inset: 0; transform-style: preserve-3d; transform: rotateY(var(--ry, -8deg)) rotateX(var(--rx, 4deg)); transition: transform .6s var(--ease); }
.fan-item {
  position: absolute; left: 50%; top: 50%; width: clamp(200px, 26vw, 330px); aspect-ratio: var(--cover-ratio);
  border-radius: 10px; overflow: hidden; box-shadow: 0 40px 80px -24px rgba(0,0,0,.85), 0 0 0 1px rgba(255,255,255,.08);
  transition: transform .9s var(--ease), filter .6s, opacity .6s;
}
.fan-item img { width: 100%; height: 100%; object-fit: cover; }
.fan-item:nth-child(1) { transform: translate(-50%, -50%) translateZ(60px); z-index: 3; }
.fan-item:nth-child(2) { transform: translate(-112%, -47%) rotate(-9deg) translateZ(-40px) scale(.84); z-index: 2; filter: brightness(.55) saturate(.9); }
.fan-item:nth-child(3) { transform: translate(12%, -47%) rotate(9deg) translateZ(-40px) scale(.84); z-index: 1; filter: brightness(.55) saturate(.9); }
.fan:hover .fan-item:nth-child(2) { transform: translate(-128%, -46%) rotate(-13deg) translateZ(-30px) scale(.86); filter: brightness(.8); }
.fan:hover .fan-item:nth-child(3) { transform: translate(28%, -46%) rotate(13deg) translateZ(-30px) scale(.86); filter: brightness(.8); }
.fan-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.22) 48%, transparent 60%); transform: translateX(-100%); animation: sheen 6s 2s ease-in-out infinite; }
@keyframes sheen { 0%, 70% { transform: translateX(-100%); } 90%, 100% { transform: translateX(100%); } }
.fan-label { position: absolute; left: 50%; bottom: -8px; transform: translateX(-50%); white-space: nowrap; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.fan-label b { color: var(--gold-3); }
.fan-enter .fan-item { animation: fanIn 1.3s var(--ease) both; }
.fan-enter .fan-item:nth-child(2) { animation-delay: .15s; }
.fan-enter .fan-item:nth-child(3) { animation-delay: .3s; }
@keyframes fanIn { from { opacity: 0; margin-top: 60px; } to { opacity: 1; margin-top: 0; } }
@media (max-width: 979px) {
  .hero { align-items: start; }
  .hero-bg { background-position: 18% center; opacity: .55; }
  .fan { order: -1; height: min(118vw, 520px); }
  .fan-item { width: min(52vw, 280px); }
}
.scroll-hint { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 26px; height: 42px; border: 1.5px solid var(--line-strong); border-radius: 14px; }
.scroll-hint::after { content: ""; position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 2px; background: var(--gold); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { to { transform: translateY(14px); opacity: 0; } }

/* =====================================================================
   COVER-WAND (Endlos-Laufband)
   ===================================================================== */
.wall { position: relative; overflow: hidden; padding-block: 8px; perspective: 1600px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.wall-tilt { transform: rotateX(8deg) rotateZ(-3deg) scale(1.04); transform-origin: center; }
.wall-row { display: flex; gap: 14px; width: max-content; padding-block: 7px; animation: marquee var(--dur, 90s) linear infinite; }
.wall-row.reverse { animation-direction: reverse; }
.wall:hover .wall-row { animation-play-state: paused; }
.wall-row a { flex: none; width: clamp(130px, 14vw, 200px); aspect-ratio: var(--cover-ratio); border-radius: 8px; overflow: hidden; position: relative; background: var(--surface);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.9); transition: transform .5s var(--ease), box-shadow .5s; }
.wall-row a img { width: 100%; height: 100%; object-fit: cover; }
.wall-row a:hover { transform: translateY(-10px) scale(1.06); box-shadow: 0 30px 60px -20px rgba(0,0,0,.9), 0 0 0 2px var(--gold); z-index: 2; }
@keyframes marquee { to { transform: translateX(-50%); } }
.wall-caption { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 34px; }

/* =====================================================================
   COVER-/QUERFORMAT-KARTEN
   ===================================================================== */
.ph { background: radial-gradient(circle at 50% 40%, rgba(220,181,107,.14), transparent 60%), linear-gradient(135deg, #0e2225, #071416); }
.ph.img-missing::before { content: "Z"; position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-display); font-size: clamp(40px, 6vw, 80px); color: rgba(220,181,107,.35); }
.ph.img-missing img { opacity: 0; }

.cover-grid { display: grid; gap: clamp(14px, 1.8vw, 26px); grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 700px) { .cover-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .cover-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1280px) { .cover-grid.cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

.cover-card, .wide-card { perspective: 900px; }
.cover-link, .wide-link { display: block; }
.cover, .wide { margin: 0; position: relative; overflow: hidden; border-radius: 10px; box-shadow: 0 24px 50px -28px rgba(0,0,0,.95), 0 0 0 1px var(--line);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease); transform-style: preserve-3d; will-change: transform; }
.cover { aspect-ratio: var(--cover-ratio); }
.wide { aspect-ratio: var(--wide-ratio); }
.cover img, .wide img { width: 100%; height: 100%; object-fit: cover; }
.cover-link:hover .cover, .wide-link:hover .wide { transform: translateY(-8px) rotateX(4deg); box-shadow: 0 40px 70px -30px rgba(0,0,0,.95), 0 0 0 1px rgba(220,181,107,.8), 0 0 50px -10px rgba(220,181,107,.35); }
.shine { position: absolute; inset: 0; background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.28) 50%, transparent 62%); transform: translateX(-110%); transition: transform 1s var(--ease); pointer-events: none; }
.cover-link:hover .shine, .wide-link:hover .shine { transform: translateX(110%); }
.badge { position: absolute; right: 8px; top: 8px; display: inline-flex; align-items: center; gap: 5px; padding: 4px 9px 4px 7px; border-radius: 999px; font-size: 11.5px; font-weight: 700;
  background: rgba(4,14,15,.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: var(--text); border: 1px solid var(--line-strong); }
.badge svg { width: 13px; height: 13px; fill: var(--gold); }
.play { position: absolute; left: 50%; top: 50%; width: 64px; height: 64px; margin: -32px 0 0 -32px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(4,14,15,.55); border: 1.5px solid rgba(255,255,255,.7); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); transition: transform .4s var(--ease), background .4s; }
.play svg { width: 26px; height: 26px; fill: #fff; margin-left: 3px; }
.wide-link:hover .play { transform: scale(1.12); background: var(--gold); border-color: var(--gold); }
.wide-link:hover .play svg { fill: #1c1509; }
.cover-meta, .wide-meta { padding: 12px 2px 0; }
.cover-meta h3, .wide-meta h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(18px, 1.6vw, 22px); margin: 0 0 3px; transition: color .2s; }
.cover-meta p, .wide-meta p { margin: 0; font-size: 12.5px; color: var(--muted); }
.cover-link:hover h3, .wide-link:hover h3 { color: var(--gold-3); }

.wide-grid { display: grid; gap: clamp(16px, 2vw, 28px); grid-template-columns: 1fr; }
@media (min-width: 620px) { .wide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .wide-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* Karussell (Querformat, Videos) */
.rail-wrap { position: relative; }
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: min(82vw, 546px); gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 10px var(--gutter) 30px; scroll-padding-inline: var(--gutter);
  scrollbar-width: none; }
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }
@media (min-width: 1320px) { .rail { padding-inline: calc((100vw - var(--container)) / 2 + var(--gutter)); scroll-padding-inline: calc((100vw - var(--container)) / 2 + var(--gutter)); } }
.rail-nav { display: flex; gap: 10px; }
.rail-btn { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line-strong); background: rgba(4,14,15,.4); color: var(--text); display: grid; place-items: center; cursor: pointer; transition: all .2s; }
.rail-btn:hover { border-color: var(--gold); color: var(--gold); }
.rail-btn svg { width: 20px; height: 20px; fill: currentColor; }

/* =====================================================================
   MAGAZIN-DOPPELSEITE (neuestes Update)
   ===================================================================== */
.spread-section { overflow: hidden; }
.spread-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.spread-bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(60px) saturate(1.2); opacity: .35; transform: scale(1.3); }
.spread-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg), rgba(4,14,15,.4) 30%, rgba(4,14,15,.4) 70%, var(--bg)); }
.spread { display: grid; gap: clamp(26px, 4vw, 60px); align-items: center; }
@media (min-width: 960px) { .spread { grid-template-columns: minmax(0, 416px) minmax(0, 1fr); } }
.spread-cover { position: relative; max-width: 416px; width: 100%; margin-inline: auto; }
.spread-cover .cover { box-shadow: 0 50px 100px -30px #000, 0 0 0 1px rgba(220,181,107,.35); }
.spread-cover::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid rgba(220,181,107,.4); border-radius: 12px; z-index: -1; }
.spread-body .wide { max-width: 546px; margin: 26px 0; }
.spread-body .display { font-size: clamp(42px, 5.6vw, 84px); }
.meta-row { display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: 13px; color: var(--muted); letter-spacing: .06em; margin: 8px 0 18px; }
.meta-row b { color: var(--text); font-weight: 600; }

/* Kategorien mit Cover */
.cat-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(150px, 1fr); gap: 16px; overflow-x: auto; padding-bottom: 10px; scrollbar-width: none; }
.cat-rail::-webkit-scrollbar { display: none; }
.cat-card { display: block; }
.cat-card .cover { border-radius: 10px; }
.cat-card .cover img { transition: transform .8s var(--ease), filter .6s; filter: saturate(.85) brightness(.85); }
.cat-card:hover .cover img { transform: scale(1.05); filter: none; }
.cat-name { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-top: 12px; }
.cat-name b { font-family: var(--font-display); font-size: 23px; font-weight: 600; }
.cat-name span { font-size: 12px; color: var(--gold); letter-spacing: .08em; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-strong); font-size: 13px; color: var(--muted); transition: all .2s; }
.chip:hover { color: var(--gold-3); border-color: var(--gold); }
.chip small { color: var(--faint); }

/* Kennzahlen */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { background: rgba(4,14,15,.85); padding: clamp(18px, 3vw, 32px); }
.stat-num { font-family: var(--font-display); font-size: clamp(38px, 4.6vw, 60px); line-height: 1; color: var(--gold-3); }
.stat-label { font-size: 12px; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; margin-top: 8px; }
@media (min-width: 820px) { .stats { grid-template-columns: repeat(4, 1fr); } }

/* Mitgliedschaft */
.plans-section { overflow: hidden; }
.plans-bg { position: absolute; inset: 0; z-index: -1; display: grid; grid-template-columns: repeat(8, 1fr); gap: 6px; opacity: .18; filter: grayscale(.3); transform: rotate(-6deg) scale(1.3); }
.plans-bg img { width: 100%; aspect-ratio: var(--cover-ratio); object-fit: cover; border-radius: 6px; }
.plans-section::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse at 50% 40%, rgba(4,14,15,.6), var(--bg) 75%); }
.plans { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 880px) { .plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.plan { position: relative; display: flex; flex-direction: column; gap: 6px; padding: 32px 28px; border-radius: 22px;
  background: rgba(10,28,30,.72); border: 1px solid var(--line); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); transition: transform .4s var(--ease), border-color .4s; }
.plan:hover { transform: translateY(-6px); border-color: rgba(220,181,107,.45); }
.plan.featured { background: linear-gradient(180deg, rgba(220,181,107,.18), rgba(220,181,107,.03) 60%), rgba(10,28,30,.8); border-color: rgba(220,181,107,.6); box-shadow: 0 30px 80px -40px rgba(220,181,107,.7); }
@media (min-width: 880px) { .plan.featured { transform: scale(1.04); } .plan.featured:hover { transform: scale(1.04) translateY(-6px); } }
.plan-flag { position: absolute; top: -12px; left: 28px; padding: 5px 12px; border-radius: 999px; background: var(--gold); color: #1c1509; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.plan-name { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.plan-price { font-family: var(--font-display); font-size: 62px; line-height: 1; margin: 8px 0 4px; }
.plan-price small { font-family: var(--font-body); font-size: 15px; color: var(--muted); margin-left: 4px; }
.plan-note { font-size: 13px; color: var(--muted); min-height: 2.6em; }
.plan-save { align-self: flex-start; font-size: 12px; font-weight: 700; color: var(--ok); background: rgba(127,211,164,.12); padding: 4px 10px; border-radius: 999px; }
.plan .btn { margin-top: 18px; }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before { content: ""; flex: none; width: 20px; height: 20px; margin-top: 2px; border-radius: 50%; background: var(--gold-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23dcb56b' d='M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6L20.6 7.9l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat; }
.pay-row { display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; justify-content: center; margin-top: 30px; color: var(--muted); font-size: 13px; }
.pay-row svg { width: 18px; height: 18px; fill: var(--gold); vertical-align: -4px; margin-right: 6px; }

/* Finale CTA mit Original-Hintergrund */
.finale { position: relative; min-height: 70vh; display: grid; place-items: center; text-align: center; overflow: hidden; isolation: isolate; }
.finale::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--bg) var(--hero-bg) center / cover no-repeat; }
.finale::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, var(--bg), rgba(4,14,15,.2) 30%, rgba(4,14,15,.2) 70%, var(--bg)); }
@media (max-width: 979px) { .finale::before { opacity: .45; background-position: 82% center; } }
.finale .display { font-size: clamp(42px, 6vw, 88px); }

/* Stories */
.story-list { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
@media (min-width: 820px) { .story-list { grid-template-columns: 1fr 1fr; column-gap: 44px; } }
.story-item { display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 14px; padding: 16px 4px; border-bottom: 1px solid var(--line); transition: background .2s, padding .25s var(--ease); }
.story-item:hover { background: rgba(255,255,255,.02); padding-left: 10px; }
.story-num { font-family: var(--font-display); font-size: 22px; color: var(--gold); }
.story-t { font-weight: 500; line-height: 1.35; }
.story-item:hover .story-t { color: var(--gold-3); }
.story-lang { font-size: 11px; letter-spacing: .12em; color: var(--faint); border: 1px solid var(--line); border-radius: 6px; padding: 3px 6px; }
.story-tools { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 20px; }
.story-tools .input { max-width: 360px; }
.reader { max-width: 720px; margin-inline: auto; }
.reader-head { text-align: center; margin-bottom: 40px; }
.prose { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.85; color: #e5e2da; }
.prose p { margin: 0 0 1.15em; }
.prose:not(.plain) p:first-of-type::first-letter { font-family: var(--font-display); float: left; font-size: 4.1em; line-height: .82; padding: 6px 10px 0 0; color: var(--gold); }
.prose h2 { font-family: var(--font-display); font-size: 30px; margin-top: 1.6em; }
.prose h3 { font-size: 18px; margin-top: 1.6em; }
.story-box { padding: clamp(24px, 4vw, 44px); border-radius: 22px; background: var(--surface); border: 1px solid var(--line); }
.story-box h2 { font-family: var(--font-display); font-weight: 500; font-size: 36px; }
.story-box p { color: var(--muted); }

/* Seitenkopf mit Original-Hintergrund */
.page-hero { position: relative; padding: clamp(60px, 9vw, 120px) 0 clamp(30px, 4vw, 48px); isolation: isolate; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--bg) var(--hero-bg) center 30% / cover no-repeat; opacity: .55; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(4,14,15,.4), var(--bg)); }
@media (max-width: 979px) { .page-hero::before { opacity: .3; } }

/* Filter */
.filter-bar { position: sticky; top: var(--header-h); z-index: 30; background: rgba(4,14,15,.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-block: 1px solid var(--line); padding-block: 12px; }
.filter-form { display: grid; gap: 10px; grid-template-columns: 1fr auto; }
.filter-more { display: none; grid-column: 1 / -1; gap: 10px; grid-template-columns: 1fr 1fr; }
.filter-form.open .filter-more { display: grid; }
.filter-toggle { display: inline-flex; }
@media (min-width: 1000px) {
  .filter-form { grid-template-columns: minmax(200px, 1.6fr) repeat(4, minmax(0, 1fr)); }
  .filter-more { display: contents; }
  .filter-toggle { display: none; }
}
.seg { display: inline-flex; padding: 4px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); gap: 2px; }
.seg a { padding: 8px 16px; border-radius: 999px; font-size: 13px; color: var(--muted); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.seg a svg { width: 15px; height: 15px; fill: currentColor; }
.seg a[aria-current="true"] { background: var(--gold-soft); color: var(--gold-3); }
.results-bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; align-items: center; margin: 28px 0 26px; }
.results-bar p { margin: 0; color: var(--muted); font-size: 14px; }
.results-tools { display: flex; flex-wrap: wrap; gap: 10px; }
.active-filters { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.active-filters a { font-size: 12.5px; padding: 6px 12px; border-radius: 999px; background: var(--gold-soft); color: var(--gold-3); }
.active-filters a::after { content: " ×"; }

/* Formulare */
.input, .select, .textarea {
  width: 100%; min-height: 46px; padding: 11px 16px; border-radius: 12px; border: 1px solid var(--line-strong);
  background: var(--surface); color: var(--text); font: 400 15px/1.4 var(--font-body); transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none;
}
.select { padding-right: 38px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%239fb3b2' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 20px; }
.select option { background: var(--surface); color: var(--text); }
.textarea { min-height: 160px; resize: vertical; line-height: 1.6; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(220,181,107,.14); }
.input::placeholder, .textarea::placeholder { color: var(--faint); }
.search-input { padding-left: 42px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%239fb3b2' d='M15.5 14h-.8l-.3-.3A6.5 6.5 0 1 0 9.5 16a6.5 6.5 0 0 0 4.2-1.6l.3.3v.8l5 5 1.5-1.5-5-5zm-6 0a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: 14px center; background-size: 20px; }
.form { display: grid; gap: 16px; }
.form-row { display: grid; gap: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--muted); }
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold); flex: none; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.alert { padding: 14px 18px; border-radius: 12px; font-size: 14.5px; border: 1px solid; margin-bottom: 18px; }
.alert-ok { color: var(--ok); border-color: rgba(127,211,164,.35); background: rgba(127,211,164,.08); }
.alert-err { color: var(--danger); border-color: rgba(239,132,116,.35); background: rgba(239,132,116,.08); }

/* =====================================================================
   DETAILSEITE
   ===================================================================== */
.detail-section { position: relative; overflow: hidden; isolation: isolate; padding-top: calc(var(--header-h) * 0 + clamp(28px, 4vw, 48px)); }
.detail-backdrop { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.detail-backdrop img { width: 100%; height: 100%; object-fit: cover; filter: blur(70px) saturate(1.3); opacity: .4; transform: scale(1.4); }
.detail-backdrop::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,14,15,.3), var(--bg) 92%); }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.crumbs a:hover { color: var(--gold); }
.crumbs span::before { content: "/"; margin-right: 8px; color: var(--faint); }
.detail { display: grid; gap: clamp(28px, 4vw, 64px); align-items: start; }
@media (min-width: 980px) { .detail { grid-template-columns: minmax(0, 440px) minmax(0, 1fr); } }
.detail-cover { position: relative; max-width: 440px; width: 100%; margin-inline: auto; }
@media (min-width: 980px) { .detail-cover { position: sticky; top: calc(var(--header-h) + 24px); } }
.detail-cover .cover { cursor: zoom-in; box-shadow: 0 50px 100px -30px #000, 0 0 0 1px rgba(220,181,107,.35); }
.detail-cover::before { content: ""; position: absolute; inset: 16px -16px auto 16px; aspect-ratio: var(--cover-ratio); border: 1px solid rgba(220,181,107,.35); border-radius: 12px; z-index: -1; }
.detail-info .display { font-size: clamp(40px, 5.4vw, 80px); margin-bottom: 10px; }
.detail-wide { max-width: 546px; margin: 26px 0 8px; }
.detail-wide .wide { cursor: zoom-in; }
.zoom-hint { font-size: 12px; color: var(--faint); letter-spacing: .08em; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 24px 0; max-width: 546px; }
.fact { background: rgba(4,14,15,.8); padding: 14px 16px; }
.fact:last-child:nth-child(odd) { grid-column: 1 / -1; }
.fact dt { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-bottom: 4px; }
.fact dd { margin: 0; font-weight: 600; }
.downloads { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 8px; max-width: 546px; }
.downloads li { display: flex; justify-content: space-between; gap: 12px; padding: 12px 16px; border-radius: 12px; background: rgba(10,28,30,.7); border: 1px solid var(--line); font-size: 14px; }
.downloads li b { color: var(--gold-3); font-weight: 600; }
.lock-note { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; padding: 18px 20px; border-radius: 16px; border: 1px solid rgba(220,181,107,.35); background: linear-gradient(120deg, rgba(220,181,107,.14), rgba(220,181,107,.02)); margin: 26px 0; max-width: 546px; }
.lock-note p { margin: 0; font-size: 14.5px; }
.pn { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 56px; }
.pn a { display: grid; grid-template-columns: 64px 1fr; gap: 14px; align-items: center; padding: 12px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(4,14,15,.5); transition: border-color .2s; min-width: 0; }
.pn a:hover { border-color: rgba(220,181,107,.5); }
.pn img { width: 64px; aspect-ratio: var(--cover-ratio); object-fit: cover; border-radius: 6px; }
.pn small { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.pn span { display: block; font-family: var(--font-display); font-size: 20px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pn .next { grid-column: 2; grid-template-columns: 1fr 64px; text-align: right; }
.pn .next img { order: 2; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 250; display: grid; place-items: center; padding: 20px; background: rgba(2,8,9,.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); animation: fade .25s; cursor: zoom-out; }
.lightbox img { max-width: min(100%, 1100px); max-height: 90vh; width: auto; height: auto; border-radius: 8px; box-shadow: 0 40px 100px -20px #000; }
.lightbox button { position: absolute; top: 18px; right: 18px; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-strong); background: rgba(4,14,15,.6); color: var(--text); font-size: 22px; cursor: pointer; }

/* Pager */
.pager { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 56px; }
.pager a, .pager-gap { min-width: 44px; height: 44px; display: inline-grid; place-items: center; padding: 0 10px; border-radius: 999px; font-size: 14px; color: var(--muted); border: 1px solid var(--line); }
.pager a:hover { color: var(--gold-3); border-color: var(--gold); }
.pager a[aria-current="page"] { background: var(--gold); color: #1c1509; border-color: var(--gold); font-weight: 700; }
.pager-gap { border: 0; }

/* Kontakt / Recht / FAQ */
.two-col { display: grid; gap: clamp(28px, 5vw, 64px); }
@media (min-width: 960px) { .two-col { grid-template-columns: 1fr 1.3fr; } }
.info-card { padding: 26px; border-radius: 20px; background: rgba(10,28,30,.75); border: 1px solid var(--line); }
.info-card + .info-card { margin-top: 16px; }
.info-card h3 { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.info-card address { font-style: normal; line-height: 1.8; }
.legal-grid { display: grid; gap: 16px; }
@media (min-width: 900px) { .legal-grid { grid-template-columns: 1fr 1fr; } }
.legal-grid .info-card { margin: 0; }
.legal-grid .info-card p, .legal-grid .info-card li { color: var(--muted); font-size: 14.5px; }
.legal-grid ol { padding-left: 1.2em; margin: 0; display: grid; gap: 10px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 36px 20px 0; position: relative; font-weight: 600; font-size: 16.5px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 24px; color: var(--gold); transition: transform .25s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 20px; margin: 0; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-top: clamp(48px, 7vw, 84px); padding-bottom: env(safe-area-inset-bottom); }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr 1fr; }
.footer-brand { grid-column: 1 / -1; max-width: 420px; }
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 18px; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } .footer-brand { grid-column: auto; } }
.footer-h { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 16px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 14px; }
.footer-links a { color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.social { display: flex; gap: 10px; }
.social a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line-strong); transition: all .2s; }
.social a:hover { border-color: var(--gold); background: var(--gold-soft); }
.social svg { width: 18px; height: 18px; fill: var(--text); }
.footer-bottom { margin-top: 48px; padding-block: 24px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--muted); }
.footer-bottom p { margin: 0 0 6px; }

/* Scroll-Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(2) { transition-delay: .06s; } .stagger.in > *:nth-child(3) { transition-delay: .12s; }
.stagger.in > *:nth-child(4) { transition-delay: .18s; } .stagger.in > *:nth-child(5) { transition-delay: .24s; }
.stagger.in > *:nth-child(6) { transition-delay: .3s; } .stagger.in > *:nth-child(7) { transition-delay: .36s; }
.stagger.in > *:nth-child(8) { transition-delay: .42s; } .stagger.in > *:nth-child(n+9) { transition-delay: .48s; }

@media (max-width: 420px) {
  .info-card .btn, .plan .btn, .hero-actions .btn, .finale .btn { white-space: normal; text-align: center; line-height: 1.3; padding-block: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .stagger > * { opacity: 1; transform: none; }
}
.t-vid { color: var(--gold); }
