/* =========================================================
   The Galley Restaurant — Prototype Stylesheet
   Visual register: pale coastal surfaces, blue-green ceramics,
   natural light, generous negative space. Food is the hero.
   ========================================================= */

:root {
  --ivory:        #f6f1e9;
  --ivory-2:      #efe8dc;
  --paper:        #fbf8f2;
  --ink:          #18201f;
  --ink-2:        #3a4543;
  --mute:         #6e7773;
  --estuary:      #013aa3;   /* royal blue — exact match to logo asset background */
  --estuary-2:    #1a5fc5;   /* lighter royal accent */
  --sage:         #8fa098;
  --sand:         #c9b79a;
  --shell:        #e8dfcf;
  --hair:         rgba(24,32,31,.14);
  --hair-2:       rgba(24,32,31,.08);
  /* Coastal tokens */
  --driftwood:    #ede4d2;   /* pale weathered wood */
  --driftwood-2:  #e2d7c0;   /* slightly darker plank */
  --seaglass:     #c3d4c8;   /* pale sea glass green */
  --seaglass-2:   #9dbab0;   /* mid sea glass */
  --foam:         #f3efe7;   /* foam off-white */
  --tide:         #3d6691;   /* mid steel-blue, for accents */
  /* Gold brand */
  --gold:         #b89156;   /* primary brand gold */
  --gold-2:       #c9a668;   /* lighter gold */
  --gold-3:       #9a7740;   /* darker hover gold */
  --gold-ink:     #8a6a3a;   /* gold text on light */
  /* Watercolour sky */
  --sky:          #b8cedc;   /* pale blue watercolour */
  --sky-2:        #d5e0e8;   /* lighter sky */

  --f-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --f-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, Menlo, monospace;
  --f-script:  "Allura", "Cormorant Garamond", cursive;

  --max:  1240px;
  --narrow: 860px;

  --t-ease: cubic-bezier(.2,.6,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Accessibility: visible focus rings for keyboard users (no impact on mouse users) */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 1px;
}
.btn:focus-visible,
.book-bar:focus-visible,
.book-tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.btn-primary:focus-visible,
.book-bar:focus-visible {
  outline-color: var(--ink);
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}
.slot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 .5em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); }
h4 { font-size: 1.15rem; letter-spacing: .02em; }

p { margin: 0 0 1em; color: var(--ink-2); }
.lede { font-family: var(--f-display); font-size: clamp(1.3rem, 2.1vw, 1.7rem); line-height: 1.35; color: var(--ink); font-style: italic; }

.eyebrow {
  font-family: var(--f-body);
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--estuary);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

.rule {
  width: 42px; height: 1px; background: var(--ink); margin: 1.2rem 0 1.5rem;
  opacity: .6;
}

/* ---------- Layout ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: var(--narrow); margin: 0 auto; padding: 0 28px; }

section { padding: clamp(64px, 10vw, 128px) 0; }
section.tight { padding: clamp(40px, 6vw, 72px) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr 1fr; gap: 24px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--estuary);
  color: var(--ivory);
  font-size: .82rem;
  letter-spacing: .08em;
  text-align: center;
  padding: 4px 16px;
  display: flex; align-items: center; justify-content: center; gap: 18px;
  flex-wrap: wrap;
  position: relative;
  z-index: 60;
}
.topbar .bib-badge {
  width: 64px; height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0,0,0,.4);
  order: 1;
}
.topbar-tagline { order: 2; }
.topbar .aa-badge {
  height: 52px;
  width: auto;
  max-width: 64px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0,0,0,.25);
  order: 3;
}
.topbar .aa-label {
  /* AA label inherits .topbar strong styling */
}

/* Michelin disc — source PNG now has a properly transparent background
   (white corners knocked out), so no CSS clipping is needed. */
/* Badge labels removed — just badges + tagline. The text was redundant
   alongside the recognisable Michelin and AA marks. */
.topbar strong { display: none; }

.footer-brand-mark {
  display: block;
  width: 200px; height: auto;
  margin: -22px 0 6px -22px;
}

/* Gold trim on every navy band (topbar, trust band, full-bleed navy sections, footer) */
.topbar,
.trust,
section[style*="--estuary"],
footer {
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

/* ---------- Header / Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 242, .88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--hair-2);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-left { justify-self: end; }
.nav-right { justify-self: start; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-2); transition: color .2s var(--t-ease);
}
.nav-links a:hover:not(.btn), .nav-links a.active:not(.btn) { color: var(--estuary); }
/* Make sure .btn colours win over .nav-links a */
.nav-links a.btn { color: var(--ink); }
.nav-links a.btn-primary { color: var(--ink); }
.nav-links a.btn-primary:hover { color: var(--ivory); }
.nav-links a.btn:hover { color: var(--ivory); }
/* Nav BOOK button: match floating book-bar dimensions exactly */
.nav-links a.btn-primary {
  padding: 14px 22px; gap: 10px;
  font-size: .78rem; line-height: 1.6;
  border: none;
  text-indent: .18em;
  white-space: nowrap;
}
.nav-links a.btn-primary svg { width: 16px; height: 16px; }

.logo {
  text-align: center;
  color: var(--estuary);
  line-height: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: color .2s;
  text-decoration: none;
}
.logo:hover { color: var(--estuary-2); }
.logo-the {
  font-family: var(--f-script);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: -10px;
}
.logo-galley {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.55rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1;
}
.logo .tagline {
  font-size: .58rem;
  letter-spacing: .32em;
  color: var(--estuary);
  opacity: .75;
  font-family: var(--f-body);
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  padding: 0 16px;
}
.logo .tagline::before,
.logo .tagline::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 1px;
  background: var(--estuary);
  opacity: .5;
}
.logo .tagline::before { left: -2px; }
.logo .tagline::after  { right: -2px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f-body);
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 14px 26px;
  border: 1px solid var(--ink);
  color: var(--ink); background: transparent;
  transition: all .25s var(--t-ease);
  cursor: pointer;
  text-indent: .18em; /* optical compensation for trailing letter-spacing */
}
.btn:hover { background: var(--ink); color: var(--ivory); }
.btn-primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-3); border-color: var(--gold-3); color: var(--ivory); }
.btn-gold-outline { border-color: var(--gold); color: var(--gold-ink); }
.btn-gold-outline:hover { background: var(--gold); color: var(--ivory); border-color: var(--gold); }
.btn-estuary { background: var(--estuary); color: var(--ivory); border-color: var(--estuary); }
.btn-estuary:hover { background: var(--ink); border-color: var(--ink); }
.btn-light { border-color: var(--ivory); color: var(--ivory); }
.btn-light:hover { background: var(--ivory); color: var(--ink); }
.btn-sm { padding: 8px 16px; font-size: .72rem; line-height: 1.2; }
.btn-sm svg { width: 13px; height: 13px; }
.btn svg { width: 16px; height: 16px; }

