/* ==========================================================================
   CoCoNo Bar — Kronach
   Dunkel, warm, kerzenbeleuchtet. Das goldene O führt.
   Das Flat-Lay-Video liegt fixiert über der GANZEN Seite; der Inhalt
   schwebt transparent (Glas) darüber. Basis: CoCoNo-Bar/style.md.
   ========================================================================== */

/* ─── Custom Properties (aus style.md) ──────────────────────────── */
:root {
  /* — Farben — */
  --c-gold:      #E9A93B;
  --c-espresso:  #1C130E;
  --c-roast:     #2A1C14;
  --c-cream:     #F4EBDA;
  --c-paprika:   #BE4A2E;
  --c-olive:     #75804E;
  --c-ink:       #14100D;

  --c-bg:        var(--c-espresso);
  --c-surface:   var(--c-roast);
  --c-text:      var(--c-cream);
  --c-text-soft: color-mix(in srgb, var(--c-cream) 78%, transparent);
  --c-border:    color-mix(in srgb, var(--c-cream) 14%, transparent);

  /* — Typografie — */
  --f-display: "Poppins", sans-serif;
  --f-accent:  "Fraunces", serif;
  --f-body:    "Figtree", sans-serif;
  --f-util:    "Figtree", sans-serif;

  /* — Spacing-Skala — */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;
  --sp-xl:  8rem;
  --sp-2xl: 12rem;

  /* — Radius-Skala (weich, echo der runden Logo-Formen) — */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   28px;
  --r-pill: 999px;

  /* — Transition-Skala — */
  --t-fast: 160ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 520ms cubic-bezier(0.22, 1, 0.36, 1);

  /* — Layout — */
  --content-max: 1240px;
  --shadow-lift: 0 18px 50px -12px rgba(0, 0, 0, 0.55);

  /* — Ergänzungen — */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 5rem;

  /* — Glas-Panel über dem Video — */
  --glass-bg:   color-mix(in srgb, var(--c-espresso) 68%, transparent);
  --glass-blur: blur(16px) saturate(1.1);
}

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

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

html, body {
  overflow-x: clip; /* clip statt hidden: kein Scroll-Container → fixed bleibt intakt */
  touch-action: pan-y;
}

body {
  position: relative;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--c-gold);
  color: var(--c-ink);
}

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

a { color: inherit; }

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

.icon {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 300;
  background: var(--c-gold);
  color: var(--c-ink);
  font-family: var(--f-util);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-pill);
  text-decoration: none;
  transform: translateY(calc(-100% - 2rem));
  transition: transform var(--t-base);
}
.skip-link:focus-visible { transform: none; }

/* ─── Vollflächen-Video-Hintergrund ─────────────────────────────── */
/* Fixiert hinter allem. contain zeigt das GANZE Bild; die Balken sind
   espressofarben = deckungsgleich mit dem Seiten-Hintergrund. */
.page-video {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--c-espresso);
  overflow: hidden;
  pointer-events: none;
}
.page-video__poster,
.page-video__poster img,
.page-video__el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.page-video__poster { z-index: 0; }
.page-video__el {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.7s var(--ease-out);
  transform: translateZ(0);
  backface-visibility: hidden;
}
.page-video.is-ready .page-video__el { opacity: 1; }

/* Weiche Vignette: dunkelt die Ränder minimal ab → Text sitzt sicher */
.page-video__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(130% 100% at 50% 38%,
      transparent 52%,
      color-mix(in srgb, var(--c-espresso) 60%, transparent) 100%);
}

/* Inhalt liegt über dem Video */
.site-header { z-index: 100; }
main,
.site-footer { position: relative; z-index: 1; }

/* ─── Typografie ────────────────────────────────────────────────── */
h1, h2 {
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--c-cream);
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6vw, 5.25rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }

h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--c-cream);
}

p {
  color: var(--c-text-soft);
  max-width: 65ch;
}

.lead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  max-width: 56ch;
}

/* Offen über dem Video stehende Headlines/Leads: Lesbarkeits-Schatten */
.section-head h2,
.hero h1 { text-shadow: 0 2px 28px rgba(0, 0, 0, 0.5); }
.section-head .lead,
.hero .lead,
.hero-hours { text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55); }

/* Eyebrow: Fraunces italic in Gold + goldener Ring (Signature) */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  max-width: none;
}
.eyebrow em {
  font-family: var(--f-accent);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: var(--c-gold);
}

