/* ═══════════════════════════════════════════════════════════════
   PUREGROVE — EDITORIAL LUXURY ORGANIC REDESIGN
   Fonts: Cormorant Garamond (display) + Outfit (body)
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #0f1a0f;
  --forest:     #1b3a2d;
  --grove:      #2d6a4f;
  --leaf:       #52b788;
  --mint:       #95d5b2;
  --pale:       #d8f3dc;
  --ivory:      #f8f4ed;
  --cream:      #fdf9f3;
  --warm:       #f0e8d8;
  --gold:       #c9963a;
  --gold-light: #e8b96a;
  --white:      #ffffff;
  --muted:      #5a7a68;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Outfit', sans-serif;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --t:          0.5s var(--ease);
  --shadow-sm:  0 4px 20px rgba(15,26,15,0.08);
  --shadow-md:  0 12px 48px rgba(15,26,15,0.12);
  --shadow-lg:  0 30px 80px rgba(15,26,15,0.18);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom Cursor ──────────────────────────────────────────── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--grove);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--grove);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.18s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s;
}
.cursor-ring.hover {
  width: 60px; height: 60px;
  border-color: var(--gold);
  opacity: 0.6;
}

/* ── Grain overlay ──────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9997; mix-blend-mode: multiply;
}

/* ── Utilities ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
a { cursor: none; }

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(50px);  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── Typography ─────────────────────────────────────────────── */
.tag-line {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grove);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.tag-line::before, .tag-line::after {
  content: '';
  height: 1px;
  width: 28px;
  background: var(--grove);
  opacity: 0.4;
}
.tag-line-light { color: var(--mint); }
.tag-line-light::before, .tag-line-light::after { background: var(--mint); }

.display-xl {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.display-lg {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.display-md {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.display-sm {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}
em.gold { font-style: italic; color: var(--gold); }
em.leaf { font-style: italic; color: var(--leaf); }
em.grove { font-style: italic; color: var(--grove); }

.body-lg { font-size: 1.1rem; line-height: 1.8; color: var(--muted); }
.body-md { font-size: 0.95rem; line-height: 1.75; color: var(--muted); }
.body-sm { font-size: 0.82rem; line-height: 1.7; color: var(--muted); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; padding: 16px 36px;
  border-radius: 0; border: none; outline: none;
  cursor: none; position: relative; overflow: hidden;
  transition: var(--t);
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}
.btn:hover::before { transform: translateX(0); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--forest); }
.btn-grove { background: var(--grove); color: var(--white); box-shadow: 0 6px 28px rgba(45,106,79,0.3); }
.btn-grove:hover { background: var(--forest); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(45,106,79,0.35); }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid rgba(15,26,15,0.25);
}
.btn-outline:hover { border-color: var(--grove); color: var(--grove); background: rgba(45,106,79,0.04); }
.btn-outline-light {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #b8852f; transform: translateY(-2px); }
.btn-arrow::after { content: '→'; font-size: 1rem; transition: transform 0.3s var(--ease); }
.btn-arrow:hover::after { transform: translateX(6px); }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 20px 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--t);
}
#navbar.scrolled {
  background: rgba(248,244,237,0.96);
  backdrop-filter: blur(20px);
  padding: 14px 5%;
  box-shadow: 0 1px 0 rgba(15,26,15,0.06);
}
.nav-logo-img { height: 44px; width: auto; display: block; }
.nav-links {
  display: flex; gap: 36px; list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.5px; color: var(--white);
  text-decoration: none; position: relative;
  transition: color 0.2s;
}
#navbar.scrolled .nav-links a { color: var(--ink); }
#navbar.scrolled .nav-links a:hover { color: var(--grove); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--mint);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
#navbar.scrolled .nav-links a::after { background: var(--grove); }
.nav-links a:hover { color: var(--mint); }
#navbar.scrolled .nav-links a:hover { color: var(--grove); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--grove) !important; color: var(--white) !important;
  padding: 10px 24px !important; letter-spacing: 1px !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--forest) !important; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); transition: var(--t);
}
#navbar.scrolled .nav-hamburger span { background: var(--ink); }

/* ══════════════════════════════════════════════════════════════
   HERO — CINEMATIC FULL-BLEED
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--forest);
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 6%;
}

/* Organic shapes background */
.hero-shape-1 {
  position: absolute; top: -20%; right: -10%;
  width: 65vw; height: 65vw; max-width: 800px; max-height: 800px;
  background: radial-gradient(ellipse, rgba(82,183,136,0.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-shape-2 {
  position: absolute; bottom: -15%; left: -5%;
  width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
  background: radial-gradient(ellipse, rgba(201,150,58,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Decorative vertical text */
.hero-vert-text {
  position: absolute; left: 2%; top: 50%; transform: translateY(-50%) rotate(-90deg);
  font-family: var(--sans); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.2); white-space: nowrap;
}

.hero-content { position: relative; z-index: 2; padding: 140px 0 80px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 32px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); display: block;
  animation: pulse-gold 2s infinite;
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,150,58,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(201,150,58,0); }
}
.hero-eyebrow-text {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light);
}

.hero-heading {
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 600; line-height: 0.92;
  letter-spacing: -0.03em; color: var(--white);
  margin-bottom: 36px;
}
.hero-heading em {
  font-style: italic; color: var(--mint);
  display: block;
}
.hero-heading .hero-word-outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
  color: transparent;
  display: block;
}

.hero-sub {
  font-size: 1rem; line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 420px; margin-bottom: 52px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 40px; left: 6%;
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
  font-family: var(--sans);
}
.hero-scroll-line {
  width: 40px; height: 1px; background: rgba(255,255,255,0.2);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; left: -100%; top: 0;
  width: 100%; height: 100%; background: var(--mint);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { left: -100%; } 100% { left: 100%; }
}

/* Hero visual side */
.hero-visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 0 60px;
  overflow: hidden;
}
.hero-bottle-scene {
  position: relative; width: 340px; height: 540px;
}
.hero-bottle-glow {
  position: absolute; inset: -60px;
  background: radial-gradient(ellipse at center, rgba(82,183,136,0.2) 0%, transparent 65%);
  border-radius: 50%; animation: breathe 5s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}
