/* =============================================
   MYSORE RAMAN IDLI — CSS Styles
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,800&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&display=swap');

/* --- CSS Variables --- */
:root {
  --forest-green: #1A5C2A;
  --forest-dark: #0D3518;
  --forest-deep: #0A2710;
  --forest-light: #2D7A40;
  --cream: #FAF8F2;
  --ivory: #F0EAD8;
  --parchment: #E8DEC8;
  --brass: #C4962A;
  --brass-light: #D9AE4A;
  --warm-brown: #5D3A1A;
  --charcoal: #1A1A1A;
  --mid-gray: #6B6B6B;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--forest-dark);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Barba page transitions */
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* --- Typography --- */
.font-serif { font-family: 'Playfair Display', serif; }
.font-accent { font-family: 'Cormorant Garamond', serif; }

/* --- Layout --- */
.container-xl {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container-xl { padding: 0 2rem; }
}
@media (min-width: 1024px) {
  .container-xl { padding: 0 2.5rem; }
}
@media (min-width: 1280px) {
  .container-xl { padding: 0 3rem; }
}

/* --- Grain Overlay --- */
.grain { position: relative; }
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  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='1'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  mix-blend-mode: multiply;
}

/* --- Section Label --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-family: 'DM Sans', sans-serif;
}
.section-label-line {
  display: inline-block;
  width: 1.75rem;
  height: 1px;
  background: rgba(196,150,42,0.6);
}

/* --- Buttons --- */
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--forest-green);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-green:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,92,42,0.3);
}
.btn-outline-green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: var(--forest-green);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  border: 1.5px solid var(--forest-green);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-outline-green:hover {
  background: var(--forest-green);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: rgba(250,248,242,0.7);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-outline-dark:hover {
  background: rgba(255,255,255,0.1);
  color: var(--cream);
  border-color: rgba(255,255,255,0.4);
}
.btn-cream {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--cream);
  color: var(--forest-green);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-cream:hover { background: var(--ivory); }

/* --- Text Gradients --- */
.text-gradient {
  background: linear-gradient(135deg, #FAF8F2 30%, #C4962A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-gold {
  background: linear-gradient(135deg, #D9AE4A, #C4962A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Card Hover --- */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* --- Scroll Reveal Animations --- */
.reveal { opacity: 0; transform: translateY(32px); will-change: opacity, transform; }
.reveal.visible { animation: reveal-up 0.75s ease forwards; }

.reveal-left { opacity: 0; transform: translateY(28px); will-change: opacity, transform; }
.reveal-left.visible { animation: reveal-up 0.75s ease forwards; }

.reveal-right { opacity: 0; transform: translateY(28px); will-change: opacity, transform; }
.reveal-right.visible { animation: reveal-up 0.75s ease forwards; }

/* --- Keyframes --- */
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes reveal-from-left {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes reveal-from-right {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes float-delayed {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes scroll-cue {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
  padding: 0;
}
.navbar.scrolled, .navbar.inner-page {
  background: rgba(250,248,242,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar.transparent { background: transparent; }

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {
  .nav-inner { padding: 0 2.5rem; }
}

.nav-logo img {
  height: 48px;
  width: auto;
  transition: filter 0.4s;
}
.navbar.transparent .nav-logo img { }
.navbar.scrolled .nav-logo img,
.navbar.inner-page .nav-logo img { filter: none; }

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.navbar.transparent .nav-links a { color: rgba(250,248,242,0.8); }
.navbar.transparent .nav-links a:hover { color: var(--cream); background: rgba(255,255,255,0.1); }
.navbar.scrolled .nav-links a,
.navbar.inner-page .nav-links a { color: var(--charcoal); }
.navbar.scrolled .nav-links a:hover,
.navbar.inner-page .nav-links a:hover { color: var(--forest-green); background: rgba(26,92,42,0.06); }
.nav-links a.active { font-weight: 600; text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1.5px; }
.navbar.transparent .nav-links a.active { color: var(--cream) !important; text-decoration-color: rgba(255,255,255,0.8); }
.navbar.scrolled .nav-links a.active,
.navbar.inner-page .nav-links a.active { color: var(--charcoal) !important; text-decoration-color: var(--forest-green); }


.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  position: fixed;
  top: 1.1rem;
  right: 24px;
  z-index: 99999;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 3px;
  transition: all 0.3s;
}
.navbar.transparent .hamburger span { background: var(--cream); }
.navbar.scrolled .hamburger span,
.navbar.inner-page .hamburger span { background: var(--charcoal); }
/* X button: cream on dark/transparent nav, charcoal on light nav */
.hamburger.open span { background: var(--cream); }
.navbar.scrolled .hamburger.open span,
.navbar.inner-page .hamburger.open span { background: var(--charcoal) !important; }
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--forest-dark);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  padding: 5rem 2rem 2rem;
  box-shadow: -8px 0 40px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-close {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: var(--cream);
  cursor: pointer;
  transition: background 0.2s;
}
.nav-drawer-close:hover { background: rgba(255,255,255,0.16); }
.nav-drawer a {
  display: block;
  padding: 0.65rem 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(250,248,242,0.65);
  border-radius: 0.5rem;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}
.nav-drawer a:hover { color: var(--cream); background: rgba(255,255,255,0.06); }
.nav-drawer a.active { color: var(--brass-light) !important; font-weight: 800; }

@media (max-height: 640px) {
  .nav-drawer { justify-content: flex-start; padding-top: 4.5rem; }
  .nav-drawer a { font-size: 1.25rem; padding: 0.45rem 1rem; }
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  display: none;
  backdrop-filter: blur(2px);
}
.nav-overlay.open { display: block; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--forest-deep);
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 39, 16, 0.85);
  z-index: 1;
  pointer-events: none;
}
.hero-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 2; }
.hero-blob-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, #2D7A40 0%, transparent 70%);
  opacity: 0.18;
  top: -20%;
  left: -15%;
}
.hero-blob-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, #C4962A 0%, transparent 70%);
  opacity: 0.09;
  bottom: 5%;
  right: 0%;
}
/* ---- HERO SPLIT LAYOUT ---- */
.hero-split {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-top: 6rem;
  padding-bottom: 1rem;
  min-height: 0;
}
@media (min-width: 768px) { .hero-split { padding-top: 7rem; } }

/* Tablet: no right column, center the text */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-split {
    justify-content: center;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .hero-left {
    align-items: center;
    text-align: center;
    max-width: 36rem;
  }
  .hero-headline { align-items: center; font-size: clamp(3rem, 7vw, 5rem); }
  .hero-sub-text { text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-eyebrow { justify-content: center; }
}

/* Left column */
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

/* Right column */
.hero-right {
  flex: 0 0 48%;
  display: none;
  position: relative;
  padding: 0 4rem;
}
@media (min-width: 1024px) { .hero-right { display: block; } }

/* Main image */
.hero-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 3;
  perspective: 600px;
}
.hero-main-img {
  width: 100%;
  height: 100%;
  max-height: 62vh;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.hero-cutout {
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  will-change: transform;
  transform-origin: center center;
  transform-style: preserve-3d;
  z-index: 1;
  position: relative;
}

/* Accent floating images — transparent PNGs, no clip/border */
.hero-accent {
  position: absolute;
  pointer-events: none;
  will-change: transform;
  z-index: 10;
  isolation: isolate;
}
.hero-accent img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px rgba(0,0,0,0.35))
    drop-shadow(0 16px 40px rgba(0,0,0,0.35))
    drop-shadow(0 4px 8px rgba(0,0,0,0.35));
}
/* Coffee — bottom-left, outside the plate */
.hero-accent-1 { width: 10rem; height: 10rem; bottom: 8%;  left: -5rem; }
/* Idli plate — top-right, above the plate */
.hero-accent-2 { width: 11rem; height: 11rem; top: -8%;    right: -1rem; }
/* Thali — bottom-right, outside the plate */
.hero-accent-3 { width: 10rem; height: 10rem; bottom: 10%; right: -5rem; }

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line { width: 2rem; height: 1px; background: rgba(196,150,42,0.5); }
.hero-eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brass); flex-shrink: 0; }
.hero-eyebrow span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass-light);
}

