/* ============================================================
   WING & YANG — One-Pager (Phase 1, Mid-Fi)
   Design system: dark/urban, bold display + clean body.
   Base = dark brown. Accents: Lila (lead), Gold, Rot.
   ============================================================ */

/* ---- Theme tone (switchable via [data-theme]) ---- */
:root,
:root[data-theme="braun"] {
  --bg:        #15100c;
  --bg-elev:   #1d1611;
  --surface:   #241b14;
  --surface-2: #2d2219;
  --line:      rgba(245, 230, 210, .09);
  --line-2:    rgba(245, 230, 210, .16);
  --ink:       #f6efe5;
  --ink-soft:  #cbb9a6;
  --ink-mute:  #a89684;
}
:root[data-theme="schwarz"] {
  --bg:        #0b0a09;
  --bg-elev:   #121110;
  --surface:   #181614;
  --surface-2: #211e1b;
  --line:      rgba(255, 255, 255, .08);
  --line-2:    rgba(255, 255, 255, .15);
  --ink:       #f4f1ec;
  --ink-soft:  #c2bbb1;
  --ink-mute:  #877f74;
}

/* ---- Accent (switchable via [data-accent]) ---- */
:root,
:root[data-accent="lila"] {
  --accent:        #9a5be6;
  --accent-strong: #8344db;
  --accent-ink:    #ffffff;
  --accent-soft:   rgba(154, 91, 230, .16);
  --accent-text:   #a970ed; /* Textvariante: >=4,5:1 auf Cards */
}
:root[data-accent="gold"] {
  --accent:        #e8b24a;
  --accent-strong: #dba328;
  --accent-ink:    #1c1409;
  --accent-soft:   rgba(232, 178, 74, .16);
  --accent-text:   #e8b24a;
}
:root[data-accent="rot"] {
  --accent:        #e3503b;
  --accent-strong: #d23e29;
  --accent-ink:    #ffffff;
  --accent-soft:   rgba(227, 80, 59, .16);
  --accent-text:   #ef8071;
}

/* fixed semantic accents (used regardless of lead accent) */
:root {
  --gold: #e8b24a;
  --rot:  #e3503b;
  --lila: #9a5be6;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
}
:root[data-font="space"] { --font-display: 'Space Grotesk', system-ui, sans-serif; --font-body: 'Hanken Grotesk', system-ui, sans-serif; }
:root[data-font="sora"]  { --font-display: 'Sora', system-ui, sans-serif; --font-body: 'Albert Sans', system-ui, sans-serif; }

/* ---- Reset / base ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.02; letter-spacing: -.02em; margin: 0; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(44px, 6vw, 78px) 0; }

/* ---- Typographic helpers ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-text, var(--accent));
  margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.eyebrow--mute { color: var(--ink-mute); }
.eyebrow--mute::before { background: var(--ink-mute); }

.h-display { font-size: clamp(2.6rem, 6.4vw, 4.9rem); line-height: 1.0; }
.h-section { font-size: clamp(2rem, 4.6vw, 3.3rem); line-height: 1.12; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); max-width: 56ch; }
.muted { color: var(--ink-mute); }
.accent-text { color: var(--accent-text, var(--accent)); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 15px 24px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--accent { background: var(--accent-strong); color: var(--accent-ink); }
.btn--accent:hover { filter: brightness(.92); }
.btn--gold { background: var(--gold); color: #1c1409; }
.btn--gold:hover { filter: brightness(1.06); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink-soft); background: rgba(255,255,255,.04); }
.btn--sm { padding: 11px 18px; font-size: .92rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- Badges / chips ---- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 999px; line-height: 1;
}
.badge--hot { background: var(--rot); color: #fff; }
.badge--angebot {
  background: rgba(21, 16, 12, .58);
  color: var(--gold);
  border: 1px solid rgba(232, 178, 74, .45);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  box-shadow: 0 8px 20px -10px rgba(0, 0, 0, .65);
}
.badge--angebot .emblem { width: 12px; height: 12px; flex: none; }
.badge--neu { background: var(--lila); color: #fff; }
.badge--top { background: var(--gold); color: #1c1409; }
.badge--soft { background: var(--accent-soft); color: var(--accent); }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 600; color: var(--ink-soft);
  background: var(--surface); border: 1px solid var(--line);
  padding: 8px 13px; border-radius: 999px; white-space: nowrap;
  cursor: pointer; transition: background .15s, color .15s, border-color .15s;
}
.chip.chip--active {
  background: var(--accent-strong); color: var(--accent-ink);
  border-color: var(--accent-strong); font-weight: 700;
}
.chip.chip--active::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: #fff; display: inline-block; flex: none;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); display: inline-block; }

/* ---- Image placeholder (mid-fi) ---- */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.028) 0 14px, transparent 14px 28px),
    radial-gradient(120% 120% at 30% 20%, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  display: grid; place-items: center; text-align: center;
  min-height: 180px; color: var(--ink-mute);
}
.ph::after {
  content: attr(data-ph);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute); padding: 0 16px; max-width: 22ch; line-height: 1.5;
}
.ph__tag {
  position: absolute; top: 12px; left: 12px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mute); background: rgba(0,0,0,.32);
  border: 1px solid var(--line); padding: 4px 8px; border-radius: 6px;
}
.ph--play::before {
  content: ""; position: absolute; left: 50%; top: calc(50% - 18px); transform: translate(-50%,-50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent-soft); border: 2px solid var(--accent);
  box-shadow: 0 0 0 8px rgba(0,0,0,.18);
}
.ph--play .ph__play {
  position: absolute; left: 50%; top: calc(50% - 18px); transform: translate(-42%,-50%);
  width: 0; height: 0; border-style: solid; border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--accent);
}

