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

:root {
  --red: #E31E24;
  --gold: #F9CF7A;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --cream: #FFF8F0;
  --veg-green: #2E7D32;
  --nonveg-red: #E31E24;
  --brass: #C8A255;
  --copper: #B87333;
  --turmeric: #E8A317;
  --saffron: #F4C430;
  --leaf-dark: #2E5A1E;
  --leaf-light: #4A8C3F;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, sans-serif;
  --font-story: 'Lora', Georgia, serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* ===== KOLAM PATTERN (CSS-only) ===== */
.kolam-pattern {
  background-image:
    radial-gradient(circle at 20px 20px, var(--gold) 2px, transparent 2px),
    radial-gradient(circle at 40px 40px, var(--gold) 2px, transparent 2px),
    radial-gradient(circle at 20px 40px, var(--gold) 1.5px, transparent 1.5px),
    radial-gradient(circle at 40px 20px, var(--gold) 1.5px, transparent 1.5px);
  background-size: 60px 60px;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 2px;
  text-transform: uppercase;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.4s ease;
  margin-top: 0;
}

.nav.scrolled .nav-logo-sub {
  max-height: 20px;
  opacity: 1;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

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

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

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(227, 30, 36, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(249, 207, 122, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(184, 115, 51, 0.06) 0%, transparent 40%),
    linear-gradient(180deg, #1A1A1A 0%, #221816 40%, #1e1410 60%, #1A1A1A 100%);
  overflow: hidden;
}

/* Floating kolam dot patterns */
.hero-kolam-float {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: kolamFloat 20s ease-in-out infinite;
}

.hero-kolam-float::before,
.hero-kolam-float::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.hero-kolam-float--1 {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 8%;
  background:
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(249, 207, 122, 0.15) 31%, rgba(249, 207, 122, 0.15) 32%, transparent 33%),
    radial-gradient(circle at 50% 50%, transparent 55%, rgba(249, 207, 122, 0.1) 56%, rgba(249, 207, 122, 0.1) 57%, transparent 58%),
    radial-gradient(circle at 50% 50%, rgba(249, 207, 122, 0.2) 3px, transparent 4px),
    radial-gradient(circle at 50% 20%, rgba(249, 207, 122, 0.15) 2px, transparent 3px),
    radial-gradient(circle at 50% 80%, rgba(249, 207, 122, 0.15) 2px, transparent 3px),
    radial-gradient(circle at 20% 50%, rgba(249, 207, 122, 0.15) 2px, transparent 3px),
    radial-gradient(circle at 80% 50%, rgba(249, 207, 122, 0.15) 2px, transparent 3px),
    radial-gradient(circle at 28% 28%, rgba(249, 207, 122, 0.12) 2px, transparent 3px),
    radial-gradient(circle at 72% 28%, rgba(249, 207, 122, 0.12) 2px, transparent 3px),
    radial-gradient(circle at 28% 72%, rgba(249, 207, 122, 0.12) 2px, transparent 3px),
    radial-gradient(circle at 72% 72%, rgba(249, 207, 122, 0.12) 2px, transparent 3px);
  animation-delay: 0s;
  animation-duration: 22s;
}

.hero-kolam-float--2 {
  width: 90px;
  height: 90px;
  top: 60%;
  right: 10%;
  background:
    radial-gradient(circle at 50% 50%, rgba(227, 30, 36, 0.15) 3px, transparent 4px),
    radial-gradient(circle at 50% 15%, rgba(227, 30, 36, 0.12) 2px, transparent 3px),
    radial-gradient(circle at 50% 85%, rgba(227, 30, 36, 0.12) 2px, transparent 3px),
    radial-gradient(circle at 15% 50%, rgba(227, 30, 36, 0.12) 2px, transparent 3px),
    radial-gradient(circle at 85% 50%, rgba(227, 30, 36, 0.12) 2px, transparent 3px),
    radial-gradient(circle at 50% 50%, transparent 38%, rgba(227, 30, 36, 0.1) 39%, rgba(227, 30, 36, 0.1) 40%, transparent 41%);
  animation-delay: -7s;
  animation-duration: 18s;
}

.hero-kolam-float--3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  background:
    radial-gradient(circle at 50% 50%, transparent 25%, rgba(200, 162, 85, 0.1) 26%, rgba(200, 162, 85, 0.1) 27%, transparent 28%),
    radial-gradient(circle at 50% 50%, transparent 45%, rgba(200, 162, 85, 0.07) 46%, rgba(200, 162, 85, 0.07) 47%, transparent 48%),
    radial-gradient(circle at 50% 50%, rgba(200, 162, 85, 0.14) 3px, transparent 4px),
    radial-gradient(circle at 33% 25%, rgba(200, 162, 85, 0.1) 2px, transparent 3px),
    radial-gradient(circle at 67% 25%, rgba(200, 162, 85, 0.1) 2px, transparent 3px),
    radial-gradient(circle at 25% 60%, rgba(200, 162, 85, 0.1) 2px, transparent 3px),
    radial-gradient(circle at 75% 60%, rgba(200, 162, 85, 0.1) 2px, transparent 3px),
    radial-gradient(circle at 50% 80%, rgba(200, 162, 85, 0.1) 2px, transparent 3px);
  animation-delay: -4s;
  animation-duration: 25s;
}

.hero-kolam-float--4 {
  width: 80px;
  height: 80px;
  top: 25%;
  right: 15%;
  background:
    radial-gradient(circle at 50% 50%, rgba(249, 207, 122, 0.18) 2px, transparent 3px),
    radial-gradient(circle at 30% 30%, rgba(249, 207, 122, 0.14) 1.5px, transparent 2.5px),
    radial-gradient(circle at 70% 30%, rgba(249, 207, 122, 0.14) 1.5px, transparent 2.5px),
    radial-gradient(circle at 30% 70%, rgba(249, 207, 122, 0.14) 1.5px, transparent 2.5px),
    radial-gradient(circle at 70% 70%, rgba(249, 207, 122, 0.14) 1.5px, transparent 2.5px),
    radial-gradient(circle at 50% 50%, transparent 32%, rgba(249, 207, 122, 0.1) 33%, rgba(249, 207, 122, 0.1) 34%, transparent 35%);
  animation-delay: -11s;
  animation-duration: 20s;
}

@keyframes kolamFloat {
  0% {
    opacity: 0;
    transform: translateY(10px) rotate(0deg) scale(0.9);
  }
  15% {
    opacity: 1;
  }
  50% {
    transform: translateY(-15px) rotate(90deg) scale(1.05);
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(10px) rotate(180deg) scale(0.9);
  }
}

/* Warm ambient glow */
.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-glow--left {
  left: -100px;
  top: 30%;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.12) 0%, transparent 70%);
  animation: glowPulse 8s ease-in-out infinite;
}

