/* ============================================================
   True Sessions — standalone sub-site under Truistic Media.
   Deliberately NOT site.css: this page carries the True Sessions
   brand (cream wordmark on grainy sunset orange, from the IG
   logo tile at assets/img/true-sessions/profile.jpg), not the
   agency chrome. One fixed warm-dark palette — no mode toggle.

   Wordmark is live type, not an image. Font-match round vs the
   real logo (2026-07-23, side-by-side vs profile.jpg): the script
   "true" is Yellowtail FATTENED with an em-scaled text-stroke —
   Yellowtail alone has the exact slant/structure but runs thin;
   the stroke buys the logo's flat-brush weight. "sessions" is
   Nunito ExtraBlack (1000) tightened — plumper and softer than
   MuseoModerno/Archivo, closest to the logo's rounded heavy
   lowercase. Anybody carries the letterspaced caps; SN Pro is
   body (both from Trae's library; Yellowtail/Nunito are the
   sanctioned off-library picks — the library has no script or
   ultra-black).
   ============================================================ */

:root {
  --canvas: #14151d;
  --panel: #1b1c27;
  --panel-lift: #232433;
  --cream: #f3e9d2;
  --cream-bright: #fdf6e3;
  --cream-dim: #c9bfa8;
  --orange: #e85c17;
  --ember: #f97b2f;
  --orange-deep: #b4430f;
  --gold: #e8a924;
  --coral: #e1364b;
  --line: rgb(243 233 210 / 0.14);
  --font-script: "Yellowtail", cursive;
  --font-heavy: "Nunito", ui-sans-serif, sans-serif;
  --font-caps: "Anybody", ui-sans-serif, sans-serif;
  --font-body: "SN Pro", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --measure: 40rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--canvas);
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--cream);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* The signature grain — heavier than the agency site's; the brand
   tiles are all noise-on-gradient. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0.11;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

a { color: var(--ember); text-decoration: none; }
a:hover { color: var(--gold); }

::selection { background: var(--orange); color: var(--cream-bright); }

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

.skip-link {
  position: absolute;
  left: -100vw;
  top: 0;
  z-index: 100;
  padding: 0.7rem 1.1rem;
  background: var(--orange);
  color: var(--cream-bright);
  font-family: var(--font-caps);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.skip-link:focus-visible { left: 0; }

.wrap {
  max-width: 74rem;
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- Nav (mirrors site.css structure, warmed up) ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgb(20 21 29 / 0.78);
  border-bottom: 1px solid var(--line);
}
.nav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 100vh;
  background: var(--canvas);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.65rem;
}

/* The lockup links home to truistic-media; the caret beside it opens the
   brand dropdown. */
.brand-menu { position: relative; display: inline-flex; align-items: center; gap: 0.2rem; }
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--cream-dim);
}
.brand-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0.5rem 0.35rem;
  background: none;
  color: var(--cream-dim);
  cursor: pointer;
}
.brand:hover, .brand-toggle:hover { color: var(--ember); }
.brand-caret { width: 0.65rem; height: auto; transition: transform 180ms ease-out; }
.brand-toggle[aria-expanded="true"] .brand-caret { transform: rotate(180deg); }

/* The Truistic lockup stays chrome everywhere — same pinned values as
   site.css (Trae, 2026-07-23). It reads as the agency's signature in the
   corner of its own production. */
.brand-mark {
  display: block;
  height: 3.1rem;
  width: auto;
  --primary: #24a8eb;
  --brand: #4fbdf5;
  --silver: #b6b7b8;
  --highlight: #f2f3f4;
  --chrome-deep: #8b8d90;
}

