/* ============================================================
   Lumen Yoga + Movement — Asheville, NC
   Design system: warm-canvas / organic / editorial.
   Tokens implement the Clay design.md token set, then are
   re-tuned to a yoga studio voice (peach / sage / dawn).
   ============================================================ */

:root {
  /* ---------- COLOR (design.md tokens) ---------- */
  --primary:           #2a2823;
  --primary-active:    #4a463e;
  --primary-disabled:  #e7e1d2;
  --ink:               #2a2823;
  --body:              #4d4940;
  --body-strong:       #2a2823;
  --muted:             #7a7468;
  --muted-soft:        #a59f91;
  --hairline:          #e3dccb;
  --hairline-soft:     #efe9d9;

  /* canvas — warmer than Clay, leaning closer to dawn */
  --canvas:            #fbf4e6;
  --surface-soft:      #f6ecd6;
  --surface-card:      #f1e6cf;
  --surface-strong:    #e8dabd;
  --surface-dark:      #20221d;
  --surface-dark-elev: #2c2e27;
  --on-primary:        #fbf4e6;
  --on-dark:           #fbf4e6;
  --on-dark-soft:      #c9c2b1;

  /* yoga-studio palette: dawn / peach / sage / clay / lilac */
  --brand-peach:       #f6b890;
  --brand-clay:        #d68d6f;
  --brand-sage:        #b3c2a3;
  --brand-moss:        #7d9476;
  --brand-lilac:       #c8b8da;
  --brand-cream:       #f3e6c5;
  --brand-ochre:       #e0a851;
  --brand-coral:       #e98c75;

  /* gradient stops — used in blobs */
  --grad-dawn-a:       #fbd5b4;
  --grad-dawn-b:       #e9a98c;
  --grad-dawn-c:       #a8b59a;
  --grad-dusk-a:       #f5d6b8;
  --grad-dusk-b:       #b9a8d4;

  /* semantic */
  --success:           #6ea060;
  --warning:           #d2954a;
  --error:             #c45c4d;

  /* ---------- TYPOGRAPHY ---------- */
  --font-display: "Fraunces", "Recoleta", "DM Serif Display", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* type scale (design.md) */
  --fs-display-xl: clamp(56px, 9vw, 116px);
  --fs-display-lg: clamp(40px, 5.4vw, 72px);
  --fs-display-md: clamp(30px, 3.6vw, 48px);
  --fs-display-sm: clamp(24px, 2.6vw, 34px);
  --fs-title-lg:   24px;
  --fs-title-md:   18px;
  --fs-title-sm:   16px;
  --fs-body:       16px;
  --fs-body-sm:    14px;
  --fs-caption:    13px;
  --fs-caption-up: 12px;

  /* ---------- SHAPE & SPACING ---------- */
  --r-xs: 6px; --r-sm: 8px; --r-md: 12px;
  --r-lg: 16px; --r-xl: 24px; --r-pill: 9999px;

  --s-xxs: 4px; --s-xs: 8px; --s-sm: 12px; --s-md: 16px;
  --s-lg: 24px; --s-xl: 32px; --s-xxl: 48px;
  --s-section: 96px;

  /* organic-shape blob radii */
  --blob-1: 63% 37% 54% 46% / 55% 48% 52% 45%;
  --blob-2: 47% 53% 70% 30% / 30% 52% 48% 70%;
  --blob-3: 71% 29% 41% 59% / 59% 43% 57% 41%;
  --blob-4: 39% 61% 35% 65% / 56% 38% 62% 44%;
  --blob-5: 58% 42% 33% 67% / 47% 64% 36% 53%;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }
button, input { font: inherit; color: inherit; }
hr { border: 0; border-top: 1px solid var(--hairline); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.display em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--brand-clay);
}
.display--xl { font-size: var(--fs-display-xl); line-height: 0.96; letter-spacing: -0.035em; }
.display--lg { font-size: var(--fs-display-lg); line-height: 1.02; letter-spacing: -0.028em; }
.display--md { font-size: var(--fs-display-md); line-height: 1.08; letter-spacing: -0.02em; }
.display--sm { font-size: var(--fs-display-sm); line-height: 1.15; letter-spacing: -0.012em; }

.title-md { font-size: var(--fs-title-md); font-weight: 600; letter-spacing: -0.005em; margin: 0 0 var(--s-sm); }

