/* Urban Fit Yoga — INTERIOR SYSTEM, hero-C port (claude, 2026-07-29)
   ────────────────────────────────────────────────────────────────────────
   Ported from the signed reference: hero-C-TRUE-{1440x900,390x844}.png
   reference sha256 81cd8a094ceeeea4efdbf5fda754d3b49d59e00e1a382ae0b68e67aeee867fcb
   (signed token 32c7ca46, Josef, 2026-07-29T00:10:26Z)

   Tokens and components taken from design/DESIGN-SYSTEM.md, which is the
   extraction stage of the chain. index.html is NOT governed by this file —
   it carries its own inline style and stays byte-identical to the build
   token so Sol's fidelity gate still has its evidence. Duplication between
   the two is deliberate and temporary; extract to a shared tokens.css only
   AFTER the gate passes.

   Interiors are the LIGHT half of the system: DESIGN-SYSTEM.md declares
   paper as "interior backgrounds" and ink as "body text on light". The
   monument idiom carries in through the page-hero (photo + warm scrim +
   low-left Georgia), not through a dark page ground. */

/* ── family type (OFL), same elevation as home v2 — kimi, 2026-07-29 ── */
@font-face{font-family:'Fraunces';src:url('fonts/Fraunces-var.woff2') format('woff2');font-weight:100 900;font-style:normal;font-display:swap}
@font-face{font-family:'Fraunces';src:url('fonts/Fraunces-Italic-var.woff2') format('woff2');font-weight:100 900;font-style:italic;font-display:swap}
@font-face{font-family:'Schibsted';src:url('fonts/SchibstedGrotesk-var.woff2') format('woff2');font-weight:100 900;font-style:normal;font-display:swap}

:root {
  /* ── the signed palette (DESIGN-SYSTEM.md §Tokens) ── */
  --heat:        #d4713d;   /* UFY door, primary CTA, em accents */
  --heat-deep:   #2a1409;   /* heat field base */
  --breath:      #63a398;   /* SYT door, breath accents */
  --breath-deep: #0f2220;   /* breath field base */
  --paper:       #f6efe6;   /* interior background / light text on dark */
  --deep:        #14100d;   /* hero ground */
  --ink:         #241d19;   /* body text on light */
  --muted:       #b8ab9a;   /* stat labels, quiet metadata */

  /* interior-only derivations, tinted from the signed hues (no new colours) */
  --ink-soft:    #4d423b;
  --rule:        #e2d6c7;
  --tint-breath: #eaf1ef;
  --tint-heat:   #f4e9de;
  --card:        #fffdfa;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Schibsted', 'Helvetica Neue', Arial, sans-serif;
}

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

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; }
img { max-width: 100%; display: block; }

/* completion a11y 2026-08-17: skip link (keyboard/screen-reader) + visible focus */
.skip-link{position:absolute;left:-9999px;top:0;z-index:100;background:var(--deep);color:var(--paper);
           padding:.7rem 1.1rem;border-radius:0 0 8px 0;text-decoration:none;font-weight:700}
.skip-link:focus{left:0;color:var(--paper)}
:focus-visible{outline:2px solid var(--heat);outline-offset:2px}
a { color: inherit; }

/* ══ 6. site-nav ══ light-page variant: aria-current underlined in heat ══ */
.site-nav {
  position: relative;
  display: flex; gap: 1.6rem; justify-content: center; flex-wrap: wrap;
  padding: 1.1rem;
  font-size: .85rem; letter-spacing: .06em; text-transform: uppercase;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
/* Wayne's mark (revision round 2026-08-13): two-tone art, white letters on
   navy blocks — reads as-is on the light interior bar, so no chip here. */
.site-nav .brand {
  position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%);
  display: inline-flex; align-items: center; min-height: 44px;
}
.site-nav .brand img { width: 96px; height: 40px; display: block; }
.site-nav a { color: var(--ink-soft); text-decoration: none; padding-bottom: 2px; white-space: nowrap; }
.site-nav .nav-short { display: none; }
.site-nav a:hover { color: var(--ink); }
.site-nav a[aria-current] {
  color: var(--ink); border-bottom: 2px solid var(--heat); font-weight: 700;
}
/* Member Login — the returning-student door (Wayne's ask, 2026-08-20).
   Same Mindbody sign-in the old site's MEMBER LOGIN button reached. */
.site-nav .nav-login {
  border: 1px solid var(--rule); border-radius: 999px;
  padding: .4rem .85rem; margin: -.4rem 0;
}
.site-nav .nav-login:hover { border-color: var(--heat); color: var(--ink); }

/* ══ 1. hero-monument (interior scale) ══════════════════════════════════
   Same recipe as the signed frame at reduced height: full-bleed plate,
   warm dark scrim (linear 180° .48→.32→.92 + radial behind the numeral),
   headline block low-left. Interiors run ~52vh; the signed home runs 92vh. */
.page-hero {
  position: relative; overflow: hidden;
  min-height: 52vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.6rem, 4vw, 4rem);
  background: var(--deep);
  color: var(--paper);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--plate);
  background-position: var(--focal, center 38%);
  background-size: cover;
  background-repeat: no-repeat;
}
/* The scrim carries THREE layers, not the home page's two. The signed hero
   works on plate 02, which is already dark; interiors must stay legible on
   whatever plate the page needs — 05 is bright and busy and the headline
   drowned in it. The added 90° layer darkens the text column specifically,
   so legibility no longer depends on the photograph's luminance. Verified
   against the brightest plate in the quarry, not the friendliest. */
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20,16,13,.86) 0%, rgba(20,16,13,.62) 34%, rgba(20,16,13,.14) 68%, transparent 100%),
    radial-gradient(ellipse 34% 42% at 88% 12%, rgba(20,16,13,.58), transparent 70%),
    linear-gradient(180deg, rgba(20,16,13,.42) 0%, rgba(20,16,13,.30) 34%, rgba(20,16,13,.92) 82%);
}
.page-hero > * { position: relative; z-index: 2; }
/* responsive plate (perf wave fix 2026-08-17): image-set() with width
   descriptors was invalid CSS — heroes lost their photo entirely. Correct
   pattern: pages declare --plate-sm inline; mobile swaps to the 800w plate. */
