:root {
  --gold: #C9A84C;
  --gold-light: #F0D080;
  --gold-dark: #8B6914;
  --crimson: #8B1A1A;
  --crimson-bright: #C0392B;
  --emerald: #1A5E2A;
  --emerald-bright: #27AE60;
  --black: #0a0808;
  --dark: #110e0e;
  --wood-dark: #2C1A0E;
  --wood-mid: #5C3317;
  --wood-light: #8B5E3C;
  --red-oxide: #6B2020;
  --text-gold: #E8C870;
  --text-cream: #F5E6CC;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text-cream);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}

/* ========== PILLAR FRAME WRAPPER ========== */
.page-frame {
  position: relative;
  min-height: 100vh;
}

@media (max-width: 768px) {
}
@media (max-width: 480px) {
}



/* ===================================================================
   TYPOGRAPHY UPGRADE — Cinzel for titles, Cormorant for display text
   =================================================================== */
body {
  font-family: 'Poppins', sans-serif;
}

.header-title,
.section-title,
.footer-brand-name,
.hero-title span,
.specialty-name,
.location-name {
  font-family: 'Cinzel', serif;
}

.hero-title,
.story-heading,
.section-label {
  font-family: 'Cormorant Garamond', serif;
}

/* ===================================================================
   HEADER / WOODEN ROOF — CHETTINAD CORRIDOR
   =================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg,
    #0a0502 0%,
    #130804 20%,
    #1e0e06 50%,
    #2a1608 80%,
    #1e0e06 100%
  );
  box-shadow:
    0 8px 50px rgba(0,0,0,0.95),
    0 2px 0 rgba(201,168,76,0.25),
    0 0 80px rgba(0,0,0,0.6);
  overflow: visible;
}

/* ── Banana leaf — behind logo+name, full real color, natural organic shape ── */
.header-leaf-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 115%;
  height: auto;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: normal;
}

/* ──────────────────────────────────────────────────────────
   WOODEN PLANK CEILING
   ────────────────────────────────────────────────────────── */
.roof-ceiling {
  display: none;
}

/* Dark roof cap — the absolute top edge */
.roof-ridge-cap {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(180deg, #000 0%, #0d0603 100%);
  z-index: 5;
}

/* Vertical rafter planks across full width */
.roof-planks-row {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  z-index: 2;
}
.roof-rafter {
  width: clamp(10px, 1.4vw, 18px);
  background: linear-gradient(90deg,
    #0d0603 0%,
    #2d1a0a 18%,
    #4a2c12 32%,
    #6b3d1a 48%,
    #c9a84c 50%,
    #6b3d1a 52%,
    #4a2c12 68%,
    #2d1a0a 82%,
    #0d0603 100%
  );
  box-shadow:
    inset -3px 0 8px rgba(0,0,0,0.7),
    inset 2px 0 4px rgba(180,120,60,0.15);
}

/* Horizontal cross-beam purlin strips */
.roof-purlin {
  position: absolute;
  left: 0; right: 0;
  z-index: 3;
}
.roof-purlin-a {
  top: 22%;
  height: clamp(5px,0.8vw,9px);
  background: linear-gradient(180deg,
    #8B5E3C 0%, #6b3d1a 25%, #4a2c12 50%, #6b3d1a 75%, #8B5E3C 100%
  );
  box-shadow: 0 2px 6px rgba(0,0,0,0.8), inset 0 1px 0 rgba(180,120,60,0.4);
}
.roof-purlin-b {
  top: 68%;
  height: clamp(4px,0.6vw,7px);
  background: linear-gradient(180deg,
    #5c3317 0%, #3d2210 40%, #2d1a0a 100%
  );
  box-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

/* Wood grain texture overlay on ceiling */
.roof-ceiling::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px, transparent 58px,
    rgba(0,0,0,0.22) 58px, rgba(0,0,0,0.22) 60px
  );
  z-index: 4;
  pointer-events: none;
}

/* Subtle wood-grain horizontal lines */
.roof-ceiling::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px, transparent 7px,
    rgba(255,255,255,0.012) 7px, rgba(255,255,255,0.012) 8px
  );
  z-index: 4;
  pointer-events: none;
}

/* Wood knot details */
.wood-knot {
  position: absolute;
  width: clamp(14px,2.2vw,22px);
  height: clamp(9px,1.4vw,14px);
  background: radial-gradient(ellipse, #0d0603 35%, transparent 75%);
  border-radius: 50%;
  opacity: 0.55;
  z-index: 5;
  transform: translate(-50%, -50%);
}

/* Gold ridge line at very bottom of ceiling */
.roof-gold-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,168,76,0.3) 8%,
    var(--gold) 20%,
    var(--gold-light) 40%,
    #fff8e1 50%,
    var(--gold-light) 60%,
    var(--gold) 80%,
    rgba(201,168,76,0.3) 92%,
    transparent 100%
  );
  box-shadow: 0 0 12px rgba(201,168,76,0.55), 0 0 30px rgba(201,168,76,0.2);
  z-index: 6;
}

