/* ============================================================
   Pure Motion Pilates · demonstration site · BLANK Marketing Group
   Zero external requests: no CDN, no webfonts, no scripts beyond
   site.js. Laterlock (their display face) is self hosted on the
   live site and gets licensed at build; a system stack stands in
   here, sized and tracked to match.

   Palette confirmed against the Pure Motion Canva brand kit on 2026-08-21:
   #95a682 sage, #e5e4d7 bone, #000000 black, #ffffff white. Ink is the
   brand black; --ink-soft is ours for body copy and stays.
   ============================================================ */

:root {
  --sage:       #95A682;
  --sage-deep:  #6F805E;   /* sage dark enough for rules and large labels on bone */
  --sage-ink:   #4F5C43;   /* sage dark enough for small text on bone, 7:1 */
  --sage-mist:  #E3E8DC;   /* sage at 25% over bone, for tinted panels */
  --bone:       #E5E4D7;
  --bone-deep:  #D9D8C8;
  --cream:      #F3F2EA;   /* lifted bone for cards on bone */
  --ink:        #000000;
  --ink-soft:   #55554F;
  --ink-faint:  rgba(0,0,0,.42);
  --white:      #FFFFFF;
  --rule:       rgba(0,0,0,.12);
  --shadow:     0 1px 2px rgba(0,0,0,.05), 0 22px 46px -28px rgba(0,0,0,.3);

  /* Canva kit: Laterlocks (condensed serif, caps) for display, Futura Md / Lt
     for everything else, a serif italic as an accent. Laterlocks is licensed at
     build; Bodoni 72 / Didot stand in for it here. Futura ships on macOS. */
  --display: "Laterlocks", "Bodoni 72", Didot, "Times New Roman", serif;
  --sans:    Futura, "Futura PT", "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --accent:  "Bodoni 72", Didot, Georgia, serif;

  /* ── motion contract · ~/Claude/tools/web-design/MOTION-CONTRACT.md ──
     Same ladder blankdm.com uses. No values outside it. */
  --d-instant:  150ms;
  --d-snap:     250ms;
  --d-brisk:    400ms;
  --d-sweep:    600ms;
  --d-measured: 900ms;
  --d-reveal:  1200ms;
  --e-out:     cubic-bezier(0.215, 0.61, 0.355, 1);
  --e-sharp:   cubic-bezier(0.165, 0.84, 0.44, 1);
  --e-glide:   cubic-bezier(0.19, 1, 0.22, 1);
  --e-ember:   cubic-bezier(0.22, 1, 0.36, 1);
  --e-gentle:  cubic-bezier(0.39, 0.575, 0.565, 1);
  --s-normal:   100ms;
  --s-wide:     180ms;

  --flag-h: 33px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
body {
  background: var(--bone); color: var(--ink);
  font-family: var(--sans); font-weight: 400; font-size: 16px; line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--flag-h);
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
::selection { background: var(--sage); color: var(--white); }
:focus-visible { outline: 2px solid var(--sage-deep); outline-offset: 3px; }

.wrap        { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.wrap-wide   { max-width: 1440px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 780px;  margin: 0 auto; padding: 0 28px; }
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--bone); padding: 10px 16px; z-index: 200; }
.skip:focus { left: 12px; top: calc(var(--flag-h) + 12px); }

