/* ============================================================
   Ample Life Sciences — Design System
   Apple-inspired: generous whitespace, large type, soft cards
   ============================================================ */

:root {
  /* Brand */
  --red: #e4222a;
  --red-dark: #b81b21;
  --green: #2fa84f;
  --green-dark: #1e7e39;
  --orange: #f7941d;

  /* Neutrals (Apple-style) */
  --bg: #fbfbfd;
  --bg-alt: #f5f5f7;
  --surface: #ffffff;
  --ink: #1d1d1f;
  --ink-2: #424245;
  --gray: #86868b;
  --hairline: #d2d2d7;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lift: 0 12px 48px rgba(0, 0, 0, 0.12);

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

::selection { background: rgba(228, 34, 42, 0.15); }

/* ---------- Layout helpers ---------- */
.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}
.container-wide {
  width: min(1440px, calc(100% - 48px));
  margin-inline: auto;
}

section { position: relative; }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow.green { color: var(--green-dark); }
.eyebrow-lg {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}

h1, h2, h3 { letter-spacing: -0.02em; line-height: 1.08; }

.display {
  font-size: clamp(44px, 7.5vw, 88px);
  font-weight: 700;
}
.headline {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
}
.title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
}
.sub {
  font-size: clamp(17px, 2vw, 22px);
  color: var(--gray);
  font-weight: 400;
  line-height: 1.5;
  max-width: 640px;
}

