/* Hallmark · macrostructure: Bento Grid · genre: editorial · tone: modern heritage · anchor hue: bottle green
   Pre-emit critique: P5 H5 E5 S5 R5 V5 · contrast: pass (40–41) · responsive: pass (34, 49, 50–57) */

:root {
  /* Brand palette */
  --green-900:  #0c160f;
  --green-800:  #10211611;
  --green:      #14281b;
  --green-panel:#172e1f;
  --emerald:    #2f6b43;
  --cream:      #f3e8cf;
  --cream-dim:  #cdbf9f;
  --brass:      #c9a24b;
  --brass-bright:#e0bd6a;
  --ink-on-brass:#1a1305;
  --oxblood:    #571620;
  --line:       rgba(201,162,75,.28);

  /* Typography */
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Inter', system-ui, sans-serif;

  /* Layout and spacing */
  --content-max: 1200px;
  --content-narrow: 640px;
  --gutter: 28px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 14px;
  --space-5: 18px;
  --space-6: 20px;
  --space-7: 24px;
  --space-8: 28px;
  --space-9: 30px;
  --space-10: 32px;
  --space-12: 48px;
  --space-14: 56px;
  --space-18: 72px;
  --space-26: 104px;

  /* Shape, motion, and stacking */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-round: 50%;
  --duration-fast: .2s;
  --duration-medium: .25s;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --z-drawer: 49;
  --z-header: 50;
  --z-skip-link: 100;
}

/* ---- RESET ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--sans);
  background: var(--green-900);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }

/* ---- LAYOUT ---- */
.wrap { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); }

/* ---- TYPE UTILITIES ---- */
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: 12px;
  font-weight: 600;
  color: var(--brass);
}

/* ---- SHARED PRESENTATION PATTERNS ---- */
.svg-sprite { position: absolute; }
.text-muted { color: var(--cream-dim); }
.text-link { color: var(--cream); }
.accent-link { color: var(--brass-bright); font-weight: 600; }
.footer-contact-link { color: inherit; }
.text-link,
.accent-link,
.footer-contact-link,
.form-note a,
.page-message__copy a,
.cms-empty-state a {
  text-decoration: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .2em;
}
.section-title { margin: var(--space-4) 0 var(--space-7); }
.section-head--compact { margin-bottom: var(--space-10); }
.knot-icon { color: var(--brass); width: 38px; height: 38px; }
.action-row { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.action-row--center { justify-content: center; }
.button-spaced { margin-top: var(--space-5); }
.button-spaced-lg { margin-top: var(--space-6); }
.mobile-reserve { margin-top: var(--space-3); }

/* Reusable centered state pages (404, form confirmation, etc.) */
.page-message { min-height: 60vh; display: flex; align-items: center; }
.page-message__inner {
  max-width: var(--content-narrow);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.page-message__inner--compact { max-width: 620px; }
.page-message__icon {
  color: var(--brass);
  width: 52px;
  height: 52px;
  margin: 0 auto var(--space-6);
}
.page-message__eyebrow { margin-bottom: 16px; }
.page-message__eyebrow--tight { margin-bottom: var(--space-4); }
.page-message__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.05;
  margin-bottom: var(--space-6);
}
.page-message__title--compact { font-size: clamp(32px, 5vw, 52px); }
.page-message__copy {
  color: var(--cream-dim);
  font-size: 17px;
  margin-bottom: var(--space-10);
}
.page-message__copy--tight { margin-bottom: 10px; }

/* ============================================================
   NAV
   ============================================================ */
body > header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(12,22,15,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background .3s, box-shadow .3s;
}
body > header.scrolled {
  background: rgba(12,22,15,.97);
  box-shadow: 0 2px 18px rgba(0,0,0,.55);
}
body > header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(var(--space-5), 2vw, var(--space-10));
  height: 74px;
}

.brand { display: flex; flex: 0 0 auto; align-items: center; gap: 12px; }
.brand .knot { width: 34px; height: 34px; }
.brand b { font-family: var(--serif); font-weight: 700; font-size: 20px; letter-spacing: .04em; }
.brand span { display: block; font-size: 9px; letter-spacing: .36em; text-transform: uppercase; color: var(--brass); margin-top: 2px; }

.navlinks {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  gap: clamp(var(--space-5), 2.2vw, 34px);
  min-width: 0;
}
.navlinks a {
  flex: 0 0 auto;
  color: var(--cream-dim);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: color var(--duration-fast);
}
.navlinks a:hover { color: var(--cream); }
.navlinks a:active { color: var(--brass-bright); }
.navlinks a[aria-disabled="true"] { opacity: .55; pointer-events: none; }

