/* ==========================================================================
   TKS x SENSEI — site stylesheet
   Design system extracted from the homepage canvas.
   Order: tokens → reset → typography → components → sections → utilities
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Neutrals — darks */
  --ink:          #0A0A0A;
  --ink-deep:     #0C0C0B;
  --ink-block:    #141412;
  --ink-panel:    #161614;
  --ink-section:  #1C1B19;
  --ink-field:    #22211E;
  --ink-body:     #2A2925;

  /* Neutrals — creams */
  --cream:        #F4F1EA;
  --cream-2:      #EFECE3;
  --cream-3:      #EDEAE2;
  --cream-4:      #E6E3DB;
  --mint:         #E9EFE6;

  /* Brand */
  --green-deep:   #136B45;
  --green:        #A9CF38;
  --green-mid:    #2FA36B;
  --lime:         #8FD14F;
  --red:          #C22A1F;
  --red-bright:   #E25141; /* red for dark backgrounds — 4.6:1 on the panels */
  --orange:       #FF5A1F;
  --orange-deep:  #C2410C; /* orange for light backgrounds — 4.6:1 on cream */

  /* Alpha ramps on cream (dark backgrounds) */
  --cream-85: rgba(244, 241, 234, .93);
  --cream-80: rgba(244, 241, 234, .88);
  --cream-72: rgba(244, 241, 234, .82);
  --cream-60: rgba(244, 241, 234, .72);
  --cream-55: rgba(244, 241, 234, .68);
  --cream-50: rgba(244, 241, 234, .62);
  --cream-45: rgba(244, 241, 234, .56);
  --cream-40: rgba(244, 241, 234, .40);
  --cream-30: rgba(244, 241, 234, .30);
  --cream-14: rgba(244, 241, 234, .14);
  --cream-08: rgba(244, 241, 234, .08);

  /* Alpha ramps on ink (light backgrounds) */
  --ink-65: rgba(20, 20, 18, .74);
  --ink-55: rgba(20, 20, 18, .68);
  --ink-40: rgba(20, 20, 18, .40);
  --ink-14: rgba(20, 20, 18, .14);

  /* Type */
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    Archivo, system-ui, -apple-system, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-script:  'Permanent Marker', cursive;
  --font-mega:    Anton, 'Barlow Condensed', sans-serif;

  /* Rhythm */
  --gut:      clamp(20px, 6vw, 86px);   /* horizontal page gutter */
  --band:     clamp(84px, 13vh, 170px); /* vertical section padding */
  --wrap:     1400px;
  --ease:     cubic-bezier(.2, .7, .2, 1);
  --nav-h:    88px;
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 10001;
  background: var(--green);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .14em;
  padding: 14px 20px;
  transition: top 160ms ease;
}
.skip-link:focus { top: 12px; }

/* Honeypot: off-screen for pointers, out of the accessibility tree via
   aria-hidden on the wrapper, and skipped by tab. Only a bot fills it in. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .005em;
  line-height: .98;
  margin: 0;
  text-wrap: balance;
}

/* Two display sizes on purpose: --display for the hero and the closing
   statement, --section for every section heading in between. Sub-heads
   (.h-sm) sit under those. Resist adding a third size. */
h2         { font-size: clamp(40px, 6vw, 96px); }
.h-hero    { font-size: clamp(46px, 7.4vw, 128px); }
.h-xl, .h-lg, .h-md { font-size: clamp(40px, 6vw, 96px); }
.h-sm      { font-size: clamp(32px, 3.8vw, 60px); line-height: 1; }

p { margin: 0; }
.lede    { font-size: 18px; line-height: 1.8; }
.muted   { color: var(--cream-80); }
.muted-d { color: var(--ink-body); }

/* Mono eyebrow, optionally preceded by a rule */
.eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  letter-spacing: .2em;
  font-size: 12px;
  line-height: 1.4;
  margin: 0 0 24px;
  color: var(--cream-72);
}
.eyebrow::before {
  content: '';
  flex: none;
  width: 22px; height: 1px;
  background: currentColor;
}
.eyebrow--bare { gap: 0; }
.eyebrow--bare::before { content: none; }
.eyebrow--green { color: var(--green); }
.eyebrow--deep  { color: var(--green-deep); }
.eyebrow--red   { color: var(--red); }
.band--panel .eyebrow--red, .band--section .eyebrow--red, .band--ink .eyebrow--red { color: var(--red-bright); }
.eyebrow--orange{ color: var(--orange); }
.eyebrow--dim   { color: var(--ink-55); }

/* Hand-written asides. These are <p>s that need to keep their own line, so
   size the box to the text rather than switching to inline-block — that let
   the next element (a button, usually) ride up alongside them. */
.marker {
  font-family: var(--font-script);
  font-weight: 400;
  transform: rotate(-1.2deg);
  transform-origin: left center;
  width: fit-content;
  max-width: 100%;
}

.grad-green {
  background: linear-gradient(100deg, var(--lime), var(--green) 55%, var(--green-mid));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 18px 30px;
  background: transparent;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms var(--ease), color 220ms var(--ease),
              border-color 220ms var(--ease), transform 220ms var(--ease);
}
.btn svg { flex: none; }
.btn--sm { min-height: 48px; padding: 13px 20px; font-size: 13px; letter-spacing: .14em; }
.btn--md { min-height: 54px; padding: 16px 28px; font-size: 14px; }

.btn--green { background: var(--green); color: var(--ink); }
.btn--green:hover { background: var(--cream); color: var(--ink); transform: translateY(-2px); }

.btn--dark { background: var(--ink-block); color: var(--cream); }
.btn--dark:hover { background: var(--green); color: var(--ink-block); }

.btn--cream { background: var(--cream); color: var(--ink-block); }
.btn--cream:hover { background: var(--green); color: var(--ink-block); }

.btn--ghost { border-color: var(--cream-40); color: var(--cream); }
.btn--ghost:hover { border-color: var(--cream); background: var(--cream-08); color: var(--cream); }

.btn--ghost-solid { border-color: var(--cream-45); color: var(--cream); }
.btn--ghost-solid:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); }