@media (max-width: 720px) {
  .page-hero::before { background-image: var(--plate-sm, var(--plate)); }
}
/* the outlined ghost numeral — ONLY where the number is real and labelled
   on the same page (design law: no stat without a source) */
.ghost {
  position: absolute; right: .01em; top: 2%; z-index: 1;
  font-family: var(--serif);
  font-size: clamp(9rem, 30vw, 26rem); line-height: .8;
  color: rgba(212,113,61,.10);
  -webkit-text-stroke: 2.5px rgba(246,239,230,.60);
  user-select: none; pointer-events: none;
}

.over {
  font-size: .78rem; letter-spacing: .4em; text-transform: uppercase;
  color: #f0e4d4; margin-bottom: 1.1rem;
  text-shadow: 0 1px 10px rgba(0,0,0,.7);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 3.9rem); line-height: 1.02;
  max-width: 17ch;
  text-shadow: 0 2px 26px rgba(0,0,0,.5);
}
.page-hero h1 em { font-style: normal; color: var(--heat); }
.page-hero .sub {
  margin-top: 1.2rem; max-width: 50ch;
  color: #e6dccf; font-size: 1.04rem;
  text-shadow: 0 1px 14px rgba(0,0,0,.6);
}

/* ══ 2. stat-row ══ every number real, sourced, labelled ════════════════ */
.facts { margin-top: 1.9rem; display: flex; gap: 2.4rem; flex-wrap: wrap; }
.fact b { display: block; font-family: var(--serif); font-size: 1.55rem; }
.fact span {
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
}