/* ---------- Mobile nav (hamburger + overlay) ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  margin: 0;
  cursor: pointer;
  color: var(--ink);
  grid-column: 1;
  justify-self: start;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  margin: 5px 0;
  transition: transform .28s var(--t-ease), opacity .2s;
  transform-origin: center;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--paper);
  z-index: 105;
  padding: 80px 32px 48px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--t-ease);
}
.mobile-nav a {
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--ink);
  padding: 14px 20px;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
}
.mobile-nav a svg { display: none; }
.mobile-nav a.active { color: var(--gold); }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-nav-phone {
  margin-top: auto;
  font-family: var(--f-sans);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-ink);
  padding: 24px 0 0;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: auto 1fr auto; gap: 12px; }
  .nav-inner > .logo { grid-column: 2; justify-self: center; }
  .mobile-nav { display: flex; }
}

body.menu-open { position: fixed; width: 100%; }
body.menu-open .nav {
  z-index: 110;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  pointer-events: none;
}
body.menu-open .nav-toggle,
body.menu-open .nav-book-mobile { pointer-events: auto; }
body.menu-open .mobile-nav {
  opacity: 1;
  pointer-events: auto;
}
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero (watercolour variant — Galley brand mark) ---------- */
.hero-watercolour {
  position: relative;
  min-height: auto;
  background: var(--paper);
  overflow: visible;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 104px 28px 28px;
}
.hero-watercolour::before {
  /* Full-bleed watercolour — bleeds upward behind the cream nav for visual continuity */
  content: "";
  position: absolute;
  top: -180px;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("assets/hero-watercolour.png");
  background-size: cover;
  background-position: 42% 25%;
  background-repeat: no-repeat;
  opacity: .2;
  filter: saturate(.65);
  pointer-events: none;
  z-index: 1;
}
.hero-watercolour::after {
  /* Paper whitewash so the gold wordmark and sub copy stay crisp */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at center, rgba(246,241,233,.88) 0%, rgba(246,241,233,.55) 55%, rgba(246,241,233,0) 100%),
    linear-gradient(180deg, rgba(246,241,233,.35) 0%, rgba(246,241,233,0) 30%, rgba(246,241,233,0) 70%, var(--paper) 100%);
  pointer-events: none;
  z-index: 2;
}
.hero-watercolour .hero-inner {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-watercolour .hero-eyebrow {
  font-size: .72rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 14px;
  font-weight: 500;
}
.hero-watercolour .hero-eyebrow::before,
.hero-watercolour .hero-eyebrow::after {
  display: block;
  width: 32px;
  background: var(--gold);
  opacity: .55;
}
.hero-watercolour h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 7.5vw, 6rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  line-height: 1;
  text-indent: .1em; /* optical compensation for trailing letter-space */
}
.hero-watercolour h1.hero-mark {
  text-indent: 0;
  letter-spacing: 0;
  display: block;
}
.hero-watercolour h1.hero-mark img {
  display: block;
  width: clamp(150px, 15vw, 200px);
  height: auto;
  margin: 0 auto;
}
/* Mobile-only awards badges in the hero (hidden on desktop). */
.hero-badges { display: none; }
.hero-watercolour .rule-gold {
  width: 140px; height: 1px;
  background: var(--gold);
  opacity: .5;
  margin: 18px auto 16px;
}
.hero-watercolour .hero-sub {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-2);
  max-width: 40ch;
  margin: 0 auto 24px;
  line-height: 1.5;
  font-style: italic;
}
.hero-watercolour .hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  margin-top: 28px;
}
/* Desktop-only variant — mobile gets the bottom-nav BOOK pill instead. */
.hero-watercolour .hero-cta--desktop-only { display: flex; }
@media (max-width: 900px) {
  .hero-watercolour .hero-cta--desktop-only { display: none; }
}
.hero-watercolour .hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: var(--gold);
  font-size: 1.4rem;
  opacity: .7;
  animation: gentlebob 2.4s ease-in-out infinite;
}
@keyframes gentlebob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 900px) {
  /* Mobile hero — fills the visible area above the trust band so that
     the trust band sits flush with the fixed bottom nav.
     Heights subtracted: topbar 50 + nav 92 + trust 143 + bottom-nav 61 ≈ 346px */
  /* Mobile: hide top awards banner — badges move into the hero instead. */
  .topbar { display: none; }
  .hero-watercolour {
    min-height: calc(100svh - 315px);
    padding: 28px 20px 10px;
  }
  .hero-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 22px;
  }
  .hero-badges img { display: block; height: auto; }
  .hero-badges img[alt*="Michelin"] { width: 78px; }
  .hero-badges img[alt*="AA"] { width: 74px; }
  .hero-watercolour .hero-inner { gap: 0; }
  .hero-watercolour .hero-eyebrow {
    margin-bottom: 18px;
    font-size: .82rem;
    letter-spacing: .38em;
  }
  .hero-watercolour h1 { letter-spacing: .04em; }
  .hero-watercolour h1.hero-mark img {
    width: 200px;
    margin-bottom: 24px;
  }
  .hero-watercolour .hero-sub {
    margin: 0;
    font-size: 1.35rem;
    color: var(--ink);
    /* Soft cream halo behind each glyph — lifts the italic off the
       busy plate without losing the watercolour-paper feel. */
    text-shadow:
      0 0 6px rgba(246,241,233,.95),
      0 0 14px rgba(246,241,233,.7),
      0 1px 0 rgba(246,241,233,.6);
  }
  /* Food watermark behind the hero — pan-fried sea bream with puttanesca,
     Han's signature dish (per DRIFT Journal). Optimised from gh097
     source (40MB → 305KB, max 1800px). */
  .hero-watercolour::before {
    display: block;
    top: 0;
    background-image: url('assets/hero-sea-bream-plate.jpg');
    background-size: cover;
    background-position: center 50%;
    background-repeat: no-repeat;
    opacity: .58;
    filter: saturate(.9) contrast(1);
  }
  .hero-watercolour::after {
    display: block;
    background:
      /* Tighter paper halo so the wordmark stays crisp but the plate
         around it shows through more clearly */
      radial-gradient(ellipse 60% 42% at center 38%, rgba(246,241,233,.9) 0%, rgba(246,241,233,.55) 50%, rgba(246,241,233,.15) 90%, rgba(246,241,233,0) 100%),
      /* Top fade for header-line blend, bottom fade into trust-band gold-strip */
      linear-gradient(180deg, rgba(246,241,233,.55) 0%, rgba(246,241,233,0) 30%, rgba(246,241,233,0) 75%, var(--paper) 100%);
  }
}

/* ---------- Hero (photo variant) ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  color: var(--ivory);
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(.95);
}
.hero-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,28,27,.25) 0%, rgba(20,28,27,.05) 40%, rgba(20,28,27,.75) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto;
  padding: 0 28px 80px;
  width: 100%;
}
.hero h1 {
  color: var(--ivory);
  max-width: 14ch;
  margin-bottom: .3em;
}
.hero-eyebrow {
  font-size: .78rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--sand); display: inline-flex; gap: 14px; align-items: center;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ""; width: 26px; height: 1px; background: var(--sand); opacity: .8;
}
.hero-eyebrow::before { display: none; }
.hero-sub {
  max-width: 48ch;
  color: rgba(246,241,233,.85);
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Trust bar under hero */
.trust {
  background: var(--estuary);
  color: var(--ivory);
  padding: 28px 0;
}
.trust-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  align-items: center;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; gap: 6px; }
.trust-item .t-label { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sand); }
.trust-item .t-value { font-family: var(--f-display); font-size: 1.4rem; letter-spacing: .01em; color: var(--ivory); }
.trust-sep { width: 1px; background: rgba(246,241,233,.2); height: 32px; margin: 0 auto; }

@media (max-width: 760px) {
  .trust { padding: 20px 0 24px; }
  .trust-inner {
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
    padding: 0 18px;
  }
  .trust-item { gap: 4px; }
  .trust-item .t-label {
    font-size: .58rem;
    letter-spacing: .18em;
  }
  .trust-item .t-value {
    font-size: 1.05rem;
    line-height: 1.1;
  }
  /* Hide the muted secondary credential on mobile.
     "Retained since 2023" etc. are nice-to-have on desktop but make the
     trust grid uneven on small screens — they live on the press/awards page. */
  .trust-item .t-label:last-child { display: none; }
}