.nav-cta {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--space-3);
}
.nav-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  min-height: 48px;
  padding: 0 var(--space-5);
  line-height: 1;
  white-space: nowrap;
}
.nav-cta .btn:active { transform: translateY(1px); }
.nav-cta .btn[aria-disabled="true"] {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

.btn {
  display: inline-block; font-weight: 600; font-size: 14px; letter-spacing: .06em;
  padding: 12px 22px; border-radius: var(--radius-sm); cursor: pointer;
  transition: background var(--duration-fast), border-color var(--duration-fast), color var(--duration-fast);
}
.btn-gold { background: var(--brass); color: var(--ink-on-brass); border: 1px solid var(--brass); }
.btn-gold:hover { background: var(--brass-bright); }
.btn-ghost { border: 1px solid var(--line); color: var(--cream); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-bright); }

/* Mobile toggle, hidden on desktop */
.menu-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(6,13,9,.72) 0%, rgba(6,13,9,.52) 34%, rgba(6,13,9,.22) 68%, rgba(6,13,9,.3) 100%),
    linear-gradient(180deg, rgba(12,22,15,.35) 0%, rgba(12,22,15,.55) 45%, rgba(12,22,15,.96) 100%),
    radial-gradient(120% 90% at 70% 10%, rgba(47,107,67,.45), transparent 60%),
    url('../assets/interiorPics/site/home-hero.webp');
  background-size: cover; background-position: center;
}
.hero-inner { padding-bottom: 72px; }
.hero h1 {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(46px,8vw,104px); line-height: .96; letter-spacing: -.01em;
  margin: 18px 0 22px; max-width: 14ch;
}
.hero h1 em { font-style: italic; color: var(--brass-bright); }
.hero p { font-size: clamp(16px,2vw,20px); color: var(--cream-dim); max-width: 48ch; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; right: 28px; bottom: 36px;
  writing-mode: vertical-rl; font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--cream-dim); opacity: .7;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--oxblood); color: var(--cream); overflow: hidden;
  border-top: 1px solid rgba(0,0,0,.2); border-bottom: 1px solid rgba(0,0,0,.2);
}
.ticker-track {
  display: flex; gap: 48px; white-space: nowrap; padding: 13px 0;
  animation: scroll 28s linear infinite;
  font-family: var(--serif); font-style: italic; font-size: 18px;
}
.ticker-track span { opacity: .92; }
.ticker-track span::after { content: '❖'; margin-left: 48px; color: var(--brass-bright); font-style: normal; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION SHELL
   ============================================================ */
section.block { padding: var(--space-26) 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 48px; flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(32px,4.4vw,52px); line-height: 1.04; letter-spacing: -.01em;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--green); border-top: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.about-grid p { color: var(--cream-dim); font-size: 17px; margin-bottom: 18px; }
.about-img {
  position: relative; border-radius: 4px; overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--green-panel), var(--emerald));
}
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img--home-story img,
.about-img--snug img,
.about-img--space img {
  filter: brightness(.8) saturate(.9) contrast(1.04);
}
.about-img--home-story::after,
.about-img--snug::after,
.about-img--space::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(6,13,9,.28) 0%, rgba(6,13,9,.1) 38%, transparent 72%);
}
.about-img--snug::after,
.about-img--space::after {
  background:
    linear-gradient(180deg, rgba(6,13,9,.16) 0%, transparent 42%),
    linear-gradient(90deg, rgba(6,13,9,.18) 0%, rgba(6,13,9,.06) 42%, transparent 76%);
}
.stats { display: flex; gap: 40px; margin-top: 30px; }
.stats .num { font-family: var(--serif); font-size: 40px; color: var(--brass); line-height: 1; }
.stats .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: .18em; color: var(--cream-dim); margin-top: 6px; }
.stats .lbl span { display: block; white-space: nowrap; }

/* ============================================================
   MENU HIGHLIGHTS
   ============================================================ */
/* Hallmark · macrostructure: Bento Grid · tone: modern heritage · anchor hue: bottle green
   Pre-emit critique: P5 H5 E5 S5 R5 V5 */
