/* ═══════════════════════════════════════════════════════════
   VEDAMRIT FOODS — Luxury heritage dairy
   Playfair Display (display) · Poppins (body)
   ═══════════════════════════════════════════════════════════ */

:root {
  --white: #FFFFFF;
  --cream: #FFF8EC;
  --gold: #C9A227;
  --gold-soft: #E9C24E;
  --gold-deep: #86690E;      /* accessible gold for small text on light */
  --green: #5B8A3C;
  --green-dark: #22391A;
  --green-deeper: #1A2C13;
  --ink: #2D2D2D;
  --gray: #F7F7F7;
  --line: #EDE4CE;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;

  --radius: 24px;
  --radius-lg: 30px;
  --shadow-soft: 0 18px 50px -18px rgba(45, 45, 45, .18);
  --shadow-lift: 0 28px 60px -20px rgba(45, 45, 45, .28);
  --gold-grad: linear-gradient(135deg, #E9C24E 0%, #C9A227 55%, #A9861B 100%);

  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; margin: 0; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

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

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 200;
  background: var(--green-dark);
  color: var(--cream);
  padding: .7rem 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: top .25s var(--ease-out);
}
.skip-link:focus { top: 14px; }

body.menu-open { overflow: hidden; }

/* ── Shared type ─────────────────────────────── */

.eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1rem;
}
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-left: .9rem;
}
.eyebrow.center { text-align: center; }
.eyebrow.center::before {
  content: "";
  display: inline-block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: .9rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 600;
  margin-bottom: 1.4rem;
}
.section-title.center { text-align: center; }

.section-intro {
  text-align: center;
  max-width: 560px;
  margin: -0.4rem auto 3rem;
  color: #5a5a5a;
}

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }

/* ── Buttons ─────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: .95rem 2.3rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-gold {
  background: var(--gold-grad);
  color: #241B02;
  box-shadow: 0 12px 30px -10px rgba(201, 162, 39, .55);
}
.btn-gold:hover { box-shadow: 0 18px 38px -10px rgba(201, 162, 39, .7); }

.btn-outline {
  background: rgba(255, 255, 255, .55);
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { box-shadow: inset 0 0 0 1.5px var(--gold-deep), 0 12px 26px -12px rgba(45,45,45,.3); }

.btn-sm { padding: .55rem 1.5rem; font-size: .85rem; }
.btn-lg { padding: 1.05rem 2.6rem; }

/* ripple */
.ripple .ink {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  transform: scale(0);
  animation: ripple .6s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(3.4); opacity: 0; } }

.text-link {
  font-weight: 500;
  font-size: .9rem;
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
}
.text-link:hover { border-color: var(--gold-deep); }

/* ── Loader ──────────────────────────────────── */

.loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--cream);
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1.4rem;
  transition: opacity .6s ease, visibility .6s;
}
.loader.done { opacity: 0; visibility: hidden; }

.loader-drop { position: relative; height: 110px; display: grid; justify-items: center; }
.loader-drop svg {
  filter: drop-shadow(0 6px 12px rgba(201,162,39,.35));
  animation: dropFall 1.4s var(--ease-out) infinite;
}
.loader-drop svg path { fill: var(--gold); }
.loader-ripple {
  position: absolute;
  bottom: 0;
  width: 60px;
  height: 14px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: rippleOut 1.4s ease-out infinite;
}
@keyframes dropFall {
  0% { transform: translateY(-46px) scale(.85); opacity: 0; }
  45% { opacity: 1; }
  70% { transform: translateY(28px) scale(1); }
  100% { transform: translateY(30px) scale(.96); opacity: 0; }
}
@keyframes rippleOut {
  0%, 55% { opacity: 0; transform: scale(.4); }
  70% { opacity: .9; }
  100% { opacity: 0; transform: scale(1.5); }
}
.loader-text {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-deep);
  letter-spacing: .06em;
}

/* ── Navigation ──────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: padding .35s var(--ease-out), box-shadow .35s;
}
/* Glass background lives on a pseudo-element: backdrop-filter on .nav itself
   would make it the containing block for the fixed mobile menu panel,
   clipping the panel to the bar's height. */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 253, 246, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.nav.scrolled {
  padding: .55rem 0;
  box-shadow: 0 10px 30px -18px rgba(45,45,45,.25);
}
.nav.scrolled::before { opacity: 1; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}
.brand-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: .14em;
  color: var(--ink);
}
.brand-tag {
  display: block;
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}
.nav-links > a:not(.btn) {
  font-size: .88rem;
  font-weight: 400;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  padding: .3rem 0;
}
.nav-links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.nav-links > a:not(.btn):hover::after,
.nav-links > a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .6rem;
  cursor: pointer;
  /* must paint (and receive taps) above the slide-in menu panel */
  position: relative;
  z-index: 130;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg svg { width: 100%; height: 100%; }
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255,253,246,.92) 0%, rgba(255,253,246,.72) 38%, rgba(255,253,246,.1) 68%, rgba(255,253,246,0) 100%);
}