/* ──────────────────────────────────────────────────────────
   HANGING LIGHTS ZONE
   ────────────────────────────────────────────────────────── */
.lights-zone {
  position: relative;
  width: 100%;
  height: clamp(50px, 9vw, 88px);
  background: linear-gradient(180deg,
    #0a0502 0%,
    #110804 55%,
    rgba(8,4,2,0) 100%
  );
  overflow: visible;
  z-index: 10;
}

/* The sagging wire SVG */
.lights-wire-svg {
  position: absolute;
  top: 0; left: 0; right: 0;
  width: 100%;
  height: 20px;
  z-index: 2;
  pointer-events: none;
}

/* Light units container */
.lights-track {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  padding: 0 clamp(16px, 5vw, 70px);
  z-index: 3;
}

/* ── Base light unit ── */
.hv-light {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: top center;
  animation: hv-sway var(--sw, 0.5s) ease-in-out infinite;
  animation-delay: var(--sd, 0s);
  position: relative;
}
@keyframes hv-sway {
  0%, 100% { transform: rotate(-2.2deg); }
  50%       { transform: rotate(2.2deg); }
}

/* Cord / wire */
.hv-cord {
  width: 1.5px;
  height: var(--cord, 30px);
  background: linear-gradient(180deg, #2d1a0a 0%, #1a0f07 100%);
  box-shadow: 0 0 2px rgba(0,0,0,0.9);
  flex-shrink: 0;
}

/* ── Edison Bulb ── */
.hv-socket {
  width: 10px;
  height: 8px;
  background: linear-gradient(180deg, #4a2c12, #1a0c05);
  border-radius: 3px 3px 0 0;
  border: 1px solid rgba(201,168,76,0.25);
  flex-shrink: 0;
}

.hv-bulb {
  width: var(--bw, 20px);
  height: var(--bh, 28px);
  background: radial-gradient(
    ellipse 62% 58% at 48% 38%,
    #fff9e6 0%,
    #ffd47a 20%,
    #f5a623 42%,
    #d4780e 62%,
    #8b3d08 82%,
    #4a1e04 100%
  );
  border-radius: 50% 50% 42% 42% / 58% 58% 44% 44%;
  position: relative;
  flex-shrink: 0;
  box-shadow:
    0 0 var(--gc1, 8px)  rgba(245,166,35,0.85),
    0 0 var(--gc2, 20px) rgba(245,166,35,0.55),
    0 0 var(--gc3, 48px) rgba(245,166,35,0.28),
    0 0 80px             rgba(245,166,35,0.12);
  animation: hv-flicker var(--fl, 4s) ease-in-out infinite;
  animation-delay: var(--fd, 0s);
}
@keyframes hv-flicker {
  0%, 100% { opacity: 1; }
  91%  { opacity: 1; }
  92%  { opacity: 0.82; }
  93%  { opacity: 1; }
  96%  { opacity: 0.88; }
  97%  { opacity: 1; }
}

/* Filament wire inside bulb */
.hv-filament {
  position: absolute;
  top: 32%; left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 9px;
  border: 1px solid rgba(255,210,100,0.5);
  border-top: none;
  border-radius: 0 0 3px 3px;
}

/* Light cone spilling downward */
.hv-cone {
  position: absolute;
  bottom: calc(-1 * clamp(40px,6vw,70px));
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left:  clamp(35px,5vw,60px) solid transparent;
  border-right: clamp(35px,5vw,60px) solid transparent;
  border-top:   clamp(50px,7.5vw,90px) solid rgba(245,166,35,0.055);
  filter: blur(7px);
  pointer-events: none;
}

/* ── Brass Lantern ── */
.hv-lantern {
  position: relative;
}
.hv-lantern-top,
.hv-lantern-bot {
  width: calc(var(--lw, 16px) + 6px);
  height: 4px;
  background: linear-gradient(180deg, #6b3d1a, #c9a84c 50%, #6b3d1a);
  border-radius: 2px;
  flex-shrink: 0;
}
.hv-lantern-body {
  width: var(--lw, 16px);
  height: var(--lh, 24px);
  background: radial-gradient(
    ellipse 70% 60% at 50% 38%,
    rgba(255,215,100,0.96) 0%,
    rgba(245,140,28,0.82) 38%,
    rgba(185,80,8,0.72) 65%,
    rgba(80,30,4,0.92) 100%
  );
  border-radius: 3px;
  border: 1px solid rgba(201,168,76,0.55);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow:
    0 0 8px  rgba(245,166,35,0.75),
    0 0 22px rgba(245,166,35,0.45),
    0 0 55px rgba(245,166,35,0.22);
  animation: hv-flicker var(--fl, 4s) ease-in-out infinite;
  animation-delay: var(--fd, 0s);
}
/* Lantern dividing line */
.hv-lantern-body::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 100%;
  background: rgba(120,60,8,0.45);
}
/* Lantern highlight */
.hv-lantern-body::after {
  content: '';
  position: absolute;
  top: 15%; left: 18%;
  width: 28%; height: 35%;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  filter: blur(2px);
}

/* Lantern glow drop */
.hv-lantern-glow {
  position: absolute;
  bottom: calc(-1 * clamp(18px,3vw,30px));
  left: 50%;
  transform: translateX(-50%);
  width: clamp(28px,4.5vw,50px);
  height: clamp(14px,2.5vw,26px);
  background: radial-gradient(ellipse, rgba(245,166,35,0.22) 0%, transparent 70%);
  pointer-events: none;
}

/* Warm amber wash onto the nav row below */
.lights-ambient-wash {
  position: absolute;
  bottom: -30px; left: 0; right: 0;
  height: 60px;
  background: radial-gradient(
    ellipse 90% 100% at 50% 0%,
    rgba(245,166,35,0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

/* ──────────────────────────────────────────────────────────
   PILLARS — Enhanced Chettinad column style
   ────────────────────────────────────────────────────────── */
.header-pillar-row {
  display: flex;
  align-items: stretch;
  min-height: 68px;
  position: relative;
  overflow: visible;
  z-index: 5;
}

.pillar {
  flex-shrink: 0;
  width: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.pillar-capital {
  width: 100%;
  height: 14px;
  background: linear-gradient(180deg,
    #c9a84c 0%, #8B5E3C 20%, #c9a84c 45%, #8B5E3C 70%, #5C3317 100%
  );
  clip-path: polygon(0 0, 100% 0, 88% 100%, 12% 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 0 10px rgba(201,168,76,0.2);
}

.pillar-shaft {
  flex: 1;
  width: 72%;
  background: linear-gradient(90deg,
    #1a0c05 0%,
    #4a2c12 15%,
    #6b3d1a 30%,
    #8B5E3C 46%,
    #c9a84c 50%,
    #8B5E3C 54%,
    #6b3d1a 70%,
    #4a2c12 85%,
    #1a0c05 100%
  );
  clip-path: polygon(8% 0%, 92% 0%, 84% 50%, 92% 100%, 8% 100%, 16% 50%);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 4px 0;
}

.pillar-groove {
  width: 60%;
  height: 2px;
  background: rgba(0,0,0,0.5);
  border-radius: 1px;
  box-shadow: 0 1px 0 rgba(180,120,60,0.35);
}

.pillar-base {
  width: 100%;
  height: 12px;
  background: linear-gradient(180deg,
    #5C3317 0%, #8B5E3C 35%, #c9a84c 55%, #8B5E3C 78%, #5C3317 100%
  );
  clip-path: polygon(12% 0, 88% 0, 100% 100%, 0 100%);
  box-shadow: 0 3px 8px rgba(0,0,0,0.9);
}

/* Biryani pot on pillar top */
.pillar-pot-top {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  z-index: 20;
  pointer-events: none;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.9)) drop-shadow(0 1px 4px rgba(201,168,76,0.25));
  animation: pot-float 4.5s ease-in-out infinite;
}
.pillar-left .pillar-pot-top  { animation-delay: 0s; }
.pillar-right .pillar-pot-top { animation-delay: -2.2s; }
@keyframes pot-float {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50%       { transform: translateX(-50%) translateY(-4px); }
}
.pillar-pot-img { width: 100%; display: block; mix-blend-mode: screen; }

/* ──────────────────────────────────────────────────────────
   BRAND + NAV — Cinzel title, Cormorant subtitle
   ────────────────────────────────────────────────────────── */
.header-core { flex: 1; min-width: 0; }

.header-inner {
  padding: 8px 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  padding: 6px 12px 6px 6px;
}

/* Lift logo and text above the leaf */
.header-brand .header-logo,
.header-brand .header-brand-text {
  position: relative;
  z-index: 1;
}

.header-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow:
    0 0 14px rgba(201,168,76,0.55),
    0 0 30px rgba(201,168,76,0.2);
  object-fit: cover;
  transition: box-shadow 0.4s;
}
.header-brand:hover .header-logo {
  box-shadow:
    0 0 22px rgba(201,168,76,0.75),
    0 0 50px rgba(201,168,76,0.35);
}

.header-brand-text { display: flex; flex-direction: column; gap: 2px; }

.header-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(0.95rem, 2.2vw, 1.55rem);
  letter-spacing: 0.14em;
  text-shadow:
    0 1px 3px rgba(0,0,0,0.95),
    0 2px 8px rgba(0,0,0,0.9),
    0 0 20px rgba(0,0,0,0.8);
  line-height: 1.1;
}

.header-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: #ffffff;
  font-size: clamp(0.52rem, 1vw, 0.68rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-shadow:
    0 1px 3px rgba(0,0,0,0.95),
    0 2px 6px rgba(0,0,0,0.85);
}

/* Desktop nav */
.header-nav {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
}

.header-nav a {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.6rem, 0.9vw, 0.72rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-gold);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1.5px solid transparent;
  transition: all 0.3s;
  white-space: nowrap;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 100%;
  height: 1.5px;
  background: var(--gold-light);
  transition: right 0.35s ease;
}
.header-nav a:hover { color: var(--gold-light); }
.header-nav a:hover::after { right: 0; }

.order-btn-header {
  font-family: 'Cinzel', serif !important;
  background: linear-gradient(135deg, #b03020, #7a1510) !important;
  color: #ffe8d0 !important;
  padding: 8px 18px !important;
  border-radius: 3px !important;
  border: 1px solid rgba(255,120,80,0.4) !important;
  border-bottom: none !important;
  box-shadow:
    0 0 16px rgba(192,57,43,0.45),
    inset 0 1px 0 rgba(255,160,100,0.2) !important;
  transition: all 0.3s !important;
  letter-spacing: 0.1em !important;
}
.order-btn-header::after { display: none !important; }
.order-btn-header:hover {
  background: linear-gradient(135deg, #d0402e, #a02018) !important;
  box-shadow:
    0 0 28px rgba(208,64,46,0.65),
    0 0 60px rgba(208,64,46,0.25) !important;
  transform: translateY(-1px);
  color: #fff !important;
}

/* ── Gold trim bar ── */
.header-gold-trim {
  display: none;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
  border-radius: 2px;
  box-shadow: 0 0 4px rgba(201,168,76,0.4);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -4.5px); }

/* ──────────────────────────────────────────────────────────
   MOBILE DRAWER — full-screen slide-down
   ────────────────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1200;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0px, transparent 58px,
      rgba(0,0,0,0.12) 58px, rgba(0,0,0,0.12) 59px
    ),
    linear-gradient(180deg, #0d0603 0%, #1a0c05 40%, #130903 100%);
  border-top: 1px solid rgba(201,168,76,0.22);
  overflow-y: auto;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 12px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.mobile-menu-logo {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(201,168,76,0.4);
}
.mobile-menu-close {
  background: none;
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.mobile-menu-close:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  align-items: center;
  width: 100%;
}
.mobile-menu-links a {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-gold);
  text-decoration: none;
  padding: 16px 40px;
  border-bottom: 1px solid rgba(201,168,76,0.10);
  transition: all 0.22s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 80%;
  max-width: 320px;
  text-align: center;
}
.mobile-menu-links a:hover {
  color: var(--gold-light);
  background: rgba(201,168,76,0.06);
  border-radius: 4px;
}
.mm-icon {
  width: 18px;
  text-align: center;
  color: var(--gold-dark);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.mobile-order-cta {
  display: block;
  margin: 20px auto 0;
  background: linear-gradient(135deg, #b03020, #7a1510);
  color: #ffe8d0 !important;
  text-decoration: none;
  padding: 14px 40px;
  border-radius: 4px;
  border: 1px solid rgba(255,100,60,0.3);
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(192,57,43,0.4), inset 0 1px 0 rgba(255,150,100,0.15);
  transition: all 0.3s;
  width: 80%;
  max-width: 320px;
}
.mobile-order-cta:hover {
  background: linear-gradient(135deg, #d0402e, #a02018);
  box-shadow: 0 6px 30px rgba(208,64,46,0.55);
}

/* ──────────────────────────────────────────────────────────
   OLD BEAM CSS — REPLACED (kept class names for compatibility)
   ────────────────────────────────────────────────────────── */
.beam-ceiling, .beam-ridge, .beam-row, .beam-purlin,
.rafter, .dome-lamps-row, .dome-lamp, .lamp-mount,
.lamp-chain, .lamp-dome, .lamp-dome-inner, .lamp-glow {
  /* Legacy classes — structure replaced in HTML */
  display: none !important;
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE — MOBILE FIRST
   ────────────────────────────────────────────────────────── */

/* ── ≤1024px Tablet ── */
@media (max-width: 1024px) {
  .header-nav { gap: 12px; }
  .header-nav a { font-size: 0.64rem; }
  .pillar { width: 44px; }
  .lights-track { padding: 0 40px; }
  /* Hide 2 outermost lights on tablet */
  .hv-light:first-child, .hv-light:last-child { display: none; }
}

/* ── ≤768px Mobile ── */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger  { display: flex; }

  .header-title    { font-size: clamp(0.85rem,4.5vw,1.1rem); }
  .header-subtitle { display: none; }
  .header-logo     { width: 40px; height: 40px; }
  .header-inner    { padding: 7px 12px 9px; }

  .header-leaf-bg  { width: 120%; }

  .pillar { width: 32px; }
  .pillar-capital { height: 10px; }
  .pillar-base    { height: 9px; }
  .pillar-shaft   { width: 70%; }
  .pillar-pot-top { width: 56px; }

  .roof-ceiling  { height: clamp(22px,4vw,32px); }
  .roof-purlin-a { height: 5px; }
  .roof-purlin-b { height: 3px; }

  .lights-zone   { height: clamp(55px,11vw,85px); }
  .lights-track  { padding: 0 24px; }
  /* Keep only lights 4,5,6 on mobile — first 3 and last 2 hidden */
  .hv-light:nth-child(1),
  .hv-light:nth-child(2),
  .hv-light:nth-child(3),
  .hv-light:nth-child(7),
  .hv-light:nth-child(8) { display: none; }
}

/* ── ≤480px Small mobile ── */
@media (max-width: 480px) {
  .pillar { width: 22px; }
  .pillar-capital { height: 8px; clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%); }
  .pillar-base    { height: 7px; clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%); }
  .pillar-shaft   { width: 65%; }
  .pillar-pot-top { width: 40px; }

  .header-title { font-size: clamp(0.78rem,4vw,0.96rem); letter-spacing: 0.08em; }
  .header-logo  { width: 34px; height: 34px; }
  .header-inner { padding: 6px 10px 8px; }

  .lights-zone  { height: clamp(45px,10vw,72px); }
  .lights-track { padding: 0 16px; }
  /* Only 2 lights visible on tiny screens */
  .hv-light:nth-child(1), .hv-light:nth-child(2),
  .hv-light:nth-child(6), .hv-light:nth-child(7),
  .hv-light:nth-child(8) { display: none; }

  .roof-ceiling { height: clamp(18px,3.5vw,26px); }
  .wood-knot    { display: none; }
}
/* ========== LAYOUT WRAPPER ========== */
.layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: calc(100vh - 120px);
}

