/* ================================================================
   HOME — hero, marquee, sections, product grid, testimonials, FAQ
   ================================================================ */

/* ---------- Global texture + motif helpers ---------- */

/* Subtle paper-grain overlay — gives the cream bg depth without
   drifting into photorealism. Pure SVG, zero network cost. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.075  0 0 0 0 0.122  0 0 0 0 0.216  0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

main { position: relative; z-index: 2; }

/* Scattered decorative X-stamps echoing the Mills logo dot.
   Placed as absolute siblings in sections where we want extra chaos. */
.x-stamp {
  position: absolute;
  width: 28px; height: 28px;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 4l16 16M20 4L4 20' stroke='black' stroke-width='5' stroke-linecap='square' fill='none'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 4l16 16M20 4L4 20' stroke='black' stroke-width='5' stroke-linecap='square' fill='none'/></svg>") center/contain no-repeat;
  pointer-events: none;
  opacity: 0.9;
}
.x-stamp--sm { width: 14px; height: 14px; }
.x-stamp--lg { width: 52px; height: 52px; }

/* ================================================================
   HERO — asymmetric, oversized, bottle pushed right, type pushed left
   ================================================================ */

/* Dark hero — commercial/industrial signal. Bottles get more space.
   Replaces the previous cream-bg friendly hobbyist look. */
.hero {
  position: relative;
  /* Top padding trimmed a notch — headline sits 1 line higher now that it
     reads complete with a period on "BOTTLE." and doesn't need the extra
     top breathing room. */
  padding: clamp(var(--space-5), 3.5vw, var(--space-7)) 0 clamp(var(--space-8), 8vw, var(--space-10));
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--cream);
}
.hero::after, .hero::before { z-index: 0; }

.hero__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.55fr;   /* image dominates — first impression is the product line */
  align-items: center;
  gap: var(--space-6);
  position: relative;
}
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-5); }
}

.hero__copy { position: relative; z-index: 2; }

/* Top banner — sits directly under nav, full-width navy strip,
   houses the live campaign chip + counter. Replaces hero__kicker. */
.top-banner {
  background: var(--ink);
  padding-block: var(--space-3);
  border-bottom: 1px solid rgba(246, 241, 230, .10);
}
.top-banner__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-ultra);
  text-transform: uppercase;
  color: var(--ink);
  background: var(--cream-deep);
  padding: 6px 14px;
  border-radius: var(--r-pill);
}
.top-banner__chip::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(228, 33, 40, .18);
  flex-shrink: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .top-banner__chip::before { animation: kickerPulse 1.8s ease-out infinite; }
}
.top-banner__chip-text { white-space: nowrap; }
.top-banner__chip-sep  { color: var(--ink-30); }

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-ultra);
  text-transform: uppercase;
  color: var(--ink);
  background: var(--cream-deep);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: var(--space-5);
  animation: fadeUp .6s var(--ease-out) both;
  animation-delay: .05s;
}
.hero__kicker::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(228, 33, 40, .18);
  flex-shrink: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__kicker::before { animation: kickerPulse 1.8s ease-out infinite; }
  @keyframes kickerPulse {
    0%   { box-shadow: 0 0 0 0   rgba(228, 33, 40, .55); }
    70%  { box-shadow: 0 0 0 10px rgba(228, 33, 40, 0); }
    100% { box-shadow: 0 0 0 0   rgba(228, 33, 40, 0); }
  }
}
.hero__kicker-text { white-space: nowrap; }
.hero__kicker-sep  { color: var(--ink-30); }
.hero__count {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05em;
  color: var(--red);
  font-feature-settings: "tnum" 1;
  letter-spacing: -0.01em;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(var(--fs-3xl), 8.5vw, var(--fs-6xl));
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--cream);
  margin: 0 0 var(--space-5);
  animation: fadeUp .7s var(--ease-out) both;
  animation-delay: .15s;
}
.hero__title em {
  font-style: normal;
  color: var(--red);
  font-family: var(--font-slab);
  font-weight: 400;
  font-size: 0.82em;
  letter-spacing: -0.01em;
  display: inline-block;
  position: relative;
  padding: 0 0.1em;
}
.hero__title em::before,
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: var(--cream);
}
.hero__title em::before { top: -2px; }
.hero__title em::after  { bottom: -2px; }

