/* ==========================================================================
   Design System Variables & Theme Setup
   ========================================================================== */
:root {
  /* Business Card Palette */
  --paddy: #133815;        /* Deep Signature Green */
  --leaf: #1E4620;         /* Medium Olive Green */
  --gold: #B47F2C;         /* Mustard Gold */
  --earth: #8A5712;        /* Cocoa Brown */
  --orange: #DE9827;       /* Amber Orange (from the pill) */
  --cream: #FAF4E8;        /* Exact Cream Background from Card */
  --cream-light: #FFFDF9;  /* Soft Warm White */
  --cream-dark: #E2D4BC;   /* Warm Sand Accent from Card edges */
  --ink: #2C251C;          /* Off-Black Charcoal */
  --muted: #7C6E5F;        /* Warm Taupe */
  --line: rgba(138, 87, 18, 0.15); /* Subtle Gold Line */
  --card: #FFFDF9;         /* Card Background */
  --shadow: 0 16px 40px rgba(44, 37, 28, 0.08); /* Soft Warm Shadow */
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Overrides */
body.dark {
  --cream: #121511;
  --cream-light: #181C16;
  --cream-dark: #0D0F0C;
  --card: #181C16;
  --ink: #F7EFE2;
  --muted: #A39688;
  --line: rgba(222, 152, 39, 0.15);
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

body.dark .hero-stats span {
  color: var(--ink);
  background: var(--cream-light);
  border-color: rgba(180, 127, 44, 0.3);
}

body.dark .hero-stats span:hover {
  background: var(--cream-dark);
  border-color: var(--gold);
}

body.dark .btn.secondary-dark {
  color: var(--ink);
  background: rgba(180, 127, 44, 0.1);
  border-color: var(--gold);
}

body.dark .btn.secondary-dark:hover {
  background: rgba(180, 127, 44, 0.25);
  color: #fff;
}


/* ==========================================================================
   Base Elements & Reset
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Outfit', 'Noto Sans Tamil', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at center, var(--cream-light) 0%, var(--cream) 60%, var(--cream-dark) 100%) fixed;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Texture overlay for organic look */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.02;
  background-image: radial-gradient(var(--ink) 1px, transparent 0);
  background-size: 8px 8px;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, textarea {
  font-family: inherit;
}

/* ==========================================================================
   Header & Sticky Navigation (Light Themed to Match Card Background)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(19, 56, 21, 0.96); /* Dark forest green header */
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--cream-light);
  transition: var(--transition);
}

/* Top Announcement/Utility Bar (Green Ribbon for Contrast) */
/* Top Announcement/Utility Bar (Cream Ribbon matching card background) */
.utility-bar {
  background: var(--cream-light);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1.5px solid var(--line);
  height: 48px;
  overflow: hidden;
  transition: var(--transition);
}

.utility-container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reg-numbers-images {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}

.utility-hologram {
  height: 30px;
  width: auto;
  border-radius: 4px;
  border: 1px solid var(--line);
  box-shadow: 0 1px 4px rgba(44, 37, 28, 0.03);
  transition: var(--transition);
}

.utility-hologram:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
}

.utility-middle-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.utility-vel {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 1px 2px rgba(19, 56, 21, 0.1));
  transition: var(--transition);
}

.utility-vel:hover {
  transform: scale(1.1);
}

.contact-numbers a {
  display: inline-flex;
  align-items: center;
  color: var(--paddy);
  font-weight: 700;
}

.utility-bar .divider {
  opacity: 0.3;
  margin: 0 10px;
  color: var(--muted);
}

.contact-numbers a:hover {
  color: var(--orange);
}

/* Navigation Menu */
.nav {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: var(--transition);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  background: #fff;
  box-shadow: 0 4px 12px rgba(44, 37, 28, 0.1);
  transition: var(--transition);
}

.brand strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--paddy);
}

.brand small {
  display: block;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.94rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--gold);
  transition: var(--transition);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-button {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream-light);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.moon, body.dark .sun { display: none; }