/* ========== LEFT SIDEBAR / RED OXIDE WALL ========== */
.sidebar {
  background:
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0.12) 0px, transparent 2px,
      transparent 30px, rgba(0,0,0,0.12) 32px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,0.08) 0px, transparent 1px,
      transparent 20px, rgba(0,0,0,0.08) 21px
    ),
    linear-gradient(180deg, #5a1515 0%, #7a1f1f 20%, #6B2020 50%, #8B2222 70%, #6B2020 100%);
  border-right: 3px solid var(--gold-dark);
  padding: 30px 16px;
  position: sticky;
  top: 120px;
  height: calc(100vh - 120px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Kolam top decoration on sidebar */
.sidebar-top-deco {
  text-align: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.sidebar-nav-label {
  font-family: 'Playfair Display', serif;
  color: rgba(240,208,128,0.5);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding-bottom: 8px;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-gold);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 4px;
  border-left: 3px solid transparent;
  transition: all 0.25s;
  position: relative;
  display: block;
}

.sidebar nav a:hover {
  background: rgba(201,168,76,0.12);
  border-left-color: var(--gold);
  color: #fff;
  text-shadow: 0 0 8px rgba(201,168,76,0.5);
  padding-left: 20px;
}

.sidebar-order-btn {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 12px;
  background: linear-gradient(135deg, #C0392B, #7a0f0f);
  color: #fff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid rgba(255,100,80,0.3);
  box-shadow: 0 0 20px rgba(192,57,43,0.5);
  transition: all 0.3s;
  animation: pulse-red 2s ease-in-out infinite;
}

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 20px rgba(192,57,43,0.5); }
  50% { box-shadow: 0 0 35px rgba(231,76,60,0.8); }
}

.sidebar-order-btn:hover {
  background: linear-gradient(135deg, #e74c3c, #C0392B);
  transform: scale(1.02);
}

/* ========== MAIN CONTENT ========== */
.main-content {
  background: var(--black);
  padding: 0;
  overflow: hidden;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('images/special_chicken_biryani.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg-img {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,8,8,0.95) 0%,
    rgba(10,8,8,0.7) 50%,
    rgba(10,8,8,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 50px;
  max-width: 700px;
  animation: fadeSlideIn 1s ease 0.2s both;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-tagline::before, .hero-tagline::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--gold-dark);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  letter-spacing: 0.02em;
}

.hero-title span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(245,230,204,0.75);
  line-height: 1.7;
  margin: 20px 0 36px;
  max-width: 500px;
}

.order-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #e74c3c, #C0392B, #8B1A1A);
  color: #fff;
  text-decoration: none;
  padding: 18px 40px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid rgba(255,120,100,0.3);
  box-shadow: 0 4px 30px rgba(231,76,60,0.5), 0 0 60px rgba(192,57,43,0.3);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  animation: glow-pulse 2.5s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 4px 30px rgba(231,76,60,0.5), 0 0 60px rgba(192,57,43,0.3); }
  50% { box-shadow: 0 4px 50px rgba(231,76,60,0.8), 0 0 90px rgba(192,57,43,0.5); }
}

