/* ============================================================
   ENGEL2INK — Design-System v3 (Playbook-Pass)
   4-Rollen-Typografie:
     Display   = Cinzel              (Headlines, Riesenwörter)
     Akzent    = Cormorant Garamond  (kursive Akzentwörter — Display-Kursive)
     Lesetext  = Spectral            (Body, Leads, Prosa — Text-Serife mit Charakter)
     UI-Chrome = Manrope             (Nav, Buttons, Labels, Meta — still & lesbar)
     Handakzent= Caveat              (Captions, Sticker, Notizen — sparsam)
   ============================================================ */

:root {
  --bg: #050505;
  --bg-2: #0a0a0b;
  --bg-3: #111112;
  --ink: #f2efe9;
  --muted: rgba(242, 239, 233, 0.64);   /* ~7.3:1 auf #050505 */
  --faint: rgba(242, 239, 233, 0.5);    /* ~4.8:1 — AA auch für kleine Labels */
  --gold: #c9a35c;
  --gold-bright: #e8cd92;
  --gold-dim: rgba(201, 163, 92, 0.5);
  --transfer: #6f93b0;            /* Transferpapier-Blau — sparsamer Zweitakzent */
  --hair: rgba(201, 163, 92, 0.22);
  --hair-soft: rgba(242, 239, 233, 0.08);
  --green: #1d6b4a;
  --warn: #d08a5a;
  --ok: #7fae8f;

  --font-display: "Cinzel", serif;
  --font-accent: "Cormorant Garamond", serif;
  --font-body: "Spectral", Georgia, "Times New Roman", serif;
  --font-ui: "Manrope", system-ui, sans-serif;
  --font-hand: "Caveat", "Segoe Script", cursive;

  --w-wide: 1280px;
  --w-content: 1140px;
  --w-narrow: 760px;
  --pad-x: clamp(20px, 4.5vw, 52px);

  /* Bewegung nur über Tokens (Playbook Kap. 4) */
  --ease: cubic-bezier(.16, 1, .3, 1);            /* Expo-Out: gleitet aus */
  --ease-spring: cubic-bezier(.34, 1.45, .5, 1);  /* Überschwinger für Stempel-Pops */
  --t-fast: 0.25s var(--ease);
  --t-slow: 0.7s var(--ease);

  color-scheme: dark;
}

/* Sanfter Crossfade zwischen Seiten (View Transitions) */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: 0.35s; }

* { margin: 0; padding: 0; box-sizing: border-box; }

/* WICHTIG: NIEMALS overflow-x auf html — bricht position:sticky (Hero-Scrub)
   in Chromium sogar mit "clip" (zweimal verifiziert). Querscroll-Schutz liegt
   auf body (overflow-x:hidden) + an der Quelle (Kicker-Umbruch mobil). */
html { scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17.5px;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }

/* ---------- UI-Chrome: stille Grotesk (Manrope) ----------
   Lesetext bleibt Serife; nur Bedien-/Meta-Elemente werden Sans. */
.nav, .nav-links a, .nav-day, .btn, .breadcrumb, .badge, .p-cat,
.stat-label, .tile-go, .card-go, .frame-hint, .menu-meta a,
.footer-cols a, .footer-base, .sticky-cta, .form label,
.form input, .form textarea, .accordion summary::after,
.product-card dt, .product-card .p-link, .step-num, .tile-num,
.work-num, .g-num, .q-num, .rl-kicker, .scroll-hint, .skip-link {
  font-family: var(--font-ui);
}

::selection { background: var(--gold); color: #0a0a0a; }

img { max-width: 100%; display: block; }

/* ============================================================
   Signature-Elemente (Playbook Kap. 5) — max. 3:
   (1) Custom-Cursor-Set  (2) Marken-Sparkle ✦  (3) Hand-Kringel
   ============================================================ */

/* (1) Cursor: Default = Pfeil+Sparkle, Pointer = Tattoo-Blitz.
   Spitze = Hotspot. Eingabefelder + Touch behalten nativen Cursor. */
html { cursor: url("/assets/cursor-arrow.png") 3 2, default; }
a, button, summary, label, [role="tab"], [role="button"],
.gallery-frame-btn, .tile, .card, .burger, .sticky-cta a {
  cursor: url("/assets/cursor-point.png") 16 3, pointer;
}
input, textarea, select { cursor: text; }
@media (pointer: coarse) {
  html, a, button, label, summary, .tile, .card, .burger { cursor: auto; }
}

/* (2) Marken-Sparkle als Eyebrow-Präfix — nur auf nummernlosen Kickern,
   damit die nummerierten Sektionen ruhig bleiben. Wiederholung = Marke. */
.kicker-row > .kicker:first-child { display: inline-flex; align-items: center; gap: 0.62em; }
.kicker-row > .kicker:first-child::before {
  content: ""; width: 0.66em; height: 0.66em; flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 0 L9.6 6.4 L16 8 L9.6 9.6 L8 16 L6.4 9.6 L0 8 L6.4 6.4 Z' fill='%23c9a35c'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* (3) Hand-Kringel um genau ein Akzentwort (offene Ellipse mit Lücke) */
.circled { position: relative; display: inline-block; }
.circled::after {
  content: ""; position: absolute; inset: -15% -9% -26% -7%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 60'%3E%3Cpath d='M31 9 C8 11 6 45 60 50 C109 52 116 16 78 9 C57 4 39 7 25 17' fill='none' stroke='%23c9a35c' stroke-width='2.3' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat;
  pointer-events: none;
  opacity: 0;
  transform: scale(.6) rotate(-7deg);
  transform-origin: center;
}
.circled.is-circled::after {
  opacity: .92;
  transform: scale(1) rotate(0deg);
  transition: opacity .5s var(--ease) .35s, transform .7s var(--ease-spring) .35s;
}

/* ============================================================
   Textur-Zitate der Tattoo-Welt (Playbook Kap. 3.4) — 2 Zitate:
   (a) Flash-Sheet-Doppellinie  (b) Aftercare-Zettel mit Tape
   + Doodle-Muster aus Tattoo-Motiven (Kap. 3.3)
   ============================================================ */

/* ============================================================
   Stille Galerie (Cosmos-Referenz): Sternenstaub auf Samt +
   EIN warmer Gold-Halo. Sonst nichts — Schwarz darf leer sein.
   ============================================================ */
body { background-image: url("/assets/dust-dark.webp"); background-size: 420px 420px; }
.section.dark { background-image: url("/assets/dust-dark.webp"); background-size: 420px 420px; }
.menu {
  background-image: linear-gradient(rgba(5,5,5,.94), rgba(5,5,5,.94)), url("/assets/dust-dark.webp");
  background-size: auto, 420px 420px;
}

.atmosphere { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.atmosphere::before {
  content: "";
  position: absolute;
  left: 50%; top: -34vh;
  width: min(92vw, 1100px); height: min(92vw, 1100px);
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201, 163, 92, 0.085) 0%, rgba(201, 163, 92, 0.035) 38%, transparent 68%);
  animation: halo-breathe 26s ease-in-out infinite;
}
@keyframes halo-breathe {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50%      { transform: translateX(-50%) scale(1.07); opacity: 0.85; }
}

/* (a) Flash-Sheet-Rahmen: zweite Innenlinie auf Wissens-/Produktkarten */
.product-card, .check-col { position: relative; }
.product-card::after, .check-col::after {
  content: ""; position: absolute; inset: 5px;
  border: 1px solid var(--hair-soft);
  pointer-events: none;
}

/* (b) Aftercare-Zettel: Foto-Karte leicht schräg, Tape oben, Handschrift-Caption.
   Rotation über --tilt-Kanal (Playbook Pitfall 1), Hover richtet auf. */
/* --tilt nur auf dem Frame (nicht auf der .reveal-Figur) → keine Doppel-Rotation */
.media-figure .media-frame {
  --tilt: -1.5deg;
  position: relative;
  transform: rotate(var(--tilt));
  transition: transform .6s var(--ease);
}
.media-figure:hover .media-frame { --tilt: -.4deg; }
.media-figure .media-frame::before {
  content: ""; position: absolute; z-index: 3; top: -12px; left: 50%;
  width: 102px; height: 25px; transform: translateX(-50%) rotate(-2.5deg);
  background: rgba(201, 163, 92, 0.13);
  border: 1px solid rgba(201, 163, 92, 0.22);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.35);
}
.media-figure figcaption {
  font-family: var(--font-hand);
  font-size: 1.26rem;
  line-height: 1.35;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.media-figure figcaption .todo-note { font-family: var(--font-ui); font-size: 0.78rem; }

/* Transferpapier-Blau als funktionaler Fokus-Ring (a11y + Zweitakzent) */
:focus-visible { outline: 2px solid var(--transfer); outline-offset: 3px; }

/* Feines Filmkorn über allem — der cineastische Schleier */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Skip-Link ---------- */
.skip-link {
  position: fixed;
  top: -64px; left: 16px;
  z-index: 300;
  padding: 12px 22px;
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 700;
  text-decoration: none;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 12px; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--pad-x);
  height: 76px;
  transition: background var(--t-fast), border-color var(--t-fast);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--hair-soft);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.nav-brand .dim { color: var(--gold); margin: 0 2px; }
