:root {
  --ink: #17211a;
  --forest: #213d2c;
  --sage: #8a9d81;
  --paper: #f5f1e8;
  --white: #fffdf8;
  --line: #d4d0c5;
  --muted: #676a63;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
body, button, a { letter-spacing: 0; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  color: var(--white);
  transition: background-color 180ms ease, min-height 180ms ease;
}
.site-header.scrolled {
  min-height: 68px;
  background: rgba(23, 33, 26, 0.96);
  backdrop-filter: blur(10px);
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 13px;
}
.brand-name { font-family: "Playfair Display", Georgia, serif; font-size: 21px; font-weight: 600; }
.site-nav { display: flex; align-items: center; gap: 31px; font-size: 14px; font-weight: 500; }
.site-nav > a:not(.nav-reserve) { padding: 10px 0; border-bottom: 1px solid transparent; }
.site-nav > a:not(.nav-reserve):hover { border-bottom-color: currentColor; }
.nav-reserve { padding: 11px 18px; border: 1px solid rgba(255,255,255,.75); }
.nav-reserve:hover { background: var(--white); color: var(--ink); }
.menu-toggle { display: none; border: 0; background: transparent; color: inherit; }

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  align-items: end;
  overflow: hidden;
  background: url("assets/images/hero-restaurant.jpg") center center / cover no-repeat;
  color: var(--white);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,17,12,.74) 0%, rgba(10,17,12,.40) 44%, rgba(10,17,12,.08) 72%), linear-gradient(0deg, rgba(10,17,12,.48), transparent 45%);
}
.hero-content { position: relative; z-index: 1; max-width: 730px; padding: 180px 6vw 122px; }
.eyebrow, .section-label {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1, h2, .intro-statement, .reserve-banner p {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
}
.hero h1 { max-width: 690px; margin: 0; font-size: 76px; line-height: 1.02; }
.hero-copy { max-width: 550px; margin: 25px 0 34px; font-size: 19px; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}
.button-primary { background: var(--white); color: var(--ink); }
.button-primary:hover { background: var(--sage); color: var(--white); }
.button-secondary { border-color: rgba(255,255,255,.74); color: var(--white); }
.button-secondary:hover { background: rgba(255,255,255,.14); }
.hero-details {
  position: absolute;
  right: 5vw;
  bottom: 31px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 13px;
}
.hero-details-divider { width: 28px; height: 1px; background: rgba(255,255,255,.65); }

.band { padding: 100px max(6vw, calc((100vw - var(--max)) / 2)); }
.intro { display: grid; grid-template-columns: .55fr 1.65fr 1fr; gap: 55px; align-items: start; }
.section-label { color: var(--forest); }
.intro-statement { margin: -8px 0 0; font-size: 42px; line-height: 1.24; }
.intro-copy { margin: 3px 0 0; color: var(--muted); font-size: 17px; }

.menu-section { background: var(--white); }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; }
.section-heading h2, .story-copy h2, .visit-heading h2 { margin: 0; font-size: 54px; line-height: 1.12; }
.section-heading > p { max-width: 430px; margin: 0 0 7px; color: var(--muted); }
.menu-tabs {
  display: flex;
  gap: 8px;
  margin: 54px 0 32px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}
.menu-tabs button {
  flex: 0 0 auto;
  padding: 12px 17px 14px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}
.menu-tabs button.active { border-bottom-color: var(--forest); color: var(--forest); }
.menu-feature {
  position: relative;
  margin: 0 0 34px;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  background: #e4e0d7;
}
.menu-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-feature figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-width: 160px;
  padding: 14px 17px;
  background: rgba(23, 33, 26, .91);
  color: var(--white);
  flex-direction: column;
}
.menu-feature figcaption span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.menu-feature figcaption strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  font-weight: 500;
}
.menu-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 72px; }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  min-height: 122px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.menu-item h3 { margin: 0 0 5px; font-family: "Playfair Display", Georgia, serif; font-size: 22px; font-weight: 600; }
.menu-item p { margin: 0; color: var(--muted); font-size: 14px; }
.menu-price { padding-top: 3px; font-size: 15px; font-weight: 600; }
.diet-tag { margin-left: 9px; color: var(--sage); font-family: "DM Sans", Arial, sans-serif; font-size: 10px; font-weight: 600; vertical-align: middle; }
.menu-note { margin: 28px 0 0; color: var(--muted); font-size: 11px; }

