/* ===========================================================
   JUNGLE BROZ — Design Tokens
   =========================================================== */
:root {
  --canopy-950: #0F1F17;
  --canopy-900: #16281F;
  --canopy-800: #203B2C;
  --canopy-700: #2C4F3B;
  --moss-500: #6E8F5C;
  --moss-300: #A9C293;
  --resin-500: #C99B3D;
  --resin-400: #E0B65C;
  --bone-100: #F1ECDD;
  --bone-200: #E4DCC6;
  --ink-900: #0B140F;
  --warn-500: #D97A6C;

  --font-display: "Fraunces", serif;
  --font-body: "Work Sans", sans-serif;
  --font-mono: "Space Mono", monospace;

  --radius-sm: 4px;
  --radius-md: 10px;
  --shadow-lift: 0 20px 45px -20px rgba(0,0,0,0.55);
  --ease: cubic-bezier(.22,.68,0,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canopy-950);
  color: var(--bone-100);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, dl { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, dl, dd { margin: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font: inherit; }

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

.wrap { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 24px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--resin-400);
  margin-bottom: 10px;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition-duration: .01ms !important; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.01em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--resin-500); color: var(--ink-900); box-shadow: 0 10px 24px -12px rgba(201,155,61,0.6); }
.btn--primary:hover { background: var(--resin-400); transform: translateY(-2px); }
.btn--outline { border: 1px solid rgba(241,236,221,0.35); color: var(--bone-100); }
.btn--outline:hover { border-color: var(--resin-400); color: var(--resin-400); }
.btn--ghost { color: var(--bone-200); text-decoration: underline; text-underline-offset: 4px; }
.btn--sm { padding: 9px 16px; font-size: 0.82rem; }
.btn--block { width: 100%; }
.btn:focus-visible { outline: 2px solid var(--resin-400); outline-offset: 3px; }

/* ===============================================================
   AGE GATE
   =============================================================== */
.age-gate {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: radial-gradient(circle at 50% 20%, var(--canopy-800), var(--canopy-950) 70%);
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.age-gate[hidden] { opacity: 0; visibility: hidden; pointer-events: none; display: flex; }
.age-gate__panel {
  max-width: 460px; text-align: center;
  border: 1px solid rgba(241,236,221,0.14); border-radius: var(--radius-md);
  padding: 40px 32px; background: var(--canopy-900); box-shadow: var(--shadow-lift);
}
.age-gate__mark {
  display: inline-flex; width: 46px; height: 46px; border-radius: 50%;
  align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 700; color: var(--ink-900);
  background: var(--resin-500); margin-bottom: 18px;
}
.age-gate__panel h2 { font-size: 1.4rem; margin-bottom: 10px; }
.age-gate__panel p { color: var(--bone-200); font-size: 0.92rem; }
.age-gate__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 22px 0 16px; }
.age-gate__fine { font-size: 0.74rem; color: rgba(228,220,198,0.55); }
.age-gate__fine + .age-gate__fine { margin-top: 6px; }

/* ===============================================================
   HEADER / NAV
   =============================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,31,23,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(241,236,221,0.08);
  transition: background .3s var(--ease);
}
.site-header.is-scrolled { background: rgba(11,20,15,0.92); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 16px; }
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__mark {
  width: 34px; height: 34px; border-radius: 50%; background: var(--resin-500); color: var(--ink-900);
  font-family: var(--font-mono); font-weight: 700; font-size: 0.8rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.logo__word { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; letter-spacing: 0.03em; }

.nav { display: flex; gap: 30px; font-size: 0.9rem; }
.nav a { position: relative; color: var(--bone-200); transition: color .2s; }
.nav a:hover { color: var(--resin-400); }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--resin-400); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }

.site-header__actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 34px; height: 34px; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--bone-100); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===============================================================
   COMPLIANCE STRIP
   =============================================================== */
.compliance-strip {
  background: var(--canopy-950);
  border-bottom: 1px solid rgba(241,236,221,0.08);
  padding: 8px 0;
}
.compliance-strip__inner {
  display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.04em;
  color: var(--bone-200); text-align: center;
}
.compliance-strip__inner span { display: inline-flex; align-items: center; gap: 6px; }

/* ===============================================================
   HERO
   =============================================================== */