.brand-dropdown {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 13rem;
  display: grid;
  padding: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: var(--panel);
  box-shadow: 0 24px 60px -30px rgb(0 0 0 / 0.9);
}
.brand-dropdown[hidden] { display: none; }
.brand-dropdown a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.2rem;
  padding: 0.8rem 0.9rem;
  border-radius: 0.4rem;
  font-family: var(--font-caps);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--cream-dim);
}
.brand-dropdown a:hover { color: var(--cream-bright); background: var(--panel-lift); }
.brand-dropdown a span { color: var(--ember); }
/* Way home to the agency site, ruled off from the sibling brands under it. */
.brand-dropdown .brand-home {
  margin-bottom: 0.35rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
  border-radius: 0.4rem 0.4rem 0 0;
  color: var(--cream-bright);
}
@media (prefers-reduced-motion: no-preference) {
  .brand-dropdown { animation: brand-drop 160ms ease-out; }
  @keyframes brand-drop {
    from { opacity: 0; transform: translateY(-0.35rem); }
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.4vw, 1.8rem);
  list-style: none;
}
.nav-links a {
  white-space: nowrap;
  font-family: var(--font-caps);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.nav-links a:hover { color: var(--cream-bright); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-caps);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid rgb(243 233 210 / 0.4);
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  transition: border-color 160ms ease-out, background 160ms ease-out,
    color 160ms ease-out, box-shadow 160ms ease-out;
}
.btn:hover { border-color: var(--ember); color: var(--cream-bright); }

.btn-fire {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--cream-bright);
}
.btn-fire:hover {
  background: var(--ember);
  border-color: var(--ember);
  box-shadow: 0 0 34px rgb(232 92 23 / 0.45);
}

/* ---------- Hero ---------- */

.ts-hero {
  position: relative;
  min-height: calc(100svh - 4.5rem);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  /* Composition retraced 1:1 from the brand tile (Trae, 2026-07-23 v2):
     the tile is a VIVID hot-orange field — not muddy brown — with a bright
     core upper-center, a hard navy wedge falling in from the top-right
     corner, a burnt-dark top-left corner, a big navy mass claiming the
     bottom-left, and orange bleeding back in on the right edge low. */
  background:
    radial-gradient(50% 54% at 48% 28%, #f5832d 0%, #ea6317 38%, rgb(234 99 23 / 0) 76%),
    radial-gradient(52% 58% at 103% -6%, #262840 0%, rgb(38 40 64 / 0.9) 42%, transparent 72%),
    radial-gradient(46% 52% at -6% -8%, rgb(74 32 13 / 0.9) 0%, transparent 64%),
    radial-gradient(42% 46% at 97% 76%, rgb(243 122 44 / 0.9) 0%, transparent 70%),
    radial-gradient(80% 78% at 6% 108%, #1e2033 0%, rgb(30 32 51 / 0.94) 48%, transparent 78%),
    linear-gradient(162deg, #b0470f 0%, #dd5c17 38%, #c74f13 62%, #262840 100%);
}

/* Extra grain on the hero only — the tile's noise is loudest where orange
   melts into navy; the body-wide layer alone reads too clean here. */
.ts-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  mix-blend-mode: overlay;
  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='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

.ts-hero-inner {
  position: relative;
  padding-block: clamp(4rem, 10vh, 7rem);
  display: grid;
  justify-items: center;
}

.ts-eyebrow {
  font-family: var(--font-caps);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* The lockup: script overlapping the heavy line, caps riding below —
   proportions taken from the brand tile. */
.ts-lockup { display: grid; justify-items: center; margin-block: 1.2rem 1.8rem; }
/* Yellowtail runs thin; the em-scaled stroke fattens it to the logo's
   flat-brush weight at every viewport size. */
.ts-lockup .true {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(5rem, 16vw, 11.5rem);
  line-height: 0.95;
  color: var(--cream-bright);
  -webkit-text-stroke: 0.042em var(--cream-bright);
  paint-order: stroke fill;
  transform: rotate(-3deg);
  z-index: 1;
}
.ts-lockup .sessions {
  font-family: var(--font-heavy);
  font-weight: 1000;
  font-size: clamp(2.9rem, 9.4vw, 6.6rem);
  line-height: 1;
  letter-spacing: -0.035em;
  -webkit-text-stroke: 0.012em var(--cream-bright);
  paint-order: stroke fill;
  color: var(--cream-bright);
  margin-top: clamp(-1.6rem, -2.6vw, -1rem);
}
.ts-lockup .series {
  font-family: var(--font-caps);
  font-size: clamp(0.72rem, 1.6vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.62em;
  text-indent: 0.62em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 1.4rem;
}

.ts-hero .lede {
  max-width: 34rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--cream);
}

.ts-hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

/* ---------- Ticker ---------- */

.ts-ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--panel);
  padding-block: 0.9rem;
}
.ts-ticker-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  font-family: var(--font-caps);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream-dim);
  white-space: nowrap;
}
.ts-ticker-track span b { color: var(--ember); font-weight: 600; margin-right: 3.5rem; }
@media (prefers-reduced-motion: no-preference) {
  .ts-ticker-track { animation: ts-tick 30s linear infinite; }
  @keyframes ts-tick {
    to { transform: translateX(-50%); }
  }
}

/* ---------- Sections ---------- */

.ts-section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.ts-section.alt { background: var(--panel); border-block: 1px solid var(--line); }

.ts-kicker {
  font-family: var(--font-caps);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.9rem;
}

.ts-h2 {
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--cream-bright);
  max-width: 26ch;
}
.ts-h2 .script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.02em;
  color: var(--gold);
  -webkit-text-stroke: 0.03em var(--gold);
  paint-order: stroke fill;
}