body.dark .moon { display: inline; }

.trust-badge {
  border-radius: 50%;
  padding: 2px;
  background: var(--gold);
  display: flex;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.since-badge {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  transition: var(--transition);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--cream-light);
  border-radius: 50%;
  padding: 11px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: var(--transition);
}

/* Shrinking Header - Scroll timeline implementation & fallback scrolled class styles */
@supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
  .site-header {
    animation: shrinkHeader auto linear both;
    animation-timeline: scroll(block root);
    animation-range: 0px 80px;
  }
  .site-header .nav {
    animation: shrinkNav auto linear both;
    animation-timeline: scroll(block root);
    animation-range: 0px 80px;
  }
  .site-header .utility-bar {
    animation: hideUtility auto linear both;
    animation-timeline: scroll(block root);
    animation-range: 0px 40px;
  }
  .site-header .brand-logo {
    animation: shrinkLogo auto linear both;
    animation-timeline: scroll(block root);
    animation-range: 0px 80px;
  }
  .site-header .since-badge {
    animation: shrinkBadge auto linear both;
    animation-timeline: scroll(block root);
    animation-range: 0px 80px;
  }
}

@keyframes shrinkHeader {
  to {
    background: rgba(19, 56, 21, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  }
}

@keyframes shrinkNav {
  to {
    min-height: 68px;
  }
}

@keyframes shrinkLogo {
  to {
    width: 60px;
    height: 60px;
  }
}

@keyframes shrinkBadge {
  to {
    width: 54px;
    height: 54px;
  }
}

@keyframes hideUtility {
  to {
    height: 0;
    transform: translateY(-100%);
    opacity: 0;
  }
}

/* Fallback class styles toggled by JavaScript */
.site-header.scrolled {
  background: rgba(19, 56, 21, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.site-header.scrolled .utility-bar {
  height: 0;
  transform: translateY(-100%);
  opacity: 0;
}

.site-header.scrolled .nav {
  min-height: 68px;
}

.site-header.scrolled .brand-logo {
  width: 60px;
  height: 60px;
}

.site-header.scrolled .since-badge {
  width: 54px;
  height: 54px;
}

/* ==========================================================================
   Hero Section: Premium Light Split Redesign
   ========================================================================== */
.hero {
  min-height: 82vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
}

.hero-container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-container.centered {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.hero-content {
  color: var(--ink);
}

.hero-brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-brand-wrap.centered {
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.hero-brand-wrap.centered .hero-buttons {
  justify-content: center;
}

.hero-title-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-bottom: 24px;
}

.hero-title-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(44, 37, 28, 0.04));
  display: block;
}

.hero-tagline {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 24px;
  display: inline-block;
}

/* Shimmering / Glittering effect overlay */
.hero-title-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(222, 168, 58, 0.4) 30%,   /* Gold tint shimmer */
    rgba(255, 255, 255, 0.8) 50%, /* Bright glitter highlight */
    rgba(222, 168, 58, 0.4) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  mix-blend-mode: color-dodge; /* Blends the shine brightness specifically onto the gold/brown letters! */
  animation: shimmerTitle 5s ease-in-out infinite;
}

@keyframes shimmerTitle {
  0% {
    left: -150%;
  }
  20% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

/* Card Orange Pill style */
.hero-pill {
  background: var(--orange);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  box-shadow: 0 4px 15px rgba(222, 152, 39, 0.25);
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-description {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 600px;
  line-height: 1.68;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.96rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 8px;
}

.btn.primary {
  color: #fff;
  background: var(--paddy);
  border: 2px solid var(--paddy);
  box-shadow: 0 6px 20px rgba(19, 56, 21, 0.2);
}

.btn.primary:hover {
  background: var(--leaf);
  border-color: var(--leaf);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(19, 56, 21, 0.3);
}

.btn.secondary-dark {
  color: var(--paddy);
  background: var(--cream-light);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow);
}

.btn.secondary-dark:hover {
  background: var(--cream-dark);
  color: var(--earth);
  transform: translateY(-2px);
}

/* Hero Image Section */
.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 460px;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--cream-light);
  box-shadow: var(--shadow);
}