.hero__lede {
  font-size: clamp(var(--fs-md), 1.4vw, var(--fs-lg));
  line-height: var(--lh-relaxed);
  color: rgba(246, 241, 230, .82);
  max-width: 46ch;
  margin-bottom: var(--space-6);
  animation: fadeUp .7s var(--ease-out) both;
  animation-delay: .25s;
}

/* Ghost button on dark hero needs cream stroke + label */
.hero .btn--ghost { color: var(--cream); border-color: var(--cream); }
.hero .btn--ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  animation: fadeUp .7s var(--ease-out) both;
  animation-delay: .35s;
}

.hero__meta {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: var(--stroke-hair) solid var(--ink-10);
  flex-wrap: wrap;
  animation: fadeUp .7s var(--ease-out) both;
  animation-delay: .45s;
}
.hero__meta-item {
  display: flex; flex-direction: column; gap: 4px;
}
.hero__meta-item strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-xl);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hero__meta-item span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--tracking-ultra);
  text-transform: uppercase;
  color: var(--stone);
}

/* Hero image — 6-bottle group shot, larger for commercial scale signal */
.hero__image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 780px;
  margin-inline: auto;
  display: grid; place-items: center;
  /* Heritage gold — museum/atelier signal. Scoped local so we don't
     pollute the global token set for a single region. */
  --gold: #C9A961;
  --gold-soft: rgba(201, 169, 97, .45);
}
.hero__image-wrap::before {
  content: "";
  position: absolute;
  inset: 6% 10% 6% 10%;
  background:
    radial-gradient(circle at 50% 42%, rgba(201, 169, 97, 0.32) 0%, rgba(201, 169, 97, 0.10) 30%, transparent 62%),
    radial-gradient(circle at 50% 68%, rgba(228, 33, 40, 0.18) 0%, transparent 55%);
  z-index: 0;
  filter: blur(32px);
}
.hero__image-wrap::after {
  /* Big refined ring backing — gold hairline + soft inner vignette */
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  z-index: 0;
  box-shadow:
    inset 0 0 0 6px rgba(19, 31, 55, .45),
    inset 0 0 80px rgba(19, 31, 55, .55);
}
.hero__image {
  position: relative;
  z-index: 2;
  max-width: 110%;
  margin-left: -5%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .5));
  animation: fadeUp .9s var(--ease-out) both;
  animation-delay: .3s;
}

/* Pre-composed luxury hero — single image carries plinth, reflections,
   gold hairline, amber light, bottle cluster. CSS adds only the frame
   chrome (trade badge, lineup tag). No overlays, no halo. */
.hero__image-wrap--luxury {
  position: relative;
  display: block;
  width: 100%;
  /* Matches cropped PNG (1425×685) so object-fit:contain doesn't add bars. */
  aspect-ratio: 1425 / 685;
  max-width: 1300px;
  margin-inline: auto;
  /* Fallback: if any browser can't render the PNG's alpha channel, the
     navy backdrop still matches the page. */
  background-color: var(--ink);
  /* Let the scaled image bleed outside the wrap without getting clipped;
     .hero section still has overflow:hidden so nothing escapes the section. */
  overflow: visible;
  z-index: 1;
}
.hero__image-wrap--luxury::before,
.hero__image-wrap--luxury::after { content: none; }
.hero__luxury-image {
  position: relative;
  z-index: 1;                /* below copy (z-index:2) so scaled bleed sits behind text */
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  animation: fadeUp .9s var(--ease-out) both;
  animation-delay: .25s;
  /* Bottle scale — anchored right so growth goes leftward into the gutter,
     never pushing the image off the page's right edge. Another +33% on top
     of the earlier +33%, for a cumulative ~+77% vs. the raw PNG. Copy
     (z-index:2) stays on top where image bleeds behind it. */
  transform: scale(1.77);
  transform-origin: center right;
}
@media (max-width: 960px) {
  .hero__luxury-image {
    transform: none;  /* stack layout: image already takes full width */
  }
}

