/* =====================================================================
   THE RESERVOIR LOUNGE — shared stylesheet
   Toronto's Original Swing-Jazz Speakeasy · Est. 1997
   Aesthetic: Apple-clean layout · speakeasy gold-on-black · serif display
   ===================================================================== */

/* ---- Fonts -------------------------------------------------------- */
/* Montserrat is loaded as a free, geometrically-close stand-in for Gotham. */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* --- GOTHAM (optional, licensed) ---------------------------------------
   Gotham is a paid font and can't be bundled freely. If you have a Gotham
   web-font licence, drop the .woff2 files in /assets/fonts and uncomment
   this block — the whole site switches to Gotham automatically via the
   --font-* variables below.
@font-face { font-family:'Gotham'; src:url('../assets/fonts/Gotham-Book.woff2')   format('woff2'); font-weight:400; font-display:swap; }
@font-face { font-family:'Gotham'; src:url('../assets/fonts/Gotham-Medium.woff2') format('woff2'); font-weight:500; font-display:swap; }
@font-face { font-family:'Gotham'; src:url('../assets/fonts/Gotham-Bold.woff2')   format('woff2'); font-weight:700; font-display:swap; }
------------------------------------------------------------------------ */

/* ---- Design tokens ------------------------------------------------ */
:root {
  /* Type — swap 'Gotham' on once licensed files are added (see @font-face above) */
  --font-display: 'Gotham', 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Gotham', 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Surfaces (near-black, warm) */
  --ink:            #0a0a0c;
  --ink-2:          #101013;
  --surface:        #16161a;
  --surface-2:      #1d1d22;
  --surface-3:      #26262c;

  /* Brand crimson */
  --gold:           #4f0918;
  --gold-bright:    #c0324a;
  --gold-dim:       #2d060e;

  /* Text on dark */
  --cream:          #f3ecdd;
  --cream-soft:     #ded6c4;
  --muted:          #9a948a;
  --muted-2:        #6d6860;

  /* Lines */
  --line:           rgba(243, 236, 221, 0.10);
  --line-strong:    rgba(243, 236, 221, 0.18);

  /* Radii & shadow */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);

  /* Rhythm */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(72px, 11vw, 160px);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 180ms;
  --t-med: 320ms;

  --nav-h: 96px;
}