.hero-glow--right {
  right: -100px;
  bottom: 20%;
  background: radial-gradient(circle, rgba(244, 196, 48, 0.08) 0%, transparent 70%);
  animation: glowPulse 8s ease-in-out infinite;
  animation-delay: -4s;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* ===== LIVING KOLAM SVG ===== */
.hero-kolam-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  z-index: 1;
  opacity: 0.18;
  pointer-events: none;
}

.kolam-draw {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawKolam 3.5s ease-out forwards;
}

.kolam-draw--d2 { animation-delay: 0.3s; }
.kolam-draw--d3 { animation-delay: 0.6s; }
.kolam-draw--d4 { animation-delay: 0.9s; }
.kolam-draw--d5 {
  stroke-width: 1;
  stroke: var(--brass);
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation-delay: 1.2s;
}
.kolam-draw--d6 {
  stroke-width: 1;
  stroke: var(--gold);
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation-delay: 1.8s;
  animation-duration: 1.5s;
}

@keyframes drawKolam {
  to { stroke-dashoffset: 0; }
}

.kolam-dot {
  fill: var(--gold);
  opacity: 0;
  animation: kolamDotAppear 0.5s ease-out forwards;
  animation-delay: 2.5s;
}

.kolam-dot:nth-child(n+6) { animation-delay: 2.7s; }
.kolam-dot:nth-child(n+8) { animation-delay: 2.9s; }

@keyframes kolamDotAppear {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== SPICE MIST & STEAM ===== */
.hero-mist {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 100%, rgba(227, 30, 36, 0.06), transparent 60%);
  filter: blur(30px);
}

.steam-particle {
  position: absolute;
  bottom: -20px;
  background: rgba(249, 207, 122, 0.07);
  border-radius: 50%;
  filter: blur(25px);
  animation: steamRise 7s infinite ease-in-out;
}

.steam-particle--d2 {
  animation-duration: 9s;
  animation-delay: 2s;
  background: rgba(184, 115, 51, 0.06);
}