.menu-showcase__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
section.block.menu-showcase { padding-bottom: var(--space-12); }
.menu-showcase__intro { min-width: 0; }
.menu-showcase__intro h2 {
  min-width: 0;
  max-width: 11ch;
  margin-top: var(--space-2);
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 68px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.025em;
  overflow-wrap: anywhere;
}
.menu-showcase__head .btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  line-height: 1;
  white-space: nowrap;
}
.menu-showcase__head .btn:hover { border-color: transparent; }
.menu-showcase__head .btn:active { transform: translateY(1px); }
.menu-showcase__head .btn[aria-disabled="true"],
.menu-showcase__head .btn[data-state="loading"] {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}
.menu-showcase__head .btn[data-state="error"] { text-decoration: underline wavy; }
.menu-showcase__head .btn[data-state="success"] { text-decoration: underline; }
.soup-feature {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: var(--space-10);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.soup-feature__label {
  color: var(--brass);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.soup-feature__content {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: var(--space-10);
}
.soup-feature__name {
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.2;
}
.soup-feature__note {
  color: var(--cream-dim);
  font-size: 14px;
  text-align: right;
}
.menu-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr);
  gap: var(--space-18);
  padding-top: var(--space-12);
}
.featured-dish { min-width: 0; }
.featured-dish__image {
  display: block;
  width: 100%;
  height: clamp(360px, 40vw, 500px);
  object-fit: cover;
  object-position: 50% 68%;
  border-radius: var(--radius-md);
}
.featured-dish__caption {
  display: grid;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--line);
}
.dish-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-6);
}
.dish-heading h3 {
  min-width: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 40px);
  font-style: normal;
  line-height: 1.08;
  overflow-wrap: anywhere;
}
.dish-heading .price {
  flex: none;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 24px;
  font-variant-numeric: tabular-nums;
}
.featured-dish__caption p { max-width: 58ch; color: var(--cream-dim); }
.supporting-dishes {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: var(--space-8);
}
.supporting-dishes__heading {
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--brass);
  font-family: var(--sans);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .04em;
}
.supporting-dish {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: var(--space-6);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--line);
}
.supporting-dish img {
  display: block;
  width: 100%;
  height: 144px;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.supporting-dish__copy { min-width: 0; }
.supporting-dish__copy h4 {
  min-width: 0;
  font-family: var(--serif);
  font-size: 24px;
  font-style: normal;
  line-height: 1.15;
  overflow-wrap: anywhere;
}
.supporting-dish__copy p {
  margin-top: var(--space-3);
  color: var(--cream-dim);
  font-size: 14px;
}
.menu-showcase__index {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) var(--space-6);
  padding-top: var(--space-2);
}
.menu-showcase__index a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--cream-dim);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: .35em;
  white-space: nowrap;
  transition: color var(--duration-fast) var(--ease-out);
}
.menu-showcase__index a:hover { color: var(--brass-bright); }
.menu-showcase__index a:active { color: var(--cream); }
.menu-showcase__index a[aria-disabled="true"],
.menu-showcase__index a[data-state="loading"] {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}
.menu-showcase__index a[data-state="error"] { text-decoration-style: wavy; }
.menu-showcase__index a[data-state="success"] { color: var(--brass-bright); }

/* ============================================================
   DRINKS SPLIT
   ============================================================ */