/* ---- Cards ---- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
}
.card__media { position: relative; aspect-ratio: 4 / 3; }
.card__media .badge { position: absolute; top: 12px; left: 12px; }
.card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__title { font-size: 1.32rem; line-height: 1.18; min-height: 2.36em; display: flex; align-items: flex-start; }
.card__body p.muted { line-height: 1.55; min-height: 4.65em; }
.card__price {
  margin-top: auto;
  padding-top: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold, #c9a84c);
  letter-spacing: -.01em;
}
.card__price span { font-size: 1rem; font-weight: 600; opacity: .8; }
.card__meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 6px; }
.tag-ing {
  font-size: .76rem; font-weight: 600; color: var(--ink-mute);
  border: 1px solid var(--line); border-radius: 6px; padding: 4px 9px;
}

/* ============================================================
   ANNOUNCEMENT BAR (weekday lunch — primary goal)
   ============================================================ */
.topbar {
  background: var(--accent-strong); color: var(--accent-ink);
  font-size: .9rem; font-weight: 600;
}
.topbar .wrap { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; padding-top: 10px; padding-bottom: 10px; text-align: center; }
.topbar b { font-weight: 800; }
.topbar .sep { opacity: .5; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 28px; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  display: grid; place-items: center;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
}
.brand__logo {
  width: 46px; height: 46px; flex: none; border-radius: 50%;
  object-fit: cover; display: block; background: #000;
  border: 1px solid var(--line-2);
}
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; letter-spacing: -.01em; white-space: nowrap; }
.brand__sub { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); margin-top: -2px; white-space: nowrap; }
.nav__links { display: flex; gap: 26px; }
.nav__links a { font-size: .96rem; font-weight: 600; color: var(--ink-soft); transition: color .15s; white-space: nowrap; }
.nav__links a:hover { color: var(--ink); }
.nav__right { display: flex; align-items: center; gap: 14px; }
.lang { display: flex; gap: 2px; font-size: .82rem; font-weight: 700; color: var(--ink-mute); }
.lang b { color: var(--ink); }
.nav__menu-btn { display: none; }