/* Headline */
.hero-headline {
  display: flex;
  flex-direction: column;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.75rem;
}
.hero-hl-line { display: block; }
.hero-hl-italic { font-style: italic; color: var(--brass-light); }

/* Sub text */
.hero-sub-text {
  max-width: 30rem;
  color: rgba(250,248,242,0.5);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.25rem;
}
@media (min-width: 768px) { .hero-sub-text { font-size: 1rem; } }

/* Buttons */
.hero-btns { display: flex; flex-wrap: nowrap; gap: 0.625rem; }

@media (max-width: 767px) {
  .hero-headline { font-size: 58px; }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .hero-btns .btn-outline-cream { display: none; }
  .hero-btns .btn-green {
    font-size: 0.875rem;
    padding: 0.875rem 1.75rem;
  }
}
.btn-outline-cream {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(250,248,242,0.35);
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.btn-outline-cream:hover { border-color: rgba(250,248,242,0.7); background: rgba(250,248,242,0.07); }
.hero-scroll {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1.25rem;
  padding-top: 1rem;
  gap: 0.5rem;
  flex-shrink: 0;
}
.hero-scroll-label {
  font-size: 0.6rem;
  color: rgba(250,248,242,0.3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 1.75rem;
  background: linear-gradient(to bottom, rgba(250,248,242,0.3), transparent);
  animation: scroll-cue 2s ease-in-out infinite;
}
.hero-stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide-x: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .hero-stats-grid { padding: 0 2.5rem; } }
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-val {
  font-family: 'Playfair Display', serif;
  color: var(--brass-light);
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 768px) { .hero-stat-val { font-size: 1.875rem; } }
.hero-stat-label {
  color: rgba(250,248,242,0.35);
  font-size: 0.65rem;
  margin-top: 0.25rem;
  text-align: center;
}
@media (max-width: 768px) {
  .reviews-section .section-header {
    margin-bottom: 2rem;
  }
}
/* =============================================
   SIGNATURE DISHES
   ============================================= */
.dishes-section { padding: 6rem 0; background: var(--cream); }
@media (min-width: 768px) { .dishes-section { padding: 8rem 0; } }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.section-header h2 em {
  font-style: italic;
  color: var(--forest-green);
  font-style: normal;
}
.section-header p { max-width: 36rem; margin: 0 auto; color: var(--mid-gray); line-height: 1.7; }
.dishes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .dishes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .dishes-grid { grid-template-columns: repeat(3, 1fr); } }
.dishes-grid-extra { margin-top: 1.5rem; }
/* Mobile: hide dishes 4–6 and show inline CTA after 3 */
.dishes-mobile-cta { display: none; text-align: center; margin-top: 2rem; }
@media (max-width: 639px) {
  .dishes-grid-extra { display: none; }
  .dishes-mobile-cta { display: block; }
  .section-cta { display: none; }
}
.dish-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.dish-img-wrap { position: relative; height: 13rem; overflow: hidden; }
.dish-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.dish-card:hover .dish-img-wrap img { transform: scale(1.1); }
.dish-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
.dish-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  background: var(--forest-dark);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.dish-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.2);
  font-size: 1.875rem;
  font-weight: 700;
}
.dish-body { padding: 1.25rem; }
.dish-tag { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); margin-bottom: 0.25rem; }
.dish-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.5rem; }
.dish-desc { font-size: 0.875rem; color: var(--mid-gray); line-height: 1.6; margin-bottom: 1rem; }
.dish-footer { display: flex; align-items: center; justify-content: space-between; }
.dish-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--forest-green); }
.dish-order { font-size: 0.75rem; font-weight: 600; color: var(--cream); background: var(--forest-green); padding: 0.375rem 0.875rem; border-radius: 9999px; border: none; cursor: pointer; transition: background 0.2s; }
.dish-order:hover { background: var(--forest-dark); }
.section-cta { text-align: center; margin-top: 3.5rem; }

