/* ═══════════════════════════════════════════════════════════════
   ANDHRA DAIRY — design system
   Brand: deep farm green #006134 (from logo) + cream + gold.
   Invariants: scroll animation = transform/opacity only;
   reduced-motion renders fully static; no layout thrash.
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  /* brand (from app logo: deep green + white) */
  --brand-900: #00331d;
  --brand-800: #006134;
  --brand-700: #007a40;
  --brand-600: #128a4c;
  --brand-100: #e4efe4;
  --brand-050: #f1f7ef;

  /* cream canvas */
  --cream-50:  #fdfbf7;
  --cream-100: #f6f0e2;
  --cream-200: #ece0c8;
  --cream-300: #ddcca8;

  /* ink (warm near-black with green undertone) */
  --ink-900: #142018;
  --ink-700: #3d4a40;
  --ink-500: #6a7368;

  /* accents */
  --gold-500: #d9a441;
  --gold-700: #b9862a;

  /* type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  /* scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: clamp(1.9rem, 4.5vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 6.5vw, 4.5rem);
  --text-display: clamp(3.2rem, 10vw, 8rem);

  /* spacing */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-6: 1.5rem;  --sp-8: 2rem;   --sp-12: 3rem;   --sp-16: 4rem;
  --sp-24: 6rem;   --sp-32: 8rem;

  /* motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-sine: cubic-bezier(0.45, 0, 0.55, 1);
  --dur-fast: 0.25s;
  --dur-med: 0.6s;
  --dur-slow: 1s;

  /* chrome */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 30px 70px -28px rgba(0, 51, 29, 0.25);
  --hairline: 1px solid var(--cream-200);
  --nav-h: 76px;
}

/* ── Reset / base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.locked { overflow: hidden; }

::selection { background: var(--gold-500); color: var(--brand-900); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.05; color: var(--ink-900); letter-spacing: -0.01em; }
p { margin: 0; }

:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; border-radius: 2px; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-700);
  margin-bottom: var(--sp-4);
}
.eyebrow-on-dark { color: var(--gold-500); }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.7em;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease-out-expo), box-shadow var(--dur-fast) var(--ease-out-expo), background-color var(--dur-fast) var(--ease-out-expo), color var(--dur-fast) var(--ease-out-expo), border-color var(--dur-fast) var(--ease-out-expo);
  will-change: transform;
}
.btn-primary { background: var(--brand-800); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -18px rgba(0, 97, 52, 0.6); background: var(--brand-700); }
.btn-ghost { border-color: var(--cream-300); color: var(--ink-900); background: transparent; }
.btn-ghost:hover { border-color: var(--brand-800); transform: translateY(-2px); }
.btn-light { border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.btn-light:hover { border-color: #fff; transform: translateY(-2px); }
.btn-gold { background: var(--gold-500); color: var(--brand-900); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -18px rgba(217, 164, 65, 0.7); background: #e2b14e; }

/* ── Grain texture ──────────────────────────────────────── */
.grain {
  position: fixed; inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ── Preloader ──────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--cream-50);
}
html.js .preloader { display: flex; }
.preloader-inner { text-align: center; }
.preloader-logo {
  width: 72px; height: 72px;
  border-radius: 20px;
  margin: 0 auto;
  box-shadow: 0 20px 50px -18px rgba(0, 51, 29, 0.45);
}
.preloader-name {
  margin-top: var(--sp-6);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.preloader-sub {
  margin-top: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brand-700);
}
.preloader-bar {
  width: 200px; height: 1px;
  background: var(--cream-200);
  margin: var(--sp-8) auto 0;
  overflow: hidden;
}
.preloader-bar-fill { display: block; width: 100%; height: 100%; background: var(--gold-500); transform: scaleX(0); transform-origin: left; }
.preloader-count {
  margin-top: var(--sp-4);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--ink-500);
  font-variant-numeric: tabular-nums;
}