.hero-bottle-img {
  width: 220px; height: auto;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.5));
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  animation: float-hero 5s ease-in-out infinite;
  z-index: 3;
}
@keyframes float-hero {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-18px); }
}

/* Floating info cards */
.h-card {
  position: absolute; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border-radius: 16px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  animation: float-card 5s ease-in-out infinite;
  z-index: 4;
}
.h-card-1 { top: 60px; right: -10px; animation-delay: 0s; }
.h-card-2 { bottom: 120px; left: -20px; animation-delay: 1.2s; }
.h-card-3 { top: 220px; left: -30px; animation-delay: 0.6s; }
.h-card-nutri { bottom: 60px; right: 0; animation-delay: 1.8s; padding: 10px 14px; }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.h-card-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.h-card-text { font-size: 0.78rem; font-weight: 700; color: var(--white); }
.h-card-sub { font-size: 0.68rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ══════════════════════════════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--gold); padding: 14px 0;
  overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 0;
  animation: marquee 25s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 0 40px;
  font-family: var(--serif); font-size: 1rem; font-weight: 600;
  font-style: italic; color: var(--white);
}
.marquee-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.5); flex-shrink: 0;
}



/* ══════════════════════════════════════════════════════════════
   ABOUT — EDITORIAL SPLIT
══════════════════════════════════════════════════════════════ */
.about-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}
.about-image-col {
  position: relative; overflow: hidden;
  background: var(--ink);
}
.about-bottle-display {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #1b3a2d 0%, #0f2018 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-bottle-bg-circle {
  position: absolute;
  width: 70%; padding-bottom: 70%;
  background: radial-gradient(circle, rgba(82,183,136,0.1) 0%, transparent 70%);
  border-radius: 50%; border: 1px solid rgba(82,183,136,0.08);
}
.about-bottle-img {
  width: 55%; max-height: 70%; height: auto; object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
  position: relative; z-index: 2;
  animation: float-about 5s ease-in-out infinite;
}
@keyframes float-about {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
.about-year-badge {
  position: absolute; bottom: 40px; right: 40px;
  background: var(--gold); color: var(--white);
  padding: 12px 20px; font-family: var(--serif);
  font-size: 1rem; font-style: italic; font-weight: 600;
}
.about-stat-strip {
  position: absolute; top: 40px; left: 40px;
  display: flex; flex-direction: column; gap: 16px;
}
.about-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--leaf);
  padding: 12px 16px;
}
.about-stat-num {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 600;
  color: var(--white); line-height: 1;
}
.about-stat-label {
  font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-top: 4px;
}

