/* ── FONTS ── */
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 300; font-display: swap; src: url('/fonts/cormorant-garamond-italic-300.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; font-display: swap; src: url('/fonts/cormorant-garamond-italic-400.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 300; font-display: swap; src: url('/fonts/cormorant-garamond-300.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/cormorant-garamond-400.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/cormorant-garamond-500.woff2') format('woff2'); }
@font-face { font-family: 'Dancing Script'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/dancing-script-400.woff2') format('woff2'); }
@font-face { font-family: 'Dancing Script'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/dancing-script-600.woff2') format('woff2'); }
@font-face { font-family: 'Dancing Script'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/dancing-script-700.woff2') format('woff2'); }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 200; font-display: swap; src: url('/fonts/jost-200.woff2') format('woff2'); }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 300; font-display: swap; src: url('/fonts/jost-300.woff2') format('woff2'); }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/jost-400.woff2') format('woff2'); }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/jost-500.woff2') format('woff2'); }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/jost-600.woff2') format('woff2'); }

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --gold:          #C8952A;
  --gold-light:    #E8B84B;
  --gold-deep:     #9A6E18;
  --espresso:      #1C120A;
  --espresso-2:    #2A1A0E;
  --espresso-3:    #3B2A18;
  --espresso-mid:  #3B2A18;
  --cream:         #F7F2E6;
  --cream-warm:    #EDE4D0;
  --cream-2:       #EDE4D0;
  --sand:          #D4C09A;
  --sage:          #6B7C5A;
  --marble:        #F5F3EF;
  --charcoal:      #2C2825;

  --font-script: 'Dancing Script', cursive;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', sans-serif;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 300;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease-out, width 0.3s, height 0.3s;
  opacity: 0.6;
}
body:has(a:hover) .cursor, body:has(button:hover) .cursor { width: 20px; height: 20px; }
body:has(a:hover) .cursor-ring, body:has(button:hover) .cursor-ring { width: 56px; height: 56px; opacity: 0.3; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 5vw;
  height: 72px;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: var(--espresso);
  box-shadow: 0 2px 24px rgba(28,18,10,0.3);
}
.nav-logo {
  text-decoration: none;
  justify-self: start;
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}
.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.nav-logo:hover { opacity: 0.8; }
.nav-links {
  display: flex; align-items: center; gap: 3rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: .68rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(247,242,230,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  font-family: var(--font-sans);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--espresso);
  background: var(--gold);
  padding: 10px 24px;
  border: none; border-radius: 2px;
  text-decoration: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  justify-self: end;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── HOME HERO ── */
#hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 0 5vw;
  background: var(--espresso);
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.35; pointer-events: none;
}
/* ── HERO SLIDER ── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow-x: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide.active { opacity: 1; }
.hero-slide picture {
  display: block;
  position: absolute;
  inset: 0;
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Minimal bottom vignette so dots stay readable — images carry their own dark panels */
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,18,10,0.5) 0%, transparent 18%);
  pointer-events: none;
}
/* Dot indicators — bottom-right */
.hero-dots {
  position: absolute;
  bottom: 7rem;
  right: 5vw;
  z-index: 5;
  display: flex;
  gap: .5rem;
  align-items: center;
}
/* CTA button group — below the dots, right-aligned */
.hero-cta-group {
  position: absolute;
  bottom: 2.5rem;
  right: 5vw;
  z-index: 4;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.1s;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(212,192,154,0.3);
  border: 1.5px solid rgba(212,192,154,0.55);
  padding: 0;
  cursor: pointer;
  transition: background 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}
.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.4);
}
.hero-dot:hover:not(.active) {
  background: rgba(212,192,154,0.55);
  border-color: var(--sand);
}
/* Visually hidden but readable by screen readers and search engines */
.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;
}
.hero-content { position: relative; z-index: 3; max-width: 55vw; }
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: .65rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--gold);
}
.hero-wordmark {
  font-family: var(--font-script);
  font-size: clamp(5rem, 11vw, 10rem);
  color: var(--cream);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -1px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.5s;
}
.hero-wordmark span {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 200;
  letter-spacing: .08em;
  color: var(--sand);
  margin-top: .5rem;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(212,192,154,0.85);
  margin-top: 2rem;
  max-width: 480px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.8s;
}
.hero-actions {
  display: flex; gap: 1.5rem; align-items: center;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.1s;
}
.btn-primary {
  font-family: var(--font-sans);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--espresso);
  background: var(--gold);
  padding: 15px 36px;
  border: none; border-radius: 2px;
  text-decoration: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(200,149,42,0.35);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,149,42,0.45); }
.btn-ghost {
  font-family: var(--font-sans);
  font-size: .7rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--sand);
  border-bottom: 1px solid rgba(212,192,154,0.4);
  text-decoration: none; padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--gold-light); border-color: var(--gold-light); }