/* ── Nav ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-6) clamp(1.25rem, 5vw, 4rem);
  transition: background-color var(--dur-med) var(--ease-out-expo), box-shadow var(--dur-med) var(--ease-out-expo), padding var(--dur-med) var(--ease-out-expo);
}
.nav.scrolled {
  background: rgba(253, 251, 247, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--cream-200);
  padding-top: var(--sp-3);
  padding-bottom: var(--sp-3);
}
.nav-brand { display: inline-flex; align-items: center; gap: var(--sp-3); color: var(--ink-900); font-weight: 600; }
.nav-brand img {
  width: 38px; height: 38px;
  border-radius: 11px;
  box-shadow: 0 8px 20px -8px rgba(0, 51, 29, 0.5);
}
.nav-brand-text { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.01em; }
.nav-links { display: flex; gap: clamp(1rem, 3vw, 2.5rem); }
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-500);
  position: relative;
  transition: color var(--dur-fast) var(--ease-out-expo);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 1px; background: var(--gold-500);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur-fast) var(--ease-out-expo);
}
.nav-links a:hover { color: var(--ink-900); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  font-size: var(--text-sm);
  font-weight: 600;
  color: #fff;
  background: var(--brand-800);
  padding: 0.65em 1.3em;
  border-radius: 999px;
  transition: transform var(--dur-fast) var(--ease-out-expo), background-color var(--dur-fast) var(--ease-out-expo);
}
.nav-cta:hover { background: var(--brand-700); transform: translateY(-1px); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(7rem, 12vh, 10rem) clamp(1.25rem, 5vw, 4rem) var(--sp-24);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}
.blob-gold  { width: 52vw; height: 52vw; left: -14vw; top: -18vw; background: radial-gradient(circle at 35% 35%, rgba(217, 164, 65, 0.45), rgba(217, 164, 65, 0)); animation: drift-a 26s var(--ease-sine) infinite alternate; }
.blob-green { width: 46vw; height: 46vw; right: -12vw; top: 4vh; background: radial-gradient(circle at 60% 40%, rgba(0, 97, 52, 0.22), rgba(0, 97, 52, 0)); animation: drift-b 32s var(--ease-sine) infinite alternate; }
.blob-cream { width: 60vw; height: 60vw; left: 24vw; bottom: -32vw; background: radial-gradient(circle at 50% 50%, rgba(236, 224, 200, 0.9), rgba(236, 224, 200, 0)); animation: drift-a 38s var(--ease-sine) infinite alternate-reverse; }
@keyframes drift-a { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(6vw, 4vh, 0) scale(1.12); } }
@keyframes drift-b { from { transform: translate3d(0, 0, 0) scale(1.05); } to { transform: translate3d(-5vw, -5vh, 0) scale(0.95); } }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: var(--sp-16);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero-title { font-size: var(--text-display); font-weight: 500; letter-spacing: -0.025em; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line-inner { display: block; will-change: transform; }
.hero-title .line:last-child { color: var(--brand-700); font-style: italic; }
.hero-sub {
  margin-top: var(--sp-8);
  max-width: 34em;
  font-size: var(--text-lg);
  color: var(--ink-500);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-top: var(--sp-12); }
.hero-proof {
  display: flex; flex-wrap: wrap; gap: var(--sp-8);
  list-style: none; margin: var(--sp-16) 0 0; padding: 0;
}
.hero-proof li { display: flex; flex-direction: column; gap: 0.15em; font-size: var(--text-sm); color: var(--ink-500); }
.hero-proof strong { font-family: var(--font-display); font-size: var(--text-xl); color: var(--ink-900); font-weight: 600; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }

/* 3D stage (canvas) */
.hero-3d {
  position: relative;
  width: 100%;
  height: min(72svh, 640px);
  display: none;
}
html.hero3d .hero-3d { display: block; }
.hero-3d canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

/* SVG bottle fallback (shown when 3D is unavailable / reduced motion) */
.bottle-wrap { position: relative; width: min(340px, 62vw); will-change: transform; }
html.hero3d .bottle-wrap { display: none; }
.bottle { width: 100%; height: auto; filter: drop-shadow(0 40px 50px rgba(0, 51, 29, 0.18)); }
.bottle-halo {
  position: absolute; inset: 12% -18%;
  background: radial-gradient(circle at 50% 45%, rgba(217, 164, 65, 0.22), rgba(217, 164, 65, 0) 62%);
  filter: blur(10px);
  z-index: -1;
  animation: halo 5.5s var(--ease-sine) infinite alternate;
}
@keyframes halo { from { opacity: 0.7; transform: scale(0.96); } to { opacity: 1; transform: scale(1.06); } }

