:root {
  --ink: #0b0a08;
  --ink-soft: #1c1712;
  --paper: #f5f0e8;
  --paper-deep: #ebe1d4;
  --muted: #827365;
  --line: rgba(11, 10, 8, 0.16);
  --line-light: rgba(245, 240, 232, 0.24);
  --gold: #b48a45;
  --gold-soft: #d5ba82;
  --chili: #8d2f1f;
  --herb: #596443;
  --shadow: 0 22px 70px rgba(11, 10, 8, 0.22);
  --heading: "Cormorant Garamond", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--paper);
  border-bottom: 1px solid rgba(245, 240, 232, 0.12);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.scrolled,
.site-header.nav-active {
  padding-block: 13px;
  background: rgba(245, 240, 232, 0.96);
  color: var(--ink);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  font-family: var(--heading);
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}

.wordmark span {
  color: var(--gold-soft);
}

.site-header.scrolled .wordmark span,
.site-header.nav-active .wordmark span,
.footer-mark span {
  color: var(--gold);
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(15px, 2.4vw, 32px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-nav a,
.footer-links a {
  position: relative;
}

.primary-nav a::after,
.footer-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span + span {
  margin-top: 6px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

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

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
  filter: saturate(0.88) contrast(1.04);
  transform: scale(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 10, 8, 0.86) 0%, rgba(11, 10, 8, 0.48) 48%, rgba(11, 10, 8, 0.22) 100%),
    linear-gradient(0deg, rgba(11, 10, 8, 0.86) 0%, rgba(11, 10, 8, 0) 54%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(126px, 16vh, 176px) clamp(18px, 7vw, 96px);
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold-soft);
}

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

h1,
h2,
h3 {
  font-family: var(--heading);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(4.2rem, 10vw, 8.8rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
}

h3 {
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(245, 240, 232, 0.82);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.button,
.hero-actions {
  display: inline-flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid currentColor;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.button-ghost {
  color: var(--paper);
}

.quick-links {
  position: absolute;
  left: clamp(18px, 7vw, 96px);
  right: clamp(18px, 7vw, 96px);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  background: rgba(11, 10, 8, 0.34);
  backdrop-filter: blur(14px);
}

.quick-links a {
  min-height: 104px;
  padding: 24px 22px;
  border-right: 1px solid var(--line-light);
  color: rgba(245, 240, 232, 0.9);
  font-size: 0.9rem;
}

.quick-links a:last-child {
  border-right: 0;
}

.quick-links span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section {
  padding: clamp(78px, 11vw, 150px) clamp(18px, 7vw, 96px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.intro-copy {
  max-width: 560px;
  color: #4e443a;
  font-size: 1.04rem;
}

.offerings {
  padding: clamp(78px, 10vw, 132px) 0;
}

.section-heading,
.menu-header {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto clamp(34px, 5vw, 64px);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-card {
  min-width: 0;
  border-right: 1px solid var(--line);
  background: var(--paper);
}

.offer-card:last-child {
  border-right: 0;
}

.offer-card img {
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  object-position: top center;
}

.offer-card div {
  padding: clamp(24px, 4vw, 42px);
}

.offer-card h3,
.recommendation h3 {
  margin-bottom: 14px;
}

.offer-card p:not(.eyebrow),
.kitchen-copy p,
.menu-header p,
.location-details p {
  color: #51473e;
}

.offer-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--chili);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kitchen {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(42px, 7vw, 92px);
  background: var(--ink);
  color: var(--paper);
}

.kitchen-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.kitchen-copy p:not(.eyebrow) {
  color: rgba(245, 240, 232, 0.72);
}

.recommendations {
  display: grid;
  gap: 1px;
  background: var(--line-light);
}

.recommendation {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 26px;
  align-items: center;
  padding: 24px;
  background: var(--ink);
}

.recommendation img {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
}

.recommendation p {
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.recommendation span {
  color: rgba(245, 240, 232, 0.72);
}

.menu-section {
  padding: clamp(78px, 11vw, 150px) clamp(18px, 7vw, 96px);
}

.menu-header {
  width: min(960px, 100%);
  text-align: center;
}

.menu-header p {
  max-width: 650px;
  margin: 18px auto 0;
}

.menu-shell {
  width: min(1060px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.menu-tab {
  min-height: 54px;
  padding: 0 18px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  font: 800 0.68rem/1 var(--body);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.menu-tab:first-child {
  border-left: 1px solid var(--line);
}

.menu-tab:hover,
.menu-tab:focus-visible,
.menu-tab.active {
  background: rgba(180, 138, 69, 0.1);
  color: var(--ink);
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item h3 {
  margin-bottom: 7px;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.05;
}

.menu-item p {
  max-width: 700px;
  margin-bottom: 0;
  color: #5d5248;
}

.menu-item span {
  color: var(--chili);
  font-weight: 800;
  white-space: nowrap;
}

.reviews {
  background: var(--paper-deep);
}

.review-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1120px, 100%);
  margin: 0 auto 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-summary div {
  padding: 26px;
  border-right: 1px solid var(--line);
}

.review-summary div:last-child {
  border-right: 0;
}

.review-summary strong {
  display: block;
  font-family: var(--heading);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 500;
  line-height: 0.9;
}

.review-summary span {
  color: #5d5248;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 1px;
  background: var(--line);
}

.review {
  margin: 0;
  padding: clamp(26px, 4vw, 42px);
  background: var(--paper-deep);
}

.review p {
  font-family: var(--heading);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.06;
}

.review cite {
  color: #5d5248;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background: var(--ink);
  color: var(--paper);
}

.location-image img {
  height: 100%;
  object-fit: cover;
}

.location-details {
  align-self: center;
  padding: clamp(42px, 8vw, 96px);
}

.location-details h2 {
  margin-bottom: 16px;
}

.location-details p {
  color: rgba(245, 240, 232, 0.72);
}

.detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 34px;
}

.detail-list a {
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid var(--line-light);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hours-list {
  margin: 0;
  border-top: 1px solid var(--line-light);
}

.hours-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.hours-list dt {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hours-list dd {
  color: rgba(245, 240, 232, 0.86);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding: 44px clamp(18px, 7vw, 96px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer p {
  max-width: 420px;
  margin: 12px 0 0;
  color: #62574d;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .primary-nav {
    position: fixed;
    inset: 69px 0 auto 0;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 14px 18px 28px;
    background: rgba(245, 240, 232, 0.98);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .site-header.nav-active .primary-nav {
    transform: translateY(0);
  }

  .primary-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .header-action {
    justify-self: end;
  }

  .nav-toggle {
    display: block;
  }

  .quick-links {
    left: 18px;
    right: 18px;
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-links a {
    min-height: 86px;
    border-bottom: 1px solid var(--line-light);
  }

  .quick-links a:nth-child(2n) {
    border-right: 0;
  }

  .intro,
  .kitchen,
  .location {
    grid-template-columns: 1fr;
  }

  .kitchen-copy {
    position: static;
  }

  .offer-grid,
  .review-grid,
  .review-summary {
    grid-template-columns: 1fr;
  }

  .offer-card,
  .review-summary div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .offer-card:last-child,
  .review-summary div:last-child {
    border-bottom: 0;
  }

  .location {
    min-height: auto;
  }

  .location-image img {
    max-height: 520px;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    padding-inline: 14px;
  }

  .wordmark {
    font-size: 1.1rem;
  }

  .header-action {
    display: none;
  }

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

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 14px 34px;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 6.4rem);
  }

  h2 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .quick-links {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin: 0 14px;
  }

  .quick-links a {
    min-height: 76px;
    border-right: 0;
  }

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

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

  .recommendation img {
    aspect-ratio: 1.4;
  }

  .menu-tabs {
    justify-content: stretch;
  }

  .menu-tab {
    flex: 1 1 50%;
    border-left: 0;
  }

  .menu-tab:first-child {
    border-left: 0;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .review-summary div,
  .review {
    padding-inline: 0;
  }

  .reviews .section-heading,
  .review-summary,
  .review-grid {
    width: 100%;
  }

  .location-details {
    padding-inline: 18px;
  }

  .hours-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
