/* ============================================================
   bemine jewellery — Landingpage (ohne Shop)
   Welt geerbt aus bemine_web: Bold-Uppercase-Display, Pill-Buttons,
   Ticker-/Marquee-Bänder, flache Kacheln — in einer ruhigen Farbwelt
   aus Off-White, Ink, Greige, Pfirsich und Braun (s. :root).
   Ein Master-Grid regiert die Seite (.shell / .split).
   Komposition: Kapitel-Bogen — 01 Mine · 02 Schmuck · 03 Wedding ·
   04 be.rmanent · 05 Kontakt, geführt von der Kapitelleiste (.chapter-rail).
   ============================================================ */

:root {
  --bg: #fcfbf9;
  --surface: #ffffff;
  --band: #f5f2ec;
  --band-deep: #eae6dd;
  --blush: #c0b9b8;
  --blush-soft: #f7e9de;
  --line: #e7e3da;
  --line-strong: #c9c4b9;
  --ink: #212121;
  --ink-mid: #4b4945;
  --ink-soft: #636262;
  --gold: #c0b9b8;
  --gold-deep: #644d3e;
  --gold-ink: #644d3e;
  --cream-text: #fcfbf9;

  --font-display: 'Bricolage Grotesque', 'Arial Narrow', sans-serif;
  --font-body: 'Jost', system-ui, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  --space-section: clamp(4rem, 9vw, 8.5rem);
  --space-block: clamp(2rem, 4vw, 3.5rem);
  --shell-max: 1480px;
  --shell-pad: clamp(1.25rem, 4vw, 3.5rem);
  /* Feste Ticker-Höhe — nur so kann das Hero exakt den Rest des
     Bildschirms füllen (calc unten), ohne weißen Rand darunter. */
  --ticker-h: 2.3rem;
  /* Höhe der Kapitelleiste — Anker scrollen um sie versetzt. */
  --rail-h: 3.4rem;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --speed: 0.4s;
}

/* ── Reset & Grundfläche ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.65;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}

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

[hidden] { display: none !important; }

a { color: inherit; }

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* Browser-Flächen tragen die Farbwelt mit */
::selection { background: var(--blush-soft); color: var(--ink); }

* {
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 99px; border: 2px solid var(--bg); }
::-webkit-scrollbar-track { background: transparent; }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip-Link: unsichtbar, bis die Tastatur ihn braucht — dann als
   Ink-Pill über dem Ticker. */
.skip-link {
  position: fixed;
  top: 0.6rem; left: 0.6rem;
  z-index: 120;
  background: var(--ink);
  color: var(--cream-text);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  transform: translateY(calc(-100% - 1rem));
}
.skip-link:focus-visible {
  transform: none;
  outline-color: var(--cream-text);
}

/* ── Master-Grid ───────────────────────────────────────────── */
.shell {
  max-width: var(--shell-max);
  margin-inline: auto;
  padding-inline: var(--shell-pad);
}

/* ── Typografie ────────────────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

.display--xl { font-size: clamp(2.55rem, 7vw, 5.75rem); font-weight: 800; }
.display--lg { font-size: clamp(1.9rem, 4.6vw, 3.6rem); }
.display--md { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }

.accent-line {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
}

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink-mid);
  max-width: 34em;
  text-wrap: pretty;
}

p { text-wrap: pretty; }

/* ── Buttons: Pills ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
  padding: 0.95rem 2rem;
  border: 1px solid var(--ink);
  transition: background var(--speed) var(--ease-out),
              color var(--speed) var(--ease-out),
              border-color var(--speed) var(--ease-out),
              transform 0.18s var(--ease-out);
}
.btn:active { transform: scale(0.97); }

.btn--solid { background: var(--ink); color: var(--cream-text); }
.btn--solid:hover { background: transparent; color: var(--ink); }

.btn--outline { background: transparent; color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream-text); }

.btn--cream { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn--cream:hover { background: transparent; color: var(--cream-text); border-color: var(--cream-text); }

.btn--small { padding: 0.65rem 1.4rem; font-size: 0.72rem; }

.text-link {
  /* Tippfläche nach oben erweitert, ohne das Schriftbild zu bewegen —
     der Unterstrich (border-bottom) bleibt an seinem Platz. */
  display: inline-block;
  padding-top: 0.5rem;
  margin-top: -0.5rem;
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
  transition: border-color var(--speed), color var(--speed);
}
.text-link:hover { color: var(--gold-ink); border-color: var(--gold-ink); }
/* Im Fließtext der Rechtsseiten läuft der Link in der Satzgröße mit —
   keine Versalien (E-Mail-Adressen und URLs bleiben lesbar). */