section.block.drinks {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
  background: linear-gradient(180deg, var(--green-900), var(--green));
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.split .pane { padding: 54px 48px; }
.split .pane.dark { background: #0b130d; }
.split .pane.accent { background: var(--green-panel); }
.split h3 { font-family: var(--serif); font-size: 30px; margin-bottom: 14px; }
.pourlist { margin-top: 22px; }
.pour { display: flex; justify-content: space-between; align-items: baseline; padding: 13px 0; border-bottom: 1px dashed var(--line); }
.pour b { font-weight: 600; font-size: 16px; }
.pour small { color: var(--cream-dim); display: block; font-size: 13px; font-weight: 400; }
.pour .p { color: var(--brass); font-family: var(--serif); }

/* ============================================================
   EVENTS
   ============================================================ */
section.block.events {
  padding-top: var(--space-12);
  background: var(--green);
}
.ev { display: grid; grid-template-columns: 120px 1fr; gap: 28px; align-items: center; padding: 26px 0; border-top: 1px solid var(--line); }
.ev:last-child { border-bottom: 1px solid var(--line); }
.ev .date { font-family: var(--serif); text-align: center; }
.ev .date .d { font-size: 38px; color: var(--brass); line-height: 1; }
.ev .date .m { font-size: 12px; text-transform: uppercase; letter-spacing: .2em; color: var(--cream-dim); }
.ev h4 { font-family: var(--serif); font-size: 23px; }
.ev p { color: var(--cream-dim); font-size: 14px; }
.happening-spotlight {
  display: grid;
  grid-template-columns: minmax(190px, .65fr) minmax(0, 1.35fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--green-panel);
}
.happening-spotlight__schedule {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-8);
  border-right: 1px solid var(--line);
}
.happening-spotlight__schedule strong {
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.08;
}
.happening-spotlight__time {
  color: var(--cream-dim);
  font-size: 13px;
  letter-spacing: .06em;
}
.happening-spotlight__copy {
  align-self: center;
  padding: var(--space-8) var(--space-10);
}
.happening-spotlight__copy h3 {
  max-width: 22ch;
  margin-bottom: var(--space-3);
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.16;
}
.happening-spotlight__copy p {
  max-width: 62ch;
  color: var(--cream-dim);
  line-height: 1.65;
}

@media (max-width: 680px) {
  .happening-spotlight { grid-template-columns: 1fr; }
  .happening-spotlight__schedule {
    padding: var(--space-6);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .happening-spotlight__copy { padding: var(--space-6); }
}

/* ============================================================
   VISIT
   ============================================================ */
.visit { background: #0b130d; border-top: 1px solid var(--line); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.hours-row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.hours-row span:first-child { color: var(--cream-dim); }
.map-card { border: 1px solid var(--line); border-radius: 6px; padding: 34px; background: var(--green-panel); }
.map-card .addr { font-family: var(--serif); font-size: 24px; line-height: 1.35; margin: 8px 0 18px; }
.visit-note { margin-top: 26px; color: var(--cream-dim); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--green-900); border-top: 1px solid var(--line); padding: 34px 0 22px; text-align: center; }
footer .knot { width: 32px; height: 32px; margin: 0 auto 8px; }
footer .fbrand { font-family: var(--serif); font-size: 23px; }
.social { display: flex; gap: 22px; justify-content: center; margin: 12px 0; }
.social a {
  width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: var(--radius-round);
  display: grid; place-items: center;
  transition: border-color var(--duration-fast), color var(--duration-fast);
}
.social a:hover { border-color: var(--brass); color: var(--brass); }
.social-icon {
  width: 20px;
  height: 20px;
  background: currentColor;
  -webkit-mask: var(--social-icon) center / contain no-repeat;
  mask: var(--social-icon) center / contain no-repeat;
}
.social-icon--instagram { --social-icon: url('../assets/icons/instagram.svg'); }
.social-icon--facebook { --social-icon: url('../assets/icons/facebook.svg'); }
.social-icon--google { --social-icon: url('../assets/icons/google-reviews.svg'); }
footer small { color: var(--cream-dim); font-size: 12px; letter-spacing: .04em; }

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
body.no-scroll { overflow: clip; }

.mobile-nav {
  display: none; /* shown only when the full desktop navigation no longer fits comfortably */
  position: fixed;
  top: 74px; /* flush under header */
  left: 0; right: 0; bottom: auto;
  height: calc(100vh - 74px);
  height: calc(100dvh - 74px); /* header backdrop creates the drawer's fixed-position containing block */
  z-index: var(--z-drawer);
  background: var(--green-900);
  border-top: 1px solid var(--line);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 48px 28px;
  /* hidden state */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .25s ease, transform .25s ease;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-nav a {
  font-family: var(--serif);
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .02em;
  padding: 10px 0;
  transition: color .2s;
  text-align: center;
}
.mobile-nav a:hover { color: var(--brass-bright); }
.mobile-nav a:active { color: var(--brass-bright); }
.mobile-nav a[aria-disabled="true"] { opacity: .55; pointer-events: none; }
.mobile-nav .mobile-reserve {
  width: min(100%, 320px);
  min-height: 52px;
  margin-top: 0;
  padding: 0 var(--space-8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .08em;
  white-space: nowrap;
  border-radius: var(--radius-md);
  transition:
    background-color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    transform 100ms var(--ease-out);
}
.mobile-nav a:not(.mobile-reserve) + .mobile-reserve { margin-top: var(--space-3); }
.mobile-nav .mobile-reserve.btn-gold { color: var(--ink-on-brass); }
.mobile-nav .mobile-reserve.btn-ghost { border-color: var(--brass); color: var(--cream); }
.mobile-nav .mobile-reserve:active { transform: translateY(1px); }
.mobile-nav .mobile-reserve[aria-disabled="true"] {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .mobile-nav .mobile-reserve:hover { transform: translateY(-1px); }
  .mobile-nav .mobile-reserve.btn-gold:hover { color: var(--ink-on-brass); }
  .mobile-nav .mobile-reserve.btn-ghost:hover { color: var(--brass-bright); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 64rem) {
  body.no-scroll > header {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
  }
  .navlinks { display: none; }
  .nav-cta { display: none; }
  .menu-toggle {
    display: block;
    background: none;
    border: 1px solid var(--line);
    color: var(--cream);
    padding: 9px 14px;
    border-radius: 3px;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .04em;
    transition: border-color .2s, color .2s;
  }
  .menu-toggle:hover,
  .menu-toggle[aria-expanded="true"] {
    border-color: var(--brass);
    color: var(--brass-bright);
  }
  .menu-toggle:active { transform: translateY(1px); }
  .menu-toggle:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
  }
  .mobile-nav { display: flex; } /* visible in DOM, but opacity:0 until open */
  .menu-showcase__index { display: none; }
}

@media (max-width: 900px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; gap: 40px; }
  .menu-showcase__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-12);
  }
  .split { grid-template-columns: 1fr; }
  .ev { grid-template-columns: 84px 1fr; gap: 18px; }

  /* Reserve CTA in nav: hide on mobile, it lives in the drawer instead */
  nav > .btn { display: none; }
}

/* ============================================================
   INTERIOR PAGE BANNER
   Reusable compact hero for about.html, menu.html, events.html, etc.
   ============================================================ */
.page-banner {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(12,22,15,.45) 0%, rgba(12,22,15,.72) 50%, rgba(12,22,15,.97) 100%),
    radial-gradient(110% 80% at 65% 20%, rgba(47,107,67,.38), transparent 60%),
    url('') center / cover no-repeat; /* override per-page with inline style or a utility class */
  padding: 72px 0 64px;
}
.page-banner .wrap {
  position: relative;
  z-index: 1;
}
.page-banner .eyebrow {
  margin-bottom: 14px;
}
.page-banner h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.04;
  letter-spacing: -.01em;
  color: var(--cream);
  max-width: 18ch;
}