.cloud { animation: drift 46s linear infinite; }
.cloud-b { animation-duration: 62s; animation-delay: -18s; }
.cloud-c { animation-duration: 54s; animation-delay: -34s; }
@keyframes drift {
  from { transform: translateX(-160px); }
  to   { transform: translateX(1600px); }
}

.hero-drops {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.drop {
  position: absolute;
  width: 14px; height: 20px;
  background: radial-gradient(ellipse at 40% 35%, #fff 0%, #F3ECD9 70%);
  border-radius: 50% 50% 50% 50% / 38% 38% 62% 62%;
  opacity: .8;
  box-shadow: 0 6px 14px -4px rgba(201,162,39,.3);
  animation: floatDrop 9s ease-in-out infinite;
}
.d1 { left: 8%;  top: 24%; animation-delay: 0s; }
.d2 { left: 16%; top: 64%; animation-delay: -2.4s; transform: scale(.7); }
.d3 { left: 46%; top: 18%; animation-delay: -4s;   transform: scale(.85); }
.d4 { right: 14%; top: 30%; animation-delay: -6s; }
.d5 { right: 7%;  top: 68%; animation-delay: -7.5s; transform: scale(.6); }
@keyframes floatDrop {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -26px; }
}

.hero-content {
  padding-top: 6.5rem;
  padding-bottom: 6rem;
  max-width: 1180px;
}
.hero-eyebrow { letter-spacing: .4em; }

.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 1.6rem;
}
.hero-title .line { display: block; }
.line-gold {
  background: linear-gradient(110deg, #A9861B, #C9A227 45%, #E9C24E 70%, #A9861B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.hero-sub {
  max-width: 540px;
  font-size: 1.05rem;
  color: #4a4a4a;
  margin-bottom: 2.4rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: .6rem;
  text-decoration: none;
  z-index: 2;
}
.scroll-cue-text {
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .75;
}
.scroll-cue-line {
  width: 1.5px;
  height: 44px;
  background: linear-gradient(var(--gold), transparent);
  animation: cueSlide 2s ease-in-out infinite;
}
@keyframes cueSlide {
  0%, 100% { transform: scaleY(.5); transform-origin: top; opacity: .5; }
  50% { transform: scaleY(1); opacity: 1; }
}

.wave { display: block; width: 100%; height: auto; margin-bottom: -1px; }
.wave-hero { position: absolute; left: 0; right: 0; bottom: -1px; }

/* ── Split layout ────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

/* ── About ───────────────────────────────────── */

.about { background: var(--white); }

.about-figure { position: relative; margin: 0; }
.about-art {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  transform: rotate(-1.2deg);
}
.about-caption {
  position: absolute;
  bottom: 22px;
  right: -14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  color: var(--green-dark);
  padding: .65rem 1.3rem;
  border-radius: 999px;
}

.glass, .glass-card {
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 162, 39, .25);
  box-shadow: var(--shadow-soft);
}

.glass-card {
  border-radius: var(--radius);
  padding: 2rem 2.2rem;
  margin-bottom: 2.4rem;
}

.milk-stream { animation: streamShimmer 2.6s ease-in-out infinite; }
@keyframes streamShimmer { 50% { opacity: .82; } }
.splash { animation: splashPulse 2.6s ease-in-out infinite; transform-origin: center; }
.s2 { animation-delay: -.6s; } .s3 { animation-delay: -1.1s; } .s4 { animation-delay: -1.7s; }
@keyframes splashPulse { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 2rem;
  margin: 0;
}
.stat dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--gold-deep);
}
.stat dd {
  margin: .1rem 0 0;
  font-size: .85rem;
  letter-spacing: .04em;
  color: #5a5a5a;
}

/* ── Products ────────────────────────────────── */

.products { background: var(--cream); }

.product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--gold-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .45s;
  pointer-events: none;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lift);
}
.product-card:hover::before { opacity: 1; }

