/* ==========================================================================
   GRAAM BANGLA — style.css
   Design: Warm Village Hearth — Artisan Editorial
   Palette: Bengal Green / Bengali Red / Soft Gold / Warm White / Cream
   Fonts: Playfair Display / Cormorant Garamond / Manrope
   ========================================================================== */

/* ── 1. CSS CUSTOM PROPERTIES (Design Tokens) ─────────────────────────── */
:root {
  /* Brand Colours */
  --bengal-green:   #0E5A2B;
  --bengal-green-dk:#0a4220;
  --bengal-green-lt:#e8f2ec;
  --bengali-red:    #E11B22;
  --bengali-red-dk: #b81419;
  --soft-gold:      #C79A52;
  --soft-gold-lt:   #f5e9d4;

  /* Neutrals */
  --warm-white:     #F8F5F0;
  --cream:          #EFE7DA;
  --charcoal:       #1A1A1A;
  --text-muted:     #5a5248;
  --text-light:     #8a7e74;
  --border-light:   #ddd4c4;

  /* Typography */
  --font-display:   'Playfair Display', Georgia, serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-body:      'Manrope', system-ui, sans-serif;

  /* Spacing */
  --section-py:     5rem;
  --section-py-sm:  3rem;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.14);

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --dur-fast:    160ms;
  --dur-mid:     280ms;
  --dur-slow:    500ms;

  /* Header height */
  --header-h: 72px;
  --topbar-h: 40px;
  --total-header-h: calc(var(--topbar-h) + var(--header-h));
}

/* ── 2. RESET & BASE ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── 3. TYPOGRAPHY ────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--bengal-green);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.font-editorial {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft-gold);
}

.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--soft-gold);
  border-radius: 1px;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

/* ── 4. LAYOUT UTILITIES ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

.section-py     { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.section-py-sm  { padding-top: var(--section-py-sm); padding-bottom: var(--section-py-sm); }

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── 5. BUTTONS ──────────────────────────────────────────────────────── */
.btn-red, .btn-green, .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}
.btn-red:active, .btn-green:active, .btn-white:active {
  transform: scale(0.97);
}

.btn-red {
  background: var(--bengali-red);
  color: #fff;
}
.btn-red:hover {
  background: var(--bengali-red-dk);
  box-shadow: 0 4px 16px rgba(225,27,34,0.35);
}

.btn-green {
  background: transparent;
  color: var(--bengal-green);
  border: 2px solid var(--bengal-green);
}
.btn-green:hover {
  background: var(--bengal-green);
  color: #fff;
}

.btn-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ── 6. TOP BAR ──────────────────────────────────────────────────────── */
.site-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar {
  background: var(--bengal-green);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.top-bar-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar-address, .top-bar-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
}

.top-bar-phone {
  color: #fff;
  font-weight: 600;
  transition: color var(--dur-fast) var(--ease-out);
}
.top-bar-phone:hover { color: var(--soft-gold); }

@media (max-width: 480px) {
  .top-bar-address { display: none; }
}

/* ── 7. MAIN HEADER / NAVBAR ─────────────────────────────────────────── */
.main-header {
  height: var(--header-h);
  background: rgba(14, 90, 43, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--dur-slow) var(--ease-out),
              box-shadow var(--dur-slow) var(--ease-out);
}

.main-header.scrolled {
  background: var(--warm-white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  flex-shrink: 0;
  height: 48px;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--dur-mid) var(--ease-out);
}
.nav-logo .logo-white   { display: block; }
.nav-logo .logo-colour  { display: none; }

.main-header.scrolled .logo-white  { display: none; }
.main-header.scrolled .logo-colour { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--soft-gold);
  border-radius: 1px;
  transition: transform var(--dur-mid) var(--ease-out);
}
.nav-link:hover::after,
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-link:hover { color: #fff; }
.nav-link.active { color: #fff; }

.main-header.scrolled .nav-link { color: var(--charcoal); }
.main-header.scrolled .nav-link:hover { color: var(--bengal-green); }
.main-header.scrolled .nav-link.active { color: var(--bengal-green); }

.nav-cta {
  flex-shrink: 0;
  font-size: 0.75rem;
  padding: 0.6rem 1.25rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform var(--dur-mid) var(--ease-out),
              opacity var(--dur-mid) var(--ease-out);
}
.main-header.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1023px) {
  .hamburger { display: flex; }
  .nav-cta   { display: none; }
  .nav-links {
    position: fixed;
    top: var(--total-header-h);
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform var(--dur-slow) var(--ease-out),
                opacity var(--dur-slow) var(--ease-out);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--cream);
    flex-direction: column;
    padding: 0 1.5rem 2rem 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 99;
    border-top: 1px solid rgba(0,0,0,0.05);
  }
  .nav-link {
    color: var(--charcoal);
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0;
  }
  .nav-link:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
  }
  .nav-link::after { display: none; }
  .nav-link.active {
    color: var(--bengali-red);
    background: transparent;
  }

  /* Mobile Nav Additions */
  .mobile-nav-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .mobile-nav-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 0.5rem;
  }
}

