/* ============================================================
   Scapes — site.css
   Production-grade global patterns: nav, footer, sections,
   buttons, reveals, accessibility floor.
   Loads on every page after scapes.css (tokens).
   ============================================================ */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--linen);
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: var(--lh-default);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

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

/* Skip-to-content for keyboard users */
.skip-to-content {
  position: absolute; top: -200px; left: 16px;
  padding: 10px 16px;
  background: var(--charcoal); color: var(--linen);
  border: 1px solid var(--scapes-sandstone);
  border-radius: 4px;
  font-family: var(--font-body); font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  z-index: 1000;
  transition: top 220ms var(--ease-out);
}
.skip-to-content:focus { top: 16px; outline: none; }

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

/* ============================================================
   NAV — fixed transparent, settles to backdrop-blur on scroll
   ============================================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: clamp(16px, 1.8vw, 22px) clamp(20px, 3.6vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: padding 520ms var(--ease-out);
}
/* Scrolled background lives on a masked layer so its BOTTOM EDGE fades out
   instead of cutting a hard line. The blurred panel dissolves over its lower
   third; logo + links sit crisp above it. No border. */
.site-nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: rgba(22, 18, 14, 0.82);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  opacity: 0;
  transition: opacity 520ms var(--ease-out);
  -webkit-mask-image: linear-gradient(to bottom, #000 58%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 58%, transparent 100%);
}
.site-nav.is-scrolled::before { opacity: 1; }
.site-nav.is-scrolled {
  padding-top: clamp(12px, 1.4vw, 18px);
  padding-bottom: clamp(12px, 1.4vw, 18px);
}
.site-nav__brand {
  display: flex; align-items: center;
  border-bottom: none;
  transition: opacity 320ms var(--ease-out);
}
.site-nav__brand img {
  height: clamp(36px, 3.4vw, 45px);
  width: auto; display: block;
}
.site-nav__brand:hover { opacity: 0.82; }

.site-nav__links {
  display: flex; align-items: center;
  gap: clamp(12px, 1.4vw, 24px);
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mist); font-weight: 500;
}
/* Bilingual nav twins: English is the default; the ES/EN switch flips
   [data-lang] on <html> to reveal the Spanish twins. Without this rule
   the Spanish spans render alongside English (the bleed Jason caught). */
.es-only { display: none; }
html[data-lang="es"] .en { display: none !important; }
html[data-lang="es"] .es-only { display: inline; }
html[data-lang="en"] .es-only { display: none; }

.site-nav__link {
  position: relative;
  color: var(--mist);
  border-bottom: none;
  padding-bottom: 6px;
  transition: color 320ms var(--ease-out);
}
.site-nav__link::after {
  content: ""; position: absolute;
  left: 0; bottom: 0; height: 1px; width: 0;
  background: currentColor;
  transition: width 320ms var(--ease-out);
}
.site-nav__link:hover,
.site-nav__link:focus-visible { color: var(--firelight); }
.site-nav__link:hover::after,
.site-nav__link:focus-visible::after { width: 100%; }

/* Aquarius — the only iconned nav item, so it reads at a glance */
.site-nav__link--aq { display: inline-flex; align-items: center; gap: 8px; }
.site-nav__aq-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: transparent; padding: 0;
  object-fit: contain; flex: 0 0 auto;
}
.site-nav__link--aq:hover .site-nav__aq-icon,
.site-nav__link--aq[aria-current="page"] .site-nav__aq-icon {
  box-shadow: 0 0 10px -1px rgba(177,203,79,0.55);
}

/* The Rain Lady Society — the front door into the period brand world.
   Bronze-toned with a raindrop mark so it reads, at a glance, as its own
   place: a separate, older world that Scapes stewards. */
.site-nav__link--society { display: inline-flex; align-items: center; gap: 7px; color: var(--bronze); }
.site-nav__drop {
  width: 12px; height: 14px; flex: 0 0 auto;
  fill: var(--bronze);
  transition: fill 320ms var(--ease-out), filter 320ms var(--ease-out);
}
.site-nav__link--society:hover,
.site-nav__link--society:focus-visible { color: var(--firelight); }
.site-nav__link--society:hover .site-nav__drop,
.site-nav__link--society[aria-current="page"] .site-nav__drop {
  fill: var(--firelight);
  filter: drop-shadow(0 0 6px rgba(224,162,104,0.6));
}

.site-nav__cta {
  background: var(--bronze); color: var(--paper);
  padding: 10px 20px; border-radius: var(--radius-md);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 500;
  border-bottom: none;
  margin-left: 6px;
  transition: background 320ms var(--ease-out);
}
.site-nav__cta:hover,
.site-nav__cta:focus-visible {
  background: var(--bronze-soft); color: var(--paper);
}

/* WORK TODAY — the one hiring door. Olive pill, deliberately DIFFERENT from the
   bronze client CTA, so jobs read as a separate action at a glance. Site-wide. */
