/* ==========================================================================
   Graham's Kitchen — Component styles
   Depends on: tokens.css
   Component naming maps 1:1 to Framer: Nav/Header, Section/Hero, Card/Menu,
   Button/Primary, Section/Reviews, Section/CTA, Footer, etc.
   ========================================================================== */

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 300; }
h1 { font-size: var(--text-hero); font-style: italic; line-height: var(--lh-hero); letter-spacing: var(--track-hero); }
h2 { font-size: var(--text-h2); line-height: var(--lh-h2); }
h3 { font-size: var(--text-h3); font-style: italic; line-height: var(--lh-h3); }

p { max-width: var(--measure); color: var(--color-text); }
p + p { margin-top: var(--space-3); }
h2 + p, h3 + p { margin-top: var(--space-4); } /* heading-to-body rhythm — stops headings hugging their paragraph (5 Jul 2026) */
.text-soft { color: var(--color-text-soft); }

a { color: var(--color-brass-deep); transition: var(--transition-hover); }
a:hover { color: var(--color-brass); }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--color-text); color: var(--color-ivory);
  padding: var(--space-2) var(--space-3); z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- Layout primitives ---------- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--margin-desktop);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-pad); }
.section--stone { background: var(--bg-feature); }
.section--white { background: var(--color-white); }
.section--dark { background: var(--bg-dark); color: var(--color-sand); }
.section--dark p, .section--dark h2, .section--dark h3 { color: var(--color-sand); }

/* Overline / label — always Antique Brass */
.overline {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-overline);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: var(--track-overline);
  color: var(--color-brass);
  margin-bottom: var(--space-3);
}
.section--dark .overline { color: var(--color-sand); } /* never brass on dark */

/* Mobile-only: 14px overline reads too large on narrow screens (Sean, 6 Aug 2026).
   Desktop stays at --text-overline (14px); mobile drops to 12px. */
@media (max-width: 860px) {
  .overline { font-size: 12px; }
}

/* Mobile-only: hide all "Book a table" CTAs — nav, drawer, hero and mid-page
   buttons — sitewide (Sean, 6 Aug 2026). The Guestplan floating widget is the
   persistent booking CTA on mobile. Desktop keeps every one of these buttons
   untouched; this rule only fires under 860px. */
@media (max-width: 860px) {
  a.btn--primary[href="/book.html"] { display: none; }
}

/* Mobile-only: keep only the Richard and David quotes in Section/Reviews,
   hide the other four (Sean, 6 Aug 2026). Desktop keeps all six untouched;
   this only fires under 860px. Order in markup: 1 David, 2 Mihaly, 3 Richard,
   4 Michael, 5 Michele, 6 Hans — hiding 2, 4, 5, 6. */
@media (max-width: 860px) {
  .quotes__grid .quote-card:nth-child(2),
  .quotes__grid .quote-card:nth-child(4),
  .quotes__grid .quote-card:nth-child(5),
  .quotes__grid .quote-card:nth-child(6) {
    display: none;
  }
}

.caption {
  font-size: var(--text-caption);
  color: var(--color-text-mist);
  line-height: 1.6;
}