/* Signature Element: der offene goldene Ring — „O wie CoCoNo" */
.ring { display: inline-flex; flex-shrink: 0; }
.ring svg {
  width: 22px;
  height: 22px;
  animation: ring-spin 16s linear infinite;
}
.ring circle {
  fill: none;
  stroke: var(--c-gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 82 18;
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

/* Wortmarke „CoCoNo" (echo der Navbar-Schrift) — kreativ wiederverwendet */
.wordmark {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--c-cream);
}
.wordmark span { color: var(--c-gold); }

/* ─── Layout-Bausteine ──────────────────────────────────────────── */
.container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  position: relative;
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section-head { margin-bottom: var(--sp-md); max-width: 60ch; }
.section-head h2 { margin-bottom: 1rem; }
.section-head .lead { margin-top: 0.5rem; }

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split-copy > p { margin-bottom: 1rem; }

/* Glas-Panel: der Träger für dichten Inhalt über dem Video */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lift);
}
.glass--paprika { border-left: 3px solid var(--c-paprika); }

/* ─── Buttons (aus style.md) ────────────────────────────────────── */
.btn-primary {
  font-family: var(--f-util);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-ink);
  background: var(--c-gold);
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-base), background var(--t-base);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--c-gold) 88%, white);
  box-shadow: 0 10px 30px -8px color-mix(in srgb, var(--c-gold) 60%, transparent);
}

.btn-secondary {
  font-family: var(--f-util);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-cream);
  background: color-mix(in srgb, var(--c-espresso) 45%, transparent);
  padding: 1rem 2rem;
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  cursor: pointer;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: border-color var(--t-base), color var(--t-base), background var(--t-base);
}
.btn-secondary:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:active,
.btn-secondary:active { transform: scale(0.98); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: var(--sp-md);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--f-util);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c-gold);
  text-decoration: none;
  transition: color var(--t-fast);
}
.text-link:hover { color: color-mix(in srgb, var(--c-gold) 80%, white); }

/* ─── Badges (aus style.md) ─────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--f-util);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.35em 0.8em;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-border);
  color: var(--c-text-soft);
}
.badge--veggie { color: var(--c-olive);   border-color: color-mix(in srgb, var(--c-olive) 45%, transparent); }
.badge--spicy  { color: var(--c-paprika); border-color: color-mix(in srgb, var(--c-paprika) 45%, transparent); }
.badge--new    { color: var(--c-ink);     background: var(--c-gold); border-color: transparent; }
.badge .icon { width: 0.9em; height: 0.9em; }

/* ─── Chips (Zeiten & Hinweise) ─────────────────────────────────── */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--f-util);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.55em 1.1em;
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  color: var(--c-text-soft);
  white-space: nowrap;
}
.chip .icon { color: var(--c-gold); }

/* ─── Menü-Zeilen (aus style.md) ────────────────────────────────── */
.menu-list { list-style: none; }
.menu-list > li:first-child { padding-top: 0; }

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 0.75rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--c-border);
}
.menu-list > li:last-child { border-bottom: none; padding-bottom: 0; }

.menu-item__head {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  min-width: 0;
}
.menu-item__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--c-cream);
}
.menu-item__price {
  font-family: var(--f-util);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--c-gold);
  white-space: nowrap;
}
.menu-item__desc {
  grid-column: 1 / -1;
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--c-text-soft);
  line-height: 1.55;
  margin-top: 0.35rem;
}
.menu-item:hover .menu-item__name { color: var(--c-gold); transition: color var(--t-fast); }

.menu-item__badges {
  display: inline-flex;
  gap: 0.4rem;
  align-self: center;
}

/* ─── Öffnungszeiten-Zeilen (aus style.md) ──────────────────────── */
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--c-border);
  font-family: var(--f-body);
  color: var(--c-text);
}
.hours-row__day  { font-weight: 600; }
.hours-row__time { color: var(--c-text-soft); font-variant-numeric: tabular-nums; }
.hours-row--closed .hours-row__time { color: var(--c-paprika); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; }

/* Heutiger Tag (Markierung per JS) */
.hours-row.is-today .hours-row__day  { color: var(--c-gold); }
.hours-row.is-today .hours-row__time { color: var(--c-cream); }
.today-badge {
  display: inline-block;
  margin-left: 0.6rem;
  padding: 0.18em 0.7em;
  font-family: var(--f-util);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-ink);
  background: var(--c-gold);
  border-radius: var(--r-pill);
  vertical-align: 0.15em;
}