.caption-up {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-caption-up);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.muted { color: var(--muted); }

/* ============================================================
   AMBIENT BACKGROUND — drifting blobs + film grain
   ============================================================ */
.ambient {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
}
.ambient .grain {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.55; mix-blend-mode: multiply;
}

.blob {
  position: absolute;
  filter: blur(70px);
  opacity: 0.85;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(.22,.61,.36,1);
}
.blob--peach {
  width: 60vmin; height: 60vmin; top: -10vmin; left: -8vmin;
  background: radial-gradient(circle at 35% 35%, var(--grad-dawn-a), var(--grad-dawn-b) 60%, transparent 75%);
  border-radius: var(--blob-1);
}
.blob--sage {
  width: 55vmin; height: 55vmin; top: 35vh; right: -10vmin;
  background: radial-gradient(circle at 50% 50%, var(--brand-sage), transparent 70%);
  border-radius: var(--blob-2);
}
.blob--clay {
  width: 50vmin; height: 50vmin; top: 90vh; left: 20vw;
  background: radial-gradient(circle at 50% 50%, var(--brand-clay), transparent 65%);
  border-radius: var(--blob-3);
  opacity: 0.55;
}
.blob--lilac {
  width: 45vmin; height: 45vmin; top: 160vh; right: 5vw;
  background: radial-gradient(circle at 50% 50%, var(--brand-lilac), transparent 70%);
  border-radius: var(--blob-4);
  opacity: 0.65;
}

main, .nav, .footer, .ticker { position: relative; z-index: 1; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--canvas) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--hairline) 60%, transparent);
}
.nav__inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 76px;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-lg);
}
.wordmark {
  display: inline-flex; align-items: baseline; gap: 10px;
  color: var(--ink);
}
.wordmark svg { transform: translateY(8px); }
.wordmark__text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.wordmark__sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-left: 8px;
  align-self: center;
  border-left: 1px solid var(--hairline);
  padding-left: 10px;
}
.wordmark--lg .wordmark__text { font-size: 38px; }

.nav__links {
  display: flex; gap: clamp(16px, 2vw, 36px); justify-content: center;
}
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--body);
  position: relative; padding: 6px 2px;
  transition: color 0.2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.phone-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--r-pill);
  background: var(--surface-card);
  font-size: 13px; font-weight: 500; color: var(--ink);
  border: 1px solid color-mix(in srgb, var(--hairline) 80%, transparent);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 22px;
  border-radius: var(--r-md);
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s;
  white-space: nowrap;
}
.btn--lg { height: 52px; padding: 0 28px; font-size: 15px; }
.btn--primary {
  background: var(--primary); color: var(--on-primary);
}
.btn--primary:hover { background: var(--primary-active); transform: translateY(-1px); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--on-primary); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 120px) clamp(20px, 4vw, 48px) clamp(40px, 6vw, 80px);
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  min-height: 84vh;
}
.hero__art {
  position: relative;
  order: 2;
  height: clamp(380px, 60vh, 640px);
  display: flex; align-items: center; justify-content: center;
}
.hero-blob {
  width: 100%; height: 100%;
  filter: drop-shadow(0 30px 60px rgba(180,120,90,0.20));
  animation: blob-breathe 14s ease-in-out infinite alternate;
}
@keyframes blob-breathe {
  0%   { transform: scale(1) rotate(0deg) translate3d(0,0,0); }
  50%  { transform: scale(1.04) rotate(-3deg) translate3d(8px,-12px,0); }
  100% { transform: scale(0.98) rotate(2deg) translate3d(-6px,10px,0); }
}

.hero__copy { order: 1; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 28px;
}
.hero h1.display--xl {
  margin: 0 0 26px;
  /* mixed-type expressive headline */
}
.hero__lede {
  max-width: 52ch;
  font-size: 19px;
  color: var(--body);
  line-height: 1.55;
  margin: 0 0 36px;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 56px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(20px, 3vw, 56px);
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  max-width: 620px;
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero__stats span { font-size: 12px; color: var(--muted); letter-spacing: 0.02em; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--ink);
  color: var(--on-primary);
  overflow: hidden;
  border-block: 1px solid color-mix(in srgb, var(--ink) 70%, transparent);
}
.ticker__track {
  display: inline-flex;
  gap: 36px;
  padding: 14px 0;
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: 0.04em;
  animation: tick 40s linear infinite;
}
.ticker__track span:not([aria-hidden]) {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
}
.ticker__track span[aria-hidden] { color: var(--brand-peach); }
@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   PHILOSOPHY PULL-QUOTE
   ============================================================ */
