/* ===== Fertilize-IT, Bold Modern v2 ===== */
:root {
  --green-ink: #0E3B27;
  --green-deep: #1F5F3F;
  --green: #2A7A52;
  --green-light: #4FA876;
  --green-soft: #E8F0E8;
  --gold: #C9A961;
  --gold-deep: #A8884A;
  --gold-soft: #F1E7CD;
  --paper: #F7F4EC;
  --paper-2: #EFEAE0;
  --ink: #131715;
  --ink-2: #3A423D;
  --ink-3: #6F756F;
  --line: #E2DDD0;
  --white: #FFFFFF;

  /* Unified radius scale, nested via Outer = Inner + Padding.
     Step the scale so a child at one rung sits cleanly inside a parent
     one or two rungs up (e.g. r-sm tile + ~8px pad → r-md frame). */
  --r-xs: 8px;    /* flags, mini badges, dots-as-rects */
  --r-sm: 12px;   /* inputs, small buttons, icon tiles */
  --r-md: 16px;   /* default cards, panels */
  --r-lg: 20px;   /* roomy cards */
  --r-xl: 28px;   /* hero, large containers, feature panels */
  --r-pill: 100px;
  --radius: var(--r-md);
  --radius-lg: var(--r-xl);

  /* Soft lift for chips / pills / tags so they read raised, not flat */
  --pill-shadow: 0 1px 2px rgba(14,59,39,0.06), 0 2px 6px -2px rgba(14,59,39,0.12);
  --pill-shadow-dark: 0 1px 2px rgba(0,0,0,0.18), 0 3px 10px -3px rgba(0,0,0,0.30);

  --max: 1520px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Geist', 'Inter', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
::selection { background: var(--green-deep); color: var(--paper); }

.display { font-family: 'Bricolage Grotesque', 'Geist', sans-serif; font-weight: 700; letter-spacing: -0.02em; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
@media (max-width: 980px) { .container { padding: 0 24px; } }
@media (max-width: 600px) { .container { padding: 0 18px; } }

/* ===== Promo bar ===== */
.promo {
  background: var(--green-ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 500;
}
.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 48px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 24px;
}
.promo-items { display: flex; gap: 28px; }
.promo-item { display: flex; align-items: center; gap: 8px; opacity: 0.95; }
.promo-item svg { width: 18px; height: 18px; color: var(--gold); }
.promo-right { display: flex; gap: 20px; align-items: center; }
.promo-right a { opacity: 0.85; }
.promo-right a:hover { opacity: 1; }
.lang { display: flex; gap: 4px; align-items: center; font-weight: 600; }
.lang span { padding: 2px 7px; border-radius: 5px; opacity: 0.5; cursor: pointer; }
.lang span.active { opacity: 1; background: rgba(255,255,255,0.12); }

/* ===== Nav ===== */
.nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 32px;
}
.logo { height: 56px; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: var(--r-sm);
  color: var(--ink);
}
.nav-links a:hover { background: var(--green-soft); color: var(--green-deep); }
.nav-links a.active { color: var(--green-deep); background: var(--green-soft); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.icon-btn {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  color: var(--ink);
  position: relative;
  border: 1px solid transparent;
}
.icon-btn:hover { background: var(--white); border-color: var(--line); }
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn .badge {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--gold);
  color: var(--green-ink);
  font-size: 10px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: var(--r-sm);
  min-width: 16px;
  text-align: center;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  font-family: 'Geist', sans-serif;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green-deep); color: var(--paper); box-shadow: 0 4px 14px rgba(14,59,39,0.2); }
.btn-primary:hover { background: var(--green-ink); box-shadow: 0 8px 22px rgba(14,59,39,0.3); }
.btn-secondary { background: var(--white); color: var(--ink); border: 1.5px solid var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--paper); }
.btn-ghost { color: var(--green-deep); padding: 8px 0; }
.btn-gold { background: var(--gold); color: var(--green-ink); box-shadow: 0 4px 14px rgba(201,169,97,0.4); }
.btn-gold:hover { background: var(--gold-deep); color: var(--white); }
.btn-lg { padding: 18px 28px; font-size: 16px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--paper);
  padding-top: 32px;
  padding-bottom: 32px;
}
.hero-image-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}
.hero-image {
  width: 100%;
  aspect-ratio: 16 / 8.2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #1A2620;
  box-shadow: 0 30px 80px -20px rgba(14,59,39,0.4);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,33,23,0.86) 0%, rgba(11,33,23,0.6) 32%, rgba(11,33,23,0.12) 58%, transparent 72%),
    linear-gradient(0deg, rgba(11,33,23,0.32) 0%, transparent 34%);
}
.hero-content {
  position: absolute;
  left: 64px; top: 50%;
  transform: translateY(-50%);
  max-width: 620px;
  z-index: 2;
  color: var(--paper);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 24px;
  padding: 8px 14px;
  background: rgba(201,169,97,0.22);
  border: 1px solid rgba(201,169,97,0.4);
  border-radius: var(--r-pill);
  box-shadow: var(--pill-shadow-dark);
}
.hero-tag-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201,169,97,0.3);
}
.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  font-weight: 800;
  color: var(--paper);
  text-wrap: balance;
}
.hero h1 .accent {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(247,244,236,0.9);
  margin: 0 0 36px;
  max-width: 520px;
  font-weight: 500;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  align-items: center;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(247,244,236,0.85);
  font-size: 13.5px;
  font-weight: 600;
}
.hero-trust-item svg { color: var(--gold); width: 20px; height: 20px; }
.hero-trust-divider { width: 1px; height: 18px; background: rgba(247,244,236,0.2); }

/* Floating product badge on hero */
.hero-badge {
  position: absolute;
  bottom: 48px; right: 96px;
  background: var(--paper);
  padding: 18px 22px;
  border-radius: var(--r-md);
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  z-index: 3;
}
.hero-badge .star {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1;
}
.hero-badge .lbl {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
}
.hero-badge .stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.08em;
}

/* ===== USP bar ===== */
.usps {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.usps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  align-items: stretch;
}
.usp {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.usp:hover {
  border-color: rgba(31,95,63,0.28);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -16px rgba(14,59,39,0.45);
}
.usp-divider { display: none; }
.usp-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--green-deep);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(31,95,63,0.14);
}
.usp-icon svg { width: 28px; height: 28px; }
.usp-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.usp-sub {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
  margin-top: 3px;
}

/* ===== Section atoms ===== */
section { padding: 96px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 56px;
}
.section-head .left { max-width: 720px; }
.kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 800;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.kicker::before {
  content: ""; width: 28px; height: 2px; background: var(--gold);
}
.section-head h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--green-ink);
  text-wrap: balance;
}
.section-head h2 .accent {
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 800;
}
.section-head p {
  margin-top: 16px;
  color: var(--ink-2);
  font-size: 17px;
  font-weight: 500;
  text-wrap: pretty;
  max-width: 520px;
}

/* ===== Categories big tiles ===== */
.cats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.cat {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 0.92;
  background: var(--green-deep);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--paper);
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 14px 40px -12px rgba(14,59,39,0.4);
}
.cat:hover { transform: translateY(-6px); }
.cat-img {
  position: absolute; inset: 0;
  z-index: 0;
}
.cat-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.cat-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(14,59,39,0.95) 100%);
}
.cat-content { position: relative; z-index: 1; }
.cat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.cat h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  color: var(--paper);
}
.cat p {
  margin: 0 0 20px;
  color: rgba(247,244,236,0.85);
  font-size: 14.5px;
  font-weight: 500;
  max-width: 320px;
}
.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--gold);
  background: rgba(14,32,24,0.62);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(201,169,97,0.45);
  box-shadow: var(--pill-shadow-dark);
  width: fit-content;
  transition: all 0.2s ease;
}
.cat:hover .cat-link { background: var(--gold); color: var(--green-ink); border-color: var(--gold); }

/* ===== Product finder + grid ===== */
.finder {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
}
.finder-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  line-height: 1.05;
  font-weight: 800;
  color: var(--green-ink);
  letter-spacing: -0.02em;
}
.finder-title .accent { color: var(--gold-deep); font-style: italic; }
.finder-q { display: flex; gap: 8px; flex-wrap: wrap; }
.finder-q-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
  width: 100%;
  font-weight: 700;
}
.chip {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 600;
  background: var(--paper);
  color: var(--ink-2);
  border: 1.5px solid var(--line);
  transition: all 0.15s ease;
}
.chip:hover { border-color: var(--green-deep); color: var(--green-deep); }
.chip.active {
  background: var(--green-deep);
  color: var(--paper);
  border-color: var(--green-deep);
}

/* Group head for Granulair / Vloeibaar */
.group-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.group-head-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--green-soft);
  color: var(--green-deep);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.group-head-icon svg { width: 30px; height: 30px; }
.group-head-icon.liquid { background: #DBE7F7; color: #2A6FDB; }
.group-head-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green-ink);
  line-height: 1;
}
.group-head-sub {
  font-size: 13.5px;
  color: var(--ink-3);
  font-weight: 500;
  margin-top: 4px;
}
.group-head-count {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 700;
  padding: 6px 12px;
  background: var(--paper);
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
}
.empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-3);
  font-weight: 500;
  background: var(--paper-2);
  border-radius: var(--radius);
}
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-deep);
  box-shadow: 0 14px 30px -10px rgba(14,59,39,0.2);
}
.product-img {
  aspect-ratio: 1.05;
  border-radius: var(--r-sm);
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--paper);
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--green-deep);
  color: var(--paper);
  padding: 5px 10px;
  border-radius: var(--r-pill);
}
.product-tag.gold { color: var(--green-ink); background: var(--gold); }
.product-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 700;
  color: var(--green-ink);
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.product-sku {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.product-desc {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
  font-weight: 500;
  margin: 0 0 16px;
  flex: 1;
}
.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.product-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--green-ink);
  letter-spacing: -0.02em;
}
.product-price .unit {
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 600;
  margin-left: 2px;
}
.product-add {
  background: var(--green-deep);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 13px;
  display: flex; align-items: center; gap: 6px;
  transition: background 0.15s ease;
}
.product-add:hover { background: var(--green-ink); }
.product-add svg { width: 14px; height: 14px; }
.npk {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,0.97);
  padding: 6px 10px;
  border-radius: var(--r-xs);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-ink);
  letter-spacing: 0.04em;
  box-shadow: var(--pill-shadow);
}