/* ---------- Button/Primary · Button/Secondary · Button/Ghost ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-button);
  text-transform: uppercase;
  letter-spacing: var(--track-button);
  text-decoration: none;
  border-radius: var(--radius-button); /* never pill */
  padding: 13px 30px;
  min-height: 44px;
  line-height: 1.3;
  cursor: pointer;
  transition: var(--transition-hover);
  border: 1px solid transparent;
  text-align: center;
}
.btn--primary { background: var(--color-brass); color: #FFFFFF; font-weight: 500; } /* white text + medium weight: primary must be the most confident element (WCAG AA) */
.btn--primary:hover, .btn--primary:focus { background: var(--color-brass-deep); color: #FFFFFF; }
.btn--secondary { background: transparent; border-color: var(--color-brass); color: var(--color-brass); }
.btn--secondary:hover, .btn--secondary:focus { border-color: var(--color-brass-deep); color: var(--color-brass-deep); }
.btn--ghost { background: transparent; border-color: var(--color-text); color: var(--color-text); }
.btn--ghost:hover, .btn--ghost:focus { background: var(--color-text); color: var(--color-ivory); }

/* On dark sections: Sand fill / Near Black text — never brass on dark */
.section--dark .btn--primary,
.booking-band--dark .btn--primary { background: var(--color-sand); color: var(--color-text); }
.section--dark .btn--primary:hover { background: var(--color-ivory); color: var(--color-text); }
.section--dark .btn--secondary { border-color: var(--color-sand); color: var(--color-sand); }
.section--dark .btn--secondary:hover { background: var(--color-sand); color: var(--color-text); }

.btn-row { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-5); }

/* ---------- Nav/Header ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0;
  height: var(--nav-height);
  display: flex; align-items: center;
  z-index: 100;
  transition: var(--transition-nav);
  background: transparent;
}
.nav__inner {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4);
}
.nav__logo {
  display: flex; align-items: center;
  text-decoration: none;
  transition: var(--transition-nav);
}
/* Logo images: white-text PNG over hero, black-text webp on white nav */
.nav__logo-img { height: 36px; width: auto; display: block; }
.nav__logo-img--dark { display: none; }
.nav--scrolled .nav__logo-img--light,
.nav--solid .nav__logo-img--light { display: none; }
.nav--scrolled .nav__logo-img--dark,
.nav--solid .nav__logo-img--dark { display: block; }
.nav__links { display: flex; align-items: center; gap: var(--space-5); list-style: none; }
.nav__link {
  font-size: var(--text-nav);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: var(--track-nav);
  text-decoration: none;
  color: var(--color-ivory);
  padding-block: var(--space-2);
  transition: var(--transition-nav);
}
.nav__link:hover { color: var(--color-sand); }
.nav__link[aria-current="page"] {
  color: var(--color-brass);
  border-bottom: 1px solid var(--color-brass);
}

/* Scrolled state: white bg, Burgundy links, brass active (Brand Decisions §8) */
.nav--scrolled { background: var(--color-white); box-shadow: 0 1px 0 var(--border-soft); }
.nav--scrolled .nav__logo { color: var(--color-burgundy); }
.nav--scrolled .nav__link { color: var(--color-burgundy); }
.nav--scrolled .nav__link:hover { color: var(--color-brass); }
.nav--scrolled .nav__link[aria-current="page"] { color: var(--color-brass); }

/* Interior pages (no hero image): start in scrolled style */
.nav--solid { background: var(--color-white); box-shadow: 0 1px 0 var(--border-soft); }
.nav--solid .nav__logo, .nav--solid .nav__link { color: var(--color-burgundy); }
.nav--solid .nav__link:hover { color: var(--color-brass); }
.nav--solid .nav__link[aria-current="page"] { color: var(--color-brass); }

/* Hamburger — Antique Brass */
.nav__toggle {
  display: none;
  background: none; border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  flex-direction: column; justify-content: center; gap: 6px;
}
.nav__toggle span { display: block; width: 26px; height: 2px; background: var(--color-brass); margin-inline: auto; transition: transform 200ms ease; }

/* Nav/MobileDrawer — slides from right, Warm Stone */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--color-stone);
  z-index: 150;
  transform: translateX(100%);
  transition: transform 250ms ease;
  padding: var(--space-8) var(--space-4) var(--space-4);
  display: flex; flex-direction: column; gap: var(--space-4);
}
.drawer.is-open { transform: translateX(0); }
.drawer__close { position: absolute; top: var(--space-3); right: var(--space-3); background: none; border: none; font-size: 28px; color: var(--color-brass); cursor: pointer; width: 44px; height: 44px; }
.drawer__link {
  font-size: 1rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: var(--track-nav);
  color: var(--color-text); text-decoration: none;
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--border-soft);
}
.drawer__link[aria-current="page"] { color: var(--color-brass); }
.drawer__backdrop {
  position: fixed; inset: 0; background: rgba(28,28,28,0.4);
  opacity: 0; pointer-events: none; transition: opacity 200ms ease; z-index: 140;
}
.drawer__backdrop.is-open { opacity: 1; pointer-events: auto; }

/* Sticky mobile Book button — all scroll positions */
.sticky-book {
  display: none;
  position: fixed; left: var(--space-3); right: var(--space-3); bottom: var(--space-3);
  z-index: 120;
  text-align: center;
}