.philosophy {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 130px) clamp(20px, 4vw, 48px);
}
.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 5fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  position: relative;
}
.philosophy__label { padding-top: 16px; }
.philosophy__quote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  position: relative;
}
.philosophy__quote em { font-style: italic; color: var(--brand-clay); }
.philosophy__quote p { margin: 0; }
.quote-mark {
  font-family: var(--font-display);
  color: var(--brand-clay);
  display: inline-block;
  transform: translateY(0.08em);
  font-size: 1em;
}
.philosophy__quote footer {
  display: flex; gap: 16px; align-items: baseline;
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.philosophy__attrib { font-weight: 600; color: var(--ink); }
.philosophy__role   { color: var(--muted); font-size: 13px; }

.philosophy__body {
  grid-column: 2;
  max-width: 60ch;
  margin: 32px 0 0 0;
  color: var(--body);
  font-size: 17px;
  line-height: 1.65;
  border-left: 2px solid var(--brand-peach);
  padding-left: 24px;
}

/* ============================================================
   SECTION HEADS
   ============================================================ */
.section-head {
  max-width: 760px;
  margin: 0 auto 64px;
  padding: 0 clamp(20px, 4vw, 48px);
  text-align: center;
}
.section-head .caption-up { display: block; margin-bottom: 16px; }
.section-head h2 { margin: 0 0 18px; }
.section-head__lede { color: var(--body); font-size: 17px; line-height: 1.6; margin: 0; }

/* asymmetric variant — left aligned, off-center */
.section-head--asym {
  margin-left: clamp(20px, 8vw, 120px);
  margin-right: auto;
  text-align: left;
  padding: 0;
}
.section-head--right {
  margin-left: auto;
  margin-right: clamp(20px, 8vw, 120px);
  text-align: right;
  padding: 0;
}

/* ============================================================
   SCHEDULE
   ============================================================ */
.schedule {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 100px) clamp(20px, 4vw, 48px);
}
.schedule__list {
  border-top: 1px solid var(--hairline);
  margin-top: 48px;
}

.class-row {
  display: grid;
  grid-template-columns: 130px 1fr 200px 130px 90px;
  align-items: center;
  gap: var(--s-lg);
  padding: 26px 8px;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  transition: background 0.3s, transform 0.3s;
}
.class-row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: var(--brand-peach);
  transition: width 0.35s cubic-bezier(.2,.7,.2,1);
}
.class-row:hover {
  background: color-mix(in srgb, var(--surface-card) 50%, transparent);
}
.class-row:hover::before { width: 4px; }
.class-row--feature {
  background: linear-gradient(90deg, color-mix(in srgb, var(--brand-lilac) 18%, transparent), transparent 70%);
}
.class-row--sold .class-row__title h3 { color: var(--muted); }

.class-row__time {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  column-gap: 4px;
  row-gap: 2px;
  font-family: var(--font-display);
}
.class-row__time .time { font-size: 36px; line-height: 1; letter-spacing: -0.02em; }
.class-row__time .ampm { font-size: 14px; color: var(--muted); }
.class-row__time .duration {
  grid-column: 1 / -1;
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-soft);
  margin-top: 4px;
}
.class-row__title h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400; letter-spacing: -0.012em;
  margin: 0 0 4px;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.class-row__title p { margin: 0; font-size: 14px; color: var(--muted); max-width: 56ch; }
.class-row__title .badge-pill { font-size: 10px; }

.class-row__teacher { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-peach) center / cover no-repeat;
  flex-shrink: 0;
  box-shadow:
    0 0 0 2px var(--canvas),
    0 1px 3px rgba(43, 41, 38, 0.12);
}
/* Per-teacher gradient fallbacks (used until JS hydrates the photo) */
.t-avatar[data-instructor="iris"]  { background-image: linear-gradient(135deg, var(--brand-peach), var(--brand-clay)); }
.t-avatar[data-instructor="mara"]  { background-image: linear-gradient(135deg, var(--brand-lilac), var(--brand-coral)); }
.t-avatar[data-instructor="jonas"] { background-image: linear-gradient(135deg, var(--brand-sage), var(--brand-moss)); }
.t-avatar[data-instructor="devon"] { background-image: linear-gradient(135deg, var(--brand-cream), var(--brand-ochre)); }
.t-name { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
.t-room { display: block; font-size: 12px; color: var(--muted); }

.class-row__cap {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--body);
}
.class-row__cap strong { font-weight: 600; color: var(--ink); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-sage); }
.dot--green { background: var(--success); }
.dot--amber { background: var(--warning); }
.dot--red   { background: var(--error); }