/* ===== Soil analysis (redesigned) ===== */
.soil {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  position: relative;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}
.soil-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(130% 60% at 50% -8%, rgba(31,95,63,0.05) 0%, transparent 58%);
  pointer-events: none;
}
.soil .container { position: relative; z-index: 1; }
.soil h2 { color: var(--green-ink); }
.soil .kicker { color: var(--green-deep); }
.soil .kicker::before { background: var(--green-deep); }
.soil-head {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.soil-lead { font-size: 17px; line-height: 1.55; color: var(--ink-2); margin: 20px 0 28px; font-weight: 500; }
.soil-lead em { color: var(--green-deep); font-style: italic; font-weight: 700; }
.soil-trust {
  display: flex; align-items: center; gap: 24px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.st-item { display: flex; flex-direction: column; gap: 4px; }
.st-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 36px; font-weight: 800; line-height: 1;
  letter-spacing: -0.03em;
  color: var(--green-ink);
}
.st-lbl { font-size: 11.5px; font-weight: 600; color: var(--ink-3); line-height: 1.25; text-transform: uppercase; letter-spacing: 0.04em; }
.st-divider { width: 1px; height: 44px; background: var(--line); }

/* Lab report card */
/* Soil-health scorecard */
.soil-card {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px -28px rgba(14,59,39,0.28);
  padding: 26px 26px 22px;
}
.sc-top {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.sc-top-id {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.02em;
  color: var(--ink-3);
}
.sc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-deep); box-shadow: 0 0 0 3px rgba(31,95,63,0.15); }
.sc-top-stamp {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px;
  background: var(--green-soft);
  color: var(--green-deep);
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 800; letter-spacing: 0.03em;
  white-space: nowrap;
}
.sc-top-stamp svg { width: 14px; height: 14px; }

.sc-score { display: flex; align-items: center; gap: 22px; padding: 24px 0; }
.sc-gauge { position: relative; width: 116px; height: 116px; flex-shrink: 0; }
.sc-gauge svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.sc-gauge-track { fill: none; stroke: var(--paper-2); stroke-width: 11; }
.sc-gauge-fill {
  fill: none; stroke: var(--gold); stroke-width: 11; stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: calc(326.7 - (326.7 * var(--pct) / 100));
}
.sc-gauge-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.sc-gauge-center b { font-family: 'Bricolage Grotesque', sans-serif; font-size: 38px; font-weight: 800; letter-spacing: -0.03em; color: var(--green-ink); line-height: 0.9; }
.sc-gauge-center span { font-size: 11px; font-weight: 700; color: var(--ink-3); margin-top: 2px; }
.sc-score-label { font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.sc-score-status { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: var(--green-ink); margin: 3px 0 7px; }
.sc-score-text p { font-size: 13.5px; line-height: 1.5; color: var(--ink-2); font-weight: 500; margin: 0; }

.sc-findings { display: flex; flex-direction: column; }
.sc-finding {
  display: grid; grid-template-columns: 12px 1fr auto auto; gap: 14px; align-items: center;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}
.sc-finding-sev { width: 9px; height: 9px; border-radius: 50%; }
.sc-finding-sev.low { background: #D96A4A; box-shadow: 0 0 0 3px rgba(217,106,74,0.16); }
.sc-finding-sev.mid { background: #C9A961; box-shadow: 0 0 0 3px rgba(201,169,97,0.18); }
.sc-finding-sev.ok { background: #2A7A52; box-shadow: 0 0 0 3px rgba(42,122,82,0.16); }
.sc-finding-name { font-size: 14.5px; font-weight: 700; color: var(--green-ink); }
.sc-finding-val { font-family: 'JetBrains Mono', monospace; font-size: 14px; font-weight: 700; color: var(--ink-2); white-space: nowrap; }
.sc-finding-val i { font-style: normal; font-size: 11px; color: var(--ink-3); }
.sc-finding-tag { padding: 3px 9px; border-radius: var(--r-pill); font-size: 10.5px; font-weight: 800; letter-spacing: 0.02em; text-transform: uppercase; white-space: nowrap; }
.sc-finding-tag.low { background: #F6E0DC; color: #B33A2A; }
.sc-finding-tag.mid { background: #FBEDD0; color: #8A5A1F; }
.sc-finding-tag.ok { background: var(--green-soft); color: var(--green-deep); }

.sc-rx {
  display: flex; gap: 14px; align-items: center;
  margin-top: 20px;
  padding: 16px 18px;
  background: var(--green-ink); color: var(--paper);
  border-radius: var(--r-md);
}
.sc-rx-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold); color: var(--green-ink);
  border-radius: var(--r-sm);
  display: grid; place-items: center;
}
.sc-rx-icon svg { width: 22px; height: 22px; }
.sc-rx-label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 800; }
.sc-rx-text { font-size: 13.5px; font-weight: 600; line-height: 1.4; margin-top: 3px; color: var(--paper); }

/* Left column points + CTA */
.soil-points { list-style: none; padding: 0; margin: 26px 0 30px; display: flex; flex-direction: column; gap: 14px; }
.soil-points li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; color: var(--ink-2); font-weight: 500; line-height: 1.45; }
.soil-points strong { color: var(--green-ink); font-weight: 800; }
.soil-point-ic {
  width: 26px; height: 26px; flex-shrink: 0; margin-top: 1px;
  border-radius: 50%;
  background: var(--green-deep); color: var(--paper);
  display: grid; place-items: center;
}
.soil-point-ic svg { width: 15px; height: 15px; }
.soil-head-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.soil-head-note { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink-3); }
.soil-head-note svg { width: 18px; height: 18px; color: var(--green-deep); }
/* 5-day timeline — connected step cards (redesigned, no dashed line) */
.soil-timeline {
  margin-top: 60px;
  padding: 48px;
  background:
    radial-gradient(120% 100% at 0% 0%, #FCFBF6 0%, var(--white) 46%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 2px 6px -2px rgba(14,59,39,0.10),
    0 26px 60px -34px rgba(14,59,39,0.40);
}
.stl-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: end;
  margin-bottom: 44px;
}
.stl-head h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(26px, 3.2vw, 36px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.04; color: var(--green-ink);
  margin: 10px 0 0;
}
.stl-head h3 .accent { color: var(--gold-deep); font-style: italic; font-family: 'Instrument Serif', serif; font-weight: 400; }
.stl-head p { font-size: 15.5px; line-height: 1.55; color: var(--ink-2); font-weight: 500; margin: 0; max-width: 440px; }

.stl-track {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
/* solid progress rail behind the node row, with an animated fill that draws on reveal */
.stl-rail {
  position: absolute; top: 50px; left: 8px; right: 8px; height: 3px;
  background: var(--paper-2);
  border-radius: var(--r-pill);
  z-index: 0;
  overflow: hidden;
}
.stl-rail i {
  position: absolute; inset: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 60%, var(--gold) 100%);
  border-radius: inherit;
  transition: width 1.3s cubic-bezier(.45,.05,.2,1) 0.25s;
}
.soil-timeline.is-revealed .stl-rail i { width: 100%; }

.stl-step {
  position: relative; z-index: 1;
  opacity: 0; transform: translateY(20px);
  transition:
    opacity 0.6s ease calc(var(--i, 0) * 120ms),
    transform 0.65s cubic-bezier(.2,.7,.3,1) calc(var(--i, 0) * 120ms);
}
.soil-timeline.is-revealed .stl-step { opacity: 1; transform: none; }

.stl-card {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 22px 24px;
  box-shadow:
    0 1px 2px rgba(14,59,39,0.05),
    0 10px 24px -18px rgba(14,59,39,0.38);
  transition: transform 0.32s cubic-bezier(.2,.7,.3,1), box-shadow 0.32s ease, border-color 0.32s ease;
}
.stl-step:hover .stl-card {
  transform: translateY(-6px);
  border-color: rgba(31,95,63,0.3);
  box-shadow:
    0 1px 2px rgba(14,59,39,0.06),
    0 30px 60px -30px rgba(14,59,39,0.5);
}
.stl-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.stl-node {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--green-deep);
  color: var(--paper);
  display: grid; place-items: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 10px 22px -12px rgba(14,59,39,0.6);
  transition: transform 0.32s cubic-bezier(.2,.7,.3,1), background 0.32s ease, color 0.32s ease;
}
.stl-node svg { width: 28px; height: 28px; }
.stl-step:hover .stl-node { transform: translateY(-2px) rotate(-3deg); }
.stl-step--done .stl-node {
  background: var(--gold);
  color: var(--green-ink);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 10px 22px -10px rgba(201,169,97,0.7);
}
.stl-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 40px; font-weight: 800; line-height: 1;
  letter-spacing: -0.04em;
  color: var(--green-ink);
  opacity: 0.1;
}
.stl-step--done .stl-num { color: var(--gold-deep); opacity: 0.28; }
.stl-day {
  display: inline-block;
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 800; letter-spacing: 0.04em;
  color: var(--gold-deep);
  background: var(--gold-soft);
  padding: 5px 11px; border-radius: var(--r-pill);
  margin-bottom: 12px;
  box-shadow: var(--pill-shadow);
}
.stl-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 800; color: var(--green-ink); letter-spacing: -0.02em; margin-bottom: 7px; }
.stl-desc { font-size: 13.5px; color: var(--ink-2); margin: 0; line-height: 1.5; font-weight: 500; }

/* chevron connector in the gap between cards (desktop) */
.stl-step:not(:last-child)::after {
  content: "";
  position: absolute; top: 50px; right: -16px;
  width: 11px; height: 11px;
  border-top: 2.5px solid var(--green-light);
  border-right: 2.5px solid var(--green-light);
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease calc(var(--i, 0) * 120ms + 500ms);
}
.soil-timeline.is-revealed .stl-step:not(:last-child)::after { opacity: 1; }