/* ---------- Cards / image blocks ---------- */
.image-block { position: relative; overflow: hidden; }
.image-block img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--t-ease); }
.image-block:hover img { transform: scale(1.03); }
.image-block .caption {
  position: absolute; bottom: 16px; left: 16px;
  color: var(--ivory);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  background: rgba(24,32,31,.5);
  padding: 6px 10px;
  backdrop-filter: blur(6px);
}

.dish {
  border-top: 1px solid var(--hair);
  padding: 22px 0;
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  align-items: baseline;
}
.dish h3 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 6px;
}
.dish .desc { color: var(--mute); font-size: .95rem; margin: 0; line-height: 1.5; }
.dish .price { font-family: var(--f-display); font-size: 1.15rem; color: var(--estuary); white-space: nowrap; }
.dish .tag {
  display: inline-block;
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--estuary); border: 1px solid var(--estuary);
  padding: 2px 8px; margin-left: 8px; vertical-align: middle;
  border-radius: 2px;
}
.dish .tag.v { color: var(--sage); border-color: var(--sage); }
.dish .tag.ve { color: var(--sage); border-color: var(--sage); background: rgba(143,160,152,.08); }
.dish .tag.gf { color: var(--sand); border-color: var(--sand); }
.dish .tag.df { color: var(--gold-ink); border-color: var(--gold-ink); }
.dish .tag.n { color: var(--ink-2); border-color: var(--ink-2); }
/* "Available on request" variants — dashed border distinguishes them
   from the as-served tags (V, Ve, GF) at a glance. */
.dish .tag.vea { color: var(--sage); border: 1px dashed var(--sage); }
.dish .tag.gfa { color: var(--sand); border: 1px dashed var(--sand); }
.dish .tag.req { opacity: .72; font-style: italic; letter-spacing: .12em; }

.dietary-key {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px;
  padding: 18px 22px;
  margin-top: 56px;
  border-top: 1px solid var(--hair-2);
  border-bottom: 1px solid var(--hair-2);
  background: var(--paper);
}
.dietary-key-label {
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-ink); font-weight: 500;
}
.dietary-key-row {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
}
.dietary-key-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; color: var(--ink-2);
}
.dietary-key-item .tag { margin-left: 0; }

/* ---------- Pull quote ---------- */
.pull {
  background: var(--ivory);
  padding: clamp(60px, 10vw, 120px) 0;
  text-align: center;
}
.pull blockquote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.35;
  max-width: 28ch;
  margin: 0 auto 1.5rem;
  color: var(--ink);
}
.pull cite {
  font-style: normal; font-size: .78rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--mute);
}

/* ---------- Awards showcase (SVG badges) ---------- */
.awards-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 720px) {
  .awards-showcase { grid-template-columns: 1fr; gap: 48px; max-width: 320px; }
}
.award-item {
  text-align: center;
  transition: transform .32s cubic-bezier(.2,.6,.2,1);
}
.award-item:hover { transform: translateY(-4px); }
.award-item img {
  width: 160px; height: 160px;
  margin: 0 auto 24px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(24,32,31,.12));
  transition: filter .3s;
}
.award-item:hover img { filter: drop-shadow(0 18px 40px rgba(24,32,31,.18)); }
.award-item h3 {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}
.award-item .award-issuer {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--tide);
  margin: 0 0 4px;
}
.award-item .award-note {
  font-size: .82rem;
  color: var(--mute);
  margin: 6px 0 0;
  line-height: 1.5;
}

/* Awards on dark (estuary) section */
section.estuary-bg .award-item h3 { color: var(--ivory); }
section.estuary-bg .award-item .award-issuer { color: var(--sand); }
section.estuary-bg .award-item .award-note { color: rgba(246,241,233,.7); }

/* ---------- Awards strip (legacy text) ---------- */
.awards {
  background: var(--ivory-2);
  padding: 48px 0;
  border-top: 1px solid var(--hair-2);
  border-bottom: 1px solid var(--hair-2);
}
.awards-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px;
  align-items: center;
}
.award {
  text-align: center;
  display: flex; flex-direction: column; gap: 6px;
}
.award .a-year { font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--mute); }
.award .a-name { font-family: var(--f-display); font-size: 1.1rem; color: var(--ink); }
.award .a-issuer { font-size: .78rem; color: var(--mute); }

/* ---------- Footer (Mor / Carbis Bay-inspired) ---------- */
footer {
  background: #013aa3;
  color: rgba(246,241,233,.82);
  padding: 0;
  position: relative;
  overflow: hidden;
}
footer > * { position: relative; z-index: 1; }

/* Top masthead: brand + newsletter */
.footer-masthead {
  max-width: var(--max); margin: 0 auto; padding: 84px 28px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
  border-bottom: 1px solid rgba(246,241,233,.08);
}
.footer-news {
  display: flex;
  flex-direction: column;
}
.footer-news .footer-badges {
  margin-top: auto;
  padding-top: 32px;
}
.footer-brand {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--ivory);
  letter-spacing: .22em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  font-weight: 400;
}
.footer-brand .footer-tagline {
  display: block;
  font-family: var(--f-body);
  font-size: .68rem;
  font-weight: 500;
  color: var(--sand);
  letter-spacing: .32em;
  margin-top: 16px;
}
.footer-address {
  margin-top: 32px;
  font-size: .96rem;
  line-height: 1.7;
  color: rgba(246,241,233,.72);
}
.footer-contact-row {
  margin-top: 20px;
  display: flex; gap: 28px; flex-wrap: wrap;
  font-size: .88rem;
}
.footer-contact-row a, .footer-contact-row span {
  color: rgba(246,241,233,.72);
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-contact-row a:hover { color: var(--ivory); }
.footer-contact-row svg { width: 14px; height: 14px; opacity: .7; }

/* Newsletter */
.footer-news h4 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ivory);
  margin: 0 0 12px;
  letter-spacing: 0;
  text-transform: none;
}
.footer-news p {
  color: rgba(246,241,233,.6);
  font-size: .92rem;
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 40ch;
}
.footer-news form {
  display: flex;
  border-bottom: 1px solid rgba(246,241,233,.24);
  padding-bottom: 2px;
  transition: border-color .2s;
}
.footer-news form:focus-within { border-bottom-color: var(--sand); }
.footer-news input {
  flex: 1;
  min-width: 0; /* allow input to shrink below its intrinsic content width */
  background: transparent;
  border: 0;
  padding: 14px 0;
  color: var(--ivory);
  font-size: 1rem;
  font-family: inherit;
}
.footer-news input::placeholder { color: rgba(246,241,233,.42); }
.footer-news input:focus { outline: none; }
.footer-news button {
  background: transparent;
  color: var(--sand);
  border: 0;
  padding: 14px 0 14px 22px;
  font-size: .74rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: color .2s;
}
.footer-news button:hover { color: var(--ivory); }
.footer-news .privacy {
  font-size: .74rem;
  color: rgba(246,241,233,.42);
  margin-top: 16px;
}
.footer-news .privacy a { font-size: inherit; color: rgba(246,241,233,.62); border-bottom: 1px solid rgba(246,241,233,.2); }
.footer-news .privacy a:hover { color: var(--ivory); border-bottom-color: var(--sand); }