.pill {
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; padding: 0 18px;
  border-radius: var(--r-pill);
  background: var(--surface-card);
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--hairline);
  transition: all 0.2s;
}
.pill--book { background: var(--ink); color: var(--on-primary); border-color: var(--ink); }
.pill--book:hover { transform: translateY(-1px); background: var(--brand-clay); border-color: var(--brand-clay); }
.pill--wait { background: var(--surface-card); color: var(--muted); }
.pill--feature { background: var(--brand-lilac); color: var(--ink); border-color: transparent; }

.schedule__foot {
  margin-top: 32px;
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
  font-size: 14px; color: var(--muted);
}
.link-arrow { color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--hairline); padding-bottom: 2px; transition: border-color 0.2s; }
.link-arrow:hover { border-color: var(--brand-clay); }

/* ============================================================
   CLASSES — asymmetric 5-card layout
   ============================================================ */
.classes {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 130px) clamp(20px, 4vw, 48px);
}
.classes__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-lg);
  margin-top: 64px;
}
.class-card {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: var(--r-xl);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.class-card:hover { transform: translateY(-6px); }
.class-card__shape {
  position: absolute; z-index: -1;
  width: 70%; aspect-ratio: 1;
  bottom: -25%; right: -15%;
  border-radius: var(--blob-2);
  opacity: 0.5;
  filter: blur(28px);
  transition: transform 0.6s ease;
}
.class-card:hover .class-card__shape { transform: scale(1.15) rotate(-12deg); }

.class-card--peach { background: linear-gradient(155deg, #ffe2cc 0%, #f6b890 100%); grid-column: span 2; }
.class-card--peach .class-card__shape { background: var(--brand-clay); }

.class-card--sage  { background: linear-gradient(155deg, #d9e2cd 0%, #a6b596 100%); grid-column: span 2; }
.class-card--sage  .class-card__shape { background: var(--brand-moss); }

.class-card--clay  { background: linear-gradient(155deg, #efd3bc 0%, #d68d6f 100%); grid-column: span 2; }
.class-card--clay  .class-card__shape { background: var(--brand-coral); }

.class-card--lilac { background: linear-gradient(155deg, #e9dff1 0%, #c8b8da 100%); grid-column: span 3; }
.class-card--lilac .class-card__shape { background: var(--brand-lilac); }

.class-card--cream { background: var(--surface-card); grid-column: span 3; border: 1px solid var(--hairline); }
.class-card--cream .class-card__shape { background: var(--brand-ochre); opacity: 0.35; }
.class-card--wide { min-height: 320px; }

.class-card__head { margin-bottom: 18px; }
.class-card__kicker { color: color-mix(in srgb, var(--ink) 60%, transparent); font-size: 11px; }
.class-card .display--md { margin: 8px 0 0 0; color: var(--ink); }
.class-card p {
  font-size: 15px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--ink) 80%, transparent);
  margin: 0 0 24px;
  max-width: 46ch;
}
.class-card__meta {
  margin-top: auto;
  display: grid; gap: 12px;
  border-top: 1px solid color-mix(in srgb, var(--ink) 15%, transparent);
  padding-top: 18px;
}
.class-card__meta > div {
  display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 12px;
}
.class-card__meta dt { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: color-mix(in srgb, var(--ink) 65%, transparent); }
.class-card__meta dd { margin: 0; font-size: 13px; font-weight: 500; color: var(--ink); }
.bar { display: inline-flex; gap: 4px; }
.bar i {
  width: 18px; height: 6px; border-radius: 6px;
  background: color-mix(in srgb, var(--ink) 18%, transparent);
}
.bar--1 i:nth-child(-n+1) { background: var(--ink); }
.bar--2 i:nth-child(-n+2) { background: var(--ink); }
.bar--3 i:nth-child(-n+3) { background: var(--ink); }
.bar--4 i:nth-child(-n+4) { background: var(--ink); }
.bar--5 i:nth-child(-n+5) { background: var(--ink); }

/* ============================================================
   TEACHERS — masonry-feel asymmetric grid
   ============================================================ */
.teachers {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 130px) clamp(20px, 4vw, 48px);
}
.teachers__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--s-xl);
  margin-top: 72px;
}
.teacher-card {
  display: flex; flex-direction: column;
}
.teacher-card--lead { grid-row: span 2; }
.teacher-card__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--surface-card);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 22px;
}
.teacher-card--lead .teacher-card__photo { aspect-ratio: 4 / 6; }
.teacher-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
  filter: saturate(0.92) contrast(1.02);
}
.teacher-card:hover .teacher-card__photo img { transform: scale(1.04); }
.teacher-card__tag {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 14px;
  background: color-mix(in srgb, var(--canvas) 90%, transparent);
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
  backdrop-filter: blur(6px);
}
.teacher-card__body { padding: 0 4px; }
.teacher-card .display--sm { margin: 0 0 6px; }
.teacher-card__lineage {
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.04em; margin: 0 0 4px;
  font-family: var(--font-body);
}
.teacher-card__spec {
  font-size: 13px; font-weight: 500; color: var(--brand-clay);
  margin: 0 0 14px;
}
.teacher-card__bio { font-size: 14px; color: var(--body); line-height: 1.55; margin: 0 0 18px; }
.teacher-card__quote {
  margin: 18px 0 0 0;
  padding: 14px 0 0 18px;
  border-left: 2px solid var(--brand-peach);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.4;
  color: var(--body-strong);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 130px) clamp(20px, 4vw, 48px);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
  margin-top: 64px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: 40px 32px 36px;
  display: flex; flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(60,40,20,0.30); }