.site-nav__work {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--scapes-olive); color: var(--paper);
  padding: 10px 20px; border-radius: var(--radius-md);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  border-bottom: none; margin-left: 6px; white-space: nowrap;
  border: 1px solid var(--scapes-olive-soft);
  transition: background 320ms var(--ease-out), transform 320ms var(--ease-out);
}
.site-nav__work:hover,
.site-nav__work:focus-visible {
  background: var(--scapes-olive-soft); color: var(--paper); transform: translateY(-1px);
}
.site-nav__work span[aria-hidden] { display: inline-block; transition: transform 320ms var(--ease-out); }
.site-nav__work:hover span[aria-hidden] { transform: translateX(3px); }

/* Mobile menu toggle */
.site-nav__toggle {
  appearance: none; background: none; border: 0;
  /* 44x44 thumb target (Apple/Google guideline); inner padding keeps the
     three bars at their original 36px visual width, centered. */
  width: 44px; height: 44px; padding: 8px 4px; box-sizing: border-box;
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  cursor: pointer;
}
.site-nav__toggle span {
  display: block; height: 1px; background: var(--linen);
  transition: transform 320ms var(--ease-out), opacity 320ms var(--ease-out);
}
.site-nav.is-open .site-nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-nav.is-open .site-nav__toggle span:nth-child(2) { opacity: 0; }
.site-nav.is-open .site-nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1100px) {
  .site-nav__toggle { display: flex; }
  .site-nav__links {
    position: fixed; top: 0; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    gap: 0;
    background: rgba(10, 8, 7, 0.96);
    backdrop-filter: blur(24px) saturate(140%);
    padding: 100px 32px 48px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 520ms var(--ease-out),
                opacity 520ms var(--ease-out),
                visibility 520ms;
    font-size: 14px;
  }
  .site-nav.is-open .site-nav__links {
    transform: none; opacity: 1; visibility: visible;
  }
  .site-nav__link, .site-nav__cta { padding: 16px 0; width: 100%; }
  .site-nav__cta { margin: 16px 0 0; display: inline-block; padding: 12px 22px; width: auto; }
  .site-nav__work { margin: 16px 0 0; padding: 12px 22px; width: auto; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot {
  background: var(--ink);
  padding: clamp(64px, 9vw, 104px) clamp(24px, 3.6vw, 56px) clamp(40px, 6vw, 56px);
  border-top: 1px solid var(--border);
}
.site-foot__inner { max-width: 1320px; margin: 0 auto; }
.site-foot__manifesto {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(34px, 4.4vw, 64px); line-height: 1.1;
  letter-spacing: -0.014em; color: var(--linen);
  max-width: 20ch; text-wrap: balance; margin: 0;
}
.site-foot__manifesto em {
  font-style: normal;  color: var(--scapes-sandstone);
}
.site-foot__manifesto .muted { color: var(--mist); display: block; }
.site-foot__rule {
  margin-top: clamp(40px, 6vw, 68px);
  margin-bottom: clamp(24px, 3.5vw, 40px);
  border-top: 1px solid var(--border);
}
.site-foot__cols {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
@media (max-width: 980px) { .site-foot__cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .site-foot__cols { grid-template-columns: 1fr; } }

.site-foot__about img {
  height: 44px; width: auto; display: block;
}
.site-foot__about p {
  font-family: var(--font-body); font-size: 13px; line-height: 1.7;
  color: var(--stone); max-width: 34ch; margin: 24px 0 0;
}
/* Social row — brand channels, linen glyphs in bordered circles,
   sandstone on hover. Lives in the footer About column, site-wide. */
.site-foot__social {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px;
}
.site-foot__social a {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--linen); opacity: 0.8;
  transition: color 300ms var(--ease-out), border-color 300ms var(--ease-out),
              opacity 300ms var(--ease-out), background 300ms var(--ease-out);
}
.site-foot__social a:hover, .site-foot__social a:focus-visible {
  color: var(--scapes-sandstone); border-color: var(--scapes-sandstone);
  opacity: 1; background: rgba(202,182,134,0.06); outline: none;
}
.site-foot__social svg { width: 18px; height: 18px; display: block; }
.site-foot__col-head {
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--scapes-sandstone); font-weight: 500;
}
.site-foot__col-list {
  margin-top: 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.site-foot__col-list a {
  font-family: var(--font-body); font-size: 14px;
  color: var(--linen); border-bottom: none;
  transition: color 220ms var(--ease-out);
}
.site-foot__col-list a:hover,
.site-foot__col-list a:focus-visible { color: var(--scapes-sandstone); }
/* Mobile: footer links were 16px-tall taps in a dense stack — a thumb misses
   them. Pad each to a real target without changing the desktop rhythm. */
@media (max-width: 760px) {
  .site-foot__col-list { gap: 4px; }
  .site-foot__col-list a { display: block; padding: 11px 0; font-size: 15px; }
}

.site-foot__legal {
  margin-top: clamp(40px, 6vw, 60px); padding-top: 24px;
  border-top: 1px solid var(--divider);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone); font-weight: 500;
}
.site-foot__legal a { color: var(--stone); border-bottom: none; }
.site-foot__legal a:hover { color: var(--scapes-sandstone); }
.site-foot__legal-links { display: flex; gap: 24px; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none; border-bottom: none;
  transition: background 320ms var(--ease-out),
              color 320ms var(--ease-out),
              border-color 320ms var(--ease-out);
  appearance: none;
}
.btn--primary { background: var(--bronze); color: var(--paper); }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--bronze-soft); color: var(--paper); }
/* Ghost = a quiet doorway, not a boxed button. No border, no rounded rect —
   the label carries its own hairline, which lights up on hover. */