/* ---- Reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream-soft);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Type --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--cream);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.display {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 600;
}
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--cream-soft);
  line-height: 1.6;
}
.muted { color: var(--muted); }
.gold { color: var(--cream-soft); }

/* ---- Layout helpers ---------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head .eyebrow { display: block; margin-bottom: 18px; }
.center { text-align: center; margin-inline: auto; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  border: 0;
}

/* ---- Buttons ------------------------------------------------------ */
.btn {
  --btn-bg: var(--cream);
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.7em;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform var(--t-fast) var(--ease),
              background var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(0,0,0,0.8); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform var(--t-fast) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--gold { --btn-bg: var(--gold); --btn-fg: #ffffff; }
.btn--gold:hover { --btn-bg: var(--gold-bright); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  border-color: var(--line-strong);
}
.btn--ghost:hover { --btn-bg: rgba(243,236,221,0.06); border-color: var(--gold); }

.btn--lg { padding: 1.1em 2em; font-size: 1.05rem; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--cream-soft);
  font-weight: 600;
  transition: gap var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.textlink:hover { gap: 0.85em; color: var(--cream); }

/* =====================================================================
   NAVBAR
   ===================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              backdrop-filter var(--t-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom-color: var(--line);
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  line-height: 1;
}
.brand__logo {
  height: 78px;
  width: auto;
  display: block;
  transition: opacity var(--t-fast) var(--ease);
}
.brand:hover .brand__logo { opacity: 0.82; }

.nav__links { display: flex; align-items: center; gap: 6px; list-style: none; padding: 0; }
.nav__links a {
  position: relative;
  padding: 8px 14px;
  font-size: 0.95rem;
  color: var(--cream-soft);
  border-radius: var(--r-sm);
  transition: color var(--t-fast) var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast) var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: var(--cream); }

.nav__cta { display: flex; align-items: center; gap: 14px; }
/* the reservation link inside the menu list is for the mobile dropdown only */
.mobile-reserve { display: none; }
/* compact, single-line reserve button in the bar */
.nav__cta .btn { padding: 0.62em 1.2em; font-size: 0.92rem; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 20px; height: 1.6px;
  background: var(--cream); transition: transform var(--t-fast) var(--ease), opacity var(--t-fast);
}
.nav__toggle span { position: relative; }
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after  { position: absolute; top: 6px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---- Mobile nav --------------------------------------------------- */
@media (max-width: 880px) {
  .nav__toggle { display: inline-flex; }
  .nav__cta .btn { display: none; }
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 18px var(--gutter) 28px;
    background: rgba(10,10,12,0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
  }
  .nav.is-open .nav__links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 14px 8px; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  .mobile-reserve { display: block; margin-top: 16px; }
  .mobile-reserve a { border-bottom: 0; }
}

/* =====================================================================
   HERO — scroll-driven layered decomposition (home)
   ===================================================================== */
.hero {
  position: relative;
  height: 320vh;            /* scroll runway that drives the decompose */
}
.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hero__stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.hero__layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  will-change: transform, opacity;
}
.hero__layer svg, .hero__layer img { width: min(78vw, 720px); height: auto; }
/* full-bleed photo layer behind the art — img is absolutely positioned so
   height:100% resolves against the layer box (not an auto grid row) */
.hero__layer--photo { display: block; inset: 0; }
.hero__layer--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* scrim: dark edges, open centre so the piano photo reads clearly */
.hero__scrim {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
  background:
    radial-gradient(110% 85% at 50% 44%, rgba(10,10,12,0.08), rgba(10,10,12,0.48) 80%),
    linear-gradient(180deg, rgba(10,10,12,0.48) 0%, rgba(10,10,12,0.04) 32%, rgba(10,10,12,0.08) 66%, var(--ink) 100%);
}

/* ---- Hero mist layer: atmospheric wisps that dissolve on scroll ---- */
.hero__layer--mist { display: block; z-index: 4; }

.mist__blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.mist__blob--1 {
  width: 72vw; height: 50vw; max-height: 540px;
  top: 4%; left: -14%;
  background: radial-gradient(ellipse, rgba(230,215,220,0.10), transparent 62%);
  animation-name: mistA; animation-duration: 22s;
}
.mist__blob--2 {
  width: 58vw; height: 42vw; max-height: 430px;
  top: 38%; right: -10%;
  background: radial-gradient(ellipse, rgba(215,220,230,0.08), transparent 68%);
  animation-name: mistB; animation-duration: 28s; animation-delay: -11s;
}
.mist__blob--3 {
  width: 88vw; height: 58vw; max-height: 580px;
  bottom: -8%; left: 6%;
  background: radial-gradient(ellipse, rgba(228,218,218,0.11), transparent 58%);
  animation-name: mistA; animation-duration: 33s; animation-delay: -7s;
}
.mist__blob--4 {
  width: 48vw; height: 36vw; max-height: 370px;
  top: 12%; right: 4%;
  background: radial-gradient(ellipse, rgba(210,222,232,0.07), transparent 70%);
  animation-name: mistB; animation-duration: 19s; animation-delay: -4s;
}
.mist__blob--5 {
  width: 62vw; height: 44vw; max-height: 450px;
  top: 52%; left: 22%;
  background: radial-gradient(ellipse, rgba(224,215,222,0.08), transparent 64%);
  animation-name: mistA; animation-duration: 26s; animation-delay: -17s;
}

@keyframes mistA {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(4%, -3%) scale(1.12); }
}
@keyframes mistB {
  from { transform: translate(0, 0) scale(1.04); }
  to   { transform: translate(-3%, 4%) scale(0.93); }
}

/* vignette + grain sit above the art layers */
.hero__vignette {
  position: absolute; inset: 0; z-index: 6; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 35%, transparent 40%, rgba(10,10,12,0.55) 78%, var(--ink) 100%),
    linear-gradient(180deg, rgba(10,10,12,0.45) 0%, transparent 22%, transparent 70%, var(--ink) 100%);
}
.hero__grain {
  position: absolute; inset: -50%; z-index: 7; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* hero copy */
.hero__copy {
  position: relative;
  z-index: 8;
  text-align: center;
  padding-inline: var(--gutter);
  will-change: transform, opacity;
}
.hero__copy .eyebrow { display: block; margin-bottom: 22px; }
.hero__copy .display { margin: 0 auto 18px; max-width: 14ch; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center;
  color: var(--cream-soft); font-size: 1rem; margin-bottom: 34px;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* scroll hint */
.scroll-hint {
  position: absolute; left: 50%; bottom: 30px; z-index: 8;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
}
.scroll-hint .mouse {
  width: 22px; height: 36px; border: 1.5px solid var(--line-strong); border-radius: 12px;
  position: relative;
}
.scroll-hint .mouse::after {
  content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px;
  border-radius: 2px; background: var(--gold); transform: translateX(-50%);
  animation: wheel 1.8s var(--ease) infinite;
}
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 10px); } }