.price-card--featured {
  background: linear-gradient(165deg, #2a2823 0%, #3d3a31 100%);
  color: var(--on-primary);
  border-color: transparent;
  transform: translateY(-12px);
}
.price-card--featured:hover { transform: translateY(-16px); }
.price-card--featured::after {
  content: ""; position: absolute; bottom: -40%; right: -20%;
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--brand-clay), transparent 65%);
  border-radius: var(--blob-3);
  opacity: 0.6;
  filter: blur(40px);
  pointer-events: none;
}

.price-card header { margin-bottom: 28px; position: relative; z-index: 1; }
.price-card__name {
  display: block;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: color-mix(in srgb, currentColor 60%, transparent);
  margin-bottom: 18px;
}
.price-card__price {
  font-family: var(--font-display);
  font-size: 76px; font-weight: 400; line-height: 1;
  letter-spacing: -0.04em; display: inline-block;
}
.price-card__price .dollar { font-size: 32px; vertical-align: top; margin-right: 4px; opacity: 0.7; }
.price-card__price .per { font-size: 22px; color: color-mix(in srgb, currentColor 60%, transparent); margin-left: 4px; }
.price-card__cadence {
  display: block; font-size: 13px;
  color: color-mix(in srgb, currentColor 60%, transparent);
  margin-top: 10px;
}
.price-card__list {
  margin: 0 0 28px;
  position: relative; z-index: 1;
}
.price-card__list li {
  font-size: 14px; line-height: 1.55;
  padding: 10px 0 10px 22px;
  border-top: 1px solid color-mix(in srgb, currentColor 14%, transparent);
  position: relative;
}
.price-card__list li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-peach);
}
.price-card--featured .price-card__list li::before { background: var(--brand-clay); }
.price-card--featured .btn--primary { background: var(--brand-peach); color: var(--ink); }
.price-card--featured .btn--primary:hover { background: var(--brand-clay); color: var(--canvas); }
.price-card .btn { margin-top: auto; align-self: flex-start; position: relative; z-index: 1; }

.badge-pill {
  display: inline-flex; align-items: center;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--surface-card);
  color: var(--ink);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.badge-pill--feature {
  position: absolute; top: 22px; right: 22px;
  background: var(--brand-peach); color: var(--ink);
}

.pricing__community {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 36px 40px;
  background: var(--surface-soft);
  border-radius: var(--r-xl);
  border: 1px dashed color-mix(in srgb, var(--brand-clay) 40%, transparent);
}
.pricing__community-mark { color: var(--brand-clay); }
.pricing__community-mark svg { width: 64px; height: 64px; }
.pricing__community h4 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 400; margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.pricing__community p { margin: 0; color: var(--body); font-size: 15px; line-height: 1.6; max-width: 70ch; }
.pricing__community a { border-bottom: 1px solid var(--brand-clay); padding-bottom: 1px; color: var(--brand-clay); }