.prose .text-link {
  display: inline;
  padding-top: 0;
  margin-top: 0;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: inherit;
  padding-bottom: 0.1rem;
}

/* ── Announcement-Ticker ───────────────────────────────────── */
.ticker {
  background: var(--ink);
  color: var(--cream-text);
  overflow: hidden;
  height: var(--ticker-h);
  display: flex;
  align-items: center;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-roll 38s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__seq {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding-inline: 1.4rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker__item .icon { width: 11px; height: 11px; opacity: 0.85; }
@keyframes ticker-roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* Großes Marquee-Band */
.marquee {
  overflow: hidden;
  padding-block: clamp(1.2rem, 2.5vw, 2rem);
  border-block: 1px solid var(--line);
  background: var(--bg);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: ticker-roll 46s linear infinite;
}
.marquee__seq { display: flex; align-items: center; flex-shrink: 0; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.6rem);
  padding-inline: clamp(1.5rem, 3vw, 2.6rem);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
}
.marquee__item .accent-line { color: var(--gold-deep); font-weight: 500; }
.marquee__item .icon { width: clamp(18px, 2.2vw, 26px); height: auto; color: var(--gold); }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; }
}

/* ── Header ────────────────────────────────────────────────── */
/* Der Header läuft mit der Seite mit (kein Sticky): Er liegt im
   Hero-Bild und scrollt mit ihm aus dem Blick — die Navigation
   übernimmt danach die Kapitelleiste, nach oben führt .to-top. */
.site-header {
  position: relative;
  z-index: 60;
  background: transparent;
}
.site-header__bar {
  display: flex;
  justify-content: space-between;
  /* Unten ausgerichtet: die Icons sitzen auf der Höhe der
     Logo-Unterzeile „MADE TO SPARKLE YOUR LIFE“. */
  align-items: flex-end;
  gap: 1rem;
  padding-block: 1rem 1.4rem;
}

.site-header__logo { display: block; }
.site-header__logo img { height: 58px; width: auto; }

.site-header__actions {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
}
/* Die runden Icon-Buttons sind höher als eine Textzeile: Der Versatz
   bringt ihre Mitte auf dieselbe Linie wie die Navigation. */
.site-header__actions .header-icon-btn { margin-bottom: -14px; }
.header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 999px;
  transition: background var(--speed);
}
.header-icon-btn:hover { background: var(--band); }
.header-icon-btn .icon { width: 20px; height: 20px; }

/* Header im Bild: Der Slot belegt keine Höhe — das Hero-Bild reicht
   bis unter den Ticker, der Header liegt darin. Er ist WEISS (User-
   Vorgabe); kein Schleier über dem Foto — der weiche dunkle Schatten
   liegt an den Zeichen selbst und hält Logo und Icons frei. */
.header-slot--overlay {
  position: relative;
  height: 0;
  z-index: 60;
}
.header-slot--overlay > .site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  color: var(--cream-text);
}
.header-slot--overlay .site-header__logo img {
  filter: drop-shadow(0 1px 4px rgba(18, 18, 18, 0.5));
}
.header-slot--overlay .header-icon-btn .icon {
  filter: drop-shadow(0 1px 3px rgba(18, 18, 18, 0.65));
}
.header-slot--overlay .header-icon-btn:hover { background: rgba(252, 251, 249, 0.18); }
.header-slot--overlay :focus-visible { outline-color: var(--cream-text); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--band);
}
.hero__media,
.hero__media picture,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1.6rem;
  /* Füllt den Bildschirm bis zur Unterkante — abzüglich Ticker. */
  min-height: calc(100dvh - var(--ticker-h));
  max-width: 620px;
  padding-block: clamp(8rem, 20vh, 13rem) clamp(4.5rem, 9vh, 6.5rem);
}
.hero__content .display .accent-line { display: block; font-size: 0.62em; margin-top: 0.18em; }

/* Weiße Hero-Schrift (User-Vorgabe): kein Verlauf auf dem Foto — der
   weiche Dunkel-Schatten liegt an den Buchstaben und mildert die helle
   Wand. Am Handy steht der Text unter dem Bild und dreht zurück auf Ink. */