.hero {
  position: relative; overflow: hidden; padding: 96px 0 90px;
  background:
    radial-gradient(ellipse 80% 60% at 80% -10%, rgba(201,155,61,0.16), transparent 60%),
    linear-gradient(180deg, var(--canopy-950), var(--canopy-900));
}
.hero__foliage {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(110,143,92,0.08) 0 2px, transparent 2px 34px);
  mask-image: radial-gradient(ellipse 70% 70% at 75% 20%, black, transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 760px; }
.hero__title { font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.02; margin-bottom: 22px; }
.hero__title span { color: var(--resin-400); font-style: italic; }
.hero__sub { font-size: 1.08rem; color: var(--bone-200); max-width: 560px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 24px; font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.04em; color: var(--bone-200); }
.hero__badges li { display: flex; align-items: center; gap: 8px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--moss-300); flex: none; }

/* ===============================================================
   ABOUT
   =============================================================== */
.about { padding: 96px 0; background: var(--canopy-900); }
.about__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.specimen-frame { position: relative; border: 1px solid rgba(241,236,221,0.18); border-radius: var(--radius-md); padding: 18px; background: var(--canopy-800); }
.specimen-frame__tag {
  position: absolute; top: -12px; left: 18px; background: var(--resin-500); color: var(--ink-900);
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 3px;
}
.specimen-frame__art {
  aspect-ratio: 4 / 5; border-radius: 6px; overflow: hidden; position: relative;
}
.specimen-frame__art img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.15) sepia(0.12) hue-rotate(-6deg) brightness(0.92); }
.specimen-frame__art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(44,79,59,0.35), rgba(15,31,23,0.55));
  mix-blend-mode: multiply;
}
.about__copy h2 { margin-bottom: 18px; }
.about__copy p { color: var(--bone-200); margin-bottom: 16px; max-width: 54ch; }
.stat-row { display: flex; gap: 40px; margin-top: 28px; padding-top: 26px; border-top: 1px solid rgba(241,236,221,0.14); flex-wrap: wrap; }
.stat-row dt { font-family: var(--font-display); font-size: 2rem; color: var(--resin-400); }
.stat-row dd { font-size: 0.82rem; color: var(--bone-200); margin-top: 4px; }

/* ===============================================================
   FLORIDA COMPLIANCE SECTION
   =============================================================== */
.fl-compliance { padding: 90px 0; }
.fl-compliance__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.fl-compliance__copy p { color: var(--bone-200); max-width: 50ch; margin-bottom: 16px; }
.fl-compliance__badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(201,155,61,0.4); border-radius: 999px;
  padding: 8px 16px; margin-bottom: 22px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.05em; color: var(--resin-400);
}
.fl-checklist { display: flex; flex-direction: column; gap: 14px; }
.fl-checklist li {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--canopy-900); border: 1px solid rgba(241,236,221,0.1);
  border-radius: var(--radius-md); padding: 18px 20px;
}
.fl-checklist__icon {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(110,143,92,0.18); color: var(--moss-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.85rem;
}
.fl-checklist strong { display: block; font-size: 0.94rem; margin-bottom: 3px; }
.fl-checklist span { font-size: 0.85rem; color: var(--bone-200); }

.warning-panel {
  margin-top: 40px; padding: 22px 24px;
  border: 1px solid rgba(217,122,108,0.4);
  background: rgba(217,122,108,0.08);
  border-radius: var(--radius-md);
}
.warning-panel h4 {
  font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--warn-500); margin-bottom: 10px;
}
.warning-panel p { font-size: 0.84rem; color: var(--bone-200); margin-bottom: 8px; }

/* ===============================================================
   SHOP / PRODUCTS
   =============================================================== */
.shop { padding: 96px 0; background: var(--canopy-900); }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head__sub { color: var(--bone-200); margin-top: 12px; }

