/* ============================================================
   Blackstone Coventry: design system
   Bright editorial luxe. Instrument Serif + Hanken Grotesk.
   Paper whites, espresso ink, caramel accent.
   ============================================================ */

:root {
  --paper: #FFFFFF;
  --white: #FFFFFF;
  --wash: #F8F6F2;
  --ink: #1D1712;
  --ink-soft: #6B5F53;
  --ink-faint: #998B7C;
  --line: #E5E0D6;
  --line-soft: #EFECE5;
  --dark: #211A13;
  --dark-2: #2B2219;
  --cream-on-dark: #F4ECDE;
  --cream-on-dark-soft: #C9BBA6;
  --accent: #6A992E;
  --accent-deep: #557C24;
  --accent-wash: #EFF4E4;
  --font-display: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-card: 0 1px 2px rgba(33, 26, 19, 0.04), 0 16px 40px -16px rgba(33, 26, 19, 0.14);
  --shadow-lift: 0 2px 4px rgba(33, 26, 19, 0.05), 0 32px 64px -20px rgba(33, 26, 19, 0.22);
  --radius: 2px;
}

html[data-accent="olive"], html[data-accent="palm"] {
  --accent: #6A992E;
  --accent-deep: #557C24;
  --accent-wash: #EFF4E4;
}
html[data-accent="rust"], html[data-accent="aperitivo"] {
  --accent: #D44427;
  --accent-deep: #B23519;
  --accent-wash: #FBEAE4;
}
html[data-accent="noir"] {
  --accent: #1D1712;
  --accent-deep: #1D1712;
  --accent-wash: #EDECE8;
}

/* ---- reset ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px; /* keep anchor targets clear of the sticky nav */
  -webkit-text-size-adjust: 100%;
}
html, body { overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 2px;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent-wash); color: var(--accent-deep); }

.wrap { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
@media (max-width: 640px) { .wrap { width: calc(100% - 40px); } }

/* ---- type ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
}
.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.display em {
  font-style: normal;
  color: var(--accent-deep);
}
h1.display { font-size: clamp(38px, 5.6vw, 72px); }
h2.display { font-size: clamp(30px, 4vw, 52px); }
h3.display { font-size: clamp(22px, 2.6vw, 30px); }
.lede {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-soft);
  max-width: 56ch;
  text-wrap: pretty;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: var(--accent-deep); }
.btn-line { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-line:hover { background: var(--ink); color: var(--paper); }
.btn-cream { background: var(--cream-on-dark); color: var(--dark); }
.btn-cream:hover { background: var(--white); }
.btn-line-cream { border-color: rgba(244, 236, 222, 0.5); color: var(--cream-on-dark); background: transparent; }
.btn-line-cream:hover { border-color: var(--cream-on-dark); background: rgba(244, 236, 222, 0.08); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  transition: color 0.2s var(--ease);
}
.text-link:hover { color: var(--accent-deep); }
.text-link .arr { transition: transform 0.25s var(--ease); }
.text-link:hover .arr { transform: translateX(4px); }

/* ---- top strip ---- */
.topstrip {
  background: var(--dark);
  color: var(--cream-on-dark-soft);
  font-size: 12.5px;
  letter-spacing: 0.06em;
}
.topstrip .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 38px;
}
.topstrip a { color: var(--cream-on-dark); text-decoration: none; }
.topstrip a:hover { text-decoration: underline; }
.topstrip .strip-left { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topstrip .strip-right { display: flex; gap: 22px; white-space: nowrap; }
@media (max-width: 860px) {
  .topstrip .strip-left { display: none; }
  .topstrip .wrap { justify-content: center; }
}

/* ---- nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.3s var(--ease);
}
/* blur lives on a pseudo-element, NOT on .nav itself: backdrop-filter would
   make .nav a containing block and trap the position:fixed mobile menu inside
   the header box instead of the viewport. */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav.is-scrolled { box-shadow: 0 8px 30px -18px rgba(33, 26, 19, 0.35); }
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  line-height: 1;
}
.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px var(--line-soft), 0 2px 8px rgba(33, 26, 19, 0.12);
}
.brand-text { display: flex; flex-direction: column; }
.brand .brand-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand .brand-sub {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.is-active { color: var(--ink); border-color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { min-height: 44px; padding: 0 22px; font-size: 13px; }
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: none;
  border: 0;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* drawer-only elements (injected by site.js) are hidden on desktop */
.drawer-head, .drawer-cta, .nav-backdrop { display: none; }

@media (max-width: 980px) {
  .burger { display: flex; }
  .nav-cta .btn-line { display: none; }

  /* right-side slide-in drawer */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(330px, 84vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0 0 28px;
    background: var(--paper);
    box-shadow: -24px 0 70px -34px rgba(33, 26, 19, 0.55);
    transform: translateX(101%);
    transition: transform 0.36s var(--ease);
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 200;
  }
  .nav.menu-open .nav-links { transform: translateX(0); }

  .nav-links a:not(.drawer-cta) {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 19px 26px;
    border-bottom: 1px solid var(--line-soft);
    transition: color 0.2s var(--ease), background 0.2s var(--ease);
  }
  .nav-links a:not(.drawer-cta):hover { color: var(--accent-deep); background: var(--wash); }

  /* drawer header: a restaurant-style "Menu" label bar */
  .drawer-head {
    display: flex;
    align-items: center;
    min-height: 64px;
    padding: 0 26px;
    border-bottom: 1px solid var(--line);
  }
  .drawer-head .drawer-label {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .drawer-cta { display: inline-flex; margin: 24px 26px 0; }

  /* burger animates to an X and stays above the drawer to close it */
  .nav.menu-open .burger { position: relative; z-index: 210; }

  /* dim backdrop behind the drawer */
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(20, 15, 11, 0.46);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.36s var(--ease);
    z-index: 190;
  }
  .nav-backdrop.is-on { opacity: 1; pointer-events: auto; }
}

/* ---- hero ---- */
.hero { overflow: clip; }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 104px);
}
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.hero-meta strong { font-weight: 600; color: var(--ink); }
.hero-art { position: relative; }
.hero-art .hero-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
}
.hero-art .hero-img-b {
  position: absolute;
  left: -64px;
  bottom: -40px;
  width: 44%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--paper);
  box-shadow: var(--shadow-card);
}
.hero-badge {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 132px;
  height: 132px;
  animation: spin 24s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .hero-badge { animation: none; } }