.steam-particle--d3 {
  animation-duration: 6s;
  animation-delay: 4s;
  background: rgba(227, 30, 36, 0.05);
}

@keyframes steamRise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-60px) scale(1.6);
    opacity: 0;
  }
}

/* ===== SCROLL-TRIGGERED REVEALS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-kolam-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px, var(--gold) 8px,
    transparent 8px, transparent 12px,
    var(--red) 12px, var(--red) 20px,
    transparent 20px, transparent 24px
  );
  z-index: 5;
  box-shadow: 0 0 20px rgba(249, 207, 122, 0.3);
}

.hero-kolam-bottom {
  top: auto;
  bottom: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
}

.hero-tagline-top {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.15em;
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 2px 40px rgba(227, 30, 36, 0.2);
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    var(--white) 40%,
    var(--gold) 50%,
    var(--white) 60%,
    var(--white) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards,
    heroShimmer 8s ease-in-out 4s infinite;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 8px;
  text-shadow: 0 0 40px rgba(249, 207, 122, 0.3);
}

.hero-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 40px;
}

.hero-address {
  display: inline-block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 40px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
  cursor: default;
}

.hero-address:hover {
  color: rgba(255,255,255,0.75);
  border-bottom-color: rgba(255,255,255,0.3);
  cursor: pointer;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: transparent;
  color: var(--red);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 20px rgba(249, 207, 122, 0.2);
}

/* ===== TEMPLE DIVIDER ===== */
.temple-divider {
  height: 60px;
  background: var(--cream);
  margin-top: -1px;
}

.temple-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.temple-divider-dark {
  background: var(--cream);
}

.temple-divider-dark svg path {
  fill: var(--black);
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--black);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--copper), var(--red));
  margin: 16px auto 0;
  background-size: 200% 100%;
  animation: brassShimmer 4s ease-in-out infinite;
}

@keyframes brassShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 200% 50%; }
}

.section-title-light {
  color: var(--white);
}

.section-title-light::after {
  background: var(--gold);
}

/* ===== STORY ===== */
.story {
  padding: 100px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.story-content {
  max-width: 680px;
  margin: 0 auto;
}

/* Pull quote - the meaning line */
.story-pullquote {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
  position: relative;
}

.story-pullquote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.25;
  margin-bottom: -12px;
}

.story-pullquote p:first-child {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.story-pullquote p:first-child em {
  font-style: italic;
  color: var(--red);
}

.story-pullquote-sub {
  font-family: var(--font-story);
  font-size: 1.05rem;
  font-style: italic;
  color: #777;
  margin-top: 8px;
  line-height: 1.6;
}

/* Story body text */
.story-text p {
  font-family: var(--font-story);
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4a4a4a;
  letter-spacing: 0.01em;
}

/* Drop cap on the first paragraph */
.story-lede::first-letter {
  font-family: var(--font-heading);
  float: left;
  font-size: 3.4em;
  line-height: 0.8;
  font-weight: 700;
  color: var(--red);
  margin: 0.05em 0.12em 0 0;
  padding-top: 0.05em;
}

.story-details {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.story-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #666;
}

.detail-icon {
  font-size: 1.3rem;
}

.tamil-script {
  font-family: var(--font-body);
  font-size: 0.8em;
  color: #999;
  font-style: normal;
  letter-spacing: 0.02em;
}

/* Story inline tooltips */
.story-tip {
  position: relative;
  color: var(--black);
  border-bottom: 1px dotted rgba(227, 30, 36, 0.35);
  cursor: default;
  transition: color 0.2s;
}

.story-tip:hover {
  color: var(--red);
}

.story-tip::after {
  content: attr(data-tip);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--black);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  padding: 8px 14px;
  border-radius: 8px;
  width: max-content;
  max-width: 280px;
  min-width: 160px;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.story-tip::before {
  content: '';
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: var(--black);
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 10;
  pointer-events: none;
}

.story-tip:hover::after,
.story-tip:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.story-tip:hover::before {
  transform: translateX(-50%);
}

/* Mobile: tap to show */
.story-tip.active::after,
.story-tip.active::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.story-tip.active::before {
  transform: translateX(-50%);
}

.story-link {
  color: var(--red);
  font-weight: 500;
  border-bottom: 1px solid rgba(227, 30, 36, 0.3);
  transition: border-color 0.3s;
}

.story-link:hover {
  border-color: var(--red);
}

/* Beli Badges */
.beli-badges {
  margin-top: 32px;
  text-align: center;
}

.beli-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 32px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.beli-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.beli-powered {
  font-size: 0.8rem;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.beli-powered strong {
  color: var(--black);
}

.beli-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.beli-tag {
  background: var(--black);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* ===== MENU ===== */
.menu {
  padding: 80px 0 100px;
  background: var(--black);
  position: relative;
}

.menu-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  margin-top: -24px;
  margin-bottom: 40px;
  font-weight: 300;
}

/* Search */
.menu-search-wrapper {
  max-width: 480px;
  margin: 0 auto 24px;
}

.menu-search {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.35);
  pointer-events: none;
}

.menu-search input {
  width: 100%;
  padding: 12px 40px 12px 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.menu-search input::placeholder {
  color: rgba(255,255,255,0.3);
}

.menu-search input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

.search-clear {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

.search-clear:hover {
  color: var(--white);
}

/* Category Tabs */
.menu-tabs-wrapper {
  margin-bottom: 24px;
  padding-bottom: 4px;
}

.menu-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 24px;
}

.menu-tab {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  padding: 8px 20px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.menu-tab:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.menu-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Veg Toggle */
.menu-filters {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.veg-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.veg-toggle input {
  display: none;
}

.veg-toggle-slider {
  width: 44px;
  height: 24px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  position: relative;
  transition: background 0.3s;
}

.veg-toggle-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s;
}

.veg-toggle input:checked + .veg-toggle-slider {
  background: var(--veg-green);
}

.veg-toggle input:checked + .veg-toggle-slider::after {
  transform: translateX(20px);
}

.veg-toggle-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 400;
}

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

/* Category Header */
.menu-category-header {
  grid-column: 1 / -1;
  padding: 24px 0 8px;
}

.menu-category-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(249, 207, 122, 0.2);
  padding-bottom: 12px;
}

/* Menu Item */
.menu-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.3s, border-color 0.3s;
}

