:root {
  --ink: #2a1810;
  --cream: #faf4ec;
  --paper: #fff8f1;
  --red: #9a3412;
  --gold: #c4a574;
  --muted: #7a6558;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.35rem clamp(1.25rem, 4vw, 4rem);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  color: inherit;
  font-size: .84rem;
  font-weight: 700;
  line-height: .92;
  letter-spacing: .18em;
  text-decoration: none;
}
.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
}
.brand span { display: block; }

nav { display: flex; gap: 2rem; }
nav a { text-decoration: none; font-size: .92rem; }

.site-header > .button { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: .75rem 1.35rem;
  color: white;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); background: #cb3d30; }
.button-small { min-height: 2.6rem; padding: .55rem 1rem; font-size: .88rem; }

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #0d0a09;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 8, 7, .95) 0%, rgba(11, 8, 7, .58) 40%, rgba(11, 8, 7, .05) 72%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 92vw);
  padding: 9rem clamp(1.25rem, 7vw, 7rem) 5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; line-height: 1.05; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; }
h1 { margin-bottom: 1.5rem; font-size: clamp(3.4rem, 8vw, 7rem); letter-spacing: -.045em; }
h1 em { color: var(--gold); font-weight: 600; }
h2 { margin-bottom: 1.5rem; font-size: clamp(2.4rem, 5vw, 4.6rem); letter-spacing: -.035em; }
h3 { font-size: 1.25rem; }

.hero-copy { max-width: 560px; margin-bottom: 2rem; color: rgba(255,255,255,.84); font-size: 1.12rem; }
.hero-actions, .visit-actions { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.text-link { font-weight: 700; text-underline-offset: .3rem; }
.rating { margin-top: 2.5rem; color: rgba(255,255,255,.75); }
.rating strong { color: white; font-size: 1.25rem; }

.intro {
  display: grid;
  grid-template-columns: .75fr 1.4fr 1fr;
  gap: clamp(1.5rem, 5vw, 6rem);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 7vw, 7rem);
}

.intro h2 { max-width: 600px; }
.intro > p:last-child { margin: .35rem 0 0; color: var(--muted); font-size: 1.08rem; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 clamp(1.25rem, 7vw, 7rem) clamp(5rem, 10vw, 9rem);
  border-top: 1px solid #d6c9bb;
  border-bottom: 1px solid #d6c9bb;
}

.feature-grid article { padding: 2.5rem 2.5rem 3rem 0; }
.feature-grid article + article { padding-left: 2.5rem; border-left: 1px solid #d6c9bb; }
.feature-grid p { color: var(--muted); }
.feature-number { display: block; margin-bottom: 2rem; color: var(--red); font-weight: 700; }

.menu-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 7vw, 7rem);
  color: var(--cream);
  background: var(--ink);
}

.dish-list { border-top: 1px solid rgba(255,255,255,.2); }
.dish-list div { display: flex; justify-content: space-between; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.dish-list span { font-weight: 700; }
.dish-list small { color: #b9aaa1; font-size: .88rem; }
.button-light { grid-column: 2; justify-self: start; color: var(--ink); background: var(--gold); border-color: var(--gold); }
.button-light:hover { background: #ebbc6d; }

.quote { padding: clamp(5rem, 10vw, 10rem) clamp(1.25rem, 12vw, 12rem); text-align: center; }
blockquote { max-width: 980px; margin: 0 auto 1.5rem; font-family: "Playfair Display", Georgia, serif; font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.25; }
.quote p { color: var(--muted); }

.interior {
  position: relative;
  margin: 0;
  min-height: 520px;
  overflow: hidden;
  background: #2a1810;
}
.interior img {
  display: block;
  width: 100%;
  min-height: 520px;
  max-height: 720px;
  object-fit: cover;
}
.interior figcaption,
.concept-chip {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.45rem 0.75rem;
  color: white;
  background: rgba(42, 24, 16, 0.82);
  border-radius: 0.6rem;
  font-size: 0.72rem;
}

.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 7vw, 7rem);
  background: #e8dac9;
}

.visit-details > p { margin-top: .35rem; font-size: 1.12rem; }

footer {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding: 3rem clamp(1.25rem, 7vw, 7rem);
  color: #c8b9b0;
  background: #0c0908;
}

footer p { max-width: 760px; margin: 0; font-size: .83rem; }
.footer-brand { color: white; }

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { min-height: 820px; align-items: flex-end; }
  .hero > img { object-position: 62% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(11,8,7,.97) 0%, rgba(11,8,7,.75) 52%, rgba(11,8,7,.28) 100%); }
  .hero-content { padding-top: 12rem; }
  .intro, .menu-section, .visit { grid-template-columns: 1fr; }
  .intro { gap: 1rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article, .feature-grid article + article { padding: 2rem 0; border-left: 0; }
  .feature-grid article + article { border-top: 1px solid #d6c9bb; }
  .button-light { grid-column: 1; }
  footer { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .site-header { gap: 1rem; }
  .site-header .button { font-size: .78rem; }
  .hero-content { padding-bottom: 3rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .dish-list div { flex-direction: column; gap: .2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}