/* ============================================================
   ACTIVE NAV LINK
   Applies to both .navlinks and #mobileNav via aria-current="page"
   ============================================================ */
.navlinks a[aria-current="page"] {
  color: var(--cream);
  position: relative;
}
.navlinks a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--brass);
  border-radius: 1px;
}
.mobile-nav a[aria-current="page"] {
  color: var(--brass-bright);
}

/* ============================================================
   PAGE BANNER: PER-PAGE MODIFIER CLASSES
   Each sets the background-image after the two gradient layers.
   ============================================================ */
.banner-menu {
  background-image:
    linear-gradient(180deg, rgba(12,22,15,.45) 0%, rgba(12,22,15,.72) 50%, rgba(12,22,15,.97) 100%),
    radial-gradient(110% 80% at 65% 20%, rgba(47,107,67,.38), transparent 60%),
    url('../assets/food/entrees/fish-and-chips.webp');
  background-size: cover;
  background-position: center 58%;
}
.banner-events {
  background-image:
    linear-gradient(180deg, rgba(12,22,15,.45) 0%, rgba(12,22,15,.72) 50%, rgba(12,22,15,.97) 100%),
    radial-gradient(110% 80% at 65% 20%, rgba(47,107,67,.38), transparent 60%),
    url('../assets/interiorPics/site/events-hero.webp');
  background-size: cover;
  background-position: center;
}
.banner-about {
  background-image:
    linear-gradient(180deg, rgba(12,22,15,.45) 0%, rgba(12,22,15,.72) 50%, rgba(12,22,15,.97) 100%),
    radial-gradient(110% 80% at 65% 20%, rgba(47,107,67,.38), transparent 60%),
    url('../assets/interiorPics/site/about-hero.webp');
  background-size: cover;
  background-position: center;
}
.banner-reserve {
  background-image:
    linear-gradient(180deg, rgba(12,22,15,.45) 0%, rgba(12,22,15,.72) 50%, rgba(12,22,15,.97) 100%),
    radial-gradient(110% 80% at 65% 20%, rgba(47,107,67,.38), transparent 60%),
    url('../assets/interiorPics/site/reservations-hero.webp');
  background-size: cover;
  background-position: center;
}

/* ============================================================
   MENU PAGE
   ============================================================ */

/* Alternating section tint */
.menu-alt { background: var(--green); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Static section directory for the long-form menu page. */
.menu-directory {
  height: auto;
  background: var(--green-900);
  border-bottom: 1px solid var(--line);
}
.menu-directory .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) var(--space-6);
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}
.menu-directory a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--cream-dim);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: .35em;
  transition: color var(--duration-fast) var(--ease-out);
}
.menu-directory a:hover,
.menu-directory a:focus-visible { color: var(--brass-bright); }
#appetizers,
#salads,
#sandwiches,
#entrees,
#boxtys,
#soups,
#desserts,
#kids { scroll-margin-top: 96px; }

/* Menu list: name … price rows */
.menu-list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.menu-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 6px;
}
.menu-item h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
.menu-item .price {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 18px;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-item p {
  color: var(--cream-dim);
  font-size: 14px;
  line-height: 1.55;
  max-width: 68ch;
}

/* Dietary / allergen badge */
.menu-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--brass);
  border-radius: 2px;
  padding: 1px 5px;
  margin-left: 7px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* Two-column sides + puddings layout */
