/* ============================================================
   AMMA'S KITCHEN — Comfort Food Landing Page
   A love letter to South Indian home cooking
   ============================================================ */

/* ── Design Tokens ── */
:root {
  /* Warm palette inspired by turmeric, curry leaves & clay pots */
  --gold:        #E8A838;
  --gold-light:  #F5CC6A;
  --gold-dark:   #C4871E;
  --saffron:     #D4622B;
  --curry-leaf:  #3A6B35;
  --curry-deep:  #2A4F28;
  --clay:        #8B5E3C;
  --cream:       #FFF8EC;
  --cream-dark:  #F5E6CC;
  --charcoal:    #1A1410;
  --smoke:       #2C2420;
  --warm-gray:   #6B5D52;
  --warm-gray-l: #A69888;
  --white:       #FFFDF9;
  --red-chili:   #C0392B;

  /* Typography */
  --ff-display: 'Playfair Display', 'Georgia', serif;
  --ff-body:    'Inter', 'Segoe UI', sans-serif;
  --ff-accent:  'Outfit', 'Inter', sans-serif;

  /* Spacing Scale */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration:    0.4s;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(26, 20, 16, 0.08);
  --shadow-md:  0 4px 20px rgba(26, 20, 16, 0.12);
  --shadow-lg:  0 8px 40px rgba(26, 20, 16, 0.16);
  --shadow-xl:  0 16px 60px rgba(26, 20, 16, 0.24);
  --shadow-glow: 0 0 40px rgba(232, 168, 56, 0.3);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}


/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--ff-body);
  background: var(--charcoal);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

::selection {
  background: var(--gold);
  color: var(--charcoal);
}


/* ── Utility Classes ── */
.container {
  width: min(90%, 1200px);
  margin: 0 auto;
}

.section-label {
  font-family: var(--ff-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--warm-gray-l);
  max-width: 560px;
  line-height: 1.8;
}

/* Reveal animation base */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-lg) 0;
  transition: all var(--duration) var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(26, 20, 16, 0.92);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(232, 168, 56, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform var(--duration) var(--ease-bounce);
}

.nav-logo:hover .logo-icon {
  transform: rotate(20deg) scale(1.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-family: var(--ff-accent);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream-dark);
  position: relative;
  transition: color var(--duration) var(--ease-smooth);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width var(--duration) var(--ease-smooth);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--ff-accent) !important;
  font-weight: 600 !important;
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--charcoal) !important;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease-smooth) !important;
  box-shadow: 0 2px 12px rgba(232, 168, 56, 0.3);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: var(--charcoal) !important;
}

/* Mobile Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-5xl) 0 var(--space-4xl);
}

/* Atmospheric background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(232, 168, 56, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(212, 98, 43, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 90%, rgba(58, 107, 53, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.4rem 1rem;
  background: rgba(232, 168, 56, 0.1);
  border: 1px solid rgba(232, 168, 56, 0.2);
  border-radius: var(--radius-full);
  font-family: var(--ff-accent);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s var(--ease-smooth) 0.2s both;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s var(--ease-smooth) 0.4s both;
}

.hero h1 .text-gold {
  color: var(--gold);
  position: relative;
}

.hero h1 .text-gold::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.hero h1 .text-italic {
  font-style: italic;
  color: var(--saffron);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--warm-gray-l);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  max-width: 480px;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.6s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  animation: fadeInUp 0.8s var(--ease-smooth) 0.8s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--charcoal);
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease-smooth);
  box-shadow: 0 4px 20px rgba(232, 168, 56, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity var(--duration) var(--ease-smooth);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(232, 168, 56, 0.5);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary .btn-arrow {
  position: relative;
  z-index: 1;
  transition: transform var(--duration) var(--ease-smooth);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.9rem 1.6rem;
  background: transparent;
  color: var(--cream);
  font-family: var(--ff-accent);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 248, 236, 0.2);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration) var(--ease-smooth);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(232, 168, 56, 0.06);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 248, 236, 0.08);
  animation: fadeInUp 0.8s var(--ease-smooth) 1s both;
}

.hero-stat .stat-number {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 0.82rem;
  color: var(--warm-gray-l);
  margin-top: var(--space-xs);
  letter-spacing: 0.02em;
}


/* ── Hero Visual (CSS Art Thali) ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.2s var(--ease-smooth) 0.6s both;
}

/* The Thali Plate — a grand CSS art piece */
.thali {
  position: relative;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(255,255,255,0.08) 0%, transparent 50%),
    linear-gradient(145deg, #C4A265, #8B7340, #A68B55);
  box-shadow:
    0 0 0 3px rgba(196, 162, 101, 0.5),
    0 0 0 8px rgba(139, 115, 64, 0.3),
    inset 0 0 40px rgba(0,0,0,0.2),
    inset 0 0 80px rgba(0,0,0,0.1),
    0 20px 60px rgba(0,0,0,0.5),
    0 0 100px rgba(232, 168, 56, 0.1);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

/* Thali rim engraving pattern */
.thali::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 248, 236, 0.15);
  background: transparent;
}