/* =============================================
   WHY DIFFERENT
   ============================================= */
.why-section {
  position: relative;
  padding: 6rem 0;
  background: var(--forest-dark);
  overflow: hidden;
}
@media (min-width: 768px) { .why-section { padding: 8rem 0; } }
.why-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}
.why-watermark span {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(8rem, 22vw, 22rem);
  line-height: 1;
  color: rgba(255,255,255,0.025);
  user-select: none;
}
.why-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .why-layout {
    grid-template-columns: 1fr 2.5fr;
    gap: 4rem;
    align-items: center;
  }
}
.why-intro { max-width: 28rem; }
.why-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  color: var(--cream);
}
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }
.pillar-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  overflow: hidden;
}
.pillar-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-4px);
}
.pillar-num {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  transition: color 0.3s;
}
.pillar-card:hover .pillar-num { color: rgba(255,255,255,0.1); }
.pillar-icon { width: 2rem; height: 2rem; margin-bottom: 1rem; color: var(--brass-light); }
.pillar-icon svg { width: 100%; height: 100%; }
.pillar-title { font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; }
.pillar-desc { font-size: 0.875rem; color: rgba(250,248,242,0.45); line-height: 1.6; }
.pillar-line { margin-top: 1.25rem; height: 1px; background: var(--brass); width: 0; transition: width 0.5s ease; }
.pillar-card:hover .pillar-line { width: 100%; }
.quote-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(45,122,64,0.25);
  border: 1px solid rgba(45,122,64,0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
.quote-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(250,248,242,0.85);
  line-height: 1.6;
}
@media (min-width: 768px) { .quote-card blockquote { font-size: 1.5rem; } }
.quote-author { margin-top: 1.25rem; color: var(--brass-light); font-size: 0.875rem; font-weight: 600; }

/* =============================================
   BRAND STORY
   ============================================= */
.story-section { padding: 6rem 0; background: var(--ivory); overflow: hidden; }
@media (min-width: 768px) { .story-section { padding: 8rem 0; } }
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .story-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: stretch; }
}
.story-images { position: relative; order: 2; }
@media (min-width: 1024px) { .story-images { order: 1; } }
.story-main-img {
  position: relative;
  height: 26rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}
@media (min-width: 768px) { .story-main-img { height: 33rem; } }
.story-main-img img { width: 100%; height: 100%; object-fit: cover; }
.story-main-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,53,24,0.4), transparent);
}
.story-secondary-img {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  width: 11rem;
  height: 11rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 4px solid var(--ivory);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
@media (min-width: 768px) {
  .story-secondary-img { width: 13rem; height: 13rem; right: -2.5rem; }
}
.story-secondary-img img { width: 100%; height: 100%; object-fit: cover; }
.story-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--brass);
  color: var(--forest-deep);
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.story-badge-est { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.story-badge-year { font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 900; line-height: 1; }
.story-text { order: 1; }
@media (min-width: 1024px) { .story-text { order: 2; } }
.story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1.75rem;
}
.story-text h2 .mysore { color: var(--forest-green); font-style: italic; }
.story-text h2 .kochi { color: var(--brass); font-style: italic; }
.story-text p { color: var(--mid-gray); line-height: 1.8; margin-bottom: 1rem; }
.story-text .accent-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--forest-green);
  font-weight: 600;
  line-height: 1.45;
}

/* =============================================
   FERMENTATION
   ============================================= */
.ferm-section { padding: 6rem 0; background: var(--cream); overflow: hidden; }
@media (min-width: 768px) { .ferm-section { padding: 8rem 0; } }
.ferm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .ferm-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; } }
.ferm-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  margin-top: 1rem;
}
.ferm-subtitle { color: var(--mid-gray); line-height: 1.7; margin-bottom: 2.5rem; }
.ferm-step { display: flex; gap: 1.25rem; }
.ferm-step-connector { display: flex; flex-direction: column; align-items: center; }
.ferm-step-dot {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--forest-green);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--forest-green);
  transition: background 0.3s, color 0.3s;
}
.ferm-step:hover .ferm-step-dot { background: var(--forest-green); color: white; }
.ferm-step-line { width: 1px; flex: 1; background: rgba(26,92,42,0.15); margin: 0.25rem 0; min-height: 3rem; }
.ferm-step-content { padding-bottom: 2rem; }
.ferm-step-time { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); margin-bottom: 0.25rem; }
.ferm-step-title { font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.25rem; }
.ferm-step-desc { font-size: 0.875rem; color: var(--mid-gray); line-height: 1.6; }
.ferm-img-wrap { position: relative; border-radius: 1rem; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.2); }
.ferm-img-shadow { display: none; }
.ferm-img {
  position: relative;
  height: 28rem;
}
@media (min-width: 1024px) { .ferm-img { height: 32rem; } }
.ferm-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ferm-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,53,24,0.7) 0%, rgba(13,53,24,0.1) 50%, transparent 100%);
}
/* Badge — top-left corner inside the image */
.ferm-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--forest-dark);
  color: var(--cream);
  border-radius: 0.75rem;
  padding: 0.875rem 1.25rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.1);
}
.ferm-badge p:first-child { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 900; line-height: 1; color: var(--brass-light); }
.ferm-badge p:last-child { font-size: 0.7rem; font-weight: 600; opacity: 0.9; margin-top: 0.25rem; letter-spacing: 0.05em; text-transform: uppercase; }
/* Quote — bottom of image, no overlap with badge */
.ferm-img-quote {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.ferm-img-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--cream);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
}

/* =============================================
   GALLERY PREVIEW
   ============================================= */