/* ---------- Section/Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: flex-end;
  padding-block: var(--space-10) var(--space-8);
  color: var(--color-ivory);
}
.hero__bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,28,28,0.35) 0%, rgba(28,28,28,0.15) 40%, rgba(28,28,28,0.65) 100%);
}
.hero__content { position: relative; z-index: 1; }
.hero__overline { color: var(--color-sand); }
.hero h1 { color: var(--color-ivory); max-width: 14ch; }
.hero__sub { margin-top: var(--space-4); color: var(--color-ivory); font-size: 1.125rem; max-width: 52ch; }
.hero__location { margin-top: var(--space-2); color: var(--color-sand); font-size: var(--text-caption); letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Section/HeroSplit — Option B: text on solid Warm Stone panel, image beside ---------- */
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  min-height: 92vh;
}
.hero-split__panel {
  background: var(--color-stone);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-height) + var(--space-6)) var(--space-6) var(--space-8);
}
/* line-height 1.04 overrides --lh-hero (0.94) on purpose: tighter value collides italic descenders on the line below (5 Jul 2026, see DESIGN.md §7) */
/* Size override (5 Jul 2026): H1 is now the 8-word welcome line, twice the length the 80–96px
   scale was set for. Scoped down to ~64px max so it holds two clean lines (break forced at the
   comma in the markup). Brand Decisions scale still applies to short H1s elsewhere. */
.hero-split__panel h1 { max-width: none; line-height: 1.08; font-size: clamp(2.25rem, 4.6vw, 4rem); }
.hero-split__sub { margin-top: var(--space-4); font-size: 1.125rem; max-width: 52ch; }
.hero-split__sub--lead { font-family: var(--font-display); font-weight: 300; font-style: italic; font-size: 1.75rem; line-height: 1.2; color: var(--color-brass-deep); max-width: 40ch; } /* the emotional hook — Jost 300 italic pull-quote style (per tokens: Jost italic for pull quotes; Cormorant is logo-only) */
.hero-split__panel .proof-line { margin-top: var(--space-6); }
.hero-split__media { position: relative; min-height: 320px; }
.hero-split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  /* minmax(0,1fr) not 1fr: 1fr has implicit min-width:auto, so the non-wrapping
     overline forced the column to 425px inside a 390px viewport (fixed 5 Aug 2026). */
  .hero-split { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .hero-split__media { order: -1; position: relative; aspect-ratio: 4 / 3; min-height: 0; margin-top: var(--nav-height); }
  .hero-split__panel { padding: var(--space-7) var(--space-4) var(--space-7); }
}

/* AwardBand — badge + award line, centred under the review quotes (5 Jul 2026).
   Badge is the official Tripadvisor asset, unaltered; kept small so its green
   accents rather than dominates the Warm Stone palette. */
/* Three-part row: ratings | badge | award line. Badge stays optically centred by
   giving the two text columns equal width (Sean, 5 Aug 2026). */
.award-band {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  gap: var(--space-5);
}
.award-band img { width: 96px; height: auto; flex-shrink: 0; }

/* Ratings column — right-aligned so it settles against the badge */
.award-band__ratings {
  display: flex; flex-direction: column; gap: var(--space-2);
  justify-self: end; text-align: right;
  font-family: var(--font-display); font-style: normal; font-weight: 300;
  font-size: 1.5rem; /* matches Card/Testimonial quote size, not italic (Sean, 6 Aug 2026) */
  letter-spacing: 0.06em;
  color: var(--color-text);
}
.award-band__ratings span { white-space: nowrap; }

/* Award column — left-aligned, mirroring the ratings. Matches Card/Testimonial
   quote type (Jost 300, 1.5rem) but not italic (Sean, 6 Aug 2026). */
.award-band__award {
  justify-self: start; text-align: left;
  font-family: var(--font-display); font-style: normal; font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.3; color: var(--color-text);
}
.award-band__award span { display: inline-block; margin-top: var(--space-1, 0.25rem); font-family: var(--font-body, inherit); font-style: normal; font-weight: 300; font-size: 1.125rem; color: var(--color-text-soft, inherit); }