.filter-bar { display: flex; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.filter-btn {
  padding: 9px 18px; border-radius: 999px; border: 1px solid rgba(241,236,221,0.2);
  font-size: 0.82rem; font-family: var(--font-mono); letter-spacing: 0.04em; color: var(--bone-200);
  transition: all .25s var(--ease);
}
.filter-btn:hover { border-color: var(--resin-400); color: var(--resin-400); }
.filter-btn.is-active { background: var(--resin-500); color: var(--ink-900); border-color: var(--resin-500); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-card {
  position: relative; overflow: hidden;
  background: var(--canopy-800); border: 1px solid rgba(241,236,221,0.12);
  border-radius: var(--radius-md);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(201,155,61,0.5); box-shadow: var(--shadow-lift); }
.product-card[hidden] { display: none; }

.product-card__photo { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.product-card__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.2) sepia(0.1) hue-rotate(-8deg) brightness(0.95); transition: transform .5s var(--ease); }
.product-card:hover .product-card__photo img { transform: scale(1.06); }
.product-card__stamp {
  position: absolute; top: 14px; right: -30px; transform: rotate(38deg);
  background: var(--moss-500); color: var(--canopy-950);
  font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.06em; padding: 3px 34px;
}

.product-card__body { padding: 22px 22px 20px; }
.product-card__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.product-card__type { font-family: var(--font-mono); font-size: 0.7rem; color: var(--resin-400); text-transform: uppercase; }
.product-card__specs {
  display: flex; gap: 16px; padding: 12px 0; margin-bottom: 12px;
  border-top: 1px dashed rgba(241,236,221,0.18); border-bottom: 1px dashed rgba(241,236,221,0.18);
  font-family: var(--font-mono); flex-wrap: wrap;
}
.product-card__specs dt { font-size: 0.6rem; color: var(--bone-200); letter-spacing: 0.06em; }
.product-card__specs dd { font-size: 0.84rem; margin-top: 2px; }
.product-card__note { font-size: 0.87rem; color: var(--bone-200); margin-bottom: 16px; min-height: 44px; }

.product-card__compliance {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 0.66rem; color: var(--bone-200);
  padding: 10px 0; margin-bottom: 16px; border-top: 1px solid rgba(241,236,221,0.1);
}
.coa-link { display: inline-flex; align-items: center; gap: 6px; color: var(--moss-300); }
.coa-link:hover { color: var(--resin-400); }
.qr-dot-icon { width: 16px; height: 16px; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; }
.qr-dot-icon span { background: currentColor; }
.qr-dot-icon span:nth-child(2), .qr-dot-icon span:nth-child(4), .qr-dot-icon span:nth-child(6), .qr-dot-icon span:nth-child(8) { background: transparent; }

.product-card__foot { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: var(--font-display); font-size: 1.2rem; color: var(--bone-100); }
.price small { font-family: var(--font-body); font-size: 0.7rem; color: var(--bone-200); }

.empty-state { text-align: center; color: var(--bone-200); padding: 40px 0; }

.shop__footnote { margin-top: 30px; font-size: 0.78rem; color: rgba(228,220,198,0.6); max-width: 760px; }

/* ===============================================================
   WHY US
   =============================================================== */
.why { padding: 96px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card {
  padding: 30px 22px; border-radius: var(--radius-md); background: var(--canopy-900);
  border: 1px solid rgba(241,236,221,0.1); transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(201,155,61,0.4); }
.feature-card__icon { width: 46px; height: 46px; margin-bottom: 18px; }
.feature-card__icon svg { width: 100%; height: 100%; fill: none; stroke: var(--resin-400); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.08rem; }
.feature-card p { color: var(--bone-200); font-size: 0.9rem; }

/* ===============================================================
   TESTIMONIALS
   =============================================================== */
.reviews { padding: 96px 0; background: var(--canopy-900); }
.testimonial { display: flex; align-items: center; gap: 20px; max-width: 720px; margin: 0 auto; }
.testimonial__arrow {
  width: 42px; height: 42px; flex: none; border-radius: 50%;
  border: 1px solid rgba(241,236,221,0.25); display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s;
}
.testimonial__arrow:hover { border-color: var(--resin-400); color: var(--resin-400); }
.testimonial__track { position: relative; flex: 1; min-height: 150px; }
.testimonial__slide {
  position: absolute; inset: 0; margin: 0; text-align: center;
  opacity: 0; transform: translateX(14px); transition: opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events: none;
}
.testimonial__slide.is-active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.testimonial__slide p { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.4; margin-bottom: 18px; }
.testimonial__slide footer { font-family: var(--font-mono); font-size: 0.78rem; color: var(--resin-400); }
.testimonial__slide cite { color: var(--bone-200); font-style: normal; }
.testimonial__dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.testimonial__dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(241,236,221,0.25); transition: background .2s; }
.testimonial__dots button.is-active { background: var(--resin-500); }

/* ===============================================================
   CTA BAND
   =============================================================== */
.cta-band { background: linear-gradient(135deg, var(--canopy-700), var(--canopy-950)); padding: 64px 0; }
.cta-band__inner { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.cta-band h2 { font-size: 1.7rem; margin-bottom: 6px; }
.cta-band p { color: var(--bone-200); }
.cta-band__form { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-band__form input {
  padding: 13px 16px; border-radius: var(--radius-sm); border: 1px solid rgba(241,236,221,0.25);
  background: rgba(11,20,15,0.4); color: var(--bone-100); min-width: 240px;
}
.cta-band__form input:focus-visible { outline: 2px solid var(--resin-400); }
.form-msg { width: 100%; font-size: 0.84rem; margin-top: 10px; color: var(--moss-300); }

/* ===============================================================
   CONTACT
   =============================================================== */
.contact { padding: 96px 0; }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact__copy p { color: var(--bone-200); max-width: 46ch; margin-bottom: 22px; }
.contact__details { display: flex; flex-direction: column; gap: 14px; }
.contact__details li { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 12px; border-bottom: 1px dashed rgba(241,236,221,0.18); font-size: 0.92rem; }
.contact__details strong { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--resin-400); text-transform: uppercase; }

.contact__form { background: var(--canopy-900); padding: 30px; border-radius: var(--radius-md); border: 1px solid rgba(241,236,221,0.1); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.8rem; margin-bottom: 6px; color: var(--bone-200); }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1px solid rgba(241,236,221,0.2); background: rgba(11,20,15,0.5); color: var(--bone-100); resize: vertical;
}
.field input:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--resin-400); }
.field.has-error input, .field.has-error textarea { border-color: var(--warn-500); }
.field__error { display: block; min-height: 16px; font-size: 0.74rem; color: var(--warn-500); margin-top: 4px; }
.field--checkbox { display: flex; align-items: flex-start; gap: 10px; }
.field--checkbox input { width: auto; margin-top: 3px; }
.field--checkbox label { font-size: 0.8rem; color: var(--bone-200); margin-bottom: 0; }