.gallery-preview-section { padding: 6rem 0; background: var(--forest-dark); overflow: hidden; }
@media (min-width: 768px) { .gallery-preview-section { padding: 8rem 0; } }
.gallery-preview-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.gallery-preview-header .btn-outline-dark { align-self: flex-start; }
@media (min-width: 640px) {
  .gallery-preview-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.gallery-preview-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.1;
  color: var(--cream);
}
/* Gallery Carousel */
.gallery-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.gallery-carousel {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.gallery-carousel-item {
  flex: 0 0 calc(25% - 0.75rem);
  position: relative;
  overflow: hidden;
  border-radius: 0.875rem;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .gallery-carousel-item { flex: 0 0 calc(50% - 0.5rem); }
}
@media (max-width: 599px) {
  .gallery-carousel-item { flex: 0 0 80%; }
}
.gallery-carousel-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; display: block; }
.gallery-carousel-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,39,16,0.65) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item-label {
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 0.9375rem;
  font-weight: 600;
}
.gallery-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--cream);
  color: var(--forest-dark);
  border: none;
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: background 0.2s, transform 0.2s;
}
.gallery-carousel-btn:hover { background: var(--forest-green); color: var(--cream); transform: translateY(-50%) scale(1.08); }
.gallery-carousel-btn.prev { left: 0.5rem; }
.gallery-carousel-btn.next { right: 0.5rem; }

/* =============================================
   REVIEWS
   ============================================= */
.reviews-section { padding: 3rem 0 3.5rem; background: var(--ivory); overflow: hidden; }
@media (min-width: 768px) { .reviews-section { padding: 6rem 0; } }
.reviews-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-right: 3.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.reviews-scroll::-webkit-scrollbar { display: none; }
.review-card {
  flex-shrink: 0;
  width: 290px;
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) { .review-card { width: 340px; } }
.review-quote-icon { color: rgba(26,92,42,0.15); margin-bottom: 0.75rem; font-size: 2rem; line-height: 1; font-family: Georgia, serif; }
.review-stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
.review-stars span { color: var(--brass); font-size: 0.875rem; }
.review-text { font-size: 0.875rem; color: var(--mid-gray); line-height: 1.7; flex: 1; }
.review-footer { margin-top: 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.review-name { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--charcoal); }
.review-loc { font-size: 0.75rem; color: var(--mid-gray); margin-top: 0.125rem; }
.review-date { font-size: 0.75rem; color: rgba(107,107,107,0.5); }
.reviews-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 5rem;
  background: linear-gradient(to left, var(--ivory), transparent);
  pointer-events: none;
}
.reviews-scroll-wrap { position: relative; overflow: hidden; }

/* Desktop: show original arrows, hide mobile row */
.reviews-arrow-row { display: none; }
@media (max-width: 767px) {
  .reviews-arrow-desktop { display: none; }
  .reviews-arrow-row { display: none; }
}
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border-radius: 9999px;
  padding: 0.65rem 1.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--parchment);
  margin: 2rem auto 0;
  width: fit-content;
}
.rating-badge .review-stars { margin-bottom: 0; gap: 1px; }
.rating-badge .review-stars span { font-size: 0.8rem; }
.rating-score { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin-top: -6px; }
.rating-label { font-size: 0.8rem; color: var(--mid-gray); white-space: nowrap; }

/* =============================================
   LOCATIONS PREVIEW
   ============================================= */
.locations-preview-section { padding: 6rem 0; background: var(--cream); }
@media (min-width: 768px) { .locations-preview-section { padding: 8rem 0; } }
.locations-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
.loc-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--parchment);
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.5s;
}
.loc-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.loc-card-header {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.loc-card-header.green { background: var(--forest-green); }
.loc-card-header.brown { background: var(--warm-brown); }
.loc-header-bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  opacity: 0.08;
}
.loc-tag { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.25rem; }
.loc-name { font-family: 'Playfair Display', serif; font-size: 1.875rem; font-weight: 700; color: white; }
.loc-body { padding: 1.5rem; }
.loc-info-row { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.75rem; }
.loc-info-icon { flex-shrink: 0; margin-top: 0.125rem; color: var(--forest-green); }
.loc-info-text { font-size: 0.875rem; color: var(--charcoal); }
.loc-info-sub { font-size: 0.875rem; color: var(--mid-gray); }
.loc-actions { padding: 0 1.5rem 1.5rem; display: flex; gap: 0.75rem; }
.loc-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.625rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.loc-btn-call { background: rgba(26,92,42,0.08); color: var(--forest-green); }
.loc-btn-call:hover { background: var(--forest-green); color: var(--cream); }
.loc-btn-wa { background: rgba(37,211,102,0.1); color: #25D366; }
.loc-btn-wa:hover { background: #25D366; color: white; }
.loc-btn-map { padding: 0.625rem; background: rgba(26,26,26,0.05); color: var(--charcoal); border-radius: 0.75rem; border: none; flex: none; }
.loc-btn-map:hover { background: var(--charcoal); color: white; }

/* Full-width single location preview (home page) */
.loc-preview-full {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
}
@media (min-width: 768px) {
  .loc-preview-full { grid-template-columns: 1fr 1fr; }
}
.loc-preview-info {
  background: var(--forest-green);
  padding: 2.5rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  color: var(--cream);
}
.loc-preview-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,248,242,0.5);
  margin-bottom: 0.5rem;
}
.loc-preview-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.75rem;
}
.loc-preview-details { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 2rem; }
.loc-preview-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(250,248,242,0.8);
}
.loc-preview-row svg { flex-shrink: 0; margin-top: 0.1rem; color: var(--brass); }
.loc-preview-actions { display: flex; gap: 0.625rem; flex-wrap: wrap; margin-top: auto; }
.loc-prev-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.loc-prev-call { background: rgba(250,248,242,0.12); color: var(--cream); }
.loc-prev-call:hover { background: rgba(250,248,242,0.22); }
.loc-prev-wa { background: #25D366; color: white; }
.loc-prev-wa:hover { background: #1db954; }
.loc-prev-dir { background: rgba(250,248,242,0.08); color: rgba(250,248,242,0.7); border: 1px solid rgba(250,248,242,0.15); }
.loc-prev-dir:hover { background: rgba(250,248,242,0.15); color: var(--cream); }
.loc-preview-map { position: relative; min-height: 280px; background: var(--parchment); }
@media (min-width: 768px) { .loc-preview-map { min-height: 380px; } }
.loc-preview-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: block; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section { position: relative; background: var(--forest-green); overflow: hidden; }
.marquee-bar { padding: 1rem 0; overflow: hidden; }
.marquee-bar.top { border-bottom: 1px solid rgba(255,255,255,0.1); }
.marquee-bar.bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.marquee-track {
  display: flex;
  white-space: nowrap;
  gap: 2rem;
}
.marquee-track.animate-fwd { animation: marquee 30s linear infinite; }
.marquee-track.animate-rev { animation: marquee-reverse 30s linear infinite; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,248,242,0.4);
}
.marquee-item.dim { color: rgba(250,248,242,0.25); }
.marquee-item .dot { color: var(--brass); font-size: 1rem; }
.marquee-item.dim .dot { color: rgba(196,150,42,0.4); }
.cta-body { padding: 6rem 0; text-align: center; }
.cta-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--brass-light);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}
.cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.75rem;
}
.cta-sub {
  color: rgba(250,248,242,0.55);
  max-width: 28rem;
  margin: 0 auto 2.75rem;
  line-height: 1.7;
}
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--forest-deep);
  color: rgba(250,248,242,0.7);
  font-family: 'DM Sans', sans-serif;
}
/* Quote strip */
.footer-quote-strip {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1.75rem 0;
}
.footer-quote-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .footer-quote-inner { flex-direction: row; padding: 0 3rem; }
}
.footer-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--brass-light);
  font-size: 1.6rem;
  line-height: 1.5;
}
.footer-social { display: flex; gap: 0.875rem; }
.footer-social a {
  padding: 0.625rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(250,248,242,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.footer-social a:hover { color: var(--cream); border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.07); }
.footer-social svg { width: 18px; height: 18px; }
/* Footer grid */
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
/* On mobile: brand full-width, then Explore+Menu side by side, then Locations */
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 50px; padding-bottom: 20px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; margin-bottom: 30px; }
  .footer-grid > div:last-child  { grid-column: 1 / -1; }
  .footer-quote { text-align: center; }
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); padding: 4.5rem 3rem; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3.5rem; }
}
.footer-brand-logo {
  height: 8.5rem;
  width: auto;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}
