/* ============================================================
   SEEDSTICKS — storefront design system
   Built from the brand book: Filson Pro (stand-in: Hanken Grotesk),
   warm sand ground, full-spectrum accents, hand-sketched botanicals.
   ============================================================ */

/* ---- Tokens ---------------------------------------------- */
:root {
  /* warm-tinted neutrals — never pure black/white */
  --sand: #ece6da;
  --sand-2: #e7e0d1;
  --sand-deep: #e0d7c4;
  --paper: #f6f1e7;
  --paper-hi: #fbf8f0;
  --ink: #2e2b26;
  --ink-soft: #423d35;
  --body: #5b5449;
  --muted: #8c8373;
  --hair: #d9d0be;
  --hair-soft: #e4dccd;

  /* brand spectrum (slightly desaturated per the book) */
  --leaf: #79b443;
  --crimson: #ce2a50;
  --teal: #2f8da0;
  --marigold: #eba029;
  --magenta: #c0439a;
  --pumpkin: #e4602b;
  --sage: #4e8574;
  --aubergine: #4a2c56;

  --accent: var(--sage);
  --accent-ink: color-mix(in oklab, var(--accent) 62%, var(--ink));
  --accent-tint: color-mix(in oklab, var(--accent) 12%, var(--paper));
  --accent-tint-2: color-mix(in oklab, var(--accent) 20%, var(--paper));

  --font-sans: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Bodoni Moda", "Times New Roman", serif;

  /* fluid type scale, ~1.25+ ratio */
  --t-xs: .78rem;
  --t-sm: .875rem;
  --t-base: 1rem;
  --t-md: clamp(1.06rem, 1rem + .3vw, 1.2rem);
  --t-lg: clamp(1.3rem, 1.15rem + .7vw, 1.6rem);
  --t-xl: clamp(1.7rem, 1.4rem + 1.4vw, 2.35rem);
  --t-2xl: clamp(2.3rem, 1.7rem + 2.7vw, 3.6rem);
  --t-3xl: clamp(2.6rem, 1.8rem + 3.4vw, 4.4rem);
  --t-hero: clamp(2.8rem, 1.7rem + 4.1vw, 5.4rem);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 72px);
  --radius: 14px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --ease: cubic-bezier(.16, 1, .3, 1);      /* ease-out expo-ish */
  --ease-soft: cubic-bezier(.33, 1, .68, 1);

  --shadow-1: 0 1px 2px rgba(46, 43, 38, .05), 0 6px 16px -8px rgba(46, 43, 38, .16);
  --shadow-2: 0 2px 6px rgba(46, 43, 38, .06), 0 24px 48px -20px rgba(46, 43, 38, .28);
  --shadow-lift: 0 3px 8px rgba(46, 43, 38, .08), 0 40px 70px -34px rgba(46, 43, 38, .38);
}

/* ---- Per-range accent map --------------------------------
   Setting --accent lets --accent-ink / --accent-tint recompute
   at every use-site, so one attribute themes a whole component. */
[data-accent="leaf"] { --accent: var(--leaf); }
[data-accent="crimson"] { --accent: var(--crimson); }
[data-accent="teal"] { --accent: var(--teal); }
[data-accent="marigold"] { --accent: var(--marigold); }
[data-accent="magenta"] { --accent: var(--magenta); }
[data-accent="pumpkin"] { --accent: var(--pumpkin); }
[data-accent="sage"] { --accent: var(--sage); }
[data-accent="aubergine"] { --accent: var(--aubergine); }

.word { display: inline-block; will-change: transform; }
.hero h1 .line { display: inline; }

/* ---- Reset / base ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  font-size: var(--t-base);
  line-height: 1.62;
  color: var(--body);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* faint paper grain for warmth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }
/* Botanical SVGs carry a viewBox but no intrinsic size; fill container width by
   default. Fixed-height containers (frieze, packs, thumbs) override below. */
.botanical-svg { width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2.5px solid var(--accent-ink); outline-offset: 3px; border-radius: 3px; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.02; font-weight: 800; letter-spacing: -.02em; }

/* ---- Layout helpers -------------------------------------- */
.wrap { width: min(100% - var(--gutter) * 2, var(--maxw)); margin-inline: auto; }
.wrap-wide { width: min(100% - var(--gutter) * 2, 1440px); margin-inline: auto; }
.section { padding-block: clamp(52px, 6vw, 104px); position: relative; z-index: 2; }
.section--tight { padding-block: clamp(44px, 5vw, 84px); }
.stack > * + * { margin-top: 1rem; }

.kicker {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: var(--t-sm); font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent-ink);
}
.kicker::before { content: ""; width: 26px; height: 1.5px; background: currentColor; opacity: .7; }
.eyebrow { font-size: var(--t-sm); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.lede { font-size: var(--t-md); color: var(--ink-soft); max-width: 56ch; line-height: 1.6; }
.serif { font-family: var(--font-serif); font-weight: 500; letter-spacing: 0; }
.italic { font-style: italic; }

/* ---- Buttons --------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 50px; padding: 0 1.5em; border-radius: 999px;
  font-weight: 700; font-size: var(--t-sm); letter-spacing: .01em;
  transition: transform .5s var(--ease), background-color .3s var(--ease), color .3s, box-shadow .5s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ink); color: var(--paper-hi); }
.btn--primary:hover { background: var(--accent-ink); box-shadow: var(--shadow-2); transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -16px var(--accent); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--hair); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); background: color-mix(in oklab, var(--ink) 5%, transparent); }
.btn--light { background: var(--paper-hi); color: var(--ink); box-shadow: var(--shadow-1); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn--sm { min-height: 42px; padding: 0 1.15em; }
.btn--block { width: 100%; }
.btn .arrow { transition: transform .5s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.textlink { font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: .4em; }
.textlink::after { content: ""; height: 1.5px; width: 0; background: var(--accent); transition: width .4s var(--ease); }
.textlink:hover::after { width: 100%; }

/* ---- Header ---------------------------------------------- */
.topbar {
  background: var(--ink); color: color-mix(in oklab, var(--paper) 88%, transparent);
  font-size: var(--t-xs); letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
}
.topbar .wrap-wide { display: flex; align-items: center; justify-content: center; gap: 1.4em; height: 40px; text-align: center; }
.topbar .sep { opacity: .4; }
.topbar span:not(.sep) { display: inline-flex; align-items: center; gap: .5em; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in oklab, var(--sand) 82%, transparent);
  backdrop-filter: saturate(1.3) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background-color .3s, box-shadow .4s;
}
.site-header.is-stuck { border-color: var(--hair-soft); box-shadow: 0 10px 30px -24px rgba(46, 43, 38, .5); }
.nav { display: flex; align-items: center; gap: 1.6rem; height: 74px; }
.nav__links { display: flex; align-items: center; gap: 1.75rem; margin-inline: auto; }
.nav__links a { font-weight: 600; font-size: var(--t-sm); color: var(--ink-soft); position: relative; padding: .3em 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--accent); transition: width .35s var(--ease); }
.nav__links a:hover, .nav__links a[aria-current] { color: var(--ink); }
.nav__links a:hover::after, .nav__links a[aria-current]::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: .35rem; }
.icon-btn {
  width: 44px; height: 44px; border-radius: 999px; display: inline-grid; place-items: center; color: var(--ink);
  transition: background-color .3s, transform .3s var(--ease);
}
.icon-btn:hover { background: color-mix(in oklab, var(--ink) 7%, transparent); }
.icon-btn svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: 4px; right: 4px; min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--crimson); color: #fff; border-radius: 999px; font-size: 11px; font-weight: 800;
  display: grid; place-items: center; line-height: 1; transform: scale(0); transition: transform .4s var(--ease);
}
.cart-count.on { transform: scale(1); }
.nav__toggle { display: none; }

/* ---- Logo lockup ----------------------------------------- */
.logo { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1; color: var(--ink); }
.logo__strap { font-size: 9px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; margin-left: 2px; }
.logo__mark { display: inline-flex; align-items: baseline; gap: 0; }
.logo__word { font-family: var(--font-serif); font-weight: 600; font-size: 1.6rem; letter-spacing: .01em; text-transform: uppercase; color: var(--ink); position: relative; }
.logo__word .seedling { position: absolute; left: 50%; bottom: 68%; width: 20px; transform: translateX(-46%); color: var(--sage); }
.logo__reg { font-family: var(--font-sans); font-size: .6rem; font-weight: 700; vertical-align: super; margin-left: 1px; color: var(--muted); }
.logo:hover .logo__word .seedling { animation: sway 1.4s var(--ease); }
@keyframes sway { 30% { transform: translateX(-46%) rotate(-8deg); } 60% { transform: translateX(-46%) rotate(6deg); } }