.menu-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.menu-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.menu-item-name-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.menu-item-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.3;
}

.menu-item-veg {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1.5px solid var(--veg-green);
  position: relative;
  flex-shrink: 0;
}

.menu-item-veg::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--veg-green);
}

.menu-item-nonveg {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1.5px solid var(--nonveg-red);
  position: relative;
  flex-shrink: 0;
}

.menu-item-nonveg::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 7px solid var(--nonveg-red);
}

.menu-item-star {
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-item-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.menu-item-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-item-spice {
  font-size: 0.75rem;
  color: var(--red);
  letter-spacing: 1px;
}

/* ===== ALLERGY NOTICE ===== */
.menu-allergy-notice {
  margin-top: 60px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
}

.allergy-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
  opacity: 0.7;
}

.menu-allergy-notice h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.allergy-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
  text-align: left;
}

.allergy-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.allergy-item p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.allergy-cta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto;
}

.allergy-cta strong {
  color: var(--gold);
}

/* Banana leaf accent */
.banana-leaf-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--leaf-dark) 15%,
    var(--leaf-light) 35%,
    var(--leaf-dark) 50%,
    var(--leaf-light) 65%,
    var(--leaf-dark) 85%,
    transparent 100%
  );
  opacity: 0.25;
  z-index: 2;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 80px 0;
  background: var(--cream);
}

.reviews-subtitle {
  text-align: center;
  color: #999;
  font-size: 0.9rem;
  margin-top: -28px;
  margin-bottom: 40px;
  font-weight: 400;
}