/* ─── Header ────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  transition: background var(--t-base), box-shadow var(--t-base);
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--c-espresso) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 1px 0 var(--c-border);
}

.header-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

/* Wortmarke: das echte Logo (schwarz auf Senfgelb) als goldene Plakette */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.brand img {
  height: 2.4rem;
  width: auto;
  border-radius: var(--r-sm);
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.6);
  transition: transform var(--t-base);
}
.brand:hover img { transform: translateY(-1px) rotate(-1deg); }

.main-nav {
  justify-self: center;
  display: flex;
  gap: clamp(1rem, 2.2vw, 2rem);
}
.nav-link {
  position: relative;
  font-family: var(--f-util);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-cream);
  text-decoration: none;
  padding-block: 0.35rem;
  transition: color var(--t-fast);
}
.nav-link:hover { color: var(--c-gold); }

/* Hover-Signatur: goldener Bogen läuft aus einem Punkt auf */
.link-arc {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  width: 100%;
  height: 8px;
  overflow: visible;
  pointer-events: none;
}
.link-arc path {
  fill: none;
  stroke: var(--c-gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.45s var(--ease-out);
}
.nav-link:hover .link-arc path,
.nav-link:focus-visible .link-arc path { stroke-dashoffset: 0; }

.header-cta { justify-self: end; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 46px;
  height: 46px;
  padding: 12px 10px;
  background: color-mix(in srgb, var(--c-espresso) 40%, transparent);
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--c-cream);
  transition: transform var(--t-base), opacity var(--t-base);
}
.nav-open .nav-toggle span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-open .nav-toggle span:last-child  { transform: translateY(-4.5px) rotate(-45deg); }

/* Full-Screen-Overlay-Navigation */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--sp-lg);
  background: color-mix(in srgb, var(--c-espresso) 92%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateY(-102%);
  transition: transform 0.55s var(--ease-out);
  visibility: hidden;
}
.nav-open .nav-overlay { transform: translateY(0); visibility: visible; }
html.nav-open,
html.nav-open body { overflow: hidden; }

.overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.overlay-nav a {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--c-cream);
  text-decoration: none;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color var(--t-fast);
}
.nav-open .overlay-nav a {
  opacity: 1;
  transform: none;
  transition-delay: calc(0.12s + var(--d, 0) * 55ms);
}
.overlay-nav a:hover { color: var(--c-gold); }

.overlay-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.overlay-meta p {
  font-family: var(--f-util);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-text-soft);
}

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: calc(var(--header-h) + 2.5rem) 5rem;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.hero-emblem { margin-bottom: 1.75rem; }
.hero-emblem img {
  width: clamp(210px, 30vw, 340px);
  height: auto;
  border-radius: var(--r-md);
  box-shadow:
    0 20px 50px -14px rgba(0, 0, 0, 0.7),
    0 0 60px -20px color-mix(in srgb, var(--c-gold) 70%, transparent);
  transform: rotate(-1.5deg);
}
.hero h1 { margin-bottom: 1.25rem; max-width: 16ch; }
.hero .lead { max-width: 46ch; margin-bottom: 0.5rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: var(--sp-md);
}
.hero-hours {
  margin-top: 1.75rem;
  font-family: var(--f-util);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-gold);
}

/* Scroll-Hint (unten mittig) */
.scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.scroll-hint span {
  font-family: var(--f-util);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}
.scroll-hint-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, var(--c-gold), transparent);
  animation: pulse-line 2s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: 0.45; }
  50%      { opacity: 1; }
}

/* ─── Video-Bühnen (Frühstück & Tapas) ──────────────────────────── */
/* Der scroll-gescrubbte Video-Hintergrund trägt diese Sektionen:
   der Inhalt sitzt links über dem dunklen Freiraum des Frames, das
   Essen (Endframe = Frühstück, Startframe = Tapas) bleibt rechts sichtbar. */
.section--stage {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
}
/* Container muss volle Breite behalten, sonst zentriert Flex den
   geschrumpften Container → Inhalt soll links bündig (wie im Hero). */
.section--stage > .container { width: 100%; }
.section--stage .stage-copy {
  max-width: 38rem;
  width: 100%;
}
.section--stage .section-head {
  max-width: none;
  margin-bottom: var(--sp-md);
}

/* ─── Dunkle Bühne: ab hier kein Video mehr ─────────────────────── */
/* Exakt dasselbe Espresso wie die Letterbox-Balken und der Manifest-
   Scrim → kein sichtbarer Übergang. Statt flacher Farbflächen tragen
   die Sektionen eigene Kerzenlicht-Glows (::before, z-index -1). */