.product-art {
  background: linear-gradient(180deg, #FFFDF6, var(--cream));
  padding: 1.4rem 1.2rem .6rem;
  overflow: hidden;
}
.product-art svg { transition: transform .6s var(--ease-out); }
.product-card:hover .product-art svg { transform: scale(1.07); }

.product-body { padding: 1.3rem 1.5rem 1.7rem; }
.product-body h3 { font-size: 1.22rem; font-weight: 600; margin-bottom: .55rem; }
.product-body p { font-size: .88rem; color: #5a5a5a; margin-bottom: 1rem; }

.steam { animation: steamRise 2.4s ease-in-out infinite; }
.st2 { animation-delay: -1.2s; }
@keyframes steamRise { 0%,100% { opacity: .25; translate: 0 2px; } 50% { opacity: .8; translate: 0 -2px; } }

/* ── Why ─────────────────────────────────────── */

.why { background: var(--white); }

.why-grid {
  list-style: none;
  margin: 2.6rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.why-card {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem;
  transition: transform .4s var(--ease-out), box-shadow .4s, background .4s;
}
.why-card:hover {
  transform: translateY(-8px);
  background: var(--white);
  box-shadow: var(--shadow-lift);
}
.why-card h3 { font-size: 1.15rem; font-weight: 600; margin: 1.1rem 0 .5rem; }
.why-card p { font-size: .88rem; color: #5a5a5a; }

.why-icon {
  display: inline-grid;
  place-items: center;
  width: 62px; height: 62px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(201,162,39,.35);
  box-shadow: 0 10px 24px -12px rgba(201,162,39,.5);
  transition: transform .4s var(--ease-out);
}
.why-card:hover .why-icon { transform: rotate(-6deg) scale(1.08); }
.why-icon svg {
  width: 30px; height: 30px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-icon svg .fill { fill: var(--gold); stroke: none; }

/* ── Process ─────────────────────────────────── */

.process { background: var(--gray); }

.timeline {
  list-style: none;
  margin: 3.4rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  position: relative;
  counter-reset: step;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 10px, transparent 10px 20px);
  opacity: .55;
}

.tl-step {
  text-align: center;
  padding: 0 .6rem;
  position: relative;
}
.tl-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(201,162,39,.5);
  box-shadow: 0 16px 34px -16px rgba(45,45,45,.3);
  transition: transform .4s var(--ease-out), border-color .4s;
}
.tl-step:hover .tl-icon { transform: translateY(-6px) scale(1.05); border-color: var(--gold); }
.tl-icon svg {
  width: 42px; height: 42px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tl-num {
  position: absolute;
  top: -8px;
  left: 50%;
  translate: 26px 0;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .05em;
  color: #241B02;
  background: var(--gold-grad);
  border-radius: 999px;
  padding: .18rem .55rem;
  box-shadow: 0 6px 14px -6px rgba(201,162,39,.7);
}
.tl-step h3 { font-size: 1.08rem; font-weight: 600; margin: 1.15rem 0 .4rem; }
.tl-step p { font-size: .82rem; color: #5a5a5a; }

/* ── Quality ─────────────────────────────────── */

.quality { background: var(--white); }

.quality-figure { margin: 0; }
.quality-figure svg {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}
.swirl { transform-origin: 230px 230px; animation: swirlSpin 26s linear infinite; }
@keyframes swirlSpin { to { transform: rotate(360deg); } }

.quality-text { max-width: 470px; font-size: 1.02rem; }

.badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 2rem 0 0;
  padding: 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .84rem;
  font-weight: 500;
  color: var(--green-dark);
  background: var(--cream);
  border: 1px solid rgba(201,162,39,.4);
  border-radius: 999px;
  padding: .55rem 1.15rem;
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.badge:hover { transform: translateY(-4px); box-shadow: 0 12px 24px -14px rgba(201,162,39,.6); }
.badge svg { width: 15px; height: 15px; color: var(--green); }

/* ── Testimonials ────────────────────────────── */

.testimonials { background: var(--cream); }

.testi-grid {
  list-style: none;
  margin: 2.8rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.testi-card {
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201,162,39,.22);
  border-radius: var(--radius);
  padding: 2rem 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.testi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }

.quote-mark { width: 26px; height: 22px; fill: var(--gold); opacity: .7; margin-bottom: 1rem; }

.testi-card blockquote { margin: 0 0 1.5rem; }
.testi-card blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.04rem;
  line-height: 1.6;
  color: #3d3d3d;
}

.testi-person { display: flex; align-items: center; gap: .9rem; }
.avatar {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #241B02;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .05em;
}
.testi-person cite { display: block; font-style: normal; font-weight: 500; font-size: .92rem; }
.testi-person small { color: #6a6a6a; font-size: .78rem; }

/* ── Gallery ─────────────────────────────────── */

.gallery { background: var(--white); }

.masonry {
  columns: 3;
  column-gap: 1.4rem;
  margin-top: 2.8rem;
}
.tile {
  break-inside: avoid;
  margin: 0 0 1.4rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.tile svg {
  width: 100%;
  height: auto;
  transition: transform .7s var(--ease-out);
}
.tile:hover svg { transform: scale(1.06); }
.tile figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--ink);
  background: rgba(255,253,246,.85);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: .4rem 1rem;
}

/* ── CTA ─────────────────────────────────────── */

.cta {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(201,162,39,.35), transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 90%, rgba(91,138,60,.5), transparent 60%),
    linear-gradient(140deg, #2C4A1E 0%, var(--green-dark) 60%, #1C3015 100%);
}
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,248,236,.06) 1px, transparent 1.5px);
  background-size: 26px 26px;
}

.cta-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.cta-title {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.cta-sub {
  color: rgba(255,248,236,.8);
  max-width: 480px;
  margin-inline: auto;
  font-size: 1.02rem;
  margin-bottom: 2.2rem;
}

.glass-dark {
  background: rgba(255, 253, 246, .08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,162,39,.35);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.2rem 2rem;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.5);
}

.enquiry-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.4rem;
}