.btn-outline {
  font-family: var(--font-sans);
  font-size: .7rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--espresso);
  border: 1.5px solid var(--espresso);
  padding: 13px 32px; border-radius: 2px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.btn-outline:hover { background: var(--espresso); color: var(--cream); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PAGE HERO (subpages: menu, visit, story, faq) ── */
.page-hero {
  position: relative;
  height: 100vh; min-height: 560px;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.page-hero-cta {
  position: absolute;
  bottom: 2.5rem; right: 5vw;
  z-index: 3;
  font-family: var(--font-sans);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--espresso);
  background: var(--gold);
  padding: 14px 28px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.page-hero-cta:hover { background: var(--gold-light); }
.page-hero picture {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.page-hero picture img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(28,18,10,0.6) 0%, rgba(28,18,10,0.15) 20%, transparent 45%),
    linear-gradient(to top, rgba(28,18,10,0.85) 0%, rgba(28,18,10,0.2) 40%, transparent 70%);
  pointer-events: none;
}
.page-hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 5vw 4.5rem;
}
.page-hero-content .eyebrow {
  font-family: var(--font-sans);
  font-size: .62rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.page-hero-content .eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}
.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-style: italic; font-weight: 300;
  color: var(--cream); line-height: 1.15;
  max-width: 860px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: block;
  padding: 1rem 5vw;
  background: var(--cream-warm);
  border-bottom: 1px solid rgba(28,18,10,0.06);
  font-family: var(--font-sans);
  font-size: .7rem; font-weight: 400;
  color: var(--sand);
  margin-top: 72px;
}
.breadcrumb a {
  color: var(--espresso-mid); text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 .6rem; color: var(--sand); }
.breadcrumb .current { color: var(--gold); }

/* ── MARQUEE ── */
.marquee-section {
  background: linear-gradient(90deg, var(--espresso-3) 0%, var(--espresso-2) 50%, var(--espresso-3) 100%);
  border-top: 1px solid rgba(200,149,42,0.28);
  border-bottom: 1px solid rgba(200,149,42,0.28);
  padding: 1.1rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 2.5rem;
  padding-right: 2.5rem;
  font-family: var(--font-sans);
  font-size: .64rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream);
}
.marquee-item .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(200,149,42,0.5);
  flex-shrink: 0;
}
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION BASE ── */
section { width: 100%; }
.section-label {
  font-family: var(--font-sans);
  font-size: .62rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 1rem;
}
.section-label::before {
  content: '';
  display: block; width: 28px; height: 1px;
  background: var(--gold);
}
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── STORY SECTION (home) ── */
#story {
  background: var(--cream);
  padding: 9rem 5vw;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: start;
  max-width: 1400px; margin: 0 auto;
}
.story-left .section-label { margin-bottom: 2.5rem; }
.story-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--espresso);
  line-height: 1.15;
  margin-bottom: 2rem;
}
.story-heading em {
  font-style: normal;
  color: var(--gold);
  font-family: var(--font-script);
  font-size: 1.1em;
}
.story-body {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 300;
  color: var(--espresso-3);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 2rem;
}
.story-right { padding-top: 4rem; }
.stat-eyebrow {
  font-family: var(--font-sans); font-size: .52rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .2rem; opacity: 0.8;
}
.story-quote {
  margin-top: 1.8rem;
  background: var(--espresso-2);
  border-left: 2px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 1.8rem 2rem;
  position: relative;
}
.story-quote-mark {
  font-family: var(--font-script); font-size: 4rem;
  color: var(--gold); line-height: 0; position: absolute;
  top: 2.2rem; left: 1.4rem; opacity: 0.35;
}
.story-quote-text {
  font-family: var(--font-serif); font-size: 1.05rem;
  font-style: italic; font-weight: 300;
  color: var(--cream); line-height: 1.75;
  padding-left: 1rem;
}
.story-quote-attr {
  font-family: var(--font-sans); font-size: .65rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(212,192,154,0.5); margin-top: .8rem;
  padding-left: 1rem;
}
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(200,149,42,0.14);
  border-radius: 6px;
  overflow: hidden;
}
.stat-card {
  background: var(--espresso-2);
  padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: .5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}
.stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(200,149,42,0) 100%);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.stat-card:hover { background: var(--espresso-3); }
.stat-card:hover::before { transform: scaleX(1); }
.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.stat-number .unit {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--gold);
}
.stat-label {
  font-family: var(--font-sans);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(212,192,154,0.45);
}
.story-image-pair {
  margin-top: 3rem;
  display: grid; grid-template-columns: 3fr 2fr; gap: 12px;
}
.story-img {
  border-radius: 4px;
  overflow: hidden;
}
.story-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) sepia(0.08);
  transition: transform 0.6s ease, filter 0.4s;
}
.story-img img:hover { transform: scale(1.03); filter: saturate(1) sepia(0); }
.story-img.tall { height: 340px; }
.story-img.short { height: 340px; }

/* ── QUICK-FACTS BLOCK ── */
.quick-facts {
  background: var(--espresso);
  border: 1px solid rgba(200,149,42,0.15);
  border-radius: 4px;
  padding: 3rem 3.5rem;
  max-width: 1000px; margin: 0 auto 0;
}
.quick-facts h2 {
  font-family: var(--font-serif);
  font-size: 1.55rem; font-style: italic; font-weight: 300;
  color: var(--cream); margin-bottom: 2rem;
}
.quick-facts dl {
  display: grid; grid-template-columns: 160px 1fr;
  gap: 0;
}
.quick-facts dt {
  font-family: var(--font-sans);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
  padding: .7rem 0;
  border-bottom: 1px solid rgba(212,192,154,0.06);
}
.quick-facts dd {
  font-family: var(--font-sans);
  font-size: .85rem; font-weight: 300;
  color: rgba(247,242,230,0.8); line-height: 1.6;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(212,192,154,0.06);
}
.quick-facts a { color: var(--gold-light); text-decoration: none; }
.quick-facts a:hover { color: var(--gold); }
#quick-facts-wrap {
  background: var(--espresso);
  padding: 0 5vw 6rem;
}