/* ── 8. HERO CAROUSEL ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  margin-top: calc(-1 * var(--total-header-h));
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenBurns 12s ease-in-out infinite alternate;
}
.hero-slide:not(.active) img { animation-play-state: paused; }

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(14, 90, 43, 0.75) 0%,
    rgba(14, 90, 43, 0.4) 50%,
    rgba(0,0,0,0.15) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-top: var(--total-header-h);
  opacity: 0;
  transition: opacity 0.8s var(--ease-out) 0.3s;
  pointer-events: none;
}
.hero-content.active {
  opacity: 1;
  pointer-events: all;
}

.hero-text {
  max-width: 640px;
  color: #fff;
}
.hero-text h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-text p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 520px;
}

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

/* Hero controls */
.hero-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.hero-dot.active {
  background: var(--soft-gold);
  transform: scale(1.3);
}

.hero-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) var(--ease-out);
}
.hero-arrow:hover { background: rgba(255,255,255,0.3); }

/* ── 9. MARQUEE TICKER ───────────────────────────────────────────────── */
.ticker-strip {
  background: var(--bengali-red);
  overflow: hidden;
  padding: 0.75rem 0;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 2.5rem;
}
.ticker-track span::before {
  content: '◆';
  margin-right: 2.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.5rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 10. PAGE HERO (sub-pages) ───────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
  margin-top: calc(-1 * var(--total-header-h));
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14, 90, 43, 0.95) 40%, rgba(14, 90, 43, 0.1));
}

.page-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 3rem;
  padding-top: calc(var(--total-header-h) + 1rem);
  color: #fff;
}
.page-hero-content .section-label { color: var(--soft-gold); margin-bottom: 0.5rem; }
.page-hero-content h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); }

/* ── 11. WELCOME / ABOUT SECTIONS ───────────────────────────────────── */
.welcome-image-wrap {
  position: relative;
}

.aspect-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.aspect-box img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1.1;
  object-fit: cover;
  object-position: center;
}

.badge-circle {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--bengali-red);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
.badge-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ── 12. PILLAR CARDS ────────────────────────────────────────────────── */
.pillar-card {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow var(--dur-mid) var(--ease-out),
              transform var(--dur-mid) var(--ease-out);
}
.pillar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  /* Removed background and border constraints to let the SVG stand out */
}

.pillar-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--bengal-green);
}
.pillar-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── 13. DISH CARDS ──────────────────────────────────────────────────── */
.dish-card {
  position: relative;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-mid) var(--ease-out),
              transform var(--dur-mid) var(--ease-out);
}
.dish-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.dish-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.dish-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.dish-card:hover .dish-card-img img { transform: scale(1.05); }

.dish-card-body {
  padding: 1.25rem;
}
.dish-card-body h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--bengal-green);
}
.dish-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.dish-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bengali-red) !important;
}

/* ── 14. CTA BAND ────────────────────────────────────────────────────── */
.cta-band {
  background: var(--bengal-green);
  padding: 5rem 0;
  text-align: center;
  color: #fff;
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.cta-band p {
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* ── 15. GALLERY TEASER ──────────────────────────────────────────────── */
.gallery-teaser {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .gallery-teaser { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .gallery-teaser { grid-template-columns: repeat(6, 1fr); }
}

.gallery-teaser-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
}
.gallery-teaser-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.gallery-teaser-item:hover img { transform: scale(1.08); }

/* ── 16. REVIEW CARDS ────────────────────────────────────────────────── */
.review-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-light);
}

.review-stars {
  color: var(--soft-gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.review-text {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.review-author {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--bengal-green);
}
.review-source {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ── 17. ROYAL SECTION ───────────────────────────────────────────────── */
.royal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.royal-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.royal-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.royal-img:hover img { transform: scale(1.04); }

/* ── 18. ABOUT PAGE ──────────────────────────────────────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-story-grid { grid-template-columns: 1fr 1fr; }
}

.about-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.philosophy-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.philosophy-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
}
.philosophy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23da291c" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

/* ── 19. OUR FOOD PAGE ───────────────────────────────────────────────── */
.food-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}
.food-feature:last-child { margin-bottom: 0; }

@media (min-width: 768px) {
  .food-feature { grid-template-columns: 1fr 1fr; }
  .food-feature.reverse > *:first-child { order: 2; }
  .food-feature.reverse > *:last-child  { order: 1; }
}

.food-feature-img {
  position: relative;
  border-radius: 0;
  overflow: visible;
}
.food-feature-img::after {
  content: '';
  position: absolute;
  top: 2rem;
  bottom: -2rem;
  left: 2rem;
  right: -2rem;
  background-color: var(--cream);
  z-index: -1;
}
.food-feature-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  position: relative;
  z-index: 1;
}
.food-feature-img:hover img { transform: scale(1.02); }

/* ── 20. MENU PAGE ───────────────────────────────────────────────────── */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 0;
}