@keyframes spin { to { transform: rotate(360deg); } }

html[data-hero="dark"] .hero { background: var(--dark); }
html[data-hero="dark"] .hero .display,
html[data-hero="dark"] .hero-meta { color: var(--cream-on-dark); }
html[data-hero="dark"] .hero .display em { color: #D9A063; }
html[data-hero="dark"] .hero .lede { color: var(--cream-on-dark-soft); }
html[data-hero="dark"] .hero .btn-solid { background: var(--cream-on-dark); color: var(--dark); }
html[data-hero="dark"] .hero .btn-solid:hover { background: var(--white); }
html[data-hero="dark"] .hero .btn-line { border-color: rgba(244, 236, 222, 0.5); color: var(--cream-on-dark); }
html[data-hero="dark"] .hero .btn-line:hover { background: rgba(244, 236, 222, 0.1); color: var(--cream-on-dark); }
html[data-hero="dark"] .hero-meta strong { color: var(--cream-on-dark); }
html[data-hero="dark"] .hero-art .hero-img-b { border-color: var(--dark); }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art .hero-img { aspect-ratio: 5 / 4; }
  .hero-art .hero-img-b { display: none; }
  .hero-badge { top: auto; bottom: -20px; right: 8px; width: 104px; height: 104px; }
}

/* ---- sections ---- */
.section { padding-block: clamp(64px, 8vw, 120px); }
.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: clamp(36px, 5vw, 64px);
  max-width: 760px;
}
.section-head.center { margin-inline: auto; text-align: center; align-items: center; }
.section-head .lede { margin-top: 2px; }

/* ---- flight cards ---- */
.flight-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.flight-card {
  position: relative;
  display: block;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.flight-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.flight-card .fc-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.flight-card:hover .fc-img { transform: scale(1.045); }
.flight-card .fc-body { padding: 18px 18px 20px; }
.flight-card .fc-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
}
.flight-card .fc-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-top: 6px;
}
.flight-card .fc-price {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.flight-card .fc-go {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(250, 247, 241, 0.92);
  border-radius: 50%;
  font-size: 16px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.flight-card:hover .fc-go { opacity: 1; transform: translateY(0); }
@media (max-width: 1080px) {
  .flight-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 24px;
    padding-bottom: 18px;
    margin-inline: -24px;
    padding-inline: 24px;
    scrollbar-width: none;
  }
  .flight-grid::-webkit-scrollbar { display: none; }
  .flight-card { flex: 0 0 246px; scroll-snap-align: start; }
}
@media (max-width: 640px) {
  /* gutter shrinks to 20px below 640 — keep the carousel bleed in sync
     or the negative margin forces page-wide horizontal scroll */
  .flight-grid { margin-inline: -20px; padding-inline: 20px; scroll-padding-inline: 20px; }
}

/* ---- reviews ---- */
.review-band { background: var(--wash); border-block: 1px solid var(--line-soft); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
}
.review {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 26px;
  border-top: 2px solid var(--ink);
}
.review .stars { color: var(--accent); font-size: 15px; letter-spacing: 4px; }
.review blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.review cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.review-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 36px;
  margin-top: clamp(36px, 5vw, 56px);
  font-size: 13.5px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-align: center;
}
.review-foot strong { color: var(--ink); }
@media (max-width: 860px) { .review-grid { grid-template-columns: 1fr; } }