/* ---------------- type ---------------- */
h1, h2 { font-family: var(--display); margin: 0; font-weight: 400; text-transform: uppercase; letter-spacing: 0.04em; }
h3, h4 { font-family: var(--sans); margin: 0; font-weight: 500; }
h1 { font-size: clamp(40px, 6.4vw, 84px); line-height: 1.0; }
h2 { font-size: clamp(30px, 4.2vw, 54px); line-height: 1.04; }
h3 { font-size: clamp(19px, 2vw, 24px); line-height: 1.25; letter-spacing: 0.01em; }
em, .italic { font-family: var(--accent); font-style: italic; text-transform: none; letter-spacing: 0; }
h4 { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--sage-ink); }
.eyebrow {
  font-family: var(--sans); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--sage-ink); margin: 0 0 18px;
}
.lede { font-size: clamp(17px, 1.9vw, 20px); line-height: 1.65; color: var(--ink-soft); max-width: 56ch; }
.muted { color: var(--ink-soft); }
.small { font-size: 13.5px; line-height: 1.65; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 12.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; padding: 15px 26px; border: 1px solid var(--ink); background: var(--ink); color: var(--bone);
  border-radius: 2px; cursor: pointer; white-space: nowrap;
  transition: background var(--d-snap) var(--e-out), color var(--d-snap) var(--e-out), border-color var(--d-snap) var(--e-out), transform var(--d-snap) var(--e-out);
}
.btn:hover { background: transparent; color: var(--ink); transform: translateY(-1px); }
.btn.sage { background: var(--sage); border-color: var(--sage); color: var(--ink); }
.btn.sage:hover { background: transparent; border-color: var(--sage-deep); color: var(--ink); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--bone); }
.btn.light { background: transparent; border-color: rgba(255,255,255,.7); color: #FFF; }
.btn.light:hover { background: #FFF; color: var(--ink); border-color: #FFF; }
.btn.sm { padding: 10px 16px; font-size: 11px; letter-spacing: .14em; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.text-link { font-family: var(--sans); font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; border-bottom: 1px solid var(--sage-deep); padding-bottom: 3px; transition: border-color var(--d-instant) var(--e-out), color var(--d-instant) var(--e-out); }
.text-link:hover { color: var(--sage-ink); border-color: var(--ink); }
@media (max-width: 560px) { .btn-row .btn { width: 100%; } }

/* ---------------- demo banner ---------------- */
.demo-flag {
  background: var(--ink); color: var(--bone);
  font-family: var(--sans); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  padding: 9px 20px; line-height: 1.4;
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: center; gap: 18px;
}
.demo-flag b { color: var(--sage); font-weight: 600; }
.flag-msg { text-align: center; }
.flag-back {
  flex: none; color: var(--sage); text-decoration: none;
  border: 1px solid rgba(149,166,130,.5); border-radius: 3px; padding: 5px 12px; letter-spacing: .14em; white-space: nowrap;
  transition: background var(--d-snap) var(--e-out), color var(--d-snap) var(--e-out);
}
.flag-back:hover { background: var(--sage); color: var(--ink); }
@media (max-width: 700px) {
  .demo-flag { flex-direction: column; gap: 6px; padding: 7px 14px; font-size: 9px; letter-spacing: .12em; line-height: 1.35; }
  .flag-back { padding: 4px 10px; font-size: 9px; letter-spacing: .1em; }
  :root { --flag-h: 74px; }
}

/* ---------------- laptop gate ---------------- */
.desk-only { display: none; }
@media (max-width: 820px) {
  .desk-only { display: flex; position: fixed; inset: 0; z-index: 120; background: var(--bone); color: var(--ink); align-items: center; justify-content: center; padding: 28px; text-align: center; }
  html.gate-passed .desk-only { display: none; }
}
.desk-only-inner { max-width: 420px; width: 100%; min-width: 0; }
.desk-only-inner .logo { display: inline-block; margin-bottom: 26px; }
.desk-only h2 { font-size: 26px; margin-bottom: 14px; overflow-wrap: anywhere; }
.desk-only p { color: var(--ink-soft); }
.gate-pass { margin-top: 18px; background: none; border: 0; font-family: var(--sans); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--sage-ink); text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }

/* ---------------- nav ---------------- */
.nav {
  position: fixed; top: var(--flag-h); left: 0; right: 0; z-index: 60;
  padding: 18px 0;
  transition: background var(--d-brisk) var(--e-out), padding var(--d-brisk) var(--e-out), box-shadow var(--d-brisk) var(--e-out);
}
.nav.solid { background: rgba(229,228,215,.94); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); padding: 12px 0; box-shadow: 0 1px 0 var(--rule); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; white-space: nowrap; }
.logo svg { width: 34px; height: 34px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.17em; text-transform: uppercase;
  text-decoration: none; color: var(--ink); padding-bottom: 3px; border-bottom: 1px solid transparent;
  transition: border-color var(--d-instant) var(--e-out);
}
.nav-links a:hover, .nav-links a.active { border-bottom-color: var(--sage-deep); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
/* The live site hides BOOK NOW inside the hamburger on a phone. Here the
   book button sits outside the collapsible links at every width. */
.nav-toggle { display: none; background: none; border: 0; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.17em; text-transform: uppercase; cursor: pointer; color: var(--ink); padding: 6px; }
@media (min-width: 901px) {
  body.has-hero .nav:not(.solid) .nav-links a, body.has-hero .nav:not(.solid) .logo { color: #FFF; }
  body.has-hero .nav:not(.solid) .nav-links a.active { border-bottom-color: var(--sage); }
  body.has-hero .nav:not(.solid) .logo svg { color: #FFF; }
}
@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: var(--flag-h); left: 0; right: 0; flex-direction: column; gap: 4px; align-items: flex-start;
    background: var(--bone); padding: 90px 28px 30px; box-shadow: var(--shadow);
    transform: translateY(calc(-100% - var(--flag-h))); visibility: hidden;
    transition: transform var(--d-brisk) var(--e-ember), visibility 0s linear var(--d-brisk);
  }
  .nav-links.open { transform: none; visibility: visible; transition: transform var(--d-brisk) var(--e-ember), visibility 0s; }
  .nav-links a { font-size: 15px; padding: 10px 0; }
  .nav-toggle { display: inline-block; position: relative; z-index: 2; }
  .nav-cta { position: relative; z-index: 2; }
  .nav-cta .btn { padding: 11px 14px; font-size: 10.5px; letter-spacing: .12em; }
  .nav-inner { gap: 12px; }
  .nav-cta { gap: 8px; }
  .logo { font-size: 13px; letter-spacing: .22em; gap: 9px; }
  .logo svg { width: 28px; height: 28px; }
  body.has-hero .nav:not(.solid) .logo, body.has-hero .nav:not(.solid) .nav-toggle { color: #FFF; }
  body.has-hero .nav:not(.solid) .logo svg { color: #FFF; }
  body.has-hero .nav:not(.solid):has(.nav-links.open) .logo,
  body.has-hero .nav:not(.solid):has(.nav-links.open) .nav-toggle { color: var(--ink); }
  body.has-hero .nav:not(.solid):has(.nav-links.open) .logo svg { color: var(--ink); }
}

/* ---------------- sections ---------------- */
section { padding: clamp(72px, 9vw, 128px) 0; }
section.tight { padding: clamp(48px, 6vw, 84px) 0; }
.band { background: var(--cream); }
.band-sage { background: var(--sage-mist); }
.band-dark { background: var(--ink); color: var(--bone); }
.band-dark .eyebrow { color: var(--sage); }
.band-dark .muted, .band-dark .lede { color: rgba(229,228,215,.72); }
.head { max-width: 760px; margin-bottom: clamp(34px, 4vw, 56px); }
.head.center { margin-left: auto; margin-right: auto; text-align: center; }
.head p { margin-top: 18px; }
.head .btn-row { margin-top: 26px; }
hr.rule { border: 0; border-top: 1px solid var(--rule); margin: 0; }

/* ---------------- hero: Static Statement ---------------- */
.hero { position: relative; min-height: calc(100svh - var(--flag-h)); display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); }
.hero .media { position: absolute; inset: 0; }
.hero .media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,20,18,.88) 0%, rgba(20,20,18,.42) 50%, rgba(20,20,18,.30) 100%); }
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 0 0 clamp(56px, 9vh, 104px); color: #FFF; }
.hero-inner .eyebrow { color: #FFF; opacity: .82; }
.hero-inner h1 { max-width: 14ch; }
.hero-inner p { max-width: 52ch; margin: 22px 0 30px; font-size: clamp(16px, 1.6vw, 19px); color: rgba(255,255,255,.86); }
.hero.short { min-height: 62svh; }
.hero.short h1 { font-size: clamp(34px, 5vw, 64px); }

/* ---------------- sticky ask ---------------- */
.sticky-ask {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(32,32,32,.96); color: var(--bone); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transform: translateY(110%); transition: transform var(--d-sweep) var(--e-glide);
}
.sticky-ask.show { transform: none; }
.sticky-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 0; }
.sticky-inner .what { font-family: var(--sans); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.sticky-inner .what b { color: var(--sage); font-weight: 600; }
.sticky-inner .meta { font-size: 13px; color: rgba(229,228,215,.7); }
@media (max-width: 700px) { .sticky-inner .meta { display: none; } .sticky-inner .what { font-size: 11px; } }
@media (max-width: 440px) { .logo span { display: none; } }
.sticky-inner > div { min-width: 0; }
.sticky-inner .what { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------------- schedule rail ---------------- */
.sched-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 22px; }
.loc-switch { display: inline-flex; border: 1px solid var(--ink); border-radius: 2px; overflow: hidden; }
.loc-switch button { background: transparent; border: 0; font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; padding: 10px 16px; cursor: pointer; color: var(--ink); transition: background var(--d-snap) var(--e-out), color var(--d-snap) var(--e-out); }
.loc-switch button[aria-pressed="true"] { background: var(--ink); color: var(--bone); }
.days { display: grid; grid-template-columns: repeat(7, 1fr); border: 1px solid var(--rule); border-radius: 2px; overflow: hidden; background: var(--cream); }
.days button { background: transparent; border: 0; border-right: 1px solid var(--rule); padding: 14px 6px; cursor: pointer; font-family: var(--sans); color: var(--ink); transition: background var(--d-snap) var(--e-out), color var(--d-snap) var(--e-out); }
.days button:last-child { border-right: 0; }
.days button span { display: block; }
.days .dn { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.days .dd { font-size: 22px; font-weight: 500; margin-top: 2px; }
.days button[aria-pressed="true"] { background: var(--ink); color: var(--bone); }
.days button[aria-pressed="true"] .dn { color: var(--sage); }
.days button:hover:not([aria-pressed="true"]) { background: var(--sage-mist); }
.sched { margin-top: 18px; }
.sched-day { display: none; }
.sched-day.on { display: block; }
.row {
  display: grid; grid-template-columns: 110px 1.6fr 1.2fr 1.1fr 110px 130px; gap: 18px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--rule);
}
.row:first-child { border-top: 1px solid var(--rule); }
.row .t { font-family: var(--sans); font-size: 18px; font-weight: 500; }
.row .t small { display: block; font-family: var(--sans); font-size: 12px; color: var(--ink-soft); letter-spacing: 0; font-weight: 400; }
.row .c { font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.row .i, .row .r { font-size: 14.5px; color: var(--ink-soft); }
.row .r .heat { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--sage-ink); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.row .s { font-size: 13px; color: var(--ink-soft); }
.row .s.full { color: #9A4A3E; font-weight: 600; }
.row .s.few { color: var(--sage-ink); font-weight: 600; }
.row .b { text-align: right; }
.sched-note { margin-top: 22px; font-size: 13px; color: var(--ink-soft); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.sched-empty { padding: 44px 28px; border: 1px dashed var(--rule); border-radius: 2px; background: var(--cream); }
.sched-empty h3 { margin-bottom: 10px; }
.sched-empty ul { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; color: var(--ink-soft); font-size: 14.5px; }
.sched-empty li b { color: var(--ink); font-weight: 600; }
@media (max-width: 860px) {
  .row { grid-template-columns: 68px 1fr 78px; gap: 4px 12px; padding: 16px 0; }
  .row .t { font-size: 16px; }
  .row .c { font-size: 12.5px; }
  .row .i, .row .r { grid-column: 2 / 3; font-size: 13px; }
  .row .r br { display: none; }
  .row .r .heat { margin-left: 8px; }
  .row .s { grid-column: 1 / 3; font-size: 12px; margin-top: 4px; }
  .row .b { grid-column: 3 / 4; grid-row: 1 / 5; }
  .row .btn.sm { padding: 9px 12px; font-size: 10px; }
  .days .dd { font-size: 17px; }
  .days .dn { font-size: 9.5px; letter-spacing: .1em; }
}

/* ---------------- bento: classes ---------------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.cell { position: relative; background: var(--cream); border-radius: 2px; overflow: hidden; display: flex; flex-direction: column; min-height: 320px; }
.cell.lead { grid-column: span 7; min-height: 520px; }
.cell.side { grid-column: span 5; }
.cell.third { grid-column: span 4; }
.cell.wide { grid-column: span 8; }
.cell .pic { position: absolute; inset: 0; }
.cell .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--d-sweep) var(--e-gentle); }
.cell:hover .pic img { transform: scale(1.03); }
.cell .pic::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,20,18,.92) 0%, rgba(20,20,18,.55) 38%, rgba(20,20,18,.08) 70%); }
.cell .txt { position: relative; z-index: 2; margin-top: auto; padding: 28px; color: #FFF; }
.cell .txt h3 { color: #FFF; margin-bottom: 8px; }
.cell .txt p { color: rgba(255,255,255,.84); font-size: 15px; max-width: 44ch; }
.cell .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.tag { font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; padding: 5px 9px; border: 1px solid rgba(255,255,255,.45); border-radius: 2px; color: #FFF; }
.tag.sage { background: var(--sage); border-color: var(--sage); color: var(--ink); }
.cell.plain { padding: 30px; }
.cell.plain .txt { padding: 0; color: var(--ink); margin-top: 0; }
.cell.plain .txt h3 { color: var(--ink); }
.cell.plain .txt p { color: var(--ink-soft); }
.cell.plain .tag { border-color: var(--sage-deep); color: var(--sage-ink); }
.cell.plain .foot { margin-top: auto; padding-top: 22px; }
@media (max-width: 900px) {
  .cell.lead, .cell.side, .cell.third, .cell.wide { grid-column: span 12; }
  .cell.lead { min-height: 420px; }
}

/* ---------------- feature split ---------------- */
.split { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split.flip { grid-template-columns: 7fr 5fr; }
.split.flip .copy { order: 2; }
.split .pic { border-radius: 2px; overflow: hidden; background: var(--bone-deep); aspect-ratio: 4 / 3; }
.split .pic img { width: 100%; height: 100%; object-fit: cover; }
.split .pic.tall { aspect-ratio: 4 / 5; }
.split + .split { margin-top: clamp(56px, 8vw, 110px); }
.addr { font-size: 15px; line-height: 1.75; margin: 18px 0 0; padding: 0; list-style: none; }
.addr li { display: grid; grid-template-columns: 110px 1fr; gap: 12px; padding: 8px 0; border-top: 1px solid var(--rule); }
.addr li:last-child { border-bottom: 1px solid var(--rule); }
.addr b { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--sage-ink); padding-top: 4px; }
.addr a { text-decoration: none; border-bottom: 1px solid var(--rule); }
.addr a:hover { border-color: var(--ink); }
@media (max-width: 860px) { .split, .split.flip { grid-template-columns: 1fr; } .split.flip .copy { order: 0; } }

/* ---------------- single ask: first visit ---------------- */
.offer { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.offer .pic { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 2px; }
.offer .pic img { width: 100%; height: 100%; object-fit: cover; }
.price { font-family: var(--display); font-size: clamp(48px, 6.4vw, 84px); line-height: 1; font-weight: 500; margin: 18px 0 6px; }
.price small { font-size: 14px; letter-spacing: .18em; text-transform: uppercase; color: var(--sage-ink); display: block; margin-top: 8px; font-weight: 600; }
.offer ul { margin: 22px 0 28px; padding: 0; list-style: none; display: grid; gap: 10px; }
.offer li { padding-left: 22px; position: relative; color: var(--ink-soft); }
.offer li::before { content: ""; position: absolute; left: 0; top: .7em; width: 10px; height: 1px; background: var(--sage-deep); }
.sample { display: inline-block; font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; padding: 5px 9px; border: 1px solid var(--sage-deep); color: var(--sage-ink); border-radius: 2px; margin-bottom: 14px; }
@media (max-width: 860px) { .offer { grid-template-columns: 1fr; } }

/* ---------------- witness: the Pinecrest team ---------------- */
.team { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.person { position: relative; border-radius: 2px; overflow: hidden; background: var(--bone-deep); }
.person.lead { grid-column: span 5; grid-row: span 2; aspect-ratio: 4 / 5; }
.person.sm { grid-column: span 7; display: grid; grid-template-columns: 160px 1fr; gap: 0; background: var(--cream); min-height: 200px; }
.person.sm:nth-child(4) { grid-column: span 5; }
.person.sm:nth-child(5) { grid-column: span 7; }
.person img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.person.lead img { position: absolute; inset: 0; }
.person.lead::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,20,18,.86), rgba(20,20,18,0) 55%); }
.person.lead .q { position: absolute; left: 26px; right: 26px; bottom: 26px; z-index: 2; color: #FFF; }
.person.lead .q p { font-family: var(--accent); font-style: italic; font-size: clamp(19px, 1.9vw, 24px); line-height: 1.3; font-weight: 400; margin-bottom: 10px; }
.person.sm .q { padding: 22px 24px; display: flex; flex-direction: column; justify-content: center; }
.person.sm .q p { font-size: 15.5px; line-height: 1.55; margin-bottom: 10px; }
.who { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.person.lead .who { color: var(--sage); }
.person.sm .who { color: var(--sage-ink); }
.who span { display: block; font-family: var(--sans); font-weight: 400; letter-spacing: 0; text-transform: none; font-size: 12.5px; margin-top: 3px; opacity: .8; }
@media (max-width: 900px) {
  .person.lead { grid-column: span 12; grid-row: auto; aspect-ratio: 4 / 5; }
  .person.sm, .person.sm:nth-child(4), .person.sm:nth-child(5) { grid-column: span 12; grid-template-columns: 120px 1fr; }
}

/* ---------------- testimonial statement ---------------- */
.quote { text-align: center; }
.quote p { font-family: var(--accent); font-style: italic; font-size: clamp(26px, 3.6vw, 46px); line-height: 1.2; font-weight: 400; max-width: 22ch; margin: 0 auto 22px; }
.quote cite { font-style: normal; font-family: var(--sans); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--sage-ink); font-weight: 600; }

/* ---------------- accordion detail: FAQ ---------------- */
.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-family: var(--sans); font-size: clamp(16px, 1.6vw, 19px); font-weight: 500; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; font-weight: 300; color: var(--sage-ink); transition: transform var(--d-sweep) var(--e-sharp); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 0 24px; color: var(--ink-soft); max-width: 70ch; }
.faq .a ul { margin: 8px 0 0; padding-left: 18px; }

/* ---------------- events: media masonry ---------------- */
.masonry { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.masonry figure { margin: 0; border-radius: 2px; overflow: hidden; background: var(--bone-deep); }
.masonry img { width: 100%; height: 100%; object-fit: cover; }
.masonry .a { grid-column: span 7; aspect-ratio: 16 / 10; }
.masonry .b { grid-column: span 5; aspect-ratio: 4 / 5; grid-row: span 2; }
.masonry .c { grid-column: span 4; aspect-ratio: 1; }
.masonry .d { grid-column: span 3; aspect-ratio: 1; }
@media (max-width: 860px) { .masonry .a, .masonry .b, .masonry .c, .masonry .d { grid-column: span 6; grid-row: auto; aspect-ratio: 1; } }

/* ---------------- coda ---------------- */
.coda { text-align: center; padding: clamp(90px, 13vw, 170px) 0; }
.coda h2 { max-width: 16ch; margin: 0 auto 26px; font-size: clamp(32px, 5vw, 64px); }
.coda .btn-row { justify-content: center; }
.coda .tel { margin-top: 26px; font-size: 14px; color: rgba(229,228,215,.72); }
.coda .tel a { color: var(--bone); text-decoration: none; border-bottom: 1px solid rgba(229,228,215,.35); }

/* ---------------- footer ---------------- */
footer { background: #000000; color: rgba(229,228,215,.66); padding: 70px 0 40px; font-size: 13.5px; }
footer h4 { color: var(--sage); margin-bottom: 14px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
footer a { color: rgba(229,228,215,.72); text-decoration: none; display: block; padding: 3px 0; }
footer a:hover { color: #FFF; }
footer .logo { color: #FFF; margin-bottom: 14px; }
footer .logo svg { color: #FFF; }
.foot-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(229,228,215,.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 11.5px; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------------- page header (inner pages) ---------------- */
.page-head { padding: clamp(56px, 8vw, 110px) 0 clamp(28px, 4vw, 56px); }
.page-head h1 { font-size: clamp(36px, 5.4vw, 68px); max-width: 14ch; }
.page-head .lede { margin-top: 20px; }

/* ---------------- stat row (locations page) ---------------- */
.stats { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 28px; border-top: 1px solid var(--rule); padding-top: 28px; }
.stats div b { display: block; font-family: var(--display); font-size: clamp(30px, 3.6vw, 46px); font-weight: 500; line-height: 1; margin-bottom: 8px; }
.stats div span { font-size: 13.5px; color: var(--ink-soft); }
@media (max-width: 700px) { .stats { grid-template-columns: 1fr; } }

/* ============================================================
   Reveal choreography. Headings unmask upward, supporting copy
   trails. IntersectionObserver adds .in; nothing listens to scroll.
   ============================================================ */
.rv { opacity: 0; transform: translateY(24px); transition: opacity var(--d-reveal) var(--e-out), transform var(--d-reveal) var(--e-ember); }
.rv.in { opacity: 1; transform: none; }
.rv h1, .rv h2, h2.rv, .rv .quote p {
  clip-path: inset(0 0 105% 0); transform: translateY(18px);
  transition: clip-path var(--d-reveal) var(--e-ember), transform var(--d-reveal) var(--e-ember);
}
.rv.in h1, .rv.in h2, h2.rv.in, .rv.in .quote p { clip-path: inset(0 0 -12% 0); transform: none; }
.rv .eyebrow { opacity: 0; transform: translateX(-12px); transition: opacity var(--d-reveal) var(--e-out), transform var(--d-reveal) var(--e-ember); }
.rv.in .eyebrow { opacity: 1; transform: none; }
.rv .lede, .rv > p, .rv .btn-row {
  opacity: 0; transform: translateY(12px);
  transition: opacity var(--d-reveal) var(--e-out) var(--s-wide), transform var(--d-reveal) var(--e-ember) var(--s-wide);
}
.rv.in .lede, .rv.in > p, .rv.in .btn-row { opacity: 1; transform: none; }
/* staggered children: bento cells, team, masonry */
.rv-group > * { opacity: 0; transform: translateY(18px); transition: opacity var(--d-reveal) var(--e-out), transform var(--d-reveal) var(--e-ember); }
.rv-group.in > * { opacity: 1; transform: none; }
.rv-group.in > *:nth-child(2) { transition-delay: var(--s-normal); }
.rv-group.in > *:nth-child(3) { transition-delay: calc(var(--s-normal) * 2); }
.rv-group.in > *:nth-child(4) { transition-delay: calc(var(--s-normal) * 3); }
.rv-group.in > *:nth-child(5) { transition-delay: calc(var(--s-normal) * 4); }
.rv-group.in > *:nth-child(n+6) { transition-delay: calc(var(--s-normal) * 5); }

/* hero copy runs once per visit, on load */
.hero-inner .eyebrow, .hero-inner h1, .hero-inner p, .hero-inner .btn-row {
  opacity: 0; transform: translateY(20px);
  animation: heroIn var(--d-reveal) var(--e-ember) forwards;
}
.hero-inner .eyebrow { animation-delay: calc(var(--s-wide) * 1); }
.hero-inner h1      { animation-delay: calc(var(--s-wide) * 2); }
.hero-inner p       { animation-delay: calc(var(--s-wide) * 3); }
.hero-inner .btn-row{ animation-delay: calc(var(--s-wide) * 4); }
@keyframes heroIn { to { opacity: 1; transform: none; } }
html.intro-seen .hero-inner .eyebrow, html.intro-seen .hero-inner h1, html.intro-seen .hero-inner p, html.intro-seen .hero-inner .btn-row { opacity: 1; transform: none; animation: none; }

/* Client work: reduced motion is honoured. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv, .rv *, .rv-group > *, .hero-inner * { opacity: 1 !important; transform: none !important; clip-path: none !important; animation: none !important; transition: none !important; }
  .sticky-ask { transition: none; }
  .cell:hover .pic img { transform: none; }
}

/* ============================================================
   Video, motion and icon additions
   ============================================================ */
:root { --d-cine-held: 4200ms; --e-breath: cubic-bezier(0.32, 0, 0.36, 1); }

/* icons: 1.5px line, inherit colour */
.ico { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ico.star { fill: currentColor; stroke: none; }
.tag { display: inline-flex; align-items: center; gap: 6px; }
.amen { display: inline-flex; flex-wrap: wrap; gap: 6px 16px; align-items: center; }
.amen .ico { width: 16px; height: 16px; color: var(--sage-ink); margin-right: -10px; }

/* loops: poster first, JS plays in view */
video.loop { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--bone-deep); }

/* Held Frame: one slow internal zoom on the hero, cinematicHeld + breath */
.hero .media.held img, .hero .media.held video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .media.held video { opacity: 0; transition: opacity var(--d-reveal) var(--e-gentle); }
.hero .media.held video.ready { opacity: 1; }
.hero .media.held { animation: heldZoom var(--d-cine-held) var(--e-breath) forwards; transform-origin: 50% 60%; }
@keyframes heldZoom { from { transform: scale(1.06); } to { transform: scale(1); } }

/* Media Rail: horizontal strip of vertical loops, drifts with the page via
   a CSS scroll-driven animation (transform only, no listeners). */
.rail-sec { overflow: hidden; padding-bottom: clamp(56px, 7vw, 96px); }
.rail { margin-top: 8px; }
.rail-track { display: flex; gap: 16px; padding-left: max(28px, calc((100vw - 1180px) / 2 + 28px)); width: max-content; }
.rail-track figure { margin: 0; width: clamp(200px, 22vw, 300px); flex: none; }
.rail-track figure video { aspect-ratio: 9 / 16; border-radius: 2px; }
.rail-track figcaption { font-size: 12.5px; color: var(--ink-soft); margin-top: 10px; }
@supports (animation-timeline: view()) {
  .rail-track { animation: railDrift linear both; animation-timeline: view(); animation-range: entry 0% exit 100%; }
  @keyframes railDrift { from { transform: translateX(6vw); } to { transform: translateX(-14vw); } }
}
.rail-track figure:nth-child(even) { transform: translateY(28px); }

/* Members: Google rating + interview grabs */
.members-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; flex-wrap: wrap; margin-bottom: clamp(30px, 4vw, 48px); }
.grating { display: grid; grid-template-columns: auto 1fr; gap: 2px 12px; align-items: center; text-decoration: none; padding: 16px 20px; background: var(--cream); border-radius: 2px; border: 1px solid var(--rule); }
.grating .gnum { grid-row: span 2; font-family: var(--display); font-size: 42px; line-height: 1; }
.grating .gstars { display: flex; gap: 2px; color: var(--sage-ink); }
.grating .gstars .ico { width: 15px; height: 15px; }
.grating .gcount { font-size: 12.5px; color: var(--ink-soft); }
.members { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.member { margin: 0; background: var(--cream); border-radius: 2px; overflow: hidden; display: grid; grid-template-columns: 130px 1fr; }
.member img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.member figcaption { padding: 20px 22px; display: flex; flex-direction: column; justify-content: center; }
.member figcaption p { font-size: 15px; line-height: 1.55; margin-bottom: 10px; }
.member.lead { grid-column: span 5; grid-row: span 3; grid-template-columns: 1fr; position: relative; min-height: 520px; }
.member.lead img { position: absolute; inset: 0; }
.member.lead::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.86), rgba(0,0,0,0) 55%); }
.member.lead figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; color: #FFF; padding: 26px; }
.member.lead figcaption p { font-family: var(--accent); font-style: italic; font-size: clamp(19px, 1.9vw, 24px); line-height: 1.3; }
.member.lead .who { color: var(--sage); }
.member:not(.lead) { grid-column: span 7; }
.member:not(.lead) .who { color: var(--sage-ink); }
@media (max-width: 900px) { .member.lead, .member:not(.lead) { grid-column: span 12; grid-row: auto; } .member.lead { min-height: 440px; } .member:not(.lead) { grid-template-columns: 110px 1fr; } }

/* Events grid: one film lead, supporting stills and a second loop */
.events { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 200px; gap: 14px; }
.events figure { margin: 0; position: relative; border-radius: 2px; overflow: hidden; background: var(--bone-deep); }
.events img, .events video { width: 100%; height: 100%; object-fit: cover; display: block; }
.events figcaption { position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #FFF; font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.events .ev-film { grid-column: span 7; grid-row: span 2; }
.events .ev-a { grid-column: span 5; grid-row: span 1; }
.events .ev-b { grid-column: span 5; grid-row: span 2; }
.events .ev-c { grid-column: span 3; grid-row: span 1; }
.events .ev-d { grid-column: span 4; grid-row: span 1; }
@media (max-width: 860px) { .events { grid-auto-rows: 180px; } .events .ev-film, .events .ev-b { grid-column: span 12; grid-row: span 2; } .events .ev-a, .events .ev-c, .events .ev-d { grid-column: span 6; } }

/* app row in the coda */
.app-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }
.app { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; padding: 12px 18px; border: 1px solid rgba(229,228,215,.25); border-radius: 2px; color: var(--bone); text-align: left; transition: border-color var(--d-snap) var(--e-out), background var(--d-snap) var(--e-out); }
.app:hover { border-color: var(--sage); background: rgba(149,166,130,.1); }
.app .ico { width: 20px; height: 20px; color: var(--sage); }
.app span { font-size: 13px; line-height: 1.3; }
.app small { display: block; font-size: 11px; color: rgba(229,228,215,.6); letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 560px) { .app { width: 100%; } }

@media (prefers-reduced-motion: reduce) {
  .hero .media.held { animation: none; }
  .rail-track { animation: none !important; }
}

/* ============================================================
   Restyle pass, 2026-08-21 · pills, ticker, dark bands, app, footer
   Reference feel: wildthingyoga.com (frosted pills, ticker, dark
   sections, 1s expo eases) and workshoppilates.com (app section,
   footer with giant logotype). Palette and type stay Pure Motion's.
   ============================================================ */
:root {
  /* Marquee pace. Not in the ladder: a continuous ticker has no start
     or end, so it is a speed, not a duration. One full loop of the track. */
  --d-marquee: 48000ms;
}

/* pills */
.btn, .btn.sm, .tag, .loc-switch, .loc-switch button, .flag-back, .grating, .app, .sample { border-radius: 999px; }
.btn { padding: 15px 28px; }
.tag { padding: 6px 11px; }
.days { border-radius: 16px; }
.cell, .person, .member, .masonry figure, .events figure, .split .pic, .offer .pic, .sched-empty, .phone, .rail-track figure video { border-radius: 14px; }
.cell .pic img, .cell .pic video { border-radius: 14px; }

/* frosted pill nav */
@media (min-width: 901px) {
  .nav-links { background: rgba(229,228,215,.55); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border: 1px solid rgba(0,0,0,.08); border-radius: 999px; padding: 6px 10px; gap: 4px; }
  .nav-links a { padding: 8px 14px; border-bottom: 0; border-radius: 999px; transition: background var(--d-snap) var(--e-out), color var(--d-snap) var(--e-out); }
  .nav-links a:hover, .nav-links a.active { border-bottom: 0; background: var(--ink); color: var(--bone); }
  body.has-hero .nav:not(.solid) .nav-links { background: rgba(0,0,0,.28); border-color: rgba(255,255,255,.18); }
  body.has-hero .nav:not(.solid) .nav-links a:hover, body.has-hero .nav:not(.solid) .nav-links a.active { background: rgba(255,255,255,.92); color: var(--ink); border-bottom: 0; }
  .nav.solid { background: transparent; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .nav.solid .nav-links { background: rgba(229,228,215,.82); }
  .nav.solid .logo, .nav.solid .nav-toggle { color: var(--ink); }
  .nav.solid .nav-cta .btn { box-shadow: var(--shadow); }
}

/* ticker band: linear, continuous, decorative (aria-hidden) */
.ticker { background: var(--ink); color: var(--bone); overflow: hidden; padding: 18px 0; border-top: 1px solid rgba(229,228,215,.12); }
.ticker-track { display: flex; align-items: center; gap: 28px; width: max-content; font-family: var(--display); font-size: clamp(22px, 2.6vw, 36px); text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; animation: tick var(--d-marquee) linear infinite; }
.ticker-track i { font-style: normal; color: var(--sage); }
@keyframes tick { to { transform: translateX(-50%); } }

/* dark bands: what changes inside them */
.band-dark { background: var(--ink); color: var(--bone); }
.band-dark .head h2, .band-dark h3 { color: var(--bone); }
.band-dark .cell.plain { background: #141414; }
.band-dark .cell.plain .txt h3, .band-dark .cell.plain .txt p { color: var(--bone); }
.band-dark .cell.plain .txt p { color: rgba(229,228,215,.7); }
.band-dark .cell.plain .tag { border-color: rgba(229,228,215,.3); color: var(--bone); }
.band-dark .text-link { color: var(--bone); border-color: var(--sage); }
.band-dark .rail-track figcaption { color: rgba(229,228,215,.6); }
.band-dark .person.sm { background: #141414; }
.band-dark .person.sm .q p { color: var(--bone); }
.band-dark .person.sm .who { color: var(--sage); }
.band-dark .btn.ghost { color: var(--bone); border-color: rgba(229,228,215,.5); }
.band-dark .btn.ghost:hover { background: var(--bone); color: var(--ink); }
.band-dark .lede { color: rgba(229,228,215,.72); }
.band-dark + .band-dark { padding-top: 0; }
h3 .num { font-family: var(--sans); font-size: 11px; letter-spacing: .2em; color: var(--sage); margin-right: 12px; vertical-align: middle; font-weight: 600; }

/* app section: three phones, middle raised */
.appsec .split { align-items: center; }
.phones { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: end; }
.phone { background: var(--ink); overflow: hidden; aspect-ratio: 460 / 996; box-shadow: var(--shadow); }
.phone img { width: 100%; height: 100%; object-fit: cover; }
.phones .phone:nth-child(2) { transform: translateY(-28px); }
.phones.in .phone:nth-child(2) { transform: translateY(-28px) !important; }
@media (max-width: 860px) { .phones { gap: 8px; } }

/* footer, Workshop pattern: halves, newsletter, columns, tile, giant mark */
footer { background: var(--ink); color: rgba(229,228,215,.72); padding: 72px 0 0; font-size: 14px; overflow: hidden; }
.foot-halves { display: grid; grid-template-columns: .9fr 1.3fr; gap: 48px; padding-bottom: 56px; }
.foot-left .logo { color: var(--bone); margin-bottom: 16px; }
.foot-left .logo svg { color: var(--bone); }
.foot-blurb { max-width: 34ch; margin-bottom: 28px; }
.newsletter .lbl { display: block; font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; }
.nl-row { display: flex; border: 1px solid rgba(229,228,215,.28); border-radius: 999px; overflow: hidden; max-width: 420px; }
.nl-row input { flex: 1; min-width: 0; background: transparent; border: 0; color: var(--bone); font-family: var(--sans); font-size: 15px; padding: 14px 20px; }
.nl-row input::placeholder { color: rgba(229,228,215,.45); }
.nl-row input:focus { outline: none; }
.nl-row button { background: var(--sage); color: var(--ink); border: 0; width: 54px; font-size: 20px; cursor: pointer; transition: background var(--d-snap) var(--e-out); }
.nl-row button:hover { background: var(--bone); }
.foot-fine { margin-top: 12px; color: rgba(229,228,215,.5); max-width: 40ch; }
.nl-thanks { margin-top: 12px; color: var(--sage); }
.foot-right { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.foot-col h4 { color: var(--sage); margin-bottom: 16px; }
.foot-col a { display: block; color: var(--bone); text-decoration: none; padding: 5px 0; font-size: 15px; transition: color var(--d-instant) var(--e-out); }
.foot-col a:hover { color: var(--sage); }
.foot-col p.small { margin-bottom: 14px; color: rgba(229,228,215,.72); line-height: 1.7; }
.foot-tile { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0; border-top: 1px solid rgba(229,228,215,.14); border-bottom: 1px solid rgba(229,228,215,.14); }
.foot-tile a { color: inherit; text-decoration: none; display: inline; padding: 0; }
.social { display: flex; gap: 10px; }
.social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid rgba(229,228,215,.28); border-radius: 50%; color: var(--bone); transition: background var(--d-snap) var(--e-out), color var(--d-snap) var(--e-out), border-color var(--d-snap) var(--e-out); }
.social a:hover { background: var(--sage); border-color: var(--sage); color: var(--ink); }
.social .ico { width: 17px; height: 17px; }
.foot-mark { font-family: var(--display); text-transform: uppercase; letter-spacing: .02em; color: var(--bone); font-size: 13.2vw; line-height: .86; text-align: center; padding-top: 48px; margin-bottom: -.1em; white-space: nowrap; opacity: .94; width: 100%; }
@media (max-width: 860px) { .foot-halves { grid-template-columns: 1fr; gap: 40px; } .foot-right { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-right { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* pricing rail: recommended cell wider and lifted */
.sample.demo { background: var(--ink); color: var(--bone); border-color: var(--ink); margin-top: 18px; }
.pricing { display: grid; grid-template-columns: 3fr 4fr 3fr; gap: 18px; align-items: stretch; margin-top: 8px; }
.plan { background: var(--cream); border-radius: 14px; padding: 30px; display: flex; flex-direction: column; gap: 14px; border: 1px solid var(--rule); }
.plan.lead { background: var(--ink); color: var(--bone); border-color: var(--ink); transform: translateY(-10px); box-shadow: var(--shadow); }
.plan h3 { font-family: var(--sans); font-weight: 500; font-size: 18px; }
.plan .amt { font-family: var(--display); font-size: clamp(40px, 4.6vw, 60px); line-height: 1; }
.plan .amt small { display: block; font-family: var(--sans); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--sage-ink); margin-top: 8px; font-weight: 600; }
.plan.lead .amt small { color: var(--sage); }
.plan p, .plan ul { color: var(--ink-soft); font-size: 14.5px; margin: 0; }
.plan.lead p, .plan.lead ul { color: rgba(229,228,215,.75); }
.plan ul { padding: 0; list-style: none; display: grid; gap: 8px; }
.plan li { padding-left: 18px; position: relative; }
.plan li::before { content: ""; position: absolute; left: 0; top: .75em; width: 9px; height: 1px; background: var(--sage); }
.plan .btn { margin-top: auto; align-self: flex-start; }
.plan .tag.sage { align-self: flex-start; }
.pricing.rv-group.in .plan.lead { transform: translateY(-10px) !important; }
@media (max-width: 860px) { .pricing { grid-template-columns: 1fr; } .plan.lead, .pricing.rv-group.in .plan.lead { transform: none !important; } }

/* instagram feed */
.ig-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 26px; }
.ig-head h2 { text-transform: none; letter-spacing: 0; font-family: var(--sans); font-weight: 500; font-size: clamp(22px, 2.6vw, 32px); }
.ig { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.ig a { display: block; aspect-ratio: 1; border-radius: 8px; overflow: hidden; background: var(--bone-deep); }
.ig img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--d-sweep) var(--e-gentle); }
.ig a:hover img { transform: scale(1.04); }
@media (max-width: 860px) { .ig { grid-template-columns: repeat(3, 1fr); } }

/* interview film with synced captions */
.member.lead.film video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.member.lead.film figcaption { min-height: 200px; display: flex; flex-direction: column; justify-content: flex-end; }
.member.lead.film .cue { display: none; opacity: 0; transform: translateY(8px); transition: opacity var(--d-brisk) var(--e-out), transform var(--d-brisk) var(--e-ember); margin-bottom: 12px; }
.member.lead.film .cue.on { display: block; opacity: 1; transform: none; }
.member.lead.film .cue.enter { display: block; }

/* private events rail: scroll-snap cards, each with a small gallery */
.ig-head h2.display { font-family: var(--display); text-transform: uppercase; letter-spacing: .04em; font-size: clamp(30px, 4.2vw, 54px); max-width: 16ch; }
.evrail { overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 8px; }
.evrail::-webkit-scrollbar { display: none; }
.evrail-track { display: flex; gap: 18px; width: max-content; }
.evcard:first-child { margin-left: max(28px, calc((100vw - 1180px) / 2 + 28px)); }
.evcard:last-child { margin-right: max(28px, calc((100vw - 1180px) / 2 + 28px)); }
.evcard { scroll-snap-align: start; width: clamp(280px, 30vw, 400px); flex: none; background: var(--cream); border-radius: 14px; overflow: hidden; border: 1px solid var(--rule); }
.evgal { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.evgal > img { width: 100%; height: 100%; object-fit: cover; }
.evthumbs { position: absolute; left: 12px; bottom: 12px; display: flex; gap: 8px; }
.evthumbs img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; border: 2px solid var(--cream); box-shadow: var(--shadow); }
.evcard h3 { padding: 20px 22px 6px; font-size: 19px; }
.evcard p { padding: 0 22px 22px; color: var(--ink-soft); font-size: 14.5px; margin: 0; }

/* Pinecrest announcement campaign: film lead plus two salon stills */
.campaign { display: grid; grid-template-columns: 6fr 3fr 3fr; gap: 14px; margin-top: clamp(40px, 5vw, 64px); align-items: start; }
.campaign figure { margin: 0; position: relative; border-radius: 14px; overflow: hidden; background: var(--bone-deep); aspect-ratio: 4 / 5; }
.campaign figure.film { aspect-ratio: 1920 / 1536; grid-row: span 1; }
.campaign img, .campaign video { width: 100%; height: 100%; object-fit: cover; display: block; }
.campaign figcaption { position: absolute; left: 14px; bottom: 12px; color: #FFF; font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.campaign p { grid-column: 1 / -1; margin-top: 4px; }
@media (max-width: 860px) { .campaign { grid-template-columns: 1fr 1fr; } .campaign figure.film { grid-column: 1 / -1; } }

/* sticky ask: dismissable for the visit */
.sticky-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.sticky-close { background: transparent; border: 1px solid rgba(229,228,215,.3); color: var(--bone); width: 36px; height: 36px; border-radius: 50%; font-size: 20px; line-height: 1; cursor: pointer; transition: background var(--d-snap) var(--e-out), border-color var(--d-snap) var(--e-out); }
.sticky-close:hover { background: rgba(229,228,215,.14); border-color: var(--bone); }
.sticky-ask.dismissed { display: none; }