.hero-scrollhint {
  position: absolute;
  left: 50%; bottom: var(--sp-8);
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-3);
  color: var(--ink-500);
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-scrollhint i {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--gold-500), transparent);
  animation: scrollhint 2.2s var(--ease-sine) infinite;
  transform-origin: top;
}
@keyframes scrollhint { 0% { transform: scaleY(0); } 45% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0.1; } }

/* ── Marquee ────────────────────────────────────────────── */
.marquee {
  border-top: var(--hairline);
  border-bottom: var(--hairline);
  background: var(--brand-800);
  overflow: hidden;
  padding: var(--sp-6) 0;
}
.marquee-track { display: flex; width: max-content; animation: marquee 36s linear infinite; will-change: transform; }
.marquee-group { display: flex; align-items: center; gap: clamp(1.5rem, 4vw, 3rem); padding-right: clamp(1.5rem, 4vw, 3rem); white-space: nowrap; }
.marquee-group span {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: #fff;
  font-weight: 500;
}
.marquee-group i { font-style: normal; color: var(--gold-500); font-size: var(--text-xl); }
@keyframes marquee { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }

/* ── Section shells ─────────────────────────────────────── */
.story, .products, .dealers, .testimonials, .cta {
  padding: var(--sp-32) clamp(1.25rem, 5vw, 4rem);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.section-title { font-size: var(--text-3xl); font-weight: 500; max-width: 16em; }
.section-body { margin-top: var(--sp-6); max-width: 32em; color: var(--ink-500); font-size: var(--text-lg); }
.section-body + .section-body { margin-top: var(--sp-4); }

/* ── Story (sticky scrub) ───────────────────────────────── */
.story { padding-top: var(--sp-16); }
.story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: start; }