/* ── FOOD SECTION ── */
#food {
  background: var(--espresso);
  padding: 8rem 5vw;
}
.food-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  max-width: 1400px; margin: 0 auto 4rem;
}
.food-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-style: italic; font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
}
.food-heading strong {
  display: block;
  font-style: normal;
  font-family: var(--font-script);
  font-size: 1.15em;
  color: var(--gold);
}
.food-subtext {
  font-family: var(--font-sans);
  font-size: .82rem;
  color: var(--sand);
  max-width: 280px;
  text-align: right;
  line-height: 1.7;
}
.food-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 360px 280px;
  gap: 12px;
}
.food-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.food-card:nth-child(1) { grid-row: 1 / 3; }
.food-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, filter 0.4s;
  filter: saturate(0.85) brightness(0.9);
}
.food-card:hover img { transform: scale(1.06); filter: saturate(1) brightness(0.95); }
.food-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,18,10,0.9) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.8rem;
}
.food-tag {
  font-family: var(--font-sans);
  font-size: .58rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.food-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic; font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
}
.food-card:nth-child(1) .food-name { font-size: 2rem; }
.food-desc {
  font-family: var(--font-sans);
  font-size: .75rem;
  color: rgba(212,192,154,0.75);
  margin-top: .4rem;
  line-height: 1.5;
}

/* ── EXPERIENCE SECTION ── */
#experience {
  background: var(--cream);
  padding: 9rem 5vw;
}
.exp-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}
.exp-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 320px 210px 210px;
  gap: 10px;
}
.exp-img {
  border-radius: 4px; overflow: hidden;
}
.exp-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) sepia(0.08);
  transition: transform 0.5s, filter 0.4s;
}
.exp-img:hover img { transform: scale(1.04); filter: saturate(1) sepia(0); }
.exp-img:first-child { grid-column: 1 / 3; }
.exp-content .section-label { margin-bottom: 2.5rem; }
.exp-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-style: italic; font-weight: 300;
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.exp-body {
  font-family: var(--font-sans);
  font-size: .9rem; font-weight: 300;
  color: var(--espresso-3);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.exp-features {
  display: flex; flex-direction: column; gap: 1rem;
}
.exp-feature {
  display: flex; align-items: flex-start; gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(28,18,10,0.08);
}
.exp-feature:last-child { border-bottom: none; }
.exp-feature-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(200,149,42,0.1);
  border: 1px solid rgba(200,149,42,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.exp-feature-icon svg { width: 16px; height: 16px; }
.exp-feature-text strong {
  display: block;
  font-family: var(--font-sans);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .06em;
  color: var(--espresso);
  margin-bottom: .2rem;
}
.exp-feature-text span {
  font-size: .75rem;
  color: var(--espresso-3);
  line-height: 1.5;
}

/* ── MENU PREVIEW (home) ── */
#menu-home {
  background: var(--espresso-2);
  padding: 9rem 5vw;
}
#menu {
  background: var(--espresso-2);
  padding: 9rem 5vw;
}
.menu-header {
  max-width: 1400px; margin: 0 auto 4.5rem;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.menu-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-style: italic; font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
}
.menu-note {
  font-family: var(--font-sans);
  font-size: .78rem;
  color: var(--sand);
  max-width: 220px;
  text-align: right;
  line-height: 1.7;
  font-style: italic;
}
.menu-categories {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px;
  background: rgba(200,149,42,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.menu-cat {
  background: var(--espresso);
  padding: 3rem 2.2rem;
  border: 1px solid rgba(200,149,42,0.08);
  cursor: pointer;
  transition: background 0.3s;
}
.menu-cat:hover { background: var(--espresso-2); }
.menu-cat-num {
  font-family: var(--font-sans);
  font-size: .58rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.menu-cat-name {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.menu-items { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.menu-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: .7rem;
  border-bottom: 1px solid rgba(212,192,154,0.1);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name {
  font-family: var(--font-sans);
  font-size: .82rem;
  color: rgba(247,242,230,0.85);
  font-weight: 300;
}
.menu-item-price {
  font-family: var(--font-sans);
  font-size: .78rem; font-weight: 400;
  color: var(--gold);
  white-space: nowrap; margin-left: .8rem;
}
.menu-item-badge {
  font-size: .55rem; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(107,124,90,0.2); color: var(--sage);
  border: 1px solid rgba(107,124,90,0.3);
  padding: 2px 6px; border-radius: 2px; margin-left: .5rem;
}

/* ── REVIEWS ── */
#reviews {
  background: var(--cream);
  padding: 9rem 5vw;
}
.reviews-inner {
  max-width: 1400px; margin: 0 auto;
}
.reviews-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 4rem;
}
.reviews-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-style: italic; font-weight: 300;
  color: var(--espresso);
}
.reviews-rating {
  display: flex; flex-direction: column; align-items: flex-end; gap: .5rem;
}
.rating-num {
  font-family: var(--font-script);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
}
.rating-stars { display: flex; gap: 3px; }
.star { color: var(--gold); font-size: 1rem; }
.rating-label {
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sand);
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--espresso);
  border-radius: 4px;
  overflow: hidden;
}
.review-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
  transition: background 0.3s;
}
.review-card:hover { background: var(--cream-2); }
.review-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(200,149,42,0.2);
  line-height: .7;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.review-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic; font-weight: 300;
  color: var(--espresso);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}