.nav-links {
  display: flex;
  gap: clamp(14px, 2vw, 30px);
}
.nav-links a {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 2px;
  position: relative;
  transition: color var(--t-fast);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right var(--t-fast);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-right { display: flex; align-items: center; gap: 20px; white-space: nowrap; }
.nav-day {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.26em;
  color: var(--muted);
}
.nav-day b { color: var(--gold); font-weight: 700; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 10px;
  margin: -8px -10px -8px 0;  /* großzügiges Tap-Target ohne Layout-Versatz */
}
.burger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--ink);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.burger.open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.burger.open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* ---------- Mobile-Menü ---------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(5, 5, 5, 0.98);
  display: grid;
  justify-content: center;
  align-content: safe center;
  gap: 44px;
  text-align: center;
  overflow-y: auto;
  padding: 90px 24px 60px;
  transition: opacity 0.3s ease;
}
.menu[hidden] { display: grid; opacity: 0; pointer-events: none; visibility: hidden; transition: opacity 0.3s ease, visibility 0s 0.3s; }
.menu-links { display: grid; gap: 6px; }
.menu-links a {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 5.5vw, 2rem);
  letter-spacing: 0.16em;
  color: var(--ink);
  text-decoration: none;
  padding: 6px;
  transition: color var(--t-fast);
}
.menu-links a:hover { color: var(--gold); }
.menu-meta { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.menu-meta a {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  text-decoration: none;
}
.menu-meta a:hover { color: var(--gold); }

/* ---------- Seiten-Hero (Unterseiten) ---------- */
.page-hero {
  position: relative;
  min-height: clamp(420px, 62vh, 640px);
  display: grid;
  align-content: end;
  padding: 140px var(--pad-x) clamp(40px, 7vh, 72px);
  overflow: hidden;
  isolation: isolate;
}
.page-hero > video, .page-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.15) 35%, rgba(5,5,5,0.6) 75%, var(--bg) 100%),
    radial-gradient(110% 80% at 50% 30%, transparent 40%, rgba(0,0,0,0.5) 100%);
}
.page-hero.slim { min-height: clamp(300px, 42vh, 420px); }
/* Hairline-Ornament (Rox-Referenz): konzentrische Gold-Bögen, langsam drehend */
.page-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: clamp(-220px, -12vw, -120px);
  top: -200px;
  width: 620px; height: 620px;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800' fill='none' stroke='%23c9a35c'%3E%3Ccircle cx='400' cy='400' r='150' stroke-opacity='.16' stroke-dasharray='4 14'/%3E%3Ccircle cx='400' cy='400' r='235' stroke-opacity='.11'/%3E%3Ccircle cx='400' cy='400' r='320' stroke-opacity='.08' stroke-dasharray='2 10'/%3E%3Ccircle cx='400' cy='400' r='398' stroke-opacity='.05'/%3E%3C/svg%3E") center/contain no-repeat;
  animation: hero-orbit 90s linear infinite;
}
@keyframes hero-orbit { to { transform: rotate(360deg); } }
.page-hero-inner { position: relative; z-index: 1; max-width: var(--w-content); margin: 0 auto; width: 100%; }
.breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--faint); text-decoration: none; transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb a + a::before, .breadcrumb span::before { content: "·"; margin-right: 10px; color: var(--faint); display: inline-block; }

.page-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  letter-spacing: 0.05em;
  line-height: 1.12;
}
.page-title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-bright);
  letter-spacing: 0.01em;
}
.page-sub {
  margin-top: 18px;
  max-width: 640px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--muted);
  line-height: 1.8;
}

/* ---------- Sektionen & Typo ---------- */
main { display: block; }
.section { padding: clamp(72px, 11vh, 130px) var(--pad-x); }
.section.tight { padding-top: clamp(40px, 6vh, 70px); }
.section.dark { background-color: var(--bg-2); }
.section-inner { max-width: var(--w-content); margin: 0 auto; }
.section-inner.narrow { max-width: var(--w-narrow); }

.kicker-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(22px, 4vh, 36px);
}
.kicker-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
}
.kicker {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.kicker-row::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--hair), transparent);
}

h2.display, h1.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4.4vw, 3.4rem);
  letter-spacing: 0.04em;
  line-height: 1.22;
  max-width: 18em;
}
.display em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-bright);
}
h3.sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.lead {
  margin-top: 26px;
  max-width: 620px;
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  color: var(--muted);
  line-height: 1.9;
}
.center { text-align: center; }
.center .lead, .center .display { margin-left: auto; margin-right: auto; }
.center .kicker-row { justify-content: center; }
.center .kicker-row::after { display: none; }