.hero--dark .hero__content {
  color: var(--cream-text);
  text-shadow: 0 1px 3px rgba(18, 18, 18, 0.5), 0 0 16px rgba(18, 18, 18, 0.35);
}
.hero--dark .hero__content .lede { color: rgba(252, 251, 249, 0.92); }
.hero--dark .hero-ctas .btn { text-shadow: none; }
.hero--dark .btn--outline { color: var(--cream-text); border-color: var(--cream-text); }
.hero--dark .btn--outline:hover { background: var(--cream-text); color: var(--ink); }
/* Der Cream-Hover stülpt zu Weiß-auf-Foto um — auf der hellen Wand braucht
   er dieselbe Zeichen-Milderung wie der Header im Bild (Schatten am
   Element, kein Schleier). */
.hero--dark .btn--cream:hover {
  color: var(--cream-text);
  border-color: var(--cream-text);
  filter: drop-shadow(0 1px 3px rgba(18, 18, 18, 0.55));
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* Authored moment: Hero-Zeilen steigen einmal orchestriert auf */
.rise {
  opacity: 0;
  transform: translateY(26px);
  animation: rise 0.9s var(--ease-out) forwards;
}
.rise:nth-child(2) { animation-delay: 0.12s; }
.rise:nth-child(3) { animation-delay: 0.24s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .rise { animation: none; opacity: 1; transform: none; }
}

/* ── Kapitelleiste ─────────────────────────────────────────── */
/* Tafel-Disziplin: vier gelinte Spalten, die Spalten rühren sich
   nie — nur ihr Zustand. Rastet unter dem Hero ein und führt mit. */
.chapter-rail {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-block: 1px solid var(--line);
}
.chapter-rail__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.chapter-rail__row a {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  min-height: var(--rail-h);
  align-content: center;
  align-items: center;
  padding-block: 0.55rem;
  text-decoration: none;
  border-left: 1px solid var(--line);
  padding-inline: clamp(0.8rem, 1.6vw, 1.6rem);
  transition: color var(--speed), background var(--speed);
}
.chapter-rail__row a:first-child { border-left: none; padding-left: 0; }
.chapter-rail__no {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  font-variant-numeric: tabular-nums;
}
.chapter-rail__name {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(0.85rem, 1.3vw, 1.05rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  padding-bottom: 0.15rem;
}
.chapter-rail__name::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -0.1rem;
  height: 2px;
  background: var(--gold-deep);
  transition: right var(--speed) var(--ease-out);
}
.chapter-rail__row a:hover .chapter-rail__name { color: var(--gold-ink); }
.chapter-rail__row a.is-active .chapter-rail__name { color: var(--gold-ink); }
.chapter-rail__row a.is-active .chapter-rail__name::after { right: 0; }

/* Anker scrollen um Leiste versetzt an, damit der Kapitelkopf
   nicht unter der sticky Leiste verschwindet. */
.chapter { scroll-margin-top: calc(var(--rail-h) + 0.5rem); }

/* ── Sektionen ─────────────────────────────────────────────── */
.section { padding-block: var(--space-section); }
/* Direkt unter einem .page-head: der Kopf bringt den Abstand schon mit. */
.section--flush-top { padding-top: 0; }
.section--band { background: var(--band); }
.section--blush { background: var(--blush-soft); }
.section--ink { background: var(--ink); color: var(--cream-text); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: var(--space-block);
}
.section-head > * { min-width: 0; max-width: 100%; }
.section-head .lede { margin-top: 0.8rem; }

/* ── Split-Banner ──────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}
.split__media { grid-column: span 6; }
.split__media img {
  width: 100%;
  border-radius: 2px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.split__media--wide img { aspect-ratio: 4 / 3; }
.split__body {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
  padding-block: clamp(1rem, 3vw, 2rem);
}
.split--flip .split__media { order: 2; }
.split--flip .split__body { order: 1; }
/* Steiermark-Split am Ende des Schmuck-Kapitels */
.split--edition { margin-top: var(--space-section); }
/* Die Herzerlstraße liegt im unteren Bilddrittel — der Ausschnitt hält sie im Rahmen. */
.split--edition .split__media img { object-position: 50% 78%; }

/* ── Trust-Reihe ───────────────────────────────────────────── */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.trust--chapter { margin-top: var(--space-section); }
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
  padding-inline: clamp(0.5rem, 2vw, 2rem);
}
.trust__item .icon { width: 34px; height: 34px; color: var(--gold-deep); }
.trust__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}
.trust__text { font-size: 0.92rem; color: var(--ink-mid); max-width: 30ch; }