/* ---- menu preview ---- */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.dish {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.dish img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.dish .dish-body {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 14px 16px 16px;
}
.dish .dish-name { font-weight: 600; font-size: 15.5px; }
.dish .dish-cat { display: block; font-weight: 400; font-size: 12.5px; color: var(--ink-faint); margin-top: 2px; letter-spacing: 0.04em; }
.dish .dish-price { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--accent-deep); }
.section-foot { display: flex; justify-content: center; margin-top: clamp(32px, 4vw, 48px); }
@media (max-width: 980px) { .dish-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- dark band (golf) ---- */
.band-dark {
  background: var(--dark);
  color: var(--cream-on-dark);
}
.band-dark .split-copy .lede { color: var(--cream-on-dark-soft); }
.band-dark .eyebrow { color: var(--accent); }
.band-dark .eyebrow::before { background: var(--accent); }
.band-dark .display em { color: var(--accent); }

/* ---- split layout ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.split.flip .split-art { order: 2; }
.split-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.split-art { position: relative; }
.split-art .main-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
}
.split-art .tag-img {
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 42%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--paper);
  box-shadow: var(--shadow-card);
}
.band-dark .split-art .tag-img { border-color: var(--dark); }
.split-list { display: flex; flex-direction: column; gap: 0; list-style: none; width: 100%; }
.split-list li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.band-dark .split-list li { border-color: rgba(244, 236, 222, 0.14); }
.split-list .li-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--accent);
  min-width: 28px;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.flip .split-art { order: 0; }
  .split-art .tag-img { right: 8px; bottom: -24px; }
}

/* ---- instagram ---- */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.ig-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
}
.ig-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.ig-grid a:hover img { transform: scale(1.06); }
.ig-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(33, 26, 19, 0);
  transition: background 0.3s var(--ease);
}
.ig-grid a:hover::after { background: rgba(33, 26, 19, 0.18); }
@media (max-width: 860px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---- CTA band ---- */
.cta-band { background: var(--accent-wash); }
.cta-band .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
  padding-block: clamp(64px, 8vw, 110px);
}
.cta-band .display { max-width: 18ch; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ---- visit / map ---- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.visit-block { display: flex; flex-direction: column; gap: 26px; }
.visit-rows { display: flex; flex-direction: column; }
.visit-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
}
.visit-row .vr-label { color: var(--ink-soft); }
.visit-row .vr-value { font-weight: 600; text-align: right; }
.visit-row.is-today .vr-label, .visit-row.is-today .vr-value { color: var(--accent-deep); }
.map-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  filter: saturate(0.82);
}
@media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; } }

/* ---- footer ---- */
.footer {
  background: var(--dark);
  color: var(--cream-on-dark-soft);
  padding-block: clamp(56px, 7vw, 88px) 40px;
  font-size: 14.5px;
}
.footer a { color: var(--cream-on-dark); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(244, 236, 222, 0.14);
}
.footer-brand .brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand .brand-logo {
  width: 56px;
  height: 56px;
  box-shadow: 0 0 0 1px rgba(244, 236, 222, 0.18);
}
.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--cream-on-dark);
}
.footer-brand p { margin-top: 14px; max-width: 34ch; text-wrap: pretty; }
.footer h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-on-dark);
  margin-bottom: 16px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 26px;
  font-size: 12.5px;
  color: rgba(201, 187, 166, 0.75);
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  /* brand block is wider than one column (logo + 26px wordmark) — let it
     span the full row so it never collides with the Explore column */
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand .brand-name { font-size: 22px; }
}


/* ---- reservation modal ---- */
.resv-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(33, 26, 19, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.resv-overlay.is-open { opacity: 1; pointer-events: auto; }
.resv-modal {
  width: min(480px, 100%);
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px); /* iOS dynamic toolbar */
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--paper);
  border-radius: 6px;
  box-shadow: 0 40px 90px -20px rgba(0, 0, 0, 0.5);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s var(--ease);
}
.resv-overlay.is-open .resv-modal { transform: none; }
.resv-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 28px 0;
}
.resv-head .display { font-size: 26px; }
.resv-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-size: 16px;
  line-height: 1;
  color: var(--ink-soft);
  transition: background 0.2s, color 0.2s;
}
.resv-close:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.resv-body { padding: 20px 28px 28px; display: flex; flex-direction: column; gap: 16px; }
.resv-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-faint);
  letter-spacing: 0.03em;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  padding: 13px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.seg-party { display: flex; gap: 8px; flex-wrap: wrap; }