.field { margin-bottom: 1.05rem; }
.field label {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,248,236,.75);
  margin-bottom: .35rem;
}
.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--cream);
  background: rgba(255,253,246,.08);
  border: 1px solid rgba(255,248,236,.25);
  border-radius: 14px;
  padding: .75rem 1rem;
  transition: border-color .3s, background .3s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-soft);
  background: rgba(255,253,246,.14);
}
.field input[aria-invalid="true"] { border-color: #E8896B; }
.field-error { color: #F4B29A; font-size: .78rem; margin: .35rem 0 0; }

.enquiry-submit { width: 100%; margin-top: .4rem; }
.form-status { margin-top: 1rem; font-size: .88rem; color: var(--gold-soft); text-align: center; min-height: 1.4em; }
.form-status.error { color: #F4B29A; }

/* ── Footer ──────────────────────────────────── */

.footer {
  background: linear-gradient(180deg, var(--green-deeper), #142310);
  color: rgba(255,248,236,.82);
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2.6rem;
  padding: 4.2rem 0 3rem;
}
.brand-footer .brand-name { color: var(--cream); }
.brand-footer .brand-tag { color: var(--gold-soft); }
.footer-blurb { margin: 1.2rem 0 1.4rem; max-width: 300px; font-size: .86rem; line-height: 1.7; }

.socials {
  list-style: none;
  display: flex;
  gap: .7rem;
  margin: 0;
  padding: 0;
}
.socials a {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,.45);
  color: var(--gold-soft);
  transition: background .3s, transform .3s var(--ease-out), color .3s;
}
.socials a:hover { background: var(--gold); color: #241B02; transform: translateY(-4px); }
.socials svg { width: 17px; height: 17px; }

.footer-col h3 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-col a { color: inherit; text-decoration: none; transition: color .25s, padding-left .25s; }
.footer-col a:hover { color: var(--gold-soft); padding-left: 4px; }
.footer-col address { font-style: normal; }
.footer-col address p { margin-bottom: .55rem; }

.footer-bar {
  border-top: 1px solid rgba(201,162,39,.25);
  padding: 1.2rem 0;
  font-size: .8rem;
  color: rgba(255,248,236,.55);
}

/* ── Reveal animations ───────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

.hero-title .line { transition-duration: 1s; }

/* ── Responsive ──────────────────────────────── */

@media (max-width: 1020px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 2.6rem; }
  .timeline::before { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    z-index: 120;
    width: min(320px, 84vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 2.5rem;
    background: rgba(255,253,246,.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -20px 0 60px -20px rgba(45,45,45,.35);
    transform: translateX(105%);
    transition: transform .45s var(--ease-out);
  }
  .nav-links.open { transform: none; }
  .nav-links > a:not(.btn) { font-size: 1.1rem; }

  .split { grid-template-columns: 1fr; }
  .about-figure { order: -1; max-width: 440px; margin-inline: auto; }
  .quality-figure { max-width: 440px; margin-inline: auto; }

  .product-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 1; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .scroll-cue { display: none; }
  .hero-sub { font-size: .98rem; }
}

@media (max-width: 430px) {
  .timeline { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; text-align: center; }
}

/* ── Snapshot mode (?snap) ───────────────────── */

html.snap .hero { min-height: 820px; }
html.og .nav, html.og .scroll-cue, html.og .wave-hero { display: none; }
html.og .hero { min-height: 630px; }
html.og .hero-content { padding-top: 2rem; padding-bottom: 2rem; }
html.snap .reveal { opacity: 1; transform: none; transition: none; }
html.snap .cloud, html.snap .drop, html.snap .swirl,
html.snap .scroll-cue-line, html.snap .loader { animation: none !important; }

/* ── Reduced motion ──────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .cloud, .drop, .swirl, .scroll-cue-line { animation: none !important; }
}