/* =====================================================================
   PAGE HEADER (interior pages)
   ===================================================================== */
.page-head {
  position: relative;
  isolation: isolate;
  padding-top: calc(var(--nav-h) + clamp(60px, 10vw, 130px));
  padding-bottom: clamp(40px, 6vw, 80px);
  text-align: center;
  overflow: hidden;
}
/* optional full-bleed photo behind the header */
.page-head__bg {
  position: absolute; inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.page-head__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.page-head::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(80% 60% at 50% 40%, rgba(79,9,24,0.18), transparent 65%),
    linear-gradient(180deg, rgba(10,10,12,0.80) 0%, rgba(10,10,12,0.46) 36%, rgba(10,10,12,0.60) 68%, var(--ink) 100%);
}
.page-head .container { position: relative; z-index: 3; }
.page-head .eyebrow { display: block; margin-bottom: 18px; }
.page-head .lead { max-width: 620px; margin: 22px auto 0; }

/* =====================================================================
   CARDS / FEATURE GRID
   ===================================================================== */
.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 920px) { .grid--3 { grid-template-columns: 1fr; } .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: linear-gradient(180deg, var(--surface), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 38px);
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.card__icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  display: grid; place-items: center; margin-bottom: 22px;
  background: rgba(79,9,24,0.20); color: var(--cream-soft);
  border: 1px solid rgba(79,9,24,0.40);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--cream-soft); }

/* =====================================================================
   SPLIT (story / image)
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split--reverse .split__media { order: -1; }
@media (max-width: 920px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

.media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  border: none;
  background: #000;
}
.media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 38%, rgba(0,0,0,0.85) 100%),
    linear-gradient(to right, rgba(0,0,0,0.28) 0%, transparent 28%, transparent 72%, rgba(0,0,0,0.28) 100%);
  pointer-events: none;
  z-index: 1;
}
.media__label {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--muted); font-style: italic; font-family: var(--font-display);
}
.media img { width: 100%; height: 100%; object-fit: cover; }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.quotes { position: relative; max-width: 880px; }
.quote {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(12px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
  pointer-events: none;
}
.quote.is-active { position: relative; opacity: 1; transform: none; pointer-events: auto; }
.quote .stars { color: var(--cream-soft); letter-spacing: 4px; margin-bottom: 20px; font-size: 1.1rem; }
.quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.4;
  color: var(--cream);
}
.quote cite { display: block; margin-top: 22px; font-style: normal; color: var(--muted); font-size: 0.95rem; }
.quotes__dots { display: flex; gap: 10px; margin-top: 36px; }
.quotes__dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0;
  background: var(--surface-3); transition: background var(--t-fast), transform var(--t-fast);
}
.quotes__dots button[aria-selected="true"] { background: var(--gold); transform: scale(1.25); }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta-band {
  position: relative;
  text-align: center;
  padding-block: clamp(70px, 10vw, 130px);
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(70% 130% at 50% 120%, rgba(79,9,24,0.28), transparent 55%),
    var(--ink-2);
}
.cta-band h2 { margin-bottom: 30px; }
.cta-band__actions { display: inline-flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center; }
.cta-band__actions .or { color: var(--muted); font-size: 0.9rem; }

/* =====================================================================
   SCHEDULE
   ===================================================================== */
