:root {
  --ink: #11100f;
  --ink-soft: #1c1917;
  --ivory: #f2ede3;
  --paper: #e5ddd0;
  --wine: #a61f38;
  --wine-dark: #741226;
  --gold: #c8a66a;
  --muted: #9d9488;
  --line-light: rgba(242, 237, 227, 0.22);
  --line-dark: rgba(17, 16, 15, 0.2);
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
section[id] { scroll-margin-top: 72px; }
body {
  margin: 0;
  color: var(--ivory);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { color: var(--ivory); background: var(--wine); }

.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;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ivory);
  background: var(--wine);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  min-height: 92px;
  padding: 14px clamp(20px, 4.5vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: min-height 250ms ease, background 250ms ease, border-color 250ms ease;
}
.site-header.scrolled {
  min-height: 74px;
  background: rgba(17, 16, 15, 0.92);
  border-color: var(--line-light);
  backdrop-filter: blur(14px);
}
.brand { width: max-content; display: flex; align-items: center; gap: 12px; }
.brand-monogram {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font: 1.45rem var(--serif);
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font: 1.35rem var(--serif); letter-spacing: 0.03em; }
.brand-copy small { margin-top: 6px; color: var(--muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; }
.navigation { display: flex; align-items: center; gap: clamp(24px, 3vw, 48px); }
.navigation a { position: relative; font-size: 0.84rem; font-weight: 500; }
.navigation a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.navigation a:hover::after, .navigation a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.reserve-link { justify-self: end; padding-bottom: 5px; border-bottom: 1px solid var(--gold); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.reserve-link span { margin-left: 15px; color: var(--gold); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 800px;
  height: min(100svh, 960px);
  padding: 118px clamp(20px, 4.5vw, 76px) 48px;
  display: grid;
  grid-template-columns: minmax(400px, 0.92fr) minmax(500px, 1.08fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 9vw 100%,
    var(--ink);
}
.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38%;
  height: 1px;
  background: var(--gold);
}
.hero-copy { position: relative; z-index: 4; }
.kicker, .overline { margin: 0 0 28px; color: var(--gold); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; }
.hero h1, .section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}
.hero h1 { font-size: clamp(5rem, 7vw, 8rem); }
.hero h1 em, .section h2 em { color: var(--wine); font-weight: 400; }
.hero-text { max-width: 570px; margin: 34px 0 0; color: rgba(242,237,227,.7); font-size: clamp(1rem,1.3vw,1.2rem); }
.hero-actions { margin-top: 40px; display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}
.button:hover { transform: translateY(-3px); }
.button-light { color: var(--ink); background: var(--ivory); }
.button-light:hover { color: var(--ivory); background: var(--wine); }
.button-outline { color: var(--ivory); background: transparent; }
.button-outline:hover { color: var(--ink); background: var(--gold); }
.button-dark { color: var(--ivory); background: var(--ink); }
.button-dark:hover { background: var(--wine); }
.line-link { padding-bottom: 5px; border-bottom: 1px solid var(--line-light); font-size: 0.84rem; }
.line-link span { margin-left: 16px; color: var(--gold); }
.hero-image {
  position: relative;
  z-index: 2;
  height: auto;
  width: min(100%, 480px, 46svh);
  aspect-ratio: 2 / 3;
  min-width: 0;
  justify-self: center;
  margin: 0;
  overflow: hidden;
  border-radius: 46% 46% 0 0;
}
.hero-image::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(17,16,15,.68)); }
.hero-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: sepia(.12) saturate(.75) contrast(1.08); transition: transform 900ms ease; }
.hero-image:hover img { transform: scale(1.035); }
.hero-image figcaption { position: absolute; z-index: 2; right: 28px; bottom: 24px; left: 28px; display: flex; justify-content: space-between; gap: 20px; padding-top: 13px; border-top: 1px solid rgba(242,237,227,.5); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.hero-vertical { position: absolute; z-index: 3; top: 50%; right: 20px; writing-mode: vertical-rl; transform: translateY(-50%); color: var(--gold); font-size: .7rem; letter-spacing: .24em; }
.hero-number { position: absolute; z-index: 1; right: 37%; bottom: -9rem; color: rgba(242,237,227,.035); font: 24rem/.8 var(--serif); }

.status-bar { min-height: 88px; padding: 18px clamp(20px,4.5vw,76px); display: grid; grid-template-columns: 1.2fr 1fr 1fr; align-items: center; gap: 30px; color: var(--ink); background: var(--gold); }
.status-bar p, .live-status { margin: 0; display: flex; align-items: center; gap: 14px; font-size: .82rem; }.status-bar p { justify-content: center; border-left: 1px solid rgba(17,16,15,.28); }.status-dot { width: 9px; aspect-ratio: 1; border-radius: 50%; background: #276a46; box-shadow: 0 0 0 5px rgba(39,106,70,.14); }.live-status.closed .status-dot { background: var(--wine); box-shadow: 0 0 0 5px rgba(166,31,56,.13); }

.section { position: relative; padding: clamp(100px,13vw,190px) clamp(20px,6.5vw,110px); }
.section-mark { position: absolute; top: clamp(60px,8vw,110px); left: clamp(20px,4.5vw,76px); display: flex; align-items: center; gap: 16px; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; }
.section-mark i { display: block; width: 55px; height: 1px; background: currentColor; }
.section-mark.light { color: rgba(242,237,227,.58); }
.cuisine-heading > .section-mark,
.contact-copy > .section-mark { position: static; margin-bottom: 50px; }
.section h2 { font-size: clamp(3.7rem,6.4vw,7rem); }

.manifest { min-height: 850px; color: var(--ink); background: var(--ivory); display: grid; grid-template-columns: 1fr 130px; align-items: center; }
.manifest-copy { max-width: 1050px; margin: 0 auto; }
.manifest-copy h2 { max-width: 1000px; }
.manifest-copy h2 em { display: block; margin-left: 12%; }
.manifest-columns { max-width: 730px; margin: 65px 0 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 55px; color: rgba(17,16,15,.7); }
.manifest-columns p { margin: 0; }
.manifest-seal { position: relative; width: 140px; aspect-ratio: 1; align-self: end; margin-bottom: 20px; display: grid; place-items: center; color: var(--wine); }
.manifest-seal > span { position: absolute; font: 3rem var(--serif); }.manifest-seal svg { width: 100%; height: 100%; animation: rotate 24s linear infinite; }.manifest-seal text { fill: var(--wine); font: 600 9px var(--sans); letter-spacing: .13em; }

.cuisine { color: var(--ivory); background: var(--wine-dark); overflow: hidden; }
.cuisine::before { content: "CUISINE"; position: absolute; top: 16%; right: -1%; color: rgba(242,237,227,.035); font: 11rem var(--serif); letter-spacing: .08em; }
.cuisine-heading { margin-bottom: 100px; }.cuisine-heading h2 em { color: var(--gold); }
.signature-grid { max-width: 1480px; margin-inline: auto; display: grid; grid-template-columns: 1.05fr .95fr; grid-template-rows: minmax(500px,auto) minmax(420px,auto); border: 1px solid var(--line-light); }
.signature-photo, .ribs-photo { position: relative; margin: 0; overflow: hidden; }.signature-photo { border-right: 1px solid var(--line-light); }.ribs-photo { border-left: 1px solid var(--line-light); }.signature-photo img, .ribs-photo img { height: 100%; object-fit: cover; transition: transform 800ms ease; }.signature-photo:hover img, .ribs-photo:hover img { transform: scale(1.03); }
.photo-index { position: absolute; right: 16px; bottom: 16px; padding: 7px 10px; color: var(--ivory); background: var(--ink); font-size: .72rem; letter-spacing: .1em; }
.signature-copy, .cuisine-note { padding: clamp(35px,5vw,80px); display: flex; flex-direction: column; justify-content: center; }
.signature-copy h3, .cuisine-note h3 { margin: 0; font: 400 clamp(2.4rem,4.4vw,5rem)/1 var(--serif); letter-spacing: -.04em; }.signature-copy > p, .cuisine-note p { max-width: 560px; margin: 30px 0; color: rgba(242,237,227,.68); }.dish-label, .cuisine-note > span { margin-bottom: 35px; color: var(--gold); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; }.signature-copy blockquote { margin: auto 0 4px; padding-top: 24px; border-top: 1px solid var(--line-light); font: 400 1.4rem var(--serif); }.signature-copy small { color: rgba(242,237,227,.5); font-size: .72rem; }.cuisine-note { color: var(--ink); background: var(--gold); }.cuisine-note p { color: rgba(17,16,15,.7); }.cuisine-note > span { color: var(--wine-dark); }
.menu-route { max-width: 1480px; margin: 40px auto 0; padding-top: 30px; display: flex; justify-content: space-between; align-items: center; gap: 30px; border-top: 1px solid var(--line-light); }.menu-route p { max-width: 550px; margin: 0; color: rgba(242,237,227,.65); }

.evenings { color: var(--ink); background: var(--paper); }
.evenings-heading { max-width: 1100px; margin: 0 auto 100px; }.evenings-heading h2 em { display: block; margin-left: 12%; }
.event-list { max-width: 1480px; margin-inline: auto; border-top: 1px solid var(--ink); }
.event-row { min-height: 155px; display: grid; grid-template-columns: 60px .75fr 1.2fr 40px; align-items: center; gap: 35px; border-bottom: 1px solid var(--ink); transition: color 200ms ease, background 200ms ease, padding 200ms ease; }.event-row:hover { padding-inline: 20px; color: var(--ivory); background: var(--wine); }.event-index { font-size: .75rem; }.event-row h3 { margin: 0; font: 400 clamp(2rem,3.5vw,3.8rem) var(--serif); }.event-row p { max-width: 520px; margin: 0; color: rgba(17,16,15,.65); }.event-row:hover p { color: rgba(242,237,227,.72); }.event-arrow { justify-self: end; color: var(--wine); font-size: 1.5rem; }.event-row:hover .event-arrow { color: var(--gold); }
.event-cta { max-width: 1480px; margin: 55px auto 0; display: flex; justify-content: space-between; align-items: center; gap: 30px; }.event-cta p { margin: 0; }.event-cta div { display: flex; gap: 30px; }.event-cta a { padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }

.contact { min-height: 720px; display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: clamp(60px,10vw,170px); background: var(--ink); }
.contact-copy h2 em { color: var(--gold); }.phone { display: inline-block; margin-top: 50px; padding-bottom: 8px; border-bottom: 1px solid var(--gold); font: 400 clamp(2rem,3.8vw,4rem) var(--serif); }
.contact-card { padding: clamp(35px,5vw,70px); color: var(--ink); background: var(--ivory); box-shadow: 20px 20px 0 var(--wine); }
.contact-block { padding-block: 26px; border-bottom: 1px solid var(--line-dark); }.contact-block:first-child { padding-top: 0; }.contact-block span, .contact-block strong, .contact-block small { display: block; }.contact-block span { margin-bottom: 10px; color: var(--wine); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; }.contact-block strong { font: 400 1.45rem/1.4 var(--serif); }.contact-block small { margin-top: 8px; color: rgba(17,16,15,.55); font-size: .78rem; }.contact-card .button { width: 100%; margin-top: 35px; }

.site-footer { padding: 42px clamp(20px,4.5vw,76px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; border-top: 1px solid var(--line-light); background: var(--ink); }.footer-brand { font: 400 2.6rem var(--serif); }.site-footer > p { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }.footer-links { justify-self: end; display: flex; gap: 10px; }.footer-links a { width: 38px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--line-light); border-radius: 50%; font-size: .72rem; transition: color 180ms ease, background 180ms ease; }.footer-links a:hover { color: var(--ink); background: var(--gold); }.site-footer small { grid-column: 1 / -1; color: rgba(242,237,227,.32); font-size: .72rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 460ms ease, transform 460ms cubic-bezier(.2,.65,.2,1); }.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes rotate { to { transform: rotate(360deg); } }

@media (min-width: 1600px) {
  .site-header,
  .hero,
  .status-bar,
  .site-footer {
    padding-inline: max(76px, calc((100vw - 1640px) / 2));
  }

  .hero {
    grid-template-columns: minmax(520px, 700px) minmax(560px, 720px);
    justify-content: space-between;
  }

  .hero-copy { max-width: 700px; }
  .hero h1 { font-size: 8rem; }

  .section {
    padding-inline: max(110px, calc((100vw - 1560px) / 2));
  }

  .section-mark {
    left: max(76px, calc((100vw - 1640px) / 2));
  }

  .cuisine-heading,
  .evenings-heading { max-width: 1480px; }

  .contact {
    grid-template-columns: minmax(560px, 720px) minmax(480px, 620px);
    justify-content: space-between;
  }
}

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .navigation { position: fixed; z-index: -1; inset: 0; padding: 110px 30px 50px; flex-direction: column; justify-content: center; background: var(--wine-dark); opacity: 0; visibility: hidden; transition: opacity 200ms ease, visibility 200ms ease; }.navigation.open { z-index: 98; opacity: 1; visibility: visible; }.navigation a { font: 400 clamp(2.5rem,8vw,4.5rem)/1 var(--serif); }
  .reserve-link { display: none; }.nav-toggle { position: relative; z-index: 101; width: 43px; height: 43px; padding: 0; display: grid; place-items: center; border: 1px solid var(--line-light); background: transparent; cursor: pointer; }.nav-toggle span:not(.sr-only) { position: absolute; width: 20px; height: 1px; background: var(--ivory); transition: transform 180ms ease; }.nav-toggle span:first-child { transform: translateY(-4px); }.nav-toggle span:nth-child(2) { transform: translateY(4px); }.nav-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: rotate(-45deg); }
  .hero { height: auto; min-height: 920px; grid-template-columns: .9fr 1.1fr; }.hero h1 { font-size: clamp(4.7rem,10vw,7.5rem); }
  .manifest { grid-template-columns: 1fr; }.manifest-seal { justify-self: end; }
  .signature-grid { grid-template-rows: minmax(430px,auto) minmax(380px,auto); }
  .event-row { grid-template-columns: 45px .75fr 1fr 30px; gap: 22px; }
  .contact { gap: 60px; }
}