.menu-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Menu notes / CTA centred block */
.menu-notes-block { background: var(--green); border-top: 1px solid var(--line); }
.menu-notes-block .wrap { margin-left: auto; margin-right: auto; }
.menu-notes {
  max-width: var(--content-narrow);
  text-align: center;
}
.menu-notes__legend {
  color: var(--cream-dim);
  margin: 16px 0 10px;
  font-size: 15px;
}
.menu-notes__copy {
  color: var(--cream-dim);
  font-size: 15px;
  margin-bottom: var(--space-10);
}
.menu-notes__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}
.menu-notes__actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  min-height: 48px;
  padding: 0 var(--space-3);
}
@media (max-width: 600px) {
  .menu-notes__actions { flex-direction: column; align-items: center; }
}
.split--joined { margin-top: 2px; border-top: none; }
.split--joined .pane { border-top: none; }

/* ============================================================
   EVENTS PAGE
   ============================================================ */

/* Weekly lineup grid */
.week-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.week-card {
  background: var(--green-panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px 26px 28px;
  transition: border-color .2s, transform .22s;
}
.week-card:hover {
  border-color: var(--brass);
  transform: translateY(-4px);
}
.week-day {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--brass);
  margin-bottom: 12px;
}
.week-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 10px;
}
.week-card p {
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.6;
}
.cms-empty-state {
  grid-column: 1 / -1;
  color: var(--cream-dim);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--space-8) 0;
  line-height: 1.65;
}
.cms-empty-state a {
  color: var(--brass-bright);
  text-underline-offset: .22em;
}

/* Private events CTA block */
.private-cta-block { background: var(--green); border-top: 1px solid var(--line); }
.private-cta {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.private-cta-img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  background: var(--green-panel);
}
.private-cta-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.construction-card__art {
  filter: saturate(.9) contrast(1.04);
}
.construction-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 5vw, 56px);
  text-align: center;
  background: radial-gradient(circle at center, rgba(6,18,12,.72) 0%, rgba(6,18,12,.48) 42%, transparent 72%);
}
.construction-card__logo {
  width: clamp(132px, 28%, 190px);
  height: auto;
  margin-bottom: clamp(18px, 3vw, 28px);
}
.construction-card__title {
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1;
}
.construction-card__status {
  margin: 14px 0 0;
  color: var(--brass-bright);
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.private-cta-copy {
  color: var(--cream-dim);
  max-width: 52ch;
  margin: var(--space-5) 0 var(--space-8);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Values 3-up grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  background: var(--green-panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 28px 32px;
}
.value-icon {
  margin-bottom: 18px;
}
.value-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.65;
}

/* The Space section two-column */
.space-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.space-text p {
  color: var(--cream-dim);
  font-size: 17px;
  margin-bottom: 18px;
}
.space-link-row { margin-top: var(--space-5); }

/* About CTA bar */
.about-cta-block {
  background: #0b130d;
  border-top: 1px solid var(--line);
}
.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.about-cta h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 48px);
  margin-top: 8px;
}
.about-cta-copy {
  color: var(--cream-dim);
  margin-top: var(--space-5);
  max-width: 44ch;
}
.about-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   RESERVE PAGE
   ============================================================ */

/* Two-column layout */
.reserve-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.reserve-heading { margin-bottom: var(--space-5); }
.reserve-lead {
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.35;
  margin-bottom: var(--space-7);
}
.reserve-copy {
  color: var(--cream-dim);
  font-size: 16px;
  margin-bottom: var(--space-5);
}
.reserve-copy--last { margin-bottom: var(--space-9); }
.reserve-copy strong { color: var(--cream); }
.reserve-info-col > .map-card:first-child { margin-bottom: var(--space-7); }
.reserve-info-col > .reserve-note { margin-top: var(--space-7); }
.reserve-note p + p { margin-top: 10px; }

/* Form shell */
.reserve-form {
  background: var(--green-panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 40px 36px 36px;
}

/* Field grid: 2-col with full-width overrides */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-bottom: 28px;
}
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }

/* Labels */
.field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--cream-dim);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.req { color: var(--brass); }
.field-opt { color: var(--cream-dim); font-weight: 400; font-size: 12px; }

/* Inputs, selects, textarea */
.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  background: var(--green);
  color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.4;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.reserve-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a24b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.reserve-form option { background: var(--green-panel); }
.reserve-form textarea { resize: vertical; min-height: 100px; }
.reserve-form input::placeholder,
.reserve-form textarea::placeholder { color: rgba(205, 191, 159, .58); }
.reserve-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(1) saturate(2) hue-rotate(5deg);
  cursor: pointer;
}
.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(201,162,75,.18);
}

/* Submit button */
.reserve-submit {
  width: 100%;
  padding: 15px 22px;
  font-size: 15px;
}

/* Small note below button */
.form-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--cream-dim);
  text-align: center;
}
.form-note a { color: var(--brass-bright); font-weight: 600; }