.story-visual {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  align-self: start;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(170deg, #0b4d2b 0%, var(--brand-800) 55%, #0a5c33 100%);
  box-shadow: var(--shadow-soft);
}
/* layered pasture art (art-directed; swap for photo later) */
.story-art { position: absolute; inset: 0; }
.story-art .sky-sun {
  position: absolute; right: 12%; top: 10%;
  width: 90px; height: 90px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #ffe9b8, var(--gold-500) 70%);
  filter: blur(1px);
  opacity: 0.9;
}
.story-art .hill {
  position: absolute; left: -12%; right: -12%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, #0f6b3a, #0a5229);
}
.story-art .hill-back { bottom: 30%; height: 46%; opacity: 0.75; }
.story-art .hill-mid  { bottom: 16%; height: 40%; background: linear-gradient(180deg, #128a4c, #0a5c33); }
.story-art .hill-front{ bottom: -8%; height: 34%; background: linear-gradient(180deg, #0d6736, #074523); }
.story-art .cloud {
  position: absolute;
  width: 70px; height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  filter: blur(6px);
  animation: cloud-drift 34s var(--ease-sine) infinite alternate;
}
.story-art .cloud.c1 { top: 16%; left: 6%; }
.story-art .cloud.c2 { top: 24%; left: 46%; animation-delay: -14s; animation-duration: 42s; }
.story-art .cow {
  position: absolute; left: 14%; bottom: 22%;
  width: 110px; opacity: 0.92;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.25));
}
@keyframes cloud-drift { from { transform: translateX(0); } to { transform: translateX(34px); } }

.story-photo-slot {
  position: absolute; inset: auto 18px 18px 18px;
  padding: var(--sp-4);
  border-radius: var(--radius-sm);
  background: rgba(0, 51, 29, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-align: center;
  pointer-events: none;
}

.story-beats { display: flex; flex-direction: column; }
.story-beat {
  border-top: 1px solid var(--cream-200);
  padding: var(--sp-12) 0;
  min-height: 62svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-beat:first-child { border-top: 0; }
.story-beat-num {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--gold-700);
  letter-spacing: 0.1em;
}
.story-beat h3 { font-size: var(--text-2xl); margin-top: var(--sp-4); }
.story-beat p { margin-top: var(--sp-4); max-width: 26em; color: var(--ink-500); font-size: var(--text-lg); }

/* ── Products (horizontal rail) ─────────────────────────── */
.products { max-width: none; padding-top: var(--sp-32); }
.products-head { max-width: 1280px; margin: 0 auto var(--sp-16); padding: 0 clamp(1.25rem, 5vw, 4rem); }
.products-pin { position: relative; }
.products-viewport { overflow: hidden; }
.products-track {
  display: flex;
  gap: var(--sp-6);
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  width: max-content;
  will-change: transform;
}
.product-card {
  width: clamp(300px, 26vw, 400px);
  background: var(--brand-050);
  border: 1px solid var(--brand-100);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: transform var(--dur-med) var(--ease-out-expo), box-shadow var(--dur-med) var(--ease-out-expo), border-color var(--dur-med) var(--ease-out-expo);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--cream-300); }
.product-art {
  width: 84px; height: 84px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
}
.product-art-milk   { background: #fff; color: var(--ink-700); box-shadow: inset 0 0 0 1px var(--cream-200); }
.product-art-curd   { background: rgba(255, 255, 255, 0.9); color: var(--ink-700); box-shadow: inset 0 0 0 1px var(--cream-200); }
.product-art-butter { background: rgba(217, 164, 65, 0.16); color: var(--gold-700); }
.product-art-ghee   { background: rgba(217, 164, 65, 0.22); color: #a97a1e; }
.product-art-paneer { background: rgba(0, 97, 52, 0.1); color: var(--brand-700); }
.product-art-lassi  { background: rgba(0, 97, 52, 0.08); color: var(--brand-600); }
.product-card h3 { font-size: var(--text-xl); }
.product-card p { font-size: var(--text-sm); color: var(--ink-500); flex: 1; }
.product-tag { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-700); }
.products-note {
  max-width: 1280px;
  margin: var(--sp-16) auto 0;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  font-size: var(--text-sm);
  color: var(--ink-500);
}

/* ── Stats ──────────────────────────────────────────────── */
.stats { padding: var(--sp-32) clamp(1.25rem, 5vw, 4rem); background: var(--brand-900); }
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
}
.stat { display: flex; flex-direction: column; gap: var(--sp-2); }
.stat-num { font-family: var(--font-display); font-size: var(--text-3xl); color: #fff; font-weight: 500; font-variant-numeric: tabular-nums; }
.stat-num em { font-style: normal; color: var(--gold-500); }
.stat-label { font-size: var(--text-sm); color: rgba(255, 255, 255, 0.65); }

/* ── Dealers ────────────────────────────────────────────── */
.dealers {
  max-width: none;
  padding: 0;
  background: var(--brand-800);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.dealers-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--sp-32) clamp(1.25rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--sp-24);
  align-items: center;
  position: relative;
}
.dealers::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 85% 15%, rgba(217, 164, 65, 0.18), transparent 60%),
              radial-gradient(50% 70% at 8% 90%, rgba(255, 255, 255, 0.08), transparent 55%);
  pointer-events: none;
}
.dealers-title { font-size: var(--text-3xl); color: #fff; font-weight: 500; }
.dealers-sub { margin-top: var(--sp-6); color: rgba(255, 255, 255, 0.82); font-size: var(--text-lg); max-width: 30em; }
.dealers-actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-top: var(--sp-12); }
.dealers-note { margin-top: var(--sp-8); font-size: var(--text-sm); color: rgba(255, 255, 255, 0.6); }

.dealers-app {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: var(--sp-12);
}
.dealers-app-head { display: flex; align-items: center; gap: var(--sp-4); }
.dealers-app-icon { width: 64px; height: 64px; border-radius: 16px; box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.5); }
.dealers-app-head h3 { color: #fff; font-size: var(--text-xl); }
.dealers-app-head span { font-size: var(--text-xs); color: rgba(255, 255, 255, 0.65); letter-spacing: 0.06em; }
.dealers-features { list-style: none; margin: var(--sp-8) 0 0; padding: 0; display: flex; flex-direction: column; gap: var(--sp-4); }
.dealers-features li {
  display: flex; gap: var(--sp-3); align-items: flex-start;
  font-size: var(--text-sm); color: rgba(255, 255, 255, 0.88);
}
.dealers-features li svg { flex: none; margin-top: 2px; color: var(--gold-500); }
.dealers-play { margin-top: var(--sp-8); display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap; }

/* ── Testimonials ───────────────────────────────────────── */
.testimonials-head { margin-bottom: var(--sp-16); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.testimonial-card {
  background: var(--brand-050);
  border: 1px solid var(--brand-100);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
  display: flex; flex-direction: column; gap: var(--sp-6);
}
.testimonial-card blockquote { margin: 0; font-family: var(--font-display); font-size: var(--text-lg); line-height: 1.4; color: var(--ink-900); }
.testimonial-card figcaption { display: flex; flex-direction: column; gap: 0.2em; font-size: var(--text-sm); color: var(--ink-500); }
.testimonial-card figcaption strong { color: var(--ink-900); }

/* ── CTA / contact ──────────────────────────────────────── */
.cta { text-align: center; padding-top: var(--sp-24); }
.cta-title { font-size: var(--text-display); font-weight: 500; letter-spacing: -0.02em; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-4); margin-top: var(--sp-12); }
.cta-note { margin-top: var(--sp-8); font-size: var(--text-sm); color: var(--ink-500); }
.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  max-width: 1280px;
  margin: var(--sp-24) auto 0;
  text-align: left;
}
.contact-card {
  border: var(--hairline);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
  background: var(--brand-050);
}
.contact-card h4 { font-size: var(--text-base); font-family: var(--font-body); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: var(--text-xs); color: var(--brand-700); }
.contact-card p { margin-top: var(--sp-3); color: var(--ink-900); font-size: var(--text-base); }
.contact-card a { color: var(--ink-900); }
.contact-card a:hover { color: var(--brand-700); }