/* ===============================================================
   FOOTER
   =============================================================== */
.site-footer { background: var(--ink-900); padding-top: 66px; }
.site-footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(241,236,221,0.1); }
.logo--footer { margin-bottom: 14px; }
.site-footer__brand p { color: var(--bone-200); font-size: 0.88rem; max-width: 32ch; margin-bottom: 18px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(241,236,221,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.7rem; transition: border-color .2s, color .2s;
}
.social-row a:hover { border-color: var(--resin-400); color: var(--resin-400); }
.site-footer__col h4 {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--resin-400); margin-bottom: 16px;
}
.site-footer__col a { display: block; color: var(--bone-200); font-size: 0.9rem; margin-bottom: 10px; transition: color .2s; }
.site-footer__col a:hover { color: var(--bone-100); }

.site-footer__legal { padding: 26px 0 16px; }
.site-footer__legal p { font-size: 0.76rem; color: rgba(228,220,198,0.55); max-width: 900px; margin-bottom: 10px; }
.site-footer__legal p:last-child { margin-bottom: 0; }
.site-footer__legal-strong { color: rgba(228,220,198,0.75); font-weight: 600; }
.site-footer__bottom-pad { padding-bottom: 90px; }

.back-to-top {
  position: fixed; right: 26px; bottom: 26px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--resin-500); color: var(--ink-900); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lift);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s; z-index: 90;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ===============================================================
   RESPONSIVE
   =============================================================== */
@media (max-width: 980px) {
  .about__inner, .contact__inner, .fl-compliance__grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__inner { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}
@media (max-width: 720px) {
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--canopy-900); border-bottom: 1px solid rgba(241,236,221,0.1);
    max-height: 0; overflow: hidden; transition: max-height .35s var(--ease);
  }
  .nav.is-open { max-height: 320px; }
  .nav a { padding: 16px 24px; border-top: 1px solid rgba(241,236,221,0.08); }
  .nav-toggle { display: flex; }
  .site-header__actions .btn--primary { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}