/* ── Werkstatt-Schau: Präsentation statt Katalog ───────────── */
/* Ein redaktionelles Mosaik ohne Namen, Badges oder Pro-Stück-CTA:
   das Video läuft leise (Guard in main.js), Bilder zoomen im Hover. */
.schau {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.9rem, 1.5vw, 1.5rem);
}
.schau__item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.schau__item img,
.schau__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.schau__item img { transition: transform 0.7s var(--ease-out); }
.schau__item:hover img { transform: scale(1.05); }

.schau__item--video { grid-column: 1 / 5; grid-row: 1 / 3; }
.schau__item--lead  { grid-column: 5 / 13; grid-row: 1; aspect-ratio: 3 / 2; }
.schau__item--a     { grid-column: 5 / 9;  grid-row: 2; aspect-ratio: 4 / 3; }
.schau__item--b     { grid-column: 9 / 13; grid-row: 2; aspect-ratio: 4 / 3; }
.schau__item--c     { grid-column: 1 / 7;  grid-row: 3; aspect-ratio: 3 / 2; }
.schau__item--d     { grid-column: 7 / 13; grid-row: 3; aspect-ratio: 3 / 2; }

/* Ehrliche Fußnote unter der Schau */
.schau-note {
  margin-block: var(--space-block) 1.4rem;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-ink);
  max-width: 44em;
}

.credit {
  font-size: 0.72rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}

/* ── Wedding-Kapitel (Ink-Band) ────────────────────────────── */
.section--ink .lede { color: rgba(252, 251, 249, 0.88); }
.section--ink .btn--outline { color: var(--cream-text); border-color: var(--cream-text); }
.section--ink .btn--outline:hover { background: var(--cream-text); color: var(--ink); }
.section--ink .trust__item .icon { color: var(--blush); }
.section--ink .trust__text { color: rgba(252, 251, 249, 0.8); }
.section--ink :focus-visible { outline-color: var(--cream-text); }

/* Ehrlicher Hinweis: Hochzeitsbilder folgen */
.chapter-aside {
  margin-top: var(--space-block);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--blush-soft);
  max-width: 44em;
}
.chapter-aside a {
  color: inherit;
  text-underline-offset: 3px;
  text-decoration-color: var(--blush);
}
.chapter-aside a:hover { text-decoration-color: currentColor; }

/* Dieselbe ehrliche Fußnote auf hellem Grund (be.rmanent-Kapitel) */
.chapter-aside--light { color: var(--gold-ink); margin-top: 1.2rem; }
.chapter-aside--light a { text-decoration-color: var(--gold-deep); }

/* ── Kontakt-Kapitel ───────────────────────────────────────── */
.contact-line {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

/* ── Gut zu wissen (FAQ im Kontakt-Kapitel) ────────────────── */
/* Gelinte Zeilen wie überall in der Welt: keine Karten, nur
   Hairlines. Der Chevron ist Zustandsanzeige, kein Entrance. */
.faq { margin-top: var(--space-section); }
.faq__intro {
  margin-top: 1.2rem;
  color: var(--ink-mid);
  max-width: 44em;
  text-wrap: pretty;
}
.faq__list {
  margin-top: var(--space-block);
  border-top: 1px solid var(--line-strong);
}
.faq__item {
  border-bottom: 1px solid var(--line-strong);
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  padding-block: 1.05rem;
  font-weight: 500;
  transition: color var(--speed);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold-ink); }
.faq__item summary .icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--gold-deep);
  transition: transform var(--speed) var(--ease-out);
}
.faq__item[open] summary .icon { transform: rotate(180deg); }
.faq__answer { padding-bottom: 1.2rem; }
.faq__answer p { color: var(--ink-mid); max-width: 44em; }
@media (prefers-reduced-motion: reduce) {
  .faq__item summary .icon { transition: none; }
}

/* ── Instagram-Band ────────────────────────────────────────── */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 1.5vw, 1.4rem);
  margin-top: var(--space-block);
}
.insta-grid a {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 1;
}
.insta-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.insta-grid a:hover img { transform: scale(1.05); }
.insta-grid a::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(33, 33, 33, 0.3), transparent 45%);
  opacity: 0;
  transition: opacity var(--speed);
}
.insta-grid a:hover::after { opacity: 1; }

