/* ═══════════════════════════════════════════════════════
   GREEN ALLUVIUM — style.css
   Aesthetic: Botanical Editorial · Dark Forest · Refined
   Fonts: Cormorant Garamond (display) · Helvetica Neue (body)
   ═══════════════════════════════════════════════════════ */

/* ── LOCAL FONTS ────────────────────────────────────── */
@font-face {
  font-family: 'Helvetica Neue';
  src: url('assets/fonts/HelveticaNeue-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('assets/fonts/HelveticaNeue.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('assets/fonts/HelveticaNeue-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('assets/fonts/HelveticaNeue-Bold.otf') format('opentype');
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('assets/fonts/HelveticaNeue-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ── CUSTOM PROPERTIES ─────────────────────────────── */
/* Colors sourced from: plan-doc/color-guide.md        */
/* Palette ref:  brand-color-palette-4-schemes.jpg     */
:root {
  /* 01 · Warm Cream palette */
  --c-cream-lightest: #fff7ee;
  --c-cream-light:    #ffeed6;
  --c-cream-mid:      #eedbc8;
  --c-cream-warm:     #dcb791;

  /* 02 · Olive Green palette */
  --c-olive-mist:    #d9ddc7;
  --c-olive-mid:     #70774b;
  --c-olive-primary: #667915;
  --c-olive-deep:    #404a0f;

  /* 03 · Earth Brown palette */
  --c-earth-light:   #8e6e5e;
  --c-earth-mid:     #693e27;
  --c-earth-taupe:   #645550;
  --c-earth-deep:    #321d16;

  /* 04 · Logo colors */
  --c-logo-olive:    #61612b;
  --c-logo-khaki:    #888860;

  /* ── UI role aliases ───────────────────── */
  --c-bg-page:       var(--c-cream-lightest);
  --c-bg-mist:       var(--c-olive-mist);
  --c-bg-dark:       var(--c-olive-deep);
  --c-bg-footer:     var(--c-earth-deep);

  --c-primary:       var(--c-olive-primary);
  --c-primary-hover: var(--c-olive-deep);
  --c-primary-light: var(--c-olive-mid);

  --c-text:          var(--c-earth-taupe);
  --c-text-mid:      var(--c-earth-light);
  --c-text-heading:  var(--c-olive-deep);
  --c-text-on-dark:  var(--c-cream-lightest);

  /* Utility */
  --c-white:         #ffffff;
  --c-amazon:        #FF9900;

  /* Legacy aliases — keep so existing selectors don't break */
  --c-forest:        var(--c-olive-primary);
  --c-forest-dark:   var(--c-olive-deep);
  --c-forest-deep:   var(--c-olive-deep);
  --c-forest-mid:    var(--c-olive-deep);
  --c-sage:          var(--c-olive-mid);
  --c-sage-light:    var(--c-olive-mist);
  --c-cream:         var(--c-cream-lightest);
  --c-parchment:     var(--c-cream-mid);
  --c-gold:          var(--c-cream-warm);
  --c-gold-light:    var(--c-cream-warm);
  --c-earth:         var(--c-earth-deep);
  --c-mist:          var(--c-olive-mist);
  --c-text-light:    var(--c-earth-light);

  /* Typography */
  --f-display: 'Helvetica Neue', HelveticaNeue, Helvetica, Arial, sans-serif;
  --f-body:    'Helvetica Neue', HelveticaNeue, Helvetica, Arial, sans-serif;

  /* Spacing */
  --sp-xs:   0.5rem;
  --sp-sm:   1rem;
  --sp-md:   2rem;
  --sp-lg:   4rem;
  --sp-xl:   6rem;
  --sp-2xl:  9rem;

  /* Layout */
  --max-w:      1200px;
  --nav-h:      70px;
  --radius-sm:  4px;
  --radius-md:  10px;
  --radius-lg:  16px;

  /* Motion */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background-color: var(--c-cream);
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}

/* ── GRAIN OVERLAY ──────────────────────────────────── */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: overlay;
  overflow: hidden;
}

/* ── LAYOUT CONTAINER ───────────────────────────────── */
.container {
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
}

/* ── SHARED TYPOGRAPHY ──────────────────────────────── */
.label {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: 1rem;
}

.label--light {
  color: rgba(255, 255, 255, 0.5);
}

.heading-lg {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--c-earth);
}

.heading-lg em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-forest);
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-lg);
}

.section-header .label {
  display: block;
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.9rem;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease), background 0.2s;
  white-space: nowrap;
  line-height: 1;
}

.btn--amazon {
  background: var(--c-amazon);
  color: #1A1A00;
  font-weight: 700;
  box-shadow: 0 3px 18px rgba(255, 153, 0, 0.32);
}

.btn--amazon:hover {
  background: #e89000;
  box-shadow: 0 6px 28px rgba(255, 153, 0, 0.46);
  transform: translateY(-2px);
}

.btn--amazon:active {
  transform: translateY(0);
}

.btn--cream {
  background: var(--c-cream);
  color: var(--c-forest-dark);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.14);
}

.btn--cream:hover {
  background: white;
  box-shadow: 0 5px 22px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* ── SCROLL REVEAL ──────────────────────────────────── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll--delay-1 { transition-delay: 0.13s; }
.reveal-on-scroll--delay-2 { transition-delay: 0.26s; }
.reveal-on-scroll--delay-3 { transition-delay: 0.39s; }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 500;
  height: var(--nav-h);
  transition:
    background 0.4s var(--ease),
    backdrop-filter 0.4s,
    box-shadow 0.4s var(--ease);
}

.nav.is-scrolled {
  background: rgba(64, 74, 15, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(64, 74, 15, 0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-display);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: white;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.nav__logo:hover {
  opacity: 0.85;
}

.nav__logo-leaf {
  flex-shrink: 0;
  height: 44px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 0 auto;
}

.nav__link {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-sage-light);
  transition: width 0.28s var(--ease);
}

.nav__link:hover {
  color: rgba(255, 255, 255, 0.95);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.nav__amazon-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--c-amazon);
  color: #1A1A00;
  border-radius: var(--radius-sm);
  box-shadow: 0 3px 18px rgba(255, 153, 0, 0.32);
  transition: background 0.2s, transform 0.2s var(--ease-spring), box-shadow 0.2s;
}

.nav__amazon-btn:hover {
  background: #e89000;
  box-shadow: 0 6px 28px rgba(255, 153, 0, 0.46);
  transform: translateY(-2px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 36px;
  height: 36px;
  padding: 7px;
  flex-shrink: 0;
}

.nav__burger-bar {
  display: block;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: transform 0.32s var(--ease), opacity 0.2s;
}

.nav__burger.is-open .nav__burger-bar:first-child {
  transform: translateY(4.25px) rotate(45deg);
}

.nav__burger.is-open .nav__burger-bar:last-child {
  transform: translateY(-4.25px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--c-olive-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.42s var(--ease);
  overflow: hidden;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.mobile-menu__link {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s;
}

.mobile-menu__link:hover {
  color: var(--c-sage-light);
}

.mobile-menu__deco {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  opacity: 0.5;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 78% 55%, rgba(64, 74, 15, 0.45) 0%, transparent 52%),
    radial-gradient(ellipse at 18% 72%, rgba(40, 48, 8, 0.6) 0%, transparent 45%),
    radial-gradient(ellipse at 45% 20%, rgba(32, 38, 6, 0.42) 0%, transparent 40%),
    linear-gradient(155deg, #1a1e04 0%, #252c06 30%, #2e360a 60%, #404a0f 100%);
}

.hero__art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__art-svg {
  width: 100%;
  height: 100%;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--max-w), 100% - 3rem);
  margin: 0 auto;
  padding-block: calc(var(--nav-h) + 5rem) 6rem;
  max-width: 660px;
  margin-right: auto;
  margin-left: clamp(1.5rem, calc((100vw - var(--max-w)) / 2 + 1.5rem), calc((100vw - var(--max-w)) / 2 + 1.5rem));
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-sage-light);
  margin-bottom: 2rem;
  animation: fadeUp 0.85s var(--ease-out) both;
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-sage-light);
  flex-shrink: 0;
  animation: dotPulse 2.8s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(4.5rem, 13vw, 10rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.035em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.2rem;
  animation: fadeUp 0.95s var(--ease-out) 0.1s both;
}

.hero__title em {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: #ffffff;
  font-size: 0.88em;
  letter-spacing: -0.02em;
}

.tagline-icon {
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  vertical-align: -0.08em;
  flex-shrink: 0;
}