.btn--outline-dark { border-color: var(--ink-40); color: var(--ink-block); }
.btn--outline-dark:hover { background: var(--ink-block); color: var(--cream); border-color: var(--ink-block); }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   5. Layout helpers
   -------------------------------------------------------------------------- */
.wrap    { max-width: var(--wrap); margin-inline: auto; }
.band    { padding: var(--band) var(--gut); }
.band-sm { padding: clamp(70px, 11vh, 130px) var(--gut); }

.grid { display: grid; gap: clamp(30px, 5vw, 70px); }
/* Items default to min-width:auto, so a single wide child can push a track
   past the viewport. Let them shrink to their track instead. */
.grid > *,
.contact-grid > *,
.finder__layout > *,
.grow-grid > *,
.roots__cols > *,
.card-dark__body > * { min-width: 0; }
.grid--3-2   { grid-template-columns: 1.15fr .85fr; align-items: start; gap: clamp(36px, 6vw, 90px); }
.grid--1-1   { grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(36px, 6vw, 90px); }
.grid--flower{ grid-template-columns: 1.05fr .95fr; align-items: center; }
.grid--kol   { grid-template-columns: .82fr 1.18fr; align-items: end; }
.grid--culture { grid-template-columns: 1fr 1.1fr; align-items: start; }

/* Heading on the left, action on the right, aligned to the baseline */
.section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(34px, 5vh, 60px);
}

.stack-flow { display: flex; flex-direction: column; gap: 20px; }

/* --------------------------------------------------------------------------
   6. Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(16px, 3vw, 40px);
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, padding 300ms ease, border-color 300ms ease;
}
.nav--solid,
.nav--scrolled {
  background: rgba(12, 12, 11, .8);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--cream-14);
  padding-top: 12px;
  padding-bottom: 12px;
}
.nav--static { position: sticky; }

.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img { width: 56px; height: 51px; object-fit: contain; }
.nav__brand span {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .2em;
  font-size: 16px;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.8vw, 34px);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .14em;
  font-size: clamp(13px, 1.5vw, 15px);
  white-space: nowrap;
}
.nav__links a,
.nav__links [aria-current] {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, color 200ms ease;
}
.nav__links a:hover { border-bottom-color: var(--green); color: var(--green); }
.nav__links [aria-current='page'] { color: var(--green); border-bottom-color: var(--green); }

.nav__end {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  letter-spacing: .1em;
  font-size: 11px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid var(--cream-30);
  border-radius: 50%;
  color: var(--cream-85);
  transition: border-color 200ms ease, color 200ms ease;
}
a.pill:hover { border-color: var(--green); color: var(--green); }

.nav__cta {
  background: var(--green);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 11px 18px;
  letter-spacing: .14em;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background 200ms ease;
}
.nav__cta:hover { background: var(--cream); color: var(--ink); }

/* Mobile menu */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--cream-30);
  color: var(--cream);
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
  position: relative;
  transition: background 180ms ease;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px; height: 2px;
  background: currentColor;
  transition: transform 220ms var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }
.nav__toggle[aria-expanded='true'] span { background: transparent; }
.nav__toggle[aria-expanded='true'] span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded='true'] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* Floating Find Us button (mobile / tablet only — desktop has the nav CTA) */
.fab {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 8500;
  display: none;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .45);
  transform: translateY(90px);
  opacity: 0;
  transition: transform 280ms var(--ease), opacity 280ms var(--ease);
}
.fab.is-on { transform: none; opacity: 1; }
.fab:hover { color: var(--ink); }
@media (max-width: 1000px) {
  .fab { display: inline-flex; }
}

/* --------------------------------------------------------------------------
   7. Age gate
   -------------------------------------------------------------------------- */
/* Hidden until the inline head script decides the visitor still needs it.
   Doing it that way — rather than showing the gate from JS after load — means
   an unverified visitor never sees a frame of the page behind it. */
.gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--ink-deep);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
html.needs-gate .gate { display: flex; }
html.needs-gate, html.needs-gate body { overflow: hidden; }
.gate::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .16;
  background: radial-gradient(120% 90% at 50% 0%, rgba(18, 107, 69, .5), transparent 60%);
}
.gate__inner { position: relative; width: 100%; max-width: 760px; text-align: center; }
.gate__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 38px;
}
.gate__mark img { width: 76px; height: 70px; object-fit: contain; }
.gate__mark div {
  text-align: left;
  font-family: var(--font-mono);
  letter-spacing: .2em;
  font-size: 12px;
  line-height: 1.6;
  color: var(--cream-72);
}
.gate__h {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .005em;
  font-size: clamp(60px, 13vw, 150px);
  line-height: .96;
  text-wrap: balance;
}
.gate--out .gate__h { font-size: clamp(42px, 8vw, 92px); line-height: 1; margin-bottom: 22px; }
.gate p {
  max-width: 560px;
  margin: 24px auto 40px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--cream-72);
}
.gate__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.gate__actions .btn { min-width: 220px; padding: 20px 40px; font-size: 16px; }
.gate__fine {
  margin-top: 46px;
  font-family: var(--font-mono);
  letter-spacing: .18em;
  font-size: 11px;
  color: var(--cream-45);
}

/* --------------------------------------------------------------------------
   8. Transit rail
   -------------------------------------------------------------------------- */
.rail {
  position: fixed;
  left: 20px; top: 50%;
  transform: translateY(-50%);
  z-index: 8000;
  pointer-events: none;
}
.rail__track,
.rail__fill {
  position: absolute;
  left: 5px; top: 6px;
  width: 2px;
}
.rail__track { bottom: 6px; background: rgba(128, 126, 120, .3); }
.rail__fill  { height: 0; background: var(--green); transition: height 180ms linear; }
.rail__dots { position: relative; display: flex; flex-direction: column; gap: 26px; }
.rail__dots span {
  width: 12px; height: 12px;
  border: 2px solid rgba(128, 126, 120, .6);
  border-radius: 50%;
  background: transparent;
  transition: background 260ms ease, border-color 260ms ease, transform 260ms ease;
}
.rail__dots span.is-active {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.35);
}

/* --------------------------------------------------------------------------
   9. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink-deep);
}
.hero__bg { position: absolute; inset: -8% 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__smoke {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
/* Particle smoke drawn by site.js onto this canvas from a soft alpha
   sprite — no image crop, so no edges to see. The canvas renders at
   reduced resolution and is scaled up here, which reads as extra blur. */