@media (max-width: 820px) {
  .footer-masthead { grid-template-columns: minmax(0, 1fr); gap: 56px; padding: 64px 28px 48px; }
  .footer-news { min-width: 0; }
  /* Badges: wrap onto two rows and shrink slightly so they fit 375px viewport.
     Higher specificity (footer .footer-badges) needed to beat the base rule that
     appears later in the file. */
  footer .footer-badges { flex-wrap: wrap !important; gap: 14px 16px !important; justify-content: flex-start; }
  footer .footer-badges img { width: 60px !important; height: 60px !important; max-width: 60px !important; max-height: 60px !important; }
}

/* Middle grid: link columns */
.footer-grid {
  max-width: var(--max); margin: 0 auto; padding: 56px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  border-bottom: 1px solid rgba(246,241,233,.08);
}
footer h5 {
  font-family: var(--f-body);
  font-size: .66rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--sand); margin: 0 0 22px; font-weight: 500;
}
footer h4 {
  font-family: var(--f-body);
  font-size: .66rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 22px; font-weight: 500;
}
footer p, footer a { color: rgba(246,241,233,.72); font-size: .92rem; line-height: 1.7; }
footer a { transition: color .2s; }
footer a:hover { color: var(--ivory); }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 10px; }

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; padding: 44px 28px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Social & badges strip */
.footer-social {
  max-width: var(--max); margin: 0 auto; padding: 36px 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(246,241,233,.08);
}
.footer-social-group {
  display: flex; align-items: center; gap: 20px;
}
.footer-social-group > span {
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(246,241,233,.5);
}
.footer-social-links {
  display: flex; gap: 10px;
}
.footer-social-links a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(246,241,233,.22);
  color: rgba(246,241,233,.78);
  border-radius: 50%;
  transition: all .2s;
}
.footer-social-links a:hover {
  color: var(--ivory);
  border-color: var(--sand);
  background: rgba(201,183,154,.1);
}
.footer-social-links svg { width: 16px; height: 16px; }
.footer-badges {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  align-items: center;
  flex-shrink: 0;
}
.footer-badges img,
footer .footer-badges img {
  width: 80px !important;
  height: 80px !important;
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
  opacity: .92;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
  transition: opacity .2s;
  display: block;
}
.footer-badges img:hover { opacity: 1; }

/* Legal strip (bottom) */
.footer-bottom {
  max-width: var(--max); margin: 0 auto; padding: 28px 28px 40px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  font-size: .78rem; color: rgba(246,241,233,.46);
  letter-spacing: .02em;
  line-height: 1.6;
}
.footer-bottom a { color: rgba(246,241,233,.62); }
.footer-bottom a:hover { color: var(--ivory); }
.footer-legal-links { display: flex; gap: 22px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.footer-legal-links li { margin: 0; }
.footer-registered { max-width: 62ch; color: rgba(246,241,233,.4); }

@media (max-width: 640px) {
  .footer-social { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
  .footer-brand-mark { width: 120px; }
}

/* ---------- Driftwood coastal texture system ---------- */
/* Reusable weathered-wood backdrop.
   Layer 1: fractal-noise that mimics wood grain
   Layer 2: vertical plank divisions
   Layer 3: base driftwood colour */
.driftwood {
  position: relative;
  background-color: var(--driftwood);
  overflow: hidden;
}
.driftwood::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='380' height='380'><filter id='w'><feTurbulence type='fractalNoise' baseFrequency='0.012 0.6' numOctaves='3' seed='7' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.45  0 0 0 0 0.35  0 0 0 0 0.22  0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23w)'/></svg>");
  background-size: 380px 380px;
  mix-blend-mode: multiply;
  opacity: .55;
  pointer-events: none;
}
.driftwood::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg,
      transparent 0,
      transparent 198px,
      rgba(105, 85, 60, .09) 198px,
      rgba(105, 85, 60, .09) 199px,
      rgba(255, 255, 255, .25) 200px,
      rgba(255, 255, 255, .25) 201px,
      transparent 201px,
      transparent 220px);
  pointer-events: none;
}
.driftwood > * { position: relative; z-index: 2; }

/* ---------- Page header (for interior pages) ---------- */
.page-head {
  position: relative;
  padding: clamp(96px, 11vw, 140px) 0 clamp(64px, 7vw, 84px);
  background-color: var(--driftwood);
  border-bottom: 1px solid var(--hair-2);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.page-head::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='380' height='380'><filter id='w'><feTurbulence type='fractalNoise' baseFrequency='0.012 0.6' numOctaves='3' seed='7' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.45  0 0 0 0 0.35  0 0 0 0 0.22  0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23w)'/></svg>");
  background-size: 380px 380px;
  mix-blend-mode: multiply;
  opacity: .5;
  pointer-events: none;
  z-index: -2;
}
.page-head::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(237,228,210,0) 60%, var(--paper) 100%),
    repeating-linear-gradient(90deg,
      transparent 0,
      transparent 198px,
      rgba(105, 85, 60, .08) 198px,
      rgba(105, 85, 60, .08) 199px,
      rgba(255, 255, 255, .25) 200px,
      rgba(255, 255, 255, .25) 201px,
      transparent 201px,
      transparent 220px);
  pointer-events: none;
  z-index: -1;
}
.page-head h1 { margin-bottom: .3em; }
.page-head p { max-width: 52ch; margin: 0 auto; color: var(--ink-2); }
.page-head .eyebrow { color: var(--tide); }

/* Variant: full-bleed image hero for interior pages */
.page-head.with-hero {
  min-height: 62vh;
  padding: 0;
  display: flex; align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: var(--ivory);
  border-bottom: 3px solid var(--gold);
}
.page-head.with-hero::before {
  background-image: none;
  background: linear-gradient(180deg, rgba(20,28,27,.25) 0%, rgba(20,28,27,.45) 45%, rgba(20,28,27,.82) 100%);
  mix-blend-mode: normal;
  opacity: 1;
  z-index: 1;
}
.page-head.with-hero::after { display: none; }
.page-head.with-hero .page-head-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px 72px;
  text-align: left;
}
.page-head.with-hero h1 {
  color: var(--ivory);
  max-width: 18ch;
  margin-bottom: .3em;
}
.page-head.with-hero p {
  color: rgba(246,241,233,.86);
  max-width: 58ch;
  margin: 0;
  font-size: 1.05rem;
}
.page-head.with-hero .eyebrow {
  color: var(--sand);
  margin-bottom: 1rem;
}
.page-head.with-hero .page-head-caption {
  position: absolute; bottom: 20px; right: 28px;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(246,241,233,.6);
  z-index: 3;
}

/* Variant: pale watercolour hero with whitewash — for gallery / artistic interior pages */
.page-head.with-hero.with-watercolour {
  background-color: var(--paper);
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  color: var(--ink);
}
.page-head.with-hero.with-watercolour::before {
  /* Edge feather: two linear gradients (horizontal + vertical) make the
     paper solid at every edge and corner, transparent through the middle.
     Stacked over the existing wash for text legibility. */
  background:
    linear-gradient(to right,  var(--paper) 0%, transparent 18%, transparent 82%, var(--paper) 100%),
    linear-gradient(to bottom, var(--paper) 0%, transparent 18%, transparent 82%, var(--paper) 100%),
    linear-gradient(180deg,
      rgba(251,248,242,.55) 0%,
      rgba(251,248,242,.35) 45%,
      rgba(251,248,242,.7) 100%);
  mix-blend-mode: normal;
  opacity: 1;
}
.page-head.with-hero.with-watercolour h1 { color: var(--ink); }
.page-head.with-hero.with-watercolour p { color: var(--ink-2); }
.page-head.with-hero.with-watercolour .eyebrow { color: var(--gold-ink); }
.page-head.with-hero.with-watercolour .page-head-caption { color: rgba(24,32,31,.5); }
@media (max-width: 900px) {
  .page-head.with-hero.with-watercolour {
    background-size: cover;
    background-position: center;
  }
  /* Heavier paper wash on mobile so the sketch reads as a soft watermark
     behind the copy rather than competing with it. Homepage hero is a
     different selector (.hero-watercolour) and is unaffected. */
  .page-head.with-hero.with-watercolour::before {
    background:
      linear-gradient(to right,  var(--paper) 0%, transparent 14%, transparent 86%, var(--paper) 100%),
      linear-gradient(to bottom, var(--paper) 0%, transparent 14%, transparent 86%, var(--paper) 100%),
      linear-gradient(180deg,
        rgba(251,248,242,.65) 0%,
        rgba(251,248,242,.55) 45%,
        rgba(251,248,242,.85) 100%);
  }
}