/* ── Enquiry form (lead capture → WhatsApp) ─────────────── */
.enquiry-form {
  max-width: 620px;
  margin: var(--sp-16) auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: var(--sp-4) var(--sp-5);
  border: var(--hairline);
  border-radius: var(--radius-sm);
  background: var(--brand-050);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--ink-900);
}
.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--brand-700);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-700) 15%, transparent);
  background: #fff;
}
.enquiry-row { display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap; }
.form-status { font-size: var(--text-sm); color: var(--ink-500); }
.form-status.ok { color: var(--brand-700); }
.form-status.error { color: #b3362a; }
@media (max-width: 560px) { .enquiry-grid { grid-template-columns: 1fr; } }

/* ── Promo banner (CMS-controlled) ──────────────────────── */
.promo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--brand-700);
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: var(--text-sm);
  font-weight: 600;
}
.promo-bar[hidden] { display: none; }
body.has-promo .nav { top: 34px; }
body.has-promo { padding-top: 34px; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--brand-900);
  color: rgba(255, 255, 255, 0.72);
  padding: var(--sp-24) clamp(1.25rem, 5vw, 4rem) var(--sp-12);
  overflow: hidden;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}
.footer-row { display: flex; flex-wrap: wrap; gap: var(--sp-8); align-items: baseline; justify-content: space-between; margin-top: var(--sp-8); font-size: var(--text-sm); }
.footer-links { display: flex; gap: var(--sp-6); }
.footer-links a { color: rgba(255, 255, 255, 0.72); }
.footer-links a:hover, .footer-copy a:hover { color: #fff; }
.footer-copy { max-width: 34em; }
.footer-copy a { color: rgba(255, 255, 255, 0.72); }
.footer-brand { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-12); }
.footer-brand img { width: 44px; height: 44px; border-radius: 12px; }
.footer-brand span { font-family: var(--font-display); font-size: 1.4rem; color: #fff; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-12); }
  .hero-visual { order: -1; }
  .hero-3d { height: 56svh; }
  .bottle-wrap { width: min(240px, 46vw); }
  .story-inner { grid-template-columns: 1fr; gap: var(--sp-12); }
  .story-visual { position: relative; top: 0; aspect-ratio: 4 / 3.4; }
  .story-beat { min-height: auto; padding: var(--sp-8) 0; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: var(--sp-12); }
  .dealers-inner { grid-template-columns: 1fr; gap: var(--sp-16); }
  .contact-strip { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-proof { gap: var(--sp-6); }
  .story, .testimonials, .cta { padding-top: var(--sp-24); padding-bottom: var(--sp-24); }
  .stats { padding-top: var(--sp-24); padding-bottom: var(--sp-24); }
  .products { padding-top: var(--sp-24); }
  .dealers-inner { padding-top: var(--sp-24); padding-bottom: var(--sp-24); }
  .products-track { padding: 0 1.25rem; }
}

/* ── Reduced motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .blob, .bottle-halo, .hero-scrollhint i, .story-art .cloud { animation: none !important; }
  .preloader { display: none !important; }
  .story-art .sky-sun, .story-art .hill { filter: none; }
}