.hero__smoke canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12,12,11,.88) 0%, rgba(12,12,11,.52) 34%, rgba(12,12,11,.78) 70%, rgba(12,12,11,.97) 100%),
    radial-gradient(60% 60% at 22% 55%, rgba(12,12,11,.45), transparent 70%);
}
.hero__packs {
  position: absolute;
  z-index: 3;
  right: clamp(10px, 4vw, 90px);
  top: 50%;
  margin-top: clamp(-360px, -21vw, -200px);
  width: clamp(320px, 41vw, 700px);
  aspect-ratio: 897 / 974;
  transform: rotate(3deg);
  filter: drop-shadow(0 30px 56px rgba(0, 0, 0, .65));
}
.hero__packs img { width: 100%; height: 100%; object-fit: contain; }
.hero__body {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 150px var(--gut) clamp(44px, 6vh, 76px);
}
.hero h1 { max-width: min(12ch, 54vw); }
.hero h1 span { color: var(--cream-80); }
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin-top: clamp(32px, 5vh, 56px);
  max-width: min(600px, 58vw);
}
.hero__kicker {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .12em;
  font-size: 15px;
  margin-bottom: 16px;
}
.hero .eyebrow { margin-bottom: 30px; color: var(--cream-72); }
.hero .eyebrow::before { width: 26px; background: var(--green); }
.hero .eyebrow em { font-style: normal; color: var(--cream-45); }

/* --------------------------------------------------------------------------
   10. Ticker
   -------------------------------------------------------------------------- */
.ticker {
  background: linear-gradient(100deg, #0E5236 0%, var(--green-deep) 30%, #1E8A58 52%, var(--green-deep) 74%, #0E5236 100%);
  color: var(--cream);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(244, 241, 234, .18);
  border-bottom: 1px solid rgba(10, 10, 10, .35);
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 34px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .2em;
  font-size: 16px;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker .tick {
  flex: none;
  display: inline-flex;
  color: var(--lime);
  opacity: .9;
}
.ticker .tick svg { width: 15px; height: 15px; }
.ticker .tick svg[viewBox='0 0 16 20'] { width: 13px; height: 16px; }
.ticker .tick svg path[d^='M9 16c-'] { fill: none; stroke: currentColor; stroke-width: 1.6; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   11. Sections — light bands
   -------------------------------------------------------------------------- */
.band--cream   { background: var(--cream);   color: var(--ink-block); }
.band--cream2  { background: var(--cream-2); color: var(--ink-block); }
.band--cream3  { background: var(--cream-3); color: var(--ink-block); }
.band--cream4  { background: var(--cream-4); color: var(--ink-block); }
.band--mint    { background: var(--mint);    color: var(--ink-block); }
.band--panel   { background: var(--ink-panel); }
.band--section { background: var(--ink-section); }

/* Brand statement */
.statement__note {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
  margin: 40px 0 0;
  max-width: 560px;
}
.statement__note span { color: var(--orange-deep); }
.statement__figure { position: relative; aspect-ratio: 4 / 5; }
.statement__figure img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------------------------
   12. Collaboration split
   -------------------------------------------------------------------------- */
.collab { background: var(--ink-panel); padding: var(--band) 0 0; }
.collab__intro { padding: 0 var(--gut); max-width: var(--wrap); margin-inline: auto; }
/* Both houses' own marks, straight onto the dark ground — the cream card
   they used to sit in read as a sticker and squeezed them too small. The
   Sensei wordmark is the cream cut so it survives the dark background. */
.collab__marks {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.2vw, 46px);
  margin: 0 0 clamp(24px, 3.4vh, 40px);
}
.collab__marks img { height: clamp(78px, 8.6vw, 132px); width: auto; display: block; }
.collab__marks span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1;
  color: var(--green);
}
.collab__intro h2 { line-height: 1; margin-bottom: 26px; }
.collab__intro h2 span { color: var(--green); }
.collab__intro p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--cream-80);
  margin-bottom: clamp(38px, 6vh, 64px);
}

.split {
  position: relative;
  display: flex;
  min-height: clamp(520px, 78vh, 760px);
  border-top: 1px solid var(--cream-14);
}
.split__panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  transition: flex 420ms var(--ease);
}
.split__panel:not(:last-child) { border-right: 1px solid var(--cream-14); }
.split__panel:hover, .split__panel:focus-within { flex: 1.3; }
.split__panel > img { width: 100%; height: 100%; object-fit: cover; }
.split__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(12,12,11,.3), rgba(12,12,11,.88));
}
.split__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: clamp(24px, 3vw, 44px);
  pointer-events: none;
}
.split__body a { pointer-events: auto; }
.split__num {
  font-family: var(--font-mono);
  letter-spacing: .18em;
  font-size: 11px;
  color: var(--cream-72);
  margin-bottom: 14px;
}
.split__body h3 { margin-bottom: 12px; color: var(--cream); }
.split__tag {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .18em;
  font-size: 13px;
  color: var(--green);
  margin-bottom: 16px;
}
.split__body p { margin-bottom: 22px; max-width: 440px; font-size: 16px; line-height: 1.72; color: var(--cream-85); }
.split__badge {
  position: absolute;
  z-index: 6;
  left: 50%; top: 24%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.split__badge > div {
  width: clamp(150px, 13vw, 230px);
  background: var(--cream);
  padding: 11px 11px 15px;
  box-shadow: 0 30px 64px rgba(0, 0, 0, .6);
  transform: rotate(-4deg);
}
.split__badge figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.split__badge img { width: 100%; height: 100%; object-fit: contain; }
.split__badge figcaption {
  margin-top: 9px;
  color: var(--ink-block);
  font-family: var(--font-mono);
  letter-spacing: .12em;
  font-size: 10px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   13. Flower
   -------------------------------------------------------------------------- */
.flower__packs { position: relative; }
.flower__stack {
  aspect-ratio: 897 / 974;
  max-width: 560px;
  margin-inline: auto;
  filter: drop-shadow(0 34px 54px rgba(20, 20, 18, .28));
}
.flower__stack img { width: 100%; height: 100%; object-fit: contain; }
.flower__tag {
  position: absolute;
  left: 0; bottom: 6%;
  background: var(--ink-block);
  color: var(--cream);
  font-family: var(--font-mono);
  letter-spacing: .14em;
  font-size: 10px;
  padding: 9px 13px;
  transform: rotate(-2deg);
}
.strain-list { display: flex; flex-direction: column; gap: 18px; }
.strain {
  display: flex;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--ink-14);
  padding: 14px;
}
.strain__thumb { width: 112px; height: 96px; flex: none; overflow: hidden; }
.strain__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 72%; }
.strain__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.1;
}
.strain__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ink-55);
  margin-top: 5px;
}
.strain__body { flex: 1; min-width: 0; }
.chip {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  padding: 6px 10px;
  flex: none;
  color: var(--cream);
}
.chip--sensei   { background: var(--green-deep); }
.chip--kolektor { background: var(--red); }