.order-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.order-cta:hover::after { transform: translateX(100%); }
.order-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 50px rgba(231,76,60,0.7), 0 0 100px rgba(192,57,43,0.4);
}

.order-redirect-note {
  font-size: 0.65rem;
  opacity: 0.7;
  display: block;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

/* Hero food image panel */
.hero-food-panel {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold-dark);
  box-shadow: 0 0 40px rgba(201,168,76,0.3), 0 0 80px rgba(0,0,0,0.8);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(-50%) translateY(-10px); }
  50% { transform: translateY(-50%) translateY(10px); }
}

.hero-food-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ========== SECTION COMMON ========== */
.section {
  padding: 70px 50px;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.section-title span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.section-divider::before, .section-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark));
}

.section-divider::after {
  background: linear-gradient(to left, transparent, var(--gold-dark));
}

.divider-icon {
  color: var(--gold);
  font-size: 1rem;
}

/* ========== SPECIALTIES CARDS ========== */
.specialties-section {
  background: #0a0a0a;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.specialty-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  border: 1px solid rgba(201,168,76,0.15);
  transition: all 0.4s;
  animation: fadeUp 0.6s ease both;
}

.specialty-card:nth-child(2) { animation-delay: 0.1s; }
.specialty-card:nth-child(3) { animation-delay: 0.2s; }
.specialty-card:nth-child(4) { animation-delay: 0.3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.specialty-card:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 20px rgba(201,168,76,0.15);
}