.thali::after {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 248, 236, 0.1);
}

/* Small Katori bowls arranged on the thali */
.katori {
  position: absolute;
  border-radius: 50%;
  box-shadow:
    inset 0 4px 10px rgba(0,0,0,0.2),
    inset 0 -2px 6px rgba(255,255,255,0.05),
    0 2px 8px rgba(0,0,0,0.3);
}

/* Sambar bowl */
.katori-sambar {
  width: 100px;
  height: 100px;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 40% 30%, rgba(255,255,255,0.06) 0%, transparent 40%),
    radial-gradient(ellipse at center, #D4622B 0%, #B8511A 50%, #944112 100%);
  border: 2px solid rgba(196, 162, 101, 0.4);
}

/* Tiny veggies floating in sambar */
.katori-sambar::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--curry-leaf);
  border-radius: 50% 50% 50% 0;
  top: 30px;
  left: 35px;
  box-shadow:
    18px 5px 0 0 #E8C838,
    8px 15px 0 -1px var(--curry-leaf),
    -5px 10px 0 0 #C0392B;
}

/* Sambar surface highlight */
.katori-sambar::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 20px;
  top: 20px;
  left: 25px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

/* Rasam bowl */
.katori-rasam {
  width: 90px;
  height: 90px;
  top: 80px;
  right: 45px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.06) 0%, transparent 40%),
    radial-gradient(ellipse at center, #C0392B 0%, #A93226 50%, #8B2A1F 100%);
  border: 2px solid rgba(196, 162, 101, 0.4);
}

/* Pepper specks and curry leaf in rasam */
.katori-rasam::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: #2C2420;
  border-radius: 50%;
  top: 28px;
  left: 30px;
  box-shadow:
    12px 5px 0 0 #2C2420,
    6px 12px 0 0 #2C2420,
    20px 10px 0 0 #2C2420,
    -3px 15px 0 1px var(--curry-leaf);
}

/* Chutney bowl (coconut) */
.katori-chutney {
  width: 85px;
  height: 85px;
  bottom: 80px;
  right: 50px;
  background:
    radial-gradient(circle at 40% 30%, rgba(255,255,255,0.08) 0%, transparent 40%),
    radial-gradient(ellipse at center, #7FA86E 0%, #5D8A4C 50%, #3A6B35 100%);
  border: 2px solid rgba(196, 162, 101, 0.4);
}

/* Chutney texture */
.katori-chutney::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 15px;
  top: 25px;
  left: 22px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

/* Dal/Kootu bowl */
.katori-dal {
  width: 90px;
  height: 90px;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 40% 30%, rgba(255,255,255,0.06) 0%, transparent 40%),
    radial-gradient(ellipse at center, #E8C838 0%, #D4B030 50%, #B89828 100%);
  border: 2px solid rgba(196, 162, 101, 0.4);
}

/* Tadka/tempering on dal */
.katori-dal::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--red-chili);
  border-radius: 50%;
  top: 25px;
  left: 32px;
  box-shadow:
    10px 4px 0 -1px var(--curry-leaf),
    -5px 8px 0 0 #2C2420,
    15px 10px 0 -1px var(--red-chili);
}

/* Poriyal/vegetable bowl */
.katori-poriyal {
  width: 85px;
  height: 85px;
  top: 85px;
  left: 45px;
  background:
    radial-gradient(circle at 40% 30%, rgba(255,255,255,0.06) 0%, transparent 40%),
    radial-gradient(ellipse at center, #5D8A4C 0%, #4A7A3D 50%, #3A6B35 100%);
  border: 2px solid rgba(196, 162, 101, 0.4);
}

/* Coconut shreds on poriyal */
.katori-poriyal::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 3px;
  background: #F5E6CC;
  border-radius: 1px;
  top: 28px;
  left: 28px;
  box-shadow:
    8px 3px 0 0 #F5E6CC,
    4px 8px 0 0 #F5E6CC,
    12px 6px 0 0 #F5E6CC,
    -2px 10px 0 0 #E8C838,
    16px 1px 0 0 #F5E6CC;
}