.ts-section > .wrap > p, .ts-intro {
  max-width: var(--measure);
  margin-top: 1.1rem;
  color: var(--cream-dim);
}
.ts-intro strong { color: var(--cream); font-weight: 600; }

/* ---------- Pillars ---------- */

.ts-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 2.6rem;
}
.ts-pillar {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.7rem 1.5rem 1.9rem;
  background: linear-gradient(160deg, rgb(232 92 23 / 0.08), transparent 55%), var(--panel);
}
.ts-pillar .num {
  font-family: var(--font-caps);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--ember);
}
.ts-pillar h3 {
  font-family: var(--font-heavy);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--cream-bright);
  margin-block: 0.55rem 0.5rem;
}
.ts-pillar p { color: var(--cream-dim); font-size: 0.98rem; }

.ts-quote {
  margin-top: 2.8rem;
  border-left: 3px solid var(--orange);
  padding-left: 1.4rem;
  max-width: 44rem;
}
.ts-quote p {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.45;
  color: var(--cream);
}
.ts-quote cite {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--font-caps);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ---------- Watch ---------- */

.ts-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 2.6rem;
}
.ts-video { display: grid; gap: 0.85rem; }
.ts-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel-lift);
  cursor: pointer;
  padding: 0;
  display: block;
  width: 100%;
}
.ts-video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease-out, opacity 400ms ease-out;
  opacity: 0.92;
}
.ts-video-frame:hover img { transform: scale(1.04); opacity: 1; }
.ts-video-frame .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.ts-video-frame .play::before {
  content: "";
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 999px;
  background: rgb(232 92 23 / 0.92);
  box-shadow: 0 10px 40px rgb(0 0 0 / 0.45);
  transition: transform 200ms ease-out, background 200ms ease-out;
}
.ts-video-frame .play::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem 0 0.75rem 1.25rem;
  border-color: transparent transparent transparent var(--cream-bright);
  margin-left: 0.35rem;
}
.ts-video-frame:hover .play::before { transform: scale(1.08); background: var(--ember); }
.ts-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.ts-video h3 {
  font-family: var(--font-heavy);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--cream-bright);
}
.ts-video .meta {
  font-family: var(--font-caps);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.ts-video p { color: var(--cream-dim); font-size: 0.98rem; }

/* ---------- Terpenes ---------- */

.ts-terps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 2.6rem;
}
.ts-terp {
  position: relative;
  border-radius: 1rem;
  padding: 1.7rem 1.5rem 1.9rem;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--panel);
}
.ts-terp::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background: radial-gradient(120% 100% at 85% 0%, var(--terp, var(--orange)), transparent 65%);
}
.ts-terp > * { position: relative; }
/* Botanical line art — mango/hops/lemongrass, pepper/clove/cinnamon,
   lemon/orange — drawn inline per card, tinted by the card's --terp. */