.review-author { display: flex; justify-content: space-between; align-items: center; }
.review-name {
  font-family: var(--font-sans);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .08em;
  color: var(--espresso);
}
.review-meta {
  font-family: var(--font-sans);
  font-size: .65rem; color: var(--sand);
  margin-top: 2px;
}
.review-stars { display: flex; gap: 2px; }
.review-stars .star { font-size: .75rem; }

/* ── BIG MARQUEE ── */

/* ── VISIT SECTION (home + visit page) ── */
#visit-home, #visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.visit-left {
  background: var(--espresso);
  padding: 8rem 5vw 8rem 6vw;
}
.visit-right {
  background: var(--cream-2);
  padding: 8rem 6vw 8rem 5vw;
}
.visit-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-style: italic; font-weight: 300;
  color: var(--cream);
  margin-bottom: 3rem;
  line-height: 1.2;
}
.visit-right .visit-heading { color: var(--espresso); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr {
  border-bottom: 1px solid rgba(212,192,154,0.1);
}
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 1rem 0;
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 300;
  color: rgba(247,242,230,0.75);
}
.hours-table td:first-child {
  font-weight: 500;
  color: var(--cream);
  width: 140px;
}
.hours-table td.gold { color: var(--gold); font-weight: 500; }
.contact-info { margin-top: 3rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(212,192,154,0.1);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon { display: flex; align-items: center; flex-shrink: 0; padding-top: .15rem; color: rgba(212,192,154,0.55); }
.contact-icon svg { width: 16px; height: 16px; }
.contact-text {
  font-family: var(--font-sans);
  font-size: .82rem; font-weight: 300;
  color: rgba(247,242,230,0.75);
  line-height: 1.6;
}
.contact-text a { color: var(--gold-light); text-decoration: none; }
.reserve-buttons {
  display: flex; flex-direction: column; gap: .8rem;
  margin-top: 2.5rem;
}
.reserve-btn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
}
.reserve-btn:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.reserve-btn.whatsapp { background: var(--gold); color: var(--espresso); }
.reserve-btn.zomato   { background: var(--espresso); color: var(--cream); border: 1px solid rgba(200,149,42,0.2); }
.reserve-btn.swiggy   { background: var(--espresso); color: var(--cream); border: 1px solid rgba(200,149,42,0.2); }
.reserve-btn.eazy     { background: var(--espresso); color: var(--cream); border: 1px solid rgba(200,149,42,0.2); }
.reserve-btn.zomato span, .reserve-btn.swiggy span, .reserve-btn.eazy span { color: var(--gold); }
.reserve-btn span { font-size: 1rem; }
.visit-info-text {
  font-family: var(--font-sans);
  font-size: .85rem; font-weight: 300;
  color: var(--espresso-3);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.visit-address {
  display: flex; align-items: flex-start; gap: .8rem;
  background: var(--espresso);
  padding: 1.5rem;
  border-radius: 4px;
  margin-top: 2.5rem;
}
.visit-address .icon { font-size: 1.2rem; }
.visit-address-text {
  font-family: var(--font-sans);
  font-size: .82rem; color: var(--sand);
  line-height: 1.6;
}
.visit-address-text strong { color: var(--cream); display: block; margin-bottom: .3rem; }
.visit-map-block {
  margin-top: 2.5rem;
  display: flex; flex-direction: column;
  gap: 1rem;
}
.visit-map-info {
  background: var(--espresso);
  border-radius: 4px; padding: 1.6rem;
  display: flex; flex-direction: column; gap: .8rem;
}
.visit-map-label {
  font-family: var(--font-sans); font-size: .6rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
}
.visit-map-addr {
  font-family: var(--font-sans); font-size: .8rem; font-weight: 300;
  color: var(--sand); line-height: 1.65;
}
.visit-map-addr strong { color: var(--cream); display: block; margin-bottom: .25rem; }
.visit-gmaps-link {
  display: inline-flex; align-items: center; gap: .45rem; margin-top: auto;
  font-family: var(--font-sans); font-size: .65rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--espresso); background: var(--gold);
  padding: 9px 16px; border-radius: 2px; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.visit-gmaps-link:hover { background: var(--gold-light); transform: translateY(-1px); }
.visit-map-frame {
  border-radius: 4px; overflow: hidden; height: 260px;
}
.visit-map-frame iframe {
  width: 100%; height: 100%;
  border: none; display: block;
  filter: saturate(0.6) sepia(0.25) contrast(0.95);
}

/* ── VISIT PAGE STANDALONE ── */
.visit-page-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
}

