/* =========================================================================
   solverraholistics.com -- Homepage stylesheet
   Cannabis flagship ("Amazon of cannabis"). Tokens are loaded VERBATIM from
   design-system/solverra-holistics-design-system/project/colors_and_type.css.
   No hardcoded random hex below the :root token block -- everything consumes
   var(--*). ASCII-only. Straight quotes + hyphens only (no smart quotes /
   em-dashes) per the .com ad-safety + ASCII-clean build rule.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. DESIGN TOKENS (source of truth -- do not edit here; mirror upstream)
   ------------------------------------------------------------------------- */
:root {
  /* BRAND PALETTE -- Solverra primaries */
  --sol-lime:        #8CC63F;   /* primary brand, highlight only            */
  --sol-lime-bright: #A4DC56;   /* hover / lifted                            */
  --sol-lime-deep:   #6FA82A;   /* press / light-on-light edges              */
  --sol-lime-fog:    #E7F4D2;   /* tinted backgrounds, chips, hover bg       */
  --sol-lime-mist:   #F4FAE8;   /* whisper-quiet section wash                */

  --sol-forest:      #314426;   /* primary dark                              */
  --sol-forest-deep: #1F2C17;   /* near-black body type on light             */
  --sol-forest-mid:  #4D6A3C;   /* secondary dark                            */
  --sol-forest-soft: #7E9B6A;   /* muted forest                              */

  --sol-charcoal:    #606061;   /* logo outline gray                         */
  --sol-charcoal-2:  #8A8A8C;   /* secondary body / metadata                 */
  --sol-charcoal-3:  #BFBFC0;   /* dividers, disabled                        */

  /* Earth / supporting tones */
  --sol-bone:        #F6F4EC;   /* warm off-white page background             */
  --sol-paper:       #FBFAF4;   /* slightly cooler off-white                  */
  --sol-cream:       #EDE7D3;   /* warm tinted band / hemp paper              */
  --sol-clay:        #C9A36A;   /* mushroom/earth accent (sparingly)          */
  --sol-bark:        #5A4632;   /* deep earth accent                          */

  /* Semantic status */
  --sol-success: #6FA82A;
  --sol-warning: #D9A441;
  --sol-danger:  #B0432A;
  --sol-info:    #4D6A3C;

  /* SEMANTIC TOKENS -- light surface defaults */
  --bg:        var(--sol-bone);
  --bg-elev:   #FFFFFF;
  --bg-sunken: #EFEBDF;
  --bg-band:   var(--sol-forest);
  --bg-tint:   var(--sol-lime-mist);

  --fg:        var(--sol-forest-deep);
  --fg-2:      var(--sol-charcoal);
  --fg-3:      var(--sol-charcoal-2);
  --fg-mute:   var(--sol-charcoal-3);
  --fg-on-dark:#F6F4EC;
  --fg-accent: var(--sol-forest);

  --brand:     var(--sol-lime);
  --brand-fg:  var(--sol-forest-deep);  /* text ON lime -- never white */
  --brand-ink: var(--sol-forest);

  --border:        rgba(31, 44, 23, 0.12);
  --border-strong: rgba(31, 44, 23, 0.22);
  --border-on-dark: rgba(246, 244, 236, 0.16);

  /* TYPOGRAPHY */
  --ff-display: "League Spartan", "Bebas Neue", system-ui, sans-serif;
  --ff-body:    "Manrope", system-ui, sans-serif;
  --ff-serif:   "Fraunces", "Cormorant Garamond", Georgia, serif;
  --ff-mono:    ui-monospace, SFMono-Regular, "Roboto Mono", Menlo, monospace;

  --fs-2xs: 11px;
  --fs-xs:  12px;
  --fs-sm:  14px;
  --fs-md:  16px;
  --fs-lg:  18px;
  --fs-xl:  22px;
  --fs-2xl: 28px;
  --fs-3xl: 36px;
  --fs-4xl: 48px;
  --fs-5xl: 64px;
  --fs-6xl: 88px;
  --fs-7xl: 120px;

  --lh-tight: 0.95;
  --lh-snug:  1.12;
  --lh-base:  1.55;
  --lh-loose: 1.7;

  --ls-display: -0.02em;
  --ls-eyebrow: 0.16em;
  --ls-caps:    0.08em;

  /* SPACING -- 4pt rhythm */
  --s-0:  0;
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  24px;
  --s-6:  32px;
  --s-7:  48px;
  --s-8:  64px;
  --s-9:  96px;
  --s-10: 128px;

  /* RADII */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 40px;
  --r-pill: 999px;

  /* ELEVATION */
  --shadow-0: none;
  --shadow-1: 0 1px 2px rgba(31, 44, 23, 0.06), 0 1px 1px rgba(31, 44, 23, 0.04);
  --shadow-2: 0 4px 14px rgba(31, 44, 23, 0.08), 0 1px 2px rgba(31, 44, 23, 0.05);
  --shadow-3: 0 14px 32px rgba(31, 44, 23, 0.12), 0 2px 6px rgba(31, 44, 23, 0.06);
  --shadow-lime: 0 8px 24px rgba(140, 198, 63, 0.32);

  /* Borders */
  --bw-hair: 1px;
  --bw-line: 1.5px;
  --bw-edge: 2px;

  /* Motion */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-1: 120ms;
  --dur-2: 220ms;
  --dur-3: 360ms;

  --container: 1200px;
  --container-wide: 1360px;
}