/* Stack on narrow screens — badge, then award, then ratings (Sean, 6 Aug 2026,
   was badge/ratings/award). Desktop 3-column layout above is untouched. */
@media (max-width: 860px) {
  .award-band { grid-template-columns: 1fr; gap: var(--space-4); }
  .award-band img { order: -1; }
  .award-band__award { order: 0; justify-self: center; text-align: center; }
  .award-band__ratings { order: 1; justify-self: center; text-align: center; }

  /* Mobile-only: reduce ratings + award text to 16px (Sean, 6 Aug 2026, was 12px).
     Desktop keeps the 1.5rem/1.125rem sizes defined above. */
  .award-band__ratings,
  .award-band__award,
  .award-band__award span {
    font-size: 16px;
  }
}

/* ProofLine — single reusable proof component, sources always named exactly */
.proof-line {
  display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-4);
  margin-top: var(--space-6);
  font-size: var(--text-caption);
  letter-spacing: 0.06em;
  color: var(--color-sand);
}
.proof-line--light { color: var(--color-text-soft); }
.proof-line span { white-space: nowrap; }
.proof-line--stack { flex-direction: column; flex-wrap: nowrap; gap: var(--space-2); }

/* Interior page header (Section/PageIntro) */
.page-intro { padding: calc(var(--nav-height) + var(--space-8)) 0 var(--space-8); background: var(--bg-feature); }
.page-intro h1 { font-size: var(--text-h2); line-height: var(--lh-h2); font-style: normal; max-width: 20ch; }
/* Intro lead = standfirst: Near Black, 21px, sits between H1 and section body (5 Jul 2026) */
.page-intro p { margin-top: var(--space-5); color: var(--color-text); font-size: 1.3125rem; line-height: 1.55; max-width: 48ch; }

/* ---------- Section split layout (image + copy) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.split--flip .split__media { order: 2; }

/* ---------- Section/Reviews — quotes strip ---------- */
.quotes { background: var(--bg-feature); }
.quotes__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-6);
}
/* Card/Testimonial */
.quote-card { display: flex; flex-direction: column; gap: var(--space-3); }
.quote-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--color-text);
}
.quote-card cite { font-style: normal; }
.quote-card figcaption { font-size: 1.125rem; } /* 18px — was inherited 13px .caption size (Sean, 6 Aug 2026) */

/* ---------- Card/Menu — dish + pricing patterns ---------- */
.menu-frame {
  border: 1px solid var(--border-soft);
  background: var(--color-ivory);
  padding: var(--space-7) var(--space-6);
}
.price-table { width: 100%; border-collapse: collapse; margin-top: var(--space-5); }
.price-table th { text-align: left; font-weight: 400; font-size: var(--text-caption); text-transform: uppercase; letter-spacing: var(--track-overline); color: var(--color-brass); padding-bottom: var(--space-3); }
.price-table td { padding-block: var(--space-3); border-top: 1px solid var(--border-soft); vertical-align: baseline; }
.price-table .price { font-family: var(--font-display); font-size: var(--text-price); text-align: right; }
.price-table .note { font-size: var(--text-caption); color: var(--color-text-mist); }

.dish { padding-block: var(--space-4); border-top: 1px solid var(--border-soft); }
.dish:first-of-type { border-top: none; }
.dish__name { font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; }
.dish__desc { color: var(--color-text-soft); font-size: 1rem; margin-top: var(--space-1); }

/* Burgundy reserved for tasting-menu headings only */
.tasting-heading { color: var(--color-burgundy); }

/* ---------- Section/GroupTiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-top: var(--space-6); }
.tier {
  background: var(--color-white);
  padding: var(--space-5) var(--space-4);
  display: flex; flex-direction: column; gap: var(--space-3);
}
.tier__num { font-family: var(--font-display); font-weight: 100; font-size: 3.5rem; line-height: 1; color: var(--color-brass-pale); }
.tier__title { font-family: var(--font-body); font-weight: 400; font-size: var(--text-card); }
.tier p { font-size: 1rem; color: var(--color-text-soft); }
.tier .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Card/Chef ---------- */
.chef-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); margin-top: var(--space-6); }
.chef-card__media img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.chef-card__role { margin-top: var(--space-1); }
.chef-card h3 { margin-top: var(--space-4); font-style: normal; font-size: 1.75rem; }
.chef-card p { margin-top: var(--space-3); font-size: 1rem; color: var(--color-text-soft); }