.btn--ghost {
  background: transparent; color: var(--linen);
  border: 0; border-radius: 0;
  padding-left: 0; padding-right: 0;
  align-self: center;
  text-decoration: underline;
  text-decoration-color: var(--border-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: .7em;
  transition: color 320ms var(--ease-out), text-decoration-color 320ms var(--ease-out);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  color: var(--scapes-sandstone);
  text-decoration-color: var(--scapes-sandstone);
}
.btn--link {
  background: transparent; color: var(--scapes-sandstone);
  padding: 4px 0; border-radius: 0; letter-spacing: 0.24em;
  border-bottom: 1px solid transparent;
}
.btn--link:hover, .btn--link:focus-visible {
  color: var(--firelight); border-bottom-color: currentColor;
}
.btn .arrow {
  display: inline-block; width: 18px; height: 1px;
  background: currentColor; position: relative;
  transition: width 320ms var(--ease-out);
}
.btn .arrow::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow, .btn:focus-visible .arrow { width: 30px; }

/* ============================================================
   LADDER CHIP  —  the drop-in component-token badge.
   Wear a service / program / project's place on the ladder
   anywhere: ●  I  Root. Pulls from the LADDER COMPONENT TOKENS
   in scapes.css. Render <a> for a link to its tier, <span> for a
   static mark. Add a tier modifier: --root | --compose | --elevate.

     <a class="ladder-chip ladder-chip--compose" href="programs.html#tier-compose">
       <span class="ladder-chip__dot"></span>
       <span class="ladder-chip__num">II</span>
       <span class="ladder-chip__name">Compose</span>
     </a>

   The chip's text color IS its tier ink — so border + dot derive
   from currentColor; only the surface-tinted background + dot halo
   are set per tier (no local custom props, to keep the token
   closure clean).
   ============================================================ */
.ladder-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 14px 6px 11px; border-radius: 999px;
  border: 1px solid color-mix(in oklab, currentColor 36%, transparent);
  font-family: var(--font-body); font-weight: 600;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  line-height: 1; text-decoration: none; vertical-align: middle;
  transition: background 320ms var(--ease-out), border-color 320ms var(--ease-out);
}
.ladder-chip__dot {
  width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto;
  background: currentColor;
}
.ladder-chip__num {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 14px; letter-spacing: 0; line-height: 1; opacity: 0.92;
}
.ladder-chip__name { letter-spacing: 0.16em; }
a.ladder-chip:hover, a.ladder-chip:focus-visible {
  border-color: color-mix(in oklab, currentColor 62%, transparent);
  outline: none;
}
/* Per-tier: ink (text → drives border + dot via currentColor) + surface tints */
.ladder-chip--root    { color: var(--root-ink);    background: color-mix(in oklab, var(--root-surface) 15%, transparent); }
.ladder-chip--compose { color: var(--compose-ink); background: color-mix(in oklab, var(--compose-surface) 15%, transparent); }
.ladder-chip--elevate { color: var(--elevate-ink); background: color-mix(in oklab, var(--elevate-surface) 15%, transparent); }
.ladder-chip--root .ladder-chip__dot    { box-shadow: 0 0 0 3px color-mix(in oklab, var(--root-surface) 34%, transparent); }
.ladder-chip--compose .ladder-chip__dot { box-shadow: 0 0 0 3px color-mix(in oklab, var(--compose-surface) 34%, transparent); }
.ladder-chip--elevate .ladder-chip__dot { box-shadow: 0 0 0 3px color-mix(in oklab, var(--elevate-surface) 34%, transparent); }
a.ladder-chip--root:hover,    a.ladder-chip--root:focus-visible    { background: color-mix(in oklab, var(--root-surface) 26%, transparent); }
a.ladder-chip--compose:hover, a.ladder-chip--compose:focus-visible { background: color-mix(in oklab, var(--compose-surface) 26%, transparent); }
a.ladder-chip--elevate:hover, a.ladder-chip--elevate:focus-visible { background: color-mix(in oklab, var(--elevate-surface) 26%, transparent); }
/* Compact variant — for dense lists / cards */
.ladder-chip--sm { padding: 4px 11px 4px 9px; gap: 7px; font-size: 10px; }
.ladder-chip--sm .ladder-chip__dot { width: 7px; height: 7px; }
.ladder-chip--root.ladder-chip--sm .ladder-chip__dot    { box-shadow: 0 0 0 2.5px color-mix(in oklab, var(--root-surface) 34%, transparent); }
.ladder-chip--compose.ladder-chip--sm .ladder-chip__dot { box-shadow: 0 0 0 2.5px color-mix(in oklab, var(--compose-surface) 34%, transparent); }
.ladder-chip--elevate.ladder-chip--sm .ladder-chip__dot { box-shadow: 0 0 0 2.5px color-mix(in oklab, var(--elevate-surface) 34%, transparent); }
.ladder-chip--sm .ladder-chip__num { font-size: 12px; }