.text-gradient {
  background: linear-gradient(100deg, var(--red) 10%, var(--orange) 50%, var(--green) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:active { transform: translateY(0) scale(0.99); }

/* light sweep across every button on hover */
.btn::before, .nav-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -85%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: none;
}
.btn:hover::before, .nav-cta:hover::before { animation: btnSheen 0.7s var(--ease) forwards; }
@keyframes btnSheen {
  from { left: -85%; }
  to { left: 135%; }
}
/* inline-flex is required: `overflow: hidden` does not clip on an inline
   element, which would let the sheen spill onto the link to its left */
.nav-cta { position: relative; overflow: hidden; display: inline-flex; align-items: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #f0542d 60%, var(--orange) 130%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(228, 34, 42, 0.35);
  background-size: 150% 150%;
  background-position: 0% 50%;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    background-position 0.4s var(--ease);
}
.btn-primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 10px 28px rgba(228, 34, 42, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hairline);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn-light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-light:hover {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}

.link-arrow {
  color: var(--red);
  font-weight: 500;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s var(--ease);
}
.link-arrow:hover { gap: 11px; }
.link-arrow.green { color: var(--green-dark); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled { background: rgba(255, 255, 255, 0.92); border-bottom-color: rgba(0, 0, 0, 0.08); }

.nav-inner {
  width: min(1120px, calc(100% - 44px));
  margin-inline: auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.nav-brand span em { font-style: normal; color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 450;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-links a:hover { background: rgba(0, 0, 0, 0.05); color: var(--ink); }
.nav-links a.active { color: var(--red); font-weight: 600; }

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: #fff !important;
  background: linear-gradient(135deg, var(--red) 0%, #f0542d 70%, var(--orange) 140%);
  padding: 9px 18px !important;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(228, 34, 42, 0.3);
}
.nav-cta:hover { background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 80%) !important; color: #fff !important; }

/* Dark navigation variant (used over the dark home hero) */
.nav-dark { background: rgba(24, 6, 4, 0.68); }
.nav-dark.scrolled { background: rgba(24, 6, 4, 0.86); border-bottom-color: rgba(255, 255, 255, 0.1); }
.nav-dark .nav-brand span { color: #fff; }
.nav-dark .nav-brand span em { color: #ff6b5e; }
.nav-dark .nav-links a { color: rgba(255, 255, 255, 0.82); }
.nav-dark .nav-links a:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.nav-dark .nav-links a.active { color: #ffb35c; }
.nav-dark .nav-toggle span { background: #fff; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero {
  padding: 150px 0 40px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
/* Aurora gradient wash behind the hero */
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 120%;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(38% 45% at 18% 22%, rgba(228, 34, 42, 0.09), transparent 70%),
    radial-gradient(42% 50% at 84% 16%, rgba(47, 168, 79, 0.1), transparent 70%),
    radial-gradient(36% 42% at 55% 68%, rgba(247, 148, 29, 0.08), transparent 70%);
  filter: blur(20px);
}
.hero .sub { margin: 22px auto 34px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* Cascading hero — light behind the heading, deepening through orange
   into red and maroon as the bottle lineup comes into view. */
.hero-dark {
  padding-bottom: 90px;
  background: linear-gradient(180deg,
    #fdfcfa 0%, #fff4e4 16%, #ffe0b5 34%, #f8a94e 54%,
    #e0392f 74%, #7a1310 90%, #4a0d0d 100%);
  color: var(--ink);
}
/* drifting warm glows over the lower (coloured) half */
.hero-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  z-index: 0;
  pointer-events: none;
  filter: blur(34px);
  background:
    radial-gradient(42% 40% at 14% 72%, rgba(255, 205, 130, 0.3), transparent 65%),
    radial-gradient(44% 42% at 86% 66%, rgba(255, 170, 60, 0.26), transparent 65%),
    radial-gradient(50% 38% at 50% 96%, rgba(228, 34, 42, 0.3), transparent 68%);
  animation: auroraDrift 16s ease-in-out infinite alternate;
}
.hero-logo {
  height: clamp(72px, 9vw, 116px);
  width: auto;
  margin: 0 auto 22px;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(122, 19, 16, 0.18));
}
.hero-dark .container, .hero-dark .hero-visual { position: relative; z-index: 1; }
@keyframes auroraDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-3%, 2%, 0) scale(1.06); }
  100% { transform: translate3d(3%, -2%, 0) scale(1.12); }
}
.hero-dark .eyebrow {
  color: #ffd9a0;
  letter-spacing: 0.22em;
}
.company-name {
  /* single line at every width: the name renders ~9.2x its font-size wide,
     so 10vw - 4px keeps it inside the container on any screen */
  font-size: min(88px, calc(10vw - 4px));
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  white-space: nowrap;
  background: linear-gradient(100deg, #b3151c 0%, #e4222a 40%, #f0542d 70%, #d97706 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-tagline {
  font-size: clamp(17px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 16px;
}
.hero-dark .sub { color: rgba(255, 255, 255, 0.62); margin-top: 14px; }
.hero-dark .hero-visual::after {
  background: radial-gradient(ellipse at center,
    rgba(255, 179, 92, 0.18), rgba(228, 34, 42, 0.1) 45%, transparent 72%);
}
.hero-dark .hero-visual img { filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.5)); }
.hero-dark .hero-glow { display: none; }

.hero-visual {
  margin-top: 48px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(10px, 1.9vw, 30px);
  min-height: 300px;
}
/* soft gradient pedestal under the lineup */
.hero-visual::after {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px, 92%);
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(228, 34, 42, 0.12), rgba(247, 148, 29, 0.08) 45%, transparent 72%);
  filter: blur(6px);
  z-index: -1;
}
/* Bottles rise in one by one, then float on their own rhythm */
.hero-visual .bob {
  animation: heroRise 0.9s var(--ease-out) both, heroFloat 6s ease-in-out infinite;
  will-change: transform;
}
.hero-visual img {
  height: clamp(150px, 26vw, 340px);
  width: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.18));
}
/* nine-bottle arc: shortest at the edges, tallest in the middle */
.hero-visual .bob:nth-child(1) { height: clamp(78px, 13vw, 190px); animation-delay: 0.20s, 1.10s; animation-duration: 0.9s, 5.4s; }
.hero-visual .bob:nth-child(2) { height: clamp(92px, 15.5vw, 222px); animation-delay: 0.30s, 1.20s; animation-duration: 0.9s, 6.8s; }
.hero-visual .bob:nth-child(3) { height: clamp(107px, 18vw, 258px); animation-delay: 0.40s, 1.30s; animation-duration: 0.9s, 5.9s; }
.hero-visual .bob:nth-child(4) { height: clamp(124px, 21vw, 300px); animation-delay: 0.50s, 1.40s; animation-duration: 0.9s, 7.3s; }
.hero-visual .bob:nth-child(5) { height: clamp(146px, 24.5vw, 350px); animation-delay: 0.60s, 1.50s; animation-duration: 0.9s, 6.2s; z-index: 2; }
.hero-visual .bob:nth-child(6) { height: clamp(124px, 21vw, 300px); animation-delay: 0.70s, 1.60s; animation-duration: 0.9s, 7.0s; }
.hero-visual .bob:nth-child(7) { height: clamp(107px, 18vw, 258px); animation-delay: 0.80s, 1.70s; animation-duration: 0.9s, 5.6s; }
.hero-visual .bob:nth-child(8) { height: clamp(92px, 15.5vw, 222px); animation-delay: 0.90s, 1.80s; animation-duration: 0.9s, 6.5s; }
.hero-visual .bob:nth-child(9) { height: clamp(78px, 13vw, 190px); animation-delay: 1.00s, 1.90s; animation-duration: 0.9s, 5.1s; }
.hero-visual .bob:hover { animation-play-state: paused; }