/* Robustness: when the section is revealed instantly (off-screen at first
   sweep, programmatic scroll, or on-load), force the end-state so cards/rail
   can never stick at opacity:0 waiting on a transition that won't fire. */
.soil-timeline.reveal-instant .stl-step { opacity: 1 !important; transform: none !important; transition: none !important; }
.soil-timeline.reveal-instant .stl-rail i { width: 100% !important; transition: none !important; }
.soil-timeline.reveal-instant .stl-step:not(:last-child)::after { opacity: 1 !important; transition: none !important; }

@media (prefers-reduced-motion: reduce) {
  .stl-step, .soil-timeline.is-revealed .stl-step { opacity: 1; transform: none; transition: none; }
  .stl-rail i { width: 100%; transition: none; }
  .stl-step:not(:last-child)::after { opacity: 1; transition: none; }
}

/* CTA box */
.soil-cta-box {
  margin-top: 32px;
  padding: 36px 40px;
  background: var(--green-ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.soil-cta-box::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(201,169,97,0.18) 0%, transparent 50%);
}
.scb-left, .scb-right { position: relative; }
.scb-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--green-ink);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 12px;
}
.soil-cta-box h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--paper); margin: 0 0 8px;
}
.soil-cta-box h3 .accent { color: var(--gold); font-style: italic; }
.soil-cta-box p { color: rgba(247,244,236,0.78); font-size: 14.5px; margin: 0; font-weight: 500; }
.scb-right { display: flex; flex-direction: column; gap: 10px; align-items: end; }
.scb-link { color: var(--gold); font-size: 13.5px; font-weight: 700; text-decoration: none; }
.scb-link:hover { color: var(--paper); }

@media (max-width: 1100px) {
  .soil-head { grid-template-columns: 1fr; }
  .stl-track { grid-template-columns: 1fr 1fr; gap: 22px; }
  .stl-rail { display: none; }
  .stl-step:not(:last-child)::after { display: none; }
  .soil-cta-box { grid-template-columns: 1fr; }
  .scb-right { align-items: start; }
}

@media (max-width: 720px) {
  .soil-timeline { padding: 26px 20px; margin-top: 40px; }
  .stl-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 28px; }
  .stl-track { grid-template-columns: 1fr; gap: 16px; }
  .sc-score { flex-direction: column; text-align: center; gap: 16px; }
}

/* legacy soil rules below kept inert */
.soil-legacy::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,97,0.18) 0%, transparent 70%);
}

.soil-grid {
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,97,0.18) 0%, transparent 70%);
}

.soil-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.soil-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/4.5;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.soil-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.soil-image .price-tag {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--gold);
  color: var(--green-ink);
  padding: 14px 20px;
  border-radius: var(--r-pill);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  box-shadow: 0 10px 30px rgba(201,169,97,0.5);
}
.soil-image .price-tag span {
  font-size: 11px;
  font-weight: 600;
  display: block;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: -2px;
}
.soil-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.soil-step {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: start;
  background: rgba(255,255,255,0.03);
  transition: all 0.3s ease;
}
.soil-step.active {
  background: rgba(201,169,97,0.1);
  border-color: var(--gold);
}
.ss-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  width: 44px;
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.ss-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.ss-desc {
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(247,244,236,0.75);
  font-weight: 500;
}
.soil-ctas {
  display: flex; gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ===== Pillars ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar {
  background: var(--white);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -15px rgba(14,59,39,0.25);
}
.pillar-icon {
  width: 72px; height: 72px;
  border-radius: var(--r-lg);
  background: rgba(31,95,63,0.055);
  color: var(--green-deep);
  display: grid; place-items: center;
}
.pillar-icon svg { width: 40px; height: 40px; }
.pillar h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--green-ink);
  margin: 0;
}
.pillar p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}
.pillar .pillar-foot {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-deep);
  border-top: 1px solid var(--line);
}

/* ===== Reviews ===== */
.reviews { background: var(--paper-2); }
.review-slider {
  position: relative;
}
.rs-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 4px 24px;
}
.rs-track::-webkit-scrollbar { display: none; }
.rs-track > .review-card { scroll-snap-align: start; }
.rs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green-ink);
  box-shadow: 0 8px 24px rgba(14,59,39,0.15);
  cursor: pointer;
  transition: all 0.2s ease;
}
.rs-arrow:hover { background: var(--green-deep); color: var(--paper); border-color: var(--green-deep); }
.rs-prev { left: -24px; }
.rs-next { right: -24px; }
.rs-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 12px;
}
.rs-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.rs-dot.active { background: var(--green-deep); width: 28px; border-radius: 4px; }
@media (max-width: 1100px) {
  .rs-track { grid-auto-columns: calc((100% - 20px) / 2); }
}
@media (max-width: 720px) {
  .rs-track { grid-auto-columns: 100%; }
  .rs-arrow { display: none; }
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.review-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  font-weight: 700;
}
.review-quote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--green-ink);
  margin: 0 0 24px;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-deep);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 14px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.review-name { font-weight: 700; font-size: 14px; }
.review-meta { font-size: 12px; color: var(--ink-3); font-weight: 500; }

/* ===== Reviews, summary + grid layout ===== */
.rv-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
}
.rv-summary {
  position: sticky;
  top: 96px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.rv-score {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--green-ink);
}
.rv-score-stars { color: var(--gold); font-size: 20px; letter-spacing: 0.12em; margin-top: 8px; }
.rv-score-sub { font-size: 13px; color: var(--ink-3); font-weight: 600; margin-top: 8px; }
.rv-bars { display: flex; flex-direction: column; gap: 7px; margin: 22px 0; }
.rv-bar-row { display: grid; grid-template-columns: 14px 1fr 34px; gap: 10px; align-items: center; font-size: 12px; font-weight: 700; color: var(--ink-3); }
.rv-bar-row b { text-align: right; color: var(--ink-2); }
.rv-bar { height: 7px; background: var(--paper-2); border-radius: var(--r-pill); overflow: hidden; }
.rv-bar i { display: block; height: 100%; background: var(--gold); border-radius: var(--r-pill); }
.rv-sources { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.rv-source {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 2px;
}
.rv-source span { font-size: 11px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.04em; }
.rv-source b { font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 800; color: var(--green-ink); letter-spacing: -0.02em; }
.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) {
  .rv-layout { grid-template-columns: 1fr; }
  .rv-summary { position: static; display: grid; grid-template-columns: auto 1fr; gap: 12px 32px; align-items: center; }
  .rv-summary .rv-bars { grid-column: 2; margin: 0; }
  .rv-summary .rv-sources, .rv-summary .btn { grid-column: 1 / -1; }
  .rv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .rv-summary { grid-template-columns: 1fr; }
  .rv-summary .rv-bars { grid-column: 1; }
  .rv-grid { grid-template-columns: 1fr; }
}

/* ===== Stats / CTA strip ===== */
.cta-strip {
  background: var(--green-ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(115% 90% at 100% 0%, rgba(201,169,97,0.10) 0%, transparent 56%);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.cta-strip h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
  color: var(--paper);
}
.cta-strip h2 .accent { color: var(--gold); font-style: italic; }
.cta-strip p {
  font-size: 17px;
  font-weight: 500;
  color: rgba(247,244,236,0.8);
  max-width: 480px;
  margin: 0 0 32px;
}
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.stat { background: rgba(255,255,255,0.03); padding: 32px; }
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--paper);
  letter-spacing: -0.04em;
}
.stat-num .accent { color: var(--gold); font-style: italic; }
.stat-lbl {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,244,236,0.7);
  font-weight: 700;
  margin-top: 10px;
}

/* ===== Footer (GREEN) ===== */
footer {
  background: var(--green-ink);
  color: var(--paper);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: -150px; left: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,169,97,0.1) 0%, transparent 70%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.6fr;
  gap: 40px;
  margin-bottom: 56px;
  position: relative;
}
.footer-brand .footer-logo {
  height: 56px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  color: rgba(247,244,236,0.75);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 280px;
  font-weight: 500;
}
.social { display: flex; gap: 8px; }
.social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.08);
  color: var(--paper);
  transition: all 0.15s ease;
  border: 1px solid rgba(255,255,255,0.1);
}
.social a:hover { background: var(--gold); color: var(--green-ink); border-color: var(--gold); }
.footer-col h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14.5px;
  color: rgba(247,244,236,0.8);
  font-weight: 500;
}
.footer-col a:hover { color: var(--gold); }
.newsletter input {
  font-family: inherit;
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-sm);
  color: var(--paper);
  font-size: 14px;
  font-weight: 500;
}
.newsletter input::placeholder { color: rgba(247,244,236,0.5); }
.newsletter input:focus { outline: none; border-color: var(--gold); }
.newsletter form { display: flex; gap: 8px; margin-top: 14px; }
.newsletter button {
  background: var(--gold);
  color: var(--green-ink);
  border: 0;
  padding: 0 18px;
  border-radius: var(--r-sm);
  cursor: pointer;
  font-weight: 800;
}
.newsletter button:hover { background: var(--paper); }
.newsletter p {
  color: rgba(247,244,236,0.75);
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(247,244,236,0.6);
  font-weight: 500;
  position: relative;
}
.footer-bottom .links { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--gold); }

/* Payments row in footer-bottom */
.footer-pay {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-pay-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,244,236,0.5);
  margin-right: 4px;
}
.footer-pay svg {
  height: 22px;
  width: auto;
  border-radius: 4px;
  background: rgba(255,255,255,0.94);
  padding: 4px 6px;
  box-sizing: content-box;
  display: block;
}