/* ── Menü-Drawer (Burger im Header) ────────────────────────── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(33, 33, 33, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--speed);
}
.menu-overlay.is-open { opacity: 1; pointer-events: auto; }

.menu-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 95;
  width: min(360px, 88vw);
  background: var(--bg);
  transform: translateX(102%);
  visibility: hidden;
  transition: transform 0.45s var(--ease-out), visibility 0s linear 0.45s;
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.6rem 2rem;
  box-shadow: -20px 0 60px rgba(33, 33, 33, 0.18);
}
.menu-drawer.is-open {
  transform: none;
  visibility: visible;
  transition: transform 0.45s var(--ease-out);
}
.menu-drawer__head { display: flex; justify-content: flex-end; margin-bottom: 1rem; }
.menu-drawer nav { display: grid; gap: 0.3rem; }
.menu-drawer nav a {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.6rem;
  text-decoration: none;
  padding-block: 0.55rem;
  border-bottom: 1px solid var(--line);
  transition: color var(--speed);
}
.menu-drawer nav a:hover { color: var(--gold-ink); }
.menu-drawer nav a span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  font-variant-numeric: tabular-nums;
}
.menu-drawer__foot {
  margin-top: auto;
  display: grid;
  gap: 1.1rem;
  justify-items: start;
  padding-top: 2rem;
}
.menu-drawer__legal { display: flex; gap: 1.4rem; }
.menu-drawer__legal a {
  display: inline-block;
  padding-block: 0.35rem;
  margin-block: -0.35rem;
  font-size: 0.82rem;
  font-weight: 300;
  text-decoration: none;
  color: var(--ink-mid);
  transition: color var(--speed);
}
.menu-drawer__legal a:hover { color: var(--gold-ink); }
@media (prefers-reduced-motion: reduce) {
  .menu-drawer { transition: visibility 0s linear var(--speed); transform: none; opacity: 0; pointer-events: none; }
  .menu-drawer.is-open { transition: none; opacity: 1; pointer-events: auto; }
}

/* ── Zurück nach oben ──────────────────────────────────────── */
.to-top {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2.2rem);
  bottom: clamp(1rem, 2.5vw, 2.2rem);
  z-index: 55;
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream-text);
  box-shadow: 0 12px 30px rgba(33, 33, 33, 0.22);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--speed), transform var(--speed) var(--ease-out),
              background var(--speed);
}
.to-top.is-visible {
  opacity: 1;
  transform: none;
}
.to-top:hover { background: var(--gold-deep); }
.to-top .icon { width: 20px; height: 20px; }
@media (prefers-reduced-motion: reduce) {
  .to-top { transition: opacity var(--speed); transform: none; }
}

/* ── Footer (Greige, hell) ─────────────────────────────────── */
.site-footer {
  background: var(--band-deep);
  color: var(--ink);
  margin-top: var(--space-section);
}
/* Direkt an eine Band-Sektion angedockt (Kontakt-Kapitel, Rechtsseiten). */
.site-footer--flush { margin-top: 0; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.site-footer__brand p { color: var(--ink-mid); font-size: 0.95rem; max-width: 30em; }
.site-footer__wordmark {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
}
.site-footer__wordmark span { color: var(--gold-deep); }
.site-footer__wordmark .icon {
  width: 0.55em; height: 0.55em;
  display: inline-block;
  vertical-align: baseline;
}
.site-footer__claim {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 0.5rem;
  margin-bottom: 1.2rem;
}
.site-footer h3 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; display: grid; gap: 0.55rem; }
.site-footer ul a {
  /* Tippfläche ohne sichtbare Layout-Änderung (Padding gegen Margin). */
  display: inline-block;
  padding-block: 0.3rem;
  margin-block: -0.3rem;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  transition: color var(--speed);
}
.site-footer ul a:hover { color: var(--gold-deep); }
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-top: 1px solid rgba(33, 33, 33, 0.12);
  padding-block: 1.4rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.site-footer__bottom .icon { width: 12px; height: 12px; color: var(--gold-deep); vertical-align: -1px; }
/* Rechtsseiten: Fußzeile ohne Trennlinie (kein Spalten-Grid darüber). */
.site-footer__bottom--plain { border-top: none; }

/* ── Rechtsseiten ──────────────────────────────────────────── */
.page-head {
  padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 3vw, 2.5rem);
}
.page-head .lede { margin-top: 1rem; }

.prose {
  max-width: 68ch;
  display: grid;
  gap: 1.1rem;
}
.prose h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-top: 1.2rem;
}
.prose ul { padding-left: 1.2rem; display: grid; gap: 0.4rem; color: var(--ink-mid); }
.prose p { color: var(--ink-mid); }
.prose strong { font-weight: 500; color: var(--ink); }
.placeholder-note {
  background: var(--blush-soft);
  border: 1px dashed var(--blush);
  border-radius: 2px;
  padding: 0.9rem 1.2rem;
  font-size: 0.88rem;
  color: var(--ink-mid);
}