a.inline-link, main a:not([class]) { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--hair); transition: border-color var(--t-fast), color var(--t-fast); }
a.inline-link:hover, main a:not([class]):hover { color: var(--gold-bright); border-bottom-color: var(--gold); }

.note {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.8;
}
.todo-note { font-size: 0.78rem; color: rgba(201, 163, 92, 0.55); font-style: italic; }

/* ---------- Buttons ---------- */
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 40px; }
.center .btn-row { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 32px;
  border-radius: 999px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #0d0b07;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.btn:not(:has(.arr)) { padding: 14px 32px; }
.btn .arr {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(13, 11, 7, 0.16);
  font-size: 0.9rem;
  letter-spacing: 0;
  transition: transform var(--t-fast), background var(--t-fast);
}
.btn:hover { background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-1px); }
.btn:hover .arr { transform: translateX(3px); background: rgba(13, 11, 7, 0.24); }
.btn.ghost {
  background: transparent;
  border-color: rgba(242, 239, 233, 0.28);
  color: var(--ink);
}
.btn.ghost .arr { background: transparent; border: 1px solid currentColor; }
.btn.ghost:hover { border-color: var(--gold); color: var(--gold-bright); background: transparent; }
.btn.small { padding: 11px 22px; font-size: 0.72rem; }

/* ---------- Kacheln / Tiles ---------- */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: var(--hair-soft);
  border: 1px solid var(--hair-soft);
  margin-top: clamp(36px, 6vh, 56px);
}
.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  padding: 34px 30px 30px;
  background: var(--bg);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: background var(--t-slow);
}
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 20% 0%, rgba(201, 163, 92, 0.09), transparent 55%);
  opacity: 0;
  transition: opacity var(--t-slow);
}
.tile:hover::before { opacity: 1; }
.tile-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  color: var(--gold-dim);
}
.tile h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.07em;
}
.tile p { color: var(--muted); font-size: 0.95rem; max-width: 30ch; }
.tile .tile-go {
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tile .tile-go::after { content: "→"; transition: transform var(--t-fast); }
.tile:hover .tile-go::after { transform: translateX(5px); }

/* ---------- Stat-Reihe ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  background: var(--hair-soft);
  border-block: 1px solid var(--hair-soft);
  margin-top: clamp(40px, 7vh, 64px);
}
.stat {
  background: var(--bg);
  padding: 38px 20px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--gold);
  line-height: 1.1;
}
.stat-label {
  display: block;
  margin-top: 12px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ---------- Galerie + Lightbox (§8.3) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 34px);
  margin-top: clamp(40px, 7vh, 64px);
}
.gallery-card {
  background: none;
  border: none;
  text-align: left;
  color: inherit;
  font: inherit;
}
.gallery-frame-btn {
  display: block;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: inherit;
  color: inherit;
  font: inherit;
}
.gallery-worklink {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85rem;
}

/* ============================================================
   Masonry-Galerie (Cosmos/Savee-Referenz): Werke ohne Rahmen,
   variierende Höhen, minimale Meta — die Kunst trägt die Seite.
   ============================================================ */
.gallery-grid.masonry {
  display: block;
  columns: 3 290px;
  column-gap: clamp(20px, 2.6vw, 34px);
}
.masonry > * {
  break-inside: avoid;
  margin-bottom: clamp(28px, 3.4vw, 46px);
  display: block;
}
/* Echte Werke = echte Formate: kein Crop, natürliche Seitenverhältnisse */
.masonry .gallery-frame {
  border: none;
  background: var(--bg-2);
  aspect-ratio: auto;
}
.masonry .gallery-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.masonry .gallery-frame img { transition: transform 1.2s var(--ease), opacity .5s var(--ease); }
.masonry .gallery-card:hover .gallery-frame img { transform: scale(1.03); }
/* Meta minimal: Nummer + Titel in einer Zeile, Beschreibung lebt in Lightbox/Werkseite */
.masonry .gallery-meta { padding: 12px 2px 0; display: flex; align-items: baseline; gap: 12px; }
.masonry .gallery-meta .g-num { font-size: 0.66rem; }
.masonry .gallery-meta h3 { margin-top: 0; font-size: 0.98rem; }
.masonry .gallery-meta p { display: none; }
.masonry .gallery-worklink {
  margin-top: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-ui);
  border-bottom: none;
  color: var(--faint);
}
.masonry .gallery-worklink:hover { color: var(--gold); }
.gallery-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hair-soft);
  background: var(--bg-2);
  aspect-ratio: 4 / 3;
}
.gallery-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.6, 0.2, 1), opacity var(--t-slow);
}
.gallery-card:hover .gallery-frame img { transform: scale(1.045); }
.gallery-frame .frame-hint {
  position: absolute;
  right: 14px; bottom: 12px;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 239, 233, 0.85);
  background: rgba(5, 5, 5, 0.55);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  opacity: 0;
  transition: opacity var(--t-fast);
}
.gallery-card:hover .frame-hint { opacity: 1; }
.gallery-meta { padding: 18px 2px 0; }
.gallery-meta .g-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  color: var(--gold-dim);
}
.gallery-meta h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.07em;
  margin-top: 6px;
}
.gallery-meta p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(3, 3, 3, 0.94);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(16px, 4vh, 48px);
}
.lightbox-stage {
  display: grid;
  place-items: center;
  min-height: 0;
}
.lightbox-stage img {
  max-width: min(92vw, 1100px);
  max-height: 72vh;
  object-fit: contain;
  border: 1px solid var(--hair-soft);
}
.lightbox-caption {
  text-align: center;
  padding-top: 22px;
  max-width: 720px;
  margin: 0 auto;
}
.lightbox-caption h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.lightbox-caption p { color: var(--muted); font-size: 0.92rem; margin-top: 8px; }
.lightbox-caption .note { margin-top: 10px; }
.lightbox button {
  position: absolute;
  background: none;
  border: 1px solid var(--hair-soft);
  color: var(--ink);
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.lightbox button:hover { border-color: var(--gold); color: var(--gold); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); }

/* ---------- Listen ---------- */
.step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(24px, 4vw, 44px);
  margin-top: clamp(40px, 7vh, 60px);
  text-align: left;
}
.step {
  border-top: 1px solid var(--hair);
  padding-top: 24px;
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.07em;
  margin: 14px 0 10px;
}
.step p { color: var(--muted); font-size: 0.94rem; }