/* skip link (Tastatur / Screenreader) */
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 1000; background: var(--accent); color: var(--accent-ink); padding: 10px 16px; border-radius: 10px; font-weight: 700; font-size: .95rem; transition: top .18s ease; }
.skip-link:focus { top: 12px; outline: 2px solid var(--ink); outline-offset: 2px; }
main:focus { outline: none; }
/* sichtbarer Tastaturfokus (WCAG 2.4.7 / 1.4.11) */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
/* nur für Screenreader */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* mobile menu toggle (burger) */
.nav__toggle { display: none; width: 42px; height: 42px; padding: 0; flex: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: transparent; border: 1px solid var(--line-2); border-radius: 11px; cursor: pointer; -webkit-appearance: none; appearance: none; }
.nav__toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile dropdown menu */
.nav__menu { display: none; flex-direction: column; gap: 2px; padding: 4px 0 16px; }
.nav__menu a:not(.btn) { padding: 13px 6px; font-size: 1rem; font-weight: 600; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.nav__menu a:not(.btn):hover { color: var(--ink); }
.nav__menu .btn { margin-top: 14px; }
.nav__menu.is-open { display: flex; }

@media (max-width: 980px) {
  .nav__right { display: none; }
  .nav__toggle { display: flex; }
}
@media (prefers-reduced-motion: reduce) {
  .nav__toggle span, .skip-link { transition: none; }
}

/* ============================================================
   HERO (split)
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(80% 60% at 88% -10%, var(--accent-soft), transparent 60%);
}
.hero__grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center;
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 104px);
}
.hero__title { margin: 6px 0 0; }
.hero__title .ink2 { color: var(--accent); display: block; }
.hero__copy { margin: 22px 0 30px; }
.hero__cta-note { font-size: .9rem; color: var(--ink-mute); margin-top: 16px; display: flex; align-items: flex-start; gap: 8px; }
.hero__cta-note .dot { flex: none; margin-top: 7px; }
.hero__cta-note a { color: var(--ink-soft); text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--accent) 50%, transparent); text-underline-offset: 3px; transition: color .15s ease, text-decoration-color .15s ease; }
.hero__cta-note a:hover { color: var(--accent); text-decoration-color: var(--accent); }
.hero__media { position: relative; }
.hero__media .ph { height: 100%; min-height: 440px; border-radius: var(--radius); }
.hero__float {
  position: static; margin-top: 16px; width: fit-content;
  background: var(--bg-elev); border: 1px solid var(--line-2);
  border-radius: 14px; padding: 14px 18px; display: flex; align-items: center; gap: 13px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.hero__float .num { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--gold); line-height: 1; }
.hero__float small { display: block; font-size: .78rem; color: var(--ink-mute); }

.quick-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

/* ============================================================
   DISHES (Bestseller & Neue Gerichte)
   ============================================================ */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; }
.sec-head h2 { padding-bottom: 2px; }
.sec-head p { max-width: 46ch; }
.dish-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 20px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
button.chip { font-family: inherit; cursor: pointer; -webkit-appearance: none; appearance: none; }
.card.is-hidden { display: none; }

/* ============================================================
   EXPERIENCE / TRUST
   ============================================================ */
.trust { background: var(--bg-elev); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.trust__media .ph { aspect-ratio: 5/4; border-radius: var(--radius); height: 100%; }
.stat-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 38px; margin-top: 34px; }
.stat .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--accent); line-height: 1; }
.stat .l { font-size: .92rem; color: var(--ink-soft); margin-top: 6px; max-width: 18ch; }

/* ============================================================
   CONCEPT (pillars)
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.pillar { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; }
.pillar__ico { width: 52px; height: 52px; border-radius: 14px; background: var(--accent-soft); display: grid; place-items: center; margin-bottom: 18px; color: var(--accent); }
.pillar__ico svg { width: 28px; height: 28px; }
.pillar h3 { font-size: 1.3rem; margin-bottom: 8px; }
.pillar p { color: var(--ink-soft); font-size: .98rem; }

/* ============================================================
   GALLERY (Eindrücke)
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(150px, 15.5vw, 208px);
  grid-template-areas:
    "a a b c"
    "a a d d"
    "f g e e"
    "h i e e";
  gap: 14px;
}
.gallery .ph { border-radius: 14px; min-height: 0; height: 100%; }
.gp-a { grid-area: a; } .gp-b { grid-area: b; } .gp-c { grid-area: c; }
.gp-d { grid-area: d; } .gp-e { grid-area: e; }
.gp-f { grid-area: f; } .gp-g { grid-area: g; }
.gp-h { grid-area: h; } .gp-i { grid-area: i; }

/* caption overlay (hover on desktop, always visible on touch) */
.gallery__cap {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 32px 16px 13px;
  font-family: var(--font-body); font-weight: 700; font-size: .92rem;
  color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.55);
  background: linear-gradient(to top, rgba(0,0,0,.76), rgba(0,0,0,.2) 55%, transparent);
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease; pointer-events: none;
}
.gallery .ph:hover .gallery__cap { opacity: 1; transform: none; }
@media (hover: none) { .gallery .ph .gallery__cap { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(140px, 27vw, 215px);
    grid-template-areas:
      "a a"
      "a a"
      "b c"
      "d d"
      "e e"
      "e e"
      "f g"
      "h i";
  }
  /* Mobil: Untertitel verdecken die kleinen Kacheln — ausblenden */
  .gallery__cap { display: none; }
}
@media (max-width: 560px) {
  .gallery { grid-auto-rows: clamp(124px, 33vw, 178px); gap: 10px; }
}