/* ---------- Wave divider (subtle, high-end) ---------- */
.wave-divider {
  height: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'><path d='M0,20 C240,5 480,35 720,20 C960,5 1200,35 1440,20 L1440,40 L0,40 Z' fill='%23fbf8f2'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: -40px;
  position: relative;
  z-index: 3;
  pointer-events: none;
}
.wave-divider.inv {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'><path d='M0,20 C240,35 480,5 720,20 C960,35 1200,5 1440,20 L1440,0 L0,0 Z' fill='%23fbf8f2'/></svg>");
  margin-top: 0;
  margin-bottom: -40px;
}

/* Refined gold hairline — used as a section transition */
.gold-strip {
  height: 2px;
  background: var(--gold);
  position: relative;
  z-index: 3;
  opacity: .85;
}

/* ---------- Coastal section variants ---------- */
.section-driftwood {
  background-color: var(--driftwood);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-driftwood::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='380' height='380'><filter id='w'><feTurbulence type='fractalNoise' baseFrequency='0.012 0.6' numOctaves='3' seed='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.45  0 0 0 0 0.35  0 0 0 0 0.22  0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23w)'/></svg>");
  background-size: 380px 380px;
  mix-blend-mode: multiply;
  opacity: .45;
  pointer-events: none;
  z-index: -1;
}
.section-driftwood::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg,
    transparent 0, transparent 198px,
    rgba(105, 85, 60, .08) 198px, rgba(105, 85, 60, .08) 199px,
    rgba(255, 255, 255, .22) 200px, rgba(255, 255, 255, .22) 201px,
    transparent 201px, transparent 220px);
  pointer-events: none;
  z-index: -1;
}

/* ==========================================================
   Menu toolbar — sections jump + downloads.
   Sits between page-head and the menu content as a single quiet
   line of text. No heavy borders; labels are small inline cues.
   ========================================================== */
.menu-toolbar {
  background: var(--paper);
}
.menu-toolbar .container {
  padding: 14px 28px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 36px;
}
.menu-toolbar-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  flex: 1 1 auto;
}
/* Hide PDF download row until actual files are provided */
.menu-toolbar-row:has(.menu-toolbar-downloads) { display: none; }
.menu-toolbar-label {
  font-size: .58rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--mute);
  flex-shrink: 0;
}
.menu-toolbar-chips,
.menu-toolbar-downloads {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 16px;
}
.menu-toolbar-chips a {
  font-family: var(--f-body);
  font-size: .82rem;
  color: var(--ink);
  text-decoration: none;
  padding: 2px 0;
  transition: color .2s;
}
.menu-toolbar-chips a:hover { color: var(--gold-ink); }
.menu-toolbar-chips a + a {
  position: relative;
  margin-left: 16px;
}
.menu-toolbar-chips a + a::before {
  content: '·';
  position: absolute;
  left: -10px;
  color: var(--mute);
}
.menu-toolbar-downloads a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-body);
  font-size: .82rem;
  color: var(--gold-ink);
  text-decoration: none;
  padding: 2px 0;
  border-bottom: 1px solid rgba(184,145,86,.3);
  transition: color .2s, border-color .2s;
}
.menu-toolbar-downloads a:hover {
  color: var(--ink);
  border-bottom-color: var(--gold);
}
.menu-toolbar-downloads a svg { width: 13px; height: 13px; flex-shrink: 0; }

@media (max-width: 720px) {
  .menu-toolbar .container {
    padding: 10px 20px 14px;
    flex-direction: column;
    gap: 4px;
  }
  .menu-toolbar-row { gap: 10px 14px; }
  .menu-toolbar-chips a { padding: 6px 0; }
  .menu-toolbar-downloads a { padding: 6px 0; }
  /* On phone the dot separators eat space; drop them and rely on row gap */
  .menu-toolbar-chips a + a { margin-left: 0; }
  .menu-toolbar-chips a + a::before { display: none; }
  .menu-toolbar-chips { gap: 0 18px; }
}

/* ---------- Menu specific ---------- */
.menu-section { padding: clamp(40px, 6vw, 72px) 0; }
/* Universal anchor offset so the sticky nav doesn't hide the heading
   of any anchored element. Applies to every #anchor target. */
html { scroll-padding-top: 130px; }
[id] { scroll-margin-top: 130px; }
@media (max-width: 720px) {
  html { scroll-padding-top: 110px; }
  [id] { scroll-margin-top: 110px; }
}
.menu-heading {
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hair);
}
.menu-heading h2 { margin: 0; }
.menu-heading .note { color: var(--mute); font-size: .88rem; }
.menu-supplier {
  background: var(--ivory);
  padding: 36px; margin-top: 64px;
  border-left: 3px solid var(--estuary);
}
.menu-supplier h3 { margin-top: 0; }

.menu-feature {
  margin: 24px 0 32px;
  background: var(--paper);
  border: 1px solid var(--hair-2);
}
.menu-feature img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.menu-feature figcaption {
  font-family: var(--f-display);
  font-style: italic;
  font-size: .98rem;
  color: var(--ink-2);
  padding: 14px 20px;
  text-align: center;
}

/* Hanging picture: image with gold hook + rope rig above */
.hanging-picture {
  position: relative;
  padding-top: 70px;
}
.picture-rig {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.35));
}

img.hanging-frame {
  display: block;
  width: 100%;
  height: auto;
  max-width: 560px;
  margin: 0 auto;
  filter:
    drop-shadow(3px 8px 14px rgba(0,0,0,.45))
    drop-shadow(0 2px 4px rgba(0,0,0,.35));
}

/* ---------- About / Team ---------- */
.bio-card {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start;
  margin-bottom: 80px;
}
.bio-card .bio-img { aspect-ratio: 4/5; background: var(--shell); background-size: cover; background-position: center; }
.bio-card h3 { margin-top: 0; }
.bio-role { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--estuary); margin-bottom: 16px; }
@media (max-width: 900px) { .bio-card { grid-template-columns: 1fr; } }

.supplier-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--hair);
  border: 1px solid var(--hair);
}
.supplier {
  background: var(--paper);
  padding: 36px 28px;
}
.supplier .name { font-family: var(--f-display); font-size: 1.4rem; margin: 8px 0 4px; }
.supplier .place { font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--estuary); }
.supplier .what { font-size: .92rem; color: var(--mute); margin-top: 10px; }
.supplier.supplier-ornament {
  display: flex; align-items: flex-start; justify-content: center;
}
.supplier.supplier-ornament img {
  display: block;
  width: clamp(120px, 38%, 180px);
  height: auto;
  opacity: .85;
}
@media (max-width: 820px) { .supplier-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .supplier-grid { grid-template-columns: 1fr; } }