.check-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(36px, 6vh, 56px);
  text-align: left;
}
.check-col {
  border: 1px solid var(--hair-soft);
  background: var(--bg-2);
  padding: 32px 30px;
}
.check-col h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.check-col h3.ok { color: var(--ok); }
.check-col h3.warn { color: var(--warn); }
.check-col ul { list-style: none; }
.check-col li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--hair-soft);
}
.check-col li:last-child { border-bottom: none; }
.check-col li::before { content: "—"; position: absolute; left: 0; color: var(--gold-dim); }
.check-col ul.ok li::before { content: "✓"; color: var(--ok); }
.check-col ul.warn li::before { content: "!"; color: var(--warn); font-weight: 700; }
.check-col p { color: var(--muted); font-size: 0.95rem; }
.check-col p b { color: var(--ink); font-weight: 600; }

/* ---------- Produkt-Karten (Affiliate) ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  margin-top: clamp(36px, 6vh, 56px);
  text-align: left;
}
.product-card {
  border: 1px solid var(--hair-soft);
  background: var(--bg-2);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--t-fast);
}
.product-card:hover { border-color: var(--hair); }
.product-card .p-img {
  margin: -28px -26px 16px;
  background: #efe9df;
  border-bottom: 1px solid var(--hair-soft);
}
.product-card .p-img img {
  width: 100%;
  height: 185px;
  object-fit: contain;
  padding: 16px;
  transition: transform .5s var(--ease);
}
.product-card:hover .p-img img { transform: scale(1.04); }
.product-card .p-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.badge {
  display: inline-block;
  padding: 3px 9px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--hair);
  color: var(--gold);
  white-space: nowrap;
}
.p-cat {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}
.product-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.05em;
}
.product-card dl { display: grid; gap: 8px; }
.product-card dt {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.product-card dd { color: var(--muted); font-size: 0.9rem; }
.product-card .p-link {
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.product-card a.p-link::after { content: " →"; }
.product-card a.p-link:hover { color: var(--gold-bright); }
/* Platzhalter-Zustand: Original-Affiliate-Link folgt 1:1 aus dem Bestand */
.product-card span.p-link { color: var(--gold-dim); cursor: help; }
.product-card span.p-link::after { content: " (Link folgt)"; font-weight: 400; letter-spacing: 0.08em; text-transform: none; color: var(--faint); }

/* ---------- Akkordeon (FAQ) ---------- */
.accordion { margin-top: clamp(36px, 6vh, 56px); text-align: left; border-top: 1px solid var(--hair-soft); }
.accordion details { border-bottom: 1px solid var(--hair-soft); }
.accordion summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 26px 44px 26px 4px;
  position: relative;
  transition: color var(--t-fast);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion .q-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  flex-shrink: 0;
}
.accordion .q-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  letter-spacing: 0.05em;
}
.accordion summary::after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform var(--t-fast);
}
.accordion details[open] summary { color: var(--gold-bright); }
.accordion details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.accordion .a-body {
  padding: 0 4px 30px 0;
  color: var(--muted);
  max-width: 70ch;
}
@media (min-width: 700px) { .accordion .a-body { padding-left: 46px; } }

/* ---------- Formulare ---------- */
.form {
  margin-top: clamp(36px, 6vh, 52px);
  display: grid;
  gap: 18px;
  text-align: left;
}
.form label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.form input[type="text"], .form input[type="email"], .form textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--hair-soft);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 300;
  padding: 16px 18px;
  transition: border-color var(--t-fast);
  resize: vertical;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--gold-dim); }
.form .hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-msg { font-size: 0.95rem; }
.form-msg.ok { color: var(--ok); }
.form-msg.err { color: var(--warn); }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* ---------- Prose (Impressum/Datenschutz) ---------- */
.prose { max-width: var(--w-narrow); text-align: left; }
.prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  margin: 44px 0 14px;
}
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); margin-bottom: 12px; }
.prose ul { padding-left: 20px; }
.prose strong, .prose b { color: var(--ink); font-weight: 600; }

/* ---------- Zitat / Claim ---------- */
.claim {
  margin-top: clamp(48px, 8vh, 80px);
  padding: clamp(40px, 7vh, 64px) clamp(24px, 5vw, 64px);
  border: 1px solid var(--hair);
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(201, 163, 92, 0.07), transparent 60%),
    var(--bg-2);
  text-align: center;
}
.claim h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.claim p { color: var(--muted); max-width: 56ch; margin: 0 auto; }
.claim .claim-line {
  margin-top: 26px;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--ink);
  line-height: 1.4;
}

/* ---------- Kontakt-Streifen ---------- */
.contact-strip {
  margin-top: clamp(44px, 7vh, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--hair);
  text-align: left;
}
.contact-strip p { color: var(--muted); max-width: 52ch; }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: clamp(40px, 8vh, 90px);
  border-top: 1px solid var(--hair-soft);
  background: var(--bg-2);
  padding: clamp(56px, 9vh, 90px) var(--pad-x) 120px;
}
.footer-inner { max-width: var(--w-content); margin: 0 auto; }
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--hair-soft);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
}
.footer-brand .dim { color: var(--gold); margin: 0 3px; }
.footer-top p { color: var(--muted); max-width: 38ch; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 36px;
  padding: 48px 0;
}
.footer-cols h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-cols a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-cols a:hover { color: var(--gold-bright); }
.footer-base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  border-top: 1px solid var(--hair-soft);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--faint);
}

/* ---------- Sticky-CTA (§8.4) ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 52px 13px 20px;
  background: var(--green);
  color: #f2faf5;
  font-size: 0.88rem;
}
.sticky-cta b { font-weight: 700; }
.sticky-cta .sub { opacity: 0.75; }
.sticky-cta a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  transition: border-color var(--t-fast);
}
.sticky-cta a:hover { border-bottom-color: #fff; }
.sticky-cta button {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
}
.sticky-cta button:hover { color: #fff; }

/* ---------- Scrub-Sektionen (Start) ---------- */
.cinematic { position: relative; height: 460vh; }
.cinematic .sticky-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--bg);
}
.cinematic canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.cinematic .vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 45%, transparent 45%, rgba(0,0,0,0.72) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 25%, transparent 70%, rgba(0,0,0,0.8) 100%);
}
.overlay { position: relative; z-index: 10; text-align: center; padding: 0 24px; width: 100%; }
.reveal-line {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  max-width: 92vw;
  opacity: 0;
  will-change: opacity, transform;
}
.reveal-line .rl-kicker {
  display: block;
  font-family: var(--font-ui);
  font-size: clamp(0.72rem, 1vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.reveal-line .rl-text {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 6vw, 5.2rem);
  letter-spacing: 0.07em;
  line-height: 1.18;
  text-shadow: 0 2px 60px rgba(0, 0, 0, 0.9);
}
.reveal-line .rl-text em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-bright);
}
.scroll-hint {
  position: absolute;
  bottom: 78px; left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--faint);
  animation: bob 2s ease-in-out infinite;
  transition: opacity 0.4s;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(7px); } }

/* ---------- Media-Figur ---------- */
.media-figure { margin-top: clamp(44px, 7vh, 68px); }
.media-figure .media-frame {
  overflow: hidden;
  border: 1px solid var(--hair-soft);
}
.media-figure img, .media-figure video { width: 100%; }
.media-figure figcaption {
  margin-top: 16px;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  color: var(--faint);
}