/* ---- Hero ------------------------------------------------ */
.hero { position: relative; overflow: hidden; z-index: 2; min-height: calc(100svh - 116px); display: flex; align-items: stretch; }
.hero > .wrap-wide { display: flex; flex-direction: column; padding-block: clamp(14px, 2.2vh, 34px) 0; }
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(24px, 4vw, 56px); align-items: center; flex: 1 1 auto; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .7em; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: var(--t-sm); color: var(--ink-soft); }
.hero__eyebrow .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--leaf); }
.hero h1 { font-size: var(--t-hero); font-weight: 800; letter-spacing: -.035em; line-height: 1.04; margin-top: .35em; }
.hero h1 .em { font-family: var(--font-serif); font-weight: 500; font-style: italic; letter-spacing: -.01em; color: var(--sage); }
.hero__sub { margin-top: 1.1em; font-size: var(--t-md); max-width: 44ch; color: var(--ink-soft); }
.hero__cta { margin-top: clamp(1.3em, 2.5vh, 1.9em); display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.hero__proof { margin-top: clamp(1.4em, 2.6vh, 2em); display: flex; gap: clamp(1rem, 3vw, 2.4rem); flex-wrap: wrap; }
.hero__proof div { display: flex; flex-direction: column; }
.hero__proof b { font-size: var(--t-lg); color: var(--ink); font-weight: 800; letter-spacing: -.02em; }
.hero__proof span { font-size: var(--t-xs); text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }

/* hero stick cluster */
.hero__stage { position: relative; min-height: clamp(300px, 44vh, 480px); display: grid; place-items: center; }
.stick-cluster { position: relative; width: min(100%, 420px); aspect-ratio: 1 / 1.05; }
.stick-cluster .stick { position: absolute; width: 30%; }
.stick-cluster .s1 { left: 6%; top: 12%; transform: rotate(-9deg); z-index: 2; }
.stick-cluster .s2 { left: 36%; top: 2%; transform: rotate(-1deg); z-index: 3; }
.stick-cluster .s3 { left: 64%; top: 14%; transform: rotate(8deg); z-index: 2; }
.hero__halo { position: absolute; inset: -8% -6% -12% -6%; z-index: 0;
  background: radial-gradient(60% 60% at 50% 42%, color-mix(in oklab, var(--marigold) 20%, transparent), transparent 70%); filter: blur(6px); }
.hero__frieze { margin-top: auto; padding-top: clamp(14px, 2.2vh, 30px); }

/* botanical frieze — the signature bottom border */
.frieze { display: flex; align-items: flex-end; justify-content: space-between; gap: clamp(6px, 2vw, 24px); }
.frieze .stem { flex: 1 1 0; height: clamp(54px, 8vw, 112px); display: flex; align-items: flex-end; justify-content: center; }
.frieze .stem svg { height: 100%; width: auto; }
.frieze .c-leaf { color: var(--sage); }
.frieze .c-poppy { color: var(--crimson); }
.frieze .c-sun { color: var(--marigold); }
.frieze .c-herb { color: var(--leaf); }
.frieze .c-lav { color: var(--magenta); }
.frieze .c-tom { color: var(--pumpkin); }
.frieze .c-straw { color: var(--crimson); }
.frieze .c-daisy { color: var(--teal); }
.frieze .c-wheat { color: var(--marigold); }
@media (max-width: 820px) { .frieze .stem:nth-child(n+7) { display: none; } }
@media (max-width: 520px) { .frieze .stem:nth-child(n+5) { display: none; } }

/* ---- The Seedstick pack device --------------------------- */
.stick {
  --c: var(--accent);
  position: relative; display: block; width: 100%; aspect-ratio: 1 / 2.7; container-type: inline-size;
  background: color-mix(in oklab, var(--c) 84%, var(--ink)); color: #fff; border-radius: 12px 12px 4px 4px;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
  padding: 13% 9% 20%; overflow: hidden;
  box-shadow: var(--shadow-2);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.stick::after { /* subtle inner board edge */
  content: ""; position: absolute; inset: 7px 7px 10px; border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 8px 8px 2px 2px; clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%); pointer-events: none;
}
.stick__strap { font-size: 6cqw; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; opacity: .82; line-height: 1.4; }
.stick__word { font-family: var(--font-serif); font-weight: 600; text-transform: uppercase; letter-spacing: .01em; font-size: 12cqw; margin-top: 3%; white-space: nowrap; }
.stick__art { flex: 1; width: 76%; margin: 6% 0; color: rgba(255, 255, 255, .92); display: flex; align-items: center; justify-content: center; }
.stick__art svg { height: 100%; width: auto; stroke-width: 2.2; }
.stick__range { font-weight: 800; text-transform: uppercase; letter-spacing: .03em; font-size: 10cqw; line-height: 1.08; }
.stick__seeds { margin-top: 4%; font-size: 6cqw; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }
.stick__seeds::before { content: ""; display: block; width: 26px; height: 1px; background: rgba(255, 255, 255, .5); margin: 5px auto; }

/* ---- Marquee / ticker ------------------------------------ */
.ticker { background: var(--ink); color: var(--paper); overflow: hidden; padding-block: 16px; }
.ticker__track { display: flex; gap: 3rem; width: max-content; animation: ticker 34s linear infinite; }
.ticker span { font-family: var(--font-serif); font-style: italic; font-size: var(--t-lg); white-space: nowrap; display: inline-flex; align-items: center; gap: 3rem; opacity: .92; }
.ticker span::after { content: "\2733"; font-style: normal; font-size: .7em; color: var(--marigold); }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* ---- Section header -------------------------------------- */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(32px, 5vw, 60px); }
.sec-head__title { font-size: var(--t-2xl); max-width: 18ch; }
.sec-head__title .serif { color: var(--accent-ink); }
.sec-head p { max-width: 42ch; color: var(--ink-soft); }