/* ===== Case-study cards v5 — compact, image-led grid ===== */
.csg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.csg-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-decoration: none;
  transition: transform .42s cubic-bezier(.2,.7,.3,1), box-shadow .42s ease, border-color .42s ease;
}
.csg-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 38px 72px -40px rgba(14,59,39,0.5);
  border-color: var(--green-light);
}
.csg-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(155deg, #2E7D55 0%, #0E3B27 100%);
}
.csg-media image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; transition: transform .8s cubic-bezier(.2,.7,.3,1); }
.csg-card:hover .csg-media image-slot { transform: scale(1.055); }
.csg-media::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(8,30,20,0.18) 0%, rgba(8,30,20,0) 32%, rgba(8,30,20,0.34) 56%, rgba(8,30,20,0.9) 100%); }
.csg-cat {
  position: absolute; top: 15px; left: 15px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(247,244,236,0.94); color: var(--green-ink);
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap;
  padding: 6px 11px; border-radius: var(--r-pill); box-shadow: var(--pill-shadow-dark);
}
.csg-cat .n { color: var(--gold-deep); }
.csg-stat { position: absolute; left: 18px; bottom: 16px; right: 18px; z-index: 2; }
.csg-stat b {
  display: block; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-size: clamp(34px, 3vw, 44px); letter-spacing: -0.045em; line-height: 0.88; color: #fff;
}
.csg-stat b .accent { color: var(--gold); }
.csg-stat b .pct { font-size: 0.46em; letter-spacing: 0; color: var(--gold); margin-left: 1px; }
.csg-stat b .u { font-size: 0.42em; font-weight: 800; letter-spacing: 0; color: var(--gold); margin-left: 4px; }
.csg-stat > span { display: block; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.86); margin-top: 9px; text-transform: uppercase; letter-spacing: 0.05em; }
.csg-body { padding: 20px 22px 0; display: flex; flex-direction: column; flex: 1; }
.csg-loc { display: inline-flex; align-items: center; gap: 6px; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700; color: var(--gold-deep); text-transform: uppercase; letter-spacing: 0.05em; }
.csg-loc svg { width: 13px; height: 13px; flex-shrink: 0; }
.csg-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; color: var(--green-ink); margin: 12px 0 0; text-wrap: balance; }
.csg-title .accent { color: var(--gold-deep); font-style: italic; font-family: 'Instrument Serif', serif; font-weight: 400; }
.csg-foot { margin-top: auto; padding-top: 18px; margin-top: 20px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 11px; padding-bottom: 18px; }
.csg-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--green-soft); color: var(--green-deep); display: grid; place-items: center; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 13px; flex-shrink: 0; }
.csg-who { min-width: 0; flex: 1; }
.csg-who b { display: block; font-size: 13px; font-weight: 800; color: var(--green-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.csg-who span { font-size: 11.5px; color: var(--ink-3); font-weight: 600; }
.csg-arrow { width: 34px; height: 34px; border-radius: 50%; background: var(--green-deep); color: var(--paper); display: grid; place-items: center; flex-shrink: 0; transition: transform 0.28s cubic-bezier(.2,.7,.3,1), background 0.28s ease; }
.csg-card:hover .csg-arrow { background: var(--green-ink); transform: translateX(4px); }
.csg-arrow svg { width: 15px; height: 15px; }
@media (max-width: 980px) { .csg-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .csg-grid { grid-template-columns: 1fr; } .csg-stat b { font-size: 46px; } }

/* ===== Scroll-driven animations ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s cubic-bezier(.22,.61,.36,1) var(--reveal-delay, 0ms),
    transform 0.7s cubic-bezier(.22,.61,.36,1) var(--reveal-delay, 0ms);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Instant reveal (no transition) — used when an element is revealed while
   off-screen, so its entrance never stalls before it scrolls into view. */
[data-reveal].reveal-instant {
  transition: none !important;
}

/* Parallax variant: image elements get a subtle Y shift */
.hero-image, .soil-hero-visual, .blog-feature-img, .pdp-hero-img {
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y), 0);
  transition: transform 0.18s linear;
}

/* Nav: subtle shadow once scrolled */
.nav { transition: box-shadow 0.3s ease, background 0.3s ease; }
.nav.is-scrolled {
  box-shadow: 0 8px 28px rgba(14,59,39,0.08);
}

/* Reduced motion users, disable */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-image, .soil-hero-visual, .blog-feature-img, .pdp-hero-img { transform: none; }
}