/* ============================================================
   ORDER (Online-Bestellung) — secondary to visiting
   ============================================================ */
.order { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; }
.order__grid { display: grid; grid-template-columns: 1.1fr .9fr; }
.order__copy { padding: clamp(34px, 5vw, 58px); }
.order__media { position: relative; min-height: 320px; }
.order__media .ph { height: 100%; border-radius: 0; border: 0; }
.platforms { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 26px; }
@media (max-width: 600px){ .platforms { grid-template-columns: 1fr; } }
.platform {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-elev); border: 1px solid var(--line-2); border-radius: 12px;
  padding: 13px 18px; font-weight: 700; transition: border-color .15s, transform .12s;
  overflow: hidden; position: relative;
}
.platform:hover { border-color: var(--ink-soft); transform: translateY(-2px); }
.platform .pmark { width: 4px; height: 36px; border-radius: 2px; flex-shrink: 0; }
.platform small { display: block; font-size: .74rem; font-weight: 600; color: var(--ink-mute); }
.platform > span:nth-child(2) { flex: 1; }
.platform__arrow { margin-left: auto; opacity: .5; font-size: 1.1rem; transition: opacity .15s, transform .15s; }
.platform:hover .platform__arrow { opacity: 1; transform: translateX(3px); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews__head { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 40px; }
.gscore { display: flex; align-items: center; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 16px 22px; }
.gscore .big { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1; }
.stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 2px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
/* auto-sliding reviews rail — 3 cards fill the row, the next bleeds off-frame under a fade */
.review-rail { position: relative; overflow: visible; padding: 4px 0 12px; cursor: grab; touch-action: pan-y; }
.review-rail.is-dragging { cursor: grabbing; }
.review-track { display: flex; gap: 20px; transition: transform .6s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.review-rail.is-dragging .review-track { transition: none; }
.review-track .review { flex: 0 0 calc((100% - 2 * 20px) / 3); }
@media (max-width: 980px) { .review-track .review { flex-basis: calc((100% - 20px) / 2); } }
@media (max-width: 560px) { .review-track .review { flex-basis: 88%; } }

/* off-frame cards run into the page margin, clipped at the viewport, with a right-edge fade */
#bewertungen { overflow: hidden; }
.review-rail::after {
  content: ""; position: absolute; top: 0; bottom: 0; z-index: 4; pointer-events: none;
  right: calc(50% - 50vw); width: clamp(56px, 7vw, 150px);
  background: linear-gradient(to left, var(--bg), transparent);
}
.review-rail::before {
  content: ""; position: absolute; top: 0; bottom: 0; z-index: 4; pointer-events: none;
  left: calc(50% - 50vw); width: clamp(56px, 7vw, 150px);
  background: linear-gradient(to right, var(--bg), transparent);
}
/* Steuerleiste: Zurück · Dots · Weiter · Pause */
.review-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; }
.review-nav {
  width: 40px; height: 40px; border-radius: 50%; padding: 0;
  border: 1px solid var(--line-2); background: var(--surface); color: var(--ink-soft);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  transition: color .15s, border-color .15s;
}
.review-nav:hover { color: var(--ink); border-color: var(--ink-soft); }
.review-nav svg { width: 18px; height: 18px; }
/* dot indicators: 24px Trefffläche, 8px sichtbarer Punkt */
.review-dots { display: flex; justify-content: center; gap: 2px; }
.review-dots button { width: 24px; height: 24px; padding: 0; border: 0; border-radius: 50%; background: transparent; cursor: pointer; display: grid; place-items: center; }
.review-dots button span { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); transition: background .25s, transform .25s; }
.review-dots button.is-active span { background: var(--accent); transform: scale(1.35); }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.review p { color: var(--ink-soft); }
.review__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; font-weight: 800; color: var(--ink-soft); }
.review__who b { display: block; font-size: .96rem; }
.review__who small { color: var(--ink-mute); font-size: .8rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.info-list { display: flex; flex-direction: column; gap: 18px; margin-top: 6px; }
.info-item { display: flex; gap: 14px; }
.info-item .ico { width: 38px; height: 38px; flex: none; border-radius: 10px; background: var(--accent-soft); display: grid; place-items: center; color: var(--accent); }
.info-item .ico span { width: 14px; height: 14px; border-radius: 3px; background: var(--accent); }
.info-item b { font-size: 1rem; }
.info-item span.t { color: var(--ink-soft); font-size: .95rem; }
.hours { width: 100%; border-collapse: collapse; margin-top: 4px; }
.hours td { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.hours td:last-child { text-align: right; color: var(--ink-soft); }
.hours tr.lunch td { color: var(--accent); font-weight: 700; }
.map { position: relative; min-height: 320px; border-radius: var(--radius); overflow: hidden; height: 100%; scroll-margin-top: 90px; }
.map .ph { height: 100%; border-radius: var(--radius); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.map__consent {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 24px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 14px, transparent 14px 28px),
    radial-gradient(120% 120% at 30% 20%, var(--surface-2), var(--surface));
}
.map__consent svg { width: 34px; height: 34px; color: var(--accent); }
.map__consent-title { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--ink); }
.map__consent-text { font-size: .85rem; color: var(--ink-mute); max-width: 34ch; line-height: 1.5; }
.map__consent-text a { color: var(--accent-text, var(--accent)); text-decoration: underline; text-underline-offset: 2px; }

.form { display: grid; gap: 14px; margin-top: 8px; }
.form .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-size: .82rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; background: var(--bg-elev); border: 1px solid #74675b; border-radius: 10px;
  color: var(--ink); font-family: inherit; font-size: .98rem; padding: 13px 15px; outline: none;
  transition: border-color .15s;
}
.field input:focus, .field textarea:focus { border-color: var(--accent-text, var(--accent)); }
.field input:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.field textarea { resize: vertical; min-height: 120px; }
.form__status { font-size: .92rem; line-height: 1.4; margin: 2px 0 0; min-height: 1.2em; }
.form__status.is-ok { color: #36c46f; }
.form__status.is-err { color: #ef8071; }
.form__status:empty { display: none; }
.form__note { font-size: .8rem; color: var(--ink-mute); line-height: 1.5; margin: -6px 0 0; }
.form__note a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-elev); border-top: 1px solid var(--line); padding: 60px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer__grid h4 { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); font-family: var(--font-body); font-weight: 800; margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: var(--ink-soft); font-size: .95rem; }
.footer__links a:hover { color: var(--ink); }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.social { width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--ink-soft); font-weight: 700; font-size: .8rem; transition: border-color .15s, color .15s; }
.social:hover { border-color: var(--accent); color: var(--accent); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--line); font-size: .85rem; color: var(--ink-mute); }