/* ---- Steps (tear/plant/grow) ----------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 40px); }
.step { position: relative; padding-top: 2.4rem; }
.step__n { font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1; color: var(--accent); opacity: .9; }
.step h3 { font-size: var(--t-lg); margin-top: .5rem; }
.step p { margin-top: .5rem; max-width: 32ch; }
.step__rule { position: absolute; top: 3.4rem; left: -1.2rem; width: 1px; height: 60%; background: var(--hair); }
.step:first-child .step__rule { display: none; }
.steps[data-accent] .step:nth-child(1) { --accent: var(--pumpkin); }
.steps .step:nth-child(1) .step__n { color: var(--pumpkin); }
.steps .step:nth-child(2) .step__n { color: var(--leaf); }
.steps .step:nth-child(3) .step__n { color: var(--magenta); }

/* ---- Range collections (varied bento) -------------------- */
.ranges { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(0, 1fr); gap: clamp(12px, 1.6vw, 20px); }
.range-card {
  --c: var(--accent);
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: color-mix(in oklab, var(--c) 15%, var(--paper));
  color: var(--ink); padding: clamp(20px, 2.4vw, 32px); min-height: 240px;
  display: flex; flex-direction: column; justify-content: flex-end;
  isolation: isolate; transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.range-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.range-card__art { position: absolute; z-index: -1; color: var(--c); opacity: .9; }
.range-card__count { font-size: var(--t-xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-ink); }
.range-card h3 { font-size: var(--t-xl); letter-spacing: -.03em; margin-top: .1em; }
.range-card p { margin-top: .5em; font-size: var(--t-sm); color: var(--ink-soft); max-width: 30ch; }
.range-card .textlink { margin-top: 1.1em; }
.range-card__tag { position: absolute; top: 20px; left: 22px; width: 34px; height: 34px; border-radius: 999px; background: var(--c); }
/* bento placement */
.range-card.c1 { grid-column: span 4; grid-row: span 2; }
.range-card.c1 .range-card__art { right: -4%; top: 4%; width: 44%; }
.range-card.c2 { grid-column: span 2; grid-row: span 2; }
.range-card.c2 .range-card__art { right: -18%; bottom: -6%; width: 74%; }
.range-card.c3 { grid-column: span 2; }
.range-card.c3 .range-card__art { right: -14%; top: -10%; width: 60%; }
.range-card.c4 { grid-column: span 2; }
.range-card.c4 .range-card__art { right: -12%; bottom: -18%; width: 62%; }
.range-card.c5 { grid-column: span 2; }
.range-card.c5 .range-card__art { right: -14%; top: -12%; width: 60%; }
.range-card.c6 { grid-column: span 6; min-height: 200px; }
.range-card.c6 { flex-direction: row; align-items: center; justify-content: space-between; }
.range-card.c6 .range-card__body { max-width: 46ch; }
.range-card.c6 .range-card__art { position: static; z-index: 0; width: clamp(120px, 20vw, 220px); flex-shrink: 0; }

/* ---- Product cards --------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: clamp(16px, 2vw, 28px); }
.pcard { position: relative; display: flex; flex-direction: column; }
.pcard__media {
  --c: var(--accent);
  position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: 26px;
  background: color-mix(in oklab, var(--c) 13%, var(--paper)); aspect-ratio: 4 / 5;
  display: grid; place-items: center; transition: box-shadow .6s var(--ease); isolation: isolate;
}
.pcard__media .stick { width: auto; height: 86%; position: relative; z-index: 1; pointer-events: none; transition: transform .7s var(--ease); }
.pcard:hover .pcard__media .stick { transform: translateY(-8px) rotate(-2deg); }
.pcard__link { position: absolute; inset: 0; z-index: 2; border-radius: inherit; }
.pcard__media::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background: radial-gradient(70% 55% at 50% 40%, color-mix(in oklab, var(--c) 22%, transparent), transparent 72%); }
.pcard:hover .pcard__media { box-shadow: var(--shadow-2); }
.pcard__badge { position: absolute; top: 16px; left: 16px; z-index: 3; font-size: var(--t-xs); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; background: var(--ink); color: var(--paper-hi); padding: 6px 12px; border-radius: 999px; }
.pcard__badge.is-new { background: var(--leaf); color: #fff; }
.pcard__badge.is-gift { background: var(--aubergine); color: #fff; }
.pcard__quick {
  position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 3;
  opacity: 0; transform: translateY(10px); transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.pcard:hover .pcard__quick, .pcard:focus-within .pcard__quick { opacity: 1; transform: none; }
.pcard__info { padding: 16px 4px 0; display: flex; flex-direction: column; gap: 3px; }
.pcard__range { font-size: var(--t-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-ink); }
.pcard__name { font-size: var(--t-md); font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.pcard__rating { display: inline-flex; align-items: center; gap: 5px; margin-top: 2px; font-size: var(--t-xs); color: var(--muted); font-weight: 600; }
.pcard__rating .stars { color: var(--marigold); display: inline-flex; gap: 1px; }
.pcard__rating .stars svg { width: 13px; height: 13px; fill: currentColor; }
.pcard__rating b { color: var(--ink); }
.pcard__row { display: flex; align-items: baseline; justify-content: space-between; margin-top: 4px; }
.pcard__price { font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; }
.pcard__seeds { font-size: var(--t-xs); color: var(--muted); font-weight: 600; }

/* ---- Filter chips ---------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  min-height: 42px; padding: 0 1.05em; border-radius: 999px; font-weight: 700; font-size: var(--t-sm);
  color: var(--ink-soft); background: var(--paper); box-shadow: inset 0 0 0 1.5px var(--hair);
  transition: all .3s var(--ease); display: inline-flex; align-items: center; gap: .5em;
}
.chip .swatch { width: 11px; height: 11px; border-radius: 999px; background: var(--c, var(--muted)); }
.chip:hover { box-shadow: inset 0 0 0 1.5px var(--ink); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--paper-hi); box-shadow: none; }
.chip[aria-pressed="true"] .swatch { outline: 2px solid rgba(255, 255, 255, .5); }

/* ---- PDP ------------------------------------------------- */
.pdp { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
.pdp__media {
  --c: var(--accent); position: relative; border-radius: var(--radius-xl); overflow: hidden;
  background: color-mix(in oklab, var(--c) 14%, var(--paper)); padding: clamp(24px, 3vw, 44px);
  display: grid; place-items: center; min-height: auto; position: sticky; top: 96px;
}
.pdp__media > div:first-child { width: 100%; display: grid; place-items: center; }
/* Height-driven so the whole pack always fits within one viewport */
.pdp__media .stick { width: auto; height: min(58vh, 468px); }
.pdp__media::before { content: ""; position: absolute; inset: 0; opacity: .55;
  background: radial-gradient(60% 50% at 50% 40%, color-mix(in oklab, var(--c) 24%, transparent), transparent 72%); }
.pdp__thumbs { position: absolute; left: 22px; bottom: 22px; display: flex; gap: 10px; }
.pdp__thumb { width: 52px; height: 52px; border-radius: 12px; background: var(--paper-hi); display: grid; place-items: center; box-shadow: var(--shadow-1); color: var(--c); }
.pdp__thumb svg { height: 60%; }
.pdp__range { color: var(--accent-ink); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: var(--t-sm); }
.pdp h1 { font-size: var(--t-2xl); margin-top: .3em; letter-spacing: -.03em; }
.pdp__price { display: flex; align-items: baseline; gap: .7rem; margin-top: .7em; }
.pdp__price b { font-size: var(--t-xl); color: var(--ink); font-weight: 800; font-variant-numeric: tabular-nums; }
.pdp__price .unit { color: var(--muted); font-weight: 600; font-size: var(--t-sm); }
.pdp__desc { margin-top: 1.3em; font-size: var(--t-md); color: var(--ink-soft); max-width: 48ch; }
.spec { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 1.8em; background: var(--hair-soft); border-radius: var(--radius); overflow: hidden; }
.spec div { background: var(--paper); padding: 14px 18px; }
.spec dt { font-size: var(--t-xs); text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.spec dd { font-weight: 700; color: var(--ink); margin-top: 3px; }
.buybar { display: flex; gap: .8rem; align-items: stretch; margin-top: 1.8em; flex-wrap: wrap; }
.qty { display: inline-flex; align-items: center; border-radius: 999px; box-shadow: inset 0 0 0 1.5px var(--hair); background: var(--paper); }
.qty button { width: 48px; height: 52px; display: grid; place-items: center; color: var(--ink); font-size: 1.2rem; border-radius: 999px; }
.qty button:hover { background: color-mix(in oklab, var(--ink) 6%, transparent); }
.qty input { width: 40px; text-align: center; border: none; background: none; font-weight: 800; color: var(--ink); font-size: var(--t-md); -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }

.feature-list { margin-top: 2.2em; display: grid; gap: 2px; }
.feature-list li { display: flex; gap: .9rem; align-items: flex-start; padding: 12px 0; border-top: 1px solid var(--hair-soft); }
.feature-list li:last-child { border-bottom: 1px solid var(--hair-soft); }
.feature-list .tick { flex-shrink: 0; width: 26px; height: 26px; border-radius: 999px; background: var(--accent-tint-2); color: var(--accent-ink); display: grid; place-items: center; margin-top: 1px; }
.feature-list .tick svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.4; }
.feature-list span { color: var(--ink-soft); font-size: var(--t-sm); }

/* ---- Accordion ------------------------------------------- */
.acc { border-top: 1px solid var(--hair); margin-top: 2.4em; }
.acc__item { border-bottom: 1px solid var(--hair); }
.acc__head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 20px 4px; text-align: left; font-weight: 700; color: var(--ink); font-size: var(--t-md); }
.acc__icon { width: 26px; height: 26px; flex-shrink: 0; position: relative; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; inset: 50% 4px auto; height: 2px; background: var(--accent-ink); transition: transform .4s var(--ease); }
.acc__icon::after { transform: rotate(90deg); }
.acc__item[aria-expanded="true"] .acc__icon::after { transform: rotate(0); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.acc__item[aria-expanded="true"] .acc__panel { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }
.acc__panel p { padding: 0 4px 22px; max-width: 60ch; color: var(--ink-soft); }

/* ---- Sustainability band --------------------------------- */
.band { background: var(--ink); color: var(--paper); border-radius: var(--radius-xl); overflow: hidden; position: relative; }
.band__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 60px); align-items: center; padding: clamp(36px, 5vw, 72px); }
.band h2 { color: var(--paper-hi); font-size: var(--t-2xl); }
.band h2 .serif { color: var(--marigold); }
.band p { color: color-mix(in oklab, var(--paper) 78%, transparent); max-width: 46ch; margin-top: 1em; }
.band__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: color-mix(in oklab, var(--paper) 16%, transparent); border-radius: var(--radius-lg); overflow: hidden; }
.band__stats div { background: var(--ink-soft); padding: 22px; }
.band__stats b { display: block; font-family: var(--font-serif); font-size: var(--t-2xl); color: var(--paper-hi); line-height: 1; }
.band__stats span { font-size: var(--t-xs); text-transform: uppercase; letter-spacing: .1em; color: color-mix(in oklab, var(--paper) 70%, transparent); font-weight: 600; margin-top: 8px; display: block; }
.band__art { position: absolute; right: -3%; bottom: -10%; width: 30%; color: color-mix(in oklab, var(--paper) 20%, transparent); z-index: 0; }