/* Hero trust stamp removed */

.hero-stats {
  grid-column: 1 / -1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.hero-stats span {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  color: var(--paddy);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.hero-stats span:hover {
  background: var(--cream);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ==========================================================================
   Sections Grid & Layout
   ========================================================================== */
.section {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 100px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 50px;
}

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--paddy);
}

body.dark h2 {
  color: var(--orange);
}

/* Split Layout */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.section-copy p {
  font-size: 1.06rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.75;
}

.section-copy strong {
  color: var(--ink);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.pill-list span {
  background: var(--cream-light);
  color: var(--paddy);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: var(--transition);
}

body.dark .pill-list span {
  background: var(--cream-light);
  color: var(--orange);
}

.pill-list span:hover {
  background: var(--paddy);
  color: #fff;
  border-color: var(--paddy);
}

/* Image Stack */
.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 16px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 3px solid var(--cream-light);
}

.image-stack img:last-child {
  height: 300px;
  margin-bottom: -30px;
}

/* ==========================================================================
   Soft Band Section (Why Choose Us)
   ========================================================================== */
.soft-band {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - 1200px) / 2));
  padding-right: max(16px, calc((100vw - 1200px) / 2));
  background: linear-gradient(180deg, rgba(226, 212, 188, 0.4) 0%, rgba(250, 244, 232, 0.4) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: 0 20px 48px rgba(44, 37, 28, 0.12);
}

.feature-card span {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--paddy);
  margin-bottom: 10px;
}

body.dark .feature-card h3 {
  color: var(--orange);
}

.feature-card p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ==========================================================================
   Products Grid & Filtering
   ========================================================================== */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
  flex-grow: 1;
  max-width: 440px;
}

.search-field input {
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  color: var(--ink);
  padding: 0 16px;
  font-size: 0.96rem;
  outline: none;
  transition: var(--transition);
}

.search-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(180, 127, 44, 0.12);
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tabs button {
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tabs button:hover {
  border-color: var(--gold);
  color: var(--ink);
}

.filter-tabs button.active {
  background: var(--paddy);
  color: #fff;
  border-color: var(--paddy);
}

body.dark .filter-tabs button.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--paddy);
}

/* Product Card Layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 24px 56px rgba(44, 37, 28, 0.14);
}

.product-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-dark);
}

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

.product-card:hover img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.product-badge.traditional {
  background: var(--earth);
}

.product-badge.daily {
  background: var(--leaf);
}

.product-badge.special {
  background: var(--gold);
}

.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--paddy);
  margin-bottom: 4px;
}

body.dark .product-body h3 {
  color: var(--ink);
}

.product-tamil {
  font-size: 0.94rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.product-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.meta-row {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-bottom: 18px;
}

.weight {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}

/* WhatsApp Order Button inside Card */
.whatsapp-order-btn {
  width: 100%;
  background: var(--leaf);
  color: #fff;
  border: none;
  min-height: 48px;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 700;
}

.whatsapp-order-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(18, 140, 126, 0.25);
}

.wa-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: var(--muted);
  font-size: 1.1rem;
}

/* ==========================================================================
   Benefits of Natural Rice Section
   ========================================================================== */
.benefits {
  text-align: center;
}

.benefits .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-grid span {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 16px;
  color: var(--paddy);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.dark .benefit-grid span {
  color: var(--orange);
}

.benefit-grid span:hover {
  background: var(--paddy);
  color: #fff;
  border-color: var(--paddy);
  transform: translateY(-4px);
}

/* ==========================================================================
   Gallery Collage
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 3px solid var(--cream-light);
  transition: var(--transition);
}

.gallery img:hover {
  transform: scale(1.03);
  border-color: var(--gold);
}

.gallery .wide {
  grid-column: span 2;
}

.gallery .tall {
  grid-row: span 2;
}

/* ==========================================================================
   Testimonials & Proof Band
   ========================================================================== */
.proof-band {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - 1200px) / 2));
  padding-right: max(16px, calc((100vw - 1200px) / 2));
  background: linear-gradient(180deg, var(--cream) 0%, rgba(226, 212, 188, 0.4) 100%);
  border-top: 1px solid var(--line);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.testimonials article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.testimonials div {
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonials p {
  font-size: 0.98rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
}

.testimonials b {
  display: block;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--ink);
}