/* --------------------------------------------------------------------------
   14. Product drop
   -------------------------------------------------------------------------- */
.drop {
  position: relative;
  background: linear-gradient(165deg, #EFECE3 0%, #E4E6DC 55%, #D5DECF 100%);
  color: var(--ink-block);
  overflow: hidden;
}
.drop::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 55% at 72% 50%, rgba(61, 164, 111, .22), transparent 70%);
}
.drop__ghost {
  position: absolute;
  z-index: 0;
  left: 50%; top: 46%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mega);
  font-size: clamp(130px, 19vw, 330px);
  line-height: .8;
  letter-spacing: -.04em;
  color: rgba(20, 20, 18, .05);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}
.drop__inner { position: relative; z-index: 1; }
.drop__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(20, 20, 18, .35);
  font-family: var(--font-mono);
  letter-spacing: .18em;
  font-size: 11px;
  padding: 9px 15px;
  margin-bottom: 30px;
}

.drop h2 span { color: var(--red); }
.drop__cross {
  font-family: var(--font-mono);
  letter-spacing: .14em;
  font-size: 14px;
  color: var(--ink-65);
  margin: 18px 0 28px;
}
/* Head row: badge and heading left, the framing copy right. */
.drop__head {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(28px, 4.5vw, 76px);
  align-items: end;
  margin-bottom: clamp(34px, 5vh, 60px);
}
.drop__head h2 { line-height: 1; }

/* The three cultivars in rotation, equal billing. */
.drop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 26px);
}
.drop__card {
  background: var(--cream);
  box-shadow: 0 22px 44px rgba(20, 20, 18, .16);
  display: flex;
  flex-direction: column;
}
.drop__cardart { position: relative; overflow: hidden; }
.drop__cardart img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  /* Top-aligned: each macro carries its house tag near the top of the
     frame, and a centred crop was cutting them at different heights. */
  object-position: 50% 0;
  display: block;
  transition: transform 1s var(--ease);
}
.drop__card:hover .drop__cardart img { transform: scale(1.045); }
/* Top-right: each macro carries its painted house tag in the top-left. */
.drop__cardart .chip { position: absolute; right: 12px; top: 12px; }
.drop__cardbody { padding: 20px 20px 24px; }
.drop__cardbody h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(22px, 2vw, 27px);
  line-height: 1.05;
}
.drop__cardbody .drop__cross { margin: 8px 0 12px; font-size: 12px; }
.drop__cardbody p { font-size: 15px; line-height: 1.7; color: var(--ink-65); }
.drop__cta { margin-top: clamp(30px, 4.5vh, 52px); }

/* --------------------------------------------------------------------------
   15. Behind the grow
   -------------------------------------------------------------------------- */
.grow-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; align-items: stretch; }
.grow-grid figure { margin: 0; position: relative; }
.grow-grid img { width: 100%; height: 100%; object-fit: cover; }
.grow__wide { aspect-ratio: 16 / 10; }
.grow__col { display: flex; flex-direction: column; gap: 16px; }
.grow__tall { flex: 1; min-height: 180px; }
.grow__tall img { object-position: 20% 50%; }
.grow__label {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(20, 20, 18, .85);
  color: var(--cream);
  font-family: var(--font-mono);
  letter-spacing: .14em;
  font-size: 10px;
  padding: 8px 12px;
}
.grow__note {
  background: var(--ink-block);
  color: var(--cream);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  min-height: 150px;
}
.grow__note div:first-child {
  font-family: var(--font-mono);
  letter-spacing: .14em;
  font-size: 10px;
  color: var(--cream-55);
}
.grow__note div:last-child {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.15;
}

/* --------------------------------------------------------------------------
   16. New York roots
   -------------------------------------------------------------------------- */
.roots {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink-deep);
}
.roots__bg { position: absolute; inset: -8% 0; filter: sepia(.35) saturate(1.1); }
.roots__bg img { width: 100%; height: 100%; object-fit: cover; }
.roots::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12,12,11,.72), rgba(12,12,11,.42) 42%, rgba(12,12,11,.92));
}
/* Headline left, the argument right — the copy used to sit in two columns
   under the heading, which left the right half of the frame empty. */
.roots__body {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 84px);
  align-items: center;
  padding: clamp(64px, 11vh, 120px) var(--gut);
  max-width: var(--wrap);
  margin-inline: auto;
  width: 100%;
}
.roots__kicker {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .2em;
  font-size: 13px;
  color: var(--green);
  margin-bottom: 22px;
}
.roots h2 { line-height: 1; margin-bottom: 0; }
.roots__cols {
  display: grid;
  gap: clamp(20px, 2.4vh, 30px);
  max-width: 52ch;
}
.roots__nots {
  display: grid;
  gap: 8px;
  color: var(--cream-72);
  line-height: 1.7;
  padding-left: 20px;
  border-left: 2px solid var(--green);
}
.roots__punch {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.2;
  color: var(--cream);
}

/* --------------------------------------------------------------------------
   17. Culture collage
   -------------------------------------------------------------------------- */
/* The heading used to sit in a full-width row above this grid, which held
   the collage down and left the top-right of the section empty. It now
   shares the left column with the copy so the photos start at the top. */