/* Legacy jerrycan-composition hero — kept for reference, unused */
.hero__image-wrap--jerrycans {
  display: block;
  width: 100%;
  min-height: 560px;
}
.hero__jerrycan {
  position: absolute;
  z-index: 2;
  width: 58%;
  height: auto;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, .55));
  animation: fadeUp .9s var(--ease-out) both;
}
.hero__jerrycan--a {
  left: 2%;
  top: 4%;
  animation-delay: .35s;
  transform: rotate(-1deg);
}
.hero__jerrycan--b {
  right: 2%;
  top: 10%;
  animation-delay: .55s;
  transform: rotate(1deg);
  z-index: 3;
}
@media (max-width: 600px) {
  .hero__jerrycan { width: 62%; }
}

/* Gold plinth — horizontal polished line suggesting a museum shelf
   under the bottles. Gradient fades at each end so it reads as light,
   not a literal rule. */
.hero__plinth {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 18%;
  height: 1px;
  z-index: 1;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 169, 97, 0) 8%,
    rgba(201, 169, 97, .85) 28%,
    rgba(201, 169, 97, .95) 50%,
    rgba(201, 169, 97, .85) 72%,
    rgba(201, 169, 97, 0) 92%,
    transparent 100%
  );
  pointer-events: none;
}
.hero__plinth::before {
  /* Soft warm wash above the line — "light from above" */
  content: "";
  position: absolute;
  left: 18%; right: 18%;
  bottom: 0;
  height: 70px;
  background: linear-gradient(
    180deg,
    rgba(201, 169, 97, .08) 0%,
    rgba(201, 169, 97, 0) 100%
  );
  pointer-events: none;
}
.hero__plinth::after {
  /* Floor fade underneath — inverted warm spill */
  content: "";
  position: absolute;
  left: 12%; right: 12%;
  top: 0;
  height: 90px;
  background: linear-gradient(
    180deg,
    rgba(201, 169, 97, .05) 0%,
    rgba(19, 31, 55, 0) 100%
  );
  pointer-events: none;
}

/* Reflections — inverted ghost copies of the jerrycans beneath the plinth */
.hero__jerrycan--reflection {
  z-index: 1;
  width: 58%;
  opacity: .22;
  filter: blur(1.5px) drop-shadow(0 0 0 transparent);
  animation-delay: .75s;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 55%);
          mask-image: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 55%);
}
.hero__jerrycan--ra {
  left: 2%;
  bottom: 4%;
  top: auto;
  transform: scaleY(-1) rotate(-1deg);
}
.hero__jerrycan--rb {
  right: 2%;
  bottom: -2%;
  top: auto;
  transform: scaleY(-1) rotate(1deg);
}
@media (max-width: 600px) {
  .hero__jerrycan--reflection { display: none; }
}

/* Heritage seal — circular gold stamp, rotated, mid-left.
   Reads: museum-piece. Dutch atelier. Not a consumer bottle. */