/* draft note */
.draft-note {
  font-family: ui-monospace, Menlo, monospace; font-size: .72rem; color: var(--ink-mute);
  border: 1px dashed var(--line-2); border-radius: 8px; padding: 7px 12px; display: inline-block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid, .trust__grid, .order__grid { grid-template-columns: 1fr; gap: 36px; }
  /* Hero-Video: gleiches quadratisches Format wie Desktop (Basisregel 1/1 gilt) */
  /* Bestell-Foto (Hochformat 3:4): ganzes Motiv zeigen statt schmalem Streifen;
     max-height begrenzt Tablets, dort rückt der Fokus per object-position auf Mann + Tüte */
  .order__media { min-height: 0; aspect-ratio: 3 / 4; max-height: 620px; }
  .order__media .food-img { object-position: 50% 35% !important; }
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  /* Tablet: Qualitätskarten als 2er-Grid, dritte Karte über volle Breite */
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillars .pillar:last-child { grid-column: 1 / -1; }
  .review-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .nav__links { display: none; }
}
@media (max-width: 820px) {
  .sec-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  /* Kategorie-Tabs kleben beim Scrollen unter dem Header, eine Zeile, seitlich wischbar */
  .filter-row {
    position: sticky; top: 78px; z-index: 30;
    flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
    margin: 0 -28px 24px; padding: 12px 28px;
    background: color-mix(in srgb, var(--bg) 86%, transparent);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    scrollbar-width: none;
  }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter-row .chip { flex: 0 0 auto; white-space: nowrap; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .dish-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pillars .pillar:last-child { grid-column: auto; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .btn-row .btn { flex: 1 1 100%; }
  /* Filter-Tabs: an schmaleres .wrap-Padding (18px) angleichen */
  .filter-row { margin-left: -18px; margin-right: -18px; padding-left: 18px; padding-right: 18px; }
  /* Bewertungs-Steuerung: Pfeile + Pause in einer Reihe, Punkte kompakt darunter */
  .review-controls { flex-wrap: wrap; gap: 8px 16px; }
  .review-dots { order: 4; flex-basis: 100%; justify-content: center; flex-wrap: wrap; }
  .review-dots button { width: 20px; height: 20px; }
  /* Hero-Fakten: Zeilenlogik wie auf Desktop — kontrollierter Umbruch nach der Adresse,
     der Trennpunkt vor der Telefonnummer wird zum unsichtbaren Zeilenumbruch */
  .hero .hero__meta { row-gap: 4px; }
  .hero__meta-sep--phone { flex-basis: 100%; height: 0; overflow: hidden; }
}

/* ============================================================
   REAL MEDIA (photos + video)
   ============================================================ */

/* hero video */
.hero__vid-wrap {
  position: relative; width: 100%; aspect-ratio: 1 / 1;
  background: var(--surface);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 32px 80px -24px rgba(0,0,0,.75);
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
/* Hero-Utility-Zeile: eine ruhige Faktenzeile zwischen Text und Aktionen */
.hero__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  margin: 2px 0 26px; font-size: .95rem; color: var(--ink-soft);
}
/* Status ohne Pill-Rahmen — der grüne Punkt ist Akzent genug */
.hero__meta .livestatus { background: transparent; border: 0; padding: 0; font-size: inherit; font-weight: 600; color: inherit; }
.hero__meta a { color: inherit; transition: color .15s; }
.hero__meta a:hover { color: var(--ink); }
.hero__meta .star { color: var(--gold); }
.hero__meta-sep { opacity: .45; }
/* Desktop (zweispaltiger Hero): vier Fakten passen nicht in eine Zeile — der Trennpunkt
   vor der Bewertung wird zum unsichtbaren Zeilenumbruch (kein hängendes „·") */
@media (min-width: 981px) {
  .hero__meta-sep--rating { flex-basis: 100%; height: 0; overflow: hidden; }
  /* beide Faktenzeilen eng zusammen — sie bilden eine Einheit */
  .hero__meta { row-gap: 4px; }
}

/* Tap-to-pause: läuft das Video, liegt KEINE Steuerung darüber (Videotexte bleiben frei).
   Tap/Klick aufs Video pausiert; im Pausenzustand erscheint mittig ein Play-Button.
   Tastatur: der Button bleibt fokussierbar und wird bei Fokus in der Ecke sichtbar. */
.hero__vid-wrap { cursor: pointer; }
.hero__vid-toggle {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  width: 48px; height: 48px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(21, 16, 12, .55); color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .4);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  /* Kein opacity-Übergang: beim Fortsetzen soll der Button sofort weg sein,
     sonst blitzt er beim Zurückspringen in die Ecke kurz auf */
  cursor: pointer; transition: background .15s ease;
  opacity: 0; pointer-events: none;
}
.hero__vid-toggle:focus-visible { opacity: 1; pointer-events: auto; }
.hero__vid-toggle.is-paused {
  opacity: 1; pointer-events: auto;
  bottom: auto; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px;
}
.hero__vid-toggle:hover { background: rgba(21, 16, 12, .78); }
.hero__vid-toggle svg { width: 20px; height: 20px; }
.hero__vid-toggle .ico-play { display: none; }
.hero__vid-toggle.is-paused .ico-play { display: block; }
.hero__vid-toggle.is-paused .ico-pause { display: none; }

/* food images in cards */
.card__media .food-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.card:hover .card__media .food-img { transform: scale(1.07); }

/* closeup crop: zoom past bowl rim & table so the food fills the card */
.card__media .food-img--closeup { object-position: 50% 45%; transform: scale(1.12); }
.card:hover .card__media .food-img--closeup { transform: scale(1.19); }

/* trust media */
.trust__media { position: relative; overflow: hidden; aspect-ratio: 5/4; border-radius: var(--radius); }
.trust__media .food-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* order media */
.order__media { position: relative; overflow: hidden; }
.order__media .food-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; border-radius: inherit;
}