/* ============================================================
   SECTION SCAFFOLDING + EYEBROW + DIVIDERS
   ============================================================ */
.section {
  padding: clamp(64px, 8vw, 112px) clamp(24px, 4vw, 80px);
}
.section--inset { padding-top: clamp(88px, 10vw, 140px); padding-bottom: clamp(48px, 6vw, 88px); }
.section--tight { padding: clamp(48px, 6vw, 76px) clamp(24px, 4vw, 80px); }
.section__inner { max-width: 1480px; margin: 0 auto; }
.section--ink {
  background: linear-gradient(to bottom,
    var(--charcoal) 0,
    var(--ink) clamp(72px, 9vw, 140px),
    var(--ink) calc(100% - clamp(72px, 9vw, 140px)),
    var(--charcoal) 100%);
}
.section--loam { background: var(--loam); }
/* A SHALLOWER dip, for the panel that follows another --ink section (Jason m0340).
   Two identical ink panels stacked read as one long flat band; this one only falls
   to the warm intermediate, so the page breathes deep–shallow instead of deep–deep. */
/* Two different jobs, two classes (verifier m0530 — they were sharing one).
   --ink-deep: a full dip to true ink over a LONG ramp. Breaks up a run of
   identical charcoal sections. Used on the homepage's Three Components.
   --ink-swell: a shallow dip that only reaches the warm intermediate, for a
   panel sitting next to another dipping section so the two do not read as one
   flat band (Jason m0340). Used on Root Juice. */
.section--ink-deep {
  background: linear-gradient(to bottom,
    var(--charcoal) 0,
    var(--ink) clamp(90px, 11vw, 180px),
    var(--ink) calc(100% - clamp(90px, 11vw, 180px)),
    var(--charcoal) 100%);
}
.section--ink-swell {
  background: linear-gradient(to bottom,
    var(--charcoal) 0,
    var(--char-warm) clamp(56px, 7vw, 108px),
    var(--char-warm) calc(100% - clamp(56px, 7vw, 108px)),
    var(--charcoal) 100%);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--scapes-sandstone); font-weight: 500;
  margin: 0;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 36px; height: 1px; background: currentColor;
}
.eyebrow--muted { color: var(--mist); }

.section__title {
  font-family: var(--font-display); font-weight: 300;
  font-size: var(--t-display);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--linen);
  max-width: 18ch; text-wrap: balance;
  margin: clamp(20px, 2.4vw, 32px) 0 0;
}
.section__title em {
  font-style: normal;  font-weight: 400;
  color: var(--scapes-sandstone);
}
.section__lead {
  font-family: var(--font-text); font-style: normal;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.5;
  color: var(--mist);
  max-width: 52ch; text-wrap: pretty;
  margin: clamp(22px, 2.4vw, 32px) 0 0;
}

/* ============================================================
   REVEAL — IntersectionObserver target
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1100ms var(--ease-out),
              transform 1100ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   ALL-ORGANIC MARK — reusable sitewide lockup (Jason m0103/m0105)
   Placed ONLY where literally true: the soil / feed / bed program.
   Links to Root Juice so it promotes the program. Never on the
   mosquito page (synthetic barrier) — the claim stays honest.
   ============================================================ */
.organic-mark {
  display: inline-flex; align-items: center; gap: 13px;
  margin-top: clamp(20px, 2.4vw, 30px);
  padding: 10px 18px 10px 13px;
  border: 1px solid rgba(176,150,60,0.26); border-radius: 999px;
  text-decoration: none; background: rgba(0,0,0,0.12);
  transition: border-color 320ms var(--ease-out), background 320ms var(--ease-out);
}
.organic-mark:hover { border-color: var(--bronze); background: rgba(176,150,60,0.07); }
.organic-mark__seal {
  flex: none; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--bronze); box-shadow: inset 0 0 0 3px rgba(176,150,60,0.12);
  position: relative;
}
.organic-mark__seal::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 9px; height: 9px; border-radius: 50%; background: var(--firelight);
}
.organic-mark__txt {
  display: flex; flex-direction: column; gap: 3px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--linen); line-height: 1.05;
}
.organic-mark__txt small {
  font-family: var(--font-text); font-size: 11.5px; font-weight: 400;
  letter-spacing: 0.01em; text-transform: none; color: var(--stone);
}
.organic-mark__txt small b { color: var(--bronze-soft); font-weight: 600; }

/* ============================================================
   AMBIENT AUDIO TOGGLE — global chrome
   Fixed bottom-right, quiet, mutable. The brand's ambient layer.
   ============================================================ */