@media (max-width: 820px) {
  .site-header { min-height: 74px; padding-inline: 18px; }.brand-copy small { display: none; }.brand-monogram { width: 36px; }.brand-copy strong { font-size: 1.2rem; }
  .hero { min-height: 0; padding: 120px 18px 55px; grid-template-columns: 1fr; gap: 55px; }.hero h1 { font-size: clamp(4.4rem,20vw,7rem); }.hero-text { margin-top: 25px; }.hero-actions { align-items: stretch; flex-direction: column; }.button { width: 100%; }.line-link { width: max-content; }.hero-image { width: min(100%, 374px); justify-self: center; }.hero-vertical { display: none; }.hero-number { right: -30px; bottom: 40%; font-size: 15rem; }
  .status-bar { grid-template-columns: 1fr; gap: 12px; padding-block: 20px; }.status-bar p { display: none; }
  .section { padding: 110px 18px 90px; }.section-mark { position: static; margin-bottom: 65px; }.section h2 { font-size: clamp(3.4rem,16vw,5.4rem); }
  .manifest { min-height: 0; }.manifest-copy h2 em, .evenings-heading h2 em { margin-left: 0; }.manifest-columns { margin-top: 45px; grid-template-columns: 1fr; gap: 20px; }.manifest-seal { margin-top: 50px; }
  .cuisine::before { display: none; }.cuisine-heading { margin-bottom: 55px; }.signature-grid { grid-template-columns: 1fr; grid-template-rows: 470px auto auto 390px; }.signature-photo, .ribs-photo { border: 0; }.signature-copy, .cuisine-note { padding: 38px 24px; }.signature-copy { min-height: 500px; }.cuisine-note { min-height: 400px; }.menu-route { flex-direction: column; align-items: stretch; }
  .evenings-heading { margin-bottom: 60px; }.event-row { min-height: 0; padding: 28px 0; grid-template-columns: 32px 1fr 25px; gap: 15px; }.event-row p { grid-column: 2 / 4; }.event-row:hover { padding-inline: 10px; }.event-cta { align-items: flex-start; flex-direction: column; }
  .contact { min-height: 0; grid-template-columns: 1fr; }.contact-card { box-shadow: 10px 10px 0 var(--wine); }.phone { font-size: 2.3rem; }
  .site-footer { grid-template-columns: 1fr auto; }.site-footer > p { display: none; }.site-footer small { line-height: 1.5; }
}

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