.specialty-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.specialty-card:hover img {
  transform: scale(1.08);
}

.specialty-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
}

.specialty-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
}

.specialty-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold-dark);
  color: var(--gold-light);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 6px;
}

.specialty-name {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.specialty-desc {
  font-size: 0.72rem;
  color: rgba(245,230,204,0.7);
  margin-top: 4px;
}

/* ========== STORY SECTION ========== */
.story-section {
  background: #0a0a0a;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story-text p {
  color: rgba(245,230,204,0.75);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.story-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.highlight-card {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 6px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s;
}

.highlight-card:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-3px);
}

.highlight-icon { font-size: 1.8rem; margin-bottom: 8px; }

.highlight-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.highlight-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,230,204,0.55);
}

.story-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}

.story-img {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
}

.story-img:first-child {
  grid-row: 1 / 3;
  grid-column: 1;
}

.story-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.story-img:hover img { transform: scale(1.05); }

/* ========== LOCATIONS SECTION ========== */
.locations-section {
  background: #0a0a0a;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.location-card {
  background:
    linear-gradient(135deg, rgba(44,26,14,0.3) 0%, rgba(17,12,12,0.95) 100%);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s;
}

.location-card:hover {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 20px rgba(201,168,76,0.1);
  transform: translateY(-4px);
}