.after-stage {
  position: relative;
  z-index: 1;
  background: var(--c-espresso);
}

/* ─── Riesen-Wortmarke (Wasserzeichen hinter dem Team) ──────────── */
.wordmark-giant {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  margin: 0;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(6rem, 27vw, 24rem);
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.5px color-mix(in srgb, var(--c-cream) 10%, transparent);
  pointer-events: none;
  user-select: none;
}
.wordmark-giant span {
  -webkit-text-stroke-color: color-mix(in srgb, var(--c-gold) 24%, transparent);
}

/* ─── Medien-Grundstil ──────────────────────────────────────────── */
figure {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: var(--c-roast);
}
figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
figure:hover img { transform: scale(1.04); }
[data-parallax] { will-change: transform; }

/* ─── Panel-Label (Zeiten-Panel im Kontakt) ─────────────────────── */
.panel-label {
  font-family: var(--f-util);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-paprika);
  margin-bottom: 0.75rem;
}

/* ─── Manifest: Worte zünden, dann dimmt das Licht ──────────────── */
/* Sticky-Bühne über dem Video-Startframe. Die Wort-Spans setzt das JS;
   .on = „das Wort brennt". Der Scrim (Espresso) blendet am Ende der
   Runway auf Deckung → nahtloser Übergang in .after-stage. */
html.js .manifesto { height: 175vh; }
.manifesto { position: relative; }
.manifesto-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
html:not(.js) .manifesto-sticky {
  background: var(--c-espresso);
  padding-block: var(--sp-xl);
}
.manifesto-scrim {
  position: absolute;
  inset: 0;
  background: var(--c-espresso);
  opacity: 0;
  pointer-events: none;
}
/* Portrait: Frame füllt das Bild — leichter Dauer-Schleier für Lesbarkeit */
@media (orientation: portrait) {
  .manifesto-sticky::before {
    content: "";
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, var(--c-espresso) 45%, transparent);
    pointer-events: none;
  }
}
.manifesto-inner {
  position: relative;
  width: 100%;
}
.manifesto .eyebrow { margin-bottom: 2rem; }
.ignite {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.65rem, 3.6vw, 2.9rem);
  line-height: 1.5;
  max-width: 30ch;
  color: var(--c-cream);
  text-wrap: balance;
}
.ignite .w {
  color: color-mix(in srgb, var(--c-cream) 22%, transparent);
  transition: color 0.4s var(--ease-out);
}
.ignite .w.on {
  color: var(--c-cream);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.6);
}
.ignite .w--gold.on { color: var(--c-gold); }
/* Fallback ohne JS: keine Spans, alles lesbar */
html:not(.js) .ignite .gold { color: var(--c-gold); font-style: inherit; }

/* ─── Der Tag im CoCoNo: Uhr + goldene Timeline ─────────────────── */
/* Das Umgebungslicht wandert mit der Tageszeit (data-phase, vom JS
   gesetzt): Morgengold → Mittagscreme → Abendpaprika → Nachtbernstein. */