@keyframes heroRise {
  from { opacity: 0; transform: translateY(70px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}
/* pedestal glow breathes with the bottles */
.hero-visual::after { animation: glowPulse 6s ease-in-out infinite; }
@keyframes glowPulse {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1.08); }
}

.hero-glow {
  position: absolute;
  inset: auto 0 -180px 0;
  height: 340px;
  background: radial-gradient(ellipse 60% 100% at 50% 100%,
    rgba(47, 168, 79, 0.16), rgba(247, 148, 29, 0.1) 45%, transparent 75%);
  pointer-events: none;
}

/* ---------- Marquee stats band ---------- */
.stats-band {
  /* charcoal alternative: linear-gradient(170deg, #15161a 0%, #1d1e22 50%, #101114 100%) */
  background: linear-gradient(170deg, #12301e 0%, #0f4429 45%, #0a2f1f 100%);
  color: #fff;
  padding: 64px 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
/* gradient glows inside the dark band */
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* charcoal-variant glows were: 228,34,42 @ .28 / 47,168,79 @ .26 / 247,148,29 @ .18 */
  background:
    radial-gradient(42% 95% at 8% 45%, rgba(47, 168, 79, 0.32), transparent 70%),
    radial-gradient(40% 90% at 92% 55%, rgba(13, 148, 136, 0.26), transparent 70%),
    radial-gradient(34% 75% at 50% 105%, rgba(247, 148, 29, 0.16), transparent 70%);
}
.stats-band .container { position: relative; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, #fff 30%, rgba(255,255,255,0.55));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { color: rgba(255, 255, 255, 0.55); font-size: 15px; margin-top: 6px; }

/* ---------- Category showcases ---------- */
.showcase { padding: 110px 0 0; }
.showcase-head { text-align: center; margin-bottom: 56px; }
.showcase-head .sub { margin: 16px auto 0; }

.category-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 72px);
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  min-height: 440px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.category-card.insecticides {
  background:
    radial-gradient(60% 90% at 90% 10%, rgba(126, 226, 160, 0.14), transparent 60%),
    radial-gradient(50% 80% at 10% 100%, rgba(247, 148, 29, 0.1), transparent 60%),
    linear-gradient(135deg, #0d1810 0%, #16301d 45%, #14532d 100%);
  color: #fff;
}
.category-card.micronutrients {
  background:
    radial-gradient(55% 85% at 88% 15%, rgba(228, 34, 42, 0.1), transparent 65%),
    linear-gradient(135deg, #fff8ec 0%, #ffe9c8 50%, #fdd394 100%);
}
.category-card.biostimulants {
  background:
    radial-gradient(55% 85% at 88% 15%, rgba(14, 165, 143, 0.14), transparent 65%),
    linear-gradient(135deg, #eefdf3 0%, #d3f5e0 50%, #a8ecc5 100%);
}

.category-card .eyebrow { margin-bottom: 10px; }
.category-card.insecticides .eyebrow { color: #7ee2a0; }
.category-card.micronutrients .eyebrow { color: #c2410c; }
.category-card.biostimulants .eyebrow { color: var(--green-dark); }

.category-card h3 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 700; }
.category-card p {
  margin: 16px 0 26px;
  font-size: 17px;
  line-height: 1.6;
  max-width: 460px;
}
.category-card.insecticides p { color: rgba(255, 255, 255, 0.72); }
.category-card.micronutrients p, .category-card.biostimulants p { color: var(--ink-2); }

.category-card .link-arrow { font-size: 17px; }
.category-card.insecticides .link-arrow { color: #7ee2a0; }
.category-card.micronutrients .link-arrow { color: #c2410c; }

.category-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 22px;
}
.category-visual img {
  height: clamp(170px, 22vw, 300px);
  width: auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
  transition: transform 0.5s var(--ease-out);
}
.category-visual img:nth-child(2) {
  height: clamp(200px, 26vw, 350px);
  z-index: 2;
  animation: heroFloat 7s ease-in-out infinite;
}
.category-card.micronutrients .category-visual img:nth-child(2) { animation-delay: -2.3s; }
.category-card.biostimulants .category-visual img:nth-child(2) { animation-delay: -4.6s; }
.category-card:hover .category-visual img:nth-child(2) { transform: translateY(-12px); }
.category-card:hover .category-visual img:nth-child(1) { transform: translateX(-8px) rotate(-3deg); }
.category-card:hover .category-visual img:nth-child(3) { transform: translateX(8px) rotate(3deg); }

/* ---------- Value props ---------- */
.values { padding: 110px 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.value-card {
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(228,34,42,0.1), rgba(247,148,29,0.12));
}
.value-card h4 { font-size: 20px; font-weight: 650; margin-bottom: 8px; }
.value-card p { color: var(--gray); font-size: 15px; line-height: 1.6; }

/* ---------- CTA banner ---------- */
.cta-banner {
  margin: 0 0 110px;
}
.cta-inner {
  background: linear-gradient(120deg, var(--red) 0%, #f0542d 55%, var(--orange) 110%);
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: center;
  padding: clamp(56px, 8vw, 96px) 28px;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 70% 20%, rgba(255,255,255,0.25), transparent 45%);
}
.cta-inner h2 { font-size: clamp(30px, 4.4vw, 52px); font-weight: 700; position: relative; }
.cta-inner p { margin: 16px auto 30px; max-width: 520px; color: rgba(255,255,255,0.85); font-size: 18px; position: relative; }
.cta-inner .btn { position: relative; background: #fff; color: var(--red); }
.cta-inner .btn:hover { background: var(--ink); color: #fff; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 150px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .sub { margin: 18px auto 0; }

/* ---------- Products page ---------- */
.filter-bar {
  position: sticky;
  top: 60px;
  z-index: 500;
  background: rgba(242, 243, 245, 0.85);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 24px 0;
}
.filter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.seg {
  display: inline-flex;
  background: rgba(0, 0, 0, 0.055);
  border-radius: 999px;
  padding: 6px;
  gap: 4px;
  flex-wrap: wrap;
}
.seg button {
  font-family: inherit;
  font-size: 17.5px;
  font-weight: 600;
  color: var(--ink-2);
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 13px 30px;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.seg button:not(.active):hover { background: rgba(255, 255, 255, 0.75); color: var(--red); }
.seg button.active {
  background: linear-gradient(135deg, var(--red) 0%, #f0542d 70%, var(--orange) 140%);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(228, 34, 42, 0.35);
}

.search-wrap { position: relative; }
.search-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: var(--gray);
}
.search-wrap svg {
  left: 18px;
  width: 18px;
  height: 18px;
}
.search-wrap input {
  font-family: inherit;
  font-size: 17px;
  padding: 14px 22px 14px 48px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: var(--surface);
  width: 270px;
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), width 0.3s var(--ease);
}
.search-wrap input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(228, 34, 42, 0.1);
  width: 320px;
}

.products-section { padding: 56px 0 60px; background: #f2f3f5; }
.cat-heading {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 40px 0 26px;
}
.cat-heading h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 700; }
.cat-heading .count { color: var(--gray); font-size: 16px; font-weight: 500; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.product-thumb {
  background: var(--bg-alt);
  display: grid;
  place-items: center;
  padding: 30px 22px;
  height: 310px;
}
/* per-product gradient backdrops are applied inline by products.js,
   using each pack's own label/cap accent color over this neutral base */
.product-thumb img {
  max-height: 255px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.16));
  transition: transform 0.45s var(--ease-out);
}
.product-card:hover .product-thumb img { transform: scale(1.07) translateY(-4px); }

/* pouch images are wider — cap their width so they don't dwarf bottles */
.product-thumb img.is-pouch { max-width: 82%; }
.modal-visual img.is-pouch { max-width: 84%; }

.product-info { padding: 20px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.product-info .tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.tag.insecticide { color: var(--red); }
.tag.micronutrient { color: #c2410c; }
.tag.biostimulant { color: var(--green-dark); }
.product-info h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
/* product name color is set inline per product (label/cap color) */
.product-info p { color: var(--ink-2); font-size: 15px; margin-top: 7px; line-height: 1.5; font-weight: 500; }

/* ---------- Product modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-backdrop.show { opacity: 1; pointer-events: auto; }

.modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 880px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s var(--ease-out);
  position: relative;
}
.modal-backdrop.show .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  color: var(--ink-2);
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s var(--ease);
}
.modal-close:hover { background: rgba(0, 0, 0, 0.12); }

.modal-visual {
  background: var(--bg-alt);
  display: grid;
  place-items: center;
  padding: 44px 28px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
/* modal visual gradient is applied inline per product */
.modal-visual img {
  max-height: 340px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.16));
}
.modal-body { padding: 44px 40px; }
.modal-body .tag { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.modal-body h2 { font-size: 32px; font-weight: 700; margin: 6px 0 4px; letter-spacing: -0.02em; }
.modal-body .chem { color: var(--gray); font-size: 16px; margin-bottom: 22px; }
.spec-list { display: grid; gap: 0; }
.spec-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 14.5px;
}
.spec-row dt { color: var(--gray); font-weight: 500; }
.spec-row dd { color: var(--ink-2); }

/* ---------- About page ---------- */
/* warm-to-green wash behind the About hero */
.about-hero {
  background: linear-gradient(180deg, #fdfcfa 0%, #fff2df 40%, #ffe7c8 68%, #eaf6ec 100%);
}
.about-hero::before {
  background:
    radial-gradient(40% 55% at 14% 30%, rgba(228, 34, 42, 0.14), transparent 68%),
    radial-gradient(44% 60% at 86% 24%, rgba(247, 148, 29, 0.18), transparent 68%),
    radial-gradient(46% 55% at 50% 92%, rgba(47, 168, 79, 0.2), transparent 70%);
}
.about-intro { padding: 20px 0 90px; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-grid .lead { font-size: clamp(19px, 2.2vw, 24px); line-height: 1.55; color: var(--ink-2); font-weight: 450; }
.about-grid .lead strong { color: var(--ink); }
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #ecfdf5, #fef3c7);
  padding: 40px;
  display: grid;
  place-items: center;
}
.about-photo img { max-height: 380px; width: auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.18)); }

.mission-band { background: var(--bg-alt); padding: 100px 0; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 48px; }
.mission-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 42px 38px;
  box-shadow: var(--shadow-soft);
}
.mission-card h3 { font-size: 24px; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.mission-card p { color: var(--ink-2); font-size: 16px; line-height: 1.65; }

.timeline-section { padding: 110px 0; }
.timeline { margin-top: 56px; display: grid; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 120px 40px 1fr;
  gap: 0 18px;
}
.timeline-year { font-weight: 700; font-size: 19px; color: var(--red); text-align: right; padding-top: 2px; }
.timeline-line { position: relative; display: flex; justify-content: center; }
.timeline-line::before {
  content: "";
  position: absolute;
  top: 8px; bottom: -8px;
  width: 2px;
  background: var(--hairline);
}
.timeline-item:last-child .timeline-line::before { bottom: auto; height: 20px; }
.timeline-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--red);
  position: relative;
  z-index: 1;
  margin-top: 6px;
}
.timeline-content { padding-bottom: 44px; }
.timeline-content h4 { font-size: 19px; font-weight: 650; margin-bottom: 6px; }
.timeline-content p { color: var(--gray); font-size: 15.5px; max-width: 560px; line-height: 1.6; }

/* ---------- Contact page ---------- */
/* warm wash behind the Contact hero */
.contact-hero {
  background: linear-gradient(180deg, #fdfcfa 0%, #ffefdd 42%, #ffe1c0 72%, #f4f8f0 100%);
}
.contact-hero::before {
  background:
    radial-gradient(42% 58% at 12% 26%, rgba(228, 34, 42, 0.14), transparent 68%),
    radial-gradient(44% 60% at 88% 22%, rgba(247, 148, 29, 0.2), transparent 68%),
    radial-gradient(46% 55% at 50% 94%, rgba(47, 168, 79, 0.16), transparent 70%);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  padding: 30px 0 110px;
  align-items: start;
}
.contact-cards { display: grid; gap: 18px; }
.contact-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 28px 28px 28px 32px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
/* colour spine down the left edge */
.contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--cc, var(--hairline));
}
.contact-card .value-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.contact-card a:hover { color: var(--red); }

/* per-card colourways: spine + tinted background + icon tile */
.contact-card.cc-red { --cc: linear-gradient(180deg, #e4222a, #f0542d); background: linear-gradient(135deg, #fff 40%, #fff3f0); }
.cc-red .value-icon { background: linear-gradient(135deg, #ffe3df, #ffcdc0); }
.contact-card.cc-amber { --cc: linear-gradient(180deg, #f7941d, #ffc55c); background: linear-gradient(135deg, #fff 40%, #fff7e8); }
.cc-amber .value-icon { background: linear-gradient(135deg, #ffedc9, #ffdf9e); }
.contact-card.cc-green { --cc: linear-gradient(180deg, #2fa84f, #7ee2a0); background: linear-gradient(135deg, #fff 40%, #f0faf3); }
.cc-green .value-icon { background: linear-gradient(135deg, #d9f4e1, #b5e9c6); }
.contact-card.cc-teal { --cc: linear-gradient(180deg, #0d9488, #5eead4); background: linear-gradient(135deg, #fff 40%, #eefaf8); }
.cc-teal .value-icon { background: linear-gradient(135deg, #d3f1ed, #aee6de); }
.contact-card.cc-plum { --cc: linear-gradient(180deg, #8b4a9e, #c084fc); background: linear-gradient(135deg, #fff 40%, #faf4fc); }
.cc-plum .value-icon { background: linear-gradient(135deg, #eedcf5, #ddc2ec); }

.contact-form-card {
  background: linear-gradient(170deg, #ffffff 0%, #fff8f0 100%);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
/* brand-colour ribbon along the top of the form */
.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--orange) 50%, var(--green));
}
.contact-form-card h3 { font-size: 28px; margin-bottom: 6px; }
.contact-form-card h3 span {
  background: linear-gradient(100deg, var(--red), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-form-card > p { color: var(--gray); margin-bottom: 28px; font-size: 15.5px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.form-field input, .form-field select, .form-field textarea {
  font-family: inherit;
  font-size: 15.5px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--hairline);
  background: var(--bg);
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  color: var(--ink);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(228, 34, 42, 0.1);
  background: #fff;
}
.form-submit { margin-top: 24px; width: 100%; justify-content: center; font-size: 16px; }
.form-success {
  display: none;
  margin-top: 18px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: var(--green-dark);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
}
.form-success.show { display: block; }

.map-band { padding: 0 0 110px; }
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.12);
}
.map-placeholder iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */
footer {
  background: linear-gradient(170deg, #0d2818 0%, #0f4429 55%, #0a2216 100%);
  padding: 60px 0 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14.5px;
  position: relative;
  overflow: hidden;
}
/* brand-colour ribbon along the top edge */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange) 50%, var(--green));
}
/* soft glows in the corners */
footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(38% 70% at 6% 20%, rgba(47, 168, 79, 0.18), transparent 70%),
    radial-gradient(36% 70% at 94% 85%, rgba(247, 148, 29, 0.1), transparent 70%);
}
footer .container { position: relative; z-index: 1; }

.footer-top { text-align: center; margin-bottom: 46px; }
.footer-top img {
  height: 76px;
  width: auto;
  margin: 0 auto 14px;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}
.footer-name {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.footer-name em { font-style: normal; color: #ffb35c; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 44px;
  text-align: center;
}
.footer-col h5 {
  color: #ffb35c;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { color: rgba(255, 255, 255, 0.68); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Product marquee ---------- */
.marquee-band {
  padding: 72px 0 64px;
  overflow: hidden;
  position: relative;
}
.marquee-band h2 {
  text-align: center;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  margin-bottom: 8px;
}
.marquee-band .band-sub {
  text-align: center;
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 42px;
}
.marquee {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 22px;
  padding-right: 22px;
  flex-shrink: 0;
  animation: marqueeScroll 46s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  width: 168px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  padding: 22px 16px 16px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.marquee-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.marquee-item.t-insecticide { background: linear-gradient(160deg, #fff5f5, #ffe4e6); }
.marquee-item.t-micronutrient { background: linear-gradient(160deg, #fff8ec, #fef3c7); }
.marquee-item.t-biostimulant { background: linear-gradient(160deg, #f0fdf4, #dcfce7); }
.marquee-item img {
  height: 120px;
  width: auto;
  margin: 0 auto 12px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.12));
}
.marquee-item span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ---------- Featured products (home) ---------- */
.featured { padding: 30px 0 110px; }
.featured-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.featured-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 30px 28px 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.featured-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.featured-card.g-red { background: linear-gradient(150deg, #fff, #fff1f1 55%, #ffdfe1); }
.featured-card.g-amber { background: linear-gradient(150deg, #fff, #fff6e6 55%, #fde8c4); }
.featured-card.g-green { background: linear-gradient(150deg, #fff, #effdf4 55%, #d4f7e2); }
.featured-card .tag { margin-bottom: 4px; }
.featured-card h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.015em; }
.featured-card .chem { color: var(--gray); font-size: 14px; margin-top: 4px; }
.featured-card .featured-img {
  margin: auto auto 0;
  padding-top: 18px;
  height: 190px;
  display: flex;
  align-items: flex-end;
}
.featured-card img {
  max-height: 180px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.16));
  transition: transform 0.45s var(--ease-out);
}
.featured-card:hover img { transform: scale(1.07) translateY(-6px); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {

  /* seven bottles instead of nine on narrower screens */
  .hero-visual .bob:nth-child(1), .hero-visual .bob:nth-child(9) { display: none; }

  /* Mobile navigation: dropdown panel anchored below the header.
     (Not position:fixed — the header's backdrop-filter would trap it.) */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 20px 22px;
    background: rgba(251, 251, 253, 0.97);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform-origin: top center;
    transition: transform 0.32s var(--ease-out), opacity 0.26s var(--ease), visibility 0s 0.32s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.32s var(--ease-out), opacity 0.26s var(--ease), visibility 0s;
  }
  .nav-links a {
    display: block;
    text-align: center;
    font-size: 17px;
    font-weight: 550;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
  }
  .nav-links .nav-cta { margin-top: 8px; }

  .nav-dark .nav-links {
    background: rgba(24, 6, 4, 0.97);
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 860px) {
  .category-card { grid-template-columns: 1fr; min-height: 0; text-align: center; }
  .category-card p { margin-inline: auto; }
  .category-visual { order: -1; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 16px; }
  .about-grid, .mission-grid, .contact-wrap { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card { min-height: 0; }
  /* five bottles from here down to the smallest phones — sizes scale
     continuously so nothing jumps at the narrower breakpoints */
  .hero-visual .bob:nth-child(1), .hero-visual .bob:nth-child(9),
  .hero-visual .bob:nth-child(2), .hero-visual .bob:nth-child(8) { display: none; }
  .hero-visual { gap: clamp(8px, 1.6vw, 18px); }
  .hero-visual .bob:nth-child(5) { height: clamp(160px, 34vw, 300px); }
  .hero-visual .bob:nth-child(4), .hero-visual .bob:nth-child(6) { height: clamp(136px, 29vw, 258px); }
  .hero-visual .bob:nth-child(3), .hero-visual .bob:nth-child(7) { height: clamp(116px, 25vw, 222px); }
  .about-photo { order: -1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .modal { grid-template-columns: 1fr; max-height: 90vh; }
  .modal-visual { border-radius: var(--radius-lg) var(--radius-lg) 0 0; padding: 32px 20px; }
  .modal-visual img { max-height: 220px; }
  .modal-body { padding: 30px 26px 40px; }
  .timeline-item { grid-template-columns: 64px 30px 1fr; gap: 0 10px; }
  .timeline-year { font-size: 15px; }
  .form-grid { grid-template-columns: 1fr; }
  .filter-inner { justify-content: center; }
  .search-wrap input, .search-wrap input:focus { width: min(320px, 78vw); }
}

@media (max-width: 520px) {
  .container, .container-wide { width: calc(100% - 32px); }
  .hero { padding-top: 120px; }
  /* phones keep all five — sizing is inherited from the 860px block */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .product-thumb { height: 200px; padding: 18px 14px; }
  .product-thumb img { max-height: 165px; }
  .product-info { padding: 14px 14px 16px; }
  .product-info h3 { font-size: 16px; }
  .spec-row { grid-template-columns: 105px 1fr; }
}