/* ---------- Private dining ---------- */
.room-card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  margin-bottom: 56px;
  border: 1px solid var(--hair);
}
.room-card .room-img { aspect-ratio: 4/3; background-size: cover; background-position: center; }
.room-card .room-text { padding: 44px; }
.room-stats { display: flex; gap: 28px; margin: 20px 0 24px; }
.room-stats .stat { display: flex; flex-direction: column; }
.room-stats .stat-v { font-family: var(--f-display); font-size: 1.6rem; color: var(--estuary); }
.room-stats .stat-l { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); }
@media (max-width: 820px) { .room-card { grid-template-columns: 1fr; } .room-card .room-text { padding: 28px; } }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--mute); margin-bottom: 8px; }
input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  font: inherit; font-size: .98rem; color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 0;
  transition: border-color .2s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--estuary); }
textarea { min-height: 140px; resize: vertical; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 4px;
}
.gallery-grid .g { overflow: hidden; background: var(--shell); }
.gallery-grid .g img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; transition: transform .8s var(--t-ease); }
.gallery-grid .g:hover img { transform: scale(1.04); }
.g.col-6 { grid-column: span 6; }
.g.col-4 { grid-column: span 4; }
.g.col-8 { grid-column: span 8; }
.g.col-3 { grid-column: span 3; }
.g.col-12 { grid-column: span 12; }
.g.tall img { aspect-ratio: 3/4; }
.g.wide img { aspect-ratio: 16/9; }
@media (max-width: 820px) {
  .g.col-6, .g.col-4, .g.col-8, .g.col-3 { grid-column: span 6; }
}

/* ---------- Article (long-form post) ---------- */
.article-head {
  padding: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 56px);
  background: var(--paper);
  border-bottom: 1px solid var(--hair-2);
}
.article-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 32px;
  text-decoration: none;
  transition: color .2s var(--t-ease);
}
.article-back:hover { color: var(--gold-ink); }
.article-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 22px;
}
.article-meta .article-date { color: var(--mute); letter-spacing: .14em; }
.article-meta .dot { color: var(--hair); }
.article-head h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: .005em;
  max-width: 22ch;
  margin: 0 0 28px;
}
.article-head .article-lede {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.4;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0;
}
.article-hero {
  margin: 0;
}
.article-hero img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.article-hero figcaption {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mute);
  padding: 14px 0;
  text-align: right;
  max-width: var(--max);
  margin: 0 auto;
}
.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 72px) 28px clamp(48px, 6vw, 80px);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-2);
}
.article-body p { margin: 0 0 1.4em; }
.article-body p:first-child::first-letter {
  font-family: var(--f-display);
  float: left;
  font-size: 4.2rem;
  line-height: .9;
  padding: 6px 12px 0 0;
  color: var(--gold);
}
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--ink);
  margin: 2.2em 0 .4em;
  line-height: 1.3;
}
.article-foot {
  border-top: 1px solid var(--hair-2);
  padding: clamp(40px, 5vw, 64px) 0;
  text-align: center;
  background: var(--ivory);
}
.article-foot .eyebrow { color: var(--gold-ink); margin-bottom: 12px; display: block; }
.article-foot h2 { margin: 0 0 24px; }
.article-foot .flex { justify-content: center; }

/* ---------- News / Blog cards ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .news-grid { grid-template-columns: 1fr; } }
.news-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--hair-2);
  text-decoration: none;
  color: var(--ink);
  transition: border-color .25s var(--t-ease), transform .35s var(--t-ease);
}
.news-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.news-card .news-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--shell);
}
.news-card .news-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--t-ease);
}
.news-card:hover .news-img img { transform: scale(1.04); }
.news-card .news-body { padding: 28px 28px 32px; }
.news-card .news-meta {
  display: flex; gap: 14px; align-items: center;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 14px;
}
.news-card .news-meta .news-date { color: var(--mute); letter-spacing: .14em; }
.news-card h3 {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  line-height: 1.25;
  margin: 0 0 12px;
}
.news-card p {
  font-size: .92rem;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.news-card .news-read {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-ink);
}
.news-card.featured {
  grid-column: span 3;
  display: grid; grid-template-columns: 1.2fr 1fr;
}
@media (max-width: 900px) {
  .news-card.featured { grid-column: span 2; grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .news-card.featured { grid-column: span 1; }
}
.news-card.featured .news-img { aspect-ratio: 4/3; }
.news-card.featured .news-body { padding: 40px 40px 44px; align-self: center; }
.news-card.featured h3 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); }

/* ---------- Press ---------- */
.press-card {
  padding: 40px;
  border: 1px solid var(--hair);
  background: var(--paper);
  transition: all .25s;
}
.press-card:hover { border-color: var(--estuary); background: var(--ivory); }
.press-card .source { font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--estuary); margin-bottom: 16px; }
.press-card .quote { font-family: var(--f-display); font-size: 1.3rem; line-height: 1.4; font-style: italic; margin-bottom: 24px; }
.press-card .meta { font-size: .84rem; color: var(--mute); }

/* ---------- Contact ---------- */
.map-wrap { aspect-ratio: 16/9; background: var(--shell); position: relative; overflow: hidden; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; background: var(--hair); border: 1px solid var(--hair); }
.visit-cell { background: var(--paper); padding: 32px; }
.visit-cell h4 { font-family: var(--f-display); font-size: 1.3rem; margin: 0 0 14px; letter-spacing: 0; text-transform: none; color: var(--ink); }
.visit-cell p { margin: 2px 0; font-size: .95rem; }
@media (max-width: 820px) { .visit-grid { grid-template-columns: 1fr; } }

/* ---------- Utility ---------- */
.spacer-sm { height: 24px; }
.spacer-md { height: 48px; }
.spacer-lg { height: 80px; }
.center { text-align: center; }
.muted { color: var(--mute); }
.flex { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* ---------- Booking bar (floating) — disabled ---------- */
.book-bar { display: none; }

/* ========================================================
   Booking widget (book.html)
   ======================================================== */
.book-widget {
  background: var(--paper);
  border: 1px solid var(--hair);
  padding: 40px;
}
.book-widget h3 { margin-top: 0; font-size: 1.6rem; }

/* Booking mode tabs */
.book-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--hair);
  margin: -8px 0 32px;
}
.book-tab {
  padding: 14px 0;
  margin-right: 36px;
  font-family: var(--f-body);
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mute);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color .2s var(--t-ease), border-color .2s var(--t-ease);
  text-indent: .2em;
}
.book-tab:hover { color: var(--ink); }
.book-tab.active { color: var(--ink); border-bottom-color: var(--gold); }
.book-panel { display: none; }
.book-panel.active { display: block; }

.private-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px;
  margin: 24px 0;
}
@media (max-width: 540px) { .private-row { grid-template-columns: 1fr; } }
.private-row .private-stat .v {
  font-family: var(--f-display); font-size: 1.4rem; color: var(--ink);
  display: block; margin-bottom: 2px;
}
.private-row .private-stat .l {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mute);
}

.book-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 700px) { .book-row { grid-template-columns: 1fr; } }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 8px; margin-top: 20px; }
.slot {
  padding: 12px 8px; text-align: center;
  border: 1px solid var(--hair); background: var(--ivory);
  font-size: .9rem; transition: all .2s;
  cursor: pointer;
}
.slot:hover { border-color: var(--gold); background: var(--paper); }
.slot.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.slot.unavailable { opacity: .35; text-decoration: line-through; cursor: not-allowed; }

