:root {
  --cream: #f4efe6;
  --cream-warm: #ebe4d6;
  --ivory: #faf8f4;
  --noir: #0e0a0c;
  --noir-soft: #1a1216;
  --burgundy: #3d1828;
  --burgundy-rich: #5c2438;
  --forest: #1a2e26;
  --gold: #c9a227;
  --gold-pale: #e8d5a3;
  --gold-dim: rgba(201, 162, 39, 0.35);
  --ink: #1c1614;
  --muted: #6e645c;
  --line: rgba(28, 22, 20, 0.12);
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Jost", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--serif);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }

.container--narrow { max-width: 780px; }

/* ── Grain overlay (subtle luxury texture) ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Nav ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(14, 10, 12, 0.94);
  backdrop-filter: blur(14px);
  border-color: var(--gold-dim);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.nav-logo {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-sub {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-pale);
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.25rem);
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.75);
  transition: color 0.25s;
}

.nav-links a:hover { color: var(--gold-pale); }

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold-pale) !important;
  padding: 0.55rem 1.1rem;
  transition: background 0.25s, color 0.25s !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--noir) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--noir);
    padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--gold-dim);
  }
  .nav-links.open { display: flex; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  background: var(--noir);
}

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

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 10, 12, 0.35) 0%,
    rgba(14, 10, 12, 0.15) 35%,
    rgba(14, 10, 12, 0.55) 65%,
    rgba(14, 10, 12, 0.92) 100%
  );
}

.hero--alive .hero-media::after {
  background: linear-gradient(
    180deg,
    rgba(14, 10, 12, 0.2) 0%,
    rgba(14, 10, 12, 0.05) 40%,
    rgba(14, 10, 12, 0.35) 70%,
    rgba(14, 10, 12, 0.82) 100%
  );
}

.hero--alive .hero-media img {
  object-position: center 40%;
}

.hero-vibes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 2rem;
}

.hero-vibes span {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-pale);
  border: 1px solid var(--gold-dim);
  padding: 0.45rem 0.85rem;
  background: rgba(0, 0, 0, 0.25);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(6rem, 14vh, 9rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 8vh, 5rem);
  max-width: 1240px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8.5vw, 6.5rem);
  font-weight: 400;
  color: var(--ivory);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin-bottom: 1.75rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-pale);
}

.hero-lead {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(250, 248, 244, 0.82);
  max-width: 32rem;
  line-height: 1.55;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gold-dim);
  margin-bottom: 2.5rem;
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.5);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.btn {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  transition: all 0.3s;
  display: inline-block;
}

.btn-gold {
  background: var(--gold);
  color: var(--noir);
}

.btn-gold:hover { background: var(--gold-pale); }

.btn-ghost {
  border: 1px solid rgba(250, 248, 244, 0.45);
  color: var(--ivory);
}

.btn-ghost:hover {
  border-color: var(--gold-pale);
  color: var(--gold-pale);
}

/* ── Marquee strip ── */
.marquee {
  background: var(--burgundy);
  color: var(--gold-pale);
  padding: 0.85rem 0;
  overflow: hidden;
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Sections ── */
section { padding: clamp(5rem, 12vh, 8rem) 0; }

.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.section-lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--muted);
  line-height: 1.75;
  max-width: 36rem;
}

.bg-noir { background: var(--noir); color: var(--ivory); }
.bg-noir .section-eyebrow { color: var(--gold); }
.bg-noir .section-title { color: var(--ivory); }
.bg-noir .section-lead { color: rgba(250, 248, 244, 0.65); }

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

/* ── Story / Heritage ── */
.story-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .story-intro { grid-template-columns: 1fr; }
}

.story-pull {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--burgundy);
  border-left: 2px solid var(--gold);
  padding-left: 1.75rem;
}

.story-body p {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.story-body strong { color: var(--ink); font-weight: 600; }

/* Timeline */
.timeline {
  margin-top: 4rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.tl-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 2rem 0 2rem 2rem;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 600px) {
  .tl-item { grid-template-columns: 1fr; gap: 0.5rem; padding-left: 1.25rem; }
}

.tl-year {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 500;
}

.tl-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.bg-noir .tl-title { color: var(--ivory); }
.bg-noir .tl-item { border-color: rgba(255,255,255,0.08); }

.tl-text {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.bg-noir .tl-text { color: rgba(250, 248, 244, 0.55); }

/* ── Full bleed image ── */
.full-bleed {
  position: relative;
  height: clamp(320px, 55vh, 620px);
  overflow: hidden;
}

.full-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-bleed-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(transparent, rgba(14,10,12,0.85));
  color: var(--ivory);
}

.full-bleed-cap h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
}