/* Payasam / Curd bowl */
.katori-curd {
  width: 85px;
  height: 85px;
  bottom: 75px;
  left: 50px;
  background:
    radial-gradient(circle at 40% 30%, rgba(255,255,255,0.12) 0%, transparent 40%),
    radial-gradient(ellipse at center, #F5F0E0 0%, #EDE5D0 50%, #E0D5BA 100%);
  border: 2px solid rgba(196, 162, 101, 0.4);
}

/* Curd surface */
.katori-curd::before {
  content: '';
  position: absolute;
  width: 35px;
  height: 16px;
  top: 22px;
  left: 20px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
}

/* Center Rice mound */
.rice-mound {
  position: absolute;
  width: 130px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse at 45% 35%, rgba(255,255,255,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at center, #FFFDF5 0%, #F5F0E0 40%, #EDE5D0 100%);
  border-radius: 50% 50% 45% 45%;
  box-shadow:
    inset 0 -8px 15px rgba(0,0,0,0.08),
    0 4px 10px rgba(0,0,0,0.15);
}

/* Rice grain texture */
.rice-mound::before {
  content: '';
  position: absolute;
  inset: 15px;
  background:
    radial-gradient(2px 4px at 20% 30%, rgba(0,0,0,0.04) 50%, transparent 50%),
    radial-gradient(2px 4px at 50% 45%, rgba(0,0,0,0.04) 50%, transparent 50%),
    radial-gradient(2px 4px at 75% 35%, rgba(0,0,0,0.04) 50%, transparent 50%),
    radial-gradient(2px 4px at 35% 60%, rgba(0,0,0,0.04) 50%, transparent 50%),
    radial-gradient(2px 4px at 60% 55%, rgba(0,0,0,0.04) 50%, transparent 50%);
}

/* Ghee/dal on rice */
.rice-mound::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 30px;
  top: 15px;
  left: 45px;
  background: radial-gradient(ellipse, rgba(232, 168, 56, 0.4) 0%, transparent 70%);
  border-radius: 50%;
}

/* Steam rising from the thali */
.steam {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
}

.steam-line {
  width: 2px;
  height: 35px;
  background: linear-gradient(to top, rgba(255,255,255,0.12), transparent);
  border-radius: 2px;
  animation: steam-rise 2.5s ease-in-out infinite;
}

.steam-line:nth-child(2) {
  animation-delay: 0.8s;
  height: 28px;
}

.steam-line:nth-child(3) {
  animation-delay: 1.6s;
  height: 32px;
}

@keyframes steam-rise {
  0% {
    opacity: 0;
    transform: translateY(10px) scaleX(1);
  }
  30% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-30px) scaleX(2);
  }
}

/* Decorative floating elements around the thali */
.floating-spice {
  position: absolute;
  border-radius: 50%;
  animation: spice-float 4s ease-in-out infinite;
}

.spice-1 {
  width: 8px;
  height: 8px;
  background: var(--gold);
  top: -20px;
  right: 60px;
  animation-delay: 0s;
}

.spice-2 {
  width: 6px;
  height: 6px;
  background: var(--saffron);
  bottom: 30px;
  right: -10px;
  animation-delay: 1s;
}

.spice-3 {
  width: 10px;
  height: 6px;
  background: var(--curry-leaf);
  border-radius: 50% 50% 50% 0;
  top: 50%;
  left: -20px;
  animation-delay: 2s;
}

@keyframes spice-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
  50% { transform: translate(5px, -10px) rotate(20deg); opacity: 1; }
}


/* ── About / Story Section ── */
.story {
  padding: var(--space-5xl) 0;
  position: relative;
  overflow: hidden;
}

.story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 168, 56, 0.2), transparent);
}

.story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