/* ---- Testimonial ----------------------------------------- */
.quote { text-align: center; max-width: 24ch; margin-inline: auto; }
.quote blockquote { font-family: var(--font-serif); font-size: var(--t-2xl); line-height: 1.12; color: var(--ink); letter-spacing: -.01em; }
.quote figcaption { margin-top: 1.4em; font-weight: 700; color: var(--ink); font-size: var(--t-sm); letter-spacing: .04em; }
.quote figcaption span { display: block; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-size: var(--t-xs); margin-top: 4px; }
.quote__stars { color: var(--marigold); display: flex; gap: 4px; justify-content: center; margin-bottom: 1.2em; }

/* ---- Newsletter ------------------------------------------ */
.news { background: color-mix(in oklab, var(--sage) 16%, var(--paper)); border-radius: var(--radius-xl); padding: clamp(36px, 5vw, 72px); position: relative; overflow: hidden; }
.news__grid { display: grid; grid-template-columns: 1fr auto; gap: clamp(20px, 3vw, 48px); align-items: center; position: relative; z-index: 2; }
.news h2 { font-size: var(--t-2xl); max-width: 16ch; }
.news p { margin-top: .7em; color: var(--ink-soft); max-width: 40ch; }
.news form { display: flex; gap: .6rem; flex-wrap: wrap; }
.news input { min-height: 52px; padding: 0 1.2em; border-radius: 999px; border: none; background: var(--paper-hi); box-shadow: inset 0 0 0 1.5px var(--hair); min-width: 240px; font: inherit; color: var(--ink); }
.news input:focus-visible { box-shadow: inset 0 0 0 2px var(--sage); outline: none; }
.news__art { position: absolute; right: -2%; bottom: -18%; width: 26%; color: var(--sage); opacity: .5; z-index: 1; }

/* ---- Footer ---------------------------------------------- */
.footer { background: var(--ink); color: color-mix(in oklab, var(--paper) 76%, transparent); position: relative; z-index: 2; margin-top: clamp(60px, 8vw, 120px); }
.footer__frieze { color: color-mix(in oklab, var(--paper) 16%, transparent); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); padding-block: clamp(48px, 6vw, 84px); }
.footer h4 { color: var(--paper-hi); font-size: var(--t-sm); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.2em; }
.footer a { display: block; padding: 6px 0; color: color-mix(in oklab, var(--paper) 72%, transparent); font-size: var(--t-sm); transition: color .2s; }
.footer a:hover { color: var(--paper-hi); }
.footer .logo__word { color: var(--paper-hi); }
.footer .logo__strap { color: color-mix(in oklab, var(--paper) 55%, transparent); }
.footer__blurb { max-width: 34ch; margin-top: 1.2em; line-height: 1.6; font-size: var(--t-sm); }
.footer__bottom { border-top: 1px solid color-mix(in oklab, var(--paper) 14%, transparent); padding-block: 24px; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: var(--t-xs); color: color-mix(in oklab, var(--paper) 60%, transparent); }
.footer__social { display: flex; gap: .5rem; margin-top: 1.4em; }
.footer__social a { width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center; box-shadow: inset 0 0 0 1.5px color-mix(in oklab, var(--paper) 24%, transparent); }
.footer__social svg { width: 17px; height: 17px; fill: currentColor; }
.footer__social a:hover { background: color-mix(in oklab, var(--paper) 10%, transparent); }

/* ---- Cart drawer ----------------------------------------- */
.drawer-scrim { position: fixed; inset: 0; z-index: 90; background: rgba(46, 43, 38, .5); opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s; backdrop-filter: blur(2px); }
.drawer-scrim.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 100; width: min(440px, 92vw);
  background: var(--sand); box-shadow: var(--shadow-lift); transform: translateX(101%);
  transition: transform .6s var(--ease); display: flex; flex-direction: column;
}
.drawer.open { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--hair); }
.drawer__head h2 { font-size: var(--t-lg); }
.drawer__items { flex: 1; overflow-y: auto; padding: 8px 24px; }
.drawer__empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.drawer__empty svg { width: 80px; margin: 0 auto 16px; color: var(--sage); opacity: .7; }
.line { display: grid; grid-template-columns: 58px 1fr auto; gap: 14px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--hair-soft); }
.line__thumb { --c: var(--accent); width: 58px; height: 76px; border-radius: 8px; background: color-mix(in oklab, var(--c) 84%, var(--ink)); display: grid; place-items: center; color: rgba(255, 255, 255, .92); clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%); }
.line__thumb svg { height: 54%; }
.line__name { font-weight: 700; color: var(--ink); font-size: var(--t-sm); }
.line__range { font-size: var(--t-xs); color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.line__brand { display: inline-flex; align-items: center; gap: .4em; margin-top: 4px; font-size: var(--t-xs); font-weight: 700; color: var(--accent-ink, var(--sage)); background: var(--accent-tint, color-mix(in oklab, var(--sage) 12%, var(--paper))); padding: 3px 9px; border-radius: 999px; }
.line__unit { font-size: var(--t-xs); color: var(--muted); font-weight: 600; margin-top: 2px; }
.line__viewproof { display: inline-flex; align-items: center; gap: 3px; margin-top: 6px; background: none; border: none; padding: 0; font: inherit; font-size: var(--t-xs); font-weight: 700; color: var(--sage); cursor: pointer; text-decoration: underline; text-underline-offset: 2px; }
.line__viewproof:hover { color: var(--ink); }
.line__thumb--proof { clip-path: none; background: var(--paper); display: block; overflow: hidden; box-shadow: var(--shadow-1); }
.line__thumb--proof img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Proof viewer (lightbox) ----------------------------- */
.proof-view { position: fixed; inset: 0; z-index: 200; display: none; }
.proof-view.open { display: block; }
.proof-view__scrim { position: absolute; inset: 0; background: rgba(46, 43, 38, .6); backdrop-filter: blur(3px); }
.proof-view__box { position: relative; z-index: 1; margin: clamp(20px, 5vh, 60px) auto; width: min(400px, calc(100% - 40px)); background: var(--sand); border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow-2); text-align: center; }
.proof-view__box img { width: 100%; max-height: 72vh; object-fit: contain; border-radius: 8px; background: #fff; }
.proof-view__cap { margin-top: 12px; font-weight: 700; color: var(--ink); font-size: var(--t-sm); }
.proof-view__x { position: absolute; top: 10px; right: 10px; width: 36px; height: 36px; border: none; border-radius: 999px; background: var(--paper); box-shadow: var(--shadow-1); font-size: 20px; line-height: 1; cursor: pointer; color: var(--ink); }
.line__ctrls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.line__ctrls button { width: 26px; height: 26px; border-radius: 999px; box-shadow: inset 0 0 0 1.4px var(--hair); display: grid; place-items: center; color: var(--ink); font-size: .9rem; }
.line__ctrls button:hover { box-shadow: inset 0 0 0 1.4px var(--ink); }
.line__price { font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; }
.line__remove { font-size: var(--t-xs); color: var(--muted); font-weight: 600; margin-top: 6px; }
.line__remove:hover { color: var(--crimson); }
.drawer__foot { padding: 20px 24px calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--hair); background: var(--paper); }
.drawer__row { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: var(--t-sm); color: var(--ink-soft); }
.drawer__total { display: flex; justify-content: space-between; font-weight: 800; color: var(--ink); font-size: var(--t-md); margin: 10px 0 16px; }
.drawer__total b { font-variant-numeric: tabular-nums; }
.drawer__note { text-align: center; font-size: var(--t-xs); color: var(--muted); margin-top: 12px; }