/* -------------------------------------------------------------------------
   2. RESET + BASE
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  line-height: var(--lh-base);
  color: var(--fg);
  background: var(--bg);
  font-feature-settings: "ss01", "kern";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

/* Headlines -- display family, uppercase, punchy */
h1, .h1 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, var(--fs-6xl));
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  color: var(--fg);
  margin: 0 0 var(--s-5);
  text-transform: uppercase;
}
h2, .h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, var(--fs-4xl));
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-display);
  color: var(--fg);
  margin: 0 0 var(--s-4);
  text-transform: uppercase;
}
h3, .h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-2xl);
  line-height: var(--lh-snug);
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0 0 var(--s-3);
  text-transform: uppercase;
}
h4, .h4 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
  color: var(--fg);
  margin: 0 0 var(--s-3);
}

.eyebrow {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--sol-forest-mid);
  margin: 0 0 var(--s-3);
}

p {
  margin: 0 0 var(--s-4);
  font-size: var(--fs-md);
  line-height: var(--lh-base);
  color: var(--fg);
  text-wrap: pretty;
}
.lead {
  font-size: var(--fs-xl);
  line-height: 1.45;
  color: var(--fg);
  max-width: 60ch;
}
.meta, small {
  font-size: var(--fs-sm);
  color: var(--fg-2);
}

.editorial {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-style: italic;
  font-size: var(--fs-2xl);
  line-height: 1.35;
  color: var(--sol-forest);
}

a {
  color: var(--sol-forest);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  text-decoration-color: var(--sol-lime);
  transition: color var(--dur-1) var(--ease-out), text-decoration-color var(--dur-1) var(--ease-out);
}
a:hover {
  color: var(--sol-forest-deep);
  text-decoration-color: var(--sol-lime-deep);
}

:focus-visible {
  outline: var(--bw-edge) solid var(--sol-lime);
  outline-offset: 2px;
  border-radius: var(--r-xs);
}

/* Accessibility: skip link + visually-hidden */
.skip-link {
  position: absolute;
  left: var(--s-4);
  top: -120px;
  z-index: 200;
  background: var(--sol-forest);
  color: var(--fg-on-dark);
  padding: var(--s-3) var(--s-5);
  border-radius: var(--r-sm);
  text-decoration: none;
  font-weight: 700;
  transition: top var(--dur-2) var(--ease-out);
}
.skip-link:focus { top: var(--s-4); color: var(--fg-on-dark); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* -------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-5);
}
.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--s-5);
}