/* gallery images */
.gallery .ph { position: relative; overflow: hidden; }
.gallery__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .35s ease;
}
.gallery .ph:hover .gallery__img { transform: scale(1.06); }

/* ============================================================
   HI-FI POLISH PASS  (decorative)
   ============================================================ */

/* film grain / fractal-noise atmosphere */
.grain {
  position: fixed; inset: 0; z-index: 900; pointer-events: none;
  opacity: .045; mix-blend-mode: overlay;
  background-image: url("grain.svg");
  background-size: 200px 200px;
}

/* animated gradient headline word */
.grad-text {
  background: linear-gradient(100deg, #c89bff 0%, #9a5be6 40%, #b888f2 62%, #8e4ddf 100%);
  background-size: 230% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: gradShift 7.5s ease-in-out infinite;
}
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ambient hero glow blobs */
.hero__glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }
.hero__glow--a { width: 540px; height: 540px; right: -140px; top: -180px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 32%, transparent), transparent 70%); }
.hero__glow--b { width: 400px; height: 400px; left: -160px; bottom: -140px;
  background: radial-gradient(circle, rgba(232,178,74,.12), transparent 70%); }

/* marquee ticker (trendy divider) */
.marquee { overflow: hidden; background: var(--bg-elev);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; }
.marquee__track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { display: inline-flex; align-items: center; white-space: nowrap;
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.01em; text-transform: uppercase;
  font-size: clamp(1.25rem, 2.4vw, 2rem); color: var(--ink); padding-right: 0; }