@property --day-glow {
  syntax: "<color>";
  inherits: true;
  initial-value: #E9A93B;
}
.section--day {
  --day-glow: #E9A93B;
  transition: --day-glow 1.2s var(--ease-out);
}
.section--day[data-phase="1"] { --day-glow: #F4EBDA; }
.section--day[data-phase="2"] { --day-glow: #BE4A2E; }
.section--day[data-phase="3"] { --day-glow: #9C6F2F; }
.section--day::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(55% 38% at 18% 8%,
      color-mix(in srgb, var(--day-glow) 10%, transparent), transparent 70%),
    radial-gradient(45% 30% at 85% 85%,
      color-mix(in srgb, var(--day-glow) 5%, transparent), transparent 70%);
}

.day-layout {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.day-rail {
  position: sticky;
  top: calc(var(--header-h) + 2.5rem);
}
.day-clock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.day-clock svg {
  width: min(100%, 280px);
  height: auto;
  overflow: visible;
}
.dc-ring {
  fill: none;
  stroke: var(--c-gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 82 18; /* Echo des offenen Signatur-Rings */
}
.dc-ticks line {
  stroke: color-mix(in srgb, var(--c-cream) 22%, transparent);
  stroke-width: 2;
  stroke-linecap: round;
}
.dc-hand {
  stroke: var(--c-gold);
  stroke-width: 3;
  stroke-linecap: round;
  transform-origin: 100px 100px;
  transform-box: view-box;
  filter: drop-shadow(0 0 6px color-mix(in srgb, var(--c-gold) 55%, transparent));
}
.dc-pin { fill: var(--c-gold); }
.dc-time {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--c-cream);
  font-variant-numeric: tabular-nums;
  max-width: none;
}
.dc-phase {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--c-gold);
  min-height: 1.6em;
  max-width: none;
}

.day-stops {
  --day-pad: clamp(2.75rem, 5vw, 3.5rem);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(4.5rem, 9vh, 7rem);
  padding-left: var(--day-pad);
}
.day-line {
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  border-radius: 2px;
  background: color-mix(in srgb, var(--c-cream) 10%, transparent);
}
.day-line i {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: top;
  background: linear-gradient(180deg,
    var(--c-gold),
    color-mix(in srgb, var(--c-gold) 60%, var(--c-paprika)));
  box-shadow: 0 0 12px color-mix(in srgb, var(--c-gold) 35%, transparent);
}
.day-stop { position: relative; }
.day-node {
  position: absolute;
  left: calc(-1 * var(--day-pad)); /* Mitte exakt auf der Linie (8px + 1px) */
  top: 1.05rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--c-cream) 30%, transparent);
  background: var(--c-espresso);
  transition: border-color var(--t-base), background var(--t-base), box-shadow var(--t-base);
}
.day-node.is-lit {
  border-color: var(--c-gold);
  background: color-mix(in srgb, var(--c-gold) 30%, var(--c-espresso));
  box-shadow: 0 0 18px color-mix(in srgb, var(--c-gold) 50%, transparent);
}
.day-time {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: color-mix(in srgb, var(--c-cream) 32%, transparent);
  transition: color 0.5s var(--ease-out);
  margin-bottom: 0.9rem;
  max-width: none;
}
@supports (-webkit-text-stroke: 1px #000) {
  .day-time {
    color: transparent;
    -webkit-text-stroke: 1.5px color-mix(in srgb, var(--c-cream) 32%, transparent);
    transition: color 0.5s var(--ease-out), -webkit-text-stroke-color 0.5s var(--ease-out);
  }
}
.day-stop.is-active .day-time {
  color: var(--c-gold);
  -webkit-text-stroke-color: transparent;
}
.day-stop h3 {
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  margin-bottom: 0.75rem;
}
.day-stop > p {
  margin-bottom: 1.1rem;
  max-width: 54ch;
}
.day-stop .cta-row { margin-top: 1.25rem; }
.day-figure {
  margin-top: 1.75rem;
  aspect-ratio: 16 / 10;
  max-width: 34rem;
}
.day-figure--tall {
  aspect-ratio: 4 / 5;
  max-width: 22rem;
}

/* ─── Sonntag: Braten & Klöße ───────────────────────────────────── */
.section--sonntag {
  overflow-x: clip; /* gedrehter Teller darf nie horizontal scrollen */
  border-block: 1px solid color-mix(in srgb, var(--c-cream) 7%, transparent);
}
/* Kerzenlicht-Glow sitzt hinter dem Teller */
.section--sonntag::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(34% 58% at 72% 50%,
      color-mix(in srgb, var(--c-gold) 9%, transparent), transparent 70%),
    radial-gradient(60% 80% at 60% 50%,
      color-mix(in srgb, var(--c-paprika) 12%, transparent), transparent 72%);
}
.sonntag-layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.sonntag-line {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.3;
  color: var(--c-cream);
  max-width: none;
  text-wrap: balance;
}
.sonntag-line em { color: var(--c-gold); }
.sonntag-sub {
  margin-top: 1.25rem;
  max-width: 46ch;
}
.sonntag-pairing {
  margin-top: 1rem;
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--c-cream);
}
.sonntag-pairing em { color: var(--c-gold); }

.sonntag-plate {
  position: relative;
  width: min(100%, 40rem);
  margin-inline: auto;
  aspect-ratio: 1;
}
.sonntag-plate img {
  width: 100%;
  height: auto;
}
.sonntag-plate__arc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  rotate: -90deg;
  pointer-events: none;
}
.sonntag-plate__arc circle {
  fill: none;
  stroke: var(--c-gold);
  stroke-width: 0.3;
  stroke-linecap: round;
  stroke-dasharray: 82 18;
  opacity: 0.55;
}

/* Scroll-gesteuert: der Teller dreht sich, solange die Sektion durchs
   Bild läuft, und steht still, sobald nicht gescrollt wird. Der Bogen
   zieht sich gegenläufig zu. Ohne Support bleibt der ruhige Endzustand. */