.hero__seal {
  position: absolute;
  bottom: 22%;
  left: 2%;
  z-index: 4;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background:
    radial-gradient(circle at 50% 40%, rgba(201, 169, 97, .10) 0%, rgba(19, 31, 55, .55) 70%);
  box-shadow:
    inset 0 0 0 6px rgba(19, 31, 55, .55),
    inset 0 0 0 7px rgba(201, 169, 97, .55),
    0 18px 40px -18px rgba(0, 0, 0, .7);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  text-align: center;
  color: var(--gold);
  transform: rotate(-7deg);
  animation: fadeUp .9s var(--ease-out) both;
  animation-delay: .85s;
}
.hero__seal-core {
  display: block;
  font-family: var(--font-slab);
  font-weight: 400;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold);
  text-transform: uppercase;
}
.hero__seal-top,
.hero__seal-bot {
  position: absolute;
  left: 0; right: 0;
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: var(--tracking-ultra);
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.hero__seal-top { top: 20px; }
.hero__seal-bot { bottom: 20px; }
@media (max-width: 760px) {
  .hero__seal { width: 96px; height: 96px; left: 0; bottom: 24%; }
  .hero__seal-core { font-size: 20px; }
  .hero__seal-top, .hero__seal-bot { font-size: 7px; }
  .hero__seal-top { top: 14px; }
  .hero__seal-bot { bottom: 14px; }
}

/* Giant outlined "MILLS" stencil that sits behind the bottles.
   Gold stroke + subtle double-line for an embossed atelier feel. */
.hero__stencil {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(14rem, 32vw, 30rem);
  letter-spacing: -0.08em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(201, 169, 97, .22);
  text-shadow:
    0 1px 0 rgba(201, 169, 97, .10),
    0 -1px 0 rgba(19, 31, 55, .6);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* Small floating callouts around the hero bottle image */
.hero__callout {
  position: absolute;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
  z-index: 3;
  box-shadow: var(--shadow-card);
}
.hero__callout::before {
  content: "";
  position: absolute;
  width: 14px; height: 2px;
  background: var(--ink);
}
.hero__callout--1 { top: 18%; left: -4%; background: var(--cream); color: var(--ink); }
.hero__callout--1::before { right: -16px; top: 50%; transform: translateY(-50%); background: var(--cream); }
.hero__callout--2 { top: 56%; right: -4%; background: var(--red); }
.hero__callout--2::before { left: -16px; top: 50%; transform: translateY(-50%); background: var(--red); }
.hero__callout--3 { bottom: 8%;  left: 12%; background: var(--cream); color: var(--ink); }
.hero__callout--3::before { top: -16px; left: 50%; transform: translateX(-50%) rotate(90deg); background: var(--cream); }
@media (max-width: 880px) {
  .hero__callout { display: none; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   MARQUEE — endless tape, product names + manifesto fragments
   ================================================================ */

.marquee {
  background: var(--ink);
  color: var(--cream);
  padding-block: var(--space-3);
  overflow: hidden;
  border-block: var(--stroke-chunk) solid var(--ink);
  position: relative;
  z-index: 3;
}
.marquee__track {
  display: flex;
  gap: var(--space-6);
  width: max-content;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-2xl));
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__sep {
  display: inline-block;
  width: 20px; height: 20px;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 4l16 16M20 4L4 20' stroke='black' stroke-width='6' stroke-linecap='square' fill='none'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 4l16 16M20 4L4 20' stroke='black' stroke-width='6' stroke-linecap='square' fill='none'/></svg>") center/contain no-repeat;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   PAIN — six-up grower-voice cards. Lives BEFORE Why-Mills.
   ================================================================ */

.pain {
  background: var(--cream);
  position: relative;
  border-top: var(--stroke-hair) solid var(--ink-10);
  border-bottom: var(--stroke-hair) solid var(--ink-10);
}

.pain__head {
  max-width: 760px;
  margin: 0 0 var(--space-7);
}
.pain__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(var(--fs-2xl), 5.4vw, var(--fs-4xl));
  line-height: .95;
  letter-spacing: -0.03em;
  margin: 0 0 var(--space-4);
}
.pain__lede {
  color: var(--ink-80);
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  max-width: 56ch;
  margin: 0;
}

.pain__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
@media (max-width: 960px) { .pain__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pain__grid { grid-template-columns: 1fr; } }

.pain-card {
  position: relative;
  background: var(--white);
  padding: var(--space-5) var(--space-5) var(--space-5) calc(var(--space-5) + var(--stroke-chunk));
  border: var(--stroke-hair) solid var(--ink-10);
  border-left: var(--stroke-chunk) solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition:
    transform var(--d-med) var(--ease-out),
    border-left-color var(--d-med) var(--ease-out),
    box-shadow var(--d-med) var(--ease-out);
}
.pain-card:hover {
  transform: translateY(-4px);
  border-left-color: var(--red);
  box-shadow: var(--shadow-card);
}

.pain-card__num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-ultra);
  color: var(--red);
  font-weight: 600;
}
.pain-card__quote {
  font-family: var(--font-slab);
  font-weight: 400;
  font-size: var(--fs-md);
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.pain-card__tag {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--tracking-ultra);
  text-transform: uppercase;
  color: var(--stone);
  background: var(--cream-deep);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

/* Knockout — the 7th pain. Full-width, dramatic dark card.
   Lands AFTER the 6-grid as a closing punch before .pain__close. */
.pain__knockout {
  position: relative;
  margin: var(--space-7) 0 0;
  padding: clamp(var(--space-6), 6vw, var(--space-8)) clamp(var(--space-5), 5vw, var(--space-8));
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  border-left: 12px solid var(--red);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.pain__knockout::before {
  /* Subtle ghost MILLS watermark behind */
  content: "MILLS";
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18vw;
  line-height: 1;
  letter-spacing: -0.08em;
  color: rgba(255,255,255,.04);
  pointer-events: none;
  user-select: none;
}
.pain__knockout-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-ultra);
  color: var(--red);
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 2;
}
.pain__knockout-quote {
  font-family: var(--font-slab);
  font-weight: 400;
  font-size: clamp(var(--fs-2xl), 4.6vw, var(--fs-4xl));
  line-height: 1.15;
  color: var(--cream);
  max-width: 28ch;
  margin: 0 auto var(--space-5);
  text-wrap: balance;
  position: relative;
  z-index: 2;
}
.pain__knockout-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-ultra);
  text-transform: uppercase;
  color: rgba(246, 241, 230, .65);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(246, 241, 230, .2);
  position: relative;
  z-index: 2;
}

