:root {
  --ink: #161411;
  --paper: #f4ead8;
  --masa: #f9f0d6;
  --brick: #96391f;
  --brick-dark: #6f2619;
  --gold: #d89f2f;
  --green: #123d31;
  --green-dark: #08251f;
  --wood: #3a2015;
  --muted: rgba(22, 20, 17, .68);
  --line: rgba(22, 20, 17, .18);
  --cream-line: rgba(249, 240, 214, .24);
  --shadow: 0 28px 88px rgba(58, 32, 21, .2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos Narrow", "Arial Narrow", "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; }
button { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--masa);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.site-header.is-scrolled, .menu-header {
  background: rgba(244, 234, 216, .94);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: .7rem;
  letter-spacing: .04em;
}
.top-nav {
  display: flex;
  gap: 30px;
  font-size: .73rem;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.top-nav a, .header-action { text-decoration: none; }
.header-action {
  justify-self: end;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 19px;
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  background: var(--green-dark);
}
.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(8, 37, 31, .96), rgba(8, 37, 31, .72) 42%, rgba(8, 37, 31, .1) 78%),
    linear-gradient(0deg, rgba(8, 37, 31, .76), rgba(8, 37, 31, .08) 54%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100dvh;
  width: min(830px, calc(100% - 34px));
  flex-direction: column;
  justify-content: flex-end;
  padding: 112px 0 104px clamp(18px, 6vw, 76px);
  color: var(--masa);
}
.eyebrow {
  margin: 0 0 16px;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .2em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Arial Narrow", "Aptos Narrow", Impact, sans-serif;
  font-weight: 950;
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
}
h1 {
  max-width: 11.5ch;
  margin-bottom: 22px;
  font-size: clamp(4.1rem, 7.8vw, 7.9rem);
}
.hero-text {
  max-width: 535px;
  margin-bottom: 28px;
  color: rgba(249, 240, 214, .84);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
}
.hero-actions, .selector-row, .menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.button, .selector-row button, .menu-filters button, .notice-toggle {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(22, 20, 17, .24);
  border-radius: 999px;
  background: transparent;
  padding: 0 20px;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.button.primary { border-color: var(--brick); background: var(--brick); color: var(--masa); }
.button.ghost { border-color: rgba(249, 240, 214, .56); color: var(--masa); }
.button:active, .header-action:active, .mobile-dock a:active, button:active { transform: translateY(1px); }

.hero-card {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: clamp(22px, 6vw, 74px);
  z-index: 2;
  width: min(326px, calc(100% - 36px));
  border: 1px solid var(--cream-line);
  background: rgba(8, 37, 31, .74);
  padding: 22px;
  color: var(--masa);
  backdrop-filter: blur(14px);
}
.hero-card span, .notice span, .favorite-grid span, .contact-grid span, .menu-board span, .guest-paths span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-card b { display: block; margin-bottom: 10px; font-size: 1.35rem; }
.hero-card p { margin-bottom: 0; color: rgba(249, 240, 214, .76); }

.guest-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}
.guest-paths a {
  min-height: 208px;
  padding: clamp(24px, 5vw, 54px);
  border-right: 1px solid var(--line);
  background: #ead7ad;
  text-decoration: none;
}
.guest-paths a:last-child { border-right: 0; }
.guest-paths b {
  display: block;
  max-width: 34ch;
  font-size: 1.16rem;
}

.feature, .night, .visit, .menu-grid-section {
  padding: clamp(58px, 9vw, 120px) clamp(18px, 5vw, 76px);
}
.feature {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
}
.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  background: #ead7ad;
  padding: clamp(28px, 5vw, 62px);
  box-shadow: var(--shadow);
}
.feature-copy h2, .section-heading h2, .night-copy h2, .visit-copy h2, .menu-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6.4rem);
}
.feature-copy p:not(.eyebrow), .section-heading p:not(.eyebrow), .night-copy p:not(.eyebrow), .visit-copy p, .menu-hero p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
}
.selector-row { margin: 16px 0 22px; }
.selector-row button.is-selected, .menu-filters button.is-selected, .notice-toggle[aria-pressed="true"] {
  border-color: var(--brick);
  background: var(--brick);
  color: var(--masa);
}
.text-link {
  width: max-content;
  color: var(--green);
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.feature-photo {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: var(--green-dark);
}
.feature-photo img, .night > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(8, 37, 31, .84);
  padding: 14px 16px;
  color: var(--masa);
  font-weight: 850;
}