.location-card-header {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(201,168,76,0.05) 0px, transparent 1px,
      transparent 20px, rgba(201,168,76,0.05) 21px
    ),
    linear-gradient(135deg, var(--crimson) 0%, #5a0a0a 100%);
  padding: 20px 24px;
  border-bottom: 2px solid var(--gold-dark);
}

.location-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.location-region {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,230,204,0.6);
}

.location-body {
  padding: 24px;
}

.location-info-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.info-icon {
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.info-text {
  font-size: 0.82rem;
  color: rgba(245,230,204,0.75);
  line-height: 1.5;
}

.info-text a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.2s;
}
.info-text a:hover { color: #fff; }

.info-text strong {
  color: var(--text-gold);
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.map-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold-light);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 16px;
  transition: all 0.3s;
  letter-spacing: 0.05em;
}

.map-link:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.5);
  color: #fff;
  transform: translateX(3px);
}

/* Hours table */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  font-size: 0.76rem;
  color: rgba(245,230,204,0.65);
  margin-top: 6px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 2px 0;
  border-bottom: 1px solid rgba(201,168,76,0.07);
}

/* Services badges */
.services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.service-badge {
  background: rgba(27,94,42,0.15);
  border: 1px solid rgba(39,174,96,0.25);
  color: #27AE60;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
}

/* ========== REVIEWS SECTION ========== */
.reviews-section {
  background: #0a0a0a;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: rgba(201,168,76,0.12);
  line-height: 1;
}

.review-card:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.03);
  transform: translateY(-3px);
}