.pain__close {
  margin: var(--space-7) 0 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(var(--fs-lg), 2.4vw, var(--fs-2xl));
  letter-spacing: -0.01em;
  color: var(--red);
  text-transform: uppercase;
  max-width: none;
  line-height: 1.15;
}

/* ================================================================
   WHY-MILLS — three-up value props
   ================================================================ */

.why {
  background: var(--cream-deep);
  position: relative;
}
.why__head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-6);
  align-items: end;
  margin-bottom: var(--space-7);
}
@media (max-width: 760px) {
  .why__head { grid-template-columns: 1fr; gap: var(--space-4); }
}
.why__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-4xl));
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0;
}
.why__title strong { color: var(--red); }
.why__lede {
  color: var(--ink-80);
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  max-width: 50ch;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 760px) {
  .why__grid { grid-template-columns: 1fr; }
}
.why-card {
  position: relative;
  background: var(--cream);
  border: var(--stroke-thin) solid var(--ink);
  padding: var(--space-6) var(--space-5);
  overflow: hidden;
  transition: transform var(--d-med) var(--ease-out);
}
.why-card:hover { transform: translateY(-6px); }
.why-card__num {
  font-family: var(--font-slab);
  font-size: var(--fs-4xl);
  line-height: 1;
  color: var(--red);
  margin-bottom: var(--space-3);
}
.why-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}
.why-card p {
  color: var(--ink-80);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  margin: 0;
}
.why-card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 40%; height: 4px;
  background: var(--red);
  transition: width var(--d-med) var(--ease-out);
}
.why-card:hover::after { width: 100%; }

/* ================================================================
   PRODUCTS — 9-SKU grid
   ================================================================ */

.products {
  background: var(--cream);
  position: relative;
}
.products__head {
  display: flex; align-items: end; justify-content: space-between;
  gap: var(--space-5); flex-wrap: wrap;
  margin-bottom: var(--space-7);
}
.products__head h2 {
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-4xl));
  margin: 0;
  letter-spacing: -0.025em;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
@media (max-width: 1000px) { .products__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .products__grid { grid-template-columns: repeat(2, 1fr); } }

.product-card {
  position: relative;
  background: var(--white);
  border: var(--stroke-thin) solid var(--ink);
  display: flex; flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  transition: transform var(--d-med) var(--ease-out);
}
.product-card:hover { transform: translateY(-4px); }
.product-card__img {
  aspect-ratio: 1 / 1.05;
  background: linear-gradient(160deg, var(--cream-deep) 0%, var(--cream) 100%);
  display: grid; place-items: center;
  position: relative;
  padding: var(--space-4);
  border-bottom: var(--stroke-thin) solid var(--ink);
}
.product-card__img img {
  max-height: 100%;
  max-width: 75%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(19, 31, 55, .18));
  transition: transform var(--d-med) var(--ease-out);
}
.product-card:hover .product-card__img img { transform: scale(1.06) rotate(-2deg); }

.product-card__tag {
  position: absolute;
  top: var(--space-2); left: var(--space-2);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--tracking-ultra);
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  padding: 4px 8px;
}
.product-card__body {
  padding: var(--space-4);
  display: flex; flex-direction: column; gap: var(--space-2);
  flex: 1;
}
.product-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-lg);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}
.product-card__role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--stone);
}
/* "Request price →" CTA replaces ฿ pricing.
   Distributor positioning: pricing gated, lead-capture friendly.
   Arrow nudges right on whole-card hover. */