/* ── Responsive ────────────────────────────────────────────── */


@media (max-width: 860px) {
  /* Header im Bild, kompakt: Logo bleibt links, Icons rechts. */
  .site-header__bar { padding-block: 0.8rem 1.2rem; }
  .site-header__logo img { height: 46px; }
  .site-header__actions .header-icon-btn { margin-bottom: -15px; }

  /* Hero gestapelt: Bild oben, Text darunter auf Off-White. */
  .hero { background: var(--bg); }
  .hero__media,
  .hero__media picture,
  .hero__media img { position: relative; inset: auto; }
  .hero__media img { aspect-ratio: 4 / 3.4; height: auto; width: 100%; object-fit: cover; object-position: 62% 30%; }
  .hero__content {
    min-height: 0;
    padding-block: 2rem 2.6rem;
    max-width: none;
  }
  /* Gestapelt steht der Text auf Off-White — Farben und Buttons drehen
     zurück auf Ink (der weiße Header bleibt im Bild darüber). */
  .hero--dark .hero__content { color: var(--ink); text-shadow: none; }
  .hero--dark .hero__content .lede { color: var(--ink-mid); }
  .hero--dark .btn--outline { color: var(--ink); border-color: var(--ink); }
  .hero--dark .btn--outline:hover { background: var(--ink); color: var(--cream-text); }
  .hero--dark .btn--cream { background: var(--ink); color: var(--cream-text); border-color: var(--ink); }
  .hero--dark .btn--cream:hover { background: transparent; color: var(--ink); border-color: var(--ink); filter: none; }

  /* 5 Kapitel: gleich breite Spalten sprengen schmale Screens —
     inhaltsbreite Spalten, über die volle Breite verteilt. */
  .chapter-rail__row { grid-template-columns: repeat(5, auto); justify-content: space-between; }
  .chapter-rail__row a { flex-direction: column; align-items: flex-start; gap: 0.1rem; padding-block: 0.5rem; }
  .chapter-rail__no { font-size: 0.62rem; }
  .chapter-rail__name { font-size: 0.8rem; }

  .split__media, .split__body { grid-column: 1 / -1; }
  .split--flip .split__media { order: 0; }
  .split--flip .split__body { order: 1; }

  .trust { grid-template-columns: 1fr; gap: 2.2rem; }
  /* Zeilen explizit gepinnt: das vollbreite Lead-Bild liegt im DOM zwischen
     Video und den Hochkant-Kacheln — Auto-Placement reißt sonst Löcher.
     Lead öffnet, das Video läuft als Atempause neben A/B in der Mitte. */
  .schau { grid-template-columns: 1fr 1fr; }
  .schau__item--lead  { grid-column: 1 / -1; grid-row: 1; aspect-ratio: 3 / 2; }
  .schau__item--video { grid-column: 1; grid-row: 2 / 4; }
  .schau__item--a { grid-column: 2; grid-row: 2; aspect-ratio: 4 / 5; }
  .schau__item--b { grid-column: 2; grid-row: 3; aspect-ratio: 4 / 5; }
  .schau__item--c { grid-column: 1 / -1; grid-row: 4; aspect-ratio: 3 / 2; }
  .schau__item--d { grid-column: 1 / -1; grid-row: 5; aspect-ratio: 3 / 2; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid a:nth-child(3) { display: none; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .btn { padding: 0.85rem 1.45rem; font-size: 0.74rem; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .chapter-rail__row a { padding-inline: clamp(0.35rem, 1.6vw, 1rem); }
  .chapter-rail__row a:first-child { padding-left: 0; }
  .chapter-rail__name { font-size: 0.74rem; }
}

/* Sehr schmale Screens: 5 Kapitel brauchen die kleinste Stufe. */
@media (max-width: 374px) {
  .chapter-rail__row a { padding-inline: 0.3rem; }
  .chapter-rail__name { font-size: 0.64rem; letter-spacing: 0; }
  .chapter-rail__no { font-size: 0.54rem; }
}

/* ── Prosa-Stapel: mehrere Absätze im Split-Body enger setzen ─ */
.prose-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 34em;
  color: var(--ink-mid);
}
.prose-stack p { margin: 0; }
.prose-stack em {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.08em;
  color: var(--ink);
}
.prose-stack__sign { margin-top: 0.3rem; color: var(--ink); }