/* ---- Cart page ------------------------------------------- */
.cart-page { display: grid; grid-template-columns: 1.6fr .9fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.cart-list .line { grid-template-columns: 74px 1fr auto auto; gap: 20px; padding: 22px 0; }
.cart-list .line__thumb { width: 74px; height: 98px; }
.summary { background: var(--paper); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-1); position: sticky; top: 96px; }
.summary h2 { font-size: var(--t-lg); margin-bottom: 1.2em; }
.summary__row { display: flex; justify-content: space-between; padding: 10px 0; color: var(--ink-soft); border-bottom: 1px solid var(--hair-soft); }
.summary__total { display: flex; justify-content: space-between; font-weight: 800; color: var(--ink); font-size: var(--t-lg); padding-top: 16px; }
.summary__total b { font-variant-numeric: tabular-nums; }
.empty-state { text-align: center; padding: clamp(60px, 10vw, 120px) 20px; }
.empty-state [data-botanical] { width: 120px; margin: 0 auto 20px; color: var(--sage); }
.empty-state h1 { font-size: var(--t-2xl); }
.empty-state p { margin: 1em auto 2em; max-width: 40ch; color: var(--ink-soft); }

/* ---- Page transition veil -------------------------------- */
.veil { position: fixed; inset: 0; z-index: 200; background: var(--ink); transform: scaleY(0); transform-origin: bottom; pointer-events: none; }
.veil__mark { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; }
.veil__mark svg { width: 64px; color: var(--sage); }

/* ---- Scroll reveal defaults ------------------------------ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-ready .reveal { will-change: opacity, transform; }
html:not(.reveal-ready) .reveal { opacity: 1; transform: none; }

/* ---- Centered section head ------------------------------- */
.sec-head--center { flex-direction: column; align-items: center; text-align: center; }
.sec-head--center .sec-head__title { max-width: 22ch; }
.sec-head--center p { margin: 0 auto; }

/* ---- Reviews (proper testimonial layout) ----------------- */
.reviews__rating { display: inline-flex; align-items: center; gap: .7rem; margin-top: 1.1rem; font-weight: 700; color: var(--ink); font-size: var(--t-sm); }
.reviews__stars { color: var(--marigold); display: inline-flex; gap: 3px; }
.reviews__stars svg { width: 20px; height: 20px; fill: currentColor; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); gap: clamp(16px, 2vw, 26px); }
.review-card { background: var(--paper); border-radius: var(--radius-lg); padding: clamp(24px, 2.6vw, 34px); box-shadow: var(--shadow-1); display: flex; flex-direction: column; gap: 1.1rem; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.review-card__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.review-card__stars { color: var(--marigold); display: inline-flex; gap: 3px; }
.review-card__stars svg { width: 17px; height: 17px; fill: currentColor; }
.review-card__tag { font-size: var(--t-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--accent-ink); background: var(--accent-tint-2); padding: 5px 11px; border-radius: 999px; }
.review-card blockquote { font-size: var(--t-md); color: var(--ink); line-height: 1.55; font-weight: 500; }
.review-card__author { display: flex; align-items: center; gap: .85rem; margin-top: auto; }
.review-card__avatar { width: 46px; height: 46px; border-radius: 999px; display: grid; place-items: center; font-weight: 800; color: #fff; font-size: var(--t-sm); flex-shrink: 0; }
.review-card__meta b { display: block; color: var(--ink); font-size: var(--t-sm); }
.review-card__meta span { font-size: var(--t-xs); color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

/* ---- Find your patch (interactive) ----------------------- */
.finder { display: grid; grid-template-columns: minmax(230px, .82fr) 1.18fr; gap: clamp(14px, 1.6vw, 22px); }
.finder__list { display: flex; flex-direction: column; gap: .55rem; }
.finder__opt { --c: var(--sage); display: flex; align-items: center; gap: .9rem; text-align: left; padding: 15px 18px; border-radius: var(--radius); background: var(--paper); box-shadow: inset 0 0 0 1.5px var(--hair); font-weight: 700; font-size: var(--t-sm); color: var(--ink-soft); transition: color .3s, box-shadow .3s, background-color .3s, transform .3s var(--ease); }
.finder__opt .dot { width: 12px; height: 12px; border-radius: 999px; background: var(--c); flex-shrink: 0; }
.finder__opt .arrow { margin-left: auto; opacity: 0; transition: opacity .3s, transform .3s var(--ease); }
.finder__opt:hover { box-shadow: inset 0 0 0 1.5px var(--ink); color: var(--ink); }
.finder__opt[aria-pressed="true"] { background: var(--ink); color: var(--paper-hi); box-shadow: none; }
.finder__opt[aria-pressed="true"] .arrow { opacity: 1; }
.finder__result { --accent: var(--sage); position: relative; overflow: hidden; border-radius: var(--radius-xl); background: color-mix(in oklab, var(--accent) 15%, var(--paper)); padding: clamp(28px, 3vw, 46px); display: flex; flex-direction: column; justify-content: center; min-height: 340px; isolation: isolate; }
.finder__result .range-card__count { color: var(--accent-ink); }
.finder__result h3 { font-size: var(--t-2xl); margin-top: .12em; }
.finder__result p { margin-top: .55em; max-width: 40ch; color: var(--ink-soft); }
.finder__result .btn { margin-top: 1.5em; align-self: flex-start; }
.finder__art { position: absolute; right: -2%; bottom: -8%; width: clamp(120px, 15vw, 210px); color: var(--accent); z-index: -1; }

/* ---- Sowing calendar (interactive) ----------------------- */
.calendar__months { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: clamp(22px, 3vw, 34px); }
.cal-month { min-height: 44px; padding: 0 1.15em; border-radius: 999px; font-weight: 700; font-size: var(--t-sm); color: var(--ink-soft); background: var(--paper); box-shadow: inset 0 0 0 1.5px var(--hair); transition: all .3s var(--ease); }
.cal-month:hover { box-shadow: inset 0 0 0 1.5px var(--ink); color: var(--ink); }
.cal-month[aria-pressed="true"] { background: var(--leaf); color: #fff; box-shadow: none; }
.calendar__note { font-weight: 700; color: var(--ink); margin-bottom: 1rem; }
.calendar__note b { color: var(--accent-ink, var(--leaf)); }
.calendar__result { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.cal-item { display: flex; align-items: center; gap: 13px; padding: 13px 16px; border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-1); transition: transform .4s var(--ease); }
.cal-item:hover { transform: translateY(-3px); }
.cal-item__thumb { --c: var(--leaf); width: 34px; height: 46px; border-radius: 6px; background: color-mix(in oklab, var(--c) 84%, var(--ink)); clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%); display: grid; place-items: center; color: rgba(255, 255, 255, .92); flex-shrink: 0; }
.cal-item__thumb svg { height: 54%; width: auto; }
.cal-item b { font-size: var(--t-sm); color: var(--ink); display: block; line-height: 1.2; }
.cal-item span { font-size: var(--t-xs); color: var(--muted); text-transform: uppercase; letter-spacing: .07em; font-weight: 600; }
.calendar__empty { color: var(--muted); padding: 8px 0; }

/* ---- Gift bundles ---------------------------------------- */
.bundle-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: clamp(16px, 2vw, 24px); }
.bundle-card { --accent: var(--teal); position: relative; overflow: hidden; border-radius: var(--radius-xl); background: color-mix(in oklab, var(--accent) 16%, var(--paper)); padding: clamp(26px, 2.8vw, 40px); display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.bundle-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.bundle-card__art { width: clamp(78px, 9vw, 116px); flex-shrink: 0; color: var(--accent); }
.bundle-card__count { font-size: var(--t-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-ink); }
.bundle-card h3 { font-size: var(--t-xl); margin-top: .1em; letter-spacing: -.02em; }
.bundle-card p { margin-top: .4em; font-size: var(--t-sm); color: var(--ink-soft); max-width: 34ch; }
.bundle-card__foot { display: flex; align-items: center; gap: 1.1rem; margin-top: 1.1em; }
.bundle-card__price { font-weight: 800; color: var(--ink); font-size: var(--t-lg); font-variant-numeric: tabular-nums; }

/* ---- @plantisan gallery ---------------------------------- */
.insta-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: clamp(22px, 3vw, 34px); }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(8px, 1vw, 14px); }
.insta-tile { --c: var(--sage); position: relative; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; background: color-mix(in oklab, var(--c) 80%, var(--ink)); display: grid; place-items: center; color: rgba(255, 255, 255, .92); }
.insta-tile [data-botanical] { width: 58%; }
.insta-tile [data-botanical] svg { transition: transform .6s var(--ease); }
.insta-tile:hover [data-botanical] svg { transform: scale(1.09) rotate(-3deg); }
.insta-tile__badge { position: absolute; top: 10px; left: 10px; z-index: 2; opacity: 0; transform: translateY(-4px); transition: all .4s var(--ease); display: inline-flex; align-items: center; gap: 5px; font-size: var(--t-xs); font-weight: 700; color: #fff; }
.insta-tile__badge svg { width: 15px; height: 15px; fill: currentColor; }
.insta-tile:hover .insta-tile__badge { opacity: 1; transform: none; }

/* ---- Footer CTA band ------------------------------------- */
.footer__cta { text-align: center; padding-block: clamp(44px, 6vw, 82px) clamp(34px, 4vw, 52px); border-bottom: 1px solid color-mix(in oklab, var(--paper) 13%, transparent); }
.footer__cta h2 { color: var(--paper-hi); font-size: var(--t-2xl); max-width: 20ch; margin-inline: auto; }
.footer__cta h2 .serif { color: var(--marigold); }
.footer__cta p { color: color-mix(in oklab, var(--paper) 68%, transparent); margin: .8em auto 1.7em; max-width: 42ch; }
/* restore button geometry/colour inside the footer (footer's `a` rule is more specific than .btn) */
.footer .btn { display: inline-flex; width: auto; padding: 0 1.6em; }
.footer .btn:hover { color: var(--ink); }
.footer .btn--light { color: var(--ink); }
.footer .btn--primary { color: var(--paper-hi); }
.footer__trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.6rem; padding-block: clamp(20px, 2.6vw, 32px); border-bottom: 1px solid color-mix(in oklab, var(--paper) 13%, transparent); }
.footer__trust span { display: inline-flex; align-items: center; gap: .55em; font-size: var(--t-sm); font-weight: 600; color: color-mix(in oklab, var(--paper) 74%, transparent); }
.footer__trust svg { width: 18px; height: 18px; stroke: var(--marigold); fill: none; stroke-width: 2; }

/* ---- Sowing chart (year-round gantt) --------------------- */
.gantt__tabs { margin-bottom: clamp(20px, 2.5vw, 32px); }
.gantt__scroll { overflow-x: auto; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
.gantt__inner { min-width: 660px; }
.gantt__head, .gantt__row { display: grid; grid-template-columns: minmax(126px, 172px) repeat(12, minmax(28px, 1fr)); align-items: center; column-gap: 2px; }
.gantt__head { padding-bottom: 12px; margin-bottom: 6px; border-bottom: 1px solid var(--hair); }
.gantt__mhead { text-align: center; font-size: var(--t-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .02em; color: var(--muted); }
.gantt__mhead.is-now { color: var(--leaf); }
.gantt__mhead .now-dot { display: block; width: 5px; height: 5px; border-radius: 999px; background: var(--leaf); margin: 4px auto 0; }
.gantt__group { --c: var(--sage); font-size: var(--t-xs); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: color-mix(in oklab, var(--c) 62%, var(--ink)); padding: 18px 0 6px; display: flex; align-items: center; gap: .55em; }
.gantt__group .swatch { width: 11px; height: 11px; border-radius: 999px; background: var(--c); }
.gantt__row { min-height: 40px; border-radius: 8px; transition: background-color .3s; cursor: pointer; }
.gantt__row:hover { background: color-mix(in oklab, var(--ink) 4%, transparent); }
.gantt__label { font-size: var(--t-sm); font-weight: 600; color: var(--ink); padding-right: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gantt__track { grid-column: 2 / -1; position: relative; height: 24px; }
.gantt__bar { --c: var(--leaf); position: absolute; top: 0; height: 24px; border-radius: 999px; background: color-mix(in oklab, var(--c) 82%, var(--ink)); display: flex; align-items: center; justify-content: center; transition: filter .3s, transform .3s var(--ease); }
.gantt__row:hover .gantt__bar { filter: brightness(1.07); }
.gantt__bar span { font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: rgba(255, 255, 255, .92); white-space: nowrap; padding: 0 9px; opacity: 0; transition: opacity .3s; }
.gantt__bar.wide span { opacity: .95; }
.gantt__legend { margin-top: clamp(16px, 2vw, 24px); font-size: var(--t-sm); color: var(--muted); display: flex; align-items: center; gap: .5em; flex-wrap: wrap; }
.gantt__legend .now-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--leaf); display: inline-block; }

/* ---- PDP: sticky buy bar --------------------------------- */
.pdp-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: color-mix(in oklab, var(--sand) 90%, transparent); backdrop-filter: saturate(1.3) blur(14px); border-top: 1px solid var(--hair); transform: translateY(102%); transition: transform .5s var(--ease); }
.pdp-bar.show { transform: none; }
.pdp-bar__inner { display: flex; align-items: center; gap: 1rem; padding: 12px 0 calc(12px + env(safe-area-inset-bottom)); }
.pdp-bar__thumb { --c: var(--leaf); width: 32px; height: 42px; border-radius: 5px; background: color-mix(in oklab, var(--c) 84%, var(--ink)); clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%); flex-shrink: 0; display: grid; place-items: center; color: rgba(255, 255, 255, .9); }
.pdp-bar__thumb svg { height: 52%; width: auto; }
.pdp-bar__name { font-weight: 700; color: var(--ink); font-size: var(--t-sm); }
.pdp-bar__range { font-size: var(--t-xs); color: var(--muted); text-transform: uppercase; letter-spacing: .07em; font-weight: 600; }
.pdp-bar__price { font-weight: 800; color: var(--ink); margin-left: auto; font-variant-numeric: tabular-nums; }
.pdp-bar .btn { flex-shrink: 0; }
@media (max-width: 560px) { .pdp-bar__meta { display: none; } .pdp-bar__price { margin-left: 0; } }