.ambient {
  position: fixed; z-index: 2147483000;
  right: clamp(16px, 2.4vw, 28px); bottom: clamp(16px, 2.4vw, 28px);
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(10, 8, 7, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--mist); font-weight: 500;
  cursor: pointer; appearance: none;
  transition: border-color 320ms var(--ease-out),
              color 320ms var(--ease-out),
              transform 520ms var(--ease-out);
}
.ambient:hover, .ambient:focus-visible {
  border-color: var(--scapes-sandstone);
  color: var(--scapes-sandstone);
  outline: none;
}
body.aqg-open .ambient { opacity: 0; pointer-events: none; }
.ambient .bars { display: inline-flex; align-items: end; gap: 2px; height: 12px; }
.ambient .bars span {
  display: block; width: 2px; background: currentColor;
  height: 30%; opacity: 0.4;
  transition: height 320ms var(--ease-out), opacity 320ms var(--ease-out);
}
.ambient.is-on .bars span { opacity: 1; }
.ambient.is-playing .bars span { opacity: 1; animation: ambientBar 1.6s var(--ease-in-out) infinite; }
.ambient.is-playing .bars span:nth-child(1) { animation-delay: 0.0s; }
.ambient.is-playing .bars span:nth-child(2) { animation-delay: 0.2s; }
.ambient.is-playing .bars span:nth-child(3) { animation-delay: 0.4s; }
.ambient.is-playing .bars span:nth-child(4) { animation-delay: 0.6s; }
@keyframes ambientBar {
  0%, 100% { height: 30%; }
  50% { height: 90%; }
}
.ambient__label { transition: opacity 320ms var(--ease-out); }
@media (max-width: 540px) {
  /* Label drops away on phones — pad the pill back up to a 44px thumb target. */
  .ambient__label { display: none; }
  .ambient { padding: 16px; }
}

/* ============================================================
   BACK TO TOP — stacks above the ambient toggle, fades in on scroll.
   Matches the ambient toggle's glass-and-border language so the two
   read as a pair in the corner. Especially serves mobile, where the
   seedhead section-rail is hidden.
   ============================================================ */
.to-top {
  position: fixed; z-index: 40;
  right: clamp(16px, 2.4vw, 28px);
  /* Sits just above the ambient pill (≈34px tall at the corner) with a small
     gap — not floating high up the rail (Jason m0053). The Aquarius orb
     computes its dock from this element's live position, so it follows down. */
  bottom: calc(clamp(16px, 2.4vw, 28px) + 42px);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 8, 7, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--mist);
  cursor: pointer; appearance: none;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity 420ms var(--ease-out),
              transform 420ms var(--ease-out),
              visibility 420ms var(--ease-out),
              border-color 320ms var(--ease-out),
              color 320ms var(--ease-out);
}
.to-top.is-shown { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover, .to-top:focus-visible {
  border-color: var(--scapes-sandstone);
  color: var(--scapes-sandstone);
  outline: none;
}
.to-top svg { width: 15px; height: 15px; display: block; }
@media (prefers-reduced-motion: reduce) {
  .to-top {
    transition: opacity 200ms var(--ease-out), visibility 200ms var(--ease-out),
                border-color 320ms var(--ease-out), color 320ms var(--ease-out);
    transform: none;
  }
  .to-top.is-shown { transform: none; }
}

/* ============================================================
   STUDIO NOW — open-hours card in footer (signature moment #7)
   ============================================================ */
.studio-now {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(24px, 3vw, 36px) clamp(24px, 3vw, 40px);
  background: var(--char-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.studio-now::before {
  content: ""; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, var(--scapes-sandstone), var(--ember));
  opacity: 0.85;
}
.studio-now__pulse {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  position: relative;
}
.studio-now__pulse span {
  display: block; width: 10px; height: 10px;
  background: var(--ember); border-radius: 50%;
  box-shadow: 0 0 16px rgba(196,119,60,0.65);
  animation: snPulse 2.4s var(--ease-in-out) infinite;
}
@keyframes snPulse {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50%      { transform: scale(1.35); opacity: 0.55; }
}
.studio-now__body { min-width: 0; }
.studio-now__head {
  display: flex; align-items: baseline; gap: 14px;
  flex-wrap: wrap;
}
.studio-now__label {
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--scapes-sandstone); font-weight: 500;
}
.studio-now__time {
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mist); font-weight: 500;
}
.studio-now__crew {
  margin: 12px 0 6px;
  font-family: var(--font-body); font-style: normal;
  font-weight: 300; font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.35; color: var(--linen);
  text-wrap: pretty;
}
/* Per-crew roster — Maintenance · Mowing · Construction · Supervisor */
.studio-now__roster {
  list-style: none; margin: 15px 0 13px; padding: 0;
  display: grid; gap: 9px;
}
.studio-now__row {
  display: grid; grid-template-columns: 168px 1fr; gap: 20px;
  align-items: baseline;
}
.studio-now__crewname {
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--scapes-sandstone); font-weight: 500;
  white-space: nowrap;
}
.studio-now__crewstat {
  font-family: var(--font-body); font-style: normal; font-weight: 300;
  font-size: clamp(15px, 1.35vw, 18px); line-height: 1.4;
  color: var(--linen); text-wrap: pretty;
}
.studio-now__note {
  margin: 0;
  font-family: var(--font-body); font-size: 13px; line-height: 1.7;
  color: var(--mist);
}
@media (max-width: 540px) {
  .studio-now { grid-template-columns: 1fr; gap: 12px; }
  .studio-now__pulse { width: 22px; height: 22px; }
  .studio-now__row { grid-template-columns: 1fr; gap: 2px; }
}