.certifications {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.certifications span {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: var(--shadow);
}

/* ==========================================================================
   FAQ Accordions
   ========================================================================== */
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-list details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.faq-list details[open] {
  border-color: var(--gold);
}

.faq-list summary {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--paddy);
  cursor: pointer;
  outline: none;
  list-style: none;
  position: relative;
  padding-right: 24px;
}

body.dark .faq-list summary {
  color: var(--ink);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin-top: 14px;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.6;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

/* ==========================================================================
   Contact Section Redesign
   ========================================================================== */
.contact-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.contact-section.centered {
  grid-template-columns: 1fr;
  justify-items: center;
}

.contact-info.centered {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info.centered .contact-details-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0 24px;
  text-align: left;
}

.contact-details-grid {
  display: grid;
  gap: 24px;
  margin: 30px 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(226, 212, 188, 0.3);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--paddy);
}

body.dark .contact-item p {
  color: var(--orange);
}

.contact-item a:hover {
  color: var(--orange);
}

.map-link {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-decoration: none;
  transition: var(--transition);
}

.map-link:hover .map {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 20px 48px rgba(44, 37, 28, 0.15);
}

.map {
  min-height: 240px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--cream-light);
  transition: var(--transition);
}

.map::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(19, 44, 21, 0.85) 0%, rgba(138, 87, 18, 0.75) 100%),
    url("https://images.unsplash.com/photo-1523741543316-beb7fc7023d8?auto=format&fit=crop&w=900&q=80") center/cover;
  z-index: 1;
}

.map span, .map small {
  position: relative;
  z-index: 2;
}

.map span {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.map small {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
}

/* Contact Form */
.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--paddy);
  margin-bottom: 10px;
  border-bottom: 2px solid var(--line);
  padding-bottom: 12px;
}

body.dark .contact-form h3 {
  color: var(--orange);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--muted);
}

.contact-form input, .contact-form textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream-light);
  color: var(--ink);
  padding: 14px 16px;
  outline: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(180, 127, 44, 0.1);
  background: var(--card);
}

.contact-form button {
  margin-top: 10px;
  width: 100%;
}

/* ==========================================================================
   Newsletter Bar
   ========================================================================== */
.newsletter {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 100px;
  padding: 50px 40px;
  border-radius: var(--radius);
  background: var(--paddy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.newsletter::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(222, 152, 39, 0.08);
  filter: blur(50px);
}

.newsletter h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.94rem;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  min-width: min(480px, 100%);
  position: relative;
  z-index: 2;
}

.newsletter-form input {
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 18px;
  font-size: 0.96rem;
  outline: none;
  flex-grow: 1;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.14);
}

.newsletter-form button {
  background: var(--orange);
  border: none;
  color: #fff;
  box-shadow: 0 4px 14px rgba(222, 152, 39, 0.3);
}

.newsletter-form button:hover {
  background: #f1a933;
  transform: translateY(-2px);
}

/* ==========================================================================
   Sticky WhatsApp Widget
   ========================================================================== */
.whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 90;
  height: 52px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 24px 0 50px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.whatsapp::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M.057 24l1.687-6.163c-1.041-1.804-1.588-3.849-1.587-5.946C.06 5.348 5.397.01 12.008.01c3.202.001 6.212 1.246 8.477 3.514 2.266 2.268 3.507 5.28 3.505 8.484-.004 6.657-5.34 11.997-11.953 11.997-2.005-.001-3.973-.502-5.724-1.455L0 24zm6.59-4.846c1.6.95 3.188 1.449 4.625 1.45 5.489.002 9.961-4.41 9.964-9.84.002-2.63-1.018-5.101-2.872-6.958C16.49 1.95 14.032.932 11.436.932c-5.486 0-9.957 4.411-9.96 9.84-.001 1.776.475 3.51 1.378 5.024L1.87 21.053l5.343-1.4c1.554.848 3.018 1.25 4.434 1.25zM17.15 13.91c-.28-.14-1.656-.82-1.913-.914-.258-.094-.446-.14-.633.14-.187.28-.725.914-.889 1.101-.164.188-.328.21-.607.07-.28-.14-1.18-.435-2.247-1.39-.83-.74-1.39-1.653-1.553-1.933-.163-.28-.018-.431.122-.571.125-.125.28-.328.42-.49.14-.164.188-.28.28-.467.094-.188.047-.35-.024-.49-.07-.14-.633-1.527-.866-2.088-.228-.548-.46-.473-.633-.482-.164-.008-.352-.01-.54-.01-.187 0-.492.07-.75.35-.258.28-.984.963-.984 2.347 0 1.383 1.007 2.72 1.148 2.907.14.187 1.98 3.029 4.8 4.237.67.288 1.194.46 1.601.59.673.214 1.285.184 1.768.111.539-.08 1.656-.677 1.89-1.332.233-.656.233-1.22.163-1.332-.07-.113-.258-.19-.539-.33z'/%3E%3C/svg%3E") no-repeat center/contain;
}

.whatsapp:hover {
  background: #128c7e;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--paddy);
  color: #fff;
  padding: 80px max(16px, calc((100vw - 1200px) / 2)) 30px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  border-top: 2px solid var(--gold);
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand strong {
  color: #fff;
}

.footer-brand small {
  color: var(--orange);
}

.footer p, .footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  margin-bottom: 10px;
}

.footer h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--orange);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer a {
  display: block;
}

.footer a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

.tagline-tamil {
  font-weight: 700;
  color: var(--gold) !important;
  margin-bottom: 14px;
}

.copyright {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45) !important;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-links {
    position: absolute;
    top: 100%;
    margin-top: 8px;
    left: 16px;
    right: 16px;
    display: none;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    z-index: 100;
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .nav-links a {
    color: var(--ink);
    padding: 12px 16px;
    border-radius: 8px;
    transition: var(--transition);
  }
  
  .nav-links a:hover {
    background: var(--line);
    color: var(--gold);
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .split, .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .feature-grid, .product-grid, .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials, .footer {
    grid-template-columns: 1fr;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-image-wrap {
    height: 380px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
  
  .hero {
    padding-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .utility-bar {
    display: none; /* Hide top utility bar on mobile to save space */
  }
  
  .nav {
    min-height: 72px;
  }
  
  .brand-logo {
    width: 48px;
    height: 48px;
  }
  
  .since-badge {
    width: 42px;
    height: 42px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .feature-grid, .product-grid, .benefit-grid, .faq-list, .gallery {
    grid-template-columns: 1fr;
  }
  
  .gallery {
    grid-auto-rows: 200px;
  }
  
  .gallery .wide, .gallery .tall {
    grid-column: auto;
    grid-row: auto;
  }
  
  .image-stack {
    grid-template-columns: 1fr;
  }
  
  .image-stack img, .image-stack img:last-child {
    height: 280px;
    margin: 0;
  }
  
  .newsletter {
    flex-direction: column;
    padding: 30px 24px;
    align-items: stretch;
    gap: 24px;
  }
  
  .newsletter-form {
    min-width: 0;
    flex-direction: column;
  }
  
  .newsletter-form button {
    height: 52px;
  }
  
  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  
  .filter-tabs {
    justify-content: flex-start;
  }
}

/* Credentials images */
.contact-creds-wrap {
  margin: 10px 0 24px;
}
.contact-creds-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  box-shadow: 0 4px 10px rgba(44, 37, 28, 0.04);
}
.footer-creds-img {
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 16px;
  display: block;
}

@media (max-width: 768px) {
  .contact-info.centered .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