/* ---------- Split-Layout ---------- */
.split {
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(40px, 7vh, 64px);
  text-align: left;
}
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; } }
.split .media-frame { overflow: hidden; border: 1px solid var(--hair-soft); }
.split img, .split video { width: 100%; }

/* ---------- Scroll-Reveals ----------
   Nur scharf, wenn JS läuft (html.js) — ohne JS bleibt alles sichtbar. */
.js .reveal {
  opacity: 0;
  transform: translateY(34px) scale(.99) rotate(var(--tilt, 0deg));
  filter: blur(6px);
  transition: opacity .85s var(--ease), transform 1.05s var(--ease), filter .85s var(--ease);
}
.js .reveal.in { opacity: 1; transform: translateY(0) scale(1) rotate(var(--tilt, 0deg)); filter: none; }
.js .reveal.d1 { transition-delay: 0.1s; }
.js .reveal.d2 { transition-delay: 0.2s; }
.js .reveal.d3 { transition-delay: 0.3s; }
html:not(.js) .reveal-line { position: static; opacity: 1; transform: none; margin: 18px auto; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-hint { animation: none; }
  html { scroll-behavior: auto; }
  @view-transition { navigation: none; }
}

/* ---------- Print (Wissensseiten als Handout) ---------- */
@media print {
  body { background: #fff; color: #111; }
  body::after, .nav, .menu, .sticky-cta, .skip-link, .page-hero video, .page-hero img, .scroll-hint, .burger { display: none !important; }
  .js .reveal, .reveal, .reveal-line { opacity: 1 !important; transform: none !important; }
  .section.dark, .check-col, .product-card, .claim, .tile { background: none; border-color: #ccc; }
  .page-hero { min-height: auto; padding-top: 40px; }
  .page-hero::after { display: none; }
  a, .page-title, .display, .kicker, .stat-num, h3 { color: #111 !important; text-shadow: none; }
  p, li, dd, .lead, .note { color: #333 !important; }
}

/* ---------- Mobile ---------- */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .burger { display: flex; }
}
@media (max-width: 600px) {
  .nav { height: 64px; }
  .nav-day { display: none; }
  .sticky-cta { font-size: 0.78rem; padding-right: 44px; }
  .sticky-cta .sub { display: none; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .contact-strip { justify-content: center; text-align: center; }
}

/* ============================================================
   Preloader — Marken-Intro < 1,5 s (Playbook Kap. 4 / 6)
   Nur mit JS sichtbar; gated: Reveals starten erst nach Loader-Fall.
   ============================================================ */
.preloader { display: none; }
html.js .preloader {
  display: grid; place-content: center;
  position: fixed; inset: 0; z-index: 400;
  background: var(--bg);
  transition: opacity .6s var(--ease), visibility .6s;
}
html.js .preloader.is-gone { opacity: 0; visibility: hidden; pointer-events: none; }
.pl-inner { text-align: center; }
.pl-mark {
  width: 62px; height: 62px; margin: 0 auto 22px; display: block;
  opacity: 0; transform: translateY(10px) scale(.6) rotate(-12deg);
  animation: pl-mark .7s var(--ease-spring) .05s forwards;
}
.pl-mark path { fill: none; stroke: var(--gold); stroke-width: 2.2; }
.pl-word {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.6rem, 5vw, 2.4rem); letter-spacing: 0.34em;
  color: var(--ink); padding-left: 0.34em;
  opacity: 0; transform: translateY(12px);
  animation: pl-word .6s var(--ease-spring) .3s forwards;
}
.pl-word span { color: var(--gold); }
.pl-bar {
  height: 2px; width: min(220px, 56vw); margin: 18px auto 16px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
  transform: scaleX(0); transform-origin: left;
  animation: pl-bar .7s var(--ease) .5s forwards;
}
.pl-sub {
  font-family: var(--font-hand); font-size: 1.45rem; color: var(--muted);
  opacity: 0; animation: pl-sub .5s var(--ease) .9s forwards;
}
@keyframes pl-mark { to { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); } }
@keyframes pl-word { to { opacity: 1; transform: translateY(0); } }
@keyframes pl-bar  { to { transform: scaleX(1); } }
@keyframes pl-sub  { to { opacity: 1; } }

/* ============================================================
   Original-Claims-Ticker (Playbook Kap. 6) — wörtliche Marken-Sprache
   ============================================================ */
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--hair-soft);
  background: var(--bg-2);
  padding: 20px 0;
  transform: rotate(-1deg);
  margin: 8vh 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: inline-flex; align-items: center; white-space: nowrap;
  will-change: transform;
  animation: ticker 38s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.05rem, 2.3vw, 1.7rem); letter-spacing: 0.06em;
  color: var(--ink); display: inline-flex; align-items: center; gap: 1.5ch;
  padding: 0 1.5ch;
}
.ticker-item::after {
  content: ""; width: 0.62em; height: 0.62em; flex: none; opacity: 0.85;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 0 L9.6 6.4 L16 8 L9.6 9.6 L8 16 L6.4 9.6 L0 8 L6.4 6.4 Z' fill='%23c9a35c'/%3E%3C/svg%3E") center/contain no-repeat;
}
@keyframes ticker { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .preloader { display: none !important; }
  .pl-mark, .pl-word, .pl-bar, .pl-sub { animation: none !important; opacity: 1; transform: none; }
  .ticker-track { animation: none; justify-content: center; flex-wrap: wrap; white-space: normal; }
  .media-figure .media-frame { transition: none; }
  .atmosphere::before { animation: none; }
}
@media print { .preloader, .ticker, .atmosphere { display: none !important; } }

/* ============================================================
   Mikro-Animationen (Playbook Kap. 4) — Hover-Lifts, Logo-Nick,
   Draw-on, Lightbox, Ken-Burns, Mobile-Menü-Stagger
   ============================================================ */

/* Konsistente Karten-Lifts mit Tiefe */
.tile, .card, .product-card, .gallery-card {
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s var(--ease);
}
.tile:hover, .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px -24px rgba(0, 0, 0, .85);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 38px -26px rgba(0, 0, 0, .75);
  border-color: var(--hair);
}
.gallery-card:hover { transform: translateY(-4px); }

/* Logo-Nick: das „2" zwinkert beim Hover */
.nav-brand .dim, .footer-brand .dim { display: inline-block; transition: transform .35s var(--ease-spring); }
.nav-brand:hover .dim, .footer-brand:hover .dim { transform: rotate(-12deg) scale(1.15); }

/* Draw-on-Unterstreichung unter dem Akzentwort des Seiten-Titels */
.page-title em { position: relative; }
.page-title em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.06em; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0); transform-origin: left;
  animation: draw-underline .9s var(--ease) .55s forwards;
}
@keyframes draw-underline { to { transform: scaleX(1); } }