.culture__copy h2 { margin-bottom: clamp(26px, 4vh, 44px); }
.collage { position: relative; padding: 20px 20px 0 0; }
.collage figure {
  position: relative;
  border: 7px solid #fff;
  transition: transform 260ms ease;
}
.collage figure img { width: 100%; height: 100%; object-fit: cover; }
.collage figure:hover { transform: rotate(0deg) translateY(-4px); }
.collage__a {
  margin: 0;
  z-index: 2;
  width: 78%;
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 40px rgba(20, 20, 18, .25);
  transform: rotate(-1.6deg);
}
.collage__a::before {
  content: '';
  position: absolute;
  z-index: 3;
  left: -16px; top: -12px;
  width: 74px; height: 24px;
  background: rgba(244, 241, 234, .75);
  border-left: 1px solid rgba(20, 20, 18, .12);
  border-right: 1px solid rgba(20, 20, 18, .12);
  transform: rotate(-8deg);
}
.collage__b {
  z-index: 3;
  width: 44%;
  margin: -14% 0 0 52%;
  aspect-ratio: 3 / 4;
  box-shadow: 0 22px 44px rgba(20, 20, 18, .3);
  transform: rotate(2.6deg);
}
.culture__punch {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.2;
}

/* --------------------------------------------------------------------------
   19. Kolektion
   -------------------------------------------------------------------------- */
.kolektion { padding: clamp(90px, 14vh, 180px) var(--gut); }
.kolektion h2 { margin-bottom: 30px; }
.kolektion h2 .anton {
  font-family: var(--font-mega);
  letter-spacing: -.02em;
  background: linear-gradient(100deg, var(--green-deep), var(--green-mid));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.kolektion__head {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(36px, 5vh, 62px);
}
.kolektion__head .lede { max-width: 62ch; }

/* Lookbook row — three shots of the drop, equal billing */
.kolektion__gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 22px); }
.kolektion__gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink-deep);
  box-shadow: 0 22px 44px rgba(20, 20, 18, .16);
}
.kolektion__gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease);
}
.kolektion__gallery figure:hover img,
.kolektion__gallery figure:focus-within img { transform: scale(1.045); }
.kolektion__gallery figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 16px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--cream);
  background: linear-gradient(180deg, transparent, rgba(12,12,11,.86));
}
.kolektion__gallery figcaption span { color: var(--cream-72); }

/* --------------------------------------------------------------------------
   20. Social cards
   -------------------------------------------------------------------------- */
.social-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(20px, 3vw, 36px); align-items: start; }
.social-card {
  display: block;
  background: #fff;
  padding: 12px 12px 18px;
  box-shadow: 0 14px 30px rgba(20, 20, 18, .16);
  transition: transform 260ms ease, box-shadow 260ms ease;
}
.social-card:hover { transform: rotate(0deg) translateY(-6px); box-shadow: 0 24px 46px rgba(20, 20, 18, .24); }
.social-card--lead { padding: 14px 14px 22px; box-shadow: 0 16px 34px rgba(20, 20, 18, .16); }
.social-card--tilt-a { margin-top: 30px; transform: rotate(1.4deg); }
.social-card--tilt-b { transform: rotate(-1.2deg); }
.social-card__img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #dcd8cf;
  overflow: hidden;
}
.social-card__img img { width: 100%; height: 100%; object-fit: cover; }
/* Slideshow frames: stacked images, one visible, slow crossfade. */
.social-card__img[data-slides] img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}
.social-card__img[data-slides] img.is-active { opacity: 1; }
.social-card__img[data-slides] img.slide--contain {
  object-fit: contain;
  padding: 6% 6% 3%;
}
.social-card--lead .social-card__img {
  aspect-ratio: 4 / 3;
  background: var(--cream-3);
}
/* Reel frame: the grow-room clip loops muted in place of a stills slideshow.
   It only loads once it scrolls into view (see site.js), so it costs nothing
   to visitors who never reach it. */
.social-card__img--reel { background: var(--ink-deep); }
.social-card__img--reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.social-card__reel {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--cream);
  background: rgba(12, 12, 11, .72);
  backdrop-filter: blur(4px);
}
.social-card__foot { margin-top: 12px; }
.social-card--lead .social-card__foot {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.social-card__handle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}
.social-card--lead .social-card__handle { font-size: 24px; }
.social-card__role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--ink-55);
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   21. Find us
   -------------------------------------------------------------------------- */
/* A train-yard shot heads the section and dissolves into the black before
   the map starts. Masked rather than faded with a gradient overlay so the
   section keeps working on top of it whatever its background. */
.band--section#findus { position: relative; overflow: hidden; }
.finder__banner {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 0;
  height: clamp(300px, 44vh, 540px);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.86) 40%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.86) 40%, transparent 100%);
}
.finder__banner img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; opacity: .38; }
#findus > .wrap { position: relative; z-index: 1; }

.finder__controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 22px;
}
.finder__search { position: relative; flex: 1; min-width: 240px; max-width: 420px; }
.finder__search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); }
.finder__search input {
  width: 100%;
  border: 1px solid var(--cream-30);
  background: var(--ink-field);
  color: var(--cream);
  padding: 16px 16px 16px 44px;
  min-height: 54px;
  outline: none;
}
.finder__search input::placeholder { color: var(--cream-45); }
.finder__filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter {
  flex: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 13px;
  padding: 14px 18px;
  min-height: 48px;
  border: 1px solid var(--cream-30);
  background: transparent;
  color: var(--cream);
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.filter:hover { border-color: var(--green); color: var(--green); }
.filter[aria-pressed='true'] {
  border-color: var(--green);
  background: var(--green);
  color: var(--ink-block);
}
.finder__layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(24px, 4vw, 54px); align-items: start; }
.finder__mapwrap {
  position: relative;
  background: #DAD7CE;
  border: 1px solid rgba(244, 241, 234, .2);
  min-height: 480px;
  overflow: hidden;
}
#tks-map { position: absolute; inset: 0; z-index: 0; background: #DAD7CE; }
#tks-map .leaflet-tile-pane { filter: saturate(.45) contrast(1.02); }
#tks-map.leaflet-container { background: #DAD7CE; }
/* Leaflet's default chrome is built for light maps; the tiles here are
   inverted to match the section, so the controls need to follow. */