/* CSS Art Kitchen Scene */
.kitchen-scene {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #2C2420 0%, #1A1410 100%);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

/* Kitchen wall */
.kitchen-scene::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background:
    linear-gradient(180deg, #3A2F28 0%, #2E251F 100%);
  border-top: 3px solid rgba(196, 162, 101, 0.2);
}

/* Stove/cooking station */
.stove {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 20px;
  background: linear-gradient(180deg, #4A4040, #3A3030);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* Flame under the pot */
.flame-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
}

.flame {
  width: 8px;
  height: 16px;
  background: linear-gradient(to top, #E8A838, #D4622B, transparent);
  border-radius: 50% 50% 20% 20%;
  animation: flicker 0.8s ease-in-out infinite alternate;
}

.flame:nth-child(2) {
  height: 20px;
  animation-delay: 0.2s;
}

.flame:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes flicker {
  0% { transform: scaleY(1) scaleX(1); opacity: 0.8; }
  100% { transform: scaleY(1.15) scaleX(0.9); opacity: 1; }
}

/* Cooking pot on stove */
.cooking-pot {
  position: absolute;
  bottom: calc(30% + 16px);
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 70px;
  background: linear-gradient(145deg, #6B5D52, #4A3F38, #5A4F45);
  border-radius: 8px 8px 40% 40%;
  box-shadow:
    inset 0 0 15px rgba(0,0,0,0.3),
    0 4px 12px rgba(0,0,0,0.4);
}

/* Pot handles */
.cooking-pot::before,
.cooking-pot::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 8px;
  background: #8B7D70;
  top: 10px;
  border-radius: 3px;
}

.cooking-pot::before { left: -16px; }
.cooking-pot::after { right: -16px; }

/* Steam from pot */
.pot-steam {
  position: absolute;
  bottom: calc(30% + 82px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.pot-steam-line {
  width: 2px;
  height: 30px;
  background: linear-gradient(to top, rgba(255,255,255,0.15), transparent);
  border-radius: 2px;
  animation: steam-rise 3s ease-in-out infinite;
}

.pot-steam-line:nth-child(2) { animation-delay: 1s; height: 24px; }
.pot-steam-line:nth-child(3) { animation-delay: 2s; height: 28px; }

/* Hanging utensils on wall */
.utensil {
  position: absolute;
  top: 15%;
}

.utensil-ladle {
  left: 20%;
  width: 6px;
  height: 40px;
  background: linear-gradient(180deg, #A68B55, #8B7340);
  border-radius: 2px;
}

.utensil-ladle::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -8px;
  width: 22px;
  height: 18px;
  border: 3px solid #A68B55;
  border-top: none;
  border-radius: 0 0 50% 50%;
}

.utensil-spatula {
  right: 22%;
  width: 5px;
  height: 35px;
  background: linear-gradient(180deg, #8B7340, #6B5830);
  border-radius: 2px;
}

.utensil-spatula::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: -6px;
  width: 17px;
  height: 20px;
  background: #8B7340;
  border-radius: 3px;
}

/* Shelf with spice jars */
.spice-shelf {
  position: absolute;
  top: 28%;
  right: 12%;
  width: 80px;
  height: 4px;
  background: #6B5830;
  border-radius: 2px;
}

.spice-jar {
  position: absolute;
  bottom: 4px;
  border-radius: 3px 3px 1px 1px;
}

.spice-jar-1 {
  left: 5px;
  width: 16px;
  height: 22px;
  background: linear-gradient(180deg, rgba(232,168,56,0.6), var(--gold-dark));
}

.spice-jar-2 {
  left: 28px;
  width: 14px;
  height: 18px;
  background: linear-gradient(180deg, rgba(192,57,43,0.6), var(--red-chili));
}

.spice-jar-3 {
  left: 50px;
  width: 16px;
  height: 20px;
  background: linear-gradient(180deg, rgba(58,107,53,0.6), var(--curry-leaf));
}

/* Warm light glow from the stove */
.kitchen-glow {
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 150px;
  background: radial-gradient(ellipse, rgba(232, 168, 56, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.story-content {
  padding-left: var(--space-xl);
}

.story-content .section-subtitle {
  margin-bottom: var(--space-2xl);
}

.story-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.story-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  transition: background var(--duration) var(--ease-smooth);
}

.story-feature:hover {
  background: rgba(232, 168, 56, 0.04);
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(232, 168, 56, 0.1);
  border: 1px solid rgba(232, 168, 56, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all var(--duration) var(--ease-smooth);
}

.story-feature:hover .feature-icon {
  background: rgba(232, 168, 56, 0.15);
  border-color: rgba(232, 168, 56, 0.3);
  transform: scale(1.05);
}

.feature-text h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.feature-text p {
  font-size: 0.88rem;
  color: var(--warm-gray-l);
  line-height: 1.6;
}


/* ── Menu Section ── */
.menu {
  padding: var(--space-5xl) 0;
  position: relative;
  background:
    linear-gradient(180deg, transparent, rgba(44, 36, 32, 0.5) 30%, rgba(44, 36, 32, 0.5) 70%, transparent);
}

.menu-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.menu-header .section-label {
  justify-content: center;
}

.menu-header .section-label::before { display: none; }

.menu-header .section-subtitle {
  margin: 0 auto;
}

/* Menu Tab Navigation */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.menu-tab {
  padding: 0.6rem 1.4rem;
  background: transparent;
  border: 1px solid rgba(255, 248, 236, 0.1);
  border-radius: var(--radius-full);
  font-family: var(--ff-accent);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--warm-gray-l);
  cursor: pointer;
  transition: all var(--duration) var(--ease-smooth);
}

.menu-tab:hover {
  border-color: rgba(232, 168, 56, 0.3);
  color: var(--gold-light);
}

.menu-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: transparent;
  color: var(--charcoal);
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(232, 168, 56, 0.3);
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.menu-card {
  background: rgba(44, 36, 32, 0.6);
  border: 1px solid rgba(255, 248, 236, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--duration) var(--ease-smooth);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 168, 56, 0.03), transparent 50%);
  opacity: 0;
  transition: opacity var(--duration) var(--ease-smooth);
}

.menu-card:hover {
  border-color: rgba(232, 168, 56, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.menu-card:hover::before {
  opacity: 1;
}

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.menu-card-emoji {
  width: 56px;
  height: 56px;
  background: rgba(232, 168, 56, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: transform var(--duration) var(--ease-bounce);
}

.menu-card:hover .menu-card-emoji {
  transform: scale(1.15) rotate(-5deg);
}

.menu-card-price {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.menu-card h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.menu-card p {
  font-size: 0.88rem;
  color: var(--warm-gray-l);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.menu-card-tags {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.menu-tag {
  padding: 0.2rem 0.65rem;
  background: rgba(255, 248, 236, 0.05);
  border: 1px solid rgba(255, 248, 236, 0.08);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: var(--warm-gray-l);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.menu-tag.veg {
  background: rgba(58, 107, 53, 0.12);
  border-color: rgba(58, 107, 53, 0.25);
  color: #7FA86E;
}

.menu-tag.spicy {
  background: rgba(192, 57, 43, 0.1);
  border-color: rgba(192, 57, 43, 0.25);
  color: #E07060;
}

.menu-tag.popular {
  background: rgba(232, 168, 56, 0.1);
  border-color: rgba(232, 168, 56, 0.25);
  color: var(--gold-light);
}


/* ── Specials / Highlight Section ── */
.specials {
  padding: var(--space-5xl) 0;
  position: relative;
}

.specials-card {
  background:
    linear-gradient(135deg, rgba(232, 168, 56, 0.06) 0%, rgba(44, 36, 32, 0.8) 50%, rgba(212, 98, 43, 0.04) 100%);
  border: 1px solid rgba(232, 168, 56, 0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.specials-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.specials-content .section-label {
  color: var(--saffron);
}

.specials-content .section-label::before {
  background: var(--saffron);
}

.specials-content h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.specials-content p {
  font-size: 1rem;
  color: var(--warm-gray-l);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.specials-meta {
  display: flex;
  gap: var(--space-2xl);
}

.specials-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.specials-meta-item .meta-icon {
  font-size: 1.2rem;
}

.specials-meta-item .meta-text {
  font-size: 0.85rem;
  color: var(--cream-dark);
}

/* CSS Art Dosa */
.specials-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dosa-art {
  position: relative;
  width: 350px;
  height: 280px;
}

/* The dosa itself — a golden crepe rolled into a cone */
.dosa-body {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 80px;
  background:
    linear-gradient(170deg, #F5CC6A 0%, #E8A838 30%, #D4962A 60%, #C4871E 100%);
  border-radius: 50% 50% 8px 8px / 30% 30% 8px 8px;
  box-shadow:
    inset 0 -8px 15px rgba(0,0,0,0.15),
    inset 0 4px 10px rgba(255,255,255,0.1),
    0 8px 25px rgba(0,0,0,0.3);
  position: relative;
}

/* Dosa crispy texture (dots) */
.dosa-body::before {
  content: '';
  position: absolute;
  inset: 8px;
  background:
    radial-gradient(1.5px 1.5px at 10% 40%, rgba(139,94,60,0.3) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 30% 25%, rgba(139,94,60,0.25) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 55% 50%, rgba(139,94,60,0.2) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 70% 30%, rgba(139,94,60,0.3) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 85% 45%, rgba(139,94,60,0.25) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 40% 60%, rgba(139,94,60,0.2) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 20% 55%, rgba(139,94,60,0.3) 50%, transparent 50%);
}

/* Rolled cone end */
.dosa-body::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 10px;
  width: 30px;
  height: 60px;
  background:
    linear-gradient(180deg, #E8A838, #C4871E);
  border-radius: 0 50% 50% 0;
  box-shadow: inset -4px 0 8px rgba(0,0,0,0.15);
}

/* Plate under dosa */
.dosa-plate {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 50px;
  background:
    linear-gradient(180deg, #F5F0E0, #EDE5D0);
  border-radius: 50%;
  box-shadow:
    0 4px 15px rgba(0,0,0,0.2),
    inset 0 -3px 8px rgba(0,0,0,0.05);
}

.dosa-plate::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.05);
}

/* Small chutney cup beside the dosa */
.chutney-cup {
  position: absolute;
  bottom: 40px;
  left: 25px;
  width: 50px;
  height: 35px;
  background:
    linear-gradient(180deg, #F5F0E0, #E8E0D0);
  border-radius: 5px 5px 40% 40%;
  box-shadow:
    inset 0 0 8px rgba(0,0,0,0.1),
    0 2px 6px rgba(0,0,0,0.2);
  overflow: hidden;
}

/* Green chutney inside */
.chutney-cup::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 5px;
  right: 5px;
  height: 16px;
  background:
    radial-gradient(ellipse at 40% 40%, rgba(255,255,255,0.1) 0%, transparent 50%),
    linear-gradient(180deg, #5D8A4C, #3A6B35);
  border-radius: 2px 2px 40% 40%;
}

/* Small sambar cup */
.sambar-cup {
  position: absolute;
  bottom: 40px;
  right: 20px;
  width: 50px;
  height: 35px;
  background:
    linear-gradient(180deg, #F5F0E0, #E8E0D0);
  border-radius: 5px 5px 40% 40%;
  box-shadow:
    inset 0 0 8px rgba(0,0,0,0.1),
    0 2px 6px rgba(0,0,0,0.2);
  overflow: hidden;
}

.sambar-cup::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 5px;
  right: 5px;
  height: 16px;
  background:
    radial-gradient(ellipse at 40% 40%, rgba(255,255,255,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #D4622B, #B8511A);
  border-radius: 2px 2px 40% 40%;
}


/* ── Testimonials ── */
.testimonials {
  padding: var(--space-5xl) 0;
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 168, 56, 0.15), transparent);
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.testimonials-header .section-label {
  justify-content: center;
}

.testimonials-header .section-label::before { display: none; }

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: rgba(44, 36, 32, 0.5);
  border: 1px solid rgba(255, 248, 236, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--duration) var(--ease-smooth);
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(232, 168, 56, 0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-lg);
}

.testimonial-stars span {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--cream-dark);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.testimonial-card blockquote::before {
  content: '"';
  font-family: var(--ff-display);
  font-size: 3rem;
  color: rgba(232, 168, 56, 0.2);
  line-height: 0;
  display: block;
  margin-bottom: var(--space-sm);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
}

.testimonial-author-info .author-name {
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial-author-info .author-detail {
  font-size: 0.78rem;
  color: var(--warm-gray-l);
  margin-top: 2px;
}


/* ── Gallery / Ambiance Section ── */
.gallery {
  padding: var(--space-5xl) 0;
  position: relative;
}

.gallery-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.gallery-header .section-label {
  justify-content: center;
}
.gallery-header .section-label::before { display: none; }
.gallery-header .section-subtitle {
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--duration) var(--ease-smooth);
}

.gallery-item:hover {
  transform: scale(1.02);
  z-index: 2;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

/* CSS Art gallery items — each a mini food illustration */
.gallery-art {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Idli plate scene */
.art-idli {
  background: linear-gradient(135deg, #2A2420, #1E1A16);
}

.idli {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at center, #FFFDF5 0%, #F5F0E0 50%, #E8E0D0 100%);
  box-shadow:
    inset 0 -6px 12px rgba(0,0,0,0.08),
    0 4px 10px rgba(0,0,0,0.2);
}

.idli-1 {
  width: 90px;
  height: 45px;
  border-radius: 50% 50% 45% 45%;
  bottom: 40%;
  left: 25%;
}

.idli-2 {
  width: 80px;
  height: 40px;
  border-radius: 50% 50% 45% 45%;
  bottom: 38%;
  left: 48%;
}

.idli-3 {
  width: 85px;
  height: 42px;
  border-radius: 50% 50% 45% 45%;
  bottom: 52%;
  left: 36%;
}

/* Caption overlay */
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(26, 20, 16, 0.9), transparent);
  transform: translateY(100%);
  transition: transform var(--duration) var(--ease-smooth);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--white);
}

.gallery-caption p {
  font-size: 0.78rem;
  color: var(--warm-gray-l);
  margin-top: 2px;
}

/* Filter coffee art */
.art-coffee {
  background: linear-gradient(135deg, #2A2018, #1E1610);
}

.coffee-tumbler {
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 70px;
  background: linear-gradient(145deg, #C4A265, #A68B55, #8B7340);
  border-radius: 3px 3px 8px 8px;
  box-shadow:
    inset 0 0 10px rgba(0,0,0,0.2),
    0 4px 12px rgba(0,0,0,0.3);
}

/* Coffee inside */
.coffee-tumbler::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 5px;
  right: 5px;
  height: 20px;
  background:
    radial-gradient(ellipse at 40% 30%, rgba(255,255,255,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #4A3020, #3A2518);
  border-radius: 2px;
}

/* Davara (saucer cup) */
.coffee-davara {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 25px;
  background: linear-gradient(145deg, #C4A265, #8B7340);
  border-radius: 50%;
  box-shadow:
    inset 0 -3px 6px rgba(0,0,0,0.2),
    0 3px 8px rgba(0,0,0,0.3);
}

/* Coffee steam */
.coffee-steam {
  position: absolute;
  bottom: calc(25% + 72px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.coffee-steam span {
  width: 2px;
  height: 20px;
  background: linear-gradient(to top, rgba(255,255,255,0.1), transparent);
  border-radius: 2px;
  animation: steam-rise 2s ease-in-out infinite;
}

.coffee-steam span:nth-child(2) { animation-delay: 0.6s; height: 16px; }
.coffee-steam span:nth-child(3) { animation-delay: 1.2s; height: 18px; }

/* Biryani pot art */
.art-biryani {
  background: linear-gradient(135deg, #28201C, #1C1614);
}

.biryani-pot {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 65px;
  background: linear-gradient(145deg, #6B5D52, #4A3F38);
  border-radius: 10px 10px 50% 50%;
  box-shadow:
    inset 0 0 12px rgba(0,0,0,0.2),
    0 4px 12px rgba(0,0,0,0.4);
  overflow: hidden;
}

/* Biryani rice layers visible on top */
.biryani-pot::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 8px;
  right: 8px;
  height: 30px;
  background:
    linear-gradient(180deg,
      #F5F0E0 0%, #F5F0E0 25%,
      #E8A838 25%, #E8A838 35%,
      #FFFDF5 35%, #FFFDF5 55%,
      #D4622B 55%, #D4622B 65%,
      #F5F0E0 65%);
  border-radius: 4px;
}

/* Pot lid */
.biryani-lid {
  position: absolute;
  bottom: calc(20% + 60px);
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 20px;
  background: linear-gradient(180deg, #8B7D70, #6B5D52);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Lid knob */
.biryani-lid::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 10px;
  background: #A68B55;
  border-radius: 4px 4px 0 0;
}

/* Vada art */
.art-vada {
  background: linear-gradient(135deg, #2A2420, #1E1A16);
}

.vada {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background:
    radial-gradient(circle at 40% 35%, rgba(255,255,255,0.08) 0%, transparent 40%),
    linear-gradient(145deg, #D4962A, #B87D1E, #A06818);
  border-radius: 50%;
  box-shadow:
    inset 0 -4px 8px rgba(0,0,0,0.15),
    0 4px 12px rgba(0,0,0,0.3);
}

/* Vada hole */
.vada::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: #2A2420;
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

/* Vada texture */
.vada::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background:
    radial-gradient(1px 1px at 20% 30%, rgba(139,94,60,0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 60% 25%, rgba(139,94,60,0.25) 50%, transparent 50%),
    radial-gradient(1px 1px at 40% 65%, rgba(139,94,60,0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 75% 55%, rgba(139,94,60,0.25) 50%, transparent 50%);
}

/* Payasam art */
.art-payasam {
  background: linear-gradient(135deg, #2A2420, #1E1A16);
}

.payasam-bowl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 50px;
  background: linear-gradient(145deg, #C4A265, #A68B55);
  border-radius: 8px 8px 50% 50%;
  box-shadow:
    inset 0 0 10px rgba(0,0,0,0.2),
    0 4px 10px rgba(0,0,0,0.3);
  overflow: hidden;
}

/* Payasam inside */
.payasam-bowl::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  height: 22px;
  background:
    radial-gradient(ellipse at 40% 30%, rgba(255,255,255,0.12) 0%, transparent 50%),
    linear-gradient(180deg, #F5E6CC, #E8D5B0);
  border-radius: 3px;
}

/* Cashew and raisin garnish */
.payasam-bowl::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 20px;
  width: 8px;
  height: 5px;
  background: #D4962A;
  border-radius: 50%;
  box-shadow:
    15px 2px 0 0 #8B2A1F,
    30px -1px 0 1px #D4962A,
    8px 6px 0 -1px #8B2A1F;
}


/* ── Experience / Ambiance Section ── */
.experience {
  padding: var(--space-5xl) 0;
  position: relative;
}

.experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 168, 56, 0.15), transparent);
}

.experience .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.experience-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.exp-feature {
  padding: var(--space-xl);
  background: rgba(44, 36, 32, 0.4);
  border: 1px solid rgba(255, 248, 236, 0.05);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease-smooth);
}

.exp-feature:hover {
  border-color: rgba(232, 168, 56, 0.15);
  background: rgba(44, 36, 32, 0.6);
}

.exp-feature .exp-icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
  display: block;
}

.exp-feature h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.exp-feature p {
  font-size: 0.82rem;
  color: var(--warm-gray-l);
  line-height: 1.6;
}


/* ── Reservation / CTA Section ── */
.reservation {
  padding: var(--space-5xl) 0;
  position: relative;
}

.reservation-card {
  background:
    linear-gradient(135deg, rgba(232, 168, 56, 0.05) 0%, rgba(26, 20, 16, 0.9) 50%, rgba(212, 98, 43, 0.03) 100%);
  border: 1px solid rgba(232, 168, 56, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reservation-card::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(232, 168, 56, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.reservation-card .section-label {
  justify-content: center;
}

.reservation-card .section-label::before { display: none; }

.reservation-card .section-title {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.reservation-card .section-subtitle {
  margin: 0 auto var(--space-2xl);
  text-align: center;
}

.reservation-form {
  display: flex;
  gap: var(--space-md);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  flex-wrap: wrap;
  justify-content: center;
}

.reservation-form input,
.reservation-form select {
  padding: 0.85rem 1.2rem;
  background: rgba(255, 248, 236, 0.05);
  border: 1px solid rgba(255, 248, 236, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--ff-accent);
  font-size: 0.9rem;
  color: var(--cream);
  outline: none;
  transition: border-color var(--duration) var(--ease-smooth);
  flex: 1;
  min-width: 160px;
}

.reservation-form input::placeholder {
  color: var(--warm-gray);
}

.reservation-form input:focus,
.reservation-form select:focus {
  border-color: var(--gold);
}

.reservation-form select option {
  background: var(--smoke);
  color: var(--cream);
}

.reservation-info {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.reservation-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.reservation-info-item .info-icon {
  font-size: 1.2rem;
}

.reservation-info-item .info-text {
  font-size: 0.88rem;
  color: var(--cream-dark);
}

.reservation-info-item .info-text strong {
  display: block;
  font-size: 0.78rem;
  color: var(--warm-gray-l);
  font-weight: 400;
  margin-top: 2px;
}


/* ── Footer ── */
.footer {
  padding: var(--space-4xl) 0 var(--space-2xl);
  border-top: 1px solid rgba(255, 248, 236, 0.06);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .nav-logo {
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--warm-gray-l);
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 248, 236, 0.05);
  border: 1px solid rgba(255, 248, 236, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--duration) var(--ease-smooth);
}

.social-link:hover {
  background: rgba(232, 168, 56, 0.1);
  border-color: rgba(232, 168, 56, 0.3);
  transform: translateY(-2px);
}

.footer-column h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.footer-column ul li {
  margin-bottom: var(--space-sm);
}

.footer-column ul li a {
  font-size: 0.88rem;
  color: var(--warm-gray-l);
  transition: color var(--duration) var(--ease-smooth);
}

.footer-column ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 248, 236, 0.06);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--warm-gray);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-xl);
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--warm-gray);
  transition: color var(--duration) var(--ease-smooth);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}


/* ── Animations ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Background animated particles */
.bg-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: particle-drift linear infinite;
}

@keyframes particle-drift {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.15;
  }
  90% {
    opacity: 0.08;
  }
  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}


/* ── Responsive Design ── */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .thali {
    width: 350px;
    height: 350px;
  }

  .katori-sambar { width: 80px; height: 80px; top: 30px; }
  .katori-rasam { width: 72px; height: 72px; top: 60px; right: 35px; }
  .katori-chutney { width: 68px; height: 68px; bottom: 60px; right: 38px; }
  .katori-dal { width: 72px; height: 72px; bottom: 40px; }
  .katori-poriyal { width: 68px; height: 68px; top: 65px; left: 35px; }
  .katori-curd { width: 68px; height: 68px; bottom: 58px; left: 38px; }
  .rice-mound { width: 100px; height: 80px; }

  .story .container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .story-content {
    padding-left: 0;
  }

  .specials-card {
    grid-template-columns: 1fr;
    padding: var(--space-2xl);
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .experience .container {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: rgba(26, 20, 16, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: var(--space-xl);
    transition: right 0.4s var(--ease-smooth);
    border-left: 1px solid rgba(232, 168, 56, 0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    padding: var(--space-4xl) 0;
    min-height: auto;
  }

  .thali {
    width: 280px;
    height: 280px;
  }

  .katori-sambar { width: 65px; height: 65px; top: 22px; }
  .katori-rasam { width: 58px; height: 58px; top: 50px; right: 25px; }
  .katori-chutney { width: 55px; height: 55px; bottom: 50px; right: 28px; }
  .katori-dal { width: 58px; height: 58px; bottom: 30px; }
  .katori-poriyal { width: 55px; height: 55px; top: 52px; left: 25px; }
  .katori-curd { width: 55px; height: 55px; bottom: 48px; left: 28px; }
  .rice-mound { width: 80px; height: 65px; }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
  }

  .hero-actions {
    flex-direction: column;
    gap: var(--space-md);
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .experience-features {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 160px);
  }

  .dosa-art {
    width: 260px;
    height: 220px;
  }

  .dosa-body {
    width: 200px;
    height: 60px;
  }

  .dosa-plate {
    width: 240px;
    height: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .reservation-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  html { font-size: 14px; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 160px);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .specials-meta {
    flex-direction: column;
    gap: var(--space-md);
  }

  .reservation-info {
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
  }
}


/* ── Scrollbar Styling ── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
  background: rgba(232, 168, 56, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(232, 168, 56, 0.5);
}

/* ── Preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s var(--ease-smooth), visibility 0.6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  animation: preloader-pulse 1.5s ease-in-out infinite;
}

@keyframes preloader-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(232, 168, 56, 0.4); }
  50% { transform: scale(1.08); box-shadow: 0 0 30px 10px rgba(232, 168, 56, 0); }
}

.preloader-text {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: 0.1em;
}

/* Smooth Number Counter Animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Nav overlay for mobile */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 998;
  transition: all 0.3s var(--ease-smooth);
}

.nav-overlay.visible {
  opacity: 1;
  visibility: visible;
}