.seg-party button {
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all 0.2s var(--ease);
}
.seg-party button.is-on {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.time-grid button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all 0.2s var(--ease);
}
.time-grid button.is-on { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.resv-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 36px 28px 44px;
}
.resv-success .big-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-wash);
  color: var(--accent-deep);
  font-size: 26px;
}
.resv-modal.is-done .resv-body, .resv-modal.is-done .resv-head { display: none; }
.resv-modal.is-done .resv-success { display: flex; }

/* ---- reveal ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  }
  .reveal.is-in { opacity: 1; transform: none; }
  .reveal[data-delay="1"] { transition-delay: 0.08s; }
  .reveal[data-delay="2"] { transition-delay: 0.16s; }
  .reveal[data-delay="3"] { transition-delay: 0.24s; }
  .reveal[data-delay="4"] { transition-delay: 0.32s; }
}

/* ---- page hero (interior pages) ---- */
.page-hero { padding-block: clamp(48px, 6vw, 88px) 0; }
.page-hero .section-head { margin-bottom: 0; }

/* ---- menu page ---- */
.menu-tabs {
  position: sticky;
  top: 76px;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  margin-top: clamp(32px, 4vw, 56px);
}
.menu-tabs .wrap {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-tabs .wrap::-webkit-scrollbar { display: none; }
.menu-tabs a {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 16px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.menu-tabs a:hover { color: var(--ink); }
.menu-tabs a.is-active { color: var(--accent-deep); border-color: var(--accent); }
.menu-section { padding-block: clamp(48px, 6vw, 80px); scroll-margin-top: 140px; }
.menu-section + .menu-section { border-top: 1px solid var(--line); }
.menu-cat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}
.menu-cat-note { font-size: 14.5px; color: var(--ink-soft); max-width: 52ch; text-wrap: pretty; margin-bottom: 28px; }
.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px clamp(36px, 5vw, 72px);
}
.menu-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
}
.menu-item .mi-top {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.menu-item .mi-name { font-weight: 600; font-size: 16px; }
.menu-item .mi-dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px);
}
.menu-item .mi-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--accent-deep);
  white-space: nowrap;
}
.menu-item .mi-desc { font-size: 14px; color: var(--ink-soft); text-wrap: pretty; }
.menu-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.menu-feature .mf-img {
  position: sticky;
  top: 150px;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
@media (max-width: 900px) {
  .menu-cols { grid-template-columns: 1fr; }
  .menu-feature { grid-template-columns: 1fr; }
  .menu-feature .mf-img { position: static; aspect-ratio: 16 / 10; }
  /* nav stays sticky at 76px on mobile; top:0 would tuck the tabs
     behind it (tabs are z-60, nav is z-90) */
  .menu-tabs { top: 76px; }
}

/* ---- pill chips (flavors etc) ---- */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
}

/* ---- event form card ---- */
.form-card {
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow-card);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--accent-wash);
  border-radius: var(--radius);
  color: var(--accent-deep);
  font-weight: 600;
  font-size: 15px;
}
.form-card.is-sent .form-success { display: flex; }

/* ---- catering / event inquiry form: centered on mobile ---- */
@media (max-width: 900px) {
  /* home page event section (.split.flip) centers its heading + form */
  .split.flip .split-copy { align-items: center; text-align: center; }
  .split.flip .split-copy .lede { margin-inline: auto; }
  .split.flip .split-copy .form-card { text-align: left; } /* labels stay left-read */
}
@media (max-width: 760px) {
  .form-card { width: 100%; max-width: 480px; margin-inline: auto; }
  .form-card .btn[type="submit"] { width: 100%; } /* clear full-width CTA */
}

/* ---- small-viewport polish ---- */
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-ctas, .cta-actions { width: 100%; }
  .hero-ctas .btn, .cta-actions .btn { flex: 1 1 100%; }
  .review-foot { flex-direction: column; gap: 10px; }
}
@media (max-width: 520px) {
  /* nav contents exceed a 375px viewport at full size — compact the
     brand and CTA so the burger is never pushed past the right edge */
  .nav .wrap { gap: 12px; min-height: 64px; }
  .brand { gap: 10px; }
  .brand-logo { width: 40px; height: 40px; }
  .brand .brand-name { font-size: 17px; }
  .brand .brand-sub { font-size: 8px; letter-spacing: 0.14em; margin-top: 3px; }
  .nav-cta { gap: 6px; }
  .nav-cta .btn { min-height: 40px; padding: 0 14px; font-size: 12px; }
  .burger { width: 44px; height: 44px; padding: 11px; }
  .menu-tabs { top: 64px; } /* match compacted nav height */
  html { scroll-padding-top: 76px; }
}
@media (max-width: 380px) {
  .time-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- util ---- */
.mt-8 { margin-top: 8px; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
}
.skip-link:focus { left: 12px; top: 12px; }