/* Lightbox: sanftes Fade + Bild-Scale-in */
.lightbox { opacity: 0; transition: opacity .3s var(--ease); }
.lightbox.is-open { opacity: 1; }
.lightbox .lightbox-stage img { transform: scale(.95); opacity: .4; transition: transform .45s var(--ease), opacity .45s var(--ease); }
.lightbox.is-open .lightbox-stage img { transform: scale(1); opacity: 1; }

/* Ken-Burns: Hero-Medien atmen leicht */
.page-hero > video, .page-hero > img {
  animation: kenburns 32s ease-in-out infinite;
}
@keyframes kenburns {
  0%, 100% { transform: scale(1.05) translateY(0); }
  50%      { transform: scale(1.1) translateY(-1.5%); }
}

/* Mobile-Menü: Links staffeln beim Öffnen */
.menu-links a { opacity: 0; transform: translateY(14px); }
.menu:not([hidden]) .menu-links a { animation: menu-in .5s var(--ease) forwards; }
.menu:not([hidden]) .menu-links a:nth-child(1) { animation-delay: .04s; }
.menu:not([hidden]) .menu-links a:nth-child(2) { animation-delay: .08s; }
.menu:not([hidden]) .menu-links a:nth-child(3) { animation-delay: .12s; }
.menu:not([hidden]) .menu-links a:nth-child(4) { animation-delay: .16s; }
.menu:not([hidden]) .menu-links a:nth-child(5) { animation-delay: .20s; }
.menu:not([hidden]) .menu-links a:nth-child(6) { animation-delay: .24s; }
.menu:not([hidden]) .menu-links a:nth-child(7) { animation-delay: .28s; }
.menu:not([hidden]) .menu-links a:nth-child(8) { animation-delay: .32s; }
.menu:not([hidden]) .menu-links a:nth-child(9) { animation-delay: .36s; }
.menu:not([hidden]) .menu-links a:nth-child(10) { animation-delay: .40s; }
.menu:not([hidden]) .menu-links a:nth-child(11) { animation-delay: .44s; }
.menu:not([hidden]) .menu-links a:nth-child(12) { animation-delay: .48s; }
@keyframes menu-in { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .page-title em::after { animation: none; transform: scaleX(1); }
  .page-hero > video, .page-hero > img { animation: none; }
  .menu-links a { opacity: 1; transform: none; }
  .menu:not([hidden]) .menu-links a { animation: none; }
  .lightbox, .lightbox .lightbox-stage img { transition: none; }
}

/* ============================================================
   Mobiloptimierung (Playbook QA: 1280/1060/900/760/560/430)
   Konsolidiert am Dateiende → gewinnt die Kaskade.
   ============================================================ */
@media (max-width: 760px) {
  .section { padding: clamp(56px, 9vh, 96px) var(--pad-x); }
  .page-hero { min-height: clamp(380px, 56vh, 520px); padding-top: 120px; }
  .page-hero.slim { min-height: clamp(260px, 38vh, 360px); }
  .split { gap: 32px; }
  .ticker { margin: 6vh 0; padding: 16px 0; }
  /* Galerie/Grids sicher 1-spaltig, ohne Mindestbreiten-Überlauf */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .product-grid, .step-list, .check-cols, .equip { grid-template-columns: 1fr; }
  .tile-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .cinematic { height: 340vh; }   /* kürzere Scrub-Strecke auf Mobil */
  /* Lange Kicker dürfen umbrechen (z. B. „Umgebung & Materialbewusstsein") */
  .kicker { white-space: normal; letter-spacing: 0.3em; line-height: 1.6; }
  .kicker-row > .kicker:first-child { display: inline; }
  .kicker-row > .kicker:first-child::before { display: inline-block; margin-right: 0.6em; }
  .nav { height: 60px; padding: 0 18px; }
  .nav-day { display: none; }
  .nav-brand { font-size: 14px; letter-spacing: 0.22em; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; padding: 16px 24px; }
  .btn-row { gap: 12px; }
  .lead { font-size: 1.06rem; }
  /* Tap-Targets ≥ 44px */
  .footer-cols a { padding: 9px 0; }
  .menu-meta a { padding: 8px 4px; }
  .accordion summary { padding: 22px 40px 22px 4px; }
  /* Sticky-CTA: Inhalt darüber nicht verdecken */
  body { padding-bottom: 54px; }
  .sticky-cta { font-size: 0.76rem; padding: 11px 44px 11px 16px; }
  .sticky-cta .sub { display: none; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-close { top: 12px; right: 12px; }
  .contact-strip { justify-content: center; text-align: center; }
  /* Halo auf Mobil etwas kompakter */
  .atmosphere::before { width: 130vw; height: 130vw; top: -24vh; }
  /* Foto-Karten weniger Schräglage (vermeidet Rand-Bleed) */
  .media-figure .media-frame { --tilt: -0.8deg; }
}

@media (max-width: 430px) {
  :root { --pad-x: 18px; }
  .reveal-line .rl-text { font-size: clamp(1.5rem, 8vw, 2.2rem); }
  .page-title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .display { font-size: clamp(1.5rem, 7vw, 2.1rem); }
  .ticker-item { font-size: 1rem; }
  .menu-links a { font-size: clamp(1.2rem, 6.5vw, 1.7rem); }
}

/* ============================================================
   Journey-Pfad (Replit-Referenz): die Lernreise als gezeichneter
   Weg — Tag 1 → Meilensteine → HEUTE (Puls) → nächster Fokus.
   Desktop: Serpentine; Mobil: vertikale Timeline.
   ============================================================ */
.journey-path { margin-top: clamp(40px, 7vh, 64px); }
.jp-canvas { position: relative; height: 250px; }
.jp-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.jp-line {
  fill: none;
  stroke: var(--gold-dim);
  stroke-width: 2;
  stroke-dasharray: 7 9;
  stroke-linecap: round;
}
.jp-stations { list-style: none; margin: 0; padding: 0; }
/* Desktop-Koordinaten (Serpentine horizontal) — mobil via Media-Query überschrieben */
.jp-station:nth-child(1) { --x: 5%;    --dy: 150px; }
.jp-station:nth-child(2) { --x: 27.5%; --dy: 80px; }
.jp-station:nth-child(3) { --x: 50%;   --dy: 150px; }
.jp-station:nth-child(4) { --x: 72.5%; --dy: 80px; }
.jp-station:nth-child(5) { --x: 95%;   --dy: 150px; }
.jp-station {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--x);
  width: 170px;
  transform: translateX(-50%);
  text-align: center;
}
.jp-dot {
  position: absolute;
  left: 50%; top: var(--dy);
  width: 14px; height: 14px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 163, 92, 0.16);
}
.jp-dot.todo { background: transparent; border: 2px solid var(--gold-dim); box-shadow: none; }
.jp-dot.today { background: var(--gold-bright); box-shadow: 0 0 0 4px rgba(232, 205, 146, 0.22); }
.jp-dot.today::after {
  content: ""; position: absolute; inset: -7px;
  border-radius: 50%; border: 1.5px solid var(--gold);
  animation: jp-pulse 2.4s var(--ease) infinite;
}
@keyframes jp-pulse {
  0%   { transform: scale(0.55); opacity: 0.9; }
  100% { transform: scale(2);    opacity: 0; }
}
.jp-label { position: absolute; left: 50%; transform: translateX(-50%); width: 170px; }
.jp-station.below .jp-label { top: calc(var(--dy) + 20px); }
.jp-station.above .jp-label { bottom: calc(100% - var(--dy) + 20px); }
.jp-tag {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.jp-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.05em;
  line-height: 1.35;
  color: var(--ink);
}
/* Wipe-in: der Weg zeichnet sich von links nach rechts */
.js .journey-path .jp-canvas {
  clip-path: inset(-24px 100% -24px 0);
  transition: clip-path 1.9s var(--ease) 0.25s;
}
.js .journey-path.in .jp-canvas { clip-path: inset(-24px 0 -24px 0); }