/* ---- PDP: feature blocks (alternating) ------------------- */
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 68px); align-items: center; }
.feature-block + .feature-block { margin-top: clamp(28px, 4vw, 56px); }
.feature-block:nth-child(even) .feature-block__media { order: 2; }
.feature-block__media { --c: var(--accent); position: relative; overflow: hidden; border-radius: var(--radius-xl); background: color-mix(in oklab, var(--c) 14%, var(--paper)); aspect-ratio: 4 / 3.1; display: grid; place-items: center; }
.feature-block__media::before { content: ""; position: absolute; inset: 0; opacity: .5; background: radial-gradient(60% 55% at 50% 42%, color-mix(in oklab, var(--c) 22%, transparent), transparent 72%); }
.feature-block__media [data-botanical] { width: 42%; color: var(--accent-ink); position: relative; }
.feature-block__media .stick { width: auto; height: 74%; position: relative; }
.feature-block__kicker { color: var(--accent-ink); }
.feature-block h3 { font-size: var(--t-2xl); margin-top: .3em; letter-spacing: -.02em; }
.feature-block p { margin-top: .7em; color: var(--ink-soft); max-width: 42ch; font-size: var(--t-md); }

/* ---- PDP: grow-guide timeline ---------------------------- */
.grow-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 28px); }
.grow-step { position: relative; padding-top: 8px; }
.grow-step__num { width: 40px; height: 40px; border-radius: 999px; background: var(--accent-tint-2, color-mix(in oklab, var(--sage) 20%, var(--paper))); color: var(--accent-ink, var(--sage)); display: grid; place-items: center; font-family: var(--font-serif); font-weight: 600; font-size: var(--t-lg); }
.grow-step__rule { position: absolute; top: 28px; left: 52px; right: -14px; height: 1.5px; background: var(--hair); }
.grow-step:last-child .grow-step__rule { display: none; }
.grow-step h4 { font-size: var(--t-lg); margin-top: .8rem; }
.grow-step__when { display: inline-block; margin-top: .5rem; font-size: var(--t-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--accent-ink, var(--sage)); background: var(--accent-tint, color-mix(in oklab, var(--sage) 12%, var(--paper))); padding: 4px 10px; border-radius: 999px; }
.grow-step p { margin-top: .7rem; font-size: var(--t-sm); color: var(--ink-soft); max-width: 30ch; }