.footer-brand-desc {
  font-size: 0.9rem;
  color: rgba(250,248,242,0.5);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-brand-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brass-light);
  transition: color 0.2s;
}
.footer-brand-link:hover { color: var(--brass); }
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,248,242,0.35);
  margin-bottom: 1.5rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a { font-size: 0.95rem; color: rgba(250,248,242,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-loc-name { font-size: 1rem; font-weight: 600; color: var(--cream); margin-bottom: 0.625rem; }
.footer-loc-info { display: flex; gap: 0.5rem; align-items: flex-start; margin-bottom: 0.5rem; }
.footer-loc-info svg { flex-shrink: 0; width: 13px; height: 13px; margin-top: 3px; color: rgba(196,150,42,0.7); }
.footer-loc-info span, .footer-loc-info a { font-size: 0.875rem; color: rgba(250,248,242,0.5); line-height: 1.5; }
.footer-loc-info a:hover { color: var(--cream); }
.footer-loc-block { margin-bottom: 1.5rem; }
/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
}
@media (min-width: 640px) {
  .footer-bottom-inner { flex-direction: row; padding: 0 3rem; }
}
.footer-copy { font-size: 0.8rem; color: rgba(250,248,242,0.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: rgba(250,248,242,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(250,248,242,0.6); }
.footer-credit {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(250,248,242,0.25);
  margin: 0.75rem 0 0;
  padding: 0 2rem;
}
.footer-credit a { color: rgba(250,248,242,0.4); transition: color 0.2s; }
.footer-credit a:hover { color: rgba(250,248,242,0.65); }

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-section {
  padding: 4rem 0 6rem;
  background: var(--cream);
}
.legal-content {
  max-width: 42rem;
  margin: 0 auto;
}
.legal-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.legal-updated {
  font-size: 0.875rem;
  color: var(--mid-gray);
  margin-bottom: 2.5rem;
}
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--charcoal);
  margin: 2rem 0 0.75rem;
}
.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.legal-content a {
  color: var(--forest-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover { color: var(--forest-dark); }

/* =============================================
   INNER PAGE HERO
   ============================================= */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding-top: 10rem;
  padding-bottom: 5.5rem;
  overflow: visible;
  background: var(--forest-dark);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(10, 39, 16, 0.88) 0%,
    rgba(10, 39, 16, 0.65) 50%,
    rgba(10, 39, 16, 0.3) 100%
  );
}
.page-hero .container-xl {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  line-height: 1.1;
  color: var(--cream);
}
.page-hero h1 .text-gradient-gold {
  padding-left: 5px;
}
.page-hero p { color: rgba(250,248,242,0.7); font-size: 1.125rem; line-height: 1.7; margin-top: 1.5rem; max-width: 32rem; }

/* =============================================
   MENU PAGE
   ============================================= */
.menu-tabs-bar {
  position: sticky;
  top: 72px;
  z-index: 30;
  background: var(--cream);
  border-bottom: 1px solid var(--parchment);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.menu-tabs {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex-shrink: 0;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--mid-gray);
}
.menu-tab:hover { color: var(--charcoal); background: var(--parchment); }
.menu-tab.active { background: var(--forest-green); color: var(--cream); }
.menu-section { padding: 4rem 0 6rem; background: var(--cream); }
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .menu-grid { grid-template-columns: repeat(4, 1fr); } }
.menu-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.menu-card-img { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.menu-card:hover .menu-card-img img { transform: scale(1.1); }
.menu-card-img.logo-placeholder {
  background-color: #F5C842;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-card-img.logo-placeholder img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  object-position: center;
}
.menu-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.85rem;
  background: var(--forest-dark);
  color: var(--cream);
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.menu-card-body { padding: 1rem; }
.menu-card-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.375rem; }
.menu-card-desc { font-size: 0.75rem; color: var(--mid-gray); line-height: 1.5; margin-bottom: 0.75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; }
.menu-card-price { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--forest-green); }
.menu-disclaimer { background: var(--ivory); padding: 1.5rem 0; text-align: center; }
.menu-disclaimer p { font-size: 0.75rem; color: var(--mid-gray); max-width: 40rem; margin: 0 auto; padding: 0 1.5rem; }
.menu-items-hidden { display: none; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-story { padding: 6rem 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }
.about-img-wrap { position: relative; height: 31rem; border-radius: 1rem; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.2); }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* YouTube video embed */
.video-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  aspect-ratio: 16 / 9;
  background: #000;
}
.about-story-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream);
  background: var(--forest-green);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  transition: background 0.2s, transform 0.15s;
}
.about-story-link:hover {
  background: var(--forest-light);
  transform: translateY(-1px);
}
.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 2rem;
  border: 1px solid var(--parchment);
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--parchment);
}
.about-fact {
  background: var(--cream);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.about-fact-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--forest-green);
  line-height: 1;
}
.about-fact-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: var(--mid-gray);
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .about-fact { padding: 1.25rem 1.5rem; }
  .about-fact-num { font-size: 2rem; }
  .about-fact-label { font-size: 0.75rem; }
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.story-video-wrap {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 32px 72px rgba(0,0,0,0.22);
  aspect-ratio: 16 / 9;
  background: #000;
  order: 2;
}
@media (min-width: 1024px) {
  .story-video-wrap {
    order: 1;
    aspect-ratio: unset;
    min-height: 380px;
    height: 100%;
  }
}
.story-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.home-story-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Shared SVP (custom video player) styles for home page */
.svp-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; transition: opacity 0.25s; }
.svp-overlay.state-idle { background: rgba(0,0,0,0.25); opacity: 1; pointer-events: auto; }
.svp-overlay.state-idle .svp-icon-pause { display: none; }
.svp-overlay.state-idle .svp-icon-play  { display: block; }
.svp-overlay.state-playing { opacity: 0; pointer-events: auto; }
.svp-overlay.state-playing .svp-icon-pause { display: none; }
.svp-overlay.state-playing .svp-icon-play  { display: none; }
@media (hover: hover) {
  .svp-overlay.state-playing { pointer-events: auto; background: transparent; }
  .svp-overlay.state-playing:hover { opacity: 1; background: rgba(0,0,0,0.3); }
  .svp-overlay.state-playing .svp-icon-pause { display: block; }
  .svp-overlay.state-playing .svp-icon-play  { display: none; }
}
.svp-btn { width: 3.4rem; height: 3.4rem; border-radius: 50%; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 2px solid rgba(255,255,255,0.4); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.svp-btn:hover { background: rgba(255,255,255,0.25); }
.svp-icon-play, .svp-icon-pause { flex-shrink: 0; }
/* Full story button shown when playing */
.home-video-fullbtn {
  display: none;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  align-items: center;
  gap: 0.4rem;
  background: var(--forest-green);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 2rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  z-index: 10;
  transition: background 0.2s;
}
.home-video-fullbtn:hover { background: var(--forest-light); }

/* Tag label on video */
.home-video-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.85);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  pointer-events: none;
  letter-spacing: 0.02em;
}
.about-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.1; color: var(--charcoal); margin-bottom: 1.5rem; }
.about-text p { color: var(--mid-gray); line-height: 1.8; margin-bottom: 1.25rem; }
.about-text em { font-style: italic; }
.about-text .accent { position: relative; padding-left: 1.5rem; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.3rem; color: var(--forest-green); font-weight: 600; line-height: 1.45; }
.values-section { padding: 6rem 0; background: var(--ivory); }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card { background: white; border-radius: 1rem; padding: 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06); text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.value-icon { width: 2.5rem; height: 2.5rem; margin: 0 auto 1rem; color: var(--brass-light); }
.value-icon svg { width: 100%; height: 100%; }
.value-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.5rem; }
.value-desc { font-size: 0.875rem; color: var(--mid-gray); line-height: 1.6; }
.timeline-section { padding: 6rem 0; background: var(--forest-green); }
.timeline { max-width: 36rem; margin: 0 auto; }
.timeline-item { display: flex; gap: 1.5rem; }
.timeline-connector { display: flex; flex-direction: column; align-items: center; }
.timeline-dot {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--forest-deep);
}
.timeline-line { width: 1px; flex: 1; background: rgba(255,255,255,0.15); margin: 0.5rem 0; min-height: 2.5rem; }
.timeline-content { padding-bottom: 1.75rem; padding-top: 0.625rem; }
.timeline-content h3 { font-size: 1rem; font-weight: 600; color: var(--cream); margin-bottom: 0.35rem; }
.timeline-content p { font-size: 0.875rem; color: rgba(250,248,242,0.75); line-height: 1.6; }
.about-cta { padding: 6rem 0; background: var(--cream); text-align: center; }
.about-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.5rem); color: var(--charcoal); margin-bottom: 1.25rem; }
.about-cta p { color: var(--mid-gray); max-width: 24rem; margin: 0 auto 2.25rem; }
.about-cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-filter-bar { background: var(--cream); border-bottom: 1px solid var(--parchment); }
.gallery-filter-inner { max-width: 1280px; margin: 0 auto; padding: 1rem 1.5rem; display: flex; gap: 0.5rem; overflow-x: auto; scrollbar-width: none; }
.gallery-filter-inner::-webkit-scrollbar { display: none; }
.gallery-filter-btn { flex-shrink: 0; padding: 0.5rem 1.25rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600; transition: all 0.25s; border: none; cursor: pointer; background: transparent; color: var(--mid-gray); }
.gallery-filter-btn:hover { color: var(--charcoal); background: var(--parchment); }
.gallery-filter-btn.active { background: var(--forest-green); color: var(--cream); }
.gallery-masonry-section { padding: 4rem 0 6rem; background: var(--cream); }
.gallery-masonry { columns: 1; gap: 1rem; }
@media (min-width: 640px) { .gallery-masonry { columns: 2; } }
@media (min-width: 1024px) { .gallery-masonry { columns: 3; } }
.gallery-masonry-item {
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
  margin-bottom: 1rem;
}
.gallery-masonry-item.tall { height: 300px; }
.gallery-masonry-item.square { height: 260px; }
.gallery-masonry-item:not(.tall):not(.square) { height: 210px; }
.gallery-masonry-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.gallery-masonry-item:hover img { transform: scale(1.05); }
.gallery-masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,39,16,0);
  display: flex;
  align-items: flex-end;
  transition: background 0.3s;
}
.gallery-masonry-item:hover .gallery-masonry-overlay { background: rgba(10,39,16,0.45); }
.gallery-masonry-caption {
  padding: 1rem;
  transform: translateY(0.75rem);
  opacity: 0;
  transition: all 0.3s;
}
.gallery-masonry-item:hover .gallery-masonry-caption { transform: translateY(0); opacity: 1; }
.gallery-masonry-caption span { color: var(--cream); font-family: 'Playfair Display', serif; font-size: 0.875rem; font-weight: 600; }
/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(250,248,242,0.6);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0.5rem;
  line-height: 1;
}
.lightbox-close:hover { color: var(--cream); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(250,248,242,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(250,248,242,0.2);
  color: var(--cream);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(250,248,242,0.3); transform: translateY(-50%) scale(1.1); }
.lightbox-img-wrap {
  position: relative;
  max-width: 64rem;
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
}
.lightbox-img-wrap img { width: 100%; height: auto; max-height: 85vh; object-fit: contain; display: block; }

/* =============================================
   LOCATIONS PAGE
   ============================================= */
.loc-card-full {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  border: 1px solid var(--parchment);
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .loc-card-full { grid-template-columns: repeat(2, 1fr); } }
/* Permanently closed location card */
.loc-card-closed { opacity: 0.6; filter: grayscale(0.5); position: relative; }
.loc-card-closed:hover { opacity: 0.7; }
.loc-closed-banner {
  position: absolute; top: 0; left: 0; right: 0; z-index: 5;
  background: #c0392b; color: white;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.45rem 1rem; display: flex; align-items: center; gap: 0.4rem;
}
.loc-closed-label {
  display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; background: #c0392b; color: white;
  padding: 0.15rem 0.6rem; border-radius: 9999px; vertical-align: middle; margin-left: 0.5rem;
}
.loc-closed-note {
  font-size: 0.85rem; color: #c0392b; margin-bottom: 1.25rem; font-style: italic;
}
.loc-map-wrap { position: relative; height: 18rem; background: var(--parchment); }
@media (min-width: 1024px) { .loc-map-wrap { height: auto; min-height: 20rem; } }
.loc-map-wrap iframe { width: 100%; height: 100%; border: none; }
.loc-details { background: white; padding: 2rem; }
@media (min-width: 1024px) { .loc-details { padding: 2.5rem; } }
.loc-tag-pill {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.loc-tag-pill.green { background: rgba(26,92,42,0.1); color: var(--forest-green); }
.loc-tag-pill.brown { background: rgba(93,58,26,0.1); color: var(--warm-brown); }
.loc-details h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--charcoal); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .loc-details h2 { font-size: 2.5rem; } }
.loc-detail-row { display: flex; gap: 0.75rem; margin-bottom: 1rem; align-items: flex-start; }
.loc-detail-icon { flex-shrink: 0; width: 17px; height: 17px; color: var(--forest-green); margin-top: 2px; }
.loc-detail-primary { font-size: 0.875rem; font-weight: 500; color: var(--charcoal); }
.loc-detail-secondary { font-size: 0.75rem; color: var(--mid-gray); margin-top: 0.125rem; }
.timing-rows { display: flex; flex-direction: column; gap: 0.5rem; }
.timing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(26,92,42,0.1);
  font-size: 0.8rem;
}
.timing-row:last-child { border-bottom: none; }
.timing-day {
  color: var(--mid-gray);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.timing-hours { color: var(--charcoal); font-weight: 500; text-align: right; }
.timing-closed { color: var(--mid-gray); font-weight: 400; font-style: italic; text-align: right; }
.loc-features { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.75rem 0; }
.loc-feature-tag { padding: 0.25rem 0.75rem; border-radius: 9999px; background: var(--ivory); color: var(--mid-gray); font-size: 0.75rem; font-weight: 500; }
.loc-action-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.loc-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.loc-action-btn.call { background: var(--forest-green); color: var(--cream); }
.loc-action-btn.call:hover { background: var(--forest-dark); }
.loc-action-btn.wa { background: #25D366; color: white; }
.loc-action-btn.wa:hover { background: #1ebe57; }
.loc-action-btn.dir { background: transparent; color: var(--charcoal); border: 1px solid var(--parchment); }
.loc-action-btn.dir:hover { background: var(--parchment); }
.delivery-banner { padding: 3.5rem 0; background: var(--forest-green); text-align: center; }
.delivery-banner h2 { font-family: 'Playfair Display', serif; font-size: 1.875rem; color: var(--cream); margin-bottom: 0.75rem; }
@media (min-width: 768px) { .delivery-banner h2 { font-size: 2.25rem; } }
.delivery-banner p { font-size: 0.875rem; color: rgba(250,248,242,0.55); max-width: 28rem; margin: 0 auto 1.5rem; }
.delivery-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-swiggy { padding: 0.625rem 1.5rem; background: #FC8019; color: white; border-radius: 9999px; font-size: 0.875rem; font-weight: 700; transition: background 0.2s; }
.btn-swiggy:hover { background: #E67210; }
.btn-zomato { padding: 0.625rem 1.5rem; background: #E23744; color: white; border-radius: 9999px; font-size: 0.875rem; font-weight: 700; transition: background 0.2s; }
.btn-zomato:hover { background: #C72D3A; }
.locs-space { padding: 5rem 0; background: var(--cream); display: flex; flex-direction: column; gap: 3.5rem; }

/* ── Small mobile fixes (≤400px) — locations page ── */
@media (max-width: 400px) {
  .locs-space { padding: 2.5rem 0; gap: 2rem; }

  /* Card details panel */
  .loc-details { padding: 1.25rem; }
  .loc-details h2 { font-size: 1.5rem; margin-bottom: 1rem; }
  .loc-closed-note { font-size: 0.78rem; }

  /* Timing rows: tighten on small screens */
  .timing-row { padding: 0.35rem 0; }
  .timing-hours,
  .timing-closed { font-size: 0.72rem; }

  /* Action buttons: full width */
  .loc-action-btns { flex-direction: column; }
  .loc-action-btn { width: 100%; justify-content: center; }

  /* Delivery banner */
  .delivery-banner { padding: 2.5rem 1rem; }
  .delivery-banner h2 { font-size: 1.4rem; }
  .delivery-btns { flex-direction: column; align-items: stretch; padding: 0 1.5rem; }
  .btn-swiggy,
  .btn-zomato { text-align: center; width: 100%; }

  /* Closed card banner text */
  .loc-closed-banner { font-size: 0.65rem; }
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { padding: 5rem 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-grid-single {
  grid-template-columns: 1fr;
  max-width: 36rem;
  margin: 0 auto;
}
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.875rem; color: var(--charcoal); margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.contact-icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(26,92,42,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.contact-item:hover .contact-icon-wrap { background: var(--forest-green); }
.contact-icon-wrap svg { color: var(--forest-green); transition: color 0.3s; }
.contact-item:hover .contact-icon-wrap svg { color: white; }
.contact-item-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 0.25rem; }
.contact-item-text a { display: block; font-size: 0.875rem; font-weight: 500; color: var(--charcoal); transition: color 0.2s; }
.contact-item-text a:hover { color: var(--forest-green); }
.contact-item-text p { font-size: 0.875rem; font-weight: 500; color: var(--charcoal); }
.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: #25D366;
  color: white;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 0.875rem;
  margin: 2.25rem 0 1.75rem;
  transition: background 0.2s;
  text-decoration: none;
}
.wa-btn:hover { background: #1ebe57; }
.contact-follow-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 1rem; }
.contact-socials { display: flex; gap: 0.75rem; }
.contact-social-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
  transition: all 0.25s;
}
.contact-social-btn:hover { color: var(--forest-green); border-color: var(--forest-green); }
.contact-form-wrap h2 { font-family: 'Playfair Display', serif; font-size: 1.875rem; color: var(--charcoal); margin-bottom: 1.75rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group label { display: block; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--mid-gray); margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--parchment);
  background: white;
  color: var(--charcoal);
  font-size: 0.875rem;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--forest-green); }
.form-group textarea { resize: none; }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
  background: rgba(26,92,42,0.05);
  border-radius: 1rem;
  border: 1px solid rgba(26,92,42,0.15);
  min-height: 300px;
}
.form-success.visible { display: flex; }
.form-success .success-icon { font-size: 3rem; margin-bottom: 1.25rem; }
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--charcoal); margin-bottom: 0.75rem; }
.form-success p { font-size: 0.875rem; color: var(--mid-gray); }

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.justify-center { justify-content: center; }
.hidden { display: none; }

/* =============================================
   ORDER MODAL
   ============================================= */
.order-modal-backdrop {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,39,16,0.55);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.order-modal-backdrop.open { opacity: 1; pointer-events: all; }

.order-modal {
  background: var(--cream);
  border-radius: 1.25rem;
  width: 100%; max-width: 420px;
  padding: 2rem;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}
.order-modal-backdrop.open .order-modal { transform: translateY(0) scale(1); }

.order-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.5rem; line-height: 1;
  color: var(--forest-dark); opacity: 0.5;
  transition: opacity 0.2s;
  width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center;
}
.order-modal-close:hover { opacity: 1; }

.order-modal-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--forest-green);
  margin-bottom: 0.4rem;
}
.order-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--forest-dark); margin: 0 0 0.25rem;
}
.order-modal-price {
  font-size: 0.95rem; color: var(--forest-green); font-weight: 600;
  margin: 0 0 1.5rem;
}