.reviews-scroll {
  padding-bottom: 8px;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 28px 24px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

.review-card blockquote {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
  font-style: italic;
  flex: 1;
}

.review-card blockquote strong {
  color: var(--black);
  font-style: italic;
}

.review-dishes {
  font-size: 0.72rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.review-card cite {
  font-size: 0.8rem;
  color: #999;
  font-style: normal;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-badge {
  display: inline-block;
  background: #f0f0f0;
  color: #777;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

/* ===== FEATURED IN ===== */
.featured {
  padding: 80px 0;
  background: var(--black);
}

.featured .section-title {
  color: var(--white);
}

.featured .section-title::after {
  background: var(--gold);
}

.featured-press {
  max-width: 640px;
  margin: 0 auto 48px;
}

.featured-article {
  display: block;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.3s, background 0.3s;
}

.featured-article:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.featured-article-source {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.featured-pub {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.featured-date {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.featured-article-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.featured-article-author {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  font-style: italic;
}

.featured-quote {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 12px;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}

.featured-quote:last-of-type {
  margin-bottom: 20px;
}

.featured-read {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.featured-logos {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.featured-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 28px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  transition: border-color 0.3s;
  min-width: 140px;
}

.featured-logo-item:hover {
  border-color: rgba(255,255,255,0.3);
}

.featured-logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.featured-logo-note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .featured-logos {
    gap: 12px;
  }

  .featured-logo-item {
    padding: 12px 20px;
    min-width: 120px;
  }
}

.featured-order-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  max-width: 200px;
  margin: 0 auto;
}

/* ===== ORDER ===== */
.order {
  padding: 80px 0;
  background: var(--black);
  text-align: center;
}

.order-subtitle {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  margin-top: -24px;
  margin-bottom: 48px;
  font-weight: 300;
}

.order-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.order-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 36px;
  border-radius: 8px;
  min-width: 220px;
  border: 2px solid rgba(255,255,255,0.15);
  transition: all 0.3s;
}

.order-btn:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.order-btn-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.order-btn-arrow {
  font-size: 1.3rem;
  color: var(--gold);
}

/* ===== VISIT ===== */
.visit {
  padding: 80px 0;
  background: var(--cream);
  position: relative;
}

.visit .section-title {
  text-align: left;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.visit-below {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.visit-below-col h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}

.visit-reservations {
  margin-top: 16px;
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
}

.visit-detail {
  margin-bottom: 32px;
}

.visit-detail h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.visit-detail p {
  color: #555;
  line-height: 1.7;
}

.visit-detail a {
  color: var(--red);
  transition: opacity 0.3s;
}

.visit-detail a:hover {
  opacity: 0.7;
}

.visit-neighborhood {
  font-size: 0.85rem;
  color: #999;
  margin-top: 4px;
}

.visit-directions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.visit-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 7px 14px;
  border: 1px solid rgba(227, 30, 36, 0.2);
  border-radius: 100px;
  transition: all 0.3s;
}

.visit-map-link:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.visit-map-link svg {
  flex-shrink: 0;
}

.hours-table {
  border-collapse: collapse;
}

.hours-table td {
  padding: 6px 0;
  font-size: 0.9rem;
  color: #555;
}

.hours-table td:first-child {
  font-weight: 500;
  padding-right: 24px;
  color: var(--black);
}

.hours-table .closed {
  color: var(--red);
  font-weight: 500;
}

.visit-map {
  min-height: 300px;
  border-radius: 12px;
  overflow: hidden;
}

.visit-map iframe {
  display: block;
}

.kolam-border-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px, var(--gold) 8px,
    transparent 8px, transparent 12px,
    var(--red) 12px, var(--red) 20px,
    transparent 20px, transparent 24px
  );
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  padding: 48px 0 24px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
}

.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin-top: 4px;
}

.footer-tagline {
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: color 0.3s;
}

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

.footer-bottom p {
  text-align: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
}

.footer-credit-link {
  color: rgba(255,255,255,0.4);
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.footer-credit-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroShimmer {
  0%, 100% { background-position: 200% 50%; }
  50% { background-position: -200% 50%; }
}

@keyframes revealLine {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0% 0 0);
  }
}

.hero-content > * {
  animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}

.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.5s; }
.hero-content > *:nth-child(3) { animation-delay: 0.9s; }
.hero-content > *:nth-child(4) { animation-delay: 1.1s; }
.hero-content > *:nth-child(5) { animation-delay: 1.4s; }

/* ===== KOLAM CORNER DECORATIONS ===== */
.kolam-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

.kolam-corner::before,
.kolam-corner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.kolam-corner::before {
  width: 6px;
  height: 6px;
  background: var(--brass);
  top: 10px;
  left: 10px;
  box-shadow:
    20px 0 0 var(--brass),
    40px 0 0 var(--brass),
    0 20px 0 var(--brass),
    20px 20px 0 var(--gold),
    40px 20px 0 var(--brass),
    0 40px 0 var(--brass),
    20px 40px 0 var(--brass),
    40px 40px 0 var(--brass),
    10px 10px 0 2px rgba(200, 162, 85, 0.3),
    30px 10px 0 2px rgba(200, 162, 85, 0.3);
}

.kolam-corner--tl {
  top: 20px;
  left: 20px;
}