.jp-svg-m { display: none; }
@media (max-width: 760px) {
  /* Mobil: vertikale Serpentine — gleiche Formensprache wie Desktop,
     Punkte sitzen exakt auf der Kurve (Koordinaten = SVG-Pfadpunkte) */
  .jp-canvas { height: 620px; }
  .jp-svg-d { display: none; }
  .jp-svg-m { display: block; }
  .jp-station:nth-child(1) { --x: 32%; --dy: 30px; }
  .jp-station:nth-child(2) { --x: 68%; --dy: 170px; }
  .jp-station:nth-child(3) { --x: 32%; --dy: 310px; }
  .jp-station:nth-child(4) { --x: 68%; --dy: 450px; }
  .jp-station:nth-child(5) { --x: 32%; --dy: 590px; }
  .jp-station { width: 175px; }
  .jp-station .jp-label,
  .jp-station.above .jp-label { top: calc(var(--dy) + 18px); bottom: auto; }
  .jp-station:nth-child(5) .jp-label { top: auto; bottom: calc(100% - var(--dy) + 16px); }
  /* Wipe-in vertikal */
  .js .journey-path .jp-canvas { clip-path: inset(0 -24px 100% -24px); }
  .js .journey-path.in .jp-canvas { clip-path: inset(0 -24px 0 -24px); }
}

@media (prefers-reduced-motion: reduce) {
  .jp-dot.today::after { animation: none; opacity: 0; }
  .js .journey-path .jp-canvas { clip-path: none; transition: none; }
}
@media print { .jp-dot.today::after { display: none; } }

/* ============================================================
   Footer-Newsletter-Zeile (Open-Referenz): eine unterstrichene
   E-Mail-Zeile als ruhiger Waitlist-Einstieg auf jeder Seite.
   ============================================================ */
.footer-news {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 14px 32px;
  padding: 38px 0 6px;
}
.footer-news > label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 14px;
  white-space: nowrap;
}
.fn-row {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--hair);
  transition: border-color var(--t-fast);
  padding-bottom: 6px;
}
.fn-row:focus-within { border-bottom-color: var(--gold); }
.fn-row input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  padding: 8px 2px;
}
.fn-row input:focus { outline: none; }
.fn-row input::placeholder { color: var(--faint); letter-spacing: 0.06em; }
.fn-row button {
  width: 36px; height: 36px;
  flex: none;
  border-radius: 50%;
  background: none;
  border: 1px solid var(--hair);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.fn-row button:hover { background: var(--gold); border-color: var(--gold); color: #0d0b07; transform: translateX(2px); }
.footer-news .form-msg { width: 100%; font-size: 0.85rem; margin-top: 2px; }
.footer-news .fn-note { width: 100%; font-size: 0.74rem; color: var(--faint); }

/* ============================================================
   Ein-Feld-Optin (Hers-Referenz): E-Mail prominent, Rest sekundär
   ============================================================ */
.optin-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.optin-row input[type="email"] {
  flex: 1;
  min-width: 0;
  background: var(--bg);
  border: 1px solid var(--hair);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 1rem;
  padding: 15px 26px;
  transition: border-color var(--t-fast);
}
.optin-row input[type="email"]:focus { outline: none; border-color: var(--gold); }
.optin-row .btn { flex: none; }
.optin-extra { text-align: left; }
.optin-extra summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  transition: color var(--t-fast);
}
.optin-extra summary:hover { color: var(--gold); }
.optin-extra summary::-webkit-details-marker { display: none; }
.optin-extra summary::before { content: "+"; color: var(--gold); font-size: 1rem; }
.optin-extra[open] summary::before { content: "–"; }
.optin-extra .optin-extra-body { margin-top: 14px; }
@media (max-width: 600px) {
  .optin-row { flex-direction: column; }
  .optin-row .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   Bento-Grid (/bio/, Bento-Referenz) — Link-in-Bio als Kachelfeld
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: clamp(28px, 5vh, 44px);
  text-align: left;
}
@media (min-width: 760px) { .bento { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 150px;
  padding: 24px 22px;
  border: 1px solid var(--hair-soft);
  background: var(--bg-2);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .4s var(--ease), box-shadow .5s var(--ease);
}
a.bento-card:hover { transform: translateY(-4px); border-color: var(--hair); box-shadow: 0 16px 36px -24px rgba(0,0,0,.8); }
.bento-card .b-kicker {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.bento-card h2, .bento-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.bento-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }
.bento-card .tile-go { margin-top: auto; }
.bento-card.b-hero {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 300px;
  justify-content: flex-end;
  isolation: isolate;
}
.bento-card.b-hero > img {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.55;
}
.bento-card.b-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(5,5,5,.15), rgba(5,5,5,.82));
}
.bento-card.b-hero h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); }
.bento-card.b-wide { grid-column: span 2; }
.bento-card.b-photo { padding: 0; min-height: 220px; justify-content: flex-end; isolation: isolate; }
.bento-card.b-photo img { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; object-fit: cover; }
.bento-card.b-photo figcaption {
  position: relative;
  padding: 18px 20px;
  background: linear-gradient(180deg, transparent, rgba(5,5,5,.88) 45%);
  font-family: var(--font-hand);
  font-size: 1.2rem;
  color: var(--ink);
}
.bento-card.b-photo figcaption .todo-note { font-family: var(--font-ui); font-size: 0.7rem; display: block; }
.bento-card.b-gold { background: linear-gradient(160deg, rgba(201,163,92,.16), rgba(201,163,92,.05)); border-color: var(--hair); }
.bento-day {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--gold-bright);
}

@media (prefers-reduced-motion: reduce) {
  .page-hero::before { animation: none; }
}