/* ============================================================
   SEEDHEAD SCROLL BOOKMARK (signature moment #3)
   ============================================================ */
.bookmark {
  position: fixed; z-index: 30;
  top: 50%; right: clamp(10px, 1.4vw, 18px);
  transform: translateY(-50%);
  pointer-events: none;
}
@media (max-width: 900px) { .bookmark { display: none; } }
.bookmark__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 14px;
}
.bookmark__dot {
  position: relative;
  display: flex; align-items: center;
  width: 16px; height: 18px;
  pointer-events: auto;
  border-bottom: none;
}
.bookmark__bead {
  position: relative;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(190,180,160,0.34);
  transition: background 320ms var(--ease-out),
              transform 320ms var(--ease-out),
              box-shadow 320ms var(--ease-out);
}
.bookmark__caption {
  position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%) translateX(8px);
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--scapes-sandstone); font-weight: 500;
  white-space: nowrap;
  padding: 4px 10px;
  background: rgba(10,8,7,0.86);
  border: 1px solid var(--border);
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease-out),
              transform 220ms var(--ease-out);
}
.bookmark__dot:hover .bookmark__bead,
.bookmark__dot:focus-visible .bookmark__bead {
  background: var(--scapes-sandstone);
  transform: scale(1.4);
  box-shadow: 0 0 12px rgba(202,182,134,0.45);
}
.bookmark__dot:hover .bookmark__caption,
.bookmark__dot:focus-visible .bookmark__caption {
  opacity: 1; transform: translateY(-50%) translateX(0);
}
.bookmark__dot.is-active .bookmark__bead {
  background: var(--scapes-sandstone);
  transform: scale(1.25);
  box-shadow: 0 0 10px rgba(202,182,134,0.55);
}
.bookmark__dot.is-active::before {
  content: ""; position: absolute;
  right: -6px; top: 50%;
  width: 14px; height: 1px;
  background: var(--scapes-sandstone);
  transform: translateY(-50%);
  opacity: 0.65;
}

/* ============================================================
   RESPONSIVE UTILITIES
   Generic collapse for hand-rolled 2-column grids defined via
   inline styles (e.g. lifestyle / battle-cry / build sections on
   founder + careers). The inline style supplies the desktop
   grid-template-columns; this class enforces a 1-column stack
   below 760px so the layout works on phones.
   ============================================================ */
@media (max-width: 760px) {
  .page-split-grid {
    grid-template-columns: 1fr !important;
    gap: clamp(28px, 6vw, 44px) !important;
    text-align: left;
  }
  .page-split-grid > * { max-width: 100%; }
}

/* ============================================================
   STREAM — "listen on" platform links for The Dirt Church
   releases (I AM SCAPES). Used on the homepage Studio block and
   atop the anthems listening room. Buttons borrow the ghost
   language: bordered, transparent, linen text, sandstone on hover.
   A staggered, one-track-a-week rollout — the Spotify follow link
   collects each new single automatically, so nothing here needs
   re-deploying as platforms catch up.
   ============================================================ */
.stream {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px;
}
.stream--left { align-items: flex-start; text-align: left; }

.stream__label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--scapes-sandstone); font-weight: 500; margin: 0;
}
.stream__label::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--scapes-sandstone); flex: none;
  box-shadow: 0 0 0 0 rgba(202,182,134,0.5);
  animation: streamPulse 2.8s var(--ease-out) infinite;
}
@keyframes streamPulse {
  0%   { box-shadow: 0 0 0 0 rgba(202,182,134,0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(202,182,134,0); }
  100% { box-shadow: 0 0 0 0 rgba(202,182,134,0); }
}
@media (prefers-reduced-motion: reduce) {
  .stream__label::before { animation: none; }
}

.stream__title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(21px, 2vw, 27px); line-height: 1.2;
  color: var(--linen); margin: 0; text-wrap: balance;
}
.stream__title em { font-style: italic; color: var(--scapes-sandstone); }
.stream__by { color: var(--mist); }

.stream__links {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 2px;
}
/* The [hidden] attr loses to display:flex — restore it so the Listen
   disclosure actually collapses instead of only flipping its caret. */
.stream__links[hidden] { display: none; }
.stream--left .stream__links { justify-content: flex-start; }

.stream__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  color: var(--linen); text-decoration: none;
  border: 1px solid var(--border-strong); border-radius: 40px;
  background: rgba(255,255,255,0.015);
  transition: color 320ms var(--ease-out),
              border-color 320ms var(--ease-out),
              background 320ms var(--ease-out);
}
.stream__btn svg { width: 17px; height: 17px; flex: none; }
.stream__btn:hover, .stream__btn:focus-visible {
  color: var(--scapes-sandstone);
  border-color: var(--scapes-sandstone);
  background: rgba(202,182,134,0.06);
  outline: none;
}

.stream__follow {
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mist); text-decoration: none; border-bottom: none;
  transition: color 320ms var(--ease-out);
}
.stream__follow:hover, .stream__follow:focus-visible { color: var(--scapes-sandstone); }