.kolam-corner--tr {
  top: 20px;
  right: 20px;
  transform: scaleX(-1);
}

/* ===== JASMINE GARLAND BORDER ===== */
.reviews {
  position: relative;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80%);
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 4px,
    var(--gold) 4px,
    var(--gold) 8px,
    transparent 8px,
    transparent 10px,
    var(--cream) 10px,
    var(--cream) 14px,
    transparent 14px,
    transparent 18px
  );
  opacity: 0.35;
  border-radius: 2px;
}

/* ===== SECTION ENTRANCE ANIMATIONS ===== */
.story,
.reviews,
.featured,
.order,
.visit {
  position: relative;
}

.section-title {
  animation: none;
}

/* ===== BRASS ACCENT ON SECTION TITLES ===== */
.section-title::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  margin: 0 auto 12px;
  opacity: 0.4;
}

/* ===== BANANA LEAF SECTION ACCENT ===== */
.menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background:
    linear-gradient(175deg, transparent 48%, rgba(46, 90, 30, 0.02) 49%, rgba(46, 90, 30, 0.02) 51%, transparent 52%),
    linear-gradient(185deg, transparent 46%, rgba(74, 140, 63, 0.015) 47%, rgba(74, 140, 63, 0.015) 49%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.menu > .container {
  position: relative;
  z-index: 1;
}

/* ===== COPPER WARM ACCENTS ===== */
.story-pullquote strong {
  background: linear-gradient(135deg, var(--red), var(--copper));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.featured-article {
  border-color: rgba(200, 162, 85, 0.15);
}

.featured-article:hover {
  border-color: var(--brass);
  box-shadow: 0 0 40px rgba(200, 162, 85, 0.08);
}

/* ===== KOLAM DOT ACCENTS ON VISIT SECTION ===== */
.visit::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background:
    radial-gradient(circle at 50% 50%, var(--brass) 2px, transparent 3px),
    radial-gradient(circle at 25% 25%, var(--brass) 1.5px, transparent 2.5px),
    radial-gradient(circle at 75% 25%, var(--brass) 1.5px, transparent 2.5px),
    radial-gradient(circle at 25% 75%, var(--brass) 1.5px, transparent 2.5px),
    radial-gradient(circle at 75% 75%, var(--brass) 1.5px, transparent 2.5px),
    radial-gradient(circle at 50% 10%, var(--brass) 1px, transparent 2px),
    radial-gradient(circle at 50% 90%, var(--brass) 1px, transparent 2px),
    radial-gradient(circle at 10% 50%, var(--brass) 1px, transparent 2px),
    radial-gradient(circle at 90% 50%, var(--brass) 1px, transparent 2px);
  opacity: 0.15;
  pointer-events: none;
}

/* ===== REVIEWS VIEW MORE ===== */
.reviews-view-more-wrap {
  text-align: center;
  margin-top: 32px;
}

.reviews-view-more {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.5px;
  padding: 10px 28px;
  border: 1px solid rgba(227, 30, 36, 0.2);
  border-radius: 100px;
  transition: all 0.3s;
}

.reviews-view-more:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* ===== VISIT AMENITIES ===== */
.visit-amenities {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.visit-amenity {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #666;
  padding: 5px 14px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  letter-spacing: 0.3px;
}

/* ===== POPULAR TIMES ===== */
.popular-times {
  margin-top: 8px;
}

.pt-days {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.pt-day {
  flex: 1;
  padding: 6px 0;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: #999;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.pt-day:hover {
  color: var(--black);
  border-color: rgba(0, 0, 0, 0.2);
}

.pt-day.active {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}

.pt-day--closed {
  opacity: 0.4;
}

.pt-day--closed.active {
  opacity: 1;
}

.pt-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 80px;
  padding: 0 2px;
  margin-bottom: 12px;
}

.pt-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
  position: relative;
}

.pt-bar {
  width: 100%;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--brass), rgba(200, 162, 85, 0.4));
  transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s;
  min-height: 2px;
  position: relative;
  cursor: default;
}

.pt-bar--peak {
  background: linear-gradient(180deg, var(--red), rgba(227, 30, 36, 0.5));
}

.pt-bar:hover {
  background: linear-gradient(180deg, var(--gold), rgba(249, 207, 122, 0.6));
}

.pt-bar--peak:hover {
  background: linear-gradient(180deg, #ff3333, rgba(227, 30, 36, 0.7));
}

/* Tooltip on hover */
.pt-bar::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 5;
}

