/* ==========================================================================
   Black Wheat Club — Tablefold concept Demo
   Visual language derived from the restaurant's own frontage and room:
   near-black joinery #12100E, linen #F0E9DC, warm amber #C89B5C,
   dried-wreath olive #6B7355, York brick #8A5A46 (used sparingly).
   Typography: classic serif for display/body (spindle chairs, kilim, chalkboard),
   wide-tracked uppercase sans for signage/nav — the frontage's own lettering voice.
   ========================================================================== */

:root {
  --ink: #12100e;
  --ink-soft: #1d1a17;
  --linen: #f0e9dc;
  --linen-warm: #e7ddcb;
  --linen-deep: #d8cbb4;
  --amber: #c89b5c;
  --amber-soft: #dcb87e;
  --moss: #6b7355;
  --brick: #8a5a46;

  --serif: "Palatino Linotype", "Palatino", "Book Antiqua", "URW Palladio L", Georgia, serif;
  --sans: "Jost", "Futura", "Century Gothic", "Avenir Next", "Helvetica Neue", Arial, sans-serif;

  --gut: clamp(1.25rem, 4vw, 4.5rem);
  --maxw: 1280px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--linen);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

::selection { background: var(--amber); color: var(--ink); }

/* ---------- shared type ---------- */

.eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 1.15rem;
}

.eyebrow--muted { color: var(--moss); }

.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.012em;
  margin: 0;
}

h2.display { font-size: clamp(2.1rem, 5.1vw, 4rem); }
h3.display { font-size: clamp(1.45rem, 2.7vw, 2.1rem); }

.lede {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  color: rgba(240, 233, 220, 0.82);
  margin: 1.5rem 0 0;
  max-width: 58ch;
}

.on-linen .lede, .on-linen p { color: rgba(18, 16, 14, 0.76); }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.02rem 1.9rem;
  border: 1px solid transparent;
  background: var(--amber);
  color: var(--ink);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover { background: var(--linen); }

.btn--ghost {
  background: transparent;
  border-color: rgba(240, 233, 220, 0.5);
  color: var(--linen);
}

.btn--ghost:hover { background: var(--linen); color: var(--ink); border-color: var(--linen); }

.btn--dark {
  background: var(--ink);
  color: var(--linen);
}

.btn--dark:hover { background: var(--brick); color: var(--linen); }

.btn--dark-ghost {
  background: transparent;
  border-color: rgba(18, 16, 14, 0.42);
  color: var(--ink);
}

.btn--dark-ghost:hover { background: var(--ink); color: var(--linen); border-color: var(--ink); }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem var(--gut);
  background: linear-gradient(to bottom, rgba(18, 16, 14, 0.82), rgba(18, 16, 14, 0));
  transition: background 0.45s var(--ease), padding 0.45s var(--ease), border-color 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-solid {
  background: rgba(18, 16, 14, 0.95);
  backdrop-filter: blur(10px);
  padding-top: 0.72rem;
  padding-bottom: 0.72rem;
  border-bottom-color: rgba(240, 233, 220, 0.13);
}

.wordmark {
  font-family: var(--sans);
  font-size: 0.79rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--linen);
  line-height: 1.2;
  transition: font-size 0.4s var(--ease), letter-spacing 0.4s var(--ease), opacity 0.5s var(--ease);
}

.wordmark small {
  display: block;
  font-family: var(--serif);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: none;
  font-style: italic;
  color: var(--amber);
  margin-top: 0.24rem;
}

/* Over the hero the frontage carries its own lettering — stay out of its way. */
.site-header:not(.is-solid) .wordmark {
  opacity: 0;
  pointer-events: none;
}

/* once scrolled, the subtitle retracts so the bar stays a compact mark */
.site-header.is-solid .wordmark small { display: none; }

/* while transparent the header has no left item, so push nav to the edges */
.site-header:not(.is-solid) { justify-content: flex-end; }
.site-header:not(.is-solid) .nav { margin-right: auto; margin-left: 0; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.1rem);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav a { position: relative; padding: 0.3rem 0; color: rgba(240, 233, 220, 0.86); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--amber);
  transition: width 0.4s var(--ease);
}
.nav a:hover { color: var(--linen); }
.nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 0.9rem; }
.header-cta .btn { padding: 0.78rem 1.35rem; font-size: 0.78rem; }

/* The booking CTA lives in .header-cta on desktop; the in-nav copy exists only
   to give the collapsed mobile menu its own full-width button. Without this the
   bar shows the same Reserve a table button twice. */
.nav-cta { display: none; }

.burger {
  display: none;
  width: 42px; height: 42px;
  background: none;
  border: 1px solid rgba(240, 233, 220, 0.34);
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1px;
  background: var(--linen);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 25px; }
.burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}

@media (max-width: 560px) {
  /* On a narrow screen the hero content is taller than one viewport.
     Let the section grow instead of clipping the headline off the top. */
  .hero {
    min-height: 0;
    align-items: stretch;
    padding-top: 42vh;
  }
  .hero__inner { padding-top: 0; }
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  animation: heroDrift 26s var(--ease) forwards;
}

@keyframes heroDrift {
  from { transform: scale(1.07); }
  to { transform: scale(1); }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(12, 10, 9, 0.78) 0%, rgba(12, 10, 9, 0.30) 14%, rgba(12, 10, 9, 0) 30%),
    linear-gradient(to top, rgba(12, 10, 9, 0.94) 0%, rgba(12, 10, 9, 0.66) 30%, rgba(12, 10, 9, 0.1) 62%, rgba(12, 10, 9, 0) 82%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut) clamp(3rem, 8vh, 6.5rem);
}

.hero__title {
  font-size: clamp(2.35rem, 6.4vw, 5.15rem);
  max-width: 20ch;
  color: var(--linen);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.hero__title em {
  font-style: italic;
  color: var(--amber-soft);
}

.hero__sub {
  margin-top: 1.6rem;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.7;
  color: rgba(240, 233, 220, 0.9);
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.4rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem clamp(1.2rem, 3vw, 2.6rem);
  margin-top: 2.9rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(240, 233, 220, 0.2);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 233, 220, 0.7);
}

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  z-index: 3;
  width: 1px; height: 58px;
  background: linear-gradient(to bottom, transparent, rgba(200, 155, 92, 0.85));
}

/* ---------- sections ---------- */

.section { padding: clamp(4.5rem, 10vw, 9rem) var(--gut); }
.section--tight { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.on-linen { background: var(--linen); color: var(--ink); }
.on-ink { background: var(--ink); color: var(--linen); }

.section-head { max-width: 62ch; }
.section-head .lede { margin-top: 1.35rem; }

/* story: text + a supporting real photograph and its facts */
.story-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(2.6rem, 6vw, 6rem);
  align-items: start;
}

.story-aside { margin: 0; }
.story-aside img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 45%;
}

.story-facts { margin: 2rem 0 0; display: grid; gap: 1.15rem; }
.story-facts > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(18, 16, 14, 0.14);
}
.story-facts > div:last-child { border-bottom: none; padding-bottom: 0; }
.story-facts dt {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brick);
}
.story-facts dd {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(18, 16, 14, 0.78);
}

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
}

/* ---------- signature moment strip ---------- */

.signature {
  background: var(--ink-soft);
  border-top: 1px solid rgba(240, 233, 220, 0.09);
  border-bottom: 1px solid rgba(240, 233, 220, 0.09);
}

.signature__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.4rem, 3.5vw, 3rem);
  align-items: center;
}

.signature__pane { margin: 0; }
.signature__pane img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.signature__pane figcaption {
  margin-top: 1rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}
.signature__pane--day img { object-position: 50% 45%; }
.signature__pane--dusk img { object-position: 50% 45%; }

.signature__mid {
  text-align: center;
  padding: 0 clamp(0.5rem, 2vw, 1.5rem);
}
.signature__mid .arrow {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--moss);
  margin-bottom: 0.6rem;
  letter-spacing: 0.1em;
}
.signature__mid p {
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(240, 233, 220, 0.68);
  margin: 0;
  max-width: 20ch;
}

.signature__caption {
  margin-top: clamp(2.4rem, 5vw, 4rem);
  text-align: center;
  max-width: 54ch;
  margin-left: auto;
  margin-right: auto;
}