@supports (animation-timeline: view()) {
  .sonntag-plate img {
    animation: plate-turn linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
  .sonntag-plate__arc {
    animation: plate-arc-turn linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
  .sonntag-plate__arc circle {
    animation: plate-arc-draw linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 50%;
  }
}
@keyframes plate-turn {
  from { rotate: -40deg; scale: 0.9; }
  50%  { scale: 1; }
  to   { rotate: 18deg; scale: 1; }
}
@keyframes plate-arc-turn {
  from { rotate: -20deg; }
  to   { rotate: -150deg; }
}
@keyframes plate-arc-draw {
  from { stroke-dasharray: 0 100; }
  to   { stroke-dasharray: 82 18; }
}

/* ─── Gewölbekeller: Bögen wie im Keller selbst ─────────────────── */
.section--gewoelbe::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(50% 40% at 50% 0%,
    color-mix(in srgb, var(--c-gold) 6%, transparent), transparent 70%);
}
.arch-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: end;
  margin-block: var(--sp-md) var(--sp-lg);
}
.arch {
  aspect-ratio: 3 / 4;
  border-radius: 999px 999px var(--r-md) var(--r-md);
}
.arch:nth-child(2) { aspect-ratio: 3 / 4.6; }
.gewoelbe-close {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.gewoelbe-close h3 { margin-bottom: 0.75rem; }
.gewoelbe-media { aspect-ratio: 16 / 10; }

/* ─── Terrasse & Livemusik ──────────────────────────────────────── */
.split--terrasse { grid-template-columns: 6fr 5fr; }
.overlap {
  position: relative;
  padding-bottom: 3rem;
}
.overlap figure:first-child {
  width: 74%;
  aspect-ratio: 4 / 3;
}
.overlap figure:last-child {
  width: 52%;
  aspect-ratio: 1 / 1;
  margin: -24% 0 0 auto;
  outline: 6px solid var(--c-espresso);
}

/* ─── Team ──────────────────────────────────────────────────────── */
.section--team { overflow: hidden; }
.split--team {
  position: relative;
  z-index: 1;
  grid-template-columns: 6fr 5fr;
}
.team-media { aspect-ratio: 4 / 3; }

.team-quote {
  border-left: 3px solid var(--c-gold);
  padding-left: 1.5rem;
}
.team-quote p {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.4;
  color: var(--c-cream);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.team-quote footer {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.team-signature {
  font-family: var(--f-util);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-gold);
}
.team-note { font-size: 0.9rem; color: var(--c-text-soft); }

/* ─── Kontakt & Öffnungszeiten ──────────────────────────────────── */
.split--kontakt {
  grid-template-columns: 6fr 5fr;
  align-items: start;
}
.hours-panel h3 { margin-bottom: 1rem; }

.times-note { margin-top: 1.75rem; }
.times-note .panel-label { color: var(--c-gold); }
.times-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.5rem;
}
.times-grid div {
  font-size: 0.92rem;
  color: var(--c-text-soft);
  line-height: 1.5;
}
.times-grid span {
  display: block;
  font-family: var(--f-util);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-cream);
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  color: var(--c-text-soft);
}
.contact-list .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--c-gold);
  margin-top: 0.2rem;
}
.contact-list a {
  color: var(--c-text);
  text-decoration: none;
  transition: color var(--t-fast);
}
.contact-list a:hover { color: var(--c-gold); }

.contact-note {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}