.lineup { display: grid; gap: 16px; }
.gig {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(20px, 2.6vw, 30px);
  background: linear-gradient(180deg, var(--surface), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.gig:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.gig__day { font-family: var(--font-display); color: var(--muted); }
.gig__day b { display: block; font-size: 1.5rem; color: var(--cream); }
.gig__band h3 { margin-bottom: 4px; }
.gig__band p { color: var(--muted); font-size: 0.95rem; }
.gig__time { color: var(--cream-soft); font-variant-numeric: tabular-nums; white-space: nowrap; }
@media (max-width: 720px) {
  .gig { grid-template-columns: 1fr; gap: 8px; }
  .gig__time { color: var(--gold); }
}

/* A night with a photo (js/schedule.js) gets an extra column — cards with
   no photo are untouched, so most of the week still looks exactly as
   before. .gig--photo overrides .gig's own grid-template-columns below it. */
.gig--photo { grid-template-columns: 56px 110px 1fr auto; }
.gig__photo {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface-2);
}
.gig__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 720px) {
  .gig--photo {
    grid-template-columns: 56px 1fr;
    grid-template-areas: "photo day" "band band" "time time";
  }
  .gig--photo .gig__photo { grid-area: photo; }
  .gig--photo .gig__day   { grid-area: day; }
  .gig--photo .gig__band  { grid-area: band; }
  .gig--photo .gig__time  { grid-area: time; }
}

/* =====================================================================
   MENU
   ===================================================================== */