/* verified third-party recognition — first-party displayed on their own homepage */
.recognition {
  margin: clamp(2.6rem, 5vw, 4rem) auto 0;
  padding-top: clamp(1.6rem, 3vw, 2.2rem);
  border-top: 1px solid rgba(240, 233, 220, 0.16);
  max-width: 54ch;
  text-align: center;
}
.recognition__label {
  display: block;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.recognition__detail {
  display: block;
  font-family: var(--serif);
  font-size: clamp(0.98rem, 1.5vw, 1.14rem);
  font-style: italic;
  color: rgba(240, 233, 220, 0.76);
}
.recognition a { border-bottom: 1px solid rgba(200, 155, 92, 0.5); padding-bottom: 1px; }

/* ---------- split rows ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 0;
}

.split__media { position: relative; overflow: hidden; }
.split__media img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.split--media-left .split__content { order: 2; }

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(1.25rem, 6vw, 6rem);
}

.split__content .btn { align-self: flex-start; margin-top: 2.1rem; }

.split--bake .split__media img { object-position: 50% 52%; }
.split--room .split__media img { object-position: 50% 50%; }

.fact-line {
  margin-top: 2.3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(18, 16, 14, 0.16);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(18, 16, 14, 0.68);
  line-height: 2;
}

/* ---------- full-bleed panel ---------- */

.panel {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.panel__media { position: absolute; inset: 0; }
.panel__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
.panel__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(12, 10, 9, 0.95) 0%, rgba(12, 10, 9, 0.86) 30%, rgba(12, 10, 9, 0.5) 58%, rgba(12, 10, 9, 0.12) 100%);
}
.panel__inner {
  position: relative; z-index: 2;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: clamp(3.5rem, 9vw, 7rem) var(--gut);
}
.panel__body { max-width: 33rem; }
.panel__body .lede { color: rgba(240, 233, 220, 0.85); }
.panel__note {
  margin-top: 2.2rem;
  display: inline-block;
  padding: 0.62rem 1rem;
  border: 1px solid rgba(200, 155, 92, 0.42);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-soft);
}

/* ---------- menu ---------- */

.menu-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(2.6rem, 5vw, 4rem);
}

.menu-windows {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(18, 16, 14, 0.68);
}
.menu-windows span { position: relative; padding-left: 1rem; }
.menu-windows span::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 5px; height: 5px;
  background: var(--amber);
  border-radius: 50%;
  transform: translateY(-50%);
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(2.4rem, 5vw, 4.4rem);
}

.menu-col__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1.5px solid var(--ink);
  margin-bottom: 1.6rem;
}
.menu-col__head h3 {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.005em;
}
.menu-col__head span {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(18, 16, 14, 0.62);
  text-align: right;
}

.menu-list { list-style: none; margin: 0; padding: 0; }

.menu-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 1.1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(18, 16, 14, 0.11);
}
.menu-list li:last-child { border-bottom: none; }

.menu-item__name {
  font-family: var(--sans);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.5;
}
.menu-item__name .diet {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--moss);
  margin-left: 0.42rem;
  white-space: nowrap;
}
.menu-item__name .origin {
  display: block;
  font-family: var(--serif);
  font-size: 0.82rem;
  letter-spacing: 0.005em;
  text-transform: none;
  color: rgba(18, 16, 14, 0.58);
  margin-top: 0.24rem;
}
.menu-item__price {
  font-family: var(--serif);
  font-size: 0.98rem;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  white-space: nowrap;
}
.menu-item__desc {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  line-height: 1.62;
  color: rgba(18, 16, 14, 0.62);
  margin: 0;
  max-width: 46ch;
}

.menu-foot {
  margin-top: clamp(2.6rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  padding-top: 2rem;
  border-top: 1px solid rgba(18, 16, 14, 0.16);
}

.sample-note {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(18, 16, 14, 0.66);
  max-width: 46ch;
}
.sample-note strong {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--brick);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.pdf-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pdf-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.15rem;
  border: 1px solid rgba(18, 16, 14, 0.32);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.32s var(--ease), color 0.32s var(--ease), border-color 0.32s var(--ease);
}
.pdf-links a::after { content: "\2197"; font-size: 0.8rem; }
.pdf-links a:hover { background: var(--ink); color: var(--linen); border-color: var(--ink); }

/* food / category card */
.foodcard {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  background: var(--ink-soft);
  border: 1px solid rgba(240, 233, 220, 0.1);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.foodcard__media img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; object-position: 50% 55%; }
.foodcard__body {
  padding: clamp(2rem, 4.5vw, 3.6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.foodcard__body .eyebrow { color: var(--moss); }
.foodcard__body h3 { color: var(--linen); margin-bottom: 1.1rem; }
.foodcard__body p { color: rgba(240, 233, 220, 0.78); font-size: 0.99rem; line-height: 1.72; }
.foodcard__disclaimer {
  margin-top: 1.7rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(240, 233, 220, 0.15);
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.9;
  color: rgba(240, 233, 220, 0.6);
  margin-bottom: 0;
}

/* ---------- visit ---------- */

.visit-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.6rem, 6vw, 5.6rem);
  align-items: start;
}

.hours-table { width: 100%; border-collapse: collapse; margin-top: 1.9rem; }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(240, 233, 220, 0.14);
  font-weight: 400;
  vertical-align: top;
}
.hours-table th {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  width: 38%;
}
.hours-table td { font-size: 0.98rem; color: rgba(240, 233, 220, 0.84); }
.hours-table tr.is-closed td { color: rgba(240, 233, 220, 0.52); }