/* ─── Footer ────────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--c-ink);
  border-top: 1px solid var(--c-border);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--c-border);
}

.footer-logo {
  width: 150px;
  height: auto;
  border-radius: var(--r-sm);
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.6);
}
.footer-claim { font-size: 0.95rem; max-width: 34ch; }

.footer-title {
  font-family: var(--f-util);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-gold);
  margin-bottom: 1rem;
}

.site-footer address {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--c-text-soft);
  line-height: 1.8;
}
.site-footer address a,
.footer-links a {
  color: var(--c-text-soft);
  text-decoration: none;
  transition: color var(--t-fast);
}
.site-footer address a:hover,
.footer-links a:hover { color: var(--c-gold); }

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.footer-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 2rem;
}
.footer-credit-logo {
  width: 100px;
  height: auto;
  opacity: 0.85;
  transition: opacity var(--t-fast);
}
.footer-credit a:hover .footer-credit-logo { opacity: 1; }
.footer-credit p {
  font-family: var(--f-util);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--c-text-soft);
  text-align: center;
}
.footer-credit p a { color: var(--c-gold); text-decoration: none; }
.footer-credit p a:hover { text-decoration: underline; }

/* ─── Scroll-Reveals ────────────────────────────────────────────── */
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 90ms);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* ─── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .main-nav,
  .header-cta { display: none; }
  .nav-toggle { display: flex; justify-self: end; }

  .split--terrasse,
  .split--team,
  .split--kontakt {
    grid-template-columns: 1fr;
  }

  /* Video-Bühne: Inhalt darf die volle Breite nutzen (Frame als BG) */
  .section--stage .stage-copy { max-width: none; }

  /* Tages-Uhr wird zur schwebenden Glas-Pille, die mitscrollt */
  .day-layout { display: block; }
  .day-rail {
    position: sticky;
    top: calc(var(--header-h) + 0.5rem);
    z-index: 5;
    width: max-content;
    margin-bottom: 2.5rem;
  }
  .day-clock {
    flex-direction: row;
    gap: 0.9rem;
    text-align: left;
    padding: 0.5rem 1.1rem 0.5rem 0.6rem;
    border: 1px solid var(--c-border);
    border-radius: var(--r-pill);
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-lift);
  }
  .day-clock svg { width: 46px; }
  .dc-time { font-size: 1.3rem; }
  .dc-phase { font-size: 0.95rem; min-height: 0; }

  .gewoelbe-close { grid-template-columns: 1fr; }

  /* Sonntag: erst die Ansage, dann der Teller, dann der Rest. Die
     Text-Spalte löst sich auf, damit der Teller zwischen ihre Kinder
     rutschen kann — Abstände kommen deshalb aus den Margins, nicht gap. */
  .sonntag-layout {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }
  .sonntag-copy { display: contents; }
  .section--sonntag .eyebrow { order: -2; }
  .sonntag-plate {
    order: -1;
    width: min(88vw, 30rem);
    margin-bottom: 1.25rem;
  }
  .section--sonntag .eyebrow,
  .section--sonntag .cta-row { justify-content: center; }
  .sonntag-sub { margin-inline: auto; }
  .section--sonntag::before {
    background: radial-gradient(70% 45% at 50% 30%,
      color-mix(in srgb, var(--c-paprika) 14%, transparent), transparent 72%);
  }
}

@media (max-width: 768px) {
  .container { width: 100%; padding-inline: 1rem; }

  h1 { font-size: clamp(2.3rem, 10vw, 3rem); }
  h2 { font-size: clamp(1.7rem, 7.5vw, 2.2rem); }

  .section { padding-block: 4rem; }

  .hero { padding-block: calc(var(--header-h) + 1.5rem) 4.5rem; }
  .hero-emblem img { width: clamp(180px, 56vw, 260px); }

  .brand img { height: 2rem; }

  html.js .manifesto { height: 150vh; }
  .ignite { font-size: clamp(1.4rem, 6.4vw, 1.8rem); max-width: none; }

  .day-stops { --day-pad: 2.25rem; gap: 4rem; }
  .day-figure,
  .day-figure--tall { max-width: none; aspect-ratio: 16 / 10; }

  .overlap figure:first-child { width: 82%; }
  .overlap figure:last-child  { width: 56%; margin-top: -26%; }

  .arch-gallery { gap: 0.6rem; }
  .arch { border-radius: 999px 999px var(--r-sm) var(--r-sm); }

  .times-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .cta-row .btn-primary,
  .cta-row .btn-secondary { width: 100%; }
}

/* ─── Hochkant-Bühne: Video unten, Inhalt in zwei Akten ─────────── */
/* Auf schmalen Hochkant-Screens lag bisher alles übereinander: die
   Animation lief zu Ende, und im selben Viewport standen Headline UND
   Menükarte auf dem Bild. Hier wird daraus eine Abfolge.

   Räumlich: das Video rückt in die untere Bühnenzone, oben bleibt eine
   ruhige Lesezone in exakt derselben Espresso-Farbe wie der Body —
   dadurch entsteht keine sichtbare Kante, nur Freiraum.

   Zeitlich: Akt 1 ist die Ansage (Eyebrow/Headline/Lead) allein über
   der laufenden Animation und füllt genau einen Viewport. Erst
   weiteres Scrollen holt in Akt 2 die Karte mit den Details herein —
   und dort steht das Video still, weil die Scrub-Engine den über einen
   Viewport hinausragenden Teil jeder Bühne als Hold-Zone behandelt. */