.hero__tagline {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.7;
  letter-spacing: 0.025em;
  margin-bottom: 3rem;
  animation: fadeUp 1.05s var(--ease-out) 0.2s both;
}

.hero__ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.75rem;
  animation: fadeUp 1.05s var(--ease-out) 0.32s both;
}

.hero__ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}

.hero__ghost-link svg {
  transition: transform 0.28s var(--ease);
}

.hero__ghost-link:hover {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero__ghost-link:hover svg {
  transform: translateY(4px);
}

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  animation: fadeUp 1.2s var(--ease-out) 0.55s both;
}

.hero__scroll-bar {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.38));
  animation: scrollBlink 2.2s ease-in-out infinite;
}

@keyframes scrollBlink {
  0%, 100% { opacity: 0.7; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(0.65); }
}

.hero__scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  writing-mode: vertical-rl;
}

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

/* ═══════════════════════════════════════════════════════
   TICKER STRIP
   ═══════════════════════════════════════════════════════ */
.ticker {
  background: var(--c-forest);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 2.2rem;
  animation: tickerScroll 22s linear infinite;
}

.ticker__word {
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-style: italic;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
}

.ticker__dot {
  color: var(--c-sage-light);
  font-size: 0.7rem;
  opacity: 0.7;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   BRAND STORY SECTION
   ═══════════════════════════════════════════════════════ */
.story {
  padding: var(--sp-2xl) 0;
  background: var(--c-cream);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.story__text .heading-lg {
  margin-bottom: 1.75rem;
}

.story__rule {
  width: 3px;
  height: 58px;
  background: linear-gradient(to bottom, var(--c-forest), var(--c-sage));
  border-radius: 2px;
  margin-bottom: 1.75rem;
}

.story__body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--c-text-mid);
  max-width: 44ch;
}

/* Story image frame */
.story__frame {
  position: relative;
}

/* Slider */
.story__slider {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  position: relative;
  width: 100%;
}

.story__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
  pointer-events: none;
}

.story__slide--active {
  opacity: 1;
  pointer-events: auto;
}

.story__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.story__slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.story__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(64, 74, 15, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.story__dot--active {
  background: var(--c-olive-deep);
  transform: scale(1.25);
}

.story__frame-offset {
  position: absolute;
  inset: -18px -18px 18px 18px;
  border: 1.5px solid rgba(42, 82, 41, 0.18);
  border-radius: calc(var(--radius-lg) + 4px);
  z-index: -1;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   PRODUCT HIGHLIGHTS
   ═══════════════════════════════════════════════════════ */
.products {
  padding: var(--sp-2xl) 0;
  background: var(--c-cream-light);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Featured card spans full row, horizontal layout */
.product-card.product-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, var(--c-olive-deep) 0%, #2c3308 100%);
  color: var(--c-cream-lightest);
}

.product-card--featured .product-card__img-wrap {
  aspect-ratio: unset;
  min-height: 380px;
}

.product-card--featured .product-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.75rem;
}

.product-card__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-sage-light);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.35em;
}

.eyebrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
  margin-top: -0.05em;
}

.eyebrow-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card--featured .product-card__name {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--c-cream-lightest);
}

.product-card--featured .product-card__desc {
  color: rgba(255, 247, 238, 0.72);
  max-width: 36ch;
}

.product-card--featured .product-card__link {
  color: var(--c-cream-lightest);
  border-color: rgba(255, 247, 238, 0.35);
  width: fit-content;
}

.product-card--featured .product-card__link:hover {
  background: var(--c-cream-lightest);
  color: var(--c-olive-deep);
  border-color: var(--c-cream-lightest);
}

.product-card {
  background: var(--c-cream-lightest);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(64, 74, 15, 0.05),
    0 8px 24px rgba(64, 74, 15, 0.10),
    0 24px 56px rgba(0, 0, 0, 0.09);
  transition:
    transform 0.35s var(--ease-spring),
    box-shadow 0.35s var(--ease);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 4px 8px rgba(64, 74, 15, 0.07),
    0 16px 40px rgba(64, 74, 15, 0.15),
    0 36px 72px rgba(0, 0, 0, 0.13);
}

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-card__img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.45s var(--ease);
}


.product-card__img--1,
.product-card__img--2,
.product-card__img--3,
.product-card__img--4 {
  background: var(--c-cream-mid);
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease);
}

.product-card:hover .product-card__img img {
  transform: scale(1.04);
}

