:root {
  --ink: #28170f;
  --muted: #705b4c;
  --paper: #fff8ef;
  --cream: #f7eadb;
  --clay: #a6422d;
  --clay-dark: #743121;
  --olive: #536235;
  --honey: #d99a2b;
  --charcoal: #17110d;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(41, 21, 12, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Commissioner", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  padding-block: 12px;
  background: rgba(35, 20, 13, 0.94);
  box-shadow: 0 16px 40px rgba(20, 10, 5, 0.24);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-weight: 700;
}

.main-nav a {
  position: relative;
  font-size: 0.95rem;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--honey);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: end;
  gap: 32px;
  padding: 156px clamp(20px, 4vw, 56px) 54px;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(23, 12, 6, 0.89), rgba(23, 12, 6, 0.52) 48%, rgba(23, 12, 6, 0.28)),
    linear-gradient(0deg, rgba(23, 12, 6, 0.72), rgba(23, 12, 6, 0.06) 42%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content,
.today-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--honey);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(4.8rem, 13vw, 12rem);
}

.hero-subtitle {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--clay);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--clay-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.button.ghost {
  color: var(--clay-dark);
  border-color: rgba(116, 49, 33, 0.35);
  background: transparent;
}

.today-panel {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 248, 239, 0.12);
  backdrop-filter: blur(12px);
}

.today-panel span,
.today-panel strong,
.today-panel a {
  display: block;
}

.today-panel span {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.today-panel strong {
  margin-bottom: 18px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.08;
}

.today-panel a {
  color: var(--honey);
  font-weight: 800;
}

.section,
.band {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 4vw, 56px);
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.intro {
  background: var(--cream);
}

.intro h2,
.daily-menu h2,
.place h2,
.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 4.5rem);
}

.intro p:last-child,
.daily-copy p,
.place-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading h2 + p {
  margin-top: 18px;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dish-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(112, 91, 76, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(56, 31, 18, 0.08);
}

.dish-card.feature {
  grid-row: span 2;
}

.dish-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.dish-card.feature img {
  height: 100%;
  min-height: 420px;
}

.dish-card div {
  padding: 20px;
}

.dish-card span {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dish-card h3 {
  margin: 8px 0 8px;
  font-size: 1.4rem;
}

.dish-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.daily-menu {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 4vw, 56px);
  background: #f1dec7;
}

.daily-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.daily-photo img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
}

.order {
  background: var(--paper);
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.order-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(112, 91, 76, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(56, 31, 18, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.order-card:hover,
.order-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.order-card.call {
  color: var(--white);
  background: var(--olive);
}

.order-card span,
.order-card strong,
.order-card small {
  display: block;
}

.order-card span {
  margin-bottom: 34px;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0.72;
  text-transform: uppercase;
}

.order-card strong {
  margin-bottom: 12px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  line-height: 1;
}

.order-card small {
  max-width: 260px;
  color: currentColor;
  font-size: 0.96rem;
  opacity: 0.78;
}

.place {
  background: var(--charcoal);
  color: var(--white);
}

.place-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.place-gallery {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  grid-template-rows: repeat(2, 190px);
  gap: 12px;
}

.place-gallery img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.place-gallery img:first-child {
  grid-row: span 2;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: #100b08;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .band,
  .daily-menu,
  .order-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .today-panel {
    max-width: 520px;
  }

  .dish-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dish-card.feature {
    grid-row: auto;
  }

  .dish-card.feature img {
    height: 260px;
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    position: relative;
    z-index: 21;
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 24px;
    padding: 96px 24px;
    background: rgba(24, 14, 9, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    font-size: 1.45rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding: 118px 18px 32px;
  }

  h1 {
    font-size: clamp(4rem, 24vw, 6.8rem);
  }

  .dish-grid {
    grid-template-columns: 1fr;
  }

  .dish-card img,
  .dish-card.feature img {
    height: 230px;
  }

  .place-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .place-gallery img,
  .place-gallery img:first-child {
    grid-row: auto;
    height: 230px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

  .hero-actions .button,
  .button-row .button {
    width: 100%;
  }

  .today-panel,
  .order-card,
  .dish-card div {
    padding: 18px;
  }
}