.pt-bar:hover::after {
  opacity: 1;
}

.pt-bar-label {
  font-size: 0.6rem;
  color: #bbb;
  letter-spacing: 0;
}

.pt-closed-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  color: #bbb;
  font-size: 0.85rem;
  font-style: italic;
}

.pt-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.pt-status {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--red);
}

.pt-duration {
  font-size: 0.7rem;
  color: #bbb;
  font-style: italic;
}

/* ===== TURMERIC LINE ON REVIEW CARDS ===== */
.review-card {
  border-top: 2px solid transparent;
  background-image: linear-gradient(var(--white), var(--white)), linear-gradient(90deg, var(--gold), var(--turmeric), var(--saffron));
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  border-top: 2px solid transparent;
}

/* ===== WARM HOVER ON BELI BADGES ===== */
.beli-link {
  border: 1px solid rgba(200, 162, 85, 0.1);
}

.beli-link:hover {
  border-color: rgba(200, 162, 85, 0.3);
  box-shadow: 0 6px 24px rgba(200, 162, 85, 0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .visit-below {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .visit .section-title {
    text-align: center;
  }

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

@media (max-width: 768px) {
  .hero-kolam-float {
    display: none;
  }

  .hero-kolam-svg {
    width: 90vw;
    height: 90vw;
    opacity: 0.12;
  }

  .hero-glow {
    width: 250px;
    height: 250px;
    filter: blur(80px);
  }

  .hero-mist {
    height: 30%;
  }

  .kolam-corner {
    display: none;
  }

  .visit::before {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
  }

  .menu-tabs-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .menu-tabs-wrapper::-webkit-scrollbar {
    display: none;
  }

  .menu-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    min-width: max-content;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .order-buttons {
    flex-direction: column;
    align-items: center;
  }

  .order-btn {
    width: 100%;
    max-width: 320px;
  }

  .reviews-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -24px;
    padding: 0 24px 16px;
  }

  .reviews-scroll::-webkit-scrollbar {
    display: none;
  }

  .reviews-track {
    display: flex;
    gap: 16px;
    min-width: max-content;
  }

  .review-card {
    width: 300px;
    min-width: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-kolam-float,
  .hero-glow,
  .hero-mist {
    display: none;
  }

  .hero-kolam-svg {
    opacity: 0.1;
  }

  .kolam-draw {
    stroke-dashoffset: 0;
  }

  .kolam-dot {
    opacity: 1;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 400px) {
  .hero-title {
    letter-spacing: 0.08em;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}

/* ===== AMMA CHATBOT ===== */
.amma-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  background: var(--red);
  color: var(--white);
  border-radius: 100px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(227, 30, 36, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  user-select: none;
}

.amma-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(227, 30, 36, 0.5);
}

.amma-fab-icon {
  font-size: 1.3rem;
}

.amma-fab-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.amma-fab.hidden {
  display: none;
}

.amma-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 901;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 520px;
  max-height: calc(100vh - 100px);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.amma-panel.active {
  display: flex;
}

.amma-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--black);
  color: var(--white);
}

.amma-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.amma-avatar {
  font-size: 1.5rem;
}

.amma-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
}

.amma-status {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
}

.amma-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.amma-close:hover {
  color: var(--white);
}

.amma-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.amma-msg {
  max-width: 90%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.6;
}

.amma-msg p {
  margin: 0;
}

.amma-msg-bot {
  background: #f5f0e8;
  color: var(--black);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.amma-msg-user {
  background: var(--red);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.amma-msg-loading {
  align-self: flex-start;
  background: #f5f0e8;
  padding: 12px 20px;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
}

.amma-dots {
  display: flex;
  gap: 4px;
}

.amma-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bbb;
  animation: ammaBounce 1.2s infinite;
}

.amma-dots span:nth-child(2) { animation-delay: 0.2s; }
.amma-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes ammaBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

.amma-input-wrap {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid #eee;
  background: var(--white);
}

.amma-input-wrap input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}

.amma-input-wrap input:focus {
  border-color: var(--red);
}

.amma-send {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  flex-shrink: 0;
}

.amma-send:hover {
  background: #c41a1f;
}

@media (max-width: 480px) {
  .amma-panel {
    bottom: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }

  .amma-fab-label {
    display: none;
  }

  .amma-fab {
    padding: 16px;
    border-radius: 50%;
  }
}