/* ---- PDP: full spec table -------------------------------- */
.spec-table { border-top: 1.5px solid var(--ink); }
.spec-table__row { display: grid; grid-template-columns: minmax(160px, 240px) 1fr; gap: 1.5rem; padding: 15px 4px; border-bottom: 1px solid var(--hair-soft); }
.spec-table__row dt { font-size: var(--t-sm); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.spec-table__row dd { color: var(--ink); font-weight: 600; }
.spec-table__row dd .latin { font-family: var(--font-serif); font-style: italic; font-weight: 500; }

/* ---- PDP: reviews with rating breakdown ------------------ */
.pdp-reviews { display: grid; grid-template-columns: minmax(260px, .75fr) 1.25fr; gap: clamp(28px, 4vw, 60px); align-items: start; }
.rating-summary { background: var(--paper); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-1); text-align: center; position: sticky; top: 96px; }
.rating-summary__score { font-family: var(--font-serif); font-size: clamp(3rem, 6vw, 4.4rem); font-weight: 600; color: var(--ink); line-height: 1; }
.rating-summary__stars { color: var(--marigold); display: inline-flex; gap: 3px; margin: .6rem 0; }
.rating-summary__stars svg { width: 20px; height: 20px; fill: currentColor; }
.rating-summary__count { font-size: var(--t-sm); color: var(--muted); font-weight: 600; }
.rating-bars { display: grid; gap: 8px; margin: 1.4rem 0; text-align: left; }
.rating-bar { display: grid; grid-template-columns: 42px 1fr 34px; gap: 10px; align-items: center; font-size: var(--t-xs); color: var(--muted); font-weight: 600; }
.rating-bar__track { display: block; height: 8px; border-radius: 999px; background: var(--hair-soft); overflow: hidden; }
.rating-bar__fill { display: block; height: 100%; background: var(--marigold); border-radius: 999px; }
.pdp-review-list { display: grid; gap: clamp(14px, 1.6vw, 20px); }

/* ---- Brand Studio: personalise CTA ----------------------- */
.brand-cta { margin-top: 12px; width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: .6em; min-height: 54px; padding: 0 22px; border-radius: var(--radius); background: var(--paper); box-shadow: inset 0 0 0 1.6px var(--accent-ink); color: var(--accent-ink); font-weight: 800; font-size: var(--t-sm); cursor: pointer; transition: background-color .3s, color .3s; }
.brand-cta:hover { background: var(--accent-ink); color: #fff; }
.brand-cta svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; }
.brand-cta span { font-weight: 600; opacity: .8; }

/* ---- Brand Studio: B2B banner ---------------------------- */
.brandkit { position: relative; overflow: hidden; background: var(--ink); color: var(--paper-hi); border-radius: var(--radius-xl); padding: clamp(30px, 4vw, 56px); display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.brandkit .kicker { color: var(--marigold); }
.brandkit h2 { color: var(--paper-hi); font-size: var(--t-2xl); margin-top: .2em; letter-spacing: -.02em; }
.brandkit h2 .serif { color: var(--marigold); }
.brandkit p { color: color-mix(in oklab, var(--paper) 70%, transparent); margin-top: .7em; max-width: 46ch; }
.brandkit__steps { display: flex; gap: clamp(1rem, 2.4vw, 2rem); margin: 1.6rem 0 .4rem; flex-wrap: wrap; }
.brandkit__step { display: flex; align-items: center; gap: .6rem; font-size: var(--t-sm); font-weight: 700; color: color-mix(in oklab, var(--paper) 86%, transparent); }
.brandkit__step em { width: 27px; height: 27px; border-radius: 999px; background: color-mix(in oklab, var(--marigold) 24%, transparent); color: var(--marigold); display: grid; place-items: center; font-family: var(--font-serif); font-style: normal; font-size: var(--t-sm); }
.brandkit__cta { margin-top: 1.6rem; }
.brandkit__mock { position: relative; display: grid; place-items: center; }
.brandkit__mock .studio-pack { width: min(58%, 190px); box-shadow: var(--shadow-2); transform: rotate(-4deg); }

/* ---- Brand Studio: modal --------------------------------- */
.studio { position: fixed; inset: 0; z-index: 120; display: none; }
.studio.open { display: block; }
.studio__scrim { position: absolute; inset: 0; background: rgba(46, 43, 38, .55); backdrop-filter: blur(4px); }
.studio__dialog { position: relative; z-index: 1; width: min(1080px, calc(100% - 28px)); max-height: calc(100dvh - clamp(24px, 6vh, 60px)); margin: clamp(12px, 3vh, 30px) auto; background: var(--sand); border-radius: var(--radius-xl); overflow: hidden; display: grid; grid-template-columns: 1.02fr .98fr; grid-template-rows: minmax(0, 1fr); box-shadow: 0 40px 90px -30px rgba(46, 43, 38, .5); }
.studio__preview { --c: var(--accent); position: relative; min-height: 0; background: color-mix(in oklab, var(--c) 15%, var(--paper)); display: grid; place-items: center; padding: clamp(20px, 3vw, 40px); overflow: hidden; }
.studio__preview::before { content: ""; position: absolute; inset: 0; opacity: .5; background: radial-gradient(58% 46% at 50% 40%, color-mix(in oklab, var(--c) 22%, transparent), transparent 72%); }
.studio__badge { position: absolute; left: 16px; bottom: 14px; font-size: var(--t-xs); font-weight: 600; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 5px; opacity: .75; z-index: 2; }
.studio__panel { padding: clamp(22px, 2.4vw, 34px); min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.studio__x { position: absolute; top: 12px; right: 12px; z-index: 3; width: 40px; height: 40px; border: none; border-radius: 999px; background: var(--paper); box-shadow: var(--shadow-1); display: grid; place-items: center; font-size: 20px; line-height: 1; color: var(--ink); cursor: pointer; }
.studio__eyebrow { color: var(--accent-ink); }
.studio__title { font-size: var(--t-xl); letter-spacing: -.02em; margin-top: .15em; }
.studio__field { margin-top: 20px; }
.studio__label { display: flex; justify-content: space-between; font-size: var(--t-xs); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 9px; }
.studio-drop { display: flex; align-items: center; gap: 13px; width: 100%; padding: 15px 16px; border-radius: var(--radius); border: 1.6px dashed var(--hair); background: var(--paper); color: var(--ink); font-weight: 700; font-size: var(--t-sm); cursor: pointer; transition: border-color .3s, background-color .3s; text-align: left; }
.studio-drop:hover, .studio-drop.drag { border-color: var(--accent-ink); background: color-mix(in oklab, var(--accent) 6%, var(--paper)); }
.studio-drop svg { width: 26px; height: 26px; stroke: var(--accent-ink); fill: none; stroke-width: 2; flex-shrink: 0; }
.studio-drop small { display: block; font-weight: 500; color: var(--muted); font-size: var(--t-xs); margin-top: 2px; }
.studio-range { width: 100%; accent-color: var(--accent-ink); cursor: pointer; }
.studio-input { width: 100%; font: inherit; font-weight: 600; padding: 12px 14px; border-radius: var(--radius); border: none; box-shadow: inset 0 0 0 1.5px var(--hair); background: var(--paper); color: var(--ink); }
.studio-input:focus-visible { outline: none; box-shadow: inset 0 0 0 1.5px var(--accent-ink); }
.studio-swatches { display: flex; gap: 9px; flex-wrap: wrap; }
.studio-swatch { width: 30px; height: 30px; border: none; border-radius: 999px; background: var(--c); cursor: pointer; box-shadow: 0 0 0 2px var(--sand); transition: transform .2s; }
.studio-swatch:hover { transform: scale(1.1); }
.studio-swatch[aria-pressed="true"] { box-shadow: 0 0 0 2px var(--sand), 0 0 0 4px var(--ink); }
.studio-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(84px, 1fr)); gap: 8px; }
.studio-tier { padding: 11px 6px; border: none; border-radius: var(--radius); background: var(--paper); box-shadow: inset 0 0 0 1.5px var(--hair); text-align: center; cursor: pointer; transition: all .25s; }
.studio-tier[aria-pressed="true"] { background: var(--ink); color: var(--paper-hi); box-shadow: none; }
.studio-tier b { display: block; font-size: var(--t-md); }
.studio-tier span { font-size: var(--t-xs); opacity: .8; }
.studio-summary { margin-top: 22px; padding: 16px 18px; border-radius: var(--radius); background: color-mix(in oklab, var(--accent) 12%, var(--paper)); }
.studio-summary__row { display: flex; justify-content: space-between; align-items: baseline; font-size: var(--t-sm); color: var(--ink-soft); margin-bottom: 5px; }
.studio-summary__row b { color: var(--ink); font-weight: 700; }
.studio-summary__total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 9px; padding-top: 10px; border-top: 1px solid var(--hair); }
.studio-summary__total b { font-size: var(--t-xl); color: var(--ink); font-variant-numeric: tabular-nums; }
.studio-actions { margin-top: 18px; display: grid; gap: 10px; }
.studio-note { margin-top: 14px; font-size: var(--t-xs); color: var(--muted); line-height: 1.5; }