/* ── Philosophy cards ── */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 3.5rem;
  border: 1px solid var(--line);
}

@media (max-width: 800px) {
  .philosophy-grid { grid-template-columns: 1fr; }
}

.phil-card {
  background: var(--ivory);
  padding: clamp(2rem, 4vw, 3rem);
}

.phil-num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}

.phil-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  color: var(--burgundy);
}

.phil-card p {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Menu highlights ── */
.menu-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gold-dim);
  margin-top: 3rem;
}

@media (max-width: 700px) {
  .menu-showcase { grid-template-columns: 1fr; }
}

.menu-item-luxe {
  background: var(--noir-soft);
  padding: clamp(2rem, 4vw, 3rem);
  transition: background 0.3s;
}

.menu-item-luxe:hover { background: var(--burgundy); }

.menu-cat {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.menu-item-luxe h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  color: var(--ivory);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.menu-item-luxe p {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: rgba(250, 248, 244, 0.5);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.menu-price {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--gold-pale);
}

/* ── Spaces ── */
.spaces-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1px;
  background: var(--line);
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .spaces-row { grid-template-columns: 1fr; }
}

.space-feature {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.space-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.space-feature:hover img { transform: scale(1.04); }

.space-feature .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,10,12,0.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.space-feature h3 {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.space-feature p {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: rgba(250, 248, 244, 0.6);
  max-width: 28rem;
  line-height: 1.6;
}

.spaces-stack { display: flex; flex-direction: column; gap: 1px; background: var(--line); }

.space-sm {
  flex: 1;
  position: relative;
  min-height: 239px;
  overflow: hidden;
}

.space-sm img { width: 100%; height: 100%; object-fit: cover; }

.space-sm .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,10,12,0.88), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}

.space-sm h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ivory);
}

/* ── Visit ── */
.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

@media (max-width: 800px) {
  .visit-layout { grid-template-columns: 1fr; }
}

.hours-luxe h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--burgundy);
}

.hours-line {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.82rem;
}

.hours-line span:last-child {
  color: var(--burgundy);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.address-luxe {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.address-luxe strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.address-luxe p {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}

.map-luxe {
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.map-luxe iframe { width: 100%; height: 100%; border: 0; }

/* ── Contact CTA ── */
.contact-cta {
  text-align: center;
  padding: clamp(4rem, 10vh, 7rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--burgundy);
  color: var(--ivory);
}

.contact-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1rem;
}

.contact-cta p {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: rgba(250, 248, 244, 0.65);
  max-width: 28rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.contact-email {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--gold-pale);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 0.25rem;
  transition: color 0.25s;
}

.contact-email:hover { color: var(--ivory); }

/* ── Footer ── */
.site-footer {
  background: var(--noir);
  color: rgba(250, 248, 244, 0.45);
  padding: 3.5rem clamp(1.25rem, 4vw, 3rem) 2rem;
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ivory);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer-tag {
  font-family: var(--sans);
  font-size: 0.78rem;
  line-height: 1.65;
  max-width: 22rem;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
  font-family: var(--sans);
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-pale); }

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

/* ── Menu page ── */
.page-hero {
  padding: clamp(8rem, 18vh, 11rem) 0 clamp(3rem, 6vh, 4rem);
  background: var(--noir);
  text-align: center;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(250, 248, 244, 0.55);
  font-size: 1.1rem;
}

.menu-page section { padding: 3rem 0; }

.menu-cat-block {
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.menu-cat-title {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--burgundy);
  margin-bottom: 0.35rem;
}

.menu-cat-note {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.menu-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 2rem;
  max-width: 640px;
  margin: 0 auto;
  padding: 0.85rem 0;
  border-bottom: 1px dotted var(--line);
}

.menu-line-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.menu-line-desc {
  grid-column: 1;
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
  font-style: italic;
}

.menu-line-price {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--burgundy);
}

.menu-staples {
  margin-bottom: 4rem;
  padding: 2.5rem 2rem 2rem;
  background: var(--noir-soft);
  border: 1px solid rgba(201, 162, 57, 0.35);
  text-align: center;
}

.menu-staples-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.menu-staples h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-pale);
  margin-bottom: 0.5rem;
}

.menu-staples-lead {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(250, 248, 244, 0.55);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.staple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 750px) {
  .staple-grid { grid-template-columns: 1fr; }
}

.staple-card {
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(201, 162, 57, 0.25);
  background: rgba(0, 0, 0, 0.2);
}

.staple-card.featured {
  border-color: var(--gold);
  background: rgba(201, 162, 57, 0.08);
  box-shadow: 0 0 0 1px rgba(201, 162, 57, 0.15);
}