/* ============================================================
   VISIT
   ============================================================ */
.visit {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 130px) clamp(20px, 4vw, 48px);
}
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  margin-top: 72px;
}
.visit__address h3.title-md, .visit__first h3.title-md {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.visit__address h3.title-md + * { margin-bottom: 28px; }
.visit__address address {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
}
.visit__address address .muted { display: block; font-family: var(--font-body); font-size: 13px; margin-top: 8px; }
.visit__hours li {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px; color: var(--body);
}
.visit__hours li:last-child { border-bottom: none; }
.visit__address a { color: var(--brand-clay); border-bottom: 1px solid var(--brand-clay); }

.visit__photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1.2fr 1fr;
  gap: 16px;
}
.visit__photo {
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  background: var(--surface-card);
}
.visit__photo--lg { grid-column: 1 / -1; aspect-ratio: 16 / 8; }
.visit__photo:not(.visit__photo--lg) { aspect-ratio: 4 / 5; }
.visit__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s; }
.visit__photo:hover img { transform: scale(1.04); }
.visit__photo figcaption {
  position: absolute; left: 16px; bottom: 16px;
  padding: 6px 12px;
  background: color-mix(in srgb, var(--canvas) 92%, transparent);
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  max-width: calc(100% - 32px);
}

.visit__bring { margin: 0 0 32px; }
.visit__bring li {
  display: flex; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px; color: var(--body);
  line-height: 1.5;
}
.visit__bring li:last-child { border-bottom: none; }
.visit__bring strong { color: var(--ink); display: block; margin-bottom: 2px; font-weight: 600; }
.visit__bring .num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--brand-clay);
  flex-shrink: 0;
  width: 36px;
}
.visit__first p { font-size: 14px; color: var(--body); line-height: 1.6; margin: 0; }

/* ============================================================
   NEWSLETTER / SOUND BATH
   ============================================================ */
.newsletter {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px) clamp(56px, 8vw, 110px);
}
.newsletter__inner {
  background: linear-gradient(135deg, var(--surface-strong) 0%, var(--brand-lilac) 100%);
  border-radius: var(--r-xl);
  padding: clamp(48px, 7vw, 96px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.newsletter__inner::before {
  content: ""; position: absolute;
  top: -30%; right: -20%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--brand-peach), transparent 65%);
  border-radius: var(--blob-1);
  opacity: 0.55; pointer-events: none;
}
.newsletter__art { position: relative; }
.newsletter__art svg {
  width: 100%; max-width: 320px;
  filter: drop-shadow(0 30px 60px rgba(60,40,80,0.18));
  animation: blob-breathe 18s ease-in-out infinite alternate-reverse;
}
.newsletter__copy { position: relative; z-index: 1; }
.newsletter__copy .caption-up { color: var(--brand-clay); }
.newsletter__copy h2 { margin: 12px 0 16px; }
.newsletter__copy h2 em { color: var(--brand-clay); }
.newsletter__copy p { color: var(--body-strong); font-size: 16px; line-height: 1.6; margin: 0 0 28px; max-width: 56ch; }

.newsletter__form {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.newsletter__form input {
  flex: 1 1 220px;
  height: 52px;
  padding: 0 18px;
  background: var(--canvas);
  border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  border-radius: var(--r-md);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.newsletter__form input:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ink) 12%, transparent);
}
.newsletter__form .btn { height: 52px; }
.newsletter__fine { font-size: 12px; color: color-mix(in srgb, var(--ink) 60%, transparent); margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--surface-soft);
  position: relative;
  margin-top: 0;
  padding: clamp(64px, 9vw, 120px) clamp(20px, 4vw, 48px) 32px;
  overflow: hidden;
}
.footer__shape {
  position: absolute;
  width: 80vmin; aspect-ratio: 1;
  background: radial-gradient(circle, var(--brand-peach), transparent 60%);
  border-radius: var(--blob-3);
  bottom: -40%; left: -10%;
  opacity: 0.45;
  filter: blur(40px);
  pointer-events: none;
}
.footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 64px);
  position: relative; z-index: 1;
}
.footer__brand .wordmark { margin-bottom: 24px; }
.footer__tag {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  max-width: 22ch;
  color: var(--ink);
}
.footer__address {
  font-size: 13px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
}
.footer__address a { border-bottom: 1px solid color-mix(in srgb, var(--ink) 25%, transparent); }
.footer__col h5 {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}
.footer__col ul li { padding: 6px 0; font-size: 14px; }
.footer__col ul li a { color: var(--body); transition: color 0.2s; }
.footer__col ul li a:hover { color: var(--brand-clay); }
.footer__hours li {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--body);
}
.footer__hours li span:last-child { color: var(--muted); }