.section {
  padding-block: var(--s-9);
}
@media (max-width: 768px) {
  .section { padding-block: var(--s-7); }
}

.section--bone   { background: var(--sol-bone); }
.section--paper  { background: var(--sol-paper); }
.section--cream  { background: var(--sol-cream); }
.section--tint   { background: var(--sol-lime-mist); }
.section--forest { background: var(--bg-band); color: var(--fg-on-dark); }

.section--forest h1, .section--forest h2, .section--forest h3,
.section--forest h4, .section--forest p { color: var(--fg-on-dark); }
.section--forest .eyebrow { color: var(--sol-lime); }
.section--forest a { color: var(--sol-lime); text-decoration-color: rgba(140, 198, 63, 0.5); }

.section-head { max-width: 720px; margin-bottom: var(--s-7); }
.section-head--center { margin-inline: auto; text-align: center; }

/* -------------------------------------------------------------------------
   4. BUTTONS
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: var(--fs-md);
  line-height: 1;
  padding: var(--s-4) var(--s-6);
  min-height: 48px;            /* WCAG 2.2 target size (AA 24px; we exceed) */
  border: var(--bw-edge) solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
  transition: background var(--dur-1) var(--ease-out),
              color var(--dur-1) var(--ease-out),
              box-shadow var(--dur-2) var(--ease-out),
              transform var(--dur-1) var(--ease-out);
}
.btn--primary {
  background: var(--sol-lime);
  color: var(--brand-fg);            /* forest on lime -- never white */
  box-shadow: var(--shadow-lime);
}
.btn--primary:hover { background: var(--sol-lime-bright); color: var(--brand-fg); }
.btn--primary:active { background: var(--sol-lime-deep); transform: translateY(1px); }

.btn--secondary {
  background: transparent;
  color: var(--sol-forest);
  border-color: var(--sol-forest);
}
.btn--secondary:hover { background: var(--sol-forest); color: var(--fg-on-dark); }
.btn--secondary:active { transform: translateY(1px); }

.btn--on-dark {
  background: var(--sol-lime);
  color: var(--brand-fg);
}
.btn--on-dark:hover { background: var(--sol-lime-bright); }

.btn--ghost-on-dark {
  background: transparent;
  color: var(--fg-on-dark);
  border-color: var(--border-on-dark);
}
.btn--ghost-on-dark:hover { background: rgba(246, 244, 236, 0.10); }

.btn--full { width: 100%; }

/* -------------------------------------------------------------------------
   5. TOP UTILITY BAR + HEADER
   ------------------------------------------------------------------------- */
.topbar {
  background: var(--sol-forest);
  color: var(--fg-on-dark);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
  flex-wrap: wrap;
  padding-block: var(--s-2);
  text-align: center;
}
.topbar__item { display: inline-flex; align-items: center; gap: var(--s-2); white-space: nowrap; }
.topbar a { color: var(--sol-lime); text-decoration-color: rgba(140, 198, 63, 0.5); }
@media (max-width: 640px) {
  .topbar__item:not(.topbar__item--age) { display: none; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 236, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: var(--bw-hair) solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  min-height: 72px;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
  font-family: var(--ff-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--ls-display);
  font-size: var(--fs-xl);
}
.brand-lockup .sol { color: var(--sol-lime); }
.brand-lockup .verra { color: var(--sol-forest); }
.brand-lockup__mark { width: 36px; height: 36px; }

.primary-nav { display: flex; gap: var(--s-6); }
.primary-nav a {
  font-weight: 600;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
  text-decoration: none;
  color: var(--sol-forest);
  padding-block: var(--s-2);
}
.primary-nav a:hover { color: var(--sol-lime-deep); }

.header-actions { display: flex; align-items: center; gap: var(--s-3); }
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: var(--bw-hair) solid var(--border);
  border-radius: var(--r-pill);
  background: var(--bg-elev);
  color: var(--sol-forest);
  text-decoration: none;
}
.icon-btn:hover { border-color: var(--border-strong); color: var(--sol-forest); }

