:root {
  --ink: #17130f;
  --paper: #f3e7cf;
  --cream: #fff7e8;
  --brick: #8f2f1f;
  --tomato: #cf3f25;
  --mustard: #d9a928;
  --steel: #4d514b;
  --line: rgba(23, 19, 15, 0.18);
  --shadow: 0 26px 80px rgba(34, 20, 12, 0.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Arial Narrow", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  line-height: 1.45;
  letter-spacing: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px clamp(18px, 4vw, 52px);
  color: var(--cream);
  transition: background 220ms ease, color 220ms ease, border 220ms ease;
}
.site-header.is-scrolled, .menu-header {
  background: rgba(243, 231, 207, 0.92);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.brand-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid currentColor;
  box-shadow: inset 0 0 0 5px transparent;
}
.top-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.top-nav a, .header-action { text-decoration: none; }
.header-action {
  justify-self: end;
  min-height: 42px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 18px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.hero {
  position: relative;
  min-height: 100dvh;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(23, 19, 15, .92), rgba(23, 19, 15, .68) 42%, rgba(23, 19, 15, .1) 82%),
    linear-gradient(0deg, rgba(23, 19, 15, .78), rgba(23, 19, 15, .05) 46%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100dvh;
  width: min(760px, calc(100% - 34px));
  flex-direction: column;
  justify-content: flex-end;
  padding: 128px 0 104px clamp(18px, 6vw, 78px);
  color: var(--cream);
}
.eyebrow, .section-label {
  margin: 0 0 16px;
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: .98;
  letter-spacing: 0;
}
h1 {
  max-width: 8.5ch;
  margin-bottom: 22px;
  font-size: clamp(4rem, 11vw, 9.4rem);
}
.hero-text {
  max-width: 570px;
  margin-bottom: 28px;
  color: rgba(255, 247, 232, .84);
  font-size: clamp(1rem, 2vw, 1.18rem);
}
.hero-actions, .menu-buttons, .menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 20px;
  text-decoration: none;
  font-size: .75rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.button.primary { background: var(--tomato); color: var(--cream); }
.button.ghost { border: 1px solid rgba(255, 247, 232, .52); color: var(--cream); }

.counter-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}
.counter-strip div {
  min-height: 196px;
  padding: clamp(24px, 5vw, 56px);
  border-right: 1px solid var(--line);
  background: #ead8b8;
}
.counter-strip div:last-child { border-right: 0; }
.counter-strip span {
  display: block;
  margin-bottom: 30px;
  color: var(--brick);
  font-weight: 950;
}
.counter-strip b { display: block; margin-bottom: 8px; font-size: 1.05rem; }
.counter-strip p { max-width: 30ch; margin-bottom: 0; color: rgba(23, 19, 15, .68); }

.menu-section, .status-section, .visit-section, .board-section {
  padding: clamp(56px, 9vw, 118px) clamp(18px, 5vw, 76px);
}
.section-label { color: var(--brick); }
.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  min-height: 660px;
  border: 1px solid var(--line);
  background: #ead8b8;
  box-shadow: var(--shadow);
}
.menu-image {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.menu-image img, .visit-section > img, .status-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-image figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  width: max-content;
  max-width: calc(100% - 36px);
  padding: 10px 12px;
  background: rgba(23, 19, 15, .78);
  color: var(--cream);
  font-size: .8rem;
  font-weight: 800;
}
.menu-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 5vw, 62px);
  border-left: 1px solid var(--line);
}
.menu-panel span[data-menu-number] {
  width: max-content;
  margin-bottom: 28px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--tomato);
  color: var(--brick);
  font-weight: 950;
}
.menu-panel h2, .status-copy h2, .visit-copy h2, .menu-hero h1 {
  font-size: clamp(2.8rem, 6vw, 6rem);
}
.menu-panel p:not(.eyebrow), .status-copy p:not(.eyebrow), .visit-copy p, .menu-hero p {
  max-width: 58ch;
  color: rgba(23, 19, 15, .7);
}
.menu-buttons { margin: 28px 0 22px; }
.menu-buttons button, .menu-filters button, .status-toggle {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}
.menu-buttons button.is-selected, .menu-filters button.is-active {
  background: var(--ink);
  color: var(--cream);
}
.text-link {
  width: max-content;
  color: var(--brick);
  font-weight: 950;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.status-section {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: var(--ink);
  color: var(--cream);
}
.status-copy p:not(.eyebrow) { color: rgba(255, 247, 232, .72); }
.status-toggle {
  margin-top: 16px;
  color: var(--cream);
  border-color: rgba(255, 247, 232, .28);
}
.status-card {
  display: grid;
  grid-template-rows: 420px auto;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}
.status-card div { padding: 26px; }
.status-card span {
  color: var(--tomato);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.status-card h3 {
  margin: 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.visit-section > img { min-height: 600px; box-shadow: var(--shadow); }
.contact-grid { display: grid; gap: 0; margin-top: 26px; }
.contact-grid a {
  display: grid;
  gap: 3px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}
.contact-grid span {
  color: var(--brick);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.menu-page { background: #ead8b8; }
.menu-hero { padding: 146px clamp(18px, 6vw, 84px) 38px; }
.menu-hero h1 { max-width: 12ch; }
.board-section { padding-top: 12px; }
.menu-filters { margin-bottom: 22px; }
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.board-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 180ms ease, opacity 180ms ease;
}
.board-card:hover { transform: translateY(-4px); }
.board-card.is-hidden { display: none; }
.board-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--tomato);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.board-card h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}
.board-card p { color: rgba(23, 19, 15, .68); }
.note-card { background: var(--ink); color: var(--cream); }
.note-card p { color: rgba(255, 247, 232, .72); }

.mobile-dock {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  min-height: 58px;
  border: 1px solid rgba(255, 247, 232, .28);
  background: rgba(23, 19, 15, .88);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 46px rgba(0, 0, 0, .32);
}
.mobile-dock a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 58px;
  border-right: 1px solid rgba(255, 247, 232, .16);
  color: var(--cream);
  text-decoration: none;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.mobile-dock a:last-child { border-right: 0; }
.mobile-dock .dock-call { background: var(--tomato); }

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 580ms ease, transform 580ms ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .top-nav { display: none; }
  .counter-strip, .menu-layout, .status-section, .visit-section, .board-grid { grid-template-columns: 1fr; }
  .counter-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .menu-panel { border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 680px) {
  body { padding-bottom: 86px; }
  .site-header { padding: 17px 16px; }
  .brand { font-size: .76rem; letter-spacing: .12em; }
  .brand-dot { width: 18px; height: 18px; }
  .header-action { min-height: 40px; padding: 0 14px; font-size: .66rem; }
  .hero-copy {
    width: 100%;
    justify-content: center;
    padding: 92px 16px 132px;
  }
  h1 {
    max-width: 8.2ch;
    font-size: clamp(3.2rem, 14.5vw, 4.55rem);
  }
  .hero-text { max-width: 31ch; margin-bottom: 20px; }
  .menu-section, .status-section, .visit-section, .board-section { padding: 52px 16px; }
  .menu-image { min-height: 320px; }
  .menu-panel { padding: 26px 18px; }
  .menu-panel h2, .status-copy h2, .visit-copy h2, .menu-hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.4rem);
  }
  .status-card { grid-template-rows: 320px auto; }
  .visit-section > img { min-height: 360px; }
  .menu-hero { padding: 116px 16px 24px; }
  .board-card { min-height: 230px; padding: 20px; }
  .mobile-dock { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