.product-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--red);
  padding-top: var(--space-3);
  border-top: var(--stroke-hair) solid var(--ink-10);
  transition: color var(--d-fast) var(--ease-out);
}
.product-card__cta em {
  font-style: normal;
  font-family: var(--font-slab);
  font-weight: 400;
  font-size: 1.1em;
  display: inline-block;
  transition: transform var(--d-med) var(--ease-out);
}
.product-card:hover .product-card__cta { color: var(--ink); }
.product-card:hover .product-card__cta em { transform: translateX(6px); color: var(--red); }
.product-card__cta [data-lang] { display: inline-flex; align-items: center; gap: 6px; }

/* Red underline sweep on card hover — bottom edge wipes left → right */
.product-card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 3px;
  width: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--d-slow) var(--ease-out);
  pointer-events: none;
}
.product-card:hover::after { transform: scaleX(1); }
.product-card:hover { border-color: var(--red); }

/* Substrate "stamp" tile — used for Lightmix, which has no bottle image */
.product-card__img--stamp {
  background:
    repeating-linear-gradient(
      45deg,
      var(--ink) 0 2px,
      transparent 2px 14px
    ),
    linear-gradient(160deg, var(--cream-deep) 0%, var(--cream) 100%);
}
.substrate-stamp {
  text-align: center;
  line-height: 1;
  transform: rotate(-4deg);
  padding: var(--space-4);
  background: var(--cream);
  border: var(--stroke-chunk) solid var(--ink);
  box-shadow: var(--shadow-card);
  transition: transform var(--d-med) var(--ease-out);
}
.product-card:hover .substrate-stamp { transform: rotate(-6deg) scale(1.04); }
.substrate-stamp__kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--tracking-ultra);
  color: var(--red);
  margin-bottom: var(--space-2);
}
.substrate-stamp__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--fs-3xl);
  line-height: .9;
  letter-spacing: -.04em;
  color: var(--ink);
}
.substrate-stamp__foot {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--tracking-ultra);
  color: var(--ink-80);
  margin-top: var(--space-3);
  padding-top: var(--space-2);
  border-top: 2px solid var(--ink);
}

/* ================================================================
   SAMPLE CTA — giant red block
   ================================================================ */

.sample-cta {
  background: var(--red);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.sample-cta::before {
  content: "MILLS";
  position: absolute;
  right: -5%; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32vw;
  line-height: 1;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, .08);
  pointer-events: none;
  user-select: none;
}
/* ----------------------------------------------------------------
   DROP — Dutch Light 30. Lives inside .sample-cta for the red bg
   + giant MILLS watermark. Centered, single-column, drop-stamp feel.
   ---------------------------------------------------------------- */

.drop > .container { position: relative; z-index: 2; text-align: center; }

.drop__head {
  max-width: 760px;
  margin: 0 auto var(--space-6);
}
.drop__head .chip { margin-bottom: var(--space-5); }

.drop__title {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(var(--fs-3xl), 6.4vw, var(--fs-6xl));
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 var(--space-4);
  text-wrap: balance;
}
.drop__title strong {
  font-family: var(--font-slab);
  font-weight: 400;
  font-style: normal;
  color: var(--ink);
  display: inline-block;
  padding: 0 .18em;
  background: var(--cream);
  transform: rotate(-1.5deg);
  margin: 0 .05em;
}

.drop__lede {
  font-family: var(--font-body);
  color: rgba(255,255,255,.95);
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  max-width: 60ch;
  margin: 0 auto;
}

/* "What arrives at your door" — kit visual reveals the actual 6 bottles
   so customers know what they're claiming a spot for. */
.drop__kit-visual {
  margin: 0 auto var(--space-6);
  max-width: 720px;
  text-align: center;
}
.drop__kit-visual img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .35));
}
.drop__kit-visual figcaption {
  margin-top: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-ultra);
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
}