.footer__base {
  max-width: 1320px;
  margin: 64px auto 0;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: var(--muted);
  position: relative; z-index: 1;
}
.footer__credit { letter-spacing: 0.06em; }

/* ============================================================
   REVEAL ANIMATIONS (observed by JS)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
[data-reveal-stagger].is-revealed > * { opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-revealed > *:nth-child(1) { transition-delay: 0.04s; }
[data-reveal-stagger].is-revealed > *:nth-child(2) { transition-delay: 0.10s; }
[data-reveal-stagger].is-revealed > *:nth-child(3) { transition-delay: 0.16s; }
[data-reveal-stagger].is-revealed > *:nth-child(4) { transition-delay: 0.22s; }
[data-reveal-stagger].is-revealed > *:nth-child(5) { transition-delay: 0.28s; }
[data-reveal-stagger].is-revealed > *:nth-child(6) { transition-delay: 0.34s; }
[data-reveal-stagger].is-revealed > *:nth-child(7) { transition-delay: 0.40s; }
[data-reveal-stagger].is-revealed > *:nth-child(8) { transition-delay: 0.46s; }
[data-reveal-stagger].is-revealed > *:nth-child(n+9) { transition-delay: 0.52s; }

/* cursor ghost — soft following accent */
.cursor-glow {
  position: fixed; pointer-events: none; z-index: 2;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand-peach) 35%, transparent), transparent 60%);
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.6s;
}
.cursor-glow.is-active { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__art { order: 2; height: 60vw; max-height: 520px; }
  .hero__copy { order: 1; }

  .classes__grid { grid-template-columns: repeat(2, 1fr); }
  .class-card--peach,
  .class-card--sage,
  .class-card--clay,
  .class-card--lilac,
  .class-card--cream { grid-column: span 1; }
  .class-card--cream { grid-column: span 2; }

  .teachers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .teacher-card--lead { grid-row: auto; grid-column: span 2; }
  .teacher-card--lead .teacher-card__photo { aspect-ratio: 16 / 9; }

  .pricing__grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-4px); }

  .visit__grid { grid-template-columns: 1fr; }

  .newsletter__inner { grid-template-columns: 1fr; }
  .newsletter__art { max-width: 220px; }

  .footer__inner { grid-template-columns: repeat(2, 1fr); }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: 1fr auto; height: 64px; }
  .phone-chip { display: none; }
  .wordmark__sub { display: none; }

  .section-head--asym, .section-head--right { margin-left: 0; margin-right: 0; text-align: left; }

  .philosophy__grid { grid-template-columns: 1fr; }
  .philosophy__body { grid-column: 1; }

  .class-row {
    grid-template-columns: 96px 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px 16px;
    padding: 22px 4px;
  }
  .class-row__time { grid-row: 1; grid-column: 1; }
  .class-row__title { grid-row: 1 / 3; grid-column: 2; }
  .class-row__teacher { grid-row: 2; grid-column: 1; align-self: end; }
  .class-row__cap { grid-row: 3; grid-column: 1 / -1; }
  .pill { grid-row: 2; grid-column: 2; justify-self: end; }

  .classes__grid { grid-template-columns: 1fr; }
  .class-card--cream { grid-column: span 1; }

  .teachers__grid { grid-template-columns: 1fr; }
  .teacher-card--lead { grid-column: 1; }
  .teacher-card--lead .teacher-card__photo { aspect-ratio: 4 / 5; }

  .visit__photos { grid-template-columns: 1fr; }
  .visit__photo:not(.visit__photo--lg) { aspect-ratio: 16 / 10; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .footer__base { flex-direction: column; align-items: flex-start; }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .display em { display: inline; }
}

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