/* ── MENU PAGE TEXT MENU ── */
.menu-page-section {
  padding: 6rem 5vw;
  background: var(--cream);
}
.menu-page-inner { max-width: 1100px; margin: 0 auto; }
.menu-page-header {
  margin-bottom: 5rem;
}
.menu-page-header h1, .menu-page-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic; font-weight: 300;
  color: var(--espresso); line-height: 1.2;
  margin-bottom: .8rem;
}
.menu-page-header p {
  font-family: var(--font-sans);
  font-size: .85rem; font-weight: 300;
  color: var(--espresso-3); line-height: 1.7;
}
.menu-category-block {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(28,18,10,0.08);
}
.menu-category-block:last-child { border-bottom: none; }
.menu-category-title {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--espresso); margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1.2rem;
}
.menu-category-title::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, rgba(28,18,10,0.12), transparent);
}
.menu-dish-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(28,18,10,0.06);
}
.menu-dish-row:last-child { border-bottom: none; }
.menu-dish-info { flex: 1; padding-right: 1.5rem; }
.menu-dish-name {
  font-family: var(--font-serif);
  font-size: 1.05rem; font-weight: 400; font-style: italic;
  color: var(--espresso); margin-bottom: .25rem;
}
.menu-dish-desc {
  font-family: var(--font-sans);
  font-size: .78rem; font-weight: 300;
  color: var(--espresso-3); line-height: 1.5;
}
.menu-dish-tags {
  display: flex; gap: .4rem; margin-top: .3rem;
  flex-wrap: wrap;
}
.menu-tag {
  font-size: .55rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 2px;
}
.menu-tag.veg  { background: rgba(107,124,90,0.12); color: var(--sage); border: 1px solid rgba(107,124,90,0.25); }
.menu-tag.pop  { background: rgba(200,149,42,0.1); color: var(--gold-deep); border: 1px solid rgba(200,149,42,0.2); }
.menu-tag.sig  { background: rgba(200,149,42,0.15); color: var(--gold); border: 1px solid rgba(200,149,42,0.3); }
.menu-tag.jain { background: rgba(28,18,10,0.06); color: var(--espresso-3); border: 1px solid rgba(28,18,10,0.12); }
.menu-dish-price {
  font-family: var(--font-sans);
  font-size: .92rem; font-weight: 500;
  color: var(--gold); white-space: nowrap;
}
.menu-dietary-note {
  background: var(--espresso);
  border-radius: 4px; padding: 1.6rem 2rem;
  margin-top: 3rem;
  font-family: var(--font-sans); font-size: .82rem; font-weight: 300;
  color: rgba(247,242,230,0.7); line-height: 1.7;
}
.menu-dietary-note strong { color: var(--gold); font-weight: 500; }
.menu-cta-strip {
  background: var(--espresso);
  padding: 5rem 5vw;
  text-align: center;
}
.menu-cta-strip h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-style: italic; font-weight: 300;
  color: var(--cream); margin-bottom: 1.2rem;
}
.menu-cta-strip p {
  font-family: var(--font-sans);
  font-size: .88rem; font-weight: 300;
  color: var(--sand); margin-bottom: 2.5rem;
}

/* ── STORY PAGE ── */
/* ── STORY PAGE ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
/* ── STORY PAGE ── */
.story-page-section {
  background: var(--cream);
  padding: 5rem 5vw 7rem;
}

.story-letter-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.story-letter-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}

/* ── PRIVACY PAGE ── */
.privacy-content p, .privacy-content li {
  font-family: var(--font-sans); font-size: 1rem; font-weight: 300;
  color: var(--espresso); line-height: 1.8; margin-bottom: 1rem;
}
.privacy-content ul { padding-left: 1.4rem; margin-bottom: 1.5rem; }
.privacy-content li { margin-bottom: .5rem; }
.privacy-content a { color: var(--gold); text-underline-offset: 3px; }
.privacy-content a:hover { color: var(--gold-light); }
.privacy-updated {
  font-size: .85rem; color: rgba(28,18,10,.5);
  margin-top: -.5rem; margin-bottom: 2.5rem;
}

/* ── FAQ PAGE ── */
.faq-page-section {
  padding: 6rem 5vw;
  background: var(--cream);
}
.faq-page-inner { max-width: 860px; margin: 0 auto; }
.faq-page-inner h1, .faq-page-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-style: italic; font-weight: 300;
  color: var(--espresso); margin-bottom: 3rem;
}
.faq-item {
  border-bottom: 1px solid rgba(28,18,10,0.1);
}
.faq-question {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 1.6rem 0; cursor: pointer;
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400;
  color: var(--espresso); line-height: 1.4;
  gap: 1rem;
  background: none; border: none; width: 100%; text-align: left;
}
.faq-question:hover { color: var(--gold); }
.faq-toggle {
  width: 28px; height: 28px; min-width: 28px; border-radius: 50%;
  border: 1px solid rgba(28,18,10,0.15);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem; color: var(--gold);
  transition: transform 0.3s, background 0.2s;
  cursor: pointer;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: rgba(200,149,42,0.12); }