/* ---------- Section/CTA — booking band (every page ends here) ---------- */
.booking-band { background: var(--bg-feature); text-align: center; padding-block: var(--space-8); }
.booking-band--dark { background: var(--bg-dark); }
.booking-band--dark h2 { color: var(--color-sand); }
.booking-band h2 { max-width: 22ch; margin-inline: auto; }
.booking-band p { margin: var(--space-4) auto 0; color: var(--color-text-soft); }
.booking-band--dark p { color: var(--color-sand); }
.booking-band .btn-row { justify-content: center; }

/* ---------- Placeholder (labelled, styled — never silent) ---------- */
.placeholder {
  border: 1px dashed var(--color-brass-pale);
  background: var(--color-ivory);
  padding: var(--space-6) var(--space-4);
  text-align: center;
  color: var(--color-text-soft);
  font-size: 1rem;
}
.placeholder strong { display: block; color: var(--color-brass-deep); font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; font-size: var(--text-caption); margin-bottom: var(--space-2); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-dark); color: var(--color-sand); padding-block: var(--space-8) var(--space-6); }
.footer a { color: var(--color-sand); }
.footer a:hover { color: var(--color-ivory); }
.footer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.footer__heading { font-family: var(--font-body); font-weight: 400; font-size: var(--text-caption); text-transform: uppercase; letter-spacing: var(--track-overline); margin-bottom: var(--space-3); color: var(--color-ivory); }
.footer address { font-style: normal; line-height: var(--lh-body); }
.footer__logo { font-family: var(--font-logo); font-style: italic; font-weight: 300; font-size: 26px; color: var(--color-ivory); text-decoration: none; }
.footer__meta { margin-top: var(--space-7); padding-top: var(--space-4); border-top: 1px solid rgba(216,199,165,0.25); display: flex; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; font-size: var(--text-caption); color: var(--color-text-mist); }

/* ---------- Reveal on entry (subtle, once) ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 300ms ease, transform 300ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .container { padding-inline: var(--margin-mobile); }
  .split, .chef-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .split--flip .split__media { order: 0; }
  .quotes__grid { grid-template-columns: 1fr 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-5); }
}

@media (max-width: 720px) {
  :root { --section-pad: var(--space-7); --nav-height: 72px; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .sticky-book { display: block; }
  body { padding-bottom: 88px; } /* clear the sticky Book button */
  .quotes__grid { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; padding-bottom: var(--space-7); }
  .menu-frame { padding: var(--space-5) var(--space-4); }
  .btn-row .btn { width: 100%; }
}


/* Legal pages (privacy policy, 5 Aug 2026) — readable measure, quiet hierarchy.
   Reuses existing type tokens; introduces no new fonts or colours. */
.legal { max-width: 68ch; }
.legal h2 { font-family: var(--font-display); font-weight: 300; font-size: 1.75rem; line-height: 1.25; margin-top: var(--space-7); margin-bottom: var(--space-3); }
.legal h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.125rem; margin-top: var(--space-5); margin-bottom: var(--space-2); }
.legal p, .legal li { font-size: 1rem; line-height: 1.7; color: var(--color-text); }
.legal p { margin-bottom: var(--space-3); }
.legal ul { margin: 0 0 var(--space-3) 1.25rem; }
.legal li { margin-bottom: var(--space-2); }
.legal address { font-style: normal; line-height: 1.7; margin-bottom: var(--space-3); }
.legal a { color: var(--color-brass-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal > .caption:first-child { margin-bottom: var(--space-5); }
.footer__meta a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* OccasionBanner — site-wide notice, dashboard-controlled (Aug 2026).
   Hidden [hidden] by default; wix-data.js removes the attribute and fills
   .occasion-banner__text only when SiteAnnouncement.enabled === true.
   Brass, not Burgundy — Burgundy is reserved for tasting-menu content only. */
.occasion-banner {
  background: var(--color-brass);
  color: var(--color-ivory);
}
.occasion-banner__inner {
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  padding: var(--space-2) var(--space-4);
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--text-caption);
  letter-spacing: 0.02em;
}