/* ============================================================
   THE SEED HEAD — the site's artistic mark (sibling to the Hand).
   Hand-drawn sabal seed head, cream line on transparent.
   Clean, light, luxurious. Faint and hand-placed — never a
   stamped pattern. Drop it anywhere in one line:

     <span class="seed" aria-hidden="true"></span>              small, right
     <span class="seed seed--lg seed--left"></span>             large, left
     <span class="seed seed--seam"></span>                      centered section seam
     <span class="seed seed--xl seed--bleed seed--right"></span> big, half off-page

   Sits behind content (z-index 0) and never catches a click.
   ============================================================ */
.seed{position:absolute;z-index:0;pointer-events:none;display:block;width:180px;aspect-ratio:1.5/1;
  background:url('../assets/seed-head-mark.png') center/contain no-repeat;opacity:.10;
  filter:saturate(.6)}
.seed--sm{width:120px}
.seed--lg{width:300px}
.seed--xl{width:460px}
.seed--right{right:-40px;top:8%}
.seed--left{left:-40px;top:12%;transform:scaleX(-1)}
.seed--bleed{right:-14%}
.seed--left.seed--bleed{right:auto;left:-14%}
.seed--seam{left:50%;top:auto;bottom:-30px;transform:translateX(-50%);opacity:.085;width:220px}
.seed--faint{opacity:.07}
.seed--tilt{rotate:-8deg}
.seed--tilt-r{rotate:9deg}
/* any section holding a seed needs a containing block + clipping */
.has-seed{position:relative;overflow:hidden}
/* Safety net: a seed dropped into a section that forgot .has-seed used to push
   the page ~59px wide (Jason m0445 audit). overflow-x:clip trims the bleed
   without creating a scroll container the way overflow:hidden would. */
html{overflow-x:clip}
@media (max-width:760px){.seed{opacity:.06}.seed--xl,.seed--lg{width:220px}}
@media print{.seed{display:none}}
/* Homepage — the Root Juice creed IS the link (Jason: kill the button) */
/* Homepage — the Root Juice creed IS the link (Jason: kill the button).
   The glow lives on a pseudo-element that extends WELL PAST the box and fades
   to nothing inside its own bounds, so there is no clipped edge and no visible
   rounded panel — just light behind the words (Jason m0420). */
/* The Root Juice creed IS the link (Jason: kill the button). No glow, no second
   label — one cue underneath, and that is the whole affordance (Jason m0540). */
.rj__creed-link{display:block;text-decoration:none;color:inherit;position:relative;padding:0;margin:0;background:none}
.rj__creed-link .rj__creed{transition:color .3s ease}
/* An obvious door. The glow alone reads as decoration and people scroll past it,
   so the creed carries a real cue with a hairline that slides on hover (Jason m0429). */
.rj__creed-cue{display:inline-flex;align-items:center;gap:10px;margin-top:22px;font-family:var(--font-body);font-size:11px;font-weight:600;letter-spacing:.22em;text-transform:uppercase;color:var(--scapes-sandstone);padding-bottom:7px;border-bottom:1px solid var(--scapes-sandstone);transition:color .3s ease,border-color .3s ease,gap .3s ease}
.rj__creed-cue .arrow{transition:transform .45s var(--ease-out)}
.rj__creed-link:hover .rj__creed-cue,.rj__creed-link:focus-visible .rj__creed-cue{color:var(--firelight);border-color:var(--firelight);gap:15px}
.rj__creed-link:hover .rj__creed-cue .arrow{transform:translateX(4px)}
.rj__creed-link,.rj__creed-link:hover,.rj__creed-link:focus{border:0;box-shadow:none;text-decoration:none}
.rj__creed-link:focus-visible{outline:1px solid var(--firelight);outline-offset:8px}


/* The Work — closing CTA: centered, and the hard top/bottom edges feathered
   into the page instead of butting against it (Jason 2026-07-29). */