@media (orientation: portrait) and (max-width: 900px) {
  :root { --stage-void: 38svh; }

  .page-video { top: var(--stage-void); }
  /* cover statt contain: die Bühne wird gefüllt, statt das Motiv
     schmal in der Mitte zusammenschrumpfen zu lassen. */
  .page-video__el,
  .page-video__poster img { object-fit: cover; }

  /* Oberkante des Motivs weich ins Espresso der Lesezone überblenden.
     Beide Hochkant-Clips sind identisch aufgebaut: ein Ausschnitt des
     Querformats, oben auf 720x1280 mit Espresso aufgefüllt. Die Naht
     zwischen Füllung und Motiv landet durch den cover-Beschnitt immer
     bei rund 40–44% der Bühnenhöhe — der Verlauf deckt diesen Bereich
     ab, damit dort keine sichtbare Kante entsteht. */
  .page-video__grain {
    background:
      linear-gradient(to bottom,
        var(--c-espresso) 0 30%,
        color-mix(in srgb, var(--c-espresso) 82%, transparent) 40%,
        color-mix(in srgb, var(--c-espresso) 32%, transparent) 50%,
        transparent 58%),
      radial-gradient(130% 100% at 50% 42%,
        transparent 50%,
        color-mix(in srgb, var(--c-espresso) 60%, transparent) 100%);
  }

  /* Hero: Text in die obere Zone, das Motiv sitzt darunter. Der Hero
     trägt als einziger Abschnitt so viel Text, dass er über die
     Lesezone hinausreicht — er bekommt deshalb einen eigenen Scrim,
     der das Video unter dem Text abdunkelt und nach unten ins Motiv
     ausläuft. Zusätzlich rückt der Kopfbereich enger zusammen. */
  .hero {
    align-items: flex-start;
    padding-block: calc(var(--header-h) + 0.75rem) 3rem;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(to bottom,
      var(--c-espresso) 0 44%,
      color-mix(in srgb, var(--c-espresso) 90%, transparent) 70%,
      color-mix(in srgb, var(--c-espresso) 58%, transparent) 88%,
      transparent 100%);
  }
  .hero-emblem { margin-bottom: 1.1rem; }
  .hero-emblem img { width: clamp(150px, 44vw, 205px); }

  /* Akt 1 — die Ansage steht allein auf der Bühne. Sie bleibt danach
     oben kleben: sonst entsteht beim Hereinziehen der Karte ein toter,
     leerer Streifen in der Lesezone, und man verliert den Kontext,
     zu welchem Gang die Karte gehört. */
  .section--stage {
    display: block;
    min-height: 0;
    padding-block: calc(var(--header-h) + 1.5rem) var(--sp-lg);
  }
  .section--stage .section-head {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    min-height: 0;
    margin-bottom: 0;
  }

  /* Akt 2 — die Karte kommt erst nach gut einem halben Viewport
     Scrollweg nach und deckt das Video dabei dicht ab. z-index, damit
     sie über die klebende Ansage läuft statt darunter zu verschwinden
     (sticky wird sonst über statische Geschwister gemalt).
     Kein backdrop-filter mehr: ein Blur über einem Video, das pro Frame
     seekt, kostet auf Handy-GPUs deutlich Scroll-Performance — bei
     dieser Deckkraft ist er ohnehin unsichtbar. */
  .section--stage .glass {
    position: relative;
    z-index: 1;
    margin-top: 64svh;
    background: color-mix(in srgb, var(--c-espresso) 92%, transparent);
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}

/* ─── Reduced Motion (Pflicht) ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; }
  figure:hover img { transform: none; }
  /* Video-Ebene bleibt stehen: Poster als ruhiger Hintergrund */
  .page-video__el { opacity: 0 !important; }
  /* Ohne Scrubbing gibt es keine Animation, auf die man wartet — die
     zweiaktige Hochkant-Bühne würde zu reiner Leere zerfallen. */
  .section--stage .section-head { position: static; }
  .section--stage .glass { margin-top: var(--sp-lg); }
  /* Manifest & Tages-Timeline: ruhiger Endzustand statt Scroll-Effekt */
  .ignite .w { color: var(--c-cream); }
  .ignite .w--gold { color: var(--c-gold); }
  .manifesto-scrim { opacity: 1; }
  .sonntag-plate img,
  .sonntag-plate__arc,
  .sonntag-plate__arc circle { animation: none; }
  .day-line i { transform: none; }
}