/* Kitchen / Bar tab toggle */
.menu-tabs {
  display: flex; justify-content: center; gap: 6px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.menu-tab {
  position: relative;
  background: transparent; border: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  color: var(--muted);
  padding: 6px 22px 12px;
  transition: color var(--t-fast) var(--ease);
}
.menu-tab:hover { color: var(--cream); }
.menu-tab[aria-selected="true"] { color: var(--cream); }
.menu-tab::after {
  content: ""; position: absolute; left: 22px; right: 22px; bottom: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: center;
  transition: transform var(--t-med) var(--ease);
}
.menu-tab[aria-selected="true"]::after { transform: scaleX(1); }

.menu-panel { display: none; }
.menu-panel.is-active { display: block; }
@media (prefers-reduced-motion: no-preference) {
  .menu-panel.is-active { animation: menuFade 480ms var(--ease-out); }
}
@keyframes menuFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.menu-note { margin-top: 10px; font-size: 0.92rem; }
.menu-subgroup-price { color: #9a7c2c; font-family: var(--font-display); font-size: 1.05rem; }

.menu-group { margin-bottom: clamp(40px, 6vw, 72px); }
.menu-group h2 { margin-bottom: 6px; }
.menu-group > .muted { margin-bottom: 28px; }
.menu-list { display: grid; gap: 4px; }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.menu-item__head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.menu-item h3 { font-size: 1.15rem; }
.menu-item__desc { color: var(--muted); font-size: 0.95rem; margin-top: 4px; }
.menu-item__price { font-family: var(--font-display); color: var(--cream); font-size: 1.2rem; font-variant-numeric: tabular-nums; }

/* Wine — two prices per line (glass / bottle) under a shared header. */
/* The header's price column is sized by its own labels rather than a fixed
   width, so it always matches the .menu-item "auto" column the rows use —
   at any breakpoint, without the two having to be kept in sync by hand. */
.wine-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.wine-head__labels,
.wine-price {
  display: grid;
  grid-template-columns: 62px 62px;
  gap: 10px;
  text-align: right;
}
.wine-head__labels {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.wine-price {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}
/* Bottle-only wines leave the glass cell blank — mark it rather than
   leaving a gap the eye reads as a missing price. */
.wine-price span:empty::before { content: "—"; color: var(--muted); opacity: 0.4; }

@media (max-width: 560px) {
  .wine-head__labels, .wine-price { grid-template-columns: 50px 50px; gap: 8px; }
  .wine-price { font-size: 0.95rem; }
}
.tag {
  font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream-soft); border: 1px solid rgba(79,9,24,0.55);
  background: rgba(79,9,24,0.18);
  padding: 2px 8px; border-radius: var(--r-pill);
}

/* =====================================================================
   ABOUT — celebrity story cards
   ===================================================================== */
.legend { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.4vw, 28px); }
@media (max-width: 720px) { .legend { grid-template-columns: 1fr; } }
.legend__card {
  position: relative;
  padding: clamp(28px, 3.4vw, 44px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(79,9,24,0.18), transparent 55%),
    linear-gradient(180deg, var(--surface), var(--ink-2));
  overflow: hidden;
}
.legend__card .big {
  font-family: var(--font-display); font-size: 4rem; color: rgba(79,9,24,0.22);
  position: absolute; top: 10px; right: 22px; line-height: 1;
}
.legend__card h3 { margin-bottom: 10px; }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { display: grid; gap: 26px; }
.info-item { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.info-item .ic { width: 44px; height: 44px; border-radius: var(--r-md); display: grid; place-items: center; background: rgba(79,9,24,0.20); color: var(--cream-soft); border: 1px solid rgba(79,9,24,0.35); }
.info-item .ic svg { width: 22px; height: 22px; }
.info-item h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; color: var(--cream); margin-bottom: 2px; }
.info-item a:hover { color: var(--gold); }
.map { width: 100%; aspect-ratio: 16/11; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }

/* ---- Reservation form ---- */
.form { display: grid; gap: 18px; text-align: left; margin-top: 30px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.02em; color: var(--cream); }
.field .req { color: #b04a3a; }
.field input, .field textarea, .field select {
  font: inherit; color: var(--cream); width: 100%; min-height: 48px;
  background: #18181c; border: 1px solid var(--line-strong);
  border-radius: var(--r-md); padding: 12px 14px;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field textarea { min-height: 108px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(79, 9, 24, 0.35);
}
/* Native select arrows vary a lot by browser/OS — draw our own so it matches
   the inputs beside it, and dim the placeholder option like a real placeholder. */
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a948a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
  padding-right: 42px;
}
.field select:invalid { color: var(--muted-2); }
.field select option { color: var(--cream); background: #18181c; }
.form__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.form__status { font-size: 0.95rem; margin: 0; }
.form__status.is-ok { color: #2f7d4f; }
.form__status.is-error { color: #b04a3a; }
.form__note { font-size: 0.84rem; color: var(--muted); margin-top: 2px; }
/* honeypot (spam trap) — hidden from humans */
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(0.92) contrast(0.9); }

/* =====================================================================
   FAQ — accordion
   ===================================================================== */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px; background: transparent; border: 0; text-align: left;
  font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--cream);
}
.faq__q .pm { position: relative; width: 20px; height: 20px; flex: none; }
.faq__q .pm::before, .faq__q .pm::after {
  content: ""; position: absolute; inset: 50% 0 auto 0; height: 1.8px; background: var(--cream-soft);
  transition: transform var(--t-med) var(--ease);
}
.faq__q .pm::after { transform: rotate(90deg); }
.faq__item.is-open .pm::after { transform: rotate(0); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height var(--t-med) var(--ease); }
.faq__a > div { padding: 0 4px 26px; color: var(--cream-soft); max-width: 70ch; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--ink-2); border-top: 1px solid var(--line); padding-block: clamp(48px, 7vw, 84px) 36px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }
.footer h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--cream-soft); margin-bottom: 18px; font-weight: 700; }
.footer p, .footer a { color: var(--muted); font-size: 0.96rem; }
.footer a:hover { color: var(--cream); }
.footer__brand b { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); letter-spacing: 0.06em; display: block; margin-bottom: 12px; }
.footer__links { display: grid; gap: 10px; }
.footer__bottom { margin-top: clamp(36px, 5vw, 56px); padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: 0.85rem; }

/* =====================================================================
   DARK "ACT" — slightly deeper black section for rhythm/contrast
   ===================================================================== */