.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.82rem;
  color: rgba(245,230,204,0.75);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.review-meta {
  font-size: 0.7rem;
  color: rgba(245,230,204,0.4);
}

.review-meta strong {
  color: var(--text-gold);
  font-style: normal;
}

.review-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.review-badge {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--gold-dark);
  font-size: 0.58rem;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ========== CONTACT ========== */
.contact-section {
  background: #0a0a0a;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 10px;
  padding: 30px;
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,230,204,0.55);
  margin-bottom: 6px;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 5px;
  color: var(--text-cream);
  padding: 10px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 10px rgba(201,168,76,0.1);
}

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

.form-group select option { background: #1a0a04; }

.submit-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0a0808;
  border: none;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 8px;
  padding: 20px;
}

.contact-info-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.contact-detail {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(245,230,204,0.7);
}

.contact-detail a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail a:hover { color: #fff; }

/* ========== FOOTER ========== */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0.15) 0px, transparent 1px,
      transparent 25px, rgba(0,0,0,0.15) 26px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,0.1) 0px, transparent 1px,
      transparent 25px, rgba(0,0,0,0.1) 26px
    ),
    linear-gradient(180deg, #5a1515 0%, #7a1f1f 30%, #6B2020 60%, #8B2222 80%, #7a1f1f 100%);
  border-top: 3px solid var(--gold-dark);
}

/* Kolam pattern overlay */
.kolam-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
    conic-gradient(from 0deg at 50% 50%,
      rgba(201,168,76,0.03) 0deg, transparent 30deg,
      rgba(201,168,76,0.03) 60deg, transparent 90deg,
      rgba(201,168,76,0.03) 120deg, transparent 150deg,
      rgba(201,168,76,0.03) 180deg, transparent 210deg,
      rgba(201,168,76,0.03) 240deg, transparent 270deg,
      rgba(201,168,76,0.03) 300deg, transparent 330deg,
      rgba(201,168,76,0.03) 360deg
    );
  pointer-events: none;
}

.footer-inner {
  position: relative;
  padding: 50px 50px 30px;
  z-index: 1;
}

/* Footer kolam decoration */
.kolam-deco {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.kolam-pattern {
  font-size: 0.7rem;
  color: rgba(201,168,76,0.4);
  letter-spacing: 3px;
  font-weight: 300;
}

.footer-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #0a0808, #1a0a04);
  color: var(--gold-light);
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 8px;
  border: 2px solid var(--gold-dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(201,168,76,0.1);
}

.footer-order-btn:hover {
  background: linear-gradient(135deg, #1a0a04, #2C1A0E);
  border-color: var(--gold-light);
  color: #fff;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 30px rgba(201,168,76,0.2);
  transform: translateY(-3px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold-dark);
  margin-bottom: 12px;
  object-fit: cover;
  display: block;
}

.footer-brand-name {
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.78rem;
  color: rgba(245,230,204,0.55);
  line-height: 1.7;
  max-width: 220px;
  margin-bottom: 6px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  width: 100%;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 0.78rem;
  color: rgba(245,230,204,0.55);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
  line-height: 1.5;
}

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

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(245,230,204,0.4);
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fssai-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 0.65rem;
  color: rgba(245,230,204,0.5);
  letter-spacing: 0.05em;
  text-align: center;
}

.fssai-badge strong {
  color: var(--gold);
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1px;
}

.zomato-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(203,52,45,0.12);
  border: 1px solid rgba(203,52,45,0.3);
  border-radius: 4px;
  padding: 6px 12px;
  text-decoration: none;
  color: #ff6b6b;
  font-size: 0.68rem;
  font-weight: 600;
  transition: all 0.3s;
  letter-spacing: 0.05em;
}

.zomato-badge:hover {
  background: rgba(203,52,45,0.2);
  color: #fff;
}

/* ========== RESPONSIVE ========== */

/* ── Tablet: 1024px ─────────────────────────────────────── */
@media (max-width: 1024px) {
  /* (header responsive already handled in new header CSS above) */
}