.terp-art {
  color: color-mix(in oklab, var(--cream) 72%, var(--terp, var(--orange)));
  margin-bottom: 1.1rem;
}
.terp-art svg { width: 100%; max-width: 15rem; height: auto; display: block; }

.ts-terp .aroma {
  font-family: var(--font-caps);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.ts-terp h3 {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 2.2rem;
  color: var(--cream-bright);
  -webkit-text-stroke: 0.028em var(--cream-bright);
  paint-order: stroke fill;
  margin-block: 0.35rem 0.55rem;
}
.ts-terp p { color: var(--cream-dim); font-size: 0.98rem; }
.ts-terp .found {
  margin-top: 0.8rem;
  font-family: var(--font-caps);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--cream) 55%, var(--terp, var(--orange)));
}
.ts-terp .note { margin-top: 0.8rem; color: var(--cream); font-size: 0.94rem; }
.ts-terp .pair { margin-top: 0.55rem; color: var(--cream); font-size: 0.94rem; font-weight: 600; }

.ts-terp-foot { margin-top: 2rem; color: var(--cream-dim); font-size: 0.95rem; max-width: var(--measure); }

/* ---------- Gallery ---------- */

/* Official Instagram embeds. Grid, not CSS columns — embed.js's hydrated
   iframes size themselves off the container and escape column boxes (seen
   2000px+ wide). Grid cells clamp them. Until hydration each blockquote
   shows the local fallback image we ship. */
.ts-embeds {
  margin-top: 2.6rem;
  /* Above the fixed film grain (body::after, z 70): the noise layer reads
     as texture on the dark canvas but as blur on the bright white IG
     cards — lift them clear so the posts stay crisp. */
  position: relative;
  z-index: 80;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(19rem, 100%), 1fr));
  /* Masonry: 8px row unit, row-gap baked into each tile's JS-computed
     span (true-sessions.js watches every tile with a ResizeObserver —
     IG iframes hydrate late and keep resizing as media loads). */
  grid-auto-rows: 8px;
  column-gap: 1rem;
  row-gap: 0;
  justify-items: center;
  /* Items must size to CONTENT, not stretch into their span — stretching
     feeds the ResizeObserver its own span and the heights run away. */
  align-items: start;
}
/* Style ONLY the pre-hydration blockquote. The hydrated iframe keeps
   Instagram's own inline sizing untouched — overriding it with !important
   breaks embed.js's width→height handshake (iframes render 0-tall). */
.ts-embeds blockquote.instagram-media {
  display: block;
  margin: 0 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  border: 1px solid var(--line) !important;
  border-radius: 0.9rem;
  overflow: hidden;
  background: var(--panel);
  box-shadow: none !important;
}
.ts-embeds blockquote.instagram-media > a { display: block; }
.ts-embeds blockquote.instagram-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
/* The hydrated iframe keeps the blockquote's classes but NOT the
   -rendered suffix until IG's visibility-gated render completes — match
   the bare class or these rules never apply. */
.ts-embeds iframe.instagram-media {
  border-radius: 0.9rem;
  justify-self: center;
  /* Floor, not a lock: IG's post-measure inline height overrides upward.
     Without it, embeds hydrated in a hidden tab sit 2px tall until the
     visibility-gated measure fires. */
  min-height: 28rem;
}
/* Pre-measure, embed.js parks its iframe `position: absolute` — a white
   box floating over the grid (it also rewrites the whole style attribute,
   so inline overrides from our JS get clobbered). Key off that inline
   state: keep the box invisible until the measure handshake completes and
   embed.js puts the iframe in flow. opacity, NOT display — IG's
   visibility-gated render must still be able to fire. The local fallback
   blockquote stays on screen underneath in the meantime. */