.section--light {
  position: relative;
  background: #0c0508;
  color: var(--cream-soft);
}
.section--light > .container { position: relative; z-index: 1; }

/* Subtle crimson hairline separators */
.section--light::before,
.section--light::after {
  content: ""; position: absolute; left: 0; right: 0;
  height: 1px; z-index: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(79,9,24,0.45), transparent);
}
.section--light::before { top: 0; }
.section--light::after  { bottom: 0; }

/* scene = positioning context that clips the overflowing motif */
.scene { position: relative; overflow: clip; }
.scene > .container { position: relative; z-index: 1; }
.scene__motif { position: absolute; z-index: 0; pointer-events: none; will-change: transform; }
.scene__motif svg { width: 100%; height: auto; }
.scene__motif--a { top: -14%; right: -7%; width: min(46vw, 470px); opacity: 0.14; }
.scene__motif--b { bottom: -16%; left: -6%; width: min(30vw, 300px); opacity: 0.10; }
/* dark variant section — keep motifs at same whisper level */
.section--light .scene__motif--a { opacity: 0.16; }
.section--light .scene__motif--b { opacity: 0.12; }

/* on phones, slide the motif out toward the edges so only an arc peeks
   in at the corners — keeps it clear of heading text */
@media (max-width: 640px) {
  .scene__motif--a { top: -6%; right: -34%; width: 78vw; opacity: 0.08; }
  .scene__motif--b { bottom: -6%; left: -36%; width: 62vw; opacity: 0.06; }
  .section--light .scene__motif--a { opacity: 0.10; }
  .section--light .scene__motif--b { opacity: 0.08; }
}

/* =====================================================================
   CAROUSEL (galleries) + LIGHTBOX
   ===================================================================== */
.carousel { position: relative; }
.carousel__track {
  display: flex; gap: 18px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 6px 2px 18px; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }

.shot {
  flex: 0 0 auto; width: clamp(240px, 80vw, 420px); aspect-ratio: 4 / 3;
  scroll-snap-align: center; position: relative; padding: 0; cursor: pointer;
  border: none; border-radius: var(--r-lg); overflow: hidden;
  background: #000;
  color: var(--muted);
  transition: transform var(--t-med) var(--ease);
}
.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 38%, rgba(0,0,0,0.88) 100%);
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 900px) { .shot { width: 32%; } }
.shot:hover { transform: translateY(-4px); }
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shot__label { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-display); font-style: italic; font-size: 0.95rem; padding: 12px; text-align: center; }
.shot__zoom { position: absolute; right: 12px; bottom: 12px; z-index: 2; width: 36px; height: 36px; border-radius: 50%; background: rgba(10,10,12,0.6); display: grid; place-items: center; color: var(--cream); opacity: 0; transition: opacity var(--t-fast) var(--ease); }
.shot:hover .shot__zoom, .shot:focus-visible .shot__zoom { opacity: 1; }

.carousel__nav {
  position: absolute; top: 44%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: rgba(10,10,12,0.55);
  backdrop-filter: blur(8px); color: var(--cream); font-size: 1.5rem; line-height: 1;
  display: grid; place-items: center;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.carousel__nav:hover { background: var(--gold); color: #ffffff; }
.carousel__nav--prev { left: -8px; }
.carousel__nav--next { right: -8px; }
@media (max-width: 620px) { .carousel__nav { display: none; } }

/* Gallery grid (everything visible, click to enlarge) */
.gallery-group + .gallery-group { margin-top: clamp(40px, 6vw, 64px); }
.gallery-group__title {
  display: flex; align-items: center; gap: 16px;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem); margin-bottom: 22px;
}
.gallery-group__title::after { content: ""; flex: 1; height: 1px; background: var(--line-strong); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.5vw, 18px); }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid .shot { width: auto; flex: initial; scroll-snap-align: none; }

/* Lightbox (full-screen viewer) */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center; padding: clamp(16px, 4vw, 56px);
  background: rgba(6,6,8,0.93); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity var(--t-med) var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__stage { display: grid; place-items: center; }