.book-options {
  background: var(--ivory-2);
  padding: 32px;
  margin-top: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
@media (max-width: 700px) { .book-options { grid-template-columns: 1fr; } }
.book-options a {
  display: flex; align-items: center; gap: 12px;
  padding: 16px; background: var(--paper); border: 1px solid var(--hair);
  transition: all .2s;
}
.book-options a:hover { border-color: var(--gold); }
.book-options .partner-icon {
  width: 40px; height: 40px; background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 1.1rem;
}

/* ========================================================
   Map embed mock (book.html — replace with real Google Maps)
   ======================================================== */
.map-embed {
  aspect-ratio: 16/8;
  background: linear-gradient(135deg, #c7d4ce 0%, #a8beb3 40%, #dcc9a8 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hair);
}
.map-embed::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,74,70,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,74,70,.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-pin {
  position: absolute; top: 45%; left: 48%;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(184,145,86,.22), 0 0 0 14px rgba(184,145,86,.12);
  animation: pulse 2s infinite;
}
.map-pin::after {
  content: "The Galley";
  position: absolute; top: -36px; left: 50%; transform: translateX(-50%);
  font-family: var(--f-display); font-size: 1rem;
  background: var(--paper); padding: 4px 12px;
  white-space: nowrap; border: 1px solid var(--hair);
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.map-label {
  position: absolute; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-ink); opacity: .7;
}
.map-label.l1 { top: 20%; left: 12%; }
.map-label.l2 { top: 72%; left: 70%; }
.map-label.l3 { top: 30%; right: 10%; }

/* ==========================================================
   Tap feedback — fires on touch (and mouse hold) so the user
   sees their tap register within ~50ms. Mobile has no :hover,
   so :active is the only reliable feedback mechanism.
   ========================================================== */
.btn:active,
.book-bar:active,
.book-tab:active,
button:active,
.btn-primary:active {
  transform: translateY(1px) scale(.985);
  transition-duration: .08s;
}

a:active:not(.btn):not(.book-bar):not(.btn-primary),
.nav-links a:active,
.footer-grid ul li a:active,
.footer-legal-links a:active,
.footer-contact-row a:active,
.topbar a:active,
.footer-social-links a:active {
  opacity: .55;
  transition: opacity .05s;
}

/* ==========================================================
   Mobile touch-zone refinements
   Ensures interactive elements meet the 44×44px standard
   on mobile (Apple HIG / WCAG AA target size).
   ========================================================== */
@media (max-width: 720px) {
  /* Footer link columns — 44px tap targets */
  footer .footer-grid li { margin-bottom: 0; }
  footer .footer-grid ul li a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 4px 0;
  }

  /* Footer legal links (Privacy / Terms / Accessibility / Allergens / Sitemap) */
  .footer-legal-links { gap: 4px 16px; }
  .footer-legal-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 4px;
  }

  /* Topbar links (Book a table, etc.) */
  .topbar a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 6px 4px;
  }

  /* Footer contact row — phone, email, hours */
  .footer-contact-row { gap: 4px 28px; }
  .footer-contact-row a,
  .footer-contact-row span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  /* Inline privacy link in newsletter block */
  .footer-news .privacy a {
    display: inline-block;
    padding: 6px 0;
  }

  /* Small buttons (.btn-sm) — bump to standard tap height */
  .btn-sm {
    min-height: 44px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Footer social icons — 40 → 44 */
  .footer-social-links a {
    width: 44px;
    height: 44px;
  }

  /* Hamburger nav toggle — ensure ≥44 each axis */
  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
  }

  /* Mobile nav links inside the slide-out menu */
  .mobile-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }
}

/* On small phones, drop the topbar tagline so credentials + book CTA fit one row */
@media (max-width: 480px) {
  .topbar-tagline,
  .topbar-divider {
    display: none;
  }
}

/* On mobile/tablet (≤720px), keep the topbar a single compact credential row.
   No CTA — booking is handled by the gold pill in the nav and the bottom-nav. */
@media (max-width: 720px) {
  .topbar {
    flex-wrap: nowrap;
    gap: 8px;
    padding: 6px 12px;
    min-height: 40px;
  }
  .topbar .bib-badge {
    width: 28px;
    height: 28px;
  }
  .topbar .aa-badge {
    height: 32px;
    max-width: 40px;
  }
  .topbar strong {
    font-size: .58rem;
    letter-spacing: .12em;
  }
  /* On mobile, hide the AA text label — both badges visible, only Michelin labelled */
  .topbar .aa-label { display: none; }
}

/* ==========================================================
   Footer columns as accordion on mobile
   - Mobile (≤720): collapsed by default, tap summary to toggle
   - Desktop (>720): always-open, no marker, no click affordance
   JS in scripts.js sets the [open] attribute based on viewport.
   ========================================================== */
.footer-section { margin-bottom: 0; }
.footer-section > summary { cursor: pointer; list-style: none; }
.footer-section > summary::-webkit-details-marker { display: none; }
.footer-section > summary::marker { content: ''; }

@media (max-width: 720px) {
  .footer-section > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    min-height: 44px;
    border-bottom: 1px solid rgba(246,241,233,.1);
  }
  .footer-section > summary h5 {
    margin: 0;
  }
  .footer-section > summary::after {
    content: '+';
    font-family: var(--f-display);
    font-size: 1.5rem;
    line-height: 1;
    color: var(--ivory);
    opacity: .7;
    margin-left: 16px;
    transition: transform .2s ease;
  }
  .footer-section[open] > summary::after {
    content: '\2212'; /* minus sign */
  }
  .footer-section[open] > ul {
    padding: 12px 0 18px;
  }
}

@media (min-width: 721px) {
  /* Desktop: behave like always-open columns regardless of [open] state.
     Don't rely on JS to set [open] — force the UL visible via CSS so it
     works even if scripts.js is cached/deferred. */
  .footer-section > summary {
    cursor: default;
    pointer-events: none;
  }
  .footer-section > ul {
    display: block !important;
  }
}

/* ==========================================================
   Mobile-only Book pill in the topbar
   - Coppa Club pattern: BOOK is unmissable in the header
   - Lives in the right grid column (where .nav-links would be on desktop)
   ========================================================== */
.nav-book-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  padding: 0 14px;
  min-height: 36px;
  min-width: 64px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-indent: .22em;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.nav-book-mobile svg { display: none; }
.nav-book-mobile:active { background: var(--gold-3); color: var(--ivory); transform: translateY(1px); }

@media (max-width: 900px) {
  .nav-book-mobile {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
  }
}

/* ==========================================================
   Brand watermark behind mobile nav drawer
   - Permit Room pattern: faded brand letterform behind the menu
   - Uses the brushy fish symbol from the logo, very low opacity
   - Note: .mobile-nav is already position:fixed, do NOT override
   ========================================================== */
.mobile-nav {
  background-image: url('assets/fish_symbol_logo.png');
  background-repeat: no-repeat;
  background-position: right -40px bottom 32px;
  background-size: 78% auto;
}
.mobile-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--paper) 0%, rgba(251,248,242,.82) 55%, rgba(251,248,242,.9) 100%);
  pointer-events: none;
  z-index: 0;
}
.mobile-nav > * { position: relative; z-index: 1; }

/* ==========================================================
   Horizontal scroll rails (mobile)
   - Permit Room / Coppa Club pattern: next card peeks on the right
   - Applied to press grid + supplier grid; cards become 80vw with snap
   ========================================================== */