.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 11px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--c-sage);
  color: white;
  border-radius: 3px;
}

.product-card__badge--new     { background: var(--c-forest); }
.product-card__badge--premium { background: var(--c-gold); }

.product-card__body {
  padding: 1.5rem 1.6rem 1.75rem;
}

.product-card__name {
  font-family: var(--f-display);
  font-size: 1.38rem;
  font-weight: 600;
  color: var(--c-earth);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.product-card__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--c-text-mid);
  margin-bottom: 1.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-forest);
  transition: gap 0.22s var(--ease), color 0.2s;
}

.product-card__link:hover {
  gap: 0.7rem;
  color: var(--c-forest-dark);
}

/* ═══════════════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════════════ */
.why {
  padding: var(--sp-2xl) 0;
  background: var(--c-mist);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.why__pillar {
  text-align: center;
}

.why__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1.4rem;
  color: var(--c-forest);
  transition: transform 0.3s var(--ease-spring);
}

.why__pillar:hover .why__icon {
  transform: scale(1.08) translateY(-2px);
}

.why__icon svg {
  width: 100%;
  height: 100%;
}

.why__lucide-icon {
  display: flex;
  width: 100%;
  height: 100%;
}

.why__lucide-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.why__title {
  font-family: var(--f-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--c-earth);
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}

.why__text {
  font-size: 0.87rem;
  line-height: 1.72;
  color: var(--c-text-mid);
}

/* ═══════════════════════════════════════════════════════
   B2B / WHOLESALE CALLOUT
   ═══════════════════════════════════════════════════════ */
.b2b {
  position: relative;
  padding: var(--sp-2xl) 0;
  background: var(--c-forest-mid);
  overflow: hidden;
}

.b2b__art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.b2b__art svg {
  width: 100%;
  height: 100%;
}

.b2b__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.b2b__heading {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 1.5rem;
}

.b2b__heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-sage-light);
}

.b2b__subtext {
  font-size: 1.05rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.58);
  max-width: 40ch;
  margin: 0 auto 2.8rem;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--c-earth);
  color: rgba(255, 255, 255, 0.55);
}

.footer__rule {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-sage) 30%, var(--c-sage) 70%, transparent);
  opacity: 0.35;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-block: 5rem 4rem;
}

.footer__logo {
  margin-bottom: 1rem;
}

.footer__logo-img {
  height: 48px;
  width: auto;
  opacity: 0.85;
  display: block;
}

.footer__tagline {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.38);
}

.footer__col-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.35rem;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__link {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer__link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer__social-col {
  /* column container */
}

.footer__social-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.5);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer__social-icon:hover {
  border-color: var(--c-sage);
  color: var(--c-sage-light);
  background: rgba(107, 158, 107, 0.1);
}

.footer__legal-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__copy {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 0.4rem;
}

.footer__address {
  font-size: 0.75rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 0.25rem;
  font-style: normal;
}

.footer__email {
  font-size: 0.75rem;
  display: block;
  margin-top: 0.3rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-block: 1.4rem;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.18);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav__links,
  .nav__amazon-btn {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .hero__content {
    max-width: 100%;
    margin-left: auto;
    text-align: left;
  }

  .story__grid {
    gap: var(--sp-lg);
  }

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 700px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 700px) {
  :root {
    --sp-2xl: 5rem;
    --sp-xl:  3rem;
    --sp-lg:  2.5rem;
  }

  .story__grid {
    grid-template-columns: 1fr;
  }

  .story__visual {
    order: -1;
  }

  .story__img,
  .story__slider {
    aspect-ratio: 4 / 3;
    max-height: 300px;
  }

  .story__frame-offset {
    display: none;
  }

  .products__grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-inline: auto;
  }

  .product-card.product-card--featured {
    grid-template-columns: 1fr;
  }

  .product-card--featured .product-card__img-wrap {
    min-height: 260px;
  }

  .product-card--featured .product-card__body {
    padding: 2rem 1.75rem;
  }

  .why__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding-block: 3.5rem 2.5rem;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .b2b__subtext br {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(3.5rem, 17vw, 5.5rem);
  }

  .products__grid {
    max-width: 100%;
  }

  .why__grid {
    gap: 1.5rem;
  }

  .why__text {
    font-size: 0.83rem;
  }

  .footer__social-row {
    gap: 0.65rem;
  }
}

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