.story-section { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 690px; background: #dfe2d8; }
.story-image-wrap { min-height: 620px; overflow: hidden; }
.story-image-wrap img { height: 100%; object-fit: cover; }
.story-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px max(6vw, calc((100vw - var(--max)) / 2)) 80px 8vw; }
.story-copy h2 { max-width: 500px; margin-bottom: 29px; }
.story-copy > p:not(.section-label) { max-width: 510px; margin: 0 0 18px; color: #4f5a51; }
.text-link { display: inline-flex; width: fit-content; gap: 9px; margin-top: 17px; border-bottom: 1px solid currentColor; font-size: 14px; font-weight: 600; }

.visit-section { padding-bottom: 0; background: var(--paper); }
.visit-heading { display: grid; grid-template-columns: .5fr 1.5fr; align-items: end; }
.visit-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 70px; margin: 66px 0 88px; padding-top: 38px; border-top: 1px solid var(--line); }
.visit-block { display: flex; flex-direction: column; align-items: flex-start; }
.visit-block h3 { margin: 0 0 18px; font-size: 13px; text-transform: uppercase; }
.visit-block address { margin-bottom: 16px; font-style: normal; }
.visit-block > a:not(.text-link) { margin-bottom: 7px; }
#hours-list { width: 100%; }
#hours-list p { display: flex; justify-content: space-between; gap: 20px; margin: 0 0 8px; }
#hours-list p span:last-child { white-space: nowrap; }
.reserve-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 calc(-1 * max(6vw, (100vw - var(--max)) / 2));
  padding: 45px max(6vw, calc((100vw - var(--max)) / 2));
  background: var(--forest);
  color: var(--white);
}
.reserve-banner p { margin: 0; font-size: 37px; }
.reserve-status { display: block; margin-top: 5px; color: rgba(255,255,255,.72); font-size: 13px; }
.button-light { border-color: var(--white); }
.button-light:hover { background: var(--white); color: var(--forest); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 45px;
  padding: 37px 5vw;
  background: var(--ink);
  color: rgba(255,255,255,.74);
  font-size: 12px;
}
.footer-brand { color: var(--white); font-family: "Playfair Display", Georgia, serif; font-size: 21px; }
.footer-links { display: flex; gap: 26px; }
.site-footer p { margin: 0; text-align: right; }
.mobile-reserve { display: none; }

.not-found-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 28px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}
.not-found-content { max-width: 620px; }
.not-found-code { margin: 0 0 16px; color: var(--sage); font-size: 13px; font-weight: 600; letter-spacing: .12em; }
.not-found-content h1 { margin: 0 0 18px; font-family: "Playfair Display", Georgia, serif; font-size: 54px; font-weight: 500; line-height: 1.12; }
.not-found-content p { margin: 0 auto 30px; color: rgba(255,255,255,.72); }

@media (max-width: 900px) {
  .site-header { min-height: 68px; padding: 0 22px; }
  .brand-name { font-size: 19px; }
  .menu-toggle { display: grid; width: 42px; height: 42px; place-content: center; gap: 5px; cursor: pointer; }
  .menu-toggle span { display: block; width: 21px; height: 1px; background: currentColor; }
  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    display: none;
    width: 100%;
    align-items: stretch;
    gap: 0;
    padding: 10px 22px 25px;
    background: var(--ink);
    flex-direction: column;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 0; }
  .nav-reserve { margin-top: 8px; text-align: center; }
  .hero { min-height: 86svh; background-position: 58% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(10,17,12,.76), rgba(10,17,12,.24)), linear-gradient(0deg, rgba(10,17,12,.5), transparent 54%); }
  .hero-content { padding: 150px 24px 123px; }
  .hero h1 { font-size: 53px; }
  .hero-copy { max-width: 440px; font-size: 17px; }
  .hero-details { right: auto; bottom: 28px; left: 24px; }
  .band { padding: 80px 24px; }
  .intro { grid-template-columns: 1fr; gap: 20px; }
  .intro-statement { font-size: 36px; }
  .intro-copy { max-width: 620px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .section-heading h2, .story-copy h2, .visit-heading h2 { font-size: 45px; }
  .menu-list { grid-template-columns: 1fr; }
  .story-section { grid-template-columns: 1fr; }
  .story-image-wrap { min-height: 470px; }
  .story-copy { padding: 75px 24px; }
  .visit-heading { grid-template-columns: 1fr; gap: 8px; }
  .visit-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
  .reserve-banner { margin: 0 -24px; padding: 40px 24px; }
  .site-footer { grid-template-columns: 1fr; gap: 23px; padding-bottom: 90px; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .site-footer p { text-align: center; }
  .mobile-reserve {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 30;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    background: var(--forest);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(10,17,12,.27);
    font-size: 14px;
    font-weight: 600;
  }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 44px; }
  .hero-copy { margin-top: 18px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-details { gap: 9px; font-size: 11px; }
  .hero-details-divider { width: 16px; }
  .intro-statement { font-size: 32px; }
  .section-heading h2, .story-copy h2, .visit-heading h2 { font-size: 39px; }
  .menu-tabs { margin-top: 38px; }
  .menu-feature { aspect-ratio: 4 / 3; }
  .menu-feature figcaption { right: 12px; bottom: 12px; min-width: 140px; }
  .menu-item { min-height: 112px; gap: 14px; }
  .menu-item h3 { font-size: 20px; }
  .story-image-wrap { min-height: 360px; }
  .visit-grid { grid-template-columns: 1fr; gap: 36px; margin: 48px 0 65px; }
  .reserve-banner { align-items: flex-start; gap: 25px; flex-direction: column; }
  .reserve-banner p { font-size: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