.faq-answer {
  overflow: hidden; max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s;
  font-family: var(--font-sans); font-size: .9rem; font-weight: 300;
  color: var(--espresso-3); line-height: 1.85;
  padding-bottom: 0;
}
.faq-answer-inner { padding-bottom: 1.8rem; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer a { color: var(--gold); text-decoration: none; }
.faq-answer a:hover { color: var(--gold-deep); }

/* ── 404 PAGE ── */
.not-found-section {
  min-height: calc(100vh - 72px);
  display: flex; align-items: center; justify-content: center;
  padding: 6rem 5vw;
  background: var(--espresso);
  text-align: center;
}
.not-found-inner { max-width: 600px; }
.not-found-num {
  font-family: var(--font-script);
  font-size: clamp(8rem, 20vw, 16rem);
  color: rgba(200,149,42,0.12);
  line-height: 1;
}
.not-found-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic; font-weight: 300;
  color: var(--cream); margin-bottom: 1rem;
}
.not-found-body {
  font-family: var(--font-sans);
  font-size: .9rem; font-weight: 300;
  color: var(--sand); line-height: 1.7;
  margin-bottom: 3rem;
}
.not-found-links {
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center;
}
.not-found-links a {
  font-family: var(--font-sans);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(247,242,230,0.6); text-decoration: none;
  border: 1px solid rgba(212,192,154,0.15);
  padding: 10px 20px; border-radius: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.not-found-links a:hover { color: var(--gold); border-color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--espresso);
  padding: 5rem 5vw 3rem;
  border-top: 1px solid rgba(200,149,42,0.15);
}
.footer-top {
  display: grid; grid-template-columns: 1.1fr 0.9fr 1fr 1.3fr;
  gap: 4vw; margin-bottom: 4rem;
}
.footer-brand .wordmark {
  display: block;
  height: 80px;
  width: auto;
  margin-bottom: .8rem;
}
.footer-brand .tagline {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-style: italic;
  color: var(--sand);
}
.footer-amenities {
  display: flex; flex-direction: column; gap: .45rem;
  margin-top: 1.4rem;
}
.footer-amenity {
  font-family: var(--font-sans);
  font-size: .72rem; font-weight: 300;
  color: rgba(212,192,154,0.55);
  letter-spacing: .04em;
  display: flex; align-items: center; gap: .45rem;
}
.footer-amenity svg { width: 13px; height: 13px; flex-shrink: 0; }
.footer-brand-social { margin-top: 1.6rem; }
.footer-brand-social a {
  font-family: var(--font-sans);
  font-size: .72rem; font-weight: 300;
  color: rgba(212,192,154,0.55);
  text-decoration: none;
  display: flex; align-items: center; gap: .45rem;
  transition: color 0.2s;
}
.footer-brand-social a:hover { color: var(--gold-light); }
.footer-brand-social svg { width: 13px; height: 13px; }
.footer-hours li {
  display: flex; justify-content: space-between; gap: 1rem;
}
.footer-hours li span {
  font-family: var(--font-sans);
  font-size: .82rem; font-weight: 300;
  color: rgba(212,192,154,0.7);
}
.footer-hours li span:first-child { color: rgba(212,192,154,0.45); }
.footer-address {
  font-family: var(--font-sans);
  font-size: .78rem; font-weight: 300; font-style: normal;
  color: rgba(212,192,154,0.55);
  line-height: 1.7;
  margin-top: 1.2rem;
}
.footer-col-title {
  font-family: var(--font-sans);
  font-size: .62rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-links a {
  font-family: var(--font-sans);
  font-size: .82rem; font-weight: 300;
  color: rgba(212,192,154,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-divider {
  border: none; border-top: 1px solid rgba(212,192,154,0.1);
  margin-bottom: 2rem;
}
.footer-credit {
  font-family: var(--font-sans);
  font-size: .6rem; letter-spacing: .06em;
  color: rgba(212,192,154,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-credit:hover { color: rgba(212,192,154,0.6); }
.footer-credit .credit-heart { color: var(--gold); opacity: 0.5; transition: opacity 0.2s; }
.footer-credit:hover .credit-heart { opacity: 1; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-family: var(--font-sans);
  font-size: .65rem; color: rgba(212,192,154,0.35);
  letter-spacing: .06em;
}
.footer-badge {
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(200,149,42,0.4);
  border: 1px solid rgba(200,149,42,0.15);
  padding: 6px 14px; border-radius: 2px;
}

/* ── STICKY MOBILE CTA ── */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--espresso);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.35);
  border-top: 1px solid var(--gold);
}
.sticky-mobile-cta a {
  flex: 1; padding: 15px 8px;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-family: var(--font-sans);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.smcta-call {
  color: rgba(240,228,210,0.82);
  border-right: 1px solid rgba(200,149,42,0.25);
}
.smcta-call:hover { background: rgba(200,149,42,0.08); color: var(--cream); }
.smcta-wa { color: var(--espresso); background: var(--gold); }
.smcta-wa:hover { background: #d4a82a; }

/* ── REVIEWS SLIDER ── */
.reviews-slider-wrap { overflow: hidden; position: relative; }
.reviews-track {
  display: flex;
  gap: 2px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.reviews-track .review-card {
  flex: 0 0 calc(33.333% - 2px);
  min-width: calc(33.333% - 2px);
}
.reviews-controls {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 2rem auto 0;
}
.reviews-nav-btns { display: flex; gap: .6rem; }
.reviews-nav-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(28,18,10,0.15);
  background: transparent; color: var(--espresso);
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.reviews-nav-btn:hover { background: var(--cream-2); border-color: var(--gold); color: var(--gold); }
.reviews-dots { display: flex; gap: .5rem; align-items: center; }
.reviews-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(28,18,10,0.15); border: none;
  cursor: pointer; transition: background 0.25s, transform 0.25s;
  padding: 0;
}
.reviews-dot.active { background: var(--gold); transform: scale(1.3); }
.reviews-count {
  font-family: var(--font-sans); font-size: .65rem;
  letter-spacing: .14em; color: var(--sand);
}

/* ── MENU GALLERY CARDS ── */
#menu-gallery { background: var(--espresso-2); padding: 0 5vw 8rem; }
.mgallery-inner { max-width: 1400px; margin: 0 auto; }
.mgallery-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(200,149,42,0.08);
}
.mgallery-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-style: italic; font-weight: 300;
  color: var(--cream); line-height: 1.1;
}
.mgallery-title em { font-style: normal; color: var(--gold); font-family: var(--font-script); }
.mgallery-subtitle {
  font-family: var(--font-sans); font-size: .78rem;
  color: var(--sand); max-width: 220px; text-align: right;
  line-height: 1.7; font-style: italic;
}
.menu-cat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.menu-cat-card {
  position: relative; height: 460px;
  border-radius: 4px; overflow: hidden; cursor: pointer;
  transition: transform 0.3s;
}
.menu-cat-card:hover { transform: translateY(-4px); }
.menu-cat-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  filter: brightness(0.55) saturate(0.7);
  transition: transform 0.7s ease, filter 0.4s;
}
.menu-cat-card:hover img { transform: scale(1.04); filter: brightness(0.45) saturate(0.75); }
.menu-cat-card-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem 2.5rem 2.8rem;
  background: linear-gradient(to top, rgba(28,18,10,0.85) 0%, rgba(28,18,10,0.1) 55%, transparent 100%);
}
.menu-cat-badge {
  font-family: var(--font-sans); font-size: .58rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .8rem;
  display: flex; align-items: center; gap: .6rem;
}
.menu-cat-badge::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
.menu-cat-name {
  font-family: var(--font-script); font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--cream); line-height: 1; margin-bottom: .6rem;
}
.menu-cat-count {
  font-family: var(--font-sans); font-size: .75rem; font-weight: 300;
  color: rgba(212,192,154,0.7); margin-bottom: 1.8rem; line-height: 1.5;
}
.menu-cat-cta {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-sans); font-size: .68rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--espresso); background: var(--gold);
  padding: 12px 24px; border-radius: 2px; border: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(200,149,42,0.3);
  align-self: flex-start;
}
.menu-cat-card:hover .menu-cat-cta { background: var(--gold-light); transform: translateX(3px); }