.ts-embeds iframe.instagram-media[style*="position: absolute"] {
  opacity: 0;
  pointer-events: none;
}

/* ---------- Links / pull up ---------- */

.ts-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.6rem;
}
.ts-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 1.15rem 1.3rem;
  background: var(--panel);
  font-family: var(--font-caps);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  transition: border-color 160ms ease-out, background 160ms ease-out, transform 160ms ease-out;
}
.ts-link small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cream-dim);
  margin-top: 0.15rem;
}
.ts-link span[aria-hidden] { color: var(--ember); font-size: 1rem; }
.ts-link:hover {
  border-color: var(--orange);
  background: var(--panel-lift);
  color: var(--cream-bright);
  transform: translateY(-2px);
}

/* ---------- Footer ---------- */

.ts-footer {
  border-top: 1px solid var(--line);
  padding-block: 3rem 3.5rem;
  text-align: center;
  background:
    radial-gradient(90% 130% at 50% 130%, rgb(232 92 23 / 0.22), transparent 70%),
    var(--canvas);
}
.ts-footer .mini-lockup {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--cream-bright);
  -webkit-text-stroke: 0.035em var(--cream-bright);
  paint-order: stroke fill;
  transform: rotate(-3deg);
  display: inline-block;
}
.ts-footer .mini-lockup b {
  font-family: var(--font-heavy);
  font-weight: 1000;
  font-size: 0.82em;
  letter-spacing: -0.03em;
  -webkit-text-stroke: 0;
  transform: rotate(3deg);
  display: inline-block;
  margin-left: 0.18rem;
}
.ts-footer p {
  margin-top: 0.9rem;
  color: var(--cream-dim);
  font-size: 0.95rem;
}
.ts-footer a { color: var(--cream); }
.ts-footer a:hover { color: var(--ember); }
.ts-footer .fine {
  margin-top: 1.6rem;
  font-family: var(--font-caps);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ---------- Reveal ---------- */

.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(1.4rem);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
  }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 56rem) {
  .ts-pillars, .ts-terps, .ts-links { grid-template-columns: 1fr 1fr; }
  .ts-videos { grid-template-columns: 1fr; }
  .hide-m { display: none; }
}

@media (max-width: 38rem) {
  .ts-pillars, .ts-terps, .ts-links { grid-template-columns: 1fr; }
  .brand-mark { height: 2.6rem; }
}

/* ============================================================
   Wireframe additions (Deme's deck, 2026-07): accessibility
   controls, platform strip, terpene tags, sponsors, dispensary
   partners, team. Same warm-dark brand — nothing above changes.
   ============================================================ */

/* ---------- Accessibility menu ---------- */
/* The wireframe's utility bar (high contrast / A+ / reduce motion /
   captions) folded into a nav dropdown so the chrome stays clean.
   Prefs persist to localStorage("ts-a11y"); the head bootstrap applies
   them pre-paint as data-a11y-* attributes on <html>. */

.a11y-menu { position: relative; }
.a11y-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: none;
  cursor: pointer;
  font-family: var(--font-caps);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.a11y-btn:hover, .a11y-btn[aria-expanded="true"] {
  color: var(--cream-bright);
  border-color: var(--ember);
}
.a11y-panel {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  z-index: 60;
  min-width: 13.5rem;
  display: grid;
  gap: 0.2rem;
  padding: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: var(--panel);
  box-shadow: 0 24px 60px -30px rgb(0 0 0 / 0.9);
}
.a11y-panel[hidden] { display: none; }
.a11y-panel button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: 0.4rem;
  padding: 0.7rem 0.8rem;
  color: var(--cream-dim);
  text-align: left;
  font-family: var(--font-caps);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.a11y-panel button::after { content: "Off"; color: var(--cream-dim); opacity: 0.7; }