.staple-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold-pale);
  margin-bottom: 0.5rem;
}

.staple-card p {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: rgba(250, 248, 244, 0.55);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.staple-price {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold);
}

.menu-line.staple-line .menu-line-name::before {
  content: "★ ";
  color: var(--gold);
}

.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
}

@media (max-width: 750px) {
  .menu-cols { grid-template-columns: 1fr; }
}

.center-cta { text-align: center; margin-top: 3rem; }

/* ── Life & warmth ── */
.bg-ivory { background: var(--ivory); }

.section-lead--warm {
  font-style: normal;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 36rem;
}

.section-life { padding: clamp(4rem, 8vh, 6rem) 0; }

.life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 3rem 0 2.5rem;
}

@media (max-width: 700px) {
  .life-grid { grid-template-columns: 1fr; }
}

.life-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  overflow: hidden;
}

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

.life-card-body {
  padding: 1.5rem 1.35rem 1.75rem;
}

.life-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.life-card p {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.life-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 1rem;
}

@media (max-width: 750px) {
  .life-quotes { grid-template-columns: 1fr; }
}

.life-quotes blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--burgundy);
  line-height: 1.5;
  padding: 1.25rem;
  border-left: 3px solid var(--gold);
  background: rgba(201, 162, 39, 0.08);
  margin: 0;
}

.story-warm {
  padding: clamp(4rem, 8vh, 6rem) 0;
  text-align: center;
}

.story-warm-photo {
  margin: 2rem 0 2.5rem;
}

.story-warm-photo img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.story-warm-prose {
  text-align: left;
}

.story-warm-prose p {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.75;
  margin-bottom: 1.35rem;
  color: var(--ink);
}

.good-night-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-dim);
  margin-top: 2.5rem;
}

@media (max-width: 700px) {
  .good-night-grid { grid-template-columns: 1fr; }
}

.good-night-card {
  background: var(--noir-soft);
  padding: 2rem 1.75rem;
}

.good-night-icon {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.good-night-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--gold-pale);
  margin-bottom: 0.65rem;
}

.good-night-card p {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: rgba(250, 248, 244, 0.55);
  line-height: 1.6;
}

.menu-showcase--warm .menu-item-warm {
  background: var(--ivory);
  border: 1px solid var(--line);
}

.menu-showcase--warm .menu-item-warm h3 {
  color: var(--burgundy);
}

.menu-showcase--warm .menu-item-warm p {
  color: var(--muted);
  font-style: normal;
}

.menu-showcase--warm .menu-price {
  color: var(--burgundy);
}

.menu-showcase--warm .featured-item {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.06);
}

.overlay--warm p {
  font-size: 0.9rem;
}

.marquee--warm {
  background: var(--burgundy);
}

.contact-cta--warm {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-rich) 100%);
}

.contact-sub {
  margin-top: 0.5rem;
}

.hours-luxe--warm h3 {
  color: var(--burgundy);
}

/* ── Menu story ── */
.menu-story-block {
  max-width: 720px;
  margin: 0 auto 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.menu-story-eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.menu-story-block h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1.2;
  margin-bottom: 1.75rem;
}

.menu-story-prose {
  text-align: left;
}

.menu-story-prose p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.menu-story-prose p:last-child {
  font-style: italic;
  color: var(--burgundy);
  text-align: center;
  margin-bottom: 0;
}

.sides-header-classic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

@media (max-width: 750px) {
  .sides-header-classic { grid-template-columns: 1fr; }
}

.sides-menu-list {
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.sides-featured-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 550px) {
  .sides-featured-photos { grid-template-columns: 1fr; }
}

.side-photo-card {
  margin: 0;
  text-align: center;
}

.side-photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 1px solid var(--line);
  margin-bottom: 0.65rem;
}

.side-photo-card figcaption {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-style: italic;
}

/* ── Pro menu layout ── */
.page-hero-menu .page-hero-tag,
.page-hero-tag {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(250, 248, 244, 0.55);
  font-size: 1.1rem;
}

.menu-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 2rem 1.5rem;
  margin-bottom: 3rem;
  background: var(--burgundy);
  border: 1px solid var(--gold-dim);
  text-align: center;
}

.formula-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.formula-step.formula-highlight .formula-num {
  background: var(--gold);
  color: var(--noir);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.25);
}

.formula-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-dim);
}

.formula-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-pale);
}

.formula-plus {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.7;
}

.staple-grid-photo {
  max-width: 1100px;
  grid-template-columns: repeat(3, 1fr);
}

.staple-card-photo {
  border: 1px solid rgba(201, 162, 57, 0.25);
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
  text-align: left;
}