.nav-toggle { display: none; }

@media (max-width: 960px) {
  .primary-nav { display: none; }
  .nav-toggle {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border: var(--bw-hair) solid var(--border);
    border-radius: var(--r-pill);
    background: var(--bg-elev);
    cursor: pointer;
  }
  .header-cta { display: none; }
}

/* -------------------------------------------------------------------------
   6. HERO
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--s-9);
  background: var(--sol-bone);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.hero__content { display: grid; gap: var(--s-5); align-content: center; }
.hero h1 {
  font-size: clamp(40px, 7vw, var(--fs-6xl));
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  margin: 0;
}
.hero h1 .accent { color: var(--sol-lime); }
.hero__lead { max-width: 56ch; margin: 0; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  margin-top: var(--s-2);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--sol-forest-mid);
  list-style: none;
  padding: 0;
}
.hero__trust li { display: inline-flex; align-items: center; gap: var(--s-2); }
.hero__trust li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: var(--r-pill);
  background: var(--sol-lime);
  flex: none;
}

.hero__media { position: relative; }
.hero__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-3);
  background: var(--bg-sunken);
}
.hero__badge {
  position: absolute;
  left: calc(-1 * var(--s-5));
  bottom: var(--s-7);
  background: var(--bg-elev);
  border: var(--bw-hair) solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  padding: var(--s-4) var(--s-5);
  max-width: 230px;
}
.hero__badge .num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: var(--fs-3xl);
  color: var(--sol-lime-deep);
  line-height: 1;
}
.hero__badge .label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
  color: var(--fg-2);
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .hero__media { order: -1; }
  .hero__badge { left: var(--s-4); bottom: var(--s-4); }
}

/* -------------------------------------------------------------------------
   7. LIVE COUNTER BAND (forest invert)
   ------------------------------------------------------------------------- */
.counter-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  text-align: center;
}
.counter-stat .num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, var(--fs-5xl));
  line-height: 1;
  color: var(--sol-lime);
}
.counter-stat .label {
  display: block;
  margin-top: var(--s-3);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--fg-on-dark);
}
@media (max-width: 700px) {
  .counter-band__grid { grid-template-columns: 1fr; gap: var(--s-7); }
}

/* -------------------------------------------------------------------------
   8. SHOP BY CATEGORY
   ------------------------------------------------------------------------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-4);
}
.cat-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
  padding: var(--s-5);
  border-radius: var(--r-lg);
  background: var(--bg-elev);
  border: var(--bw-hair) solid var(--border);
  text-decoration: none;
  color: var(--sol-forest);
  transition: box-shadow var(--dur-2) var(--ease-out), transform var(--dur-1) var(--ease-out);
}
.cat-card:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); color: var(--sol-forest); }
.cat-card__icon { width: 32px; height: 32px; margin-bottom: auto; color: var(--sol-lime-deep); }
.cat-card__name {
  font-family: var(--ff-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--fs-lg);
  letter-spacing: -0.01em;
  margin-top: var(--s-4);
}
.cat-card__count { font-size: var(--fs-xs); color: var(--fg-2); }

/* Category tile image (cutover): cover the card, text sits over a forest scrim
   so the names/counts stay legible on top of the photo. */
.cat-card { position: relative; overflow: hidden; min-height: 200px; }
.cat-card__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(31, 44, 23, 0.05) 0%, rgba(31, 44, 23, 0.20) 45%, rgba(31, 44, 23, 0.82) 100%);
}
.cat-card .cat-card__name,
.cat-card .cat-card__count { position: relative; z-index: 2; }
.cat-card .cat-card__name { color: var(--fg-on-dark); }
.cat-card .cat-card__count { color: rgba(246, 244, 236, 0.82); }
.cat-card:hover { color: var(--fg-on-dark); }