/* Confirmation message */
.reserve-confirm {
  background: var(--green-panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 48px 36px;
  text-align: center;
}
.reserve-confirm p { color: var(--cream-dim); font-size: 16px; line-height: 1.6; }
.reserve-confirm a { color: var(--cream); }

/* Right info column note */
.reserve-note {
  background: var(--green-panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px 26px;
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.6;
}
.reserve-note .eyebrow { margin-bottom: 10px; }

/* ============================================================
   RESPONSIVE: INTERIOR PAGES
   ============================================================ */
@media (max-width: 900px) {
  /* Menu page */
  .menu-two-col { grid-template-columns: 1fr; gap: 56px; }

  /* Events page */
  .week-grid { grid-template-columns: 1fr 1fr; }
  .private-cta { grid-template-columns: 1fr; }
  .private-cta-img { display: none; }

  /* About page */
  .values-grid { grid-template-columns: 1fr; gap: 20px; }
  .space-grid { grid-template-columns: 1fr; }
  .about-cta { flex-direction: column; align-items: flex-start; }

  /* Reserve page */
  .reserve-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
}
@media (max-width: 600px) {
  .week-grid { grid-template-columns: 1fr; }
}

/* ============ EMMET ROOM PAGE ============ */

/* Banner modifier, using the same gradient stack as other .banner-* rules */
.banner-emmet {
  background-image:
    linear-gradient(180deg, rgba(12,22,15,.45) 0%, rgba(12,22,15,.72) 50%, rgba(12,22,15,.97) 100%),
    radial-gradient(110% 80% at 65% 20%, rgba(47,107,67,.38), transparent 60%),
    url('../assets/interiorPics/site/emmet-room-hero.webp');
  background-size: cover;
  background-position: center;
}

/* Capacity card grid: 2-up (reuses .values-grid; override to 2-col) */
.emmet-capacity-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
}
.emmet-lead {
  color: var(--cream-dim);
  font-size: 18px;
  max-width: 68ch;
  margin-bottom: var(--space-5);
  font-style: italic;
}
.emmet-summary {
  color: var(--cream-dim);
  font-size: 17px;
  max-width: 72ch;
  margin-bottom: var(--space-10);
}
.capacity-number {
  font-size: 48px;
  color: var(--brass);
  font-family: var(--serif);
  line-height: 1;
  margin-bottom: var(--space-4);
}
.booking-wrap { max-width: 760px; }
.booking-intro {
  color: var(--cream-dim);
  margin-bottom: var(--space-9);
  max-width: 60ch;
}

/* Shared event-space enquiry modal */
.booking-dialog {
  width: min(760px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  color: var(--cream);
  background: transparent;
  border: 0;
  overflow: visible;
}
.booking-dialog::backdrop {
  background: rgba(5, 10, 7, .82);
  backdrop-filter: blur(5px);
}
.booking-dialog__surface {
  position: relative;
  max-height: calc(100dvh - 32px);
  padding: 36px;
  overflow-y: auto;
  background: var(--green-900);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .65);
}
.booking-dialog__header { padding-right: 48px; margin-bottom: var(--space-7); }
.booking-dialog__header h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  margin-top: var(--space-2);
}
.booking-dialog__intro {
  color: var(--cream-dim);
  margin-bottom: var(--space-7);
  max-width: 60ch;
}
.booking-dialog__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-round);
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  line-height: 1;
}
.booking-dialog__close:hover { color: var(--brass-bright); border-color: var(--brass); }
.booking-dialog .reserve-form { padding: 30px; }
body.modal-open { overflow: hidden; }

@media (max-width: 600px) {
  .booking-dialog { width: calc(100% - 20px); max-height: calc(100dvh - 20px); }
  .booking-dialog__surface {
    max-height: calc(100dvh - 20px);
    padding: 26px 18px 18px;
  }
  .booking-dialog__close { top: 12px; right: 12px; }
  .booking-dialog .reserve-form { padding: 24px 18px; }
}

/* Ideal For: two-column list with brass/cream treatment */
.ideal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 28px;
}
.ideal-item {
  padding: 16px 22px;
  font-size: 15px;
  color: var(--cream-dim);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.ideal-item:nth-child(odd) {
  border-right: 1px solid var(--line);
  background: var(--green-panel);
}
.ideal-item:nth-child(even) {
  background: transparent;
}
/* Remove border-bottom from the last two items */
.ideal-item:nth-last-child(-n+2) {
  border-bottom: none;
}
.ideal-item::before {
  content: '◆';
  color: var(--brass);
  margin-right: 10px;
  font-family: var(--serif);
}
.ideal-footnote {
  font-size: 14px;
  color: var(--cream-dim);
  font-style: italic;
  opacity: .75;
  letter-spacing: .02em;
}

/* Photo gallery grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Photo placeholder tile */
.photo-ph {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--green-panel);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0;
}
.photo-ph > img {
  width: 100%;
  min-height: 0;
  flex: 1;
  object-fit: cover;
}
.photo-ph-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--cream-dim);
  opacity: .55;
}
.photo-ph-inner svg {
  color: var(--brass);
  opacity: .7;
}
.photo-ph-inner span {
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}
.photo-caption {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--cream-dim);
  border-top: 1px solid var(--line);
  font-style: italic;
  text-align: center;
  background: rgba(12,22,15,.4);
}