/* ── MENU MODAL ── */
.menu-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}
.menu-modal.open { opacity: 1; visibility: visible; }
.menu-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(12, 8, 4, 0.88);
  backdrop-filter: blur(4px);
}
.menu-modal-panel {
  position: relative; z-index: 1;
  width: min(1440px, 96vw);
  background: var(--espresso);
  border-radius: 8px;
  border: 1px solid rgba(200,149,42,0.15);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  display: flex; flex-direction: column;
  max-height: 96vh;
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.menu-modal.open .menu-modal-panel { transform: translateY(0); }
.mm-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 2rem 0;
  flex-shrink: 0;
}
.mm-wordmark { font-family: var(--font-script); font-size: 1.5rem; color: var(--cream); }
.mm-close {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(200,149,42,0.2);
  background: transparent; color: rgba(212,192,154,0.6);
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.mm-close:hover { background: rgba(200,149,42,0.15); color: var(--gold); }
.mm-tabs {
  display: flex; padding: 1.2rem 2rem .8rem;
  border-bottom: 1px solid rgba(200,149,42,0.1);
  gap: 4px; flex-shrink: 0;
}
.mm-tab {
  font-family: var(--font-sans); font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 9px 20px; border-radius: 2px;
  border: 1px solid transparent; background: transparent;
  color: rgba(212,192,154,0.5); cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.mm-tab.active { color: var(--espresso); background: var(--gold); border-color: var(--gold); }
.mm-tab:not(.active):hover { color: var(--gold); border-color: rgba(200,149,42,0.3); }
.mm-tab-pages { font-size: .6rem; opacity: .7; margin-left: .35rem; }
.mm-viewer {
  flex: 1; min-height: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 1.2rem 1rem; gap: 1rem;
  overflow: hidden;
}
.mm-arrow {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(200,149,42,0.25);
  background: rgba(28,18,10,0.5); color: var(--gold);
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.mm-arrow:hover { background: rgba(200,149,42,0.2); border-color: var(--gold); }
.mm-arrow:disabled { opacity: .2; cursor: default; }
.mm-img-wrap {
  flex: 1; display: flex; align-items: center; justify-content: center;
  overflow: hidden; border-radius: 4px; background: rgba(0,0,0,0.25);
  min-height: 0;
}
.mm-img-wrap img {
  max-width: 100%;
  max-height: calc(96vh - 185px);
  width: auto; height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s ease;
}
.mm-img-wrap img.fading { opacity: 0; }
.mm-footer {
  padding: .8rem 2rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0; border-top: 1px solid rgba(200,149,42,0.08);
}
.mm-counter { font-family: var(--font-sans); font-size: .65rem; letter-spacing: .14em; color: var(--sand); }
.mm-dots { display: flex; gap: .3rem; flex-wrap: wrap; justify-content: center; max-width: 200px; }
.mm-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(212,192,154,0.2); border: none;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.mm-dot.active { background: var(--gold); transform: scale(1.4); }
.mm-zomato-link {
  font-family: var(--font-sans); font-size: .62rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(212,192,154,0.4); text-decoration: none;
  transition: color 0.2s;
}
.mm-zomato-link:hover { color: var(--gold-light); }

/* ── MOBILE NAV HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 40px; height: 40px;
  background: transparent; border: none; cursor: pointer; padding: 8px;
  flex-shrink: 0;
  justify-self: end;
  grid-column: 3;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--espresso);
  display: flex; flex-direction: column;
  padding: 2rem 6vw 3rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 98;
  overflow-y: auto;
}
.nav-mobile-menu.open { transform: translateX(0); }
.nmm-label {
  font-family: var(--font-sans); font-size: .55rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.nmm-link {
  font-family: var(--font-serif); font-size: 1.55rem; font-weight: 300; font-style: italic;
  color: var(--cream); text-decoration: none;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(212,192,154,0.08);
  display: block;
  transition: color 0.2s, padding-left 0.2s;
}
.nmm-link:hover { color: var(--gold); padding-left: .5rem; }
.nmm-divider { flex: 1; }
.nmm-cta {
  display: block; margin-top: 2rem;
  text-align: center; font-family: var(--font-sans);
  font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--espresso); background: var(--gold);
  padding: 16px 24px; border-radius: 2px; text-decoration: none;
  transition: background 0.25s;
}
.nmm-cta:hover { background: var(--gold-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .food-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .food-card:nth-child(1) { grid-row: auto; grid-column: 1 / 3; height: 360px; }
  .menu-categories { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  #visit-home, #visit, .visit-page-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-amenities { flex-direction: row; flex-wrap: wrap; gap: .6rem 1rem; }
  .reviews-track .review-card { flex: 0 0 calc(50% - 1px); min-width: calc(50% - 1px); }
  .quick-facts dl { grid-template-columns: 130px 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 5vw; }
  .nav-links { display: none; }
  #hero { padding: 0 6vw; }
  /* Mobile portrait images have text in the lower half — keep bottom vignette, add a subtle top one for nav */
  .hero-slide::after {
    background:
      linear-gradient(to bottom, rgba(28,18,10,0.25) 0%, transparent 18%),
      linear-gradient(to top, rgba(28,18,10,0.55) 0%, transparent 20%);
  }
  /* Mobile: left-align to match the portrait image's text column */
  .hero-dots      { right: auto; left: 5vw; bottom: 20vh; }
  .hero-cta-group { right: auto; left: 5vw; bottom: 10vh;  gap: 1rem; }
  .story-grid { grid-template-columns: 1fr; }
  .story-image-pair { display: none; }
  .exp-grid { grid-template-columns: 1fr; }
  .food-grid { grid-template-columns: 1fr; }
  .food-card { height: 260px !important; grid-column: auto !important; }
  .food-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .menu-categories { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  #visit-home, #visit, .visit-page-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-top > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  footer { padding-bottom: 5rem; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .sticky-mobile-cta { display: flex; }
  .menu-cat-cards { grid-template-columns: 1fr; }
  .menu-cat-card { height: 320px; }
  .mm-viewer { padding: .8rem .5rem; gap: .5rem; }
  .mm-arrow { width: 36px; height: 36px; font-size: .9rem; }
  .reviews-track .review-card { flex: 0 0 100%; min-width: 100%; }
  .page-hero { height: 100svh; min-height: 480px; }
  .page-hero-cta { bottom: 1.5rem; right: 5vw; font-size: .65rem; padding: 12px 20px; }
  .page-hero-content h1 { font-size: clamp(1.5rem, 6vw, 2.4rem); }
  .quick-facts { padding: 2rem 1.5rem; }
  .quick-facts dl { grid-template-columns: 1fr; gap: .1rem; }
  .quick-facts dt { border-bottom: none; padding-bottom: 0; }
  .quick-facts dd { padding-top: .2rem; }
  .story-page-section { padding: 3rem 5vw 5rem; }
  .story-letter-wrap { max-width: 100%; }
  .menu-page-inner h2, .menu-category-title { font-size: 1.8rem; }
}

@media (max-width: 600px) {
  .menu-modal { align-items: flex-end; justify-content: stretch; }
  .menu-modal-panel {
    width: 100%; border-radius: 16px 16px 0 0;
    border-left: none; border-right: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    max-height: 96svh; transform: translateY(100%); top: auto;
  }
  .menu-modal.open .menu-modal-panel { transform: translateY(0); }
  .mm-header { padding: 1.2rem 1.4rem 0; }
  .mm-tabs   { padding: .9rem 1.4rem .6rem; }
  .mm-footer { padding: .6rem 1.4rem 1.2rem; }
  .mm-viewer { position: relative; padding: .6rem 0; gap: 0; }
  .mm-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 36px; height: 36px; background: rgba(12,8,4,0.65); border-color: rgba(200,149,42,0.3); }
  #mmPrev { left: .5rem; }
  #mmNext { right: .5rem; }
  .mm-img-wrap { flex: unset; width: 100%; border-radius: 0; background: rgba(0,0,0,0.4); min-height: 0; }
  .mm-img-wrap img { max-height: calc(96svh - 210px); width: 100%; height: auto; object-fit: contain; }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal, .reveal-left, .reveal-right { transition: opacity 0.8s ease, transform 0.8s ease; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
}
@media (pointer: coarse) {
  body { cursor: auto !important; }
  .cursor, .cursor-ring { display: none !important; }
}