@media (max-width: 1024px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* -------------------------------------------------------------------------
   9. COA-VERIFIED TRUST STRIP
   ------------------------------------------------------------------------- */
.coa-strip__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.coa-steps { list-style: none; padding: 0; margin: var(--s-5) 0 0; display: grid; gap: var(--s-4); }
.coa-steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--s-4);
  align-items: start;
}
.coa-steps .step-n {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  background: var(--sol-lime-fog);
  color: var(--sol-forest);
  font-family: var(--ff-display);
  font-weight: 800;
}
.coa-lookup {
  background: var(--bg-elev);
  border: var(--bw-hair) solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-2);
  padding: var(--s-7);
}
.coa-lookup label {
  display: block;
  font-weight: 700;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
  margin-bottom: var(--s-3);
}
.coa-lookup__row { display: flex; gap: var(--s-3); }
.field {
  flex: 1;
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  padding: var(--s-4);
  min-height: 48px;
  border: var(--bw-line) solid var(--border-strong);
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--fg);
}
.field:focus-visible { outline: var(--bw-edge) solid var(--sol-lime); outline-offset: 1px; }
.coa-badge {
  display: inline-flex;
  align-items: center; gap: var(--s-2);
  margin-top: var(--s-5);
  padding: var(--s-2) var(--s-4);
  border-radius: var(--r-pill);
  background: var(--sol-lime-fog);
  color: var(--sol-forest);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
}
@media (max-width: 860px) { .coa-strip__inner { grid-template-columns: 1fr; gap: var(--s-6); } }

/* -------------------------------------------------------------------------
   10. PRODUCT GRID (featured / best-sellers)
   ------------------------------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-elev);
  border: var(--bw-hair) solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--dur-2) var(--ease-out), transform var(--dur-1) var(--ease-out);
}
.product-card:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); }
.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-sunken);
}
.product-card__img { width: 100%; height: 100%; object-fit: cover; }
.product-card__brand {
  position: absolute;
  top: var(--s-3); left: var(--s-3);
  font-size: var(--fs-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
  background: rgba(246, 244, 236, 0.92);
  color: var(--sol-forest);
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-pill);
}
.product-card__coa {
  position: absolute;
  top: var(--s-3); right: var(--s-3);
  display: inline-flex; align-items: center; gap: 4px;
  font-size: var(--fs-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
  background: var(--sol-lime);
  color: var(--brand-fg);
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-pill);
}
.product-card__body { display: flex; flex-direction: column; gap: var(--s-2); padding: var(--s-5); flex: 1; }
.product-card__name {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: var(--fs-md);
  line-height: var(--lh-snug);
  color: var(--sol-forest-deep);
  text-decoration: none;
}
.product-card__name:hover { color: var(--sol-lime-deep); }
.product-card__spec { font-size: var(--fs-xs); color: var(--fg-2); }
.product-card__rating { font-size: var(--fs-xs); color: var(--sol-warning); letter-spacing: 1px; }
.product-card__rating .count { color: var(--fg-2); }
.product-card__price { margin-top: auto; display: flex; align-items: baseline; gap: var(--s-2); }
.product-card__price ins { text-decoration: none; font-weight: 800; font-size: var(--fs-lg); color: var(--sol-forest); }
.product-card__price del { color: var(--fg-3); font-size: var(--fs-sm); }
.product-card__price .save {
  font-size: var(--fs-2xs); font-weight: 700; text-transform: uppercase;
  color: var(--sol-lime-deep);
}
.product-card__cta { margin-top: var(--s-4); }
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .product-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------
   11. VALUE PROPS
   ------------------------------------------------------------------------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
}
.value-card { display: grid; gap: var(--s-3); }
.value-card__icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  background: var(--sol-lime-fog);
  color: var(--sol-forest);
}
.value-card h3 { font-size: var(--fs-xl); margin: 0; }
.value-card p { font-size: var(--fs-sm); color: var(--fg-2); margin: 0; }
@media (max-width: 900px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .value-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------
   12. SOCIAL PROOF / REVIEWS
   ------------------------------------------------------------------------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.review-card {
  background: var(--bg-elev);
  border: var(--bw-hair) solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: grid;
  gap: var(--s-3);
}
.review-card__stars { color: var(--sol-warning); letter-spacing: 2px; font-size: var(--fs-md); }
.review-card__quote { font-size: var(--fs-md); color: var(--sol-forest-deep); margin: 0; }
.review-card__author { font-size: var(--fs-sm); font-weight: 700; color: var(--fg-2); margin: 0; }
.review-card__verified {
  font-size: var(--fs-2xs); text-transform: uppercase; letter-spacing: var(--ls-caps);
  color: var(--sol-lime-deep); font-weight: 700;
}
@media (max-width: 880px) { .review-grid { grid-template-columns: 1fr; } }

/* Editorial pull-quote moment */
.editorial-band { text-align: center; }
.editorial-band .editorial { max-width: 28ch; margin-inline: auto; font-size: clamp(28px, 4vw, var(--fs-4xl)); }
.editorial-band .sig { margin-top: var(--s-5); font-size: var(--fs-sm); letter-spacing: var(--ls-caps); text-transform: uppercase; color: var(--sol-forest-mid); }