/* ── Mobile landscape / small tablet: 768px ─────────────── */
@media (max-width: 768px) {
  .layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }

  /* Hero */
  .hero { min-height: 60vh; }
  .hero-content {
    padding: 36px 20px;
    text-align: center;
    margin: 0 auto;
  }
  .hero-tagline {
    justify-content: center;
  }
  .hero-title {
    font-size: 2rem;
    text-align: center;
  }
  .hero-desc {
    font-size: 0.85rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .order-cta {
    padding: 14px 24px;
    font-size: 0.85rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  .hero-food-panel { display: none; }

  /* Sections */
  .section { padding: 44px 20px; }
  .section-title { font-size: 1.6rem; }

  /* Menu / Specialties */
  .specialty-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Story */
  .story-inner { grid-template-columns: 1fr; gap: 24px; }
  .story-image-grid { display: none; }
  .story-highlights { grid-template-columns: 1fr 1fr; gap: 12px; }
  .story-text { text-align: center; }
  .story-text p { text-align: center; }
  .story-heading { text-align: center; }

  /* Locations */
  .locations-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Footer */
  .footer-inner { padding: 36px 24px 20px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 28px 0;
  }
  .footer-brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }
  .footer-brand img { margin-bottom: 10px; }
  .footer-brand p { max-width: 100%; text-align: center; }
  .footer-col { align-items: center; text-align: center; }
  .footer-col h4 { text-align: center; }
  .footer-col a, .footer-col p { text-align: center; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    align-items: center;
  }
  .footer-bottom p { text-align: center; }
  .trust-badges { justify-content: center; flex-wrap: wrap; }
  .footer-order-btn { padding: 14px 28px; font-size: 0.9rem; }

  /* Location cards */
  .location-card-header { padding: 16px 18px; }
  .location-name { font-size: 1.2rem; }
  .location-body { padding: 16px 18px; }

  /* Review cards */
  .review-card { padding: 18px; }

  /* Contact form */
  .contact-form { padding: 20px; }
  .contact-form h3 { text-align: center; }
  .contact-info-card { text-align: center; }
  .contact-info-card h4 { text-align: center; }
  .contact-detail { justify-content: center; }
}

/* ── Mobile portrait: 480px ──────────────────────────────── */
@media (max-width: 480px) {
  /* Header brand (pillar/lights handled in new header CSS) */

  /* Hero */
  .hero { min-height: 55vh; }
  .hero-title { font-size: 1.7rem; text-align: center; }
  .hero-tagline { font-size: 0.65rem; justify-content: center; }
  .order-cta { width: 100%; justify-content: center; padding: 13px 16px; font-size: 0.8rem; }
  .order-redirect-note { display: none; }

  /* Sections */
  .section { padding: 36px 14px; }
  .section-title { font-size: 1.4rem; }
  .section-label { font-size: 0.62rem; }

  /* Cards */
  .specialty-name { font-size: 1.1rem; }
  .specialty-card { border-radius: 6px; }

  /* Story highlights */
  .story-highlights { grid-template-columns: 1fr 1fr; gap: 10px; }
  .highlight-val { font-size: 1.2rem; }
  .highlight-icon { font-size: 1.4rem; }

  /* Services badges */
  .service-badge { font-size: 0.55rem; padding: 2px 6px; }

  /* Footer */
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-brand { grid-column: 1; }
  .footer-brand-name { font-size: 1rem; }
  .footer-col h4 { font-size: 0.85rem; }
  .footer-col a, .footer-col p { font-size: 0.72rem; }
  .footer-order-btn { width: 100%; justify-content: center; font-size: 0.82rem; padding: 13px 16px; }
  .kolam-pattern { font-size: 0.55rem; letter-spacing: 1px; }

  /* Location */
  .info-text { font-size: 0.76rem; }
  .map-link { font-size: 0.72rem; }

  /* Contact */
  .form-group input,
  .form-group textarea,
  .form-group select { font-size: 0.8rem; padding: 9px 12px; }
  .submit-btn { font-size: 0.8rem; }

  /* Review */
  .review-text { font-size: 0.76rem; }
  .review-stars { font-size: 0.78rem; }
}

/* ── Very small: 360px ───────────────────────────────────── */

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Beam decorations */
.wood-beam {
  height: 8px;
  background: linear-gradient(90deg,
    #2C1A0E 0%, #5C3317 15%, #8B5E3C 25%,
    #C9A84C 30%, #8B5E3C 35%, #5C3317 50%,
    #8B5E3C 65%, #C9A84C 70%, #8B5E3C 75%,
    #5C3317 85%, #2C1A0E 100%
  );
  margin: 0;
}
/* ── Form Validation Styles ─────────────────────────────────── */
.required-star {
  color: #e05050;
  margin-left: 2px;
  font-weight: 700;
}
.field-error {
  display: none;
  color: #e05050;
  font-size: 0.75rem;
  margin-top: 4px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  animation: fadeInError 0.2s ease;
}
@keyframes fadeInError {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.char-counter {
  display: block;
  text-align: right;
  font-size: 0.72rem;
  color: rgba(245,230,204,0.4);
  margin-top: 4px;
  font-family: Poppins, sans-serif;
}
/* Consent checkbox row */
.consent-group {
  margin-top: 4px;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.8rem;
  color: rgba(245,230,204,0.7);
  line-height: 1.5;
}
.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: #c9a84c;
  cursor: pointer;
}
/* Input invalid state */
input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #e05050 !important;
  box-shadow: 0 0 0 2px rgba(224,80,80,0.18);
}