/* ===== Seasons calendar ===== */
.seasons { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); }
.bg-grass {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600' opacity='0.06'><g fill='%231F5F3F'><path d='M50 580 L48 480 L52 480 Z'/><path d='M80 580 L78 460 L82 460 Z'/><path d='M110 580 L108 500 L112 500 Z'/><path d='M140 580 L138 470 L142 470 Z'/><path d='M170 580 L168 490 L172 490 Z'/><path d='M200 580 L198 460 L202 460 Z'/><path d='M230 580 L228 480 L232 480 Z'/><path d='M260 580 L258 500 L262 500 Z'/><path d='M290 580 L288 470 L292 470 Z'/><path d='M320 580 L318 490 L322 490 Z'/><path d='M350 580 L348 460 L352 460 Z'/><path d='M380 580 L378 480 L382 480 Z'/><path d='M410 580 L408 500 L412 500 Z'/><path d='M440 580 L438 470 L442 470 Z'/><path d='M470 580 L468 490 L472 490 Z'/><path d='M500 580 L498 460 L502 460 Z'/><path d='M530 580 L528 480 L532 480 Z'/><path d='M560 580 L558 500 L562 500 Z'/></g></svg>");
  background-size: 600px 600px;
  background-repeat: repeat-x;
  background-position: bottom;
  pointer-events: none;
}
/* Season stripe timeline */
.season-stripe {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  position: relative;
  z-index: 2;
}
.ss-step { display: flex; align-items: center; gap: 10px; justify-content: center; }
.ss-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 0 4px rgba(0,0,0,0.04); }
.ss-spring .ss-dot { background: #5A8A5E; }
.ss-summer .ss-dot { background: #F4A93E; }
.ss-autumn .ss-dot { background: #C68953; }
.ss-winter .ss-dot { background: #7DA098; }
.ss-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700; color: var(--ink-3); letter-spacing: 0.08em; }
.ss-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 14px; color: var(--green-ink); letter-spacing: -0.01em; }
.ss-line { height: 2px; background: linear-gradient(90deg, var(--line), var(--gold), var(--line)); border-radius: 2px; }
.season-stripe { grid-template-columns: auto 1fr auto 1fr auto 1fr auto; }

.calendar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.season-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.season-card::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
}
.s-spring::after { background: linear-gradient(90deg, #4FA876, #6FBF8E); }
.s-summer::after { background: linear-gradient(90deg, #C9A961, #E8C97D); }
.s-autumn::after { background: linear-gradient(90deg, #B5704A, #D88B5E); }
.s-winter::after { background: linear-gradient(90deg, #6B8A78, #9DB5A6); }
.season-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px -15px rgba(14,59,39,0.28); }
.season-illu {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  display: grid;
  place-items: center;
}
.season-illu svg { width: 100%; height: 100%; display: block; }
.season-illu img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}
.season-card:hover .season-illu img { transform: scale(1.04); }
.s-spring .season-illu { background: linear-gradient(160deg, #EFF6E8 0%, #F7F4EC 100%); }
.s-summer .season-illu { background: linear-gradient(160deg, #FFF4DC 0%, #F7F4EC 100%); }
.s-autumn .season-illu { background: linear-gradient(160deg, #FBEADA 0%, #F7F4EC 100%); }
.s-winter .season-illu { background: linear-gradient(160deg, #EAF1F2 0%, #F7F4EC 100%); }
.season-temp {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.97);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-ink);
  letter-spacing: 0.04em;
  box-shadow: var(--pill-shadow);
}
.season-body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.season-emoji { font-size: 0.85em; }
.season-pitch {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 500;
  margin: 0;
}
.season-result {
  display: flex; gap: 10px; align-items: center;
  background: var(--green-soft);
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--green-ink);
  line-height: 1.35;
}
.sr-icon {
  width: 20px; height: 20px;
  background: var(--green-deep);
  color: var(--paper);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.season-cta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--green-deep);
  transition: gap 0.2s ease;
}
.season-card:hover .season-cta { gap: 14px; color: var(--gold-deep); }
.s-summer .season-result { background: #FFF1D6; color: #8A5A1F; }
.s-summer .sr-icon { background: #C9851F; }
.s-summer .season-cta { color: #B5731A; }
.s-summer:hover .season-cta { color: #8A5A1F; }
.s-autumn .season-result { background: #F4E1D2; color: #7A4F2C; }
.s-autumn .sr-icon { background: #B5704A; }
.s-autumn .season-cta { color: #B5704A; }
.s-autumn:hover .season-cta { color: #7A4F2C; }
.s-winter .season-result { background: #E2EAE6; color: #3D5A52; }
.s-winter .sr-icon { background: #6B8A78; }
.s-winter .season-cta { color: #6B8A78; }
.s-winter:hover .season-cta { color: #3D5A52; }

.seasons-foot {
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.sf-text { font-size: 15.5px; color: var(--ink-2); font-weight: 500; line-height: 1.55; }
.sf-text strong { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 800; color: var(--green-ink); letter-spacing: -0.02em; margin-bottom: 4px; }
.sf-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

.season-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  background: var(--green-soft);
  color: var(--green-deep);
}
.s-summer .season-icon { background: var(--gold-soft); color: var(--gold-deep); }
.s-autumn .season-icon { background: #F4E1D2; color: #B5704A; }
.s-winter .season-icon { background: #E2EAE6; color: #6B8A78; }
.season-icon svg { width: 34px; height: 34px; }
.season-mo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}
.season-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1;
  color: var(--green-ink); margin: 0;
}
.season-task {
  font-size: 14.5px; font-weight: 700;
  color: var(--green-deep); margin: 0;
}
.season-list {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.season-list li {
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-2);
  display: flex; align-items: start; gap: 8px;
  line-height: 1.4;
}
.season-list li::before {
  content: "✓";
  color: var(--gold-deep);
  font-weight: 800;
  flex-shrink: 0;
}



/* Subtle bg illustration on reviews */
.reviews { position: relative; overflow: hidden; }
.reviews::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,169,97,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== Product type icon (granular vs liquid) ===== */
.type-icon {
  position: absolute;
  bottom: 12px; left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.97);
  padding: 6px 10px 6px 8px;
  border-radius: var(--r-pill);
  box-shadow: var(--pill-shadow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-ink);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.type-icon svg { width: 14px; height: 14px; color: var(--green-deep); }
.type-icon.liquid svg { color: #2A6FDB; }

/* ===== Newsletter section ===== */
.nl-section {
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.nl-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 70% at 100% 0%, rgba(201,169,97,0.06) 0%, transparent 56%);
}
.nl-wrap {
  background: var(--green-ink);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--paper);
  box-shadow: 0 30px 80px -20px rgba(14,59,39,0.4);
}
.nl-wrap::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,169,97,0.12) 0%, transparent 70%);
}
.nl-wrap h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: var(--paper);
  position: relative;
}
.nl-wrap h2 .accent { color: var(--gold); font-style: italic; }
.nl-wrap p {
  font-size: 16.5px;
  color: rgba(247,244,236,0.8);
  margin: 0 0 8px;
  font-weight: 500;
  position: relative;
}
.nl-features {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
  position: relative;
}
.nl-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--gold);
  font-weight: 700;
}
.nl-feature svg { width: 16px; height: 16px; }
.nl-form {
  position: relative;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 20px 50px -28px rgba(0,0,0,0.55);
}
.nl-form-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 12px;
}
.nl-form form {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.nl-form input {
  flex: 1;
  font-family: inherit;
  padding: 16px 18px;
  background: var(--paper);
  border: 0;
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}
.nl-form input::placeholder { color: var(--ink-3); }
.nl-form input:focus { outline: 2px solid var(--gold); }
.nl-form button {
  background: var(--gold);
  color: var(--green-ink);
  border: 0;
  padding: 0 24px;
  border-radius: var(--r-sm);
  cursor: pointer;
  font-weight: 800;
  font-size: 14.5px;
  display: flex; align-items: center; gap: 6px;
}
.nl-form button:hover { background: var(--paper); }
.nl-fineprint {
  font-size: 12.5px;
  color: rgba(247,244,236,0.55);
  font-weight: 500;
  margin: 0;
}

/* ===== Contact section ===== */
.contact { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: stretch;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-self: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.2s ease;
}
.contact-card:hover {
  border-color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(14,59,39,0.15);
}
.contact-card.wide { grid-column: 1 / -1; }
.contact-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--green-soft);
  color: var(--green-deep);
  display: grid; place-items: center;
}
.contact-card-icon svg { width: 28px; height: 28px; }
.contact-card-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
}
.contact-card-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--green-ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
}
.contact-card-sub {
  font-size: 13.5px;
  color: var(--ink-2);
  font-weight: 500;
  margin: 0;
  line-height: 1.45;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  font-family: inherit;
  width: 100%;
  padding: 14px 14px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
  resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--green-deep);
  background: var(--white);
}
.contact-form button {
  align-self: start;
  margin-top: 8px;
}

/* ===== Hamburger button ===== */
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  flex-direction: column;
  gap: 4px;
}
.nav-burger span {
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* ===== Mobile drawer ===== */
.mobile-drawer {
  position: fixed; inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.mobile-drawer.is-open { pointer-events: auto; visibility: visible; }
.md-backdrop {
  position: absolute; inset: 0;
  background: rgba(14,59,39,0.5);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-drawer.is-open .md-backdrop { opacity: 1; }
.md-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: var(--paper);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(.4,.0,.2,1);
  box-shadow: -20px 0 60px rgba(14,59,39,0.25);
}
.mobile-drawer.is-open .md-panel { transform: translateX(0); }
.md-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.md-head img { height: 44px; }
.md-close {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}
.md-close svg { width: 20px; height: 20px; }
.md-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px 24px;
  display: flex; flex-direction: column; gap: 24px;
}
.md-links { display: flex; flex-direction: column; gap: 2px; }
.md-links a {
  padding: 14px 12px;
  border-radius: var(--r-sm);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.md-links a:hover, .md-links a.active {
  background: var(--green-soft);
  color: var(--green-deep);
}
.md-section-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 0 12px 6px;
}
.md-account {
  display: flex; flex-direction: column; gap: 4px;
}
.md-account a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.md-account a:hover { background: var(--green-soft); color: var(--green-deep); }
.md-account svg { width: 20px; height: 20px; }
.md-account .badge {
  margin-left: auto;
  background: var(--gold);
  color: var(--green-ink);
  font-size: 11px; font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--r-sm);
}
.md-lang {
  display: flex; gap: 6px; align-items: center;
  padding: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  width: fit-content;
}
.md-lang span {
  padding: 8px 16px;
  border-radius: var(--r-xs);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  cursor: pointer;
}
.md-lang span.active {
  background: var(--green-deep);
  color: var(--paper);
}
.md-foot {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.md-cta {
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 15px;
  background: var(--green-deep);
  color: var(--paper);
}
.md-cta.secondary {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.md-meta {
  font-size: 12.5px;
  color: var(--ink-3);
  display: flex; gap: 12px; flex-wrap: wrap;
  padding: 0 4px;
}
.md-meta a { color: var(--ink-2); }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .hero-content { left: 32px; right: 32px; max-width: none; }
  .hero-image { aspect-ratio: 16/12; }
  .hero-badge { display: none; }
  .usps-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .usp-divider { display: none; }
  .cats { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .soil-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .finder { grid-template-columns: 1fr; }
  .calendar { grid-template-columns: 1fr 1fr; }
  .season-stripe { display: none; }
  .seasons-foot { grid-template-columns: 1fr; }
  .nl-wrap { grid-template-columns: 1fr; padding: 40px; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
}

/* ===== Tablet & smaller, collapse nav ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .nav-actions .icon-btn { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-inner { gap: 12px; padding: 12px 20px; }
  .logo { height: 44px; }

  .promo-inner { gap: 12px; padding: 9px 20px; flex-wrap: wrap; }
  .promo-items { gap: 16px; flex-wrap: wrap; font-size: 12px; }
  .promo-item { font-size: 12px; }
  .promo-right { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 16px !important; }
  .container, .hero-image-wrap, .nav-inner { padding-left: 16px; padding-right: 16px; }
  section { padding: 56px 0; }

  /* Promo bar, single-line right-to-left marquee */
  .promo { overflow: hidden; }
  .promo-inner {
    display: block;
    padding: 9px 0;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    white-space: nowrap;
    position: relative;
  }
  .promo-right { display: none; }
  .promo-items {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 36px;
    padding-left: 100%;
    animation: promo-marquee 28s linear infinite;
    will-change: transform;
  }
  .promo-item {
    flex-shrink: 0;
    font-size: 13px;
    white-space: nowrap;
  }
  .promo-item:nth-child(n+3) { display: flex; }
  @keyframes promo-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }

  /* Hero */
  .hero { padding: 16px 0 !important; }
  .hero-image { aspect-ratio: 3/5; border-radius: var(--r-lg); min-height: 560px; }
  .hero-content { left: 20px !important; right: 20px !important; bottom: 24px; top: auto; transform: none; }
  .hero h1 { font-size: 36px; line-height: 1.05; margin-bottom: 12px; }
  .hero-sub { font-size: 15px; margin-bottom: 24px; }
  .hero-ctas { flex-direction: column; gap: 10px; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .hero-tag { font-size: 11px; padding: 6px 10px; }
  .hero-trust { flex-wrap: wrap; gap: 12px; font-size: 12px; }
  .hero-trust-divider { display: none; }

  /* USP bar */
  .usps-grid { grid-template-columns: 1fr; gap: 16px; }
  .usps { padding: 24px 0; }

  /* Sections, typography */
  h1 { font-size: 36px !important; line-height: 1.05; }
  h2 { font-size: 30px !important; line-height: 1.1; }
  h3 { font-size: 22px !important; }
  .section-head { margin-bottom: 36px; }

  /* Product grid */
  .product-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-cards { grid-template-columns: 1fr; }

  /* Calendar / seasons */
  .calendar { grid-template-columns: 1fr; }

  /* CTAs full width */
  .btn-lg { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container, .hero-image-wrap, .promo-inner, .nav-inner { padding-left: 14px; padding-right: 14px; }
  .promo { font-size: 11.5px; }
  .promo-item svg { width: 14px; height: 14px; }
  .logo { height: 38px; }
  .hero h1 { font-size: 30px; }
  h1 { font-size: 30px !important; }
  h2 { font-size: 26px !important; }
}

/* ===== Richer Footer (v2), contact rows, legal grid, trust ===== */
footer .footer-grid {
  grid-template-columns: 1.6fr 0.9fr 0.9fr 0.9fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 4px 0 24px;
}
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(247,244,236,0.85);
  font-weight: 500;
  line-height: 1.3;
}
.footer-contact-row > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
a.footer-contact-row:hover .footer-contact-val { color: var(--gold); }
.footer-contact-ic {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: rgba(201,169,97,0.12);
  color: var(--gold);
  flex-shrink: 0;
  border: 1px solid rgba(201,169,97,0.22);
}
.footer-contact-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,244,236,0.55);
  font-weight: 700;
}
.footer-contact-val {
  font-size: 14.5px;
  color: var(--paper);
  font-weight: 600;
  transition: color 0.15s ease;
}
.footer-trust {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(247,244,236,0.78);
  font-weight: 500;
}
.footer-trust-item svg { color: var(--gold); flex-shrink: 0; }

.footer-legal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 32px 0;
  margin: 0 0 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.footer-legal-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: rgba(247,244,236,0.7);
  font-weight: 500;
  line-height: 1.5;
}
.footer-legal-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}
footer .footer-pay {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
footer .footer-pay svg {
  height: 22px;
  width: auto;
  border-radius: 4px;
  background: rgba(255,255,255,0.94);
  padding: 4px 6px;
  box-sizing: content-box;
  display: block;
}
.footer-bottom .links { flex-wrap: wrap; }

@media (max-width: 1100px) {
  footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-legal { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  footer { padding: 56px 0 28px; }
  footer .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-legal { grid-template-columns: 1fr; gap: 22px; padding: 24px 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-bottom .links { gap: 14px; }
}

/* ===== Bigger icons, no backgrounds, site-wide polish ===== */
/* USP icons: drop the gradient pill, enlarge */
.usp-icon { color: var(--green-deep); }
/* Group head icons: bigger, no pill */
.group-head-icon {
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
}
.group-head-icon svg { width: 36px !important; height: 36px !important; stroke-width: 1.7 !important; color: var(--green-deep); }

/* ===== Seasons calendar, v3 icon-led vertical cards ===== */
.seasons { padding: 104px 0 !important; }
.seasons > .container .section-head { margin-bottom: 48px; }
.calendar {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}
.season-card {
  padding: 0 !important;
  gap: 0 !important;
  border-radius: 22px !important;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex !important;
  flex-direction: column;
  overflow: hidden;
}
.season-card::after { height: 5px; }
.season-head {
  position: relative;
  display: grid;
  place-items: center;
  padding: 30px 24px 24px;
}
.s-spring .season-head { background: linear-gradient(165deg, #EEF6E6 0%, #F7F4EC 100%); }
.s-summer .season-head { background: linear-gradient(165deg, #FFF3D6 0%, #F7F4EC 100%); }
.s-autumn .season-head { background: linear-gradient(165deg, #FBE7D5 0%, #F7F4EC 100%); }
.s-winter .season-head { background: linear-gradient(165deg, #E8F0F1 0%, #F7F4EC 100%); }
.season-badge {
  width: 112px; height: 112px;
  border-radius: 26px;
  display: grid; place-items: center;
  background: var(--white);
  box-shadow: 0 10px 28px -12px rgba(14,59,39,0.3), inset 0 0 0 1px rgba(31,95,63,0.06);
  overflow: hidden;
  transition: transform 0.35s ease;
}
.season-badge img { width: 100%; height: 100%; object-fit: cover; display: block; }
.season-card:hover .season-badge { transform: translateY(-3px) scale(1.03); }
.season-temp {
  position: absolute;
  top: 14px; right: 14px; left: auto; bottom: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: var(--green-ink);
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--line);
  padding: 5px 9px;
  border-radius: var(--r-pill);
  box-shadow: var(--pill-shadow);
}
.season-body {
  padding: 22px 22px 24px !important;
  gap: 9px !important;
  flex: 1;
  text-align: left;
}
.season-mo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.season-card h3 {
  font-size: 28px !important;
  margin: 0 !important;
  line-height: 1 !important;
}
.season-task {
  font-size: 14px !important;
  font-weight: 700;
  color: var(--green-deep);
  margin: 0 !important;
}
.season-list {
  list-style: none; padding: 12px 0 0 !important; margin: 4px 0 0 !important;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 7px !important;
}
.season-list li {
  font-size: 13.5px; font-weight: 600;
  color: var(--ink-2);
  display: flex; align-items: center; gap: 9px;
  padding-left: 0;
}
.season-list li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-deep);
  flex-shrink: 0;
}
.s-spring .season-list li::before { background: var(--green-deep); }
.s-autumn .season-list li::before { background: #B5704A; }
.s-winter .season-list li::before { background: #6B8A78; }
.season-cta {
  margin-top: auto;
  padding-top: 16px !important;
  font-size: 14px !important;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700;
}
.seasons-foot { margin-top: 44px !important; padding: 30px 40px !important; }
.sf-text strong { font-size: 22px !important; }

@media (max-width: 1100px) {
  .calendar { grid-template-columns: repeat(2, 1fr) !important; gap: 18px !important; }
}
@media (max-width: 560px) {
  .seasons { padding: 56px 0 !important; }
  .calendar { grid-template-columns: 1fr !important; gap: 14px !important; }
  .season-card { flex-direction: row; align-items: stretch; }
  .season-head { padding: 20px 16px; width: 132px; flex-shrink: 0; }
  .season-badge { width: 92px; height: 92px; border-radius: 22px; }
  .season-temp { font-size: 9.5px; padding: 4px 7px; top: 12px; right: 12px; }
  .season-body { padding: 18px 18px 18px !important; }
  .season-card h3 { font-size: 26px !important; }
  .season-task { font-size: 13.5px !important; }
  .seasons-foot { padding: 22px !important; grid-template-columns: 1fr !important; }
  .sf-ctas .btn { width: 100%; justify-content: center; }
}
@media (max-width: 400px) {
  .season-card { flex-direction: column; }
  .season-head { width: 100%; padding: 22px 16px 18px; }
  .season-badge { width: 96px; height: 96px; }
  .season-body { padding: 18px 18px 20px !important; }
}



/* ===== Reusable Grass Calendar ===== */
.grass-cal-section { padding: 80px 0; background: var(--paper); }
.grass-cal { background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 48px; }
.grass-cal-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 36px; flex-wrap: wrap; }
.grass-cal-kicker { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 800; letter-spacing: 0.1em; color: var(--gold-deep); margin-bottom: 10px; }
.grass-cal-head h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 38px; font-weight: 800; color: var(--green-ink); margin: 0 0 8px; letter-spacing: -0.025em; }
.grass-cal-head h2 .accent { color: var(--gold-deep); font-style: italic; font-family: 'Instrument Serif', serif; font-weight: 400; }
.grass-cal-head > div:first-child p { color: var(--ink-3); font-size: 16px; font-weight: 500; margin: 0; max-width: 520px; line-height: 1.5; }
.grass-cal-legend { display: flex; flex-direction: column; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--ink-3); font-family: 'JetBrains Mono', monospace; }
.grass-cal-legend span { display: inline-flex; align-items: center; gap: 8px; }
.grass-cal-legend .sw { width: 18px; height: 14px; border-radius: 3px; }
.grass-cal-legend .sw.t-prime { background: var(--green-deep); }
.grass-cal-legend .sw.t-light { background: rgba(201,169,97,0.5); }
.grass-cal-legend .sw.t-avoid { background: repeating-linear-gradient(45deg, #f4f1e8, #f4f1e8 4px, rgba(180,90,90,0.18) 4px, rgba(180,90,90,0.18) 8px); }

.grass-cal-grid { display: grid; grid-template-columns: 200px repeat(12, 1fr); gap: 4px; align-items: stretch; }
.grass-cal-grid > .cal-h { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; font-weight: 800; letter-spacing: 0.06em; color: var(--ink-3); text-align: center; padding: 8px 0; }
.grass-cal-row-label { display: flex; align-items: center; gap: 10px; font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; font-weight: 700; color: var(--green-ink); padding-right: 12px; }
.grass-cal-row-label .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.grass-cal-cell { height: 36px; background: #f4f1e8; border-radius: 4px; position: relative; }
.grass-cal-cell.t-prime { background: var(--green-deep); }
.grass-cal-cell.t-light { background: rgba(201,169,97,0.5); }
.grass-cal-cell.t-avoid { background: repeating-linear-gradient(45deg, #f4f1e8, #f4f1e8 4px, rgba(180,90,90,0.18) 4px, rgba(180,90,90,0.18) 8px); }
.grass-cal-cell[data-label]::after { content: attr(data-label); position: absolute; inset: 0; display: grid; place-items: center; font-family: 'JetBrains Mono', monospace; font-size: 8.5px; font-weight: 800; letter-spacing: 0.04em; color: var(--paper); text-transform: uppercase; }

.grass-cal-foot { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--line); }
.grass-cal-foot-card { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: flex-start; padding: 18px; background: var(--paper); border-radius: var(--r-md); }
.grass-cal-foot-card svg { width: 36px; height: 36px; color: var(--green-deep); stroke-width: 1.6; }
.grass-cal-foot-card h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px; font-weight: 800; color: var(--green-ink); margin: 0 0 4px; letter-spacing: -0.01em; }
.grass-cal-foot-card p { font-size: 13px; color: var(--ink-3); font-weight: 500; line-height: 1.45; margin: 0 0 8px; }
.grass-cal-foot-card a { font-family: 'JetBrains Mono', monospace; font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; color: var(--gold-deep); text-transform: uppercase; text-decoration: none; }
.grass-cal-foot-card a:hover { color: var(--green-deep); }

@media (max-width: 1024px) {
  .grass-cal { padding: 32px 24px; }
  .grass-cal-head h2 { font-size: 30px; }
  .grass-cal-grid { grid-template-columns: 130px repeat(12, 1fr); gap: 3px; }
  .grass-cal-row-label { font-size: 12px; gap: 6px; }
  .grass-cal-cell { height: 28px; }
  .grass-cal-cell[data-label]::after { font-size: 7px; }
  .grass-cal-foot { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 720px) {
  .grass-cal-section { padding: 48px 0; }
  .grass-cal { padding: 24px 18px; border-radius: var(--r-lg); }
  .grass-cal-head h2 { font-size: 24px; }
  .grass-cal-head > div:first-child p { font-size: 14px; }
  .grass-cal-legend { flex-direction: row; flex-wrap: wrap; font-size: 11px; }
  .grass-cal-grid { display: flex; flex-direction: column; gap: 14px; }
  .grass-cal-grid > .cal-h { display: none; }
  .grass-cal-grid > .grass-cal-cell { display: none; }
  .grass-cal-row-label { padding-right: 0; padding-bottom: 6px; font-size: 13px; border-bottom: 1px dashed var(--line); }
  .grass-cal-row-label::after { content: ", actief: lente + zomer + herfst"; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; font-weight: 500; color: var(--ink-3); margin-left: auto; letter-spacing: 0; text-transform: none; }
}


/* ===== General FAQ (products / category pages) ===== */
.general-faq { padding: 80px 0; background: var(--white); border-top: 1px solid var(--line); }
.general-faq-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.general-faq-head .kicker { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 800; letter-spacing: 0.1em; color: var(--gold-deep); margin-bottom: 12px; }
.general-faq-head h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 42px; font-weight: 800; color: var(--green-ink); margin: 0 0 14px; letter-spacing: -0.03em; }
.general-faq-head h2 .accent { color: var(--gold-deep); font-style: italic; font-family: 'Instrument Serif', serif; font-weight: 400; }
.general-faq-head p { font-size: 16px; color: var(--ink-3); font-weight: 500; margin: 0; line-height: 1.55; }
.general-faq-head p a { color: var(--green-deep); font-weight: 700; text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.general-faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.general-faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color 0.15s; }
.general-faq-item[open] { border-color: var(--green-deep); }
.general-faq-item summary { padding: 22px 26px; font-family: 'Bricolage Grotesque', sans-serif; font-size: 17px; font-weight: 700; color: var(--green-ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; letter-spacing: -0.01em; }
.general-faq-item summary::-webkit-details-marker { display: none; }
.general-faq-item summary svg { width: 22px; height: 22px; color: var(--ink-3); flex-shrink: 0; transition: transform 0.2s; }
.general-faq-item[open] summary svg { transform: rotate(180deg); color: var(--green-deep); }
.general-faq-item summary:hover { background: rgba(31,95,63,0.04); }
.general-faq-a { padding: 0 26px 24px; font-size: 15px; color: var(--ink-3); font-weight: 500; line-height: 1.65; }
.general-faq-a a { color: var(--green-deep); font-weight: 700; text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.general-faq-cta { max-width: 880px; margin: 40px auto 0; padding: 32px 40px; background: var(--green-soft); border-radius: var(--r-lg); display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.general-faq-cta h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 800; color: var(--green-ink); margin: 0 0 4px; letter-spacing: -0.015em; }
.general-faq-cta p { font-size: 14px; color: var(--ink-3); font-weight: 500; margin: 0; }
.general-faq-cta-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.general-faq-cta-actions .btn-primary { background: var(--green-deep); color: var(--paper); padding: 14px 22px; border-radius: var(--r-pill); font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 14.5px; text-decoration: none; letter-spacing: -0.005em; transition: background 0.15s; }
.general-faq-cta-actions .btn-primary:hover { background: var(--green-ink); }
.general-faq-cta-actions .btn-secondary { color: var(--green-deep); font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 800; text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; }
.general-faq-cta-actions .btn-secondary:hover { color: var(--green-ink); }

@media (max-width: 720px) {
  .general-faq { padding: 56px 0; }
  .general-faq-head h2 { font-size: 30px; }
  .general-faq-head p { font-size: 14.5px; }
  .general-faq-item summary { padding: 18px 20px; font-size: 15px; gap: 12px; }
  .general-faq-item summary svg { width: 18px; height: 18px; }
  .general-faq-a { padding: 0 20px 20px; font-size: 14px; }
  .general-faq-cta { padding: 24px 22px; flex-direction: column; align-items: flex-start; text-align: left; gap: 16px; }
  .general-faq-cta h3 { font-size: 18px; }
  .general-faq-cta-actions { width: 100%; }
  .general-faq-cta-actions .btn-primary { flex: 1; text-align: center; }
}


/* ===== Mobile QA polish (global) ===== */
@media (max-width: 720px) {
  /* Reduce overshoot on huge headlines */
  h1 { font-size: clamp(32px, 8vw, 48px) !important; line-height: 1.05 !important; }
  h2 { font-size: clamp(26px, 6.5vw, 36px) !important; line-height: 1.1 !important; }

  /* Container side-padding */
  .container { padding-left: 18px !important; padding-right: 18px !important; }

  /* Buttons → comfortable tap targets */
  .btn-primary, .btn-secondary, .cta-primary, .cta-secondary { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }

  /* Sticky elements stack */
  .pdp-sticky, .sticky-cart { padding: 14px 16px !important; }

  /* Prevent horizontal scroll */
  body { overflow-x: hidden; }
  img, video { max-width: 100%; height: auto; }

  /* Quiz banner narrower */
  .quiz-banner-cta { width: 100%; justify-content: center; }
  .quiz-banner-meta { flex-direction: column; gap: 10px !important; align-items: flex-start; }

  /* Footer columns stack neatly */
  .footer-grid { gap: 28px !important; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; text-align: left; }
  .footer-pay { flex-wrap: wrap; }

  /* Cart actions */
  .cart-totals, .cart-summary { padding: 22px !important; }

  /* Mixture rates, readable on mobile */
  .pdp-mix-prod { grid-template-columns: 64px 1fr; gap: 12px; padding: 14px; }
  .pdp-mix-prod-img { width: 64px; }
  .pdp-mix-prod-name { font-size: 15px; }

  /* Mobile nav drawer should fill comfortably */
  .md-panel { width: min(88vw, 380px) !important; }
}

@media (max-width: 480px) {
  .container { padding-left: 16px !important; padding-right: 16px !important; }
  .nav-actions .icon-btn { width: 40px !important; height: 40px !important; }
}

/* ===== Very small screens, 320 / 375 hardening (global) ===== */
@media (max-width: 400px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  .container { padding-left: 14px !important; padding-right: 14px !important; }

  /* Type doesn't overshoot tiny viewports */
  h1 { font-size: clamp(28px, 8.4vw, 40px) !important; }
  h2 { font-size: clamp(23px, 6.6vw, 30px) !important; }
  .section-head { margin-bottom: 28px !important; }
  section { padding: 52px 0; }

  /* USP tiles stay roomy */
  .usp { padding: 14px 14px; gap: 13px; }
  .usp-icon { width: 46px; height: 46px; }
  .usp-icon svg { width: 23px; height: 23px; }
  .usp-title { font-size: 15px; }

  /* Stacked CTAs full width, never overflow */
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn,
  .sf-ctas .btn,
  .cta-grid .btn,
  .btn-lg { width: 100%; justify-content: center; }

  /* Promo bar: hide the extra items, keep it from wrapping awkwardly */
  .promo-items .promo-item:nth-child(n+2) { display: none; }
  .promo-right .lang { display: none; }

  /* Grids that might still be multi-col collapse to one */
  .cats, .pillars, .product-grid, .contact-cards { grid-template-columns: 1fr !important; }

  /* Finder chips wrap cleanly */
  .finder-q { flex-wrap: wrap; gap: 8px; }

  /* Newsletter / boxes padding */
  .nl-wrap { padding: 26px !important; }
  .soil-cta-box, .seasons-foot { padding: 22px !important; }
}



/* ===== Pill / chip / tag lift, subtle raise so they aren't flat ===== */
.chip,
.sr-bar-flag,
.group-tag { box-shadow: var(--pill-shadow); }
.product-tag,
.scb-tag { box-shadow: var(--pill-shadow-dark); }


/* ===== Remove dash-eyebrow labels above headings (site-wide) ===== */
.kicker { display: none !important; }

/* ===== Finale: combined CTA + newsletter band ===== */
.finale { position: relative; background: var(--green-ink); color: var(--paper); padding: 96px 0; overflow: hidden; }
.finale-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(110% 80% at 92% 4%, rgba(201,169,97,0.11) 0%, transparent 58%); }
.finale .container { position: relative; z-index: 1; }
.finale-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: start; }
.finale-eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.finale-eyebrow .dash { width: 28px; height: 2px; background: var(--gold); }
.finale h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(34px, 4.4vw, 52px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.0; color: #fff; margin: 0 0 16px; }
.finale h2 .accent { color: var(--gold); font-style: italic; font-family: 'Instrument Serif', serif; font-weight: 400; }
.finale-lead p { font-size: 17px; line-height: 1.6; color: rgba(247,244,236,0.85); max-width: 520px; margin: 0 0 28px; font-weight: 500; }
.finale-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.finale-link { color: #fff; font-weight: 700; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 2px; }
.finale-link:hover { color: var(--gold); border-color: var(--gold); }
.finale-signup { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: 0 30px 70px -28px rgba(0,0,0,0.6); }
.finale-signup-h { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 800; color: var(--green-ink); margin-bottom: 16px; letter-spacing: -0.01em; }
.finale-signup-h .accent { color: var(--gold-deep); }
.finale-signup-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 14px; }
.finale-signup-eyebrow svg { width: 16px; height: 16px; }
.finale-signup-sub { font-size: 14px; line-height: 1.5; color: var(--ink-2); font-weight: 500; margin: 0 0 18px; }
.finale-form { display: flex; gap: 8px; }
.finale-form input { flex: 1; min-width: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px 16px; font-size: 15px; font-family: inherit; color: var(--ink); }
.finale-form input:focus { outline: 2px solid var(--gold); border-color: transparent; }
.finale-form button { flex-shrink: 0; background: var(--gold); color: var(--green-ink); border: 0; border-radius: var(--r-sm); padding: 0 18px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 15px; display: inline-flex; align-items: center; gap: 7px; cursor: pointer; transition: background 0.15s ease; }
.finale-form button:hover { background: var(--gold-deep); color: #fff; }
.finale-features { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 10px; }
.finale-features li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.finale-features svg { width: 16px; height: 16px; color: var(--green-deep); flex-shrink: 0; }
.finale-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.16); }
.finale-stat b { font-family: 'Bricolage Grotesque', sans-serif; font-size: 42px; font-weight: 800; letter-spacing: -0.04em; color: #fff; display: block; line-height: 1; }
.finale-stat b .accent { color: var(--gold); display: inline !important; font-size: 0.5em; font-style: normal; letter-spacing: 0; }
.finale-stat span { font-size: 13px; font-weight: 600; color: rgba(247,244,236,0.7); margin-top: 9px; display: block; }
@media (max-width: 900px) { .finale-grid { grid-template-columns: 1fr; gap: 36px; } .finale-stats { grid-template-columns: 1fr 1fr; gap: 22px; } .finale { padding: 64px 0; } }
@media (max-width: 480px) { .finale-form { flex-direction: column; } .finale-form button { justify-content: center; padding: 13px; } }


/* ===== Add-to-cart toast + button feedback ===== */
.fi-toast {
  position: fixed; right: 22px; bottom: 22px; z-index: 9999;
  display: flex; align-items: center; gap: 12px;
  background: var(--green-ink); color: var(--paper);
  padding: 14px 16px; border-radius: var(--r-md);
  box-shadow: 0 20px 50px -16px rgba(14,59,39,0.6);
  font-size: 14px; font-weight: 600; max-width: min(92vw, 360px);
  transform: translateY(140%); opacity: 0;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), opacity 0.3s ease;
  pointer-events: none;
}
.fi-toast.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.fi-toast strong { color: #fff; font-weight: 800; }
.fi-toast-ic { width: 28px; height: 28px; border-radius: 50%; background: var(--gold); color: var(--green-ink); display: grid; place-items: center; flex-shrink: 0; }
.fi-toast-ic svg { width: 16px; height: 16px; }
.fi-toast-link { margin-left: auto; color: var(--gold); font-weight: 800; white-space: nowrap; padding-left: 8px; }
.fi-toast-link:hover { text-decoration: underline; }
.product-add.is-added, .cart-cross-add.is-added, [data-add-to-cart].is-added { background: var(--gold) !important; color: var(--green-ink) !important; }
@media (max-width: 480px) { .fi-toast { left: 14px; right: 14px; bottom: 14px; max-width: none; } }


/* ===== Seasons v4 — product-icon cards (no season photos) ===== */
.calendar { grid-template-columns: repeat(4, 1fr) !important; gap: 20px !important; }
.season-card {
  position: relative;
  padding: 0 !important;
  gap: 0 !important;
  border-radius: var(--r-lg) !important;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green-deep);
  background: var(--white);
  display: flex !important;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(14,59,39,0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.season-card::after { display: none; }
.season-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -26px rgba(14,59,39,0.5); }
.s-spring { border-top-color: #4FA876; }
.s-summer { border-top-color: #E0A53A; }
.s-autumn { border-top-color: #C2703F; }
.s-winter { border-top-color: #5F8FA0; }

.season-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; padding: 22px 22px 0;
}
.season-top > div:first-child { flex: 1; min-width: 0; }
.season-mo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--ink-3); text-transform: uppercase; margin-bottom: 9px; white-space: nowrap;
}
.season-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 27px !important; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1 !important;
  margin: 0 0 5px !important; color: var(--green-ink);
}
.season-task { font-size: 13.5px !important; font-weight: 700; color: var(--green-deep); margin: 0 !important; }
.season-glyph {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--r-sm);
  display: grid; place-items: center;
}
.s-spring .season-glyph { background: #E7F3EA; color: #2A7A52; }
.s-summer .season-glyph { background: #FBF0D6; color: #B5821F; }
.s-autumn .season-glyph { background: #F7E6D8; color: #B05F33; }
.s-winter .season-glyph { background: #E6EFF2; color: #4E7A8C; }
.season-glyph svg { width: 24px; height: 24px; }

.season-temp-row {
  display: flex; align-items: center; gap: 9px;
  padding: 14px 22px 0; min-width: 0;
}
.season-temp-inline {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700;
  color: var(--green-ink); background: var(--paper);
  border: 1px solid var(--line); padding: 4px 9px; border-radius: var(--r-pill);
  box-shadow: var(--pill-shadow); white-space: nowrap; flex-shrink: 0;
}
.season-temp-note { font-size: 11.5px; color: var(--ink-3); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.season-products {
  display: flex; flex-direction: column; gap: 8px;
  padding: 16px 22px 0; margin-top: 2px;
}
.season-products-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3); padding: 0 22px; margin-top: 18px;
}
.season-product {
  display: flex; align-items: center; gap: 11px;
  padding: 8px; border: 1px solid var(--line);
  border-radius: var(--r-sm); background: var(--paper);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.season-card:hover .season-product { background: var(--white); }
.season-product:hover { border-color: rgba(31,95,63,0.35); }
.season-product img {
  width: 38px; height: 38px; border-radius: var(--r-xs);
  object-fit: cover; flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(14,59,39,0.14);
}
.season-product > div { min-width: 0; }
.season-product .sp-name { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.season-product .sp-role { font-size: 11px; font-weight: 600; color: var(--ink-3); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.season-cta {
  margin-top: auto; padding: 18px 22px 22px !important;
  font-size: 13.5px !important; font-weight: 800;
  display: inline-flex; align-items: center; gap: 6px; color: var(--green-deep);
}
.season-card:hover .season-cta { gap: 9px; }

@media (max-width: 1100px) { .calendar { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 560px) {
  .calendar { grid-template-columns: 1fr !important; gap: 14px !important; }
  .season-card { flex-direction: column; }
}


/* ===== Seasons v5 — bigger editorial cards, background-free icons ===== */
.calendar { grid-template-columns: repeat(2, 1fr) !important; gap: 22px !important; }
.season-card {
  display: grid !important;
  grid-template-columns: 1.02fr 1fr;
  flex-direction: unset !important;
  border-radius: var(--r-xl) !important;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green-deep);
  background: var(--white);
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 1px 2px rgba(14,59,39,0.05);
  transition: transform 0.28s cubic-bezier(.2,.7,.3,1), box-shadow 0.28s ease;
}
.season-card:hover { transform: translateY(-5px); box-shadow: 0 32px 60px -34px rgba(14,59,39,0.55); }

/* identity side */
.season-id {
  padding: 34px 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 28px;
}
.season-glyph {
  background: none !important;
  width: auto !important; height: auto !important;
  border-radius: 0 !important;
  display: block !important;
  line-height: 0;
  transition: transform 0.35s cubic-bezier(.2,.7,.3,1);
}
.season-glyph svg { width: 68px !important; height: 68px !important; }
.season-card:hover .season-glyph { transform: scale(1.08) rotate(-4deg); }
.s-spring .season-glyph { color: #2E9460; }
.s-summer .season-glyph { color: #E0A53A; }
.s-autumn .season-glyph { color: #C2703F; }
.s-winter .season-glyph { color: #5F8FA0; }
.season-id-text { display: flex; flex-direction: column; }
.season-mo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px !important; font-weight: 700; letter-spacing: 0.08em;
  color: var(--ink-3); text-transform: uppercase; margin: 0 0 8px !important; white-space: nowrap;
}
.season-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 40px !important; font-weight: 800;
  letter-spacing: -0.03em; line-height: 0.95 !important;
  margin: 0 0 8px !important; color: var(--green-ink);
}
.season-task { font-size: 15px !important; font-weight: 700; color: var(--green-deep); margin: 0 !important; }
.season-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 16px; }
.season-temp-inline {
  font-family: 'JetBrains Mono', monospace; font-size: 11.5px; font-weight: 700;
  color: var(--green-ink); background: var(--paper);
  border: 1px solid var(--line); padding: 5px 10px; border-radius: var(--r-pill);
  box-shadow: var(--pill-shadow); white-space: nowrap;
}
.season-temp-note { font-size: 12px; color: var(--ink-3); font-weight: 600; white-space: normal; overflow: visible; text-overflow: clip; }

/* program side */
.season-program {
  padding: 34px 32px;
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.s-spring .season-program { background: linear-gradient(180deg, #F2F8EF 0%, #FBFCF9 100%); }
.s-summer .season-program { background: linear-gradient(180deg, #FCF6E6 0%, #FDFBF4 100%); }
.s-autumn .season-program { background: linear-gradient(180deg, #FBEFE6 0%, #FDFAF6 100%); }
.s-winter .season-program { background: linear-gradient(180deg, #EFF4F6 0%, #FAFCFC 100%); }
.season-products-label {
  font-size: 10.5px !important; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); padding: 0 !important; margin: 0 0 14px !important;
}
.season-products { display: flex; flex-direction: column; gap: 10px; padding: 0 !important; margin: 0 !important; }
.season-product {
  display: flex; align-items: center; gap: 13px;
  padding: 11px; border: 1px solid var(--line);
  border-radius: var(--r-md); background: var(--white);
  box-shadow: 0 1px 2px rgba(14,59,39,0.04);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.season-product:hover { transform: translateX(3px); border-color: rgba(31,95,63,0.4); box-shadow: 0 8px 20px -12px rgba(14,59,39,0.4); }
.season-product img {
  width: 52px !important; height: 52px !important; border-radius: var(--r-sm);
  object-fit: cover; flex-shrink: 0; box-shadow: 0 2px 6px rgba(14,59,39,0.18);
}
.season-product .sp-text { min-width: 0; }
.season-product .sp-name { font-size: 14.5px !important; font-weight: 800; color: var(--green-ink); line-height: 1.15; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.season-product .sp-role { font-size: 12px !important; font-weight: 600; color: var(--ink-3); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.season-cta {
  margin-top: auto; padding: 18px 0 0 !important;
  font-size: 14px !important; font-weight: 800;
  display: inline-flex; align-items: center; gap: 7px; color: var(--green-deep);
}
.season-card:hover .season-cta { gap: 11px; }

@media (max-width: 1100px) { .calendar { grid-template-columns: 1fr !important; } }
@media (max-width: 620px) {
  .season-card { grid-template-columns: 1fr; min-height: 0; }
  .season-id { gap: 22px; padding: 26px 24px; }
  .season-glyph svg { width: 56px !important; height: 56px !important; }
  .season-card h3 { font-size: 34px !important; }
  .season-program { border-left: none; border-top: 1px solid var(--line); padding: 24px; }
}

/* =========================================================
   DEPTH PASS — resting shadows site-wide + lit dark panels
   Layered, low-opacity shadows so light surfaces read raised
   off the paper background instead of flat. Hover rules
   (higher specificity) still take over on interaction.
   ========================================================= */
.review-card,
.product-card,
.pillar,
.usp,
.finder,
.group-head,
.season-card,
.blog-card,
.blog-feature,
.contact-card,
.c-channel,
.c-form-card,
.c-faq-item,
.rv-summary,
.rv-item,
.soil-trust,
.seasons-foot,
.cart-summary-card {
  box-shadow:
    0 1px 2px rgba(14,59,39,0.05),
    0 14px 32px -24px rgba(14,59,39,0.40);
}

/* Floating dark panels: lit top edge + deeper drop for real depth */
.soil-cta-box,
.nl-wrap,
.finale-signup,
.stats {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 2px 8px -4px rgba(14,59,39,0.30),
    0 34px 70px -34px rgba(14,59,39,0.55);
}

/* Section seams: a hairline + soft drop where light bands meet paper,
   adds gentle depth between full-bleed sections across every page. */
.usps {
  box-shadow: 0 18px 40px -34px rgba(14,59,39,0.5);
}