.hp-cta__inner--centered{max-width:820px;margin:0 auto;text-align:center}
.hp-cta__inner--centered .hp-cta__title{text-wrap:balance;margin-left:auto;margin-right:auto}
.hp-cta__inner--centered .hp-cta__lead{max-width:56ch;margin-left:auto;margin-right:auto;text-wrap:pretty}
.hp-cta__actions--centered{justify-content:center}
.hp-cta--feathered{position:relative;isolation:isolate}
.hp-cta--feathered .hp-cta__plate{-webkit-mask-image:linear-gradient(180deg,transparent 0,#000 14%,#000 86%,transparent 100%);mask-image:linear-gradient(180deg,transparent 0,#000 14%,#000 86%,transparent 100%)}
.hp-cta--feathered::before,.hp-cta--feathered::after{content:"";position:absolute;left:0;right:0;height:clamp(70px,9vw,130px);pointer-events:none;z-index:1}
.hp-cta--feathered::before{top:0;background:linear-gradient(180deg,var(--ink,#0d0b0a) 0,transparent 100%)}
.hp-cta--feathered::after{bottom:0;background:linear-gradient(0deg,var(--ink,#0d0b0a) 0,transparent 100%)}
.hp-cta--feathered .hp-cta__inner{position:relative;z-index:2}

/* ============================================================
   THE STUDIO NOW — live weather at the studio (Jason 2026-07-29).
   Sits at the right of the card head. Hand-drawn line marks in
   firelight, sized to the type. When the ground is wet the crew
   lines rewrite themselves; J's Desk never does.
   ============================================================ */
.studio-now__head{justify-content:space-between}
.studio-now--haswx{grid-template-columns:auto 1fr minmax(240px,300px)}
.studio-wx{align-self:start;padding:18px 20px 17px;border:1px solid rgba(202,182,134,.20);border-radius:8px;background:linear-gradient(158deg,rgba(202,182,134,.09),rgba(202,182,134,.015) 70%);color:var(--scapes-sandstone,#cab686)}
.studio-wx__top{display:flex;align-items:baseline;justify-content:space-between;gap:10px;font-family:var(--font-body,system-ui);font-size:9px;letter-spacing:.24em;text-transform:uppercase}
.studio-wx__eye{color:#f0b256;opacity:.9}
.studio-wx__place{opacity:.5}
.studio-wx__read{display:flex;align-items:center;gap:14px}
.studio-wx__orb{display:grid;place-items:center;width:52px;height:52px;flex:none;border-radius:50%;background:radial-gradient(circle at 34% 30%,rgba(240,178,86,.26),rgba(202,182,134,.05) 72%);box-shadow:inset 0 0 0 1px rgba(202,182,134,.20)}
.studio-wx__orb svg{width:30px;height:30px}
.studio-wx--sun .studio-wx__orb svg,.studio-wx--partly .studio-wx__orb svg{color:#f0b256}
.studio-wx--rain .studio-wx__orb svg,.studio-wx--storm .studio-wx__orb svg,.studio-wx--snow .studio-wx__orb svg{color:#9fc4d6}
.studio-wx--sun .studio-wx__orb{animation:wxGlow 5.5s ease-in-out infinite}
@keyframes wxGlow{0%,100%{box-shadow:inset 0 0 0 1px rgba(202,182,134,.20)}50%{box-shadow:inset 0 0 0 1px rgba(240,178,86,.44),0 0 18px rgba(240,178,86,.16)}}
@media (prefers-reduced-motion:reduce){.studio-wx--sun .studio-wx__orb{animation:none}}
.studio-wx__temp{font-family:var(--font-display,Georgia,serif);font-weight:300;font-size:46px;line-height:.86;color:var(--linen,#efe7db);font-variant-numeric:tabular-nums}
.studio-wx__temp i{font-style:normal;font-size:16px;opacity:.55;margin-left:2px}
.studio-wx__cond{font-family:var(--font-body,system-ui);font-size:10px;letter-spacing:.24em;text-transform:uppercase;opacity:.78;margin:12px 0 0}
.studio-wx__meta{display:flex;flex-wrap:wrap;justify-content:center;gap:6px 26px;margin-top:12px;padding-top:12px;border-top:1px solid rgba(202,182,134,.16)}
.studio-wx__meta span{display:flex;flex-direction:column;align-items:center;gap:3px}
.studio-wx__meta i{font-style:normal;font-family:var(--font-body,system-ui);font-size:8.5px;letter-spacing:.18em;text-transform:uppercase;opacity:.52}
.studio-wx__meta b{font-family:var(--font-display,Georgia,serif);font-weight:300;font-size:19px;line-height:1;color:var(--linen,#efe7db);font-variant-numeric:tabular-nums}
.studio-wx__say{font-family:var(--font-text,Georgia,serif);font-style:italic;font-size:13.5px;line-height:1.5;color:rgba(239,231,219,.60);margin:14px 0 0;text-wrap:pretty}
.studio-wx__alert{margin:14px -20px -17px;padding:12px 20px 14px;border-top:1px solid rgba(240,178,86,.28);background:linear-gradient(158deg,rgba(240,178,86,.16),rgba(240,178,86,.03) 78%);border-radius:0 0 7px 7px}
.studio-wx__alert b{display:block;font-family:var(--font-body,system-ui);font-size:9px;font-weight:600;letter-spacing:.24em;text-transform:uppercase;color:#f0b256}
.studio-wx__alert span{display:block;margin-top:5px;font-family:var(--font-text,Georgia,serif);font-size:13.5px;line-height:1.5;color:rgba(239,231,219,.76);text-wrap:pretty}
.studio-wx--alert{border-color:rgba(240,178,86,.30)}
@media (max-width:900px){.studio-now--haswx{grid-template-columns:auto 1fr}.studio-wx{grid-column:1 / -1;margin-top:4px}}
@media (max-width:540px){.studio-now--haswx{grid-template-columns:1fr}}
/* wet day — the pulse dims; the studio is holding */
.studio-now--wet .studio-now__pulse span{animation-duration:4.2s;opacity:.55}
@media (prefers-reduced-motion:reduce){.studio-now--wet .studio-now__pulse span{animation:none}}

@media (max-width: 700px){
  .studio-now__label,
  .studio-now__crewname,
  .bookmark__caption,
  .stream__label,
  .studio-wx__top,
  .studio-wx__cond,
  .studio-wx__alert b {
    font-size: 12px /*mbump*/;
    letter-spacing: 0.16em;
  }
}