/* Industrial fuel-gauge style progress bar */
.drop__progress {
  max-width: 520px;
  margin: var(--space-7) auto var(--space-5);
}
.drop__progress-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}
.drop__progress-count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-md);
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.8);
  line-height: 1;
}
.drop__progress-count strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--fs-2xl);
  color: var(--cream);
  margin-right: 4px;
}
.drop__progress-status {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-ultra);
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.drop__progress-bar {
  position: relative;
  height: 12px;
  background: rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.30);
  overflow: hidden;
}
.drop__progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress, 0%);
  background:
    repeating-linear-gradient(
      45deg,
      var(--ink)  0 8px,
      #2a3142 8px 16px
    );
  box-shadow: 2px 0 0 0 var(--cream);
}
@media (prefers-reduced-motion: no-preference) {
  .drop__progress-fill { width: 0; transition: width 1.6s var(--ease-out); }
  .drop.is-in .drop__progress-fill { width: var(--progress, 0%); }
}

.drop__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  margin: var(--space-5) auto var(--space-7);
}
.drop__waitlist {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.4);
  text-underline-offset: 6px;
  transition: color var(--d-fast), text-decoration-color var(--d-fast);
}
.drop__waitlist:hover {
  color: var(--white);
  text-decoration-color: var(--white);
}

.drop__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,.25);
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .drop__stats { grid-template-columns: 1fr; gap: var(--space-3); }
}
.drop__stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--fs-3xl);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 6px;
}
.drop__stat span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--tracking-ultra);
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ================================================================
   TESTIMONIALS — 3-up video cards (placeholder thumbnails Day 1)
   ================================================================ */

.testimonials { background: var(--ink); color: var(--cream); }
.testimonials h2 { color: var(--cream); }
.testimonials p  { color: rgba(246, 241, 230, .75); }

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-6);
}
@media (max-width: 900px) { .t-grid { grid-template-columns: 1fr; } }

.t-card {
  background: #1C2A44;
  border: var(--stroke-hair) solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.t-card__thumb {
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, rgba(228,33,40,.25), rgba(19,31,55,.9)),
    radial-gradient(circle at 30% 30%, rgba(246,241,230,.08), transparent 60%);
  position: relative;
  display: grid; place-items: center;
}
.t-card__thumb::before {
  content: "";
  width: 68px; height: 68px;
  background: var(--red);
  border-radius: 50%;
  position: relative;
  display: grid; place-items: center;
  box-shadow: 0 16px 40px -12px rgba(228, 33, 40, .55);
}
.t-card__thumb::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-35%, -50%);
  border-left: 18px solid var(--white);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.t-card__body { padding: var(--space-5); }
.t-card__quote {
  font-family: var(--font-slab);
  font-size: var(--fs-md);
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: var(--space-4);
}
.t-card__meta {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(246, 241, 230, .6);
}
.t-card__meta .lang {
  color: var(--cream);
  background: rgba(255,255,255,.1);
  padding: 2px 8px;
  border-radius: var(--r-pill);
}

/* ================================================================
   FAQ TEASER
   ================================================================ */

.faq { background: var(--cream); }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-7);
  align-items: start;
}
@media (max-width: 800px) { .faq__grid { grid-template-columns: 1fr; gap: var(--space-5); } }

.faq-list { list-style: none; padding: 0; margin: 0; }
.faq-item {
  border-top: var(--stroke-thin) solid var(--ink);
  padding: var(--space-4) 0;
}
.faq-item:last-child { border-bottom: var(--stroke-thin) solid var(--ink); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-4);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-lg);
  letter-spacing: -0.01em;
  cursor: pointer;
  user-select: none;
}
.faq-q::after {
  content: "+";
  font-family: var(--font-slab);
  font-size: var(--fs-xl);
  color: var(--red);
  transition: transform var(--d-med);
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding-top: var(--space-3);
  color: var(--ink-80);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  max-width: 64ch;
}

/* ================================================================
   FINAL CTA BAND
   ================================================================ */

.cta-band {
  background: var(--ink);
  color: var(--cream);
  padding-block: var(--space-8);
  position: relative;
  overflow: hidden;
}
.cta-band__inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--space-5);
  position: relative; z-index: 2;
}
.cta-band h2 {
  color: var(--cream);
  font-size: clamp(var(--fs-2xl), 4.5vw, var(--fs-4xl));
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 24ch;
}
.cta-band__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }
