/* ==========================================================================
   Sip 'N' Dine — Indian Kitchen & Bar
   Design system: deep emerald + gold, inspired by the brand mark.
   ========================================================================== */

:root {
  /* Colour palette */
  --emerald-950: #06231a;
  --emerald-900: #0a3327;
  --emerald-800: #0d4033;
  --emerald-700: #114f3f;
  --emerald-600: #166148;
  --gold-100: #f6e9c8;
  --gold-300: #e6c977;
  --gold-500: #cda349;
  --gold-600: #b5872f;
  --gold-700: #8f6a24;
  --cream: #faf5ea;
  --ivory: #fffcf5;
  --charcoal: #1a1712;
  --text-muted: #6f6a5e;
  --text-on-dark: #f3ede0;
  --text-on-dark-muted: #c9c0ab;

  /* Type */
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-mono-caps: "Cinzel", serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;

  /* Layout */
  --container: 1240px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 22px;
  --shadow-soft: 0 20px 50px -20px rgba(6, 35, 26, 0.45);
  --shadow-gold: 0 10px 30px -8px rgba(205, 163, 73, 0.55);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------------------------------------------------------------------------
   Reset
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; margin: 0; line-height: 1.15; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
section { position: relative; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }

/* -------------------------------------------------------------------------
   Utility
   ------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-mono-caps);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-600);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold-300); }
.eyebrow.on-dark::before { background: var(--gold-300); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before, .eyebrow.center::after {
  content: ""; width: 28px; height: 1px; background: currentColor;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin: 10px 0 18px;
  color: var(--emerald-900);
}
.section-title em { color: var(--gold-600); font-style: italic; }
.on-dark .section-title,
h1.on-dark, h2.on-dark, h3.on-dark { color: var(--text-on-dark); }
.on-dark .section-title em, .on-dark em { color: var(--gold-300); }

.section-lede {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.on-dark .section-lede { color: var(--text-on-dark-muted); }

.center { text-align: center; margin-left: auto; margin-right: auto; }

.divider-motif {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 22px auto;
  color: var(--gold-500);
  width: fit-content;
}
.divider-motif::before, .divider-motif::after {
  content: "";
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor);
}
.divider-motif::after { background: linear-gradient(90deg, currentColor, transparent); }
.divider-motif svg { width: 16px; height: 16px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border: 1px solid rgba(205, 163, 73, 0.5);
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-700);
  background: rgba(205, 163, 73, 0.08);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-mono-caps);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color .4s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color: var(--emerald-950);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(205,163,73,.7); }
.btn-outline {
  border-color: rgba(243, 237, 224, 0.45);
  color: var(--text-on-dark);
  background: rgba(255,255,255,0.02);
}
.btn-outline:hover { border-color: var(--gold-300); color: var(--gold-300); transform: translateY(-2px); }
.btn-outline-dark {
  border-color: rgba(26,23,18,0.3);
  color: var(--emerald-900);
}
.btn-outline-dark:hover { border-color: var(--emerald-800); background: var(--emerald-900); color: var(--text-on-dark); transform: translateY(-2px); }
.btn-sm { padding: 11px 22px; font-size: 0.68rem; }
.btn-block { width: 100%; }

/* -------------------------------------------------------------------------
   Decorative arch frame (echoes the brand mark)
   ------------------------------------------------------------------------- */
.arch-frame {
  position: relative;
  border-radius: 220px 220px 14px 14px;
  overflow: hidden;
  isolation: isolate;
}
.arch-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(205, 163, 73, 0.55);
  border-radius: 210px 210px 8px 8px;
  pointer-events: none;
}

/* -------------------------------------------------------------------------
   Preloader-free fade-in on scroll
   ------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible { transition-delay: .12s; }
.reveal-delay-2.is-visible { transition-delay: .24s; }
.reveal-delay-3.is-visible { transition-delay: .36s; }

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.announce {
  background: var(--emerald-950);
  color: var(--gold-100);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 9px 18px;
  font-family: var(--font-body);
  border-bottom: 1px solid rgba(205,163,73,0.25);
}
.announce strong { color: var(--gold-300); font-weight: 600; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 20px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow .4s var(--ease);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,35,26,0.75), rgba(6,35,26,0));
  z-index: -1;
  opacity: 1;
  transition: opacity .4s var(--ease), background .4s var(--ease);
}
.site-header.is-solid { padding: 12px 0; box-shadow: 0 10px 30px -18px rgba(0,0,0,.5); }
.site-header.is-solid::before { background: var(--emerald-950); opacity: 1; }
.no-hero .site-header::before { background: var(--emerald-950); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark { width: 44px; height: 44px; flex-shrink: 0; }
.brand-word { display: flex; flex-direction: column; line-height: 1.05; white-space: nowrap; }
.brand-word .n1 {
  font-family: var(--font-mono-caps);
  color: var(--gold-300);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.brand-word .n2 {
  font-family: var(--font-body);
  color: var(--text-on-dark-muted);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 3px;
  white-space: nowrap;
}

.main-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); flex-wrap: nowrap; }
.main-nav a {
  font-family: var(--font-mono-caps);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color .3s;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold-300);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--text-on-dark); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: clamp(10px, 1.6vw, 20px); flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-on-dark-muted);
  font-size: 0.85rem;
  white-space: nowrap;
}
.header-phone svg { width: 16px; height: 16px; color: var(--gold-300); }
.header-phone:hover { color: var(--text-on-dark); }

.nav-toggle {
  display: none;
  background: none; border: none; color: var(--text-on-dark);
  width: 40px; height: 40px; position: relative; z-index: 260;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 1.5px; background: currentColor;
  position: relative; margin: 0 auto; transition: transform .3s, opacity .3s;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(7px) rotate(45deg); background: var(--gold-300); }
.nav-toggle.is-open span::after { transform: translateY(-7px) rotate(-45deg); background: var(--gold-300); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  margin-top: -86px;
  padding-top: 86px;
  overflow: hidden;
  background: var(--emerald-950);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(6,35,26,0.35), transparent 60%),
    linear-gradient(180deg, rgba(6,20,15,0.55) 0%, rgba(6,25,19,0.45) 40%, rgba(5,25,19,0.92) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 120px 24px 100px;
}
.hero-content .eyebrow { margin-bottom: 22px; }
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  color: var(--text-on-dark);
  text-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.hero-title em { color: var(--gold-300); font-style: italic; }
.hero-sub {
  font-family: var(--font-body);
  color: var(--text-on-dark-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 24px auto 38px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--text-on-dark-muted);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.65rem; letter-spacing: .3em; text-transform: uppercase;
  font-family: var(--font-mono-caps);
}
.hero-scroll .line { width: 1px; height: 40px; background: linear-gradient(180deg, var(--gold-300), transparent); animation: scrolldrop 2.2s infinite; }
@keyframes scrolldrop { 0% { transform: scaleY(0); transform-origin: top;} 50% {transform: scaleY(1); transform-origin: top;} 51% {transform-origin: bottom;} 100% {transform: scaleY(0); transform-origin: bottom;} }

/* Page (non-home) hero — shorter */
.page-hero { min-height: 56vh; }
.page-hero .hero-content { padding: 130px 24px 70px; }

/* ==========================================================================
   Sections — light / dark bands
   ========================================================================== */
.band { padding: clamp(70px, 10vw, 120px) 0; }
.band-dark { background: var(--emerald-950); color: var(--text-on-dark); }
.band-emerald { background: var(--emerald-900); color: var(--text-on-dark); }
.band-cream { background: var(--cream); }
.band-ivory { background: var(--ivory); }

.band-dark, .band-emerald {
  background-image:
    radial-gradient(1200px 500px at 10% -10%, rgba(205,163,73,0.07), transparent 60%),
    radial-gradient(900px 500px at 100% 110%, rgba(205,163,73,0.06), transparent 60%);
}

/* ==========================================================================
   Home — intro / story split
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; height: 560px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.split-media.short img { height: 420px; }
.split-media .frame-tag {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--ivory);
  border: 1px solid rgba(205,163,73,0.4);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--emerald-900);
  max-width: 230px;
}
.split-media .frame-tag span { display: block; font-family: var(--font-mono-caps); font-size: .62rem; letter-spacing: .18em; color: var(--gold-600); margin-bottom: 4px; text-transform: uppercase; }

.split-body p { color: var(--text-muted); }
.on-dark .split-body p { color: var(--text-on-dark-muted); }
.split-stats { display: flex; gap: 34px; margin-top: 32px; flex-wrap: wrap; }
.split-stats .stat b { display: block; font-family: var(--font-display); font-size: 2.1rem; color: var(--gold-600); }
.split-stats .stat span { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.on-dark .split-stats .stat span { color: var(--text-on-dark-muted); }

/* ==========================================================================
   Feature / pillar cards
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.pillar-card {
  background: var(--ivory);
  border: 1px solid rgba(20,50,40,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.pillar-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: rgba(205,163,73,0.4); }
.pillar-icon {
  width: 64px; height: 64px; margin: 0 auto 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, var(--emerald-800), var(--emerald-950));
  color: var(--gold-300);
  box-shadow: inset 0 0 0 1px rgba(205,163,73,0.4);
}
.pillar-icon svg { width: 28px; height: 28px; }
.pillar-card h3 { font-size: 1.35rem; color: var(--emerald-900); margin-bottom: 10px; }
.pillar-card p { color: var(--text-muted); font-size: .94rem; margin-bottom: 0; }

/* ==========================================================================
   Menu highlight cards (home)
   ========================================================================== */
.dish-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 14px; padding: 16px 0;
  border-bottom: 1px dashed rgba(205,163,73,0.3);
}
.dish-row:last-child { border-bottom: none; }
.dish-name { font-family: var(--font-display); font-size: 1.18rem; color: var(--emerald-900); }
.on-dark .dish-name, .band-dark .dish-name, .band-emerald .dish-name { color: var(--text-on-dark); }
.dish-desc { font-size: .86rem; color: var(--text-muted); margin-top: 3px; }
.on-dark .dish-desc, .band-dark .dish-desc, .band-emerald .dish-desc { color: var(--text-on-dark-muted); }
.dish-tags { font-size: .68rem; letter-spacing: .05em; color: var(--gold-600); text-transform: uppercase; margin-top: 4px; }
.dish-leader { flex: 1; border-bottom: 1px dotted rgba(111,106,94,0.35); margin: 0 12px 6px; min-width: 20px; }
.dish-price { font-family: var(--font-mono-caps); font-size: 1rem; color: var(--gold-600); white-space: nowrap; }

/* ==========================================================================
   Gallery / masonry
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: var(--radius-md); position: relative; cursor: zoom-in; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.08); }
.gallery-grid figure::after {
  content: attr(data-cap);
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px;
  background: linear-gradient(0deg, rgba(6,20,15,0.85), transparent);
  color: var(--text-on-dark);
  font-family: var(--font-mono-caps);
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  opacity: 0; transform: translateY(6px);
  transition: opacity .4s, transform .4s;
}
.gallery-grid figure:hover::after { opacity: 1; transform: translateY(0); }
.gallery-grid .span-2-2 { grid-column: span 2; grid-row: span 2; }
.gallery-grid .span-2-1 { grid-column: span 2; }
.gallery-grid .span-1-2 { grid-row: span 2; }

.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(6,20,15,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .35s;
  padding: 40px;
}
.lightbox.is-open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: var(--radius-md); box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox-close {
  position: absolute; top: 24px; right: 30px; color: var(--text-on-dark);
  background: none; border: 1px solid rgba(255,255,255,.3); border-radius: 50%;
  width: 44px; height: 44px; font-size: 1.2rem;
}
.lightbox-cap { position: absolute; bottom: 30px; color: var(--gold-300); font-family: var(--font-mono-caps); letter-spacing: .12em; font-size: .75rem; text-transform: uppercase; }

/* ==========================================================================
   Testimonial / quote band (kept generic — no fabricated reviews)
   ========================================================================== */
.quote-block {
  max-width: 760px; margin: 0 auto; text-align: center;
}
.quote-block svg { width: 40px; height: 40px; color: var(--gold-500); margin-bottom: 18px; }
.quote-block p { font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--text-on-dark); }
.quote-block cite { display: block; margin-top: 18px; font-style: normal; font-family: var(--font-mono-caps); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-300); }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  border-radius: var(--radius-lg);
  padding: clamp(46px, 6vw, 74px);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--emerald-800), var(--emerald-950));
  box-shadow: var(--shadow-soft);
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 20% 0%, rgba(205,163,73,0.18), transparent 60%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 16px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

/* ==========================================================================
   Info strip (hours / location / phone quick facts)
   ========================================================================== */
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-top: -90px;
  position: relative;
  z-index: 5;
}
.info-strip .info-item {
  background: var(--ivory);
  padding: 30px 34px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-right: 1px solid rgba(20,50,40,0.08);
}
.info-strip .info-item:last-child { border-right: none; }
.info-strip .info-item .ic {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--emerald-900); color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
}
.info-strip .info-item .ic svg { width: 20px; height: 20px; }
.info-strip h4 { font-family: var(--font-mono-caps); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--emerald-900); margin-bottom: 6px; }
.info-strip p { margin: 0; font-size: .88rem; color: var(--text-muted); }
.info-strip a.link { color: var(--gold-700); font-weight: 600; }

/* ==========================================================================
   Menu page
   ========================================================================== */
.menu-tabs {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 50px;
}
.menu-tab {
  font-family: var(--font-mono-caps);
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 12px 24px; border-radius: 100px;
  border: 1px solid rgba(20,50,40,0.15);
  color: var(--emerald-900);
  background: var(--ivory);
  transition: all .3s;
}
.menu-tab.is-active, .menu-tab:hover { background: var(--emerald-900); color: var(--text-on-dark); border-color: var(--emerald-900); }

.menu-panel { display: none; }
.menu-panel.is-active { display: block; animation: fadein .5s var(--ease); }
@keyframes fadein { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: translateY(0);} }

.menu-note {
  max-width: 720px; margin: 0 auto 54px; text-align: center;
  background: rgba(205,163,73,0.08);
  border: 1px dashed rgba(205,163,73,0.5);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  font-size: .92rem;
  color: var(--emerald-900);
}

.menu-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 0 70px; }
.menu-section { margin-bottom: 44px; break-inside: avoid; }
.menu-section-title {
  font-family: var(--font-mono-caps);
  font-size: .82rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-600);
  padding-bottom: 12px; margin-bottom: 6px;
  border-bottom: 1px solid rgba(205,163,73,0.35);
}
.menu-legend {
  display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center;
  font-size: .76rem; color: var(--text-muted); margin: 10px 0 50px;
}
.menu-legend b { color: var(--gold-700); }

/* ==========================================================================
   Reservations page
   ========================================================================== */
.booking-panel {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(205,163,73,0.25);
}
.booking-status {
  display: flex; align-items: center; gap: 12px;
  background: rgba(205,163,73,0.1);
  border: 1px solid rgba(205,163,73,0.35);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: .88rem;
  color: var(--emerald-900);
  margin-bottom: 30px;
}
.booking-status svg { width: 20px; height: 20px; color: var(--gold-600); flex-shrink: 0; }

.mock-widget {
  border: 1px solid rgba(20,50,40,0.12);
  border-radius: var(--radius-md);
  padding: 30px;
  background: linear-gradient(180deg, #fff, var(--cream));
}
.mock-widget .mw-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 16px; }
.mock-field { display: flex; flex-direction: column; gap: 7px; }
.mock-field label { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); font-family: var(--font-mono-caps); }
.mock-field .fake-input {
  border: 1px solid rgba(20,50,40,0.18);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: .9rem;
  color: var(--charcoal);
  background: #fff;
  display: flex; align-items: center; justify-content: space-between;
}
.mock-field .fake-input svg { width: 15px; height: 15px; color: var(--gold-600); }

.provider-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 26px; }
.provider-card {
  border: 1px solid rgba(20,50,40,0.1);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
  background: var(--ivory);
}
.provider-card.recommended { border-color: var(--gold-500); background: rgba(205,163,73,0.06); position: relative; }
.provider-card.recommended::before {
  content: "Recommended";
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold-500); color: var(--emerald-950);
  font-family: var(--font-mono-caps); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
}
.provider-card h4 { font-family: var(--font-display); font-size: 1.3rem; color: var(--emerald-900); margin-bottom: 8px; }
.provider-card p { font-size: .82rem; color: var(--text-muted); margin-bottom: 0; }

/* ==========================================================================
   Contact / forms
   ========================================================================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid.full { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label { font-family: var(--font-mono-caps); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--emerald-900); }
.field input, .field select, .field textarea {
  border: 1px solid rgba(20,50,40,0.2);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: .92rem;
  background: #fff;
  color: var(--charcoal);
  transition: border-color .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-500); }
.field textarea { resize: vertical; min-height: 120px; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid rgba(205,163,73,0.25); }
.map-embed iframe { width: 100%; height: 440px; border: 0; display: block; filter: saturate(0.85); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 12px 0; border-bottom: 1px solid rgba(20,50,40,0.08); font-size: .94rem; }
.on-dark .hours-table td { border-bottom-color: rgba(255,255,255,0.1); }
.hours-table td:first-child { font-family: var(--font-mono-caps); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-600); }
.hours-table td:last-child { text-align: right; color: var(--text-muted); }
.on-dark .hours-table td:last-child { color: var(--text-on-dark-muted); }
.hours-table tr.closed td:last-child { color: var(--gold-600) !important; font-style: italic; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--emerald-950); color: var(--text-on-dark-muted); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: .9rem; max-width: 300px; }
.footer-col h5 { font-family: var(--font-mono-caps); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; font-size: .9rem; }
.footer-col ul li a:hover { color: var(--text-on-dark); }
.footer-col address { font-style: normal; font-size: .9rem; line-height: 1.8; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: .78rem; flex-wrap: wrap; gap: 10px;
}
.footer-bottom .credit a { color: var(--gold-300); }

.back-to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 150;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold-500); color: var(--emerald-950);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: all .4s;
}
.back-to-top.is-visible { opacity: 1; pointer-events: all; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) {
  .header-phone { display: none; }
}

@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .info-strip { grid-template-columns: 1fr; margin-top: -50px; }
  .info-strip .info-item { border-right: none; border-bottom: 1px solid rgba(20,50,40,0.08); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .span-2-2, .gallery-grid .span-2-1 { grid-column: span 2; }
}

@media (max-width: 900px) {
  .main-nav, .header-phone { display: none; }
  .header-actions .btn { display: none; }
  .nav-toggle { display: block; }
  .split, .grid-3, .grid-2, .provider-grid, .menu-columns, .form-grid, .mock-widget .mw-row { grid-template-columns: 1fr; }
  .split-media img, .split-media.short img { height: 380px; }
  .split.reverse .split-media { order: 0; }
  .split-media .frame-tag { left: 14px; bottom: -18px; }
}

@media (max-width: 620px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}

/* ==========================================================================
   Mobile nav overlay
   ========================================================================== */
.mobile-nav {
  position: fixed; inset: 0; z-index: 250;
  background: var(--emerald-950);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--font-display); font-size: 2rem; color: var(--text-on-dark);
}
.mobile-nav a:hover { color: var(--gold-300); }
.mobile-nav .mn-phone { margin-top: 14px; font-family: var(--font-mono-caps); letter-spacing: .1em; color: var(--gold-300); font-size: .85rem; }
.mobile-nav a.btn { font-size: 0.74rem; font-family: var(--font-mono-caps); padding: 15px 32px; }