.leaflet-container a { color: var(--green); }
#tks-map .leaflet-bar a,
#tks-map .leaflet-bar a:hover {
  background: #fff;
  color: var(--ink-block);
  border-bottom-color: rgba(20, 20, 18, .16);
}
#tks-map .leaflet-bar a:hover { background: var(--green); color: var(--ink-block); }
#tks-map .leaflet-bar { border: 1px solid rgba(20, 20, 18, .25); box-shadow: 0 2px 8px rgba(20, 20, 18, .18); }
#tks-map .leaflet-control-attribution {
  background: rgba(255, 255, 255, .85);
  color: rgba(20, 20, 18, .6);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .04em;
  padding: 3px 7px;
}
#tks-map .leaflet-control-attribution a { color: rgba(20, 20, 18, .75); }
#tks-map .leaflet-popup-content-wrapper,
#tks-map .leaflet-popup-tip { background: var(--cream); color: var(--ink-block); border-radius: 0; }
#tks-map .leaflet-popup-content { margin: 14px 16px; line-height: 1.55; }
.tks-popup { display: flex; flex-direction: column; gap: 3px; font-family: var(--font-body); }
.tks-popup strong { font-family: var(--font-display); font-weight: 700; font-size: 18px; text-transform: uppercase; letter-spacing: .02em; }
.tks-popup span { font-size: 13px; color: var(--ink-65); }
.tks-popup a { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--green-deep); }
.tks-popup a:hover { text-decoration: underline; }
/* Cluster bubbles: green count circles matching the pin colour. */
.tks-cluster {
  background: var(--green);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tks-cluster span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.finder__maplabel {
  position: absolute;
  left: 14px; top: 14px;
  z-index: 500;
  pointer-events: none;
  background: rgba(20, 20, 18, .85);
  color: var(--cream);
  font-family: var(--font-mono);
  letter-spacing: .14em;
  font-size: 10px;
  padding: 8px 12px;
}
.finder__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  letter-spacing: .14em;
  font-size: 11px;
  color: var(--cream-50);
}
.finder__title {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .14em;
  line-height: inherit;
  text-transform: uppercase;
  color: inherit;
  margin: 0;
}
.finder__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--cream-14);
  max-height: 480px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--green) var(--ink-field);
}
.finder__list::-webkit-scrollbar { width: 6px; }
.finder__list::-webkit-scrollbar-track { background: var(--ink-field); }
.finder__list::-webkit-scrollbar-thumb {
  background: var(--cream-30);
  border-radius: 3px;
}
.finder__list::-webkit-scrollbar-thumb:hover { background: var(--green); }
.retailer {
  flex: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 6px;
  border-bottom: 1px solid rgba(244, 241, 234, .12);
  min-height: 78px;
}
.retailer__id { display: flex; gap: 14px; align-items: flex-start; }
.retailer__id svg { flex: none; margin-top: 3px; }
.retailer[hidden] { display: none; }
.retailer__name {
  display: block;
  font-weight: 600;
  font-size: 16px;
  transition: color 180ms ease;
}
a.retailer__name:hover { color: var(--green); }
.retailer__meta a { border-bottom: 1px solid transparent; transition: color 180ms ease, border-color 180ms ease; }
.retailer__meta a:hover { color: var(--green); border-bottom-color: var(--green); }
.retailer__addr { display: block; font-size: 13px; color: var(--cream-60); margin-top: 3px; }
.retailer__region {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--cream-60);
  border: 1px solid var(--cream-14);
  padding: 4px 9px;
  margin-top: 8px;
}
.retailer__actions { display: flex; gap: 8px; flex: none; align-items: center; }
.retailer__actions .btn--green { border: 1px solid var(--green); }
.retailer__call { white-space: nowrap; }
.retailer .btn { flex: none; min-height: 44px; padding: 11px 16px; font-size: 12px; letter-spacing: .12em; }
.retailer .btn--ghost { border-color: var(--cream-30); }
.retailer .btn--ghost:hover { border-color: var(--green); color: var(--green); background: transparent; }
.finder__empty { padding: 34px 6px; color: var(--cream-55); font-size: 15px; }
.finder__empty[hidden] { display: none; }
.finder__more {
  width: 100%;
  margin-top: 14px;
  min-height: 52px;
}
.finder__more[hidden] { display: none; }

/* --------------------------------------------------------------------------
   22. Forms / cards
   -------------------------------------------------------------------------- */
.card-dark {
  border: 2px solid var(--ink-block);
  background: #fff;
  color: var(--ink-block);
  box-shadow: 0 28px 60px rgba(20, 20, 18, .12);
}
.card-dark__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--ink-block);
  color: var(--cream);
  padding: 12px 20px;
  font-family: var(--font-mono);
  letter-spacing: .16em;
  font-size: 11px;
}
.card-dark__body {
  padding: clamp(30px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.card-dark h2 { margin-bottom: 22px; }
.card-dark__title,
.aside-note__title {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .16em;
  line-height: inherit;
  text-transform: uppercase;
  margin: 0;
}
.card-dark__bar .card-dark__title { color: inherit; }
.aside-note__title { color: var(--cream-50); margin-bottom: 10px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field > span,
.form-label {
  font-family: var(--font-mono);
  letter-spacing: .16em;
  font-size: 11px;
  color: var(--ink-65);
}
.field input,
.field select,
.field textarea {
  border: 2px solid var(--ink-block);
  background: #fff;
  color: var(--ink-block);
  padding: 15px 14px;
  font-size: 15px;
  min-height: 52px;
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-deep); }

.signup { display: flex; flex-direction: column; gap: 14px; }
.signup input {
  border: 2px solid var(--ink-block);
  background: var(--cream);
  color: var(--ink-block);
  padding: 18px 16px;
  font-size: 16px;
  min-height: 58px;
  outline: none;
}
.signup button { min-height: 58px; padding: 20px; letter-spacing: .18em; font-size: 16px; border: none; }
.fine { font-size: 13px; line-height: 1.6; color: var(--ink-55); }
.form-error { color: var(--red); font-size: 13px; font-weight: 600; }
.form-error[hidden] { display: none; }

.form-done {
  border: 2px dashed var(--ink-block);
  padding: 28px;
}
.form-done[hidden], .signup[hidden], .contact-form[hidden] { display: none; }
.form-done b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 10px;
}
.form-done p { font-size: 15px; line-height: 1.7; color: var(--ink-65); }

/* --------------------------------------------------------------------------
   23. Closing + footer
   -------------------------------------------------------------------------- */
.closing {
  background: var(--ink);
  padding: clamp(90px, 16vh, 200px) var(--gut) clamp(50px, 8vh, 90px);
  text-align: center;
}
.closing h2 { font-size: clamp(52px, 11vw, 200px); line-height: .92; }
.closing__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: clamp(32px, 5vh, 56px) 0;
}
.closing__mark img { width: 52px; height: 48px; object-fit: contain; }
.closing__mark span { font-family: var(--font-display); font-weight: 700; letter-spacing: .24em; font-size: 14px; }
.closing p { max-width: 560px; margin: 0 auto 18px; color: var(--cream-72); }
.closing h3 { font-size: clamp(28px, 4.4vw, 74px); line-height: 1; margin-bottom: clamp(38px, 6vh, 66px); }