@media (max-width: 720px) {
  .press-card-rail,
  .supplier-grid,
  .dish-card-rail {
    display: grid !important;
    grid-template-columns: none !important;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 18% 4px 20px;
    margin: 0 -20px;
    background: transparent !important;
    border: 0 !important;
    scroll-padding-left: 20px;
  }
  .press-card-rail::-webkit-scrollbar,
  .supplier-grid::-webkit-scrollbar,
  .dish-card-rail::-webkit-scrollbar { display: none; }

  .press-card-rail > .press-card,
  .supplier-grid > .supplier,
  .dish-card-rail > * {
    scroll-snap-align: start;
  }

  .press-card-rail > .press-card,
  .supplier-grid > .supplier {
    border: 1px solid var(--hair);
  }

  /* Dish rail: tighter card width since each card is just an image + small caption */
  .dish-card-rail { grid-auto-columns: 72%; padding-right: 28%; }

  /* Hide ornament tile from the rail — only useful on the desktop grid */
  .supplier-grid > .supplier.supplier-ornament { display: none; }
}

/* ==========================================================
   Editorial intro headlines (mobile)
   - Permit Room "Nestled into Brighton's bustling lanes" pattern
   - Bigger, tighter serif on intro headlines for About + Private Dining
   ========================================================== */
@media (max-width: 720px) {
  .page-head h1,
  .bio-card h1 {
    font-size: clamp(3.6rem, 14vw, 5rem) !important;
    line-height: .98;
    letter-spacing: -0.01em;
  }
  .page-head .eyebrow,
  .bio-card .bio-role {
    font-size: .68rem;
    letter-spacing: .26em;
  }
}

/* ==========================================================
   Editorial body — justified text with first-line indent
   - Permit Room pattern: proper magazine typesetting on long-form copy
   - Lede stays left-aligned; subsequent paragraphs are indented
   - Hyphenation prevents ugly word gaps in narrow columns
   ========================================================== */
.editorial-prose p {
  text-align: left;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.editorial-prose blockquote {
  margin: 0;
}
.editorial-prose blockquote p { text-indent: 0; }
.patrick-cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

/* ==========================================================
   Sticky bottom mobile nav
   - Inspired by Permit Room's persistent 3-action thumb nav
   - Replaces the floating .book-bar on mobile (one-action → three)
   - Hidden when the hamburger drawer is open
   ========================================================== */
.bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: var(--estuary);
  border-top: 1px solid var(--gold);
  box-shadow: 0 -8px 24px rgba(0,0,0,.18);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  padding-bottom: env(safe-area-inset-bottom);
}
.bottom-nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  min-height: 60px;
  max-width: 520px;
  margin: 0 auto;
}
.bottom-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  font-family: var(--f-body);
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-indent: .22em;
  color: var(--gold);
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
.bottom-nav-item:active {
  background: rgba(184,145,86,.14);
  color: var(--ivory);
}
.bottom-nav-item.active { color: var(--ivory); }
.bottom-nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 2px;
  background: var(--gold);
}

/* BOOK is the primary CTA — gold pill background, dark text.
   Always stands out regardless of which page you're on. */
.bottom-nav-item[href="/book"] {
  color: var(--ink);
  z-index: 1;
}
.bottom-nav-item[href="/book"]::before {
  content: '';
  position: absolute;
  inset: 12px 14px;
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(184,145,86,.35);
  z-index: -1;
  transition: background .2s ease, transform .2s ease;
}
.bottom-nav-item[href="/book"]:active::before {
  background: var(--gold-3);
  transform: scale(.96);
}
/* The book.html "active" page state is now redundant for the pill —
   suppress the underline that would sit under a filled pill. */
.bottom-nav-item[href="/book"].active::after { display: none; }
.bottom-nav-item[href="/book"].active { color: var(--ink); }
.bottom-nav-sep {
  color: var(--gold);
  opacity: .5;
  font-size: .9rem;
  letter-spacing: .15em;
  user-select: none;
  padding: 0 4px;
}

/* Mobile-mode UI swap: aligned to 900px, the same point where the nav
   collapses to the hamburger. Below 900: bottom-nav appears and the
   floating book-bar is hidden so we don't double up on book CTAs. */
@media (max-width: 900px) {
  .bottom-nav { display: block; }
  .book-bar { display: none !important; }
  body { padding-bottom: calc(110px + env(safe-area-inset-bottom)); }
  body.menu-open .bottom-nav { display: none; }
  /* Thicker bottom nav so it overlaps the trust-band's lower edge. */
  .bottom-nav-row,
  .bottom-nav-item { min-height: 110px; }
  /* Pill back to the prior compact size, but keep the 3D gold glow. */
  .bottom-nav-item[href="/book"]::before {
    inset: 33px 18px;
    background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 55%, var(--gold-3) 100%);
    box-shadow:
      0 0 28px 6px rgba(184,145,86,.55),
      0 10px 22px rgba(0,0,0,.32),
      inset 0 1px 0 rgba(255,255,255,.55),
      inset 0 -3px 0 rgba(0,0,0,.18);
  }
  .bottom-nav-item[href="/book"]:active::before {
    transform: scale(.96);
    box-shadow:
      0 0 18px 3px rgba(184,145,86,.40),
      0 4px 10px rgba(0,0,0,.28),
      inset 0 -1px 0 rgba(0,0,0,.20);
  }
}

/* ==========================================================
   Accessibility utility — visually hidden but readable to assistive tech
   ========================================================== */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ==========================================================
   Takeaway notify form (takeaway.html)
   - Stacks on mobile, name+email side-by-side on desktop
   ========================================================== */
.takeaway-notify {
  display: grid;
  gap: 14px;
  max-width: 460px;
  margin: 0 auto;
}
.takeaway-notify input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--hair);
  background: var(--paper);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  border-radius: 0;
  transition: border-color .2s;
}
.takeaway-notify input:focus { outline: none; border-color: var(--gold); }
.takeaway-notify input::placeholder { color: var(--mute); }
.takeaway-notify button {
  width: 100%;
  border: 0;
}
.takeaway-notify button:disabled {
  opacity: .85;
  cursor: default;
}
@media (min-width: 600px) {
  .takeaway-notify {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "name email" "btn btn";
  }
  .takeaway-notify input[type="text"] { grid-area: name; }
  .takeaway-notify input[type="email"] { grid-area: email; }
  .takeaway-notify button { grid-area: btn; }
}

/* ==========================================================
   Read-more / expanded copy
   - Long prose collapses on mobile (≤900px), shows "Read more →"
   - Always fully expanded on desktop, toggle button hidden
   - Reusable: wrap any long copy block in .read-more, put the
     expandable portion inside .read-more__rest, add the button.
   ========================================================== */
.read-more__rest { /* Always visible by default (desktop). JS hides on mobile. */ }
.read-more__toggle {
  display: none; /* Desktop hides the toggle. JS shows it on mobile. */
  background: none;
  border: 0;
  padding: 8px 0;
  margin-top: 6px;
  font-family: var(--f-body);
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-indent: .22em;
  color: var(--gold-ink);
  cursor: pointer;
  border-bottom: 1px solid rgba(184,145,86,.4);
  transition: color .2s, border-color .2s;
}
.read-more__toggle:hover { color: var(--ink); border-bottom-color: var(--gold); }
.read-more__toggle:active { transform: translateY(1px); }
@media (max-width: 900px) {
  .read-more__toggle { display: inline-block; min-height: 44px; }
  .read-more[data-collapsed="true"] .read-more__rest { display: none; }
}