/* ============================================================
   Werk-Marquee (Start): driftender Bildstreifen der Hommage
   ============================================================ */
.werk-marquee {
  overflow: hidden;
  padding: clamp(40px, 7vh, 64px) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.wm-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  white-space: nowrap;
  will-change: transform;
  animation: ticker 70s linear infinite;
}
.werk-marquee:hover .wm-track { animation-play-state: paused; }
.wm-item {
  display: block;
  flex: none;
  height: clamp(130px, 19vw, 210px);
  overflow: hidden;
  border: 1px solid var(--hair-soft);
  transition: border-color var(--t-fast), transform .5s var(--ease);
}
.wm-item:hover { border-color: var(--gold); transform: translateY(-4px); }
.wm-item img { height: 100%; width: auto; display: block; }
.wm-caption {
  text-align: center;
  margin-top: 18px;
}

/* ============================================================
   „Weiter geht's" — Seitenende-Navigation (New-Yorker-Up-Next)
   ============================================================ */
.next-page {
  display: block;
  margin: clamp(40px, 8vh, 80px) var(--pad-x) 0;
  padding: clamp(36px, 6vh, 56px) 0;
  border-block: 1px solid var(--hair-soft);
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: border-color .4s var(--ease);
}
.next-page:hover { border-color: var(--hair); }
.np-kicker {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.np-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 5.4vw, 3.6rem);
  letter-spacing: 0.05em;
  line-height: 1.15;
}
.np-title .np-arr {
  display: inline-block;
  color: var(--gold);
  transition: transform .4s var(--ease);
}
.next-page:hover .np-arr { transform: translateX(10px); }
.np-sub {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
  color: var(--muted);
}

/* ============================================================
   Riesen-Wortmarke im Footer (Open-Referenz) — Outline-Letter
   ============================================================ */
.site-footer { overflow: hidden; }
.footer-giant {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.2rem, 12.5vw, 11.5rem);
  letter-spacing: 0.08em;
  line-height: 0.95;
  text-align: center;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 163, 92, 0.26);
  margin-bottom: clamp(30px, 5vh, 56px);
}
@supports not (-webkit-text-stroke: 1px black) {
  .footer-giant { color: rgba(201, 163, 92, 0.12); }
}

/* ============================================================
   Scroll-Fortschritt — Gold-Haarlinie am oberen Rand
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  z-index: 130;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .wm-track { animation: none; }
  .werk-marquee { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
  .next-page:hover .np-arr { transform: none; }
}
@media print {
  .werk-marquee, .next-page, .scroll-progress, .footer-giant { display: none !important; }
}

/* ============================================================
   FAQ-Split (Hers-Referenz): Sticky-Karten links, Antworten rechts
   ============================================================ */
.faq-split { display: grid; gap: clamp(24px, 3.5vw, 48px); align-items: start; margin-top: clamp(28px, 4vh, 40px); }
@media (min-width: 920px) { .faq-split { grid-template-columns: 320px 1fr; } }
.faq-aside { display: grid; gap: 16px; }
@media (min-width: 920px) { .faq-aside { position: sticky; top: 100px; } }
@media (max-width: 919px) { .faq-aside { order: 2; } }
.faq-aside .bento-card { min-height: 0; }
.faq-aside .bento-card h2 { font-size: 1.05rem; }
.faq-aside .btn.small { justify-self: start; }

/* ============================================================
   Socials: Line-Icons auf den Kanal-Kacheln
   ============================================================ */
.tile-icon { display: block; margin-bottom: 4px; }
.tile-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.tile:hover .tile-icon svg { stroke: var(--gold-bright); }

/* ============================================================
   „Mehr aus der Hommage" — Werkseiten-Reihe (HODINKEE-Related)
   ============================================================ */
.more-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 22px);
  margin-top: clamp(24px, 4vh, 36px);
}
.mw-item { display: block; text-decoration: none; color: inherit; }
.mw-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--hair-soft);
  transition: border-color var(--t-fast), transform .5s var(--ease);
}
.mw-item:hover img { border-color: var(--gold); transform: translateY(-4px); }
.mw-item span {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  color: var(--muted);
}
.mw-item:hover span { color: var(--ink); }

/* ============================================================
   Mobile-Veredelung: KI-Glätte dämpfen, Ruhe statt Bewegung
   ============================================================ */
@media (max-width: 760px) {
  /* Ken-Burns aus — statische Poster wirken hochwertiger als zoomende KI-Loops */
  .page-hero > video, .page-hero > img { animation: none; }
  /* KI-Look dämpfen: etwas entsättigen, Kontrast anheben — wirkt fotografischer */
  .page-hero > img, .page-hero > video, .bento-card.b-hero > img {
    filter: saturate(0.9) contrast(1.06) brightness(0.97);
  }
  .cinematic canvas { filter: saturate(0.92) contrast(1.05); }
  /* Mehr Filmkorn auf kleinen Screens — bricht die KI-Glätte */
  body::after { opacity: 0.085; }
}

/* ============================================================
   Video-Galerien (Journey/Arbeiten — echtes Trainingsmaterial)
   ============================================================ */
.lightbox-stage video {
  width: 100%;
  height: auto;
  max-width: min(92vw, 1100px);
  max-height: 72vh;
  border: 1px solid var(--hair-soft);
  background: #000;
}
@media (max-width: 600px) {
  .lightbox { padding: 64px 12px 18px; }
  .lightbox-stage img, .lightbox-stage video { max-width: 96vw; max-height: 58vh; }
  .lb-count { top: 22px; left: 16px; }
  .lb-prev, .lb-next { width: 42px; height: 42px; }
  .lightbox-caption { padding-top: 14px; }
  .lightbox-caption p { font-size: 0.85rem; }
}
.video-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.video-grid .gallery-frame { aspect-ratio: 16 / 9; }
.video-grid .gallery-frame img { width: 100%; height: 100%; object-fit: cover; }
.play-badge {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(242, 239, 233, 0.85);
  background: rgba(5, 5, 5, 0.45);
  backdrop-filter: blur(4px);
  pointer-events: none;
  transition: transform var(--t-fast), background var(--t-fast);
}
.play-badge::after {
  content: "";
  position: absolute;
  left: 53%; top: 50%;
  transform: translate(-50%, -50%);
  border-left: 16px solid var(--gold-bright);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.gallery-card:hover .play-badge { transform: translate(-50%, -50%) scale(1.08); background: rgba(5, 5, 5, 0.65); }
.gallery-meta .g-badges { display: inline-flex; gap: 8px; margin-left: 10px; vertical-align: middle; }
.video-grid .gallery-meta p { display: block; -webkit-line-clamp: 2; }

/* Motiv-Studien: Stil-Label */
.gallery-meta .g-style {
  display: block;
  margin-top: 4px;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* Lightbox-Zähler */
.lb-count {
  position: absolute;
  top: 26px; left: 26px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  color: var(--faint);
}