.menu-grid-section { background: #f7efd9; }
.section-heading { margin-bottom: 34px; }
.favorite-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.favorite-grid article {
  min-height: 260px;
  padding: 26px;
  border-right: 1px solid var(--line);
  background: rgba(234, 215, 173, .54);
}
.favorite-grid article:last-child { border-right: 0; }
.favorite-grid h3 { margin-bottom: 14px; font-size: clamp(1.9rem, 3vw, 3.1rem); }
.favorite-grid p { color: var(--muted); }
.food-strip {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  margin-top: 18px;
}
.food-strip img {
  width: 100%;
  height: clamp(260px, 38vw, 520px);
  object-fit: cover;
  border: 1px solid var(--line);
}

.night {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .74fr);
  gap: 0;
  align-items: stretch;
  background: var(--green);
  color: var(--masa);
}
.night > img { min-height: 650px; }
.night-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--green);
  padding: clamp(32px, 5vw, 64px);
}
.night-copy p:not(.eyebrow) { color: rgba(249, 240, 214, .74); }
.notice-toggle {
  width: max-content;
  border-color: rgba(249, 240, 214, .36);
  margin: 8px 0 18px;
}
.notice {
  border: 1px solid var(--cream-line);
  background: rgba(249, 240, 214, .08);
  padding: 20px;
  opacity: .62;
}
.notice.is-active { opacity: 1; box-shadow: 0 20px 70px rgba(0, 0, 0, .22); }
.notice b { display: block; margin-bottom: 8px; font-size: 1.25rem; }
.notice p { margin-bottom: 0; }

.visit { background: #f7efd9; }
.visit-copy { margin-bottom: 34px; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.contact-grid a {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}
.contact-grid a:last-child { border-right: 0; }
.contact-grid b {
  overflow-wrap: anywhere;
  font-size: 1.14rem;
}

.menu-page { padding-bottom: 88px; }
.menu-hero {
  padding: 138px clamp(18px, 6vw, 84px) 36px;
}
.menu-hero h1 { max-width: 10.5ch; }
.menu-filters { margin-bottom: 24px; }
.menu-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: #ead7ad;
}
.menu-board article {
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.menu-board article:nth-child(3n) { border-right: 0; }
.menu-board h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}
.menu-board p { color: var(--muted); }
.menu-visit { padding-top: 80px; }

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

.mobile-dock {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 40;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(249, 240, 214, .24);
  background: rgba(8, 37, 31, .93);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
}
.mobile-dock a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(249, 240, 214, .14);
  color: var(--masa);
  text-decoration: none;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mobile-dock a:last-child { border-right: 0; }
.mobile-dock .dock-main { background: var(--brick); }

@media (hover: hover) {
  .guest-paths a:hover, .contact-grid a:hover, .favorite-grid article:hover { background: #dfc37d; }
  .button:hover, .header-action:hover, .selector-row button:hover, .menu-filters button:hover, .notice-toggle:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 900px) {
  body { padding-bottom: 84px; }
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 16px;
  }
  .top-nav { display: none; }
  .brand { font-size: .76rem; }
  .brand-mark { width: 32px; height: 32px; }
  .header-action { min-height: 40px; padding: 0 15px; }
  .hero-copy {
    width: min(100%, calc(100% - 28px));
    justify-content: center;
    padding: 88px 0 128px 16px;
  }
  h1 {
    max-width: 10.5ch;
    margin-bottom: 16px;
    font-size: clamp(3.05rem, 14vw, 4.4rem);
    line-height: .94;
  }
  .hero-text {
    max-width: 31ch;
    margin-bottom: 18px;
    font-size: .98rem;
  }
  .hero-actions { display: none; }
  .hero-card {
    left: 16px;
    right: 16px;
    bottom: 86px;
    width: auto;
    padding: 14px 16px;
  }
  .hero-card p { display: none; }
  .guest-paths, .feature, .night, .favorite-grid, .food-strip, .contact-grid, .menu-board {
    grid-template-columns: 1fr;
  }
  .guest-paths a, .favorite-grid article, .contact-grid a, .menu-board article {
    border-right: 0;
  }
  .feature, .night, .visit, .menu-grid-section {
    padding: 52px 16px;
  }
  .feature-copy h2, .section-heading h2, .night-copy h2, .visit-copy h2, .menu-hero h1 {
    font-size: clamp(3rem, 14vw, 4.75rem);
  }
  .feature-photo, .night > img { min-height: 380px; }
  .night-copy { padding: 30px 20px; }
  .menu-hero { padding: 112px 16px 24px; }
  .mobile-dock { display: grid; }
}

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