/* ---- Responsive: Emmet Room page ---- */
@media (max-width: 900px) {
  .emmet-capacity-grid { grid-template-columns: 1fr; max-width: 100%; }
  .ideal-grid { grid-template-columns: 1fr; }
  .ideal-item:nth-child(odd) { border-right: none; }
  .ideal-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .ideal-item:last-child { border-bottom: none; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .photo-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   POLISH PASS: a11y, tablet responsiveness, focus, reduced-motion,
   tap targets. Appended intentionally so source order wins the cascade.
   ============================================================ */

/* Skip-to-content link (WCAG 2.4.1) */
.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: var(--z-skip-link);
  background: var(--brass); color: #1a1305;
  padding: 10px 16px; border-radius: 3px; font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 8px; }

/* Visible keyboard focus; :focus-visible leaves mouse/touch untouched */
a:focus-visible,
.btn:focus-visible,
button:focus-visible,
.navlinks a:focus-visible,
.mobile-nav a:focus-visible,
.social a:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--brass-bright);
  outline-offset: 3px;
  border-radius: 2px;
}
/* Preserve a focus ring for form fields in forced-colors / High-Contrast */
.reserve-form input:focus-visible,
.reserve-form select:focus-visible,
.reserve-form textarea:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

/* Screen-reader-only utility (for dietary badge expansions, etc.) */
.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;
}

/* Event titles are now <h3> (were <h4>); keep identical styling */
.ev h3 { font-family: var(--serif); font-size: 23px; }

/* Bring touch targets up to the ~44px minimum */
.menu-toggle { padding: 10px 16px; }

/* Preserve readable CTA contrast when a mobile action points to the current page */
.mobile-nav a.btn-gold[aria-current="page"] { color: var(--ink-on-brass); }
.mobile-nav a.btn-ghost[aria-current="page"] {
  color: var(--cream);
  background: var(--green-panel);
  border-color: var(--brass-bright);
}

/* Mobile drawer: scrollable on short/landscape screens; full-row tap area for links */
.mobile-nav { overflow-y: auto; justify-content: safe center; }
.mobile-nav a:not(.btn) { width: 100%; }

/* ---- Tablet (600–900px) polish ---- */
@media (max-width: 900px) {
  section.block { padding: var(--space-18) 0; }
  .values-grid:not(.emmet-capacity-grid) { grid-template-columns: 1fr 1fr; gap: 24px; }
  .about-img { max-width: 520px; margin-left: auto; margin-right: auto; }
  .about-grid p, .space-text p { max-width: 62ch; }
  /* Keep reservation fields two-up through the tablet range (stack only on true mobile) */
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field-full { grid-column: 1 / -1; }
}

/* ---- Mobile (<=600px) ---- */
@media (max-width: 600px) {
  section.block { padding: var(--space-14) 0; }
  .menu-showcase__head {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: var(--space-7);
    margin-bottom: var(--space-10);
  }
  .menu-showcase__intro h2 { font-size: clamp(36px, 13vw, 52px); }
  .soup-feature {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-2);
    padding: var(--space-5) 0;
  }
  .soup-feature__content {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-2);
  }
  .soup-feature__note { text-align: left; }
  .menu-showcase__grid { padding-top: var(--space-8); gap: var(--space-10); }
  .featured-dish__image { height: clamp(280px, 95vw, 390px); }
  .supporting-dish {
    grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
    gap: var(--space-4);
  }
  .supporting-dish img { height: 120px; }
  .values-grid:not(.emmet-capacity-grid) { grid-template-columns: 1fr; }
  .stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-7) var(--space-6);
  }
  .stats > div:last-child { grid-column: 1 / -1; }
  .stats .num { font-size: 32px; }
  .stats .lbl { font-size: 11px; letter-spacing: .12em; }
  .scroll-hint { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
}

/* Respect reduced-motion preferences (WCAG 2.2.2: the infinite ticker and smooth scroll) */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* Footer: original width, reduced height */
/* Brand logo images (replace the text/knot lockups) */
.brand-logo { height: 60px; width: auto; display: block; }
.footer-logo { width: 150px; max-width: 62%; height: auto; display: block; margin: 0 auto 6px; }
@media (max-width: 600px) { .brand-logo { height: 42px; } }