.marquee__track i { display: inline-flex; align-items: center; margin: 0 .55em; color: var(--accent); }
.marquee__track i svg { width: .82em; height: .82em; display: block; opacity: .9; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* card hover polish + media zoom */
.card { transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
.card:hover { transform: translateY(-6px); border-color: var(--line-2);
  box-shadow: 0 34px 64px -28px rgba(0,0,0,.75); }
.card__media { overflow: hidden; }
.card__media .ph { position: absolute; inset: 0; height: 100%; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.card:hover .card__media .ph { transform: scale(1.07); }
/* price as appetite pill */
.card__price { align-self: flex-start; margin-top: auto; padding: 6px 14px; white-space: nowrap;
  background: rgba(232,178,74,.14); color: var(--gold); border-radius: 999px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; letter-spacing: -.01em; }
.card__price span { font-size: .82rem; font-weight: 700; opacity: .85; }
.card__price s { font-size: .82rem; font-weight: 600; opacity: .55; margin-left: 5px; }

/* trust: oversized off-canvas watermark + XXL gradient numbers */
.trust { position: relative; overflow: hidden; }
.trust .wrap { position: relative; z-index: 1; }
.trust__wm { position: absolute; right: -1.5%; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.05em; line-height: 1;
  font-size: clamp(11rem, 26vw, 27rem); color: transparent; -webkit-text-stroke: 1.5px var(--line-2);
  pointer-events: none; user-select: none; z-index: 0; }
.stat .n { font-size: clamp(2.6rem, 5vw, 3.7rem);
  background: linear-gradient(165deg, var(--ink) 0%, var(--accent) 125%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* gallery hover */
.gallery .ph { transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }
.gallery .ph:hover { border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow: 0 20px 44px -22px rgba(0,0,0,.7); transform: translateY(-4px); }

/* button shine sweep */
.btn--accent { position: relative; overflow: hidden; }
.btn--accent::after { content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-18deg); transition: left .6s ease; }
.btn--accent:hover::after { left: 150%; }

/* nav animated underline */
.nav__links a { position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 2px;
  background: var(--accent); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav__links a:hover::after { transform: scaleX(1); }

/* floaty badge + pulsing play */
.ph--play::before { animation: playPulse 2.8s ease-out infinite; }
@keyframes playPulse { 0% { box-shadow: 0 0 0 0 var(--accent-soft); } 70% { box-shadow: 0 0 0 22px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

/* order ambient glow */
.order { position: relative; }
.order::before { content: ""; position: absolute; width: 320px; height: 320px; right: -90px; top: -90px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%); filter: blur(40px); pointer-events: none; z-index: 0; }
.order__grid { position: relative; z-index: 1; }

/* scroll reveal (JS-gated; non-JS keeps everything visible) */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }
.dish-grid .reveal:nth-child(2) { transition-delay: .07s; }
.dish-grid .reveal:nth-child(3) { transition-delay: .14s; }
.dish-grid .reveal:nth-child(4) { transition-delay: .21s; }
.pillars .reveal:nth-child(2) { transition-delay: .1s; }
.pillars .reveal:nth-child(3) { transition-delay: .2s; }
.review-grid .reveal:nth-child(2) { transition-delay: .1s; }
.review-grid .reveal:nth-child(3) { transition-delay: .2s; }

@media print { .reveal { opacity: 1 !important; transform: none !important; } }
@media (prefers-reduced-motion: reduce) {
  .grad-text, .hero__float, .ph--play::before, .marquee__track { animation: none !important; }
  .marquee__track { transform: none !important; }
}

/* ============================================================
   FINAL POLISH — Markensignatur
   (Yin-Yang-Emblem · Wok-Curve · Timeline · Divider · Footer · Live-Status)
   ============================================================ */

/* — Wok-Curve: signature asymmetric corner across media & cards — */
:root { --r-wok: var(--radius) var(--radius) var(--radius) 40px; }
.card,
.gallery .ph,
.hero__vid-wrap,
.trust__media,
.pillar,
.review,
.info-card,
.map { border-radius: var(--r-wok); }
.order { border-radius: 24px 24px 24px 56px; }
.pillar__ico { border-radius: 14px 14px 14px 22px; }

/* — Yin-Yang emblem (thin line brand mark) — */
.emblem { display: block; }
.trust__emblem {
  position: absolute; right: -70px; top: 50%; transform: translateY(-50%);
  width: 440px; height: 440px; color: var(--accent);
  opacity: .06; z-index: 0; pointer-events: none;
}
.konzept { position: relative; overflow: hidden; }
.konzept__emblem {
  position: absolute; left: -130px; bottom: -130px;
  width: 400px; height: 400px; color: var(--gold);
  opacity: .05; z-index: 0; pointer-events: none;
}
.konzept .wrap { position: relative; z-index: 1; }

/* — Section divider with centered emblem — */
.sec-divider {
  display: flex; align-items: center; gap: 22px;
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
}
.sec-divider::before, .sec-divider::after {
  content: ""; height: 1px; flex: 1;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}
.sec-divider .emblem { width: 26px; height: 26px; color: var(--accent); opacity: .85; flex: none; }

/* — Storytelling timeline — */
.timeline { margin: 30px 0 4px; padding-left: 4px; }
.tl-item { display: flex; gap: 16px; position: relative; padding-bottom: 22px; }
.tl-item:last-child { padding-bottom: 4px; }
.tl-item::before {
  content: ""; position: absolute; left: 6px; top: 18px; bottom: -4px; width: 2px;
  background: linear-gradient(var(--accent), var(--line-2));
}
.tl-item:last-child::before { display: none; }
.tl-dot {
  width: 14px; height: 14px; border-radius: 50%; flex: none; margin-top: 5px;
  border: 2px solid var(--accent); background: var(--bg-elev); position: relative; z-index: 1;
}
.tl-dot--now { background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.tl-body b { display: block; font-family: var(--font-display); font-size: 1.05rem; letter-spacing: -.01em; }
.tl-body span { color: var(--ink-soft); font-size: .92rem; }

/* — Footer brand band (removed; styles kept minimal) — */
.footer__brandband {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  flex-wrap: wrap; padding-bottom: 42px; margin-bottom: 42px; border-bottom: 1px solid var(--line);
}
.footer__wordmark {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em; line-height: .9;
  font-size: clamp(2.6rem, 8vw, 5.6rem); color: var(--ink);
}
.footer__wordmark .amp { color: var(--accent); }
.footer__signoff { display: flex; align-items: center; gap: 16px; max-width: 360px; }
.footer__signoff .emblem { width: 54px; height: 54px; color: var(--accent); flex: none; }
.footer__signoff p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.45; margin-bottom: 10px; }

/* — Live open/closed status — */
.hours__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.livestatus {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 700; color: var(--ink-soft);
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px;
}
.livestatus__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-mute); flex: none; }
.livestatus.is-open .livestatus__dot { background: #36c46f; }
.livestatus.is-open .livestatus__dot { animation: livePulse 2.4s ease-out infinite; }
.livestatus.is-closed .livestatus__dot { background: var(--rot); }
@keyframes livePulse { 0%{box-shadow:0 0 0 0 rgba(54,196,111,.5);} 70%{box-shadow:0 0 0 9px rgba(54,196,111,0);} 100%{box-shadow:0 0 0 0 rgba(54,196,111,0);} }

/* — Hero scrim for text/image depth — */
.hero__vid-wrap::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(96deg, color-mix(in srgb, var(--bg) 48%, transparent) 0%, transparent 34%),
              linear-gradient(0deg, rgba(0,0,0,.34), transparent 42%);
}
.hero__vid-wrap .hero__vid-toggle { z-index: 2; }

@media (max-width: 560px) {
  .footer__brandband { flex-direction: column; align-items: flex-start; gap: 22px; }
  .footer__signoff { gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .livestatus.is-open .livestatus__dot { animation: none !important; }
}