.staple-card-photo.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 162, 57, 0.2);
}

.staple-card-photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.staple-card-body {
  padding: 1.25rem 1.15rem 1.35rem;
}

.staple-card-photo h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold-pale);
  margin-bottom: 0.45rem;
}

.staple-card-photo p {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: rgba(250, 248, 244, 0.55);
  line-height: 1.5;
  margin-bottom: 0.65rem;
}

/* ── Sides section ── */
.menu-sides-section {
  margin-bottom: 4rem;
  padding: 0 0 3rem;
  border-bottom: 2px solid var(--burgundy);
}

.sides-header {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

@media (max-width: 850px) {
  .sides-header { grid-template-columns: 1fr; }
}

.menu-sides-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.menu-sides-lead {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.sides-ala-carte {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding: 0.65rem 1rem;
  background: rgba(201, 162, 39, 0.12);
  border-left: 3px solid var(--gold);
  display: inline-block;
}

.sides-hero-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(28, 22, 20, 0.12);
}

.sides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (max-width: 600px) {
  .sides-grid { grid-template-columns: 1fr; }
}

.side-card {
  background: var(--ivory);
  padding: 1.5rem 1.35rem;
  position: relative;
}

.side-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 0.45rem;
  padding-right: 3rem;
}

.side-card p {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.55;
}

.side-price {
  position: absolute;
  top: 1.35rem;
  right: 1.25rem;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--burgundy);
}

/* ── Plates section ── */
.menu-plates-section {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.plates-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

@media (max-width: 750px) {
  .plates-intro { grid-template-columns: 1fr; }
}

.menu-section-head {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.menu-section-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
}

.plates-feature-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.menu-lines-pro {
  max-width: 720px;
}

.menu-cat-photo .cat-photo-wrap {
  margin: -0.5rem auto 1.5rem;
  max-width: 320px;
}

.menu-cat-photo .cat-photo-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.menu-photo-note {
  text-align: center;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 2rem;
  font-style: italic;
}

/* ── Delivery ── */
.section-delivery {
  padding: clamp(4rem, 8vh, 6rem) 0;
}

.delivery-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .delivery-layout { grid-template-columns: 1fr; }
}

.delivery-app-card {
  background: rgba(250, 248, 244, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.25);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.delivery-app-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.delivery-app-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 1rem;
}

.delivery-app-lead {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: rgba(250, 248, 244, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.delivery-perks {
  list-style: none;
  margin-bottom: 2rem;
}

.delivery-perks li {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: rgba(250, 248, 244, 0.75);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.5;
}

.delivery-perks li strong {
  color: var(--gold-pale);
  font-weight: 500;
}

.delivery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-delivery .btn-ghost {
  border-color: rgba(250, 248, 244, 0.35);
  color: var(--ivory);
}

.section-delivery .btn-ghost:hover {
  background: rgba(250, 248, 244, 0.08);
  border-color: var(--gold-pale);
}

.delivery-note {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: rgba(250, 248, 244, 0.45);
  font-style: italic;
}

.delivery-highlights {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.delivery-highlight {
  background: rgba(250, 248, 244, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
}

.delivery-highlight-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
}

.delivery-highlight h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.delivery-highlight p {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: rgba(250, 248, 244, 0.6);
  line-height: 1.6;
}

/* ── Reservations ── */
.section-reservations {
  padding: clamp(4rem, 8vh, 6rem) 0;
}

.reservation-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .reservation-layout { grid-template-columns: 1fr; }
}

.reservation-form {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 550px) {
  .form-row { grid-template-columns: 1fr; }
}

.reservation-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.reservation-form label span {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  width: 100%;
  transition: border-color 0.2s;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-full {
  margin-bottom: 1.25rem;
}

.btn-block {
  width: 100%;
  text-align: center;
}

.form-fine-print {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}

.form-fine-print a {
  color: var(--burgundy);
  border-bottom: 1px solid var(--gold-dim);
}

.reservation-info {
  padding-top: 0.5rem;
}

.reservation-info h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--burgundy);
  margin-bottom: 1.25rem;
}

.reservation-info ul {
  list-style: none;
  margin-bottom: 2rem;
}

.reservation-info li {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.6;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
  margin-bottom: 0.5rem;
}

.reservation-contact {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.reservation-contact p {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.reservation-contact a {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--burgundy);
}

.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.contact-cta .btn-ghost {
  border-color: rgba(250, 248, 244, 0.35);
  color: var(--ivory);
}

.contact-cta .btn-ghost:hover {
  background: rgba(250, 248, 244, 0.1);
}

.menu-order-lead {
  text-align: center;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