.lightbox__stage img { max-width: min(1100px, 92vw); max-height: 84vh; border-radius: var(--r-md); display: block; }
.lightbox__ph {
  width: min(900px, 90vw); aspect-ratio: 4 / 3; display: grid; place-content: center; gap: 10px; text-align: center;
  border: 1px solid var(--line-strong); border-radius: var(--r-lg);
  background: repeating-linear-gradient(135deg, var(--surface) 0 26px, var(--surface-2) 26px 52px);
}
.lightbox__ph b { font-family: var(--font-display); font-size: 1.15rem; color: var(--cream); }
.lightbox__cap { margin-top: 16px; text-align: center; color: var(--cream-soft); font-size: 0.95rem; min-height: 1.2em; }
.lightbox__close, .lightbox__arrow {
  position: fixed; width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: rgba(255,255,255,0.06); color: var(--cream);
  display: grid; place-items: center; line-height: 1;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.lightbox__close { top: 18px; right: 18px; font-size: 1.3rem; }
.lightbox__arrow { top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
.lightbox__arrow--prev { left: 18px; }
.lightbox__arrow--next { right: 18px; }
.lightbox__close:hover, .lightbox__arrow:hover { background: var(--gold); color: #ffffff; }
@media (max-width: 620px) { .lightbox__arrow { width: 42px; height: 42px; } .lightbox__arrow--prev { left: 8px; } .lightbox__arrow--next { right: 8px; } }

/* Schedule week headings */
.week-title { font-size: clamp(1.4rem, 3vw, 2rem); margin: clamp(30px, 5vw, 48px) 0 20px; }
.week-title:first-child { margin-top: 0; }
.week-title span { font-family: var(--font-body); font-size: 1rem; font-weight: 500; }
.gig--tba { opacity: 0.6; }
.gig--tba .gig__band h3 { color: var(--muted); }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }
.reveal[data-delay="3"] { transition-delay: 270ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero { height: auto; }
  .hero__sticky { position: relative; height: 100vh; }
  .hero__layer { transform: none !important; }
  [data-parallax] { transform: none !important; }
  .scroll-hint, .hero__grain { display: none; }
  .mist__blob { animation: none; }
  .btn, .card, .gig { transition: none; }
}

/* =====================================================================
   SECTION BACKGROUND IMAGE
   ===================================================================== */
.section__bg {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.section__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.section__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0.88) 0%, rgba(10,10,12,0.72) 45%, rgba(10,10,12,0.92) 100%);
}
/* when section uses a bg photo, remove the opaque flat background */
.section--img-bg.section--light { background: transparent; }

/* =====================================================================
   TESTIMONIALS — split photo / crimson-panel layout
   ===================================================================== */