.contact-block { margin-top: 2.4rem; }
.contact-block dl { margin: 0; display: grid; gap: 1.05rem; }
.contact-block dt {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.2rem;
}
.contact-block dd { margin: 0; font-size: 1.02rem; color: rgba(240, 233, 220, 0.88); }
.contact-block a { border-bottom: 1px solid rgba(200, 155, 92, 0.5); padding-bottom: 1px; }
.contact-block a:hover { color: var(--amber-soft); border-color: var(--amber-soft); }

.policy {
  background: var(--ink-soft);
  border: 1px solid rgba(240, 233, 220, 0.1);
  padding: clamp(1.8rem, 3.4vw, 2.6rem);
}
.policy h3 {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 1.35rem;
  font-weight: 400;
}
.policy ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 1.05rem; }
.policy li {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(240, 233, 220, 0.82);
  padding-left: 1.25rem;
  position: relative;
}
.policy li::before {
  content: "";
  position: absolute; left: 0; top: 0.68em;
  width: 6px; height: 1px;
  background: var(--moss);
}
.policy .dietary {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(240, 233, 220, 0.13);
  font-size: 0.95rem;
  color: rgba(240, 233, 220, 0.76);
}

.visit-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.2rem; }

.menu-legend {
  margin: 1.2rem 0 0;
  font-size: 0.92rem;
  color: rgba(18, 16, 14, 0.72);
  line-height: 1.7;
  max-width: 72ch;
}

/* ---------- faq ---------- */

.faq { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0 clamp(2rem, 5vw, 4.5rem); margin-top: clamp(2.6rem, 5vw, 3.6rem); }
.faq__item { border-top: 1px solid rgba(18, 16, 14, 0.16); padding: 1.6rem 0; }
.faq__item h3 {
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 400;
  margin: 0 0 0.6rem;
}
.faq__item p { font-size: 1rem; line-height: 1.7; color: rgba(18, 16, 14, 0.76); margin: 0; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(240, 233, 220, 0.12);
  padding: clamp(3rem, 6vw, 4.6rem) var(--gut) 2rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  max-width: var(--maxw);
  margin: 0 auto;
}
.footer-brand .wordmark { margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.92rem; color: rgba(240, 233, 220, 0.6); max-width: 30ch; margin: 0; }
.footer-cols { display: flex; flex-wrap: wrap; gap: clamp(2rem, 5vw, 4.5rem); }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 1rem;
  font-weight: 400;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.62rem; }
.footer-col a, .footer-col span {
  font-size: 0.94rem;
  color: rgba(240, 233, 220, 0.78);
}
.footer-col a:hover { color: var(--amber-soft); }
.footer-bottom {
  max-width: var(--maxw);
  margin: 2.8rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(240, 233, 220, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(240, 233, 220, 0.6);
}

/* ---------- reveal ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__media img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- mobile nav ---------- */

@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .burger { display: block; }

  .site-header.is-open {
    background: rgba(18, 16, 14, 0.98);
    backdrop-filter: blur(10px);
    border-bottom-color: rgba(240, 233, 220, 0.13);
  }

  .nav.is-open {
    display: flex;
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    padding: 5.6rem var(--gut) 2.6rem;
    background: rgba(18, 16, 14, 0.99);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    font-size: 1rem;
    letter-spacing: 0.14em;
    z-index: 110;
    border-bottom: 1px solid rgba(240, 233, 220, 0.14);
  }
  .nav.is-open .nav-cta { display: flex; width: 100%; margin-top: 0.8rem; }
  .nav.is-open .nav-cta .btn { width: 100%; }

  .split { grid-template-columns: 1fr; }
  .split--media-left .split__content { order: 0; }
  .split__media img { min-height: 300px; }
  .split__content { padding: clamp(2.6rem, 9vw, 4rem) var(--gut); }

  .signature__grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .signature__mid { padding: 0.4rem 0; }
  .signature__mid .arrow { transform: rotate(90deg); margin-bottom: 0.2rem; }

  .panel__scrim {
    background: linear-gradient(to top, rgba(12, 10, 9, 0.96) 0%, rgba(12, 10, 9, 0.8) 45%, rgba(12, 10, 9, 0.45) 100%);
  }
  .panel__body { max-width: none; }

  .foodcard { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .menu-foot { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .site-header:not(.is-solid) { justify-content: space-between; }
  .site-header:not(.is-solid) .wordmark { opacity: 1; pointer-events: auto; }
  .hero__media img { object-position: 79% 46%; }
  .hero__meta { gap: 0.5rem 1.4rem; font-size: 0.76rem; letter-spacing: 0.12em; }
  .btn { padding: 0.95rem 1.5rem; font-size: 0.8rem; }
  .hours-table th { width: 42%; }
  .faq { grid-template-columns: 1fr; }
}