.a11y-panel button:hover { background: var(--panel-lift); color: var(--cream-bright); }
.a11y-panel button[aria-pressed="true"] { color: var(--cream-bright); }
.a11y-panel button[aria-pressed="true"]::after { content: "On"; color: var(--ember); opacity: 1; }

/* The four prefs. Larger text scales the root em. */
html[data-a11y-text] { font-size: 115%; }

/* High contrast: whiter creams, harder hairlines, grain off. */
html[data-a11y-contrast] {
  --cream: #ffffff;
  --cream-bright: #ffffff;
  --cream-dim: #ece3ca;
  --line: rgb(253 246 227 / 0.42);
}
html[data-a11y-contrast] body::after { display: none; }

/* Manual reduce-motion mirrors prefers-reduced-motion. */
html[data-a11y-motion] { scroll-behavior: auto; }
html[data-a11y-motion] *,
html[data-a11y-motion] *::before,
html[data-a11y-motion] *::after {
  animation: none !important;
  transition: none !important;
}
html[data-a11y-motion] .reveal { opacity: 1 !important; transform: none !important; }

/* ---------- Platform strip (experience section) ---------- */

.ts-platform {
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-caps);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.ts-platform span { color: var(--ember); margin-right: 0.9rem; }

.ts-mission { color: var(--cream-bright); }

/* ---------- Terpene tag on episode cards ---------- */

.ts-terp-tag { margin-top: 0.7rem; }
.ts-terp-tag a {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--gold);
  font-family: var(--font-caps);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.ts-terp-tag a:hover { border-color: var(--ember); color: var(--ember); }

/* Coming-soon episode frame — same footprint as a video, no player. */
.ts-video-frame.tba {
  display: grid;
  place-items: center;
  cursor: default;
  border-style: dashed;
  background: transparent;
}
.tba-mark {
  font-family: var(--font-caps);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0.7;
}

/* ---------- Sponsors ---------- */

.ts-sponsors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-block: 2.4rem 1.8rem;
}
.ts-sponsor {
  display: grid;
  gap: 0.45rem;
  align-content: center;
  min-height: 8.5rem;
  text-align: center;
  padding: 1.6rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: var(--panel);
}
.ts-sponsor .sp-name {
  font-family: var(--font-caps);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-bright);
}
.ts-sponsor .sp-tier {
  font-family: var(--font-caps);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
}
.ts-sponsor.open { border-style: dashed; background: transparent; }
.ts-sponsor.open .sp-name { color: var(--cream-dim); }
.ts-sponsor.open .sp-tier { color: var(--gold); }

.ts-cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Find us (dispensary partners) ---------- */

.ts-find {
  display: grid;
  gap: 1.1rem;
  justify-items: start;
  max-width: 36rem;
  margin-top: 2.2rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--panel);
}
.ts-badge {
  display: inline-block;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--cream-bright);
  font-family: var(--font-caps);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.ts-find p { color: var(--cream-dim); max-width: 28rem; }

/* ---------- Team ---------- */

.ts-team {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
}
.ts-member {
  display: grid;
  gap: 0.3rem;
  justify-items: center;
  text-align: center;
  padding: 1.5rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: var(--panel);
}
.ts-member .avatar {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--coral));
  color: var(--cream-bright);
  font-family: var(--font-caps);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.ts-member h3 {
  font-family: var(--font-caps);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-bright);
}
.ts-member p {
  font-family: var(--font-caps);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ---------- Responsive for the additions ---------- */

@media (max-width: 56rem) {
  .ts-sponsors { grid-template-columns: 1fr 1fr; }
  .ts-team { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 38rem) {
  .ts-sponsors { grid-template-columns: 1fr; }
  .ts-team { grid-template-columns: 1fr 1fr; }
  .a11y-btn { padding: 0.4rem 0.7rem; }
}