.quotes.quotes-split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 0;
  overflow: hidden;
  min-height: 420px;
}
.quotes-split__photo {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.quotes-split__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.quotes-split__photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,12,0.08) 0%, rgba(79,9,24,0.35) 55%, var(--gold) 100%),
    linear-gradient(180deg, rgba(10,10,12,0.40) 0%, transparent 20%, transparent 78%, rgba(10,10,12,0.40) 100%);
}
.quotes-split__panel {
  background: var(--gold);
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
/* override absolute inset so inactive quotes don't stretch the panel */
.quotes-split .quote { inset: auto; }
/* text colors on the crimson panel */
.quotes-split .stars { color: rgba(255,255,255,0.78); }
.quotes-split blockquote { color: #fff; font-size: clamp(1.05rem, 2vw, 1.55rem); }
.quotes-split cite { color: rgba(255,255,255,0.60); }
.quotes-split .quotes__dots { margin-top: 28px; }
.quotes-split .quotes__dots button { background: rgba(255,255,255,0.22); }
.quotes-split .quotes__dots button[aria-selected="true"] { background: rgba(255,255,255,0.90); transform: scale(1.3); }
@media (max-width: 760px) {
  .quotes.quotes-split { grid-template-columns: 1fr; }
  .quotes-split__photo { min-height: 240px; }
}

/* =====================================================================
   RESERVATION POLICY
   ===================================================================== */
.policy-list {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.policy-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--surface), var(--ink-2));
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--cream-soft);
  line-height: 1.55;
}
.policy-list li::before {
  content: "—";
  color: var(--gold-bright);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.policy-callouts { margin-top: 28px; display: grid; gap: 14px; }
.policy-callout {
  padding: 20px 24px;
  background: rgba(79,9,24,0.12);
  border: 1px solid rgba(79,9,24,0.35);
  border-radius: var(--r-md);
}
.policy-callout strong { display: block; color: var(--cream); margin-bottom: 6px; }
.policy-callout p { color: var(--cream-soft); line-height: 1.6; margin-top: 4px; }
.policy-callout a { color: var(--cream-soft); text-decoration: underline; text-underline-offset: 3px; }
.policy-callout a:hover { color: var(--cream); }

/* =====================================================================
   WHY COME — full-bleed band photo below the feature cards
   ===================================================================== */
.why__band {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: clamp(280px, 44vw, 540px);
}
.why__band img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.why__band::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(12,5,8,1) 0%,
      rgba(12,5,8,0.18) 18%,
      rgba(12,5,8,0.04) 44%,
      rgba(12,5,8,0.04) 58%,
      rgba(12,5,8,0.22) 82%,
      rgba(12,5,8,1) 100%
    ),
    linear-gradient(90deg, rgba(10,10,12,0.30) 0%, transparent 14%, transparent 86%, rgba(10,10,12,0.30) 100%);
}

/* =====================================================================
   ANNOUNCEMENTS — pop-up and bottom banner (js/site-features.js)
   ===================================================================== */
.announce-pop {
  position: fixed; inset: 0; z-index: 1100;
  display: grid; place-items: center; padding: 16px;
  background: rgba(6,6,8,0.78); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity var(--t-med) var(--ease);
}
.announce-pop.is-open { opacity: 1; }
.announce-pop__dialog {
  position: relative;
  width: min(480px, 100%);
  max-height: calc(100vh - 32px);
  overflow: auto;
  background: linear-gradient(180deg, var(--surface), var(--ink-2));
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  transform: translateY(14px) scale(0.98);
  transition: transform var(--t-med) var(--ease-out);
}
.announce-pop.is-open .announce-pop__dialog { transform: none; }
.announce-pop__media { aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--r-lg) var(--r-lg) 0 0; }
.announce-pop__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.announce-pop__body { padding: clamp(24px, 5vw, 36px); }
.announce-pop__body h2 { font-size: clamp(1.4rem, 4vw, 1.9rem); margin: 12px 0 10px; }
.announce-pop__body p { color: var(--cream-soft); margin-bottom: 22px; white-space: pre-line; }
.announce-pop__body p:last-child { margin-bottom: 0; }
.announce-pop__close {
  position: absolute; top: 12px; right: 12px; z-index: 1;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: rgba(10,10,12,0.6); color: var(--cream);
  display: grid; place-items: center; font-size: 1.3rem; line-height: 1;
  transition: background var(--t-fast) var(--ease);
}
.announce-pop__close:hover { background: var(--gold); }

.announce-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--gold);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 -10px 30px -12px rgba(0,0,0,0.7);
}
.announce-bar__inner {
  max-width: var(--container); margin-inline: auto;
  padding: 12px var(--gutter);
  display: flex; align-items: center; gap: 12px 20px; flex-wrap: wrap;
}
.announce-bar__text { flex: 1 1 260px; font-size: 0.95rem; margin: 0; }
.announce-bar__text b { font-weight: 700; margin-right: 4px; }
.announce-bar__link {
  color: #fff; font-weight: 600; font-size: 0.9rem; white-space: nowrap;
  text-decoration: underline; text-underline-offset: 3px;
}
.announce-bar__close {
  flex: 0 0 auto; margin-left: auto;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35); background: transparent; color: #fff;
  display: grid; place-items: center; font-size: 1.1rem; line-height: 1;
}
.announce-bar__close:hover { background: rgba(255,255,255,0.14); }

@media (prefers-reduced-motion: reduce) {
  .announce-pop, .announce-pop__dialog { transition: none; }
}