.footer-bar {
  max-width: var(--wrap);
  margin-inline: auto;
  border-top: 1px solid var(--cream-14);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  letter-spacing: .12em;
  font-size: 11px;
  color: var(--cream-55);
  text-align: left;
}
.footer-bar--standalone {
  border-top: 1px solid var(--cream-14);
  padding: 24px var(--gut);
  max-width: none;
  /* This variant is a flex-column child; the inherited auto inline margins
     would cancel the stretch and shrink it to its content. */
  margin-inline: 0;
  width: 100%;
}
.footer-bar a:hover { color: var(--green); }
.footer-bar__badge { display: inline-flex; align-items: center; gap: 10px; }
.footer-bar__badge i {
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border: 1px solid var(--cream-40);
  border-radius: 50%;
}
.footer-bar__links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }

/* --------------------------------------------------------------------------
   24. Contact page
   -------------------------------------------------------------------------- */
.page { min-height: 100vh; display: flex; flex-direction: column; }
.page__head { position: relative; overflow: hidden; background: var(--ink-deep); }
.page__head > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page__head::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,11,.86) 0%, rgba(12,12,11,.55) 55%, rgba(12,12,11,.96) 100%),
    radial-gradient(75% 90% at 18% 50%, rgba(12,12,11,.6), transparent 72%);
}
.page__head > div {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin-inline: auto;
  padding: clamp(60px, 10vh, 120px) var(--gut) clamp(50px, 8vh, 90px);
}
.page__head h1 { font-size: clamp(46px, 7.5vw, 120px); line-height: .96; margin-bottom: 20px; }
.page__head .eyebrow { color: var(--lime); }
.page__head p { max-width: 560px; line-height: 1.78; color: var(--cream-85); }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.contact-card { background: var(--cream); color: var(--ink-block); border: 2px solid var(--ink-block); }
.contact-form { padding: clamp(22px, 3vw, 36px); display: flex; flex-direction: column; gap: 18px; }
.contact-form__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form button { border: none; background: var(--green-deep); color: var(--cream); min-height: 56px; padding: 19px; letter-spacing: .18em; font-size: 16px; }
.contact-form button:hover { background: var(--green); color: var(--ink); }

.channels { display: flex; flex-direction: column; border-top: 1px solid var(--cream-14); }
.channel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--cream-14);
  min-height: 72px;
  transition: background 200ms ease;
}
.channel:hover { background: rgba(244, 241, 234, .05); color: inherit; }
.channel__id { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.channel__id > span:last-child { min-width: 0; }
.channel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  flex: none;
}
.channel__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.channel__val { display: block; font-size: 14px; color: var(--cream-60); }
.channel__go { font-family: var(--font-mono); font-size: 11px; color: var(--green); white-space: nowrap; }

.aside-note {
  margin-top: 26px;
  background: var(--ink-panel);
  border: 1px solid rgba(244, 241, 234, .12);
  padding: 22px;
}
.aside-note > div {
  font-family: var(--font-mono);
  letter-spacing: .16em;
  font-size: 11px;
  color: var(--cream-50);
  margin-bottom: 10px;
}
.aside-note p { margin-bottom: 16px; font-size: 15px; line-height: 1.7; color: var(--cream-72); }

/* --------------------------------------------------------------------------
   25. Reveal animation
   -------------------------------------------------------------------------- */
[data-reveal].is-hidden {
  opacity: 0;
  transform: translateY(22px);
}
[data-reveal].is-armed {
  transition: opacity 520ms var(--ease), transform 560ms var(--ease);
}