/* -------------------------------------------------------------------------
   13. EMAIL CAPTURE (solverra-popup style, inline section)
   ------------------------------------------------------------------------- */
.email-capture__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.email-form { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-5); }
.email-form .field { min-width: 220px; }
.email-form__note { font-size: var(--fs-xs); color: var(--fg-2); margin-top: var(--s-3); }
.email-capture .section--forest & { color: var(--fg-on-dark); }
@media (max-width: 820px) { .email-capture__inner { grid-template-columns: 1fr; gap: var(--s-5); } }

/* -------------------------------------------------------------------------
   14. FOOTER
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--sol-forest);
  color: var(--fg-on-dark);
  padding-block: var(--s-9) var(--s-6);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: var(--s-7);
}
.site-footer h2,
.site-footer p,
.site-footer a { color: var(--fg-on-dark); }
.footer-brand p { font-size: var(--fs-sm); color: rgba(246, 244, 236, 0.72); max-width: 30ch; }
.footer-contact { margin-top: var(--s-5); font-size: var(--fs-sm); display: grid; gap: var(--s-2); }
.footer-contact a { color: var(--sol-lime); text-decoration-color: rgba(140, 198, 63, 0.5); }
.footer-col h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-md);
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
  margin: 0 0 var(--s-4);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-3); }
.footer-col a {
  font-size: var(--fs-sm);
  color: rgba(246, 244, 236, 0.82);
  text-decoration: none;
}
.footer-col a:hover { color: var(--sol-lime); }
.footer-bottom {
  margin-top: var(--s-8);
  padding-top: var(--s-5);
  border-top: var(--bw-hair) solid var(--border-on-dark);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: rgba(246, 244, 236, 0.62);
}
.footer-legal { display: flex; gap: var(--s-5); flex-wrap: wrap; }
.footer-legal a { color: rgba(246, 244, 236, 0.82); text-decoration: none; }
.footer-disclaimer {
  margin-top: var(--s-5);
  font-size: var(--fs-2xs);
  line-height: var(--lh-base);
  color: rgba(246, 244, 236, 0.55);
  max-width: 90ch;
}
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------
   15. AGE GATE (21+ aware) -- shown until confirmed; CSS-only default state
   ------------------------------------------------------------------------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-5);
  background: rgba(31, 44, 23, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.age-gate[hidden] { display: none; }
.age-gate__modal {
  background: var(--bg-elev);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-3);
  padding: var(--s-8);
  max-width: 440px;
  width: 100%;
  text-align: center;
}
.age-gate__modal h2 { margin-top: 0; }
.age-gate__actions { display: grid; gap: var(--s-3); margin-top: var(--s-6); }
.age-gate__deny {
  background: none;
  border: none;
  color: var(--fg-2);
  font-size: var(--fs-sm);
  text-decoration: underline;
  cursor: pointer;
}
.age-gate__fine { font-size: var(--fs-xs); color: var(--fg-2); margin-top: var(--s-5); margin-bottom: 0; }