.about-content-col {
  background: var(--ivory);
  padding: 100px 70px 80px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-content-col::before {
  content: '"';
  font-family: var(--serif); font-size: 20rem; line-height: 1;
  color: rgba(45,106,79,0.05); position: absolute;
  top: -40px; right: 40px; pointer-events: none;
}
.about-philosophy {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
  font-style: italic; line-height: 1.6; color: var(--forest);
  border-left: 3px solid var(--gold); padding-left: 24px;
  margin: 32px 0;
}
.about-checklist { list-style: none; margin: 28px 0 40px; }
.about-checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid rgba(15,26,15,0.06);
  font-size: 0.95rem; color: var(--muted); line-height: 1.6;
}
.about-checklist li::before {
  content: '↗'; color: var(--grove); font-weight: 700;
  font-size: 0.9rem; margin-top: 2px; flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   FEATURES — BENTO GRID
══════════════════════════════════════════════════════════════ */
.features-section { padding: 100px 6%; background: var(--cream); }
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 60px;
}
.bento-card {
  background: var(--white);
  border: 1px solid rgba(15,26,15,0.07);
  border-radius: 4px;
  padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: var(--t);
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bento-card:nth-child(4) { background: var(--ivory); }
.bento-card:nth-child(5) { background: var(--warm); }
.bento-card.bento-dark {
  background: var(--forest); color: var(--white);
  border-color: transparent;
}
.bento-card.bento-gold {
  background: var(--gold); color: var(--white);
  border-color: transparent;
}
.bento-card.bento-wide { grid-column: span 2; background: var(--pale); }
.bento-card.bento-tall { grid-row: span 2; }
.bento-number {
  font-family: var(--serif); font-size: 4rem; font-weight: 600;
  line-height: 1; color: rgba(15,26,15,0.06); position: absolute;
  top: 16px; right: 24px;
}
.bento-dark .bento-number, .bento-gold .bento-number {
  color: rgba(255,255,255,0.08);
}
.bento-icon { font-size: 2rem; margin-bottom: 20px; display: block; }
.bento-title {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
  color: var(--ink); margin-bottom: 10px; line-height: 1.3;
}
.bento-dark .bento-title, .bento-gold .bento-title { color: var(--white); }
.bento-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.bento-dark .bento-desc, .bento-gold .bento-desc { color: rgba(255,255,255,0.65); }
.bento-card.bento-wide .bento-layout { display: flex; gap: 40px; align-items: flex-start; }
.bento-card.bento-wide .bento-layout > div { flex: 1; }
.bento-divider { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   NUTRI-SCORE — DARK SHOWCASE
══════════════════════════════════════════════════════════════ */
.nutri-section {
  background: var(--ink);
  padding: 100px 6%;
  position: relative; overflow: hidden;
}
.nutri-bg-text {
  position: absolute; bottom: -30px; left: 0; right: 0;
  font-family: var(--serif); font-size: 18vw; font-weight: 600;
  color: rgba(255,255,255,0.02); white-space: nowrap; overflow: hidden;
  pointer-events: none; line-height: 1;
}
.nutri-inner {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}
.nutri-badge-showcase {
  display: flex; flex-direction: column; align-items: flex-start; gap: 36px;
}
.nutri-score-img {
  height: 100px; width: auto;
  filter: drop-shadow(0 10px 30px rgba(255,255,255,0.1));
}
.nutri-scale-row {
  display: flex; gap: 12px; align-items: center;
}
.ns-block {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; color: var(--white);
  border-radius: 3px; transition: var(--t);
}
.ns-block:hover { transform: scale(1.1); }
.ns-a { background: #057a55; width: 52px; height: 52px; font-size: 1.3rem; box-shadow: 0 0 0 3px rgba(5,122,85,0.3), 0 8px 20px rgba(5,122,85,0.4); }
.ns-b { background: #65a30d; width: 44px; height: 44px; font-size: 1.1rem; }
.ns-c { background: #ca8a04; width: 40px; height: 40px; font-size: 1rem; }
.ns-d { background: #ea580c; width: 36px; height: 36px; font-size: 0.9rem; }
.ns-e { background: #dc2626; width: 32px; height: 32px; font-size: 0.82rem; }
.ns-scale-label { font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-left: 8px; }

.nutri-points { display: flex; flex-direction: column; gap: 28px; }
.nutri-point {
  display: flex; gap: 20px; align-items: flex-start;
  padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nutri-point:last-child { border-bottom: none; padding-bottom: 0; }
.nutri-point-num {
  font-family: var(--serif); font-size: 2rem; font-weight: 600;
  color: rgba(255,255,255,0.25); line-height: 1; flex-shrink: 0; width: 36px;
}
.nutri-point-title { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.nutri-point-body { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.nutri-section .tag-line-light { margin-bottom: 20px; }

/* ══════════════════════════════════════════════════════════════
   WHY RAW — FULL BLEED EDITORIAL
══════════════════════════════════════════════════════════════ */
.why-section {
  background: var(--forest);
  padding: 100px 6%;
  position: relative; overflow: hidden;
}
.why-bg-circle {
  position: absolute; right: -15%; top: -20%;
  width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  border: 1px solid rgba(82,183,136,0.06);
  border-radius: 50%; pointer-events: none;
}
.why-bg-circle-2 {
  position: absolute; left: -10%; bottom: -20%;
  width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
  border: 1px solid rgba(201,150,58,0.06);
  border-radius: 50%; pointer-events: none;
}
.why-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; position: relative; z-index: 1;
}
.why-accordion { margin-top: 40px; }
.acc-item {
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.acc-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; background: none; border: none; cursor: none;
  color: var(--white); text-align: left;
}
.acc-trigger-left { display: flex; align-items: center; gap: 20px; }
.acc-num {
  font-family: var(--serif); font-size: 0.9rem; color: var(--gold-light);
  width: 24px; flex-shrink: 0;
}
.acc-title { font-size: 1rem; font-weight: 500; color: var(--white); }
.acc-icon {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--mint); font-size: 1rem; flex-shrink: 0;
  transition: var(--t);
}
.acc-item.open .acc-icon { transform: rotate(45deg); background: var(--grove); border-color: var(--grove); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.acc-item.open .acc-body { max-height: 200px; }
.acc-body p { padding: 0 0 24px 44px; font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.75; }

.why-benefits-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.why-benefit {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px; padding: 28px 22px;
  transition: var(--t);
}
.why-benefit:hover { background: rgba(82,183,136,0.08); border-color: rgba(82,183,136,0.2); }
.why-benefit-emoji { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.why-benefit-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.why-benefit-text { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   PRODUCTS — LARGE EDITORIAL CARDS
══════════════════════════════════════════════════════════════ */
.products-section { padding: 100px 6%; background: var(--ivory); }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 40px;
}

.prod-card {
  background: var(--white); border: 1px solid rgba(15,26,15,0.07);
  border-radius: 2px; overflow: hidden;
  transition: var(--t); position: relative;
  display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.prod-card.featured {
  border-color: var(--grove);
  box-shadow: 0 0 0 1px var(--grove);
}
.prod-featured-pill {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  background: var(--grove); color: var(--white);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 2px;
}
.prod-img-zone {
  height: 300px; position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: visible; padding-bottom: 10px;
}
.prod-img-bg-cow    { background: linear-gradient(160deg, #e8f5e4 0%, #f5f9f0 100%); }
.prod-img-bg-buf    { background: linear-gradient(160deg, #eef2ff 0%, #e8eef8 100%); }
.prod-img-bg-gir    { background: linear-gradient(160deg, #fef9ec 0%, #fdf3d0 100%); }
.prod-img-bg-paneer { background: linear-gradient(160deg, #fdf6ec 0%, #f9ede0 100%); }
.prod-img-bg-curd   { background: linear-gradient(160deg, #f0fdf4 0%, #e4f5eb 100%); }

.prod-bottle {
  height: 85%; width: auto; object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(15,26,15,0.15));
  position: relative; z-index: 2;
  animation: float-hero 5s ease-in-out infinite;
}
.prod-bottle:nth-child(2) { animation-delay: 0.7s; }
.prod-bottle:nth-child(3) { animation-delay: 1.4s; }
.prod-nutri-pin {
  position: absolute; top: 14px; right: 14px; z-index: 3;
}
.prod-nutri-pin img { height: 44px; width: auto; }
.prod-type-chip {
  position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--white); z-index: 3;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; white-space: nowrap;
}
.featured .prod-type-chip { background: var(--grove); }

.prod-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.prod-name-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; margin-top: 8px; }
.prod-name { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--ink); line-height: 1.2; }
.prod-badge-a {
  background: #057a55; color: var(--white);
  font-size: 0.65rem; font-weight: 800; padding: 3px 8px;
  border-radius: 2px; flex-shrink: 0; margin-top: 4px;
}
.prod-tagline { font-size: 0.85rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.prod-stats-row {
  display: flex; gap: 0; margin-bottom: 24px;
  border: 1px solid rgba(15,26,15,0.07);
}
.prod-stat {
  flex: 1; text-align: center; padding: 10px 8px;
  border-right: 1px solid rgba(15,26,15,0.07);
}
.prod-stat:last-child { border-right: none; }
.ps-l { font-size: 0.6rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 3px; }
.ps-v { font-size: 0.82rem; font-weight: 600; color: var(--ink); }

/* Dairy card (paneer, curd) */
.dairy-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dairy-prod-card {
  background: var(--white); border: 1px solid rgba(15,26,15,0.07);
  border-radius: 2px; overflow: hidden;
  display: grid; grid-template-columns: 260px 1fr;
  transition: var(--t);
}
.dairy-prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dairy-img-col { position: relative; overflow: hidden; }
.dairy-prod-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dairy-img-curd-placeholder {
  width: 100%; height: 100%; min-height: 240px;
  background: linear-gradient(160deg, #f0fdf4, #e4f5eb);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
}
.curd-icon-large { font-size: 4rem; }
.curd-sub { font-family: var(--serif); font-style: italic; font-size: 0.9rem; color: var(--grove); }
.dairy-nutri-over {
  position: absolute; top: 14px; right: 14px;
}
.dairy-body { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; }

/* ══════════════════════════════════════════════════════════════
   SERVICES — HORIZONTAL SCROLL FEEL
══════════════════════════════════════════════════════════════ */
.services-section { padding: 100px 6%; background: var(--cream); }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  margin-top: 60px; background: rgba(15,26,15,0.06);
}
.srv-card {
  background: var(--white); padding: 48px 32px;
  position: relative; overflow: hidden;
  transition: var(--t); text-decoration: none; display: block;
}
.srv-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--grove);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.srv-card:hover { background: var(--ivory); }
.srv-card:hover::after { transform: scaleX(1); }
.srv-card.srv-cta { background: var(--grove); }
.srv-card.srv-cta:hover { background: var(--forest); }
.srv-card.srv-cta::after { background: var(--gold); }
.srv-icon { font-size: 2.2rem; margin-bottom: 24px; display: block; }
.srv-title {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
  color: var(--ink); line-height: 1.3; margin-bottom: 12px;
}
.srv-cta .srv-title { color: var(--white); }
.srv-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }
.srv-cta .srv-desc { color: rgba(255,255,255,0.6); }
.srv-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--grove); text-decoration: none;
  transition: gap 0.3s var(--ease);
}
.srv-card:hover .srv-arrow { gap: 14px; }
.srv-cta .srv-arrow { color: rgba(255,255,255,0.7); }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS — STAGGERED CARDS
══════════════════════════════════════════════════════════════ */
.testi-section {
  padding: 100px 6%; background: var(--ivory);
  position: relative; overflow: hidden;
}
.testi-bg-quote {
  position: absolute; top: 0; right: 0;
  font-family: var(--serif); font-size: 30vw; line-height: 0.7;
  color: rgba(45,106,79,0.03); pointer-events: none;
  font-weight: 600; overflow: hidden;
}
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 60px; position: relative; z-index: 1;
}
.testi-card {
  background: var(--white); border: 1px solid rgba(15,26,15,0.07);
  border-radius: 2px; padding: 36px;
  transition: var(--t); position: relative;
}
.testi-card:nth-child(even) { transform: translateY(20px); }
.testi-card:hover { transform: translateY(-4px) !important; box-shadow: var(--shadow-md); }
.testi-stars { color: var(--gold); letter-spacing: 3px; font-size: 0.85rem; margin-bottom: 16px; }
.testi-quote-mark {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--serif); font-size: 4rem; line-height: 1;
  color: rgba(45,106,79,0.06); font-weight: 600;
}
.testi-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.testi-text { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.testi-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px; border-top: 1px solid rgba(15,26,15,0.06);
}
.testi-avatar {
  width: 42px; height: 42px; background: var(--pale);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 600; color: var(--grove); font-size: 0.95rem;
}
.testi-name { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.testi-location { font-size: 0.75rem; color: var(--muted); }
.testi-cta-card {
  background: var(--grove) !important;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  transform: translateY(20px);
}
.testi-cta-card:hover { transform: translateY(-4px) !important; }

/* ══════════════════════════════════════════════════════════════
   APP SECTION — SPLIT DARK
══════════════════════════════════════════════════════════════ */
.app-section {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--ink); min-height: 80vh;
  position: relative; overflow: hidden;
  padding: 80px 6%;
  align-items: center; gap: 80px;
}
.app-bg-glow {
  position: absolute; right: 30%; top: 50%; transform: translateY(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(82,183,136,0.06) 0%, transparent 70%);
  pointer-events: none; border-radius: 50%;
}
.app-content { position: relative; z-index: 2; }
.app-btns-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; }
.app-btn {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 22px; border-radius: 2px;
  text-decoration: none; transition: var(--t);
}
.app-btn:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); border-color: rgba(255,255,255,0.2); }
.app-btn.app-btn-live { background: var(--grove); border-color: var(--grove); }
.app-btn.app-btn-live:hover { background: var(--leaf); }
.app-btn.app-btn-order { background: var(--gold); border-color: var(--gold); }
.app-btn.app-btn-order:hover { background: var(--gold-light); }
.app-btn-icon { font-size: 1.6rem; display: flex; align-items: center; justify-content: center; }
.app-btn-icon svg { width: 24px; height: 24px; fill: var(--white); }
.app-btn-store { font-size: 0.6rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.app-btn-name { font-size: 0.95rem; font-weight: 600; color: var(--white); line-height: 1.2; }
.app-features-list { list-style: none; margin: 32px 0; }
.app-features-list li {
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem; color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 12px;
}
.app-features-list li::before { content: '—'; color: var(--mint); flex-shrink: 0; }
.app-phone-col { display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; }
.app-mockup-img { width: 100%; max-width: 420px; height: auto; filter: drop-shadow(0 30px 80px rgba(0,0,0,0.5)); }

/* ══════════════════════════════════════════════════════════════
   CONTACT + MAP
══════════════════════════════════════════════════════════════ */
.contact-section {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--forest); min-height: 80vh;
  align-items: stretch;
}
.contact-info-col {
  padding: 100px 70px 80px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.contact-detail-list { margin: 40px 0; display: flex; flex-direction: column; gap: 0; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cd-icon {
  width: 44px; height: 44px; border-radius: 2px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.cd-label { font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 4px; }
.cd-value { font-size: 0.97rem; color: var(--white); font-weight: 500; }
.cd-value a { color: var(--mint); text-decoration: none; }
.contact-map-col { position: relative; min-height: 600px; }
#leafletMap {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1;
}
.map-overlay-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(27,58,45,0.95) 0%, transparent 100%);
  padding: 40px 36px 30px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; z-index: 10;
}
.mos-item { text-align: center; }
.mos-num {
  font-family: var(--serif); font-size: 2rem; font-weight: 600;
  color: var(--white); display: block;
}
.mos-lab { font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 4px; display: block; }
.leaflet-popup-content-wrapper { border-radius: 2px; font-family: var(--sans); font-size: 0.85rem; }

/* ══════════════════════════════════════════════════════════════
   BUSINESS SECTION
══════════════════════════════════════════════════════════════ */
.business-section {
  padding: 100px 6%;
  background: var(--cream);
}
.business-inner {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.biz-contact-items { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
.biz-contact-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--ivory); border: 1px solid rgba(15,26,15,0.07);
  padding: 18px 22px; text-decoration: none;
  transition: var(--t); border-left: 3px solid transparent;
}
.biz-contact-item:hover { border-left-color: var(--grove); background: var(--white); transform: translateX(4px); }
.bci-icon {
  width: 44px; height: 44px; background: var(--pale);
  border-radius: 2px; display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.bci-label { font-size: 0.68rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.bci-val { font-size: 0.97rem; font-weight: 600; color: var(--ink); }
.biz-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.biz-card-new {
  background: var(--white); border: 1px solid rgba(15,26,15,0.07);
  padding: 32px 28px; transition: var(--t);
  border-bottom: 3px solid transparent;
}
.biz-card-new:hover { border-bottom-color: var(--grove); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.biz-card-icon-new { font-size: 1.8rem; margin-bottom: 16px; }
.biz-card-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.biz-card-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   AFFILIATIONS STRIP
══════════════════════════════════════════════════════════════ */
.affil-strip {
  background: var(--ivory);
  padding: 60px 6%;
  border-top: 1px solid rgba(15,26,15,0.07);
  border-bottom: 1px solid rgba(15,26,15,0.07);
}
.affil-strip-header { text-align: center; margin-bottom: 44px; }
.affil-logos-row {
  display: flex; align-items: center; justify-content: center;
  gap: 60px; flex-wrap: wrap;
}
.affil-logo-item { opacity: 0.55; transition: opacity 0.3s; }
.affil-logo-item:hover { opacity: 1; }
.affil-logo-item img { height: 50px; width: auto; object-fit: contain; }
.affil-logo-dark-bg {
  background: var(--ink); padding: 8px 14px; border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
footer {
  background: var(--ink);
  padding: 80px 6% 40px;
}
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 40px;
}
.footer-logo-img { height: 48px; width: auto; margin-bottom: 20px; display: block; }
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 0.9rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 260px; }
.footer-col-title {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 0.88rem; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-copy span { color: var(--leaf); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   INNER PAGES
══════════════════════════════════════════════════════════════ */
.inner-hero {
  padding: 160px 6% 80px; text-align: center;
  background: var(--forest);
  position: relative; overflow: hidden;
}
.inner-hero .section-tag { color: var(--mint); }
.inner-hero .section-title { color: var(--white); }
.inner-hero .section-subtitle { color: rgba(255,255,255,0.55); margin: 0 auto; }

/* Products page specific */
.prod-section { padding: 80px 6%; }
.prod-section-alt { background: var(--ivory); padding: 80px 6%; }
.prod-section-header { text-align: center; margin-bottom: 60px; }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.product-card {
  background: var(--white); border: 1px solid rgba(15,26,15,0.07);
  border-radius: 2px; overflow: visible; display: flex; flex-direction: column;
  transition: var(--t); position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-featured { border-color: var(--grove); box-shadow: 0 0 0 1px var(--grove); transform: scale(1.02); }
.product-card-featured:hover { transform: scale(1.02) translateY(-4px); }
.prod-featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grove); color: var(--white); font-size: 0.65rem;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 18px; white-space: nowrap; z-index: 3;
}
.product-visual { padding: 32px 20px 0; }
.product-img-wrap {
  position: relative; border-radius: 4px; padding: 24px 20px 0;
  min-height: 280px; display: flex; align-items: flex-end; justify-content: center; overflow: visible;
}
.prod-cow    { background: linear-gradient(160deg, #e8f5e4, #f5f9f0); }
.prod-buffalo{ background: linear-gradient(160deg, #f0f4ff, #e8eef8); }
.prod-gir    { background: linear-gradient(160deg, #fef9ec, #fdf3d0); }
.prod-bottle-img { width: 110px; height: auto; object-fit: contain; filter: drop-shadow(0 12px 24px rgba(45,106,79,0.18)); position: relative; z-index: 2; animation: float-hero 4s ease-in-out infinite; }
.prod-nutri-badge { position: absolute; top: 10px; right: 10px; z-index: 3; }
.nutri-badge-img { height: 48px; width: auto; }
.prod-float-tag {
  position: absolute; top: 16px; left: -12px;
  background: var(--white); padding: 5px 12px; font-size: 0.7rem; font-weight: 700;
  box-shadow: var(--shadow-sm); white-space: nowrap; z-index: 4;
  animation: float-hero 4s ease-in-out infinite;
}
.pft-green { color: var(--grove); border-left: 2px solid var(--grove); animation-delay: 0.3s; }
.pft-amber { color: #92400e; border-left: 2px solid var(--gold); animation-delay: 0.8s; bottom: 60px !important; left: -16px !important; top: auto !important; }
.pft-blue  { color: #1d4ed8; border-left: 2px solid #3b82f6; animation-delay: 0.5s; }
.product-info { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.prod-type-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--grove);
  background: var(--pale); padding: 4px 12px; margin-bottom: 10px;
}
.prod-type-featured { background: rgba(45,106,79,0.1); }
.prod-type-premium { background: #fef3dc; color: #92400e; }
.prod-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
.prod-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; flex: 1; }
.prod-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-bottom: 20px; background: var(--cream); padding: 14px;
}
.prod-spec { display: flex; flex-direction: column; gap: 2px; }
.ps-label { font-size: 0.62rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; }
.ps-val { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.prod-score-a { background: #057a55; color: white; padding: 1px 8px; font-size: 0.78rem; display: inline-block; width: fit-content; }
.prod-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--grove); color: var(--white); text-decoration: none;
  padding: 12px 24px; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; transition: var(--t);
}
.prod-cta:hover { background: var(--forest); transform: translateY(-2px); }
.prod-cta-featured { box-shadow: 0 4px 16px rgba(45,106,79,0.3); }
.dairy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.dairy-card { background: var(--white); border: 1px solid rgba(15,26,15,0.07); overflow: hidden; transition: var(--t); display: flex; flex-direction: column; }
.dairy-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dairy-img-wrap { position: relative; height: 260px; overflow: hidden; background: linear-gradient(160deg,#fdf6ec,#f5efe0); display: flex; align-items: center; justify-content: center; }
.dairy-img-curd { background: linear-gradient(160deg,#f0fdf4,#e8f5e4); }
.dairy-img { width: 100%; height: 100%; object-fit: cover; }
.dairy-nutri { position: absolute; top: 14px; right: 14px; }
.dairy-tag { position: absolute; bottom: 14px; left: 14px; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); color: var(--grove); font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px; border-left: 2px solid var(--grove); }
.dairy-info { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.curd-visual { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 10px; }
.curd-bowl { width: 140px; height: 100px; background: white; border-radius: 0 0 70px 70px; border: 2px solid rgba(45,106,79,0.12); display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 10px; overflow: hidden; }
.curd-surface { width: 110px; height: 40px; background: linear-gradient(180deg,#fffef5,#f5f0e0); border-radius: 50%; border: 1.5px solid rgba(45,106,79,0.1); }
.curd-swirl { font-size: 1.3rem; color: rgba(45,106,79,0.25); margin-top: 6px; }
.nutriscore-section { margin: 60px 2% 0; background: var(--ink); border-radius: 0; padding: 80px 7%; }
.nutriscore-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.ns-title { font-family: var(--serif); font-size: clamp(2rem,3vw,2.8rem); font-weight: 600; color: var(--white); margin-bottom: 20px; }
.ns-title em { font-style: italic; color: #86efac; }
.ns-desc { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.75; }
.ns-scale { display: flex; gap: 8px; margin-top: 32px; align-items: center; }
.ns-grade { display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; color: white; }
.ns-a { background:#057a55; width:44px; height:44px; transform:scale(1.2); box-shadow:0 4px 16px rgba(5,122,85,0.5); }
.ns-b { background:#84cc16; width:38px; height:38px; }
.ns-c { background:#eab308; width:34px; height:34px; }
.ns-d { background:#f97316; width:30px; height:30px; }
.ns-e { background:#ef4444; width:26px; height:26px; }
.ns-badge-large { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 40px; display: flex; align-items: center; justify-content: center; margin-bottom: 28px; }
.ns-badge-img { height: 110px; width: auto; }
.ns-points { display: flex; flex-direction: column; gap: 20px; }
.ns-point { display: flex; align-items: flex-start; gap: 14px; }
.ns-point-icon { width: 34px; height: 34px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
.ns-point strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 4px; }
.ns-point p { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.6; margin: 0; }
.prod-cta-banner { padding: 70px 6%; background: var(--pale); margin: 60px 0 0; text-align: center; }
.section-tag-light { font-size: 0.7rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--grove); display: block; margin-bottom: 14px; }

/* Affiliations page */
.affiliations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 0 6% 80px; }
.affil-card { background: var(--white); border: 1px solid rgba(15,26,15,0.07); padding: 36px; display: flex; align-items: flex-start; gap: 24px; transition: var(--t); border-left: 3px solid transparent; }
.affil-card:hover { border-left-color: var(--grove); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.affil-logo-wrap { min-width: 100px; width: 100px; height: 80px; background: var(--cream); display: flex; align-items: center; justify-content: center; padding: 12px; flex-shrink: 0; }
.affil-logo-dark { background: #1a2e1a; }
.affil-logo-blue { background: #e8f0fc; }
.affil-logo { max-width: 100%; max-height: 100%; object-fit: contain; }
.affil-logo-round { border-radius: 50%; }
.affil-info h4 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.affil-info p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.affil-badge { display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; padding: 4px 12px; }
.affil-badge-green { background: var(--pale); color: var(--grove); }
.affil-badge-blue { background: #e8f0fc; color: #1a56db; }
.affil-badge-orange { background: #fef3dc; color: #b45309; }
.affil-cta { margin: 0 0 80px; }
.affil-cta-inner { background: var(--grove); padding: 60px; text-align: center; }
.affil-cta-inner h3 { font-family: var(--serif); font-size: 1.8rem; color: var(--white); margin-bottom: 14px; }
.affil-cta-inner p { color: rgba(255,255,255,0.65); font-size: 0.97rem; margin-bottom: 32px; }
@media (max-width: 768px) { .affiliations-grid { grid-template-columns: 1fr; padding: 0 4% 40px; } .affil-card { flex-direction: column; } }

/* TNC page */
/* ══════════════════════════════════════════════════════════════
   PRODUCTS PAGE (.pp-*)
══════════════════════════════════════════════════════════════ */
.section-tag {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--grove);
  display: block; margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600; line-height: 1.1; color: var(--ink); margin-bottom: 12px;
}
.section-title em { font-style: italic; color: var(--grove); }
.section-subtitle {
  font-size: 0.95rem; color: var(--muted); line-height: 1.75; max-width: 720px;
}
.inner-hero .section-tag { color: var(--muted); }

.pp-milk-section { padding: 80px 6%; background: var(--cream); }
.pp-milk-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px; max-width: 1280px; margin-left: auto; margin-right: auto;
}
.pp-milk-card {
  background: var(--white); border: 1px solid rgba(15,26,15,0.07);
  border-radius: 2px; overflow: hidden; display: flex; flex-direction: column;
  transition: var(--t); position: relative;
}
.pp-milk-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pp-milk-card.featured { border-color: var(--grove); box-shadow: 0 0 0 1px var(--grove); }
.pp-featured-bar {
  background: var(--grove); color: var(--white); text-align: center;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 0;
}
.pp-milk-visual {
  background: linear-gradient(160deg, #e8f5e4 0%, #f5f9f0 100%);
  height: 280px; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pp-bottle {
  max-height: 70%; width: auto; object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(15,26,15,0.15));
  position: relative; z-index: 2;
  animation: float-pp 5s ease-in-out infinite;
}
@keyframes float-pp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.pp-nutri {
  position: absolute; top: 14px; right: 14px; z-index: 3;
}
.pp-nutri img { height: 44px; width: auto; }
.pp-milk-info { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.pp-type {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--grove); margin-bottom: 6px;
}
.pp-name {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 600;
  color: var(--ink); margin-bottom: 10px; line-height: 1.3;
}
.pp-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.pp-spec-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-bottom: 20px; background: var(--cream); padding: 14px;
}
.pp-spec { display: flex; flex-direction: column; gap: 2px; }
.pp-spec-label { font-size: 0.62rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; }
.pp-spec-val { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.score-chip {
  display: inline-block; background: #057a55; color: var(--white);
  font-size: 0.75rem; font-weight: 800; padding: 1px 8px; border-radius: 2px;
}
.pp-order-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grove); color: var(--white); text-decoration: none;
  padding: 12px 24px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; transition: var(--t);
}
.pp-order-btn:hover { background: var(--forest); transform: translateY(-2px); }
.pp-order-btn .arr { transition: transform 0.3s var(--ease); }
.pp-order-btn:hover .arr { transform: translateX(4px); }

/* Dairy section */
.pp-dairy-section { padding: 80px 6%; background: var(--ivory); }
.pp-dairy-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 48px; max-width: 1280px; margin-left: auto; margin-right: auto;
}
.pp-dairy-card {
  background: var(--white); border: 1px solid rgba(15,26,15,0.07);
  border-radius: 2px; overflow: hidden; display: flex; flex-direction: column;
  transition: var(--t);
}
.pp-dairy-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pp-dairy-img {
  width: 100%; height: 280px; object-fit: cover; display: block;
}
.pp-dairy-img-placeholder {
  height: 280px; background: linear-gradient(160deg, #f0fdf4, #e4f5eb);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.pp-dairy-info { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }

/* Nutri-Score section on products page */
.pp-nutri-score-section {
  background: var(--ink); padding: 80px 6%; position: relative; overflow: hidden;
}
.pp-nutri-inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center; max-width: 1280px; margin: 0 auto;
}
.nutri-eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--mint); margin-bottom: 14px;
}
.nutri-h2 {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600; line-height: 1.15; color: var(--white); margin-bottom: 20px;
}
.nutri-h2 em { font-style: italic; color: var(--leaf); }
.nutri-desc { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 28px; }
.nutri-badge-display { margin-bottom: 24px; }
.nutri-badge-display img { height: 80px; width: auto; }
.pns-scale-wrap { margin-top: 20px; }
.nutri-scale { display: flex; gap: 8px; align-items: center; }
.ns-bar { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.ns-bar-fill {
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: var(--white); border-radius: 3px;
}
.ns-bar-fill.a { background: #057a55; width: 48px; height: 48px; box-shadow: 0 4px 16px rgba(5,122,85,0.5); }
.ns-bar-fill.b { background: #65a30d; width: 40px; height: 40px; }
.ns-bar-fill.c { background: #ca8a04; width: 36px; height: 36px; }
.ns-bar-fill.d { background: #ea580c; width: 32px; height: 32px; }
.ns-bar-fill.e { background: #dc2626; width: 28px; height: 28px; }
.ns-bar-label { font-size: 0.6rem; color: rgba(255,255,255,0.3); letter-spacing: 1px; text-transform: uppercase; }
.pp-nutri-points { display: flex; flex-direction: column; gap: 24px; }
.pp-np { display: flex; gap: 16px; align-items: flex-start; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pp-np:last-child { border-bottom: none; padding-bottom: 0; }
.pp-np-icon {
  width: 36px; height: 36px; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; flex-shrink: 0;
}
.pp-np-title { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.pp-np-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* Products page CTA strip */
.pp-cta-strip {
  padding: 70px 6%; background: var(--pale); text-align: center;
}
.btn-forest { background: var(--forest); color: var(--white); }
.btn-forest:hover { background: var(--grove); transform: translateY(-2px); }

/* Products page responsive */
@media (max-width: 900px) {
  .pp-milk-grid { grid-template-columns: 1fr; }
  .pp-dairy-grid { grid-template-columns: 1fr; }
  .pp-nutri-inner { grid-template-columns: 1fr; gap: 50px; }
}

/* TNC page */
.tnc-content { max-width: 760px; margin: 0 auto; padding: 60px 6% 100px; }
.tnc-content h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); margin: 40px 0 12px; }
.tnc-content p { font-size: 0.92rem; color: var(--muted); line-height: 1.8; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  a { cursor: auto; }
  .hero { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-visual { display: none; }
  .about-section { grid-template-columns: 1fr; }
  .about-image-col { height: 50vh; }
  .about-stat-strip { top: 20px; left: 20px; }
  .about-stat-strip .about-stat { padding: 8px 12px; }
  .about-stat-num { font-size: 1.2rem; }
  .about-year-badge { bottom: 20px; right: 20px; padding: 8px 14px; font-size: 0.85rem; }
  .about-content-col { padding: 60px 40px; }
  .nutri-inner { grid-template-columns: 1fr; gap: 50px; }
  .why-inner { grid-template-columns: 1fr; gap: 50px; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-map-col { min-height: 400px; }
  .app-section { grid-template-columns: 1fr; }
  .app-phone-col { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi-card:nth-child(even) { transform: none; }
  .business-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(248,244,237,0.98); backdrop-filter: blur(20px); padding: 20px 5%; gap: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 100; }
  .nav-links.open a { color: var(--ink); }
  .nav-links.open a:hover { color: var(--grove); }
  .nav-hamburger { display: flex; }
  .dairy-prod-card { grid-template-columns: 1fr; }
  .nutriscore-inner { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card-featured { transform: none; }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.bento-wide, .bento-card.bento-tall { grid-column: span 1; grid-row: span 1; }
  .dairy-grid { grid-template-columns: 1fr; }
  .biz-cards-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .affil-logos-row { gap: 30px; }
  .about-content-col { padding: 50px 28px; }
  .contact-info-col { padding: 60px 28px; }
  .hero-heading { font-size: clamp(3rem, 12vw, 5rem); }
  .map-overlay-stats { padding: 20px 20px 16px; grid-template-columns: 1fr; gap: 10px; }
  .mos-num { font-size: 1.4rem; }
}