/* --------------------------------------------------------------------------
   26. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1150px) {
  .hide-md { display: none !important; }
}

@media (max-width: 1000px) {
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(12, 12, 11, .97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--cream-14);
    padding: 8px clamp(16px, 3vw, 40px) 22px;
    font-size: 21px;
    letter-spacing: .12em;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
  }
  .nav__links a, .nav__links [aria-current] {
    padding: 18px 0;
    border-bottom: 1px solid var(--cream-14);
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__toggle { display: inline-flex; }
  .nav__cta { display: none; }
}

@media (max-width: 900px) {
  /* Type runs one step larger on phones: body up to 17px and every piece of
     mono microcopy off the 10-11px floor. */
  body { font-size: 17px; }
  .lede { font-size: 19px; }
  .eyebrow { font-size: 14px; }
  .nav__brand span { font-size: 17px; }
  .nav__end { font-size: 12px; }
  .ticker__track { font-size: 16px; }
  .hero__kicker { font-size: 16px; }
  .btn { font-size: 16px; }
  .btn--sm { font-size: 14px; }
  .btn--md { font-size: 15px; }
  .marker { font-size: 1.15em; }
  .split__num { font-size: 12px; }
  .split__tag { font-size: 14px; }
  .split__body p { font-size: 17px; }
  .strain__meta { font-size: 12px; }
  .drop__badge { font-size: 12px; }
  .drop__cross { font-size: 15px; }
  .grow__label, .flower__tag, .finder__maplabel { font-size: 12px; }
  .chip { font-size: 12px; }
  .grow__note div:first-child { font-size: 12px; }
  .social-card__role { font-size: 12px; }
  .retailer__region { font-size: 12px; }
  .aside-note__title { font-size: 12px; }
  .retailer__addr { font-size: 14px; }
  .retailer__name { font-size: 17px; }
  .finder__head, .finder__title { font-size: 12px; }
  .card-dark__bar, .card-dark__title { font-size: 12px; }
  /* One label is enough on a phone-width bar; two wrapped into four lines. */
  .card-dark__bar > span:last-child { display: none; }
  .form-label, .field > span { font-size: 12px; }
  .fine { font-size: 14px; }
  .gate__fine { font-size: 12px; }
  .footer-bar { font-size: 12px; }
  .channel__val { font-size: 15px; }
  .channel__go { font-size: 12px; }
  .aside-note > div { font-size: 12px; }
  .aside-note p { font-size: 16px; }
  .form-done p { font-size: 16px; }
  .rail { display: none !important; }
  .hide-sm { display: none !important; }
  .split { flex-direction: column; }
  .split__panel { min-height: 460px; }
  .split__panel::after {
    background: linear-gradient(180deg, rgba(12,12,11,.5), rgba(12,12,11,.95) 52%);
  }
  /* The hero photo's mid-tones sit right behind the intro copy on phones. */
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(12,12,11,.9) 0%, rgba(12,12,11,.72) 34%, rgba(12,12,11,.88) 70%, rgba(12,12,11,.98) 100%);
  }
  /* Standalone on mobile, the note was a half-empty black box. */
  .grow__note { min-height: 0; justify-content: flex-start; }
  /* The buildings sit at the image's edges; centred cover shows only sky.
     Shift toward the left block so the fire escapes are actually visible,
     and ease the sepia/overlay so they read through. */
  .roots { min-height: 72svh; }
  .roots__bg img { object-position: 16% 50%; }
  /* Three full-width lookbook shots would be a long scroll on a phone, so
     the row becomes a snap-scrolling rail you swipe through instead. */
  .kolektion__head { grid-template-columns: 1fr; align-items: start; }
  /* Three cultivar cards stacked full-height is a long scroll; two up keeps
     the set visible on a phone, and the macro shots read fine at that size. */
  .drop__head { align-items: start; }
  .drop__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .drop__cardbody { padding: 14px 14px 18px; }
  .drop__cardbody p { font-size: 14px; }
  .kolektion__gallery {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .kolektion__gallery::-webkit-scrollbar { display: none; }
  .kolektion__gallery figure { scroll-snap-align: start; }
  .kolektion__gallery figcaption { font-size: 12px; }
  .split__panel:not(:last-child) { border-right: none; border-bottom: 1px solid var(--cream-14); }
  .split__panel:hover, .split__panel:focus-within { flex: 1; }
  .grid--3-2, .grid--1-1, .grid--flower, .grid--kol, .grid--culture,
  .grow-grid, .finder__layout, .contact-grid, .social-grid,
  .contact-form__pair, .roots__body, .drop__head {
    grid-template-columns: 1fr;
  }
  .hero__body { padding-top: 128px; }
  .hero h1 { max-width: 100%; }
  .hero__copy { max-width: 100%; }
  .social-card--tilt-a { margin-top: 0; transform: none; }
  .social-card--tilt-b { transform: none; }
  .collage { padding: 0; }
  .collage__b { margin-left: 46%; }
  .drop__ghost { display: none; }
  /* Reading order on phones: heading, then words, then imagery. The flower
     section led with a full-screen pack shot between its heading and its
     copy, and the collab intro wedged the lockup card between eyebrow and
     title. */
  .grid--flower .flower__packs { order: 2; }
  .collab__intro { display: flex; flex-direction: column; align-items: flex-start; }
  .collab__intro .eyebrow { order: 1; }
  .collab__intro h2 { order: 2; }
  .collab__intro .collab__marks { order: 3; margin: 6px 0 26px; gap: 20px; }
  .collab__marks img { height: clamp(68px, 19vw, 96px); }
  .collab__intro p { order: 4; }

  .finder__mapwrap { min-height: 380px; }
  /* Nine region chips stacked four rows deep buried the map. One swipeable
     line instead — full-bleed so the cut-off chip signals there is more. */
  .finder__search { flex-basis: 100%; max-width: none; }
  .finder__filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: calc(100% + 2 * var(--gut));
    margin-inline: calc(-1 * var(--gut));
    padding: 4px var(--gut);
    mask-image: linear-gradient(90deg, transparent, #000 var(--gut), #000 calc(100% - 44px), transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 var(--gut), #000 calc(100% - 44px), transparent);
  }
  .finder__filters::-webkit-scrollbar { display: none; }
  .filter {
    white-space: nowrap;
    padding: 12px 16px;
    min-height: 44px;
    font-size: 13px;
  }
  .finder__list { max-height: none; overflow-y: visible; }
  .footer-bar { justify-content: center; text-align: center; }
  .footer-bar__links { justify-content: center; }
}

@media (max-width: 560px) {
  .channel__val { overflow-wrap: anywhere; }
  .strain { position: relative; align-items: flex-start; }
  .strain__thumb { width: 92px; height: 92px; }
  .strain .chip {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 12px;
    padding: 3px 6px;
    letter-spacing: .08em;
  }
  .strain__meta { font-size: 12px; letter-spacing: .08em; }
  .retailer { flex-direction: column; align-items: flex-start; gap: 14px; }
  .retailer__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .retailer__actions .btn { width: 100%; min-height: 48px; font-size: 13px; }
  .retailer__actions .btn:only-child { grid-column: 1 / -1; }
  .gate__actions .btn { min-width: 100%; }
  /* Stacked CTAs at mixed widths read as clutter; go full-width. */
  .btn-row { flex-direction: column; width: 100%; }
  .btn-row .btn { width: 100%; }
  /* Hero eyebrow: the h1 carries the message; the tagline half wrapped into
     a dangling slash-led line at this width. */
  .hero .eyebrow em { display: none; }
  /* "+ Big Apple" pointer: name and cross wrap as a column, not mid-name. */
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal].is-hidden { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
  .hero__smoke { display: none; }
}

@media print {
  .nav, .rail, .gate, .ticker { display: none !important; }
  body { background: #fff; color: #000; }
}