/* Studio front/back view switcher */
.studio-stage { position: relative; display: flex; flex-direction: column; align-items: center; gap: 18px; width: 100%; }
.studio-tabs { display: inline-flex; gap: 4px; padding: 4px; border-radius: 999px; background: color-mix(in oklab, var(--ink) 7%, transparent); }
.studio-tabs button { border: none; background: transparent; font: inherit; font-weight: 700; font-size: var(--t-xs); text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); padding: 7px 18px; border-radius: 999px; cursor: pointer; transition: color .25s, background-color .25s, box-shadow .25s; }
.studio-tabs button[aria-pressed="true"] { background: var(--sand); color: var(--ink); box-shadow: var(--shadow-1); }
.studio-faces { position: relative; display: grid; place-items: center; width: 100%; }
.studio-faces .studio-face { display: none; }
.studio-stage[data-view="front"] .studio-face[data-side="front"],
.studio-stage[data-view="back"] .studio-face[data-side="back"] { display: flex; }
.studio-pack__guide { display: flex; flex-direction: column; gap: 4%; margin: 7% 0; font-size: 5.4cqw; font-weight: 600; letter-spacing: .02em; opacity: .9; }
.studio-actions__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* Studio + banner branded-pack mockup */
.studio-pack { --c: var(--accent); container-type: inline-size; width: min(72%, 246px); aspect-ratio: 1 / 2.7; background: color-mix(in oklab, var(--c) 84%, var(--ink)); color: #fff; border-radius: 12px 12px 4px 4px; clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%); padding: 12% 9% 18%; display: flex; flex-direction: column; align-items: center; text-align: center; box-shadow: var(--shadow-2); position: relative; z-index: 1; }
.studio-pack__strap { font-size: 5.4cqw; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; opacity: .82; }
.studio-pack__brand { font-family: var(--font-serif); font-weight: 600; text-transform: uppercase; font-size: 11cqw; margin-top: 3%; }
.studio-pack__zone { flex: 1; width: 84%; margin: 7% 0; display: grid; place-items: center; min-height: 0; }
.studio-pack__ph { width: 100%; height: 62%; border: 1.6px dashed rgba(255, 255, 255, .55); border-radius: 8px; display: grid; place-items: center; font-size: 6cqw; font-weight: 700; letter-spacing: .04em; opacity: .8; padding: 6%; }
/* draggable / resizable logo overlay */
.studio-pack__art { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.studio-pack__frame { position: absolute; left: var(--x, 50%); top: var(--y, 46%); width: var(--w, 46%); transform: translate(-50%, -50%); pointer-events: auto; cursor: grab; touch-action: none; }
.studio-pack__frame:active { cursor: grabbing; }
.studio-pack__frame::before { content: ""; position: absolute; inset: -6px; border: 1.5px dashed rgba(255, 255, 255, .9); border-radius: 5px; opacity: 0; transition: opacity .2s; }
.studio-pack__frame:hover::before, .studio-pack__frame.on::before { opacity: 1; }
.studio-pack__frame img { display: block; width: 100%; height: auto; -webkit-user-drag: none; user-select: none; filter: drop-shadow(0 2px 7px rgba(0, 0, 0, .22)); }
.studio-pack__handle { position: absolute; right: -9px; bottom: -9px; width: 17px; height: 17px; border-radius: 999px; background: #fff; box-shadow: 0 1px 5px rgba(0, 0, 0, .4); cursor: nwse-resize; pointer-events: auto; opacity: 0; transition: opacity .2s; touch-action: none; }
.studio-pack__frame:hover .studio-pack__handle, .studio-pack__frame.on .studio-pack__handle { opacity: 1; }
.studio-pack__name { font-weight: 800; text-transform: uppercase; letter-spacing: .03em; font-size: 8cqw; line-height: 1.1; word-break: break-word; }
.studio-pack__foot { margin-top: 5%; font-size: 5cqw; font-weight: 600; letter-spacing: .03em; opacity: .8; }

/* ---- Breakpoints ----------------------------------------- */
@media (max-width: 1080px) {
  .hero { min-height: auto; }
  .hero > .wrap-wide { padding-block: clamp(18px, 4vw, 32px) 0; }
  .hero__grid { grid-template-columns: 1fr; gap: clamp(20px, 4vw, 36px); }
  .hero__stage { min-height: auto; order: -1; }
  .stick-cluster { width: min(72%, 360px); margin-inline: auto; }
  .finder { grid-template-columns: 1fr; }
  .finder__result { min-height: 280px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-block { grid-template-columns: 1fr; gap: clamp(18px, 3vw, 32px); }
  .feature-block__media { order: 0 !important; aspect-ratio: 16 / 8; }
  .grow-timeline { grid-template-columns: repeat(2, 1fr); }
  .grow-step__rule { display: none; }
  .pdp-reviews { grid-template-columns: 1fr; }
  .rating-summary { position: static; }
  .brandkit { grid-template-columns: 1fr; }
  .brandkit__mock { display: none; }
  .studio__dialog { grid-template-columns: 1fr; max-height: calc(100dvh - 20px); margin: 10px auto; }
  .studio__preview { min-height: 244px; padding: 24px; }
  .studio__preview .studio-pack { width: min(38%, 150px); }
  .ranges { grid-template-columns: repeat(4, 1fr); }
  .range-card.c1 { grid-column: span 4; }
  .range-card.c6 { grid-column: span 4; }
  .pdp { grid-template-columns: 1fr; }
  .pdp__media { position: relative; top: 0; min-height: 46vh; }
  .band__grid, .news__grid, .cart-page { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-grid; }
  .stick-cluster { width: min(64%, 280px); }
  .hero h1 { line-height: 1.06; }
  .hero__proof { gap: 1.2rem 1.6rem; }
  .grow-timeline { grid-template-columns: 1fr; }
  .spec-table__row { grid-template-columns: 1fr; gap: 3px; }
  .steps { grid-template-columns: 1fr; gap: 8px; }
  .step__rule { display: none; }
  .ranges { grid-template-columns: repeat(2, 1fr); }
  .range-card.c1, .range-card.c2, .range-card.c3, .range-card.c4, .range-card.c5, .range-card.c6 { grid-column: span 2; grid-row: auto; min-height: 220px; }
  .range-card.c6 { flex-direction: column; align-items: flex-start; }
  .range-card.c6 .range-card__art { position: absolute; right: -14%; bottom: -14%; width: 46%; }
  .band__stats { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .topbar .wrap-wide { gap: .8em; }
  .topbar span:nth-child(n+4) { display: none; }
}

/* ---- Reduced motion -------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============ real product photos (kit imagery) ============ */
.pack-photo {
  width: 86%; height: 86%; object-fit: contain;
  border-radius: 16px; background: var(--paper, #fff); padding: 10px;
  box-shadow: var(--shadow-1); position: relative; z-index: 1;
  transition: transform .7s var(--ease);
}
.pcard__media .pack-photo { width: 84%; height: 84%; }
.pcard:hover .pcard__media .pack-photo { transform: translateY(-8px) rotate(-1.5deg); }
.pdp__media .pack-photo { width: min(88%, 470px); height: min(58vh, 470px); padding: 14px; border-radius: 20px; }
.feature-block__media .pack-photo { width: auto; height: 74%; }
/* hero cluster of three tilted kit photos */
.stick-cluster .pack-photo { position: absolute; width: 42%; height: auto; padding: 8px; border-radius: 14px; }
.stick-cluster .pack-photo.s1 { left: 0%;  top: 16%; transform: rotate(-8deg); z-index: 2; }
.stick-cluster .pack-photo.s2 { left: 29%; top: 2%;  transform: rotate(-1deg); z-index: 3; }
.stick-cluster .pack-photo.s3 { left: 58%; top: 18%; transform: rotate(8deg);  z-index: 2; }
/* cart line thumbnail as photo */
.line__thumb--photo { clip-path: none; background: #fff; overflow: hidden; box-shadow: var(--shadow-1); padding: 3px; }
.line__thumb--photo img { width: 100%; height: 100%; object-fit: contain; display: block; }
/* PDP "what's inside" chips */
.pdp__contents { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 8px; }
.pdp__contents li { list-style: none; font-size: var(--t-sm); font-weight: 600; color: var(--accent-ink, var(--ink));
  background: color-mix(in oklab, var(--accent, var(--leaf)) 14%, var(--paper)); border: 1px solid color-mix(in oklab, var(--accent, var(--leaf)) 24%, transparent);
  padding: 6px 12px; border-radius: 999px; }
.bundle-card__photo { width: clamp(96px, 12vw, 140px); flex-shrink: 0; aspect-ratio: 1; object-fit: contain;
  border-radius: 14px; background: #fff; padding: 8px; box-shadow: var(--shadow-1); align-self: center; }