/* ══ 3. cta-primary ══ exactly ONE dominant next step per view ══════════ */
.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: 1rem 2.1rem; border-radius: 999px;
  background: var(--heat); color: #fff; letter-spacing: .02em;
}
.btn:hover { background: #c26433; }
/* deep-heat variant (contrast rounds): white on #b35421 = 4.99:1,
   hover #8f3d16 = 7.38:1 — WCAG-computed */
.btn--deep { background: #b35421; }
.btn--deep:hover { background: #8f3d16; }

/* ══ 4. quiet-link ══ the secondary path ════════════════════════════════ */
.quiet-link {
  color: var(--ink); text-decoration: none;
  border-bottom: 1.5px solid rgba(36,29,25,.4);
  padding-bottom: 2px; font-size: .95rem;
}
.page-hero .quiet-link { color: #d8cdbf; border-bottom-color: rgba(216,205,191,.5); }
.page-hero .cta-row { margin-top: 1.6rem; }

/* the link idiom used inside interior copy and bands */
/* 2026-08-17 fix round (Sol gate): default door-cta was --heat #d4713d —
   3.3:1 on paper, under the 4.5 floor. Ember #8f3d16 measures 6.50:1 paper /
   7.31:1 card; dark contexts keep their own overrides below. */
.door-cta {
  display: inline-block; font-weight: 700; text-decoration: none;
  color: #8f3d16; border-bottom: 2px solid #8f3d16;
  padding-bottom: 2px; align-self: flex-start;
}
.band--breath .door-cta { color: var(--breath); border-bottom-color: var(--breath); margin-top: 1.2rem; }

/* ══ 7. section ══ max 820px, clamp padding, tint variants ══════════════ */
.section {
  max-width: 820px; margin: 0 auto;
  padding: clamp(2.2rem, 6vw, 4rem) 1.4rem;
}
.section h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  margin-bottom: 1rem; max-width: 24ch;
}
/* Call-7 deck §3: the category name is the real section heading (h2); the
   former headline steps down to h3 beneath it. */
.section h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin-bottom: .9rem; max-width: 30ch;
}
.section-img { width: 100%; height: auto; border-radius: 10px; margin-top: 1.5rem; }
.section p + p { margin-top: .9rem; }
.section p { max-width: 64ch; color: var(--ink-soft); }
.section--tint      { background: var(--tint-breath); max-width: none; }
.section--tint-warm { background: var(--tint-heat);   max-width: none; }
.section--tint > *, .section--tint-warm > * { max-width: 820px; margin-inline: auto; }

/* an eyebrow for interior sections, matching the hero overline at half strength */
/* contrast sweep 2026-08-17 (legacy C2 debt, Sol's 8/12 flags): --heat on
   paper measured 2.96:1, below the 4.5 floor for .72rem text — ember
   #8f3d16 = 6.50:1 on paper / 7.31:1 on card (WCAG-computed). Dark
   door-field .path eyebrows keep --heat/--breath (5.2:1+ on their
   gradients, verified); .k--breath's only usage is the DARK VOD band
   (#0f2220), where --breath = 5.72:1 — do NOT deepen it. */
.k {
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: #8f3d16; margin-bottom: .8rem;
}
.k--breath { color: var(--breath); }

/* ══ 5. door-field ══ the temperature split, carried from the signed frame */
.paths { display: grid; grid-template-columns: 1fr 1fr; }
.path {
  padding: clamp(1.8rem, 3.6vw, 3rem); min-height: 30vh;
  display: flex; flex-direction: column; justify-content: center;
  color: var(--paper);
}
.path--heat   { background: linear-gradient(135deg,#2a1409,#1a0c05); border-top: 3px solid var(--heat); }
.path--breath { background: linear-gradient(135deg,#0f2220,#091614); border-top: 3px solid var(--breath); }
.path .k { margin-bottom: .8rem; }
.path--heat .k { color: var(--heat); } .path--breath .k { color: var(--breath); }
.path h2 { font-family: var(--serif); font-size: clamp(1.3rem,2.4vw,1.9rem); max-width: 18ch; margin-bottom: .7rem; }
.path p  { color: #c9beb2; max-width: 42ch; font-size: .95rem; margin-bottom: 1.2rem; }
.path a  { color: var(--paper); font-weight: 700; text-decoration: none; border-bottom: 2px solid; align-self: flex-start; padding-bottom: 2px; }
.path--heat a { border-color: var(--heat); } .path--breath a { border-color: var(--breath); }

/* ══ class-list ══ the schedule of formats, now split Heated / Non-Heated
   (Wayne, call-6 2026-08-07: two rooms; only Bikram + Heated SYT heated).
   The split retired the old 8-by-4 grid math: heated is a clean 2-up,
   non-heated runs 3-up, both collapsing responsively. Let the content
   pick the grid; do not let the viewport pick it. */
.class-list {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--rule);
  border-block: 1px solid var(--rule);
}
.class-group-h {
  max-width: 820px; margin: 0 auto; text-align: center;
  padding: clamp(1.8rem, 4vw, 2.6rem) 1.4rem .8rem;
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
}
.class-list--heated    { grid-template-columns: repeat(2, 1fr); }
.class-list--nonheated { grid-template-columns: repeat(3, 1fr); }
/* 5 cards: empty 6th cell painted the rule background (Josef's "gray box")
   and a plain 3-up leaves the last row left-weighted (Sol's re-entry).
   Fix: 6-track grid, each card spans 2 → rows of 3, and the last pair
   starts at track 2 / 4 so it sits centered (1/6 margin each side).
   Transparent grid bg + article outlines carry the hairlines. */
.class-list--nonheated { background: transparent; border-block: none; grid-template-columns: repeat(6, 1fr); }
.class-list--nonheated article { outline: 1px solid var(--rule); grid-column: span 2; }
@media (min-width: 1101px) {
  .class-list--nonheated article:nth-child(4) { grid-column: 2 / span 2; }
  .class-list--nonheated article:nth-child(5) { grid-column: 4 / span 2; }
}
@media (max-width: 1100px) {
  .class-list, .class-list--heated { grid-template-columns: repeat(2, 1fr); }
  .class-list--nonheated { grid-template-columns: repeat(2, 1fr); }
  .class-list--nonheated article { grid-column: auto; }
  .class-list--nonheated article:last-child { grid-column: 1 / -1; max-width: 50%; margin-inline: auto; width: 100%; }
}
@media (max-width: 560px)  {
  .class-list, .class-list--heated, .class-list--nonheated { grid-template-columns: 1fr; }
  .class-list--nonheated article:last-child { max-width: none; }
}
.class-list article {
  background: var(--paper);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  display: flex; flex-direction: column;
  transition: background .25s ease;
}
.class-list article:hover { background: var(--tint-heat); }
.class-list h2 {
  font-size: 1.22rem; margin-bottom: .55rem;
  padding-left: .85rem; border-left: 3px solid var(--heat);
}
.class-list p { color: var(--ink-soft); font-size: .95rem; max-width: 46ch; }
/* color = the ROOM, set by the group (Josef review 2026-08-11): heat for
   Heated, breath for Non-Heated. The old data-door accents predated the
   split and mixed a blue bar into the Heated group — superseded. */
.class-list--heated article h2 { border-left-color: var(--heat); }
.class-list--heated article:hover { background: var(--tint-heat); }
.class-list--nonheated article h2 { border-left-color: var(--breath); }
.class-list--nonheated article:hover { background: var(--tint-breath); }

/* ══ faq-list ══ objection diffusion (was UNSTYLED in the scaffold) ══════ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-list details {
  border-bottom: 1px solid var(--rule);
  padding: 1.15rem .2rem;
}
.faq-list details[open] { background: var(--tint-heat); padding-inline: 1rem; }
.faq-list summary {
  cursor: pointer; font-family: var(--serif); font-size: 1.08rem;
  font-weight: 600; list-style: none; position: relative; padding-right: 2rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: .4rem; top: -.15rem;
  font-size: 1.5rem; color: var(--heat); line-height: 1;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin-top: .75rem; color: var(--ink-soft); max-width: 60ch; }
.faq-list details a { color: var(--heat); font-weight: 700; }

/* ══ schedule strip ══ the live-Mindbody note ═══════════════════════════ */
.strip {
  background: var(--deep); color: var(--paper);
  padding: clamp(2rem, 5vw, 3.2rem) 1.4rem; text-align: center;
}
.strip p { max-width: 54ch; margin: 0 auto 1.2rem; color: #d8cdbf; }
.strip .door-cta { color: var(--heat); border-bottom-color: var(--heat); }

/* ══ live schedule ══ the Branded Web embed (iframe), in our frame ════════ */
.schedule-live {
  max-width: 1060px; margin: 0 auto;
  padding: clamp(2.2rem, 6vw, 4rem) 1.4rem;
}
.schedule-live h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.05rem); margin-bottom: .6rem; max-width: 24ch;
}
.schedule-note { color: var(--ink-soft); max-width: 56ch; margin-bottom: 1.6rem; }
.schedule-frame {
  background: var(--card); border: 1px solid var(--rule); border-radius: 10px;
  padding: clamp(1rem, 2.4vw, 1.8rem); overflow-x: auto;
  min-height: 320px; position: relative;
}
.schedule-loading {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-size: .92rem; pointer-events: none; text-align: center; padding: 1rem;
}
/* revision round 2026-08-13: quiet pulse while the widget loads; color was
   --muted (#b8ab9a = 2.2:1 on card) → ink-soft = 8.5:1 */
@media (prefers-reduced-motion: no-preference) {
  .schedule-loading { animation: sched-pulse 1.8s ease-in-out infinite; }
  @keyframes sched-pulse { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
}
/* once the widget actually populates, the placeholder steps aside */
.schedule-fallback { margin-top: 1rem; font-size: .9rem; color: var(--ink-soft); }
.schedule-fallback a { color: var(--heat); font-weight: 700; }
/* Branded Web renders cross-origin in an iframe — no interior skinning is
   possible; the frame, overline, and section voice carry our tokens. */
.schedule-frame .hc_schedule, .schedule-frame table { width: 100%; }
.schedule-frame a { color: var(--heat); }
.mindbody-widget:has(iframe) .schedule-loading { display: none; }

/* ══ tiers ══ pricing, dominant offer featured ══════════════════════════ */
.tiers {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem; max-width: 980px; margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.4rem) 1.4rem;
}
.tier {
  border: 1px solid var(--rule); border-radius: 8px;
  padding: 2rem 1.5rem; text-align: center; background: var(--card);
  display: flex; flex-direction: column;
}
.tier h2 { font-size: 1.1rem; letter-spacing: .04em; text-transform: uppercase;
           font-family: var(--sans); font-weight: 700; color: var(--ink-soft); }
.tier .price { font-family: var(--serif); font-size: 2.7rem; margin: .5rem 0 .7rem; line-height: 1; }
.tier p:last-child { color: var(--ink-soft); font-size: .92rem; }
.tier--featured {
  border-color: var(--heat); border-width: 2px;
  box-shadow: 0 6px 30px rgba(212,113,61,.16);
  position: relative;
}
.tier--featured .price { color: var(--heat); }
.tier--featured::before {
  content: "Start here"; position: absolute; top: -.72rem; left: 50%;
  transform: translateX(-50%);
  background: var(--heat); color: #fff;
  font-size: .64rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700; padding: .3rem .85rem; border-radius: 999px;
}
@media (max-width: 720px) { .tiers { grid-template-columns: 1fr; } }

/* per-tier purchase links (HealCode pricing/contract widgets) — the tier's
   own checkout, not a generic booking page */
.tier .buy { margin-top: auto; padding-top: 1.2rem; }
.tier .buy a {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: .8rem 1.7rem; border-radius: 999px;
  border: 2px solid var(--heat); color: var(--heat); letter-spacing: .02em;
}
.tier .buy--primary a, .tier--featured .buy a {
  background: var(--heat); color: #fff;
}
.tier .buy a:hover { background: var(--heat); color: #fff; }

/* the full price book, folded away — one dominant step stays dominant */
.price-book { max-width: 820px; margin: 0 auto clamp(2rem,5vw,3.4rem); padding: 0 1.4rem; }
.price-book > summary {
  cursor: pointer; font-weight: 700; list-style: none;
  padding: 1rem 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  font-size: .95rem; letter-spacing: .04em;
}
.price-book > summary::-webkit-details-marker { display: none; }
.price-book > summary::after { content: " ▾"; color: var(--heat); }
.price-book[open] > summary::after { content: " ▴"; }
.price-groups {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 1.8rem 2rem; padding: 1.8rem 0;
}
.price-groups h2 { font-size: 1.02rem; margin-bottom: .6rem; }
.price-groups ul { list-style: none; }
.price-groups li {
  padding: .42rem 0; border-bottom: 1px dotted var(--rule);
  font-size: .93rem; color: var(--ink-soft);
}

/* ══ 8. creator / band / staff-grid / duo / contact-card ════════════════ */
.creator { display: grid; grid-template-columns: 190px 1fr; gap: 2.2rem; align-items: start; }
.creator img { width: 190px; height: 190px; object-fit: cover; border-radius: 50%;
               border: 3px solid var(--card); box-shadow: 0 4px 22px rgba(36,29,25,.14); }
@media (max-width: 640px) { .creator { grid-template-columns: 1fr; } .creator img { margin: 0 auto; } }

.band { display: grid; grid-template-columns: 1fr 1fr; min-height: 34vh; }
.band > .band-media { background-image: var(--band-img); background-size: cover; background-position: center; min-height: 260px; }
/* band-media responsive image (perf wave fix 2026-08-17): same invalid
   image-set() bug as the hero plates — inline bg removed; vars + swap. */
@media (max-width: 720px) {
  .band > .band-media { background-image: var(--band-img-sm, var(--band-img)); }
}
.band > .band-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(1.8rem, 4vw, 3rem);
}
.band--breath { background: var(--breath-deep); color: #e4efec; }
.band--breath p { max-width: 44ch; }
@media (max-width: 720px) { .band { grid-template-columns: 1fr; } }

.staff-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.9rem 1.2rem; text-align: center;
}
.staff-grid figure img {
  width: 124px; height: 124px; object-fit: cover; border-radius: 50%;
  margin: 0 auto .65rem; border: 2px solid var(--card);
  box-shadow: 0 3px 14px rgba(36,29,25,.12);
}
.staff-grid figcaption { font-size: .89rem; color: var(--ink); font-weight: 600; }
.staff-grid figcaption .role {
  display: block; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); font-weight: 400; margin-top: .2rem;
}

.duo { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.duo img { width: 100%; height: 320px; object-fit: cover; border-radius: 6px; }
.duo .duo-wide { grid-column: 1 / -1; height: auto; }
@media (max-width: 640px) { .duo { grid-template-columns: 1fr; } .duo img { height: 240px; } .duo .duo-wide { height: auto; } }

.contact-card {
  background: var(--card); border: 1px solid var(--rule); border-radius: 8px;
  padding: 2.2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem;
}
.contact-card h2 { font-size: 1.3rem; margin-bottom: .7rem; }
.contact-card address { font-style: normal; color: var(--ink-soft); }
/* ember on card measured 7.26:1 — Sol's gate flagged plain --heat at 3.32:1 */
.contact-card a { color: #8f3d16; font-weight: 700; }
@media (max-width: 640px) { .contact-card { grid-template-columns: 1fr; } }

/* hours grid — seven scan rows, day left / time right, hairline before the
   weekend (Josef 2026-08-17: "easier on the eyes, linebreak between days").
   Values verbatim from Richard's Yext/Zoho record; tabular figures align the
   time column. */
.hours-grid { margin: .1rem 0 0; }
.hours-grid > div { display: flex; justify-content: space-between; gap: 1.2rem; padding: .24rem 0; }
.hours-grid dt { font-weight: 700; }
.hours-grid dd { margin: 0; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours-grid dd span { display: block; }  /* split-shift ranges stack right (Wayne 2026-08-18) */
.hours-grid .wknd { border-top: 1px solid var(--rule); margin-top: .3rem; padding-top: .54rem; }

/* ══ closing CTA ══ one next step, every page ═══════════════════════════ */
.cta-block {
  text-align: center; background: var(--deep); color: var(--paper);
  padding: clamp(2.8rem, 7vw, 5rem) 1.4rem;
}
/* re-entry gate 2026-08-12: the shared closing button takes the same
   deep-heat treatment as the other gated controls — white on #b35421 =
   4.99:1 (white on --heat measured 3.37:1), hover #8f3d16 = 7.38:1.
   One rule keeps all six pages' closing CTAs identical. */
.cta-block .btn { background: #b35421; }
.cta-block .btn:hover { background: #8f3d16; }
.cta-block p {
  max-width: 52ch; margin: 0 auto 1.6rem;
  font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #e6dccf; line-height: 1.4;
}

/* ══ copy-slot tripwire — an unfilled slot must never reach staging ═════ */
[data-slot]:empty::before {
  content: "[copy pending: " attr(data-slot) "]"; color: #b00; font-size: .85em;
}

/* ══ motion — only inside the reduced-motion discipline ═════════════════ */
@media (prefers-reduced-motion: no-preference) {
  .ghost { animation: breathe 9s ease-in-out infinite; }
  @keyframes breathe { 50% { -webkit-text-stroke-color: rgba(212,113,61,.45); } }
}

/* ══ mobile — the 390x844 half of the signed pair ═══════════════════════ */
@media (max-width: 760px) {
  .paths { grid-template-columns: 1fr; }
  .page-hero { min-height: 46vh; }
  .page-hero h1 { font-size: 1.95rem; }
  .ghost { font-size: 8rem; top: 1.5%; opacity: .7; }
  .facts { gap: 1.5rem; }
  .path { min-height: 0; padding: 1.4rem 1.2rem; }
  /* compact mobile nav — revision round 2026-08-13: the single-row scroll
     pattern clipped labels at 390; replaced with a quiet two-line WRAPPED
     nav, centered, on the solid paper bar (ink-soft links = 8.5:1). */
  .site-nav {
    flex-wrap: wrap; justify-content: center; gap: 0 .8rem;
    padding: .3rem .8rem .5rem;
    font-size: .72rem; letter-spacing: .03em;
  }
  /* brand centers as its own quiet row above the wrapped links */
  .site-nav .brand { position: static; transform: none; flex: 0 0 100%; width: 100%; justify-content: center; margin-right: 0; margin-bottom: .1rem; }
  /* the login pill's desktop negative margin overlapped the row above at 390
     (Sol's gate 2026-08-20: 6.4px tap-owner collision with the STY link) */
  .site-nav .nav-login { margin: 0; padding: .3rem .7rem; }
  .site-nav a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 .3rem; }
  .site-nav .nav-full { display: none; }
  .site-nav .nav-short { display: inline; }
  .contact-card { padding: 1.4rem; }
  /* footer parity links — 44px touch targets on mobile (render gate) */
  .nap-links a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 .35rem; }
}

/* ══ SYT private treatments — 2026-08-18 GO-LIVE E (Wayne email 05):
   the isolated one-on-one funnel on the SYT page ═══════════════════ */
.syt-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-block: 1.6rem; }
#private h3 { margin-top: 1.5rem; }
#private .syt-step h3 { margin-top: 0; }
.syt-step { background: var(--card); border: 1px solid var(--rule); border-radius: 10px; padding: 1.3rem 1.2rem; }
.syt-step img { width: 100%; height: auto; border-radius: 8px; margin-bottom: .9rem; }
.syt-step .kicker { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: #8f3d16; font-weight: 700; margin-bottom: .4rem; }
.syt-step h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.syt-step p { font-size: .92rem; }
/* 2026-08-19 A1 (Wayne, call-9 21:20–30:57): subtle cue under each filled
   step button guiding the eye to the next step — small ember arrow, no
   animation (his flashing-arrow idea was tempered to "subtle but pulls
   attention" on the call). */
.step-cue { font-size: .92rem; color: var(--ink); margin-top: .7rem; }
.step-cue span { color: #b35421; font-weight: 700; }
/* A5: Method photo smaller (leaves room for the video beside it when the
   file lands — A6), cropped tighter (top/side headroom trimmed). */
.section-img--method { max-width: 560px; }
/* A6 (2026-08-19): Method media pair — trimmed photo + Wayne's portrait
   video side by side, tops aligned; video capped by height (480px) since
   it's a 320x568 mail-compressed portrait. Stacks at <=860px. */
.method-media { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1.4rem; align-items: start; margin-top: 1.5rem; }
.method-media .section-img--method { margin-top: 0; width: 100%; }
.method-video { width: auto; height: auto; max-height: 480px; max-width: 100%; border-radius: 10px; display: block; }
@media (max-width: 860px) {
  .method-media { grid-template-columns: 1fr; }
  .method-video { max-height: 70vh; margin: 0 auto; }
}
.syt-returning { background: var(--card); border: 1px solid var(--rule); border-radius: 10px; padding: .9rem 1.2rem; }
.syt-returning a { color: #8f3d16; font-weight: 700; }
.syt-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-block: 1.4rem; }
.syt-lists h3 { font-size: 1rem; margin-bottom: .4rem; }
.syt-lists p { font-size: .92rem; color: var(--ink-soft); }
.syt-cta-line { font-family: var(--serif); font-size: 1.12rem; }
/* Josef's layout HOLD 2026-08-18: ONE left edge for the whole section.
   Root cause: .section--tint-warm centers each direct child INDEPENDENTLY
   (max-width 820 + margin-inline:auto), so narrower boxes (h2 at 24ch,
   p at 64ch) center differently than the 820 column — ragged left edges.
   Fix: pin every direct child's left edge to the same computed offset —
   the centered 820 column's left edge — whatever the child's own width. */
#private > * { margin-inline: max(0px, calc((100% - 820px) / 2)); }
#private .section-img { display: block; max-width: 600px; }  /* content-image scale per the image map */
.oo-tidbit { text-align: center; margin-top: 1.4rem; font-size: .95rem; color: var(--ink-soft); }
.oo-tidbit a { color: #8f3d16; font-weight: 700; }
@media (max-width: 720px) { .syt-steps, .syt-lists { grid-template-columns: 1fr; } }

/* ══ SYT design polish (Josef 2026-08-18, one wave, pre-Wayne-call) ══════
   Scoped to .page-syt; zero content/copy/cart changes. */
/* 1 — type scale: body 16→17.5, step cards →16, h2 a notch, kickers →12 */
.page-syt .section p { font-size: 1.09rem; }
.page-syt .syt-step p { font-size: 1rem; }
.page-syt .section h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.page-syt .syt-step .kicker { font-size: .75rem; }
/* 2 — CTA hierarchy: the filled door-cta--button carries INVEST; steps 1+3 stay text links */
.syt-step .door-cta--button { margin-top: .2rem; width: 100%; text-align: center; }  /* uniform width across the three steps (final wave A1) */
/* 3 — Teacher Training tiles side by side */
.tt-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: .4rem; }
.page-syt .section .tt-tiles p { margin: 0; }  /* outranks .section p + p — Sol's 14.39px stagger */
.tt-tiles .door-cta--button { width: 100%; text-align: center; }
/* 4 — step-card photos: one uniform crop */
.syt-step img { aspect-ratio: 4 / 3; object-fit: cover; }
/* 5 — hero: one notch more contrast/size on eyebrow + subline */
.page-syt .page-hero .over { font-size: .88rem; color: #faf1e4; text-shadow: 0 1px 12px rgba(0,0,0,.85); }
.page-syt .page-hero .sub { font-size: 1.14rem; color: #f4ebdd; text-shadow: 0 1px 16px rgba(0,0,0,.8); }
/* 6 — first-session split: text left, photo right; stack at 390 */
.syt-split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.6rem; align-items: center; margin-block: 1.2rem; }
.syt-split .section-img { max-width: none; width: 100%; margin-top: 0; }
@media (max-width: 720px) {
  .tt-tiles { grid-template-columns: 1fr; }
  .syt-split { grid-template-columns: 1fr; }
  .syt-split .section-img { max-width: 480px; }
}

/* ══ footer NAP — address + phone on every page (local-business standard) ═ */
.nap {
  background: var(--deep); color: #b8ab9a; text-align: center;
  padding: 1.2rem 1.4rem; font-size: .85rem; letter-spacing: .02em;
}
.nap a { color: #d8cdbf; font-weight: 700; text-decoration: none; }
/* Call-7 deck §5 parity links, same quiet line under the NAP */
.nap-links { margin-top: .5rem; }

/* ══ visit + map — revision round 2026-08-13: Josef's old-site split.
   Contact info left (existing contact-card copy, unchanged), large map
   right, muted with grayscale(.42) toward his old Squarespace map.
   Lazy load, iframe title, fallback link kept. ═══════════════════════ */
.section--visit { max-width: 1060px; }
.visit-split { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(1.4rem, 3vw, 2.4rem); align-items: stretch; }
.visit-split .contact-card { grid-template-columns: 1fr; align-content: start; gap: 1.2rem; }
.map-side { display: flex; flex-direction: column; }
.map-side iframe {
  width: 100%; flex: 1; min-height: 400px; border: 0; border-radius: 10px;
  display: block; background: var(--card); filter: grayscale(.42);
}
.map-side p { margin-top: 1rem; }
/* ember on paper measured 6.47:1 (WCAG-computed) */
.map-side a { color: #8f3d16; font-weight: 700; }
@media (max-width: 860px) {
  .visit-split { grid-template-columns: 1fr; }
  .map-side iframe { min-height: 340px; }
}

/* per-format "what to expect" — progressive disclosure inside class cards */
.expect { margin-top: .9rem; }
.expect summary {
  cursor: pointer; font-weight: 700; font-size: .82rem; color: var(--heat);
  list-style: none; letter-spacing: .04em;
}
.expect summary::-webkit-details-marker { display: none; }
.expect summary::after { content: " +"; color: var(--heat); }
.expect[open] summary::after { content: " –"; }
.expect p { margin-top: .6rem; }
.expect .who { color: var(--ember); font-size: .85rem; font-weight: 600; }
/* 2026-08-19 (Josef, in-room): more air between the SYT "near you"
   expander and the "Whether you're looking…" paragraph below it.
   Scoped to .page-syt so the classes.html card expanders are untouched. */
.page-syt .expect { margin-bottom: 1.8rem; }

/* ══ booking steps + availability form (one-on-one) ══════════════════════ */
.steps { max-width: 980px; margin: 0 auto; padding: clamp(2rem, 5vw, 3.4rem) 1.4rem; }
.steps .step-title { font-size: clamp(1.45rem, 2.6vw, 2.05rem); margin-bottom: .6rem; }
.steps .sub2 { max-width: 64ch; color: #43382f; margin-bottom: 1.6rem; }
.tier-note { font-size: .88rem; color: var(--ink-soft); margin-top: .9rem; }
.tier-note a { color: var(--heat); font-weight: 700; text-decoration: none;
               border-bottom: 1.5px solid var(--heat); padding-bottom: 1px; }

/* form-first layout: Contact / Session / Availability fieldsets, then pay-then-send */
.booking-form form { max-width: 720px; display: grid; gap: 1.4rem; }
.booking-form fieldset {
  border: 1px solid var(--rule); border-radius: 8px; background: var(--card);
  padding: 1.2rem 1.3rem 1.3rem; margin: 0;
  display: grid; gap: 1rem;
}
.booking-form legend {
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--heat); font-weight: 700; padding: 0 .5rem;
}
.booking-form .field { margin: 0; }
.booking-form label { display: grid; gap: .4rem; font-weight: 700; font-size: .9rem;
                      letter-spacing: .02em; color: var(--ink); }
.booking-form input, .booking-form select, .booking-form textarea {
  font: inherit; font-weight: 400; color: var(--ink);
  padding: .7rem .85rem; border: 1px solid var(--rule); border-radius: 6px;
  background: #fff; width: 100%; box-sizing: border-box;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  outline: 2px solid var(--heat); outline-offset: 1px; border-color: var(--heat);
}
.booking-form .check label { display: flex; align-items: center; gap: .6rem; font-weight: 400; }
.booking-form .check input { width: auto; }
.form-grid { display: grid; gap: 1.4rem; }
@media (min-width: 760px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .fgroup:last-child { grid-column: 1 / -1; }
}
.booking-form button:disabled { opacity: .45; cursor: not-allowed; }
.booking-form button:disabled:hover { background: var(--heat); }

/* pay step: buttons then the gated draft action */
.pay-then-send {
  border-top: 2px solid var(--heat); padding-top: 1.3rem;
  display: grid; gap: .9rem; max-width: 720px;
}
.pay-then-send p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.pay-then-send p b { color: var(--ink); }
.pay-then-send .buy a {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: .8rem 1.7rem; border-radius: 999px;
  background: var(--heat); color: #fff; letter-spacing: .02em;
  margin-right: .5rem;
}
.pay-then-send .buy a:hover { background: #c26433; }
.pay-then-send a[href^="tel"] { color: var(--heat); font-weight: 700; }
.booking-form button {
  justify-self: start; cursor: pointer; border: 0; font: inherit; font-weight: 700;
  padding: 1rem 2.1rem; border-radius: 999px; letter-spacing: .02em;
  background: var(--heat); color: #fff;
}
.booking-form button:hover { background: #c26433; }
.booking-form .form-note { font-size: .85rem; color: var(--ink-soft); max-width: 56ch; }

/* ══ one-on-one booking stepper (claude, 2026-08-07) — mobile-first ═══════
   Namespaced .oo-* so it never touches .tier/.tiers (shared with pricing)
   or the older .booking-form rules above. One short step per view; every
   session/duration is a CTA that preselects and advances. */
.oo { background: var(--paper); padding: clamp(2rem, 6vw, 4rem) 0; }
.oo-inner { max-width: 760px; margin: 0 auto; padding: 0 1.3rem; }

/* progress rail — three numbered stops, done stops flip to breath ✓ */
.oo-steps { list-style: none; display: flex; gap: .5rem; margin: 0 0 2rem; padding: 0; counter-reset: oo; }
.oo-steps li {
  flex: 1; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; padding-top: .8rem;
  border-top: 3px solid var(--rule); display: flex; align-items: center; gap: .4rem;
}
.oo-steps li::before {
  counter-increment: oo; content: counter(oo);
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.35rem; height: 1.35rem; border-radius: 50%;
  background: var(--rule); color: #fff; font-size: .72rem; flex: 0 0 auto;
}
.oo-steps li.on { color: var(--heat); border-top-color: var(--heat); }
.oo-steps li.on::before { background: var(--heat); }
.oo-steps li.done { color: var(--breath); border-top-color: var(--breath); }
.oo-steps li.done::before { background: var(--breath); content: "\2713"; }

/* panels — one visible at a time */
.oo-panel[hidden] { display: none; }
.oo-k { font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: var(--heat); margin-bottom: .6rem; font-weight: 700; }
.oo-h { font-family: var(--serif); font-size: clamp(1.55rem, 5vw, 2.2rem); margin-bottom: .6rem; line-height: 1.1; }
.oo-sub { color: var(--ink-soft); max-width: 54ch; margin-bottom: 1.6rem; }

/* session cards */
.oo-cards { display: grid; gap: 1.1rem; }
.oo-card { position: relative; background: var(--card); border: 1px solid var(--rule); border-radius: 12px; padding: 1.4rem 1.3rem 1.5rem; }
.oo-card--featured { border: 2px solid var(--heat); box-shadow: 0 6px 30px rgba(212,113,61,.14); }
.oo-tag {
  position: absolute; top: -.7rem; left: 1.3rem; background: var(--heat); color: #fff;
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700;
  padding: .3rem .8rem; border-radius: 999px;
}
.oo-card h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: .5rem; }
.oo-card--featured h3 { color: var(--heat); }
.oo-card p { color: var(--ink-soft); font-size: .94rem; margin-bottom: 1.1rem; }
.oo-card p a { color: var(--heat); font-weight: 700; }

/* duration pickers — big tap targets, each preselects + advances */
.oo-pick { display: flex; gap: .7rem; flex-wrap: wrap; }
.oo-choose {
  flex: 1 1 auto; min-width: 8.5rem; min-height: 48px; cursor: pointer;
  font: inherit; font-weight: 700; letter-spacing: .02em;
  border: 2px solid var(--heat); border-radius: 999px; background: #fff; color: var(--heat);
  padding: .7rem 1.1rem; transition: background .2s ease, color .2s ease;
}
.oo-choose:hover, .oo-choose:focus-visible { background: var(--heat); color: #fff; outline: none; }
.oo-card--featured .oo-choose { background: var(--heat); color: #fff; }
.oo-card--featured .oo-choose:hover { background: #c26433; }

/* pay step */
.oo-summary {
  font-family: var(--serif); font-size: 1.3rem; color: var(--ink);
  background: var(--tint-heat); border-radius: 10px; padding: 1rem 1.2rem; margin-bottom: 1.4rem;
}
.oo-pay { margin-bottom: 1.4rem; }
.oo-pay p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 52ch; }
.oo-pay a[href^="tel"] { color: var(--heat); font-weight: 700; }

/* buttons + step nav */
.oo-btn {
  display: inline-block; text-decoration: none; cursor: pointer; font: inherit;
  font-weight: 700; letter-spacing: .02em; border: 0; border-radius: 999px;
  padding: 1rem 1.9rem; background: var(--heat); color: #fff; min-height: 48px;
}
.oo-btn:hover { background: #c26433; }
.oo-btn--pay { font-size: 1.05rem; }
.oo-nav { display: flex; gap: .8rem; align-items: center; flex-wrap: wrap; margin-top: 1.4rem; }
.oo-back { cursor: pointer; font: inherit; font-weight: 700; background: none; border: 0; color: var(--ink-soft); padding: .8rem .4rem; min-height: 44px; }
.oo-back:hover { color: var(--ink); }
.oo-next { cursor: pointer; font: inherit; font-weight: 700; margin-left: auto; border: 0; border-radius: 999px; padding: .9rem 1.6rem; background: var(--heat); color: #fff; min-height: 48px; }
.oo-next:hover { background: #c26433; }

/* availability form */
#oo-form { display: grid; gap: 1.1rem; margin-top: .4rem; }
.oo-field { margin: 0; }
.oo-field label { display: grid; gap: .4rem; font-weight: 700; font-size: .9rem; color: var(--ink); }
.oo-field input, .oo-field textarea {
  font: inherit; font-weight: 400; color: var(--ink);
  padding: .75rem .85rem; border: 1px solid var(--rule); border-radius: 8px; background: #fff;
  width: 100%; box-sizing: border-box;
}
.oo-field input:focus, .oo-field textarea:focus { outline: 2px solid var(--heat); outline-offset: 1px; border-color: var(--heat); }
.oo-note { font-size: .82rem; color: var(--ink-soft); max-width: 58ch; margin-top: 1.3rem; line-height: 1.55; }

/* motion only outside reduced-motion */
@media (prefers-reduced-motion: no-preference) {
  .oo-panel.on { animation: oo-fade .32s ease; }
  @keyframes oo-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
}

/* 2026-08-17 pre-call (Josef): teacher-training door as a real button, not an
   underlined link. White on #b35421 = 4.99:1 (same pair the pricing First Step
   card uses, WCAG-computed there). Scoped: only links carrying --button change. */
.door-cta.door-cta--button {
  margin-top: 1.25rem;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: .75rem 1.5rem; border-radius: 10px;
  background: #b35421; color: #fff; border-bottom: 0; text-decoration: none;
  font-weight: 700; letter-spacing: .01em;
}
.door-cta.door-cta--button:hover, .door-cta.door-cta--button:focus-visible {
  background: #8f3d16; color: #fff;
}

/* Method benefits list (Wayne email 2026-08-18, verbatim) */
.method-benefits { margin: 0 0 1rem 1.2rem; padding: 0; max-width: 64ch; color: var(--ink-soft); font-size: 1.09rem; }
.method-benefits li { margin-bottom: .3rem; }
/* 2026-08-19 20:18 (Josef): cue arrow points where the next step actually is —
   right on desktop (cards side by side), down on mobile (cards stacked). */
.cue-arrow::after { content: "→"; color: #b35421; font-weight: 700; font-size: 1.25em; vertical-align: -0.05em; display: inline-block; margin-left: 0.1em; }
@media (max-width: 860px) { .cue-arrow::after { content: "↓"; } }
/* 2026-08-19 call-10: video caption + hero address line */
.video-caption { font-size: .82rem; color: var(--ink-soft); margin-top: .5rem; max-width: 40ch; }
.hero-address { color: var(--paper); font-size: .95rem; margin-top: .9rem; }
.hero-address strong { color: var(--paper); }
address strong { font-weight: 700; }
.method-video-fig { margin: 0; }
.method-video-fig .video-caption { margin-top: .5rem; text-align: center; max-width: none; }