.order-modal-qty-label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--forest-dark); margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}
.order-modal-qty-wrap {
  display: flex; align-items: center; gap: 0;
  border: 2px solid var(--forest-green);
  border-radius: 0.75rem; overflow: hidden;
  width: fit-content; margin-bottom: 1rem;
}
.order-qty-btn {
  background: var(--forest-green); color: var(--cream);
  border: none; cursor: pointer;
  width: 2.75rem; height: 2.75rem;
  font-size: 1.25rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.order-qty-btn:hover { background: var(--forest-dark); }
.order-qty-input {
  width: 3.5rem; text-align: center;
  border: none; background: var(--cream);
  font-size: 1.1rem; font-weight: 700;
  color: var(--forest-dark);
  -moz-appearance: textfield;
}
.order-qty-input::-webkit-outer-spin-button,
.order-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.order-modal-total {
  font-size: 0.9rem; color: #555; margin: 0 0 1.5rem;
}
.order-modal-total span { font-weight: 700; color: var(--forest-dark); }

.order-modal-submit {
  width: 100%;
  background: #25D366; color: #fff;
  border: none; border-radius: 0.75rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  transition: background 0.2s, transform 0.15s;
}
.order-modal-submit:hover { background: #1ebe5d; transform: translateY(-1px); }
.order-modal-submit:active { transform: translateY(0); }

/* =============================================
   MOBILE SECTION PADDING OVERRIDE
   ============================================= */
@media (max-width: 767px) {
  .dishes-section,
  .why-section,
  .story-section,
  .ferm-section,
  .gallery-preview-section,
  .reviews-section,
  .locations-preview-section,
  .cta-body,
  .about-story,
  .values-section,
  .timeline-section,
  .about-cta,
  .gallery-masonry-section,
  .contact-section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}

/* =============================================
   PAGE LOADER
   ============================================= */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--forest-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.page-loader-logo {
  height: 9rem;
  width: auto;
  transform-origin: center;
  animation: loader-scale 2s ease-out forwards;
}
@keyframes loader-scale {
  from { transform: scale(0.667); }
  to   { transform: scale(1); }
}
.about-text .accent::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--forest-green);
  border-radius: 2px;
}