.menu-tab {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  border: 2px solid transparent;
  border-bottom: none;
  transition: color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
  position: relative;
  bottom: -2px;
}
.menu-tab:hover { color: var(--bengali-red); }
.menu-tab.active {
  color: #fff;
  background: var(--bengali-red);
  border-color: var(--bengali-red);
  border-bottom-color: var(--bengali-red);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0;
}
@media (min-width: 768px) {
  .menu-grid { 
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
  }
}

/* ===== MENU ITEMS ===== */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.menu-item:last-child {
  border-bottom: none;
}
.menu-item-left {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--charcoal);
  margin: 0;
}
.menu-item-bengali {
  font-family: var(--font-bengali);
  font-size: 1rem;
  color: var(--soft-gold);
  margin: 0;
}
.menu-item-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  background-color: #EFEBE0;
  padding: 2px 6px;
  border-radius: 2px;
}
.menu-item-badge-new {
  font-size: 0.75rem;
  color: white;
  background-color: var(--bengali-red);
  padding: 2px 6px;
  border-radius: 2px;
  font-weight: bold;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--bengali-red);
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
}

/* ── 21. GALLERY PAGE ────────────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gallery-filter {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--border-light);
  border-radius: 100px;
  transition: all var(--dur-fast) var(--ease-out);
}
.gallery-filter:hover {
  border-color: var(--bengal-green);
  color: var(--bengal-green);
}
.gallery-filter.active {
  background: var(--bengal-green);
  border-color: var(--bengal-green);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,90,43,0);
  transition: background var(--dur-mid) var(--ease-out);
}
.gallery-item:hover::after { background: rgba(14,90,43,0.2); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid) var(--ease-out);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background var(--dur-fast) var(--ease-out);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background var(--dur-fast) var(--ease-out);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ── 22. FAQ PAGE ────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-item:first-child { border-top: 1px solid var(--border-light); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color var(--dur-fast) var(--ease-out);
}
.faq-question:hover { color: var(--bengal-green); }
.faq-item.open .faq-question { color: var(--bengal-green); }

.faq-icon {
  flex-shrink: 0;
  color: var(--soft-gold);
  transition: transform var(--dur-mid) var(--ease-out);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-answer a {
  color: var(--bengal-green);
  text-decoration: underline;
}

/* ── 23. CONTACT PAGE ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 991px) {
  .contact-grid {
    display: flex;
    flex-direction: column;
  }
  .contact-form-wrap {
    order: -1;
    margin-bottom: 2rem;
  }
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.info-card-icon {
  width: 44px;
  height: 44px;
  color: var(--bengal-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}
.info-card-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.5;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group:last-child { margin-bottom: 0; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.required { color: var(--bengali-red); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  color: var(--charcoal);
  font-size: 0.9rem;
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bengal-green);
  box-shadow: 0 0 0 3px rgba(14,90,43,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bengal-green-lt);
  border: 1px solid var(--bengal-green);
  border-radius: var(--radius-sm);
  color: var(--bengal-green);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.form-error {
  padding: 0.75rem 1.25rem;
  background: rgba(225,27,34,0.08);
  border: 1px solid var(--bengali-red);
  border-radius: var(--radius-sm);
  color: var(--bengali-red);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

/* ── 24. FOOTER ──────────────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
}

.footer-inner {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 1.25rem;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.social-link:hover {
  background: var(--soft-gold);
  color: var(--charcoal);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-links a:hover { color: #fff; }

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-address p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.footer-address a {
  color: rgba(255,255,255,0.65);
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-address a:hover { color: var(--soft-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  color: var(--soft-gold);
  transition: opacity var(--dur-fast) var(--ease-out);
}
.footer-bottom a:hover { opacity: 0.8; }

/* ── 25. 404 PAGE ────────────────────────────────────────────────────── */
.not-found-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}
.not-found-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  color: var(--bengal-green);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ── 26. SCROLL REVEAL ANIMATIONS ────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--ease-out),
                transform 0.65s var(--ease-out);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.65s var(--ease-out),
                transform 0.65s var(--ease-out);
  }
  .reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.65s var(--ease-out),
                transform 0.65s var(--ease-out);
  }
  .reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── 27. RESPONSIVE HELPERS ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero-text h1 { font-size: 2rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .page-hero { height: 280px; }
  .aspect-box img { height: 360px; }
  .badge-circle { width: 80px; height: 80px; right: -0.75rem; bottom: -0.75rem; }
  .badge-num { font-size: 1.2rem; }
  .royal-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 1.5rem; }
  .menu-tabs { gap: 0.25rem; }
  .menu-tab { font-size: 0.72rem; padding: 0.6rem 0.75rem; }
}

@media (max-width: 480px) {
  :root { --section-py: 3.5rem; }
  .hero-controls { bottom: 1rem; }
  .lightbox-prev { left: 0.75rem; }
  .lightbox-next { right: 0.75rem; }
}

@media (min-width: 1024px) {
  .d-lg-none {
    display: none !important;
  }
}

