/* ═══════════════════════════════════════════════════════════════════════════
   SOULFORCE ARTS — STUDIO PAGE
   Extends styles.css. Reuses brand tokens, buttons, kickers, ink marks, enso.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Hero: full-bleed Joseph photo ─── */
/* Shorter band, copy anchored LEFT, image left-justified so the man in the
   blue shirt (centered in the source) lands in the open right half. */
.hero.v-fullbleed.s-hero-studio {
  min-height: 0;
  padding-top: 150px;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  /* Lift the hero (and its enso) above the next section so the enso
     reads as a whole circle bleeding into the section below. */
  position: relative;
  z-index: 2;
}
.hero.v-fullbleed.s-hero-studio .hero-photo {
  background: #0d1f1c url("assets/studio-hero-bookparty-crop.png") center 22% / cover no-repeat;
}
/* Flip the vignette so the LEFT (where type now sits) is the dark side. */
.hero.v-fullbleed.s-hero-studio .hero-photo::after {
  background:
    linear-gradient(90deg,
      rgba(15,36,34,0.86) 0%,
      rgba(15,36,34,0.72) 28%,
      rgba(15,36,34,0.42) 48%,
      transparent 66%),
    linear-gradient(180deg,
      rgba(15,36,34,0.28) 0%,
      transparent 30%,
      transparent 68%,
      rgba(15,36,34,0.55) 100%);
}
.hero.v-fullbleed.s-hero-studio .hero-wrap { grid-template-columns: 1fr; }
.hero.v-fullbleed.s-hero-studio .hero-copy { max-width: 760px; justify-self: start; }
/* On desktop, body text spans the left ~60% of the screen */
@media (min-width: 1100px) {
  .hero.v-fullbleed.s-hero-studio .hero-copy { max-width: 60%; }
}
/* 20% smaller than the site hero display size (out-specifies .hero.v-fullbleed .hero-copy .h-display) */
.hero.v-fullbleed.s-hero-studio .hero-copy .h-display {
  font-size: clamp(1.92rem, 4.32vw, 3.68rem);
  line-height: 1.06;
}
@media (max-width: 1099px) {
  .hero.v-fullbleed.s-hero-studio .hero-copy .h-display { font-size: clamp(1.92rem, 4.8vw, 3.2rem); }
}
/* Lead text fills the box; CTAs sit below in a horizontal row */
.s-hero-studio .hero-lead-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
.s-hero-studio .hero-lead-row .lead {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.s-hero-studio .hero-cta-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
}
.s-hero-studio .hero-cta-row .btn { width: auto; }
/* Enso anchored to the lower-right corner of the hero */
.hero.v-fullbleed.s-hero-studio .enso-hero {
  left: auto;
  right: -8%;
  top: auto;
  bottom: -10%;
}

/* ─── Shared narrative + pull (mirrors Problem section) ─── */
.s-turn .wrap {
  max-width: 1140px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
@media (max-width: 880px) {
  .s-turn .wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .s-turn .turn-visual { order: -1; max-width: 460px; }
}
.s-turn .kicker { display: inline-flex; margin-bottom: 22px; }
.s-turn .h-section { margin-top: 0; }
/* Eyebrow rule: center-justified eyebrows get a decorative line on BOTH sides;
   left-justified eyebrows get one line (on the left, via .kicker::before). */
.s-quotes .quotes-head .kicker,
.s-whofor .whofor-head .kicker,
.s-included .incl-head .kicker,
.s-what .what-head .kicker,
.s-faq .faq-head .kicker { justify-content: center; }
.s-quotes .quotes-head .kicker::after,
.s-whofor .whofor-head .kicker::after,
.s-included .incl-head .kicker::after,
.s-what .what-head .kicker::after,
.s-faq .faq-head .kicker::after {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
/* Framed cellist image — offset gold line frame, matching the other sections */
.turn-visual { position: relative; }
.turn-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  background: #0c1d1b url("assets/cellist-hands.png") center / cover no-repeat;
  box-shadow: 0 28px 56px -30px rgba(24, 30, 27, 0.55);
}
.turn-photo::after {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid var(--gold-warm);
  opacity: 0.55;
  z-index: -1;
}
/* Generous breathing room into "What the Studio Is" */
.s-turn { padding-bottom: clamp(3rem, 6vw, 5rem); }
.s-what { padding-top: clamp(3rem, 6vw, 5rem); }
.s-turn .narrative {
  margin: 32px 0 0;
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 32rem;
}
.s-turn .narrative p { margin: 0 0 1.2em; }
.s-turn .narrative em { font-style: italic; }
.s-turn .narrative em.gold { font-style: italic; color: var(--gold-warm); font-weight: 500; }
.s-turn .pull {
  border-left: 2px solid var(--gold-warm);
  padding-left: 32px;
  margin: 48px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.25;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 32rem;
}
/* Enso straddles the Turn / What-the-Studio-Is boundary, on the right,
   ~2/3 on screen (it lives in s-what so it paints over the section above). */
.s-what { overflow: visible; }
.s-what .enso-bg { right: -10%; left: auto; top: -120px; bottom: auto; width: 500px; height: 500px; }

/* ═══ WHAT THE STUDIO IS ═══ */
.s-what .what-head { max-width: 760px; margin: 0 auto; text-align: center; }
.s-what .what-head .h-section { margin: 18px 0 22px; }
.s-what .what-head .body { font-size: 1.05rem; max-width: 60ch; margin-left: auto; margin-right: auto; }
.what-list {
  list-style: none;
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(2rem, 5vw, 4.5rem);
}
@media (max-width: 720px) { .what-list { grid-template-columns: 1fr; } }
.what-item {
  padding: 24px 0;
  border-top: 1px solid var(--rule);
}
.what-label {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin-bottom: 8px;
}
.what-label::before {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  height: 2px;
  background: var(--gold-warm);
  transform: translateY(-4px);
}
.what-item p { font-family: var(--sans); color: var(--ink-soft); font-size: 0.97rem; line-height: 1.65; margin: 0; }
.what-foot {
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 60ch;
}
.what-foot strong { color: var(--gold-warm); font-weight: 600; }

/* ═══ WHO IT'S FOR ═══ */
.s-whofor .whofor-head { text-align: center; }
.s-whofor .whofor-head .h-section { margin: 18px auto 0; max-width: 24ch; }
.s-whofor .whofor-photo {
  position: relative;
  min-height: 460px;
  box-shadow: 0 28px 56px -30px rgba(24, 30, 27, 0.5);
}
.s-whofor .whofor-photo .pic {
  position: absolute;
  inset: 0;
  background: #0c1d1b url("assets/whofor-singer.avif") center / cover no-repeat;
  transform: scaleX(-1); /* flipped along the vertical axis */
}
.s-whofor .whofor-photo::after {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid var(--gold-warm);
  opacity: 0.55;
  z-index: -1;
}
.fit-grid {
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  align-items: stretch;
}
@media (max-width: 880px) {
  .fit-grid { grid-template-columns: 1fr 1fr; }
  .s-whofor .whofor-photo {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
    min-height: 0;
    max-width: 520px;
    width: 100%;
    margin: 0 auto 6px;
  }
}
@media (max-width: 560px) { .fit-grid { grid-template-columns: 1fr; } }
.fit-card {
  padding: 36px 34px 38px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.5);
}
.fit-card.fit-yes { border-color: rgba(187, 131, 38, 0.4); background: linear-gradient(180deg, #fdfaee 0%, #f9f2d8 100%); }
.fit-tag {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 22px;
}
.fit-no .fit-tag { color: var(--ink-mute); }
.fit-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.fit-card li {
  position: relative;
  padding-left: 28px;
  font-family: var(--sans);
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.fit-yes li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 14px; height: 8px;
  border-left: 1.5px solid var(--gold-warm);
  border-bottom: 1.5px solid var(--gold-warm);
  transform: rotate(-45deg);
}
.fit-no li::before {
  content: "";
  position: absolute; left: 2px; top: 11px;
  width: 12px; height: 1.5px;
  background: var(--ink-faint);
}
.fit-note {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.fit-note strong { color: var(--ink); font-weight: 600; }
/* Affirmative closing line — pulled out of the "not for you" card so it reads
   as who the Studio IS for. */
.whofor-close {
  margin: clamp(2.25rem, 4.5vw, 3.5rem) auto 0;
  max-width: 60ch;
  text-align: center;
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.whofor-close::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: var(--gold-warm);
  margin: 0 auto 22px;
}
.whofor-close strong { color: var(--ink); font-weight: 700; }
.whofor-close em.gold { font-style: normal; color: var(--gold-warm); font-weight: 600; }

/* ═══ THE CIRCLE (community) ═══ */
.s-circle .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
@media (max-width: 880px) { .s-circle .wrap { grid-template-columns: 1fr; } }
.s-circle .h-section { color: #fff; margin: 18px 0 24px; max-width: 30rem; font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
.s-circle .body { color: rgba(255, 255, 255, 0.82); max-width: 30rem; }
.s-circle .body + .body { margin-top: 1.1em; }
.circle-visual {
  position: relative;
  display: grid;
  place-items: center;
}
.circle-photo {
  width: 100%;
  aspect-ratio: 16 / 11;
  background: #0c1d1b url("assets/circle-zoom.png") left center / cover no-repeat;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 1;
}
.circle-ring {
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid rgba(222, 190, 81, 0.5);
  z-index: 0;
}
.circle-ring.r2 { display: none; }
.s-circle { overflow: visible; }
.s-circle .enso-bg { right: -10%; left: auto; top: -200px; bottom: auto; width: 520px; height: 520px; }

/* ═══ THE GUIDE ═══ */
.s-guide .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 820px) { .s-guide .wrap { grid-template-columns: 1fr; } }
.guide-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  width: 100%;
  background: url("assets/joseph-portrait-enso.png") center/contain no-repeat;
}
.guide-copy .h-section { margin: 18px 0 22px; }
.guide-copy .body p { margin: 0 0 1.1em; max-width: 54ch; }
.guide-copy .linkish { margin-top: 12px; }

/* ═══ THE SEASONS ═══ */
.s-seasons .seasons-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 880px) {
  .s-seasons .seasons-head { grid-template-columns: 1fr; }
  .s-seasons .seasons-head-visual { order: -1; max-width: 340px; }
}
.seasons-head-copy { max-width: 640px; }
.seasons-head-visual { position: relative; }
.hiw-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  background: #0c1d1b url("assets/hiw-guitarist.jpg") 50% 18% / cover no-repeat;
  box-shadow: 0 28px 56px -30px rgba(0, 0, 0, 0.6);
}
.hiw-photo::after {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid var(--gold);
  opacity: 0.5;
  z-index: -1;
}
.s-seasons .seasons-head .h-section { color: var(--ink); margin: 18px 0 22px; }
.s-seasons .seasons-head .body { color: var(--ink-soft); max-width: 56ch; }
.s-seasons .seasons-head .body p { margin: 0 0 1.1em; }
.s-seasons .seasons-head .body p:last-child { margin-bottom: 0; }
.s-seasons .seasons-head em.gold { color: var(--gold-warm); font-style: italic; }
.season-list {
  list-style: none;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding: 0;
  counter-reset: none;
}
.season-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.season-row:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.season-num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
}
.season-row.is-now .season-num { color: var(--gold); }
.season-meta { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px 18px; margin-bottom: 12px; }
.season-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  text-transform: uppercase;
  letter-spacing: 0.012em;
  color: #fff;
  margin: 0;
}
.season-pill {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 2px;
  white-space: nowrap;
}
.season-pill.now { background: var(--gold); color: var(--green-deep); }
.season-pill.ahead { border: 1px solid rgba(255, 255, 255, 0.25); color: rgba(255, 255, 255, 0.6); }
.season-body p { font-family: var(--sans); color: rgba(255, 255, 255, 0.78); font-size: 1rem; line-height: 1.7; margin: 0; max-width: 60ch; }
.season-row.is-now .season-body p { color: rgba(255, 255, 255, 0.92); }
.s-seasons .enso-bg { right: -4%; left: auto; top: 40%; bottom: auto; width: 460px; height: 460px; }

/* How It Works — sub-blocks */
.hiw-block { margin-top: clamp(2.5rem, 5vw, 4rem); }
.hiw-label {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 24px;
}
.hiw-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; max-width: 64ch; }
.hiw-list li {
  position: relative;
  padding-left: 30px;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.hiw-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 18px; height: 1px;
  background: var(--gold-warm);
}
/* "What you'll keep working on" — same list, bold lead-in */
.hiw-list.keep-list { grid-template-columns: 1fr 1fr; column-gap: clamp(2rem, 5vw, 4rem); max-width: none; }
@media (max-width: 760px) { .hiw-list.keep-list { grid-template-columns: 1fr; } }
.hiw-list.keep-list li strong { color: var(--ink); font-weight: 700; }
/* "Also included with membership" block within the programs section */
.incl-extras {
  margin-top: clamp(2.75rem, 5vw, 4rem);
  padding-top: clamp(2.25rem, 4vw, 3rem);
  border-top: 1px solid var(--rule);
}
.incl-extras .extras-head { margin-top: 0; }
.lessons-block {
  margin-top: clamp(2.75rem, 5vw, 4rem);
  padding-top: clamp(2.25rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.lessons-list {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 760px) { .lessons-list { grid-template-columns: 1fr; } }
.lessons-list li {
  position: relative;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.lesson-num {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 4.6rem;
  line-height: 1;
  color: rgba(222, 190, 81, 0.08);
  z-index: 0;
  pointer-events: none;
}
.lessons-list li strong {
  display: block;
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 7px;
}
.lessons-list li .lesson-desc {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
}
.lessons-more {
  margin: 26px 0 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══ WHAT'S INCLUDED ═══ */
.s-included .incl-head { text-align: center; }
.s-included .incl-head .h-section { margin: 18px auto 0; max-width: 20ch; }
.core-block {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 38px clamp(28px, 4vw, 48px);
  background: linear-gradient(135deg, var(--green-deep) 0%, #1e4d2b 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 760px) { .core-block { grid-template-columns: 1fr; text-align: left; gap: 18px; } }
.core-flag {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
@media (max-width: 760px) { .core-flag { writing-mode: horizontal-tb; transform: none; } }
.core-main h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.012em;
  margin: 0 0 10px;
}
.core-main p { font-family: var(--sans); color: rgba(255, 255, 255, 0.82); font-size: 1rem; line-height: 1.6; margin: 0; max-width: 48ch; }
.extras-head {
  margin: 48px 0 20px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
}
.extras-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.75rem); }
@media (max-width: 820px) { .extras-grid { grid-template-columns: 1fr; } }
.extra-card {
  padding: 30px 28px 28px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
}
.extra-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  text-transform: uppercase;
  letter-spacing: 0.012em;
  margin: 0 0 12px;
  line-height: 1.12;
}
.extra-card p { font-family: var(--sans); color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; margin: 0 0 20px; flex: 1; }
.s-included .enso-bg { right: -8%; bottom: 3%; width: 460px; height: 460px; }

/* ═══ TESTIMONIAL QUOTE WALL ═══ */
.s-quotes .quotes-head { text-align: center; }
.s-quotes .quotes-head .h-section { margin: 18px auto 0; max-width: 24ch; }
.quote-wall {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  columns: 3;
  column-gap: clamp(1rem, 2.5vw, 1.75rem);
}
@media (max-width: 980px) { .quote-wall { columns: 2; } }
@media (max-width: 640px) { .quote-wall { columns: 1; } }
.quote-card {
  break-inside: avoid;
  margin: 0 0 clamp(1rem, 2.5vw, 1.75rem);
  padding: 28px 26px 24px;
  border: 1px solid var(--rule);
  background: var(--paper);
  border-top: 2px solid var(--gold);
}
.quote-card blockquote {
  margin: 0 0 18px;
  font-family: var(--sans);
  font-style: italic;
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.62;
  color: var(--ink);
}
.quote-card blockquote::before { content: "\201C"; color: var(--gold-warm); margin-right: 1px; }
.quote-card blockquote::after { content: "\201D"; color: var(--gold-warm); margin-left: 1px; }
.quote-card figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 13px;
  align-items: center;
}
.quote-avatar {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 28%;
  box-shadow: 0 0 0 1.5px var(--gold-warm), 0 0 0 4px rgba(255, 255, 255, 0.65);
  align-self: center;
}
.quote-card figcaption strong {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-warm);
}
.quote-card figcaption span {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
/* Top half of a single enso that continues into the Founding section below */
.s-quotes .enso-bg { left: -13%; right: auto; bottom: -240px; top: auto; width: 480px; height: 480px; }

/* ═══ FOUNDING MEMBER (pricing) ═══ */
.founding-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) { .founding-grid { grid-template-columns: 1fr; } }
.s-founding .h-section { color: #fff; margin: 18px 0 24px; max-width: 29rem; font-size: clamp(1.6rem, 2.9vw, 2.3rem); }
.s-founding .founding-copy .body { color: rgba(255, 255, 255, 0.82); max-width: 52ch; }
.founding-facts { list-style: none; margin: 30px 0 0; padding: 28px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.12); display: flex; flex-direction: column; gap: 14px; }
.founding-facts li { font-family: var(--sans); font-size: 14px; font-weight: 400; line-height: 1.5; color: rgba(255, 255, 255, 0.78); display: grid; grid-template-columns: 74px 1fr; gap: 16px; align-items: baseline; }
.founding-facts li .fact-key {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.founding-facts li .fact-val {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
}
.price-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(222, 190, 81, 0.35);
  padding: clamp(32px, 4vw, 44px);
  text-align: center;
  position: relative;
}
.price-flag {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.price-amount {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.4rem);
  line-height: 1;
  color: #fff;
}
.price-amount .cur { font-size: 0.5em; vertical-align: super; color: var(--gold); margin-right: 2px; }
.price-amount .per { font-size: 0.26em; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); font-family: var(--sans); }
.price-alt { font-family: var(--sans); font-size: 13.5px; color: rgba(255, 255, 255, 0.72); margin-top: 12px; }
.price-note { font-family: var(--sans); font-size: 12.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.6); margin: 18px 0; padding: 18px 0; border-top: 1px solid rgba(255, 255, 255, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.price-note strong { color: var(--gold); font-weight: 600; }
.price-line { font-family: var(--serif); font-style: italic; font-size: 1.02rem; line-height: 1.4; letter-spacing: 0.03em; text-transform: uppercase; color: rgba(255, 255, 255, 0.9); margin-bottom: 26px; }
.price-card .btn { width: 100%; }
.price-card .btn-link.center { display: inline-flex; justify-content: center; width: 100%; margin-top: 16px; color: var(--gold); }
.price-fine { font-family: var(--sans); font-size: 11px; letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.5); margin: 20px 0 0; }
/* Bottom half of the same enso (centered on the Testimonials/Founding boundary) */
.s-founding .enso-bg { left: -13%; right: auto; top: -240px; bottom: auto; width: 480px; height: 480px; }

/* ═══ FAQ ═══ */
.s-faq .wrap { max-width: 820px; }
.s-faq .faq-head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.s-faq .faq-head .h-section { margin: 18px auto 0; }
.faq-list { border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1.25;
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--gold-warm); }
.faq-icon { position: relative; flex-shrink: 0; width: 18px; height: 18px; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--gold-warm); transition: transform 0.3s ease, opacity 0.3s ease; }
.faq-icon::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq-icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); opacity: 0; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.open .faq-a { max-height: 420px; }
.faq-a-inner {
  padding: 0 4px 28px;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 64ch;
}

/* ─── Studio stakes: keep distinct from home's swapped color ─── */
.s-stakes .ctas { display: flex; justify-content: center; }

/* Enso bleeds up from the newsletter into the final CTA so it overlaps both */
.footer { position: relative; }
.footer .cta-enso {
  position: absolute;
  top: clamp(-300px, -21vw, -210px);
  right: 3%;
  width: min(60vw, 600px);
  height: min(60vw, 600px);
  background: url("assets/enso.png") center / contain no-repeat;
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
}
.footer .wrap { position: relative; z-index: 1; }
body.enso-off .footer .cta-enso { display: none; }
body.enso-prominent .footer .cta-enso { opacity: 0.22; }

/* ─── Uniform eyebrow (kicker) → header spacing across the page ─── */
.kicker + h1,
.kicker + h2 { margin-top: 38px !important; }

/* Outline buttons inside modals (paper ground) — dark treatment so the
   intake form's secondary "Close" reads on the light modal background. */
.modal .btn.outline {
  border-color: rgba(24, 30, 27, 0.4);
  color: var(--ink);
}
.modal .btn.outline:hover {
  background: rgba(24, 30, 27, 0.05);
  border-color: var(--ink);
}

/* Tighten the gap between "What it is" (practice you keep) and "Who it's for" */
.s-what { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.s-whofor { padding-top: clamp(2.5rem, 5vw, 4rem); }

/* Tighten the gaps around The Guide (Who-it's-for → Guide → Inside the Studio) */
.s-whofor { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.s-guide { padding-top: clamp(2.5rem, 5vw, 4rem); padding-bottom: clamp(2.75rem, 5.5vw, 4.5rem); }
.s-seasons { padding-top: clamp(2.75rem, 5.5vw, 4.5rem); }

/* Enso straddling the Who-it's-for / Guide seam */
.s-guide { overflow: visible; }
.s-guide .enso-bg { left: -11%; right: auto; top: -210px; bottom: auto; width: 470px; height: 470px; }

/* ═══ Testimonials: tight 3-up row (rest of the wall lives on the PWP page) ═══ */
.quote-wall-3 {
  columns: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 880px) { .quote-wall-3 { grid-template-columns: 1fr; max-width: 560px; } }
.quote-wall-3 .quote-card { margin: 0; }

/* ═══ Join the Studio: two-step pricing ladder (Perform Without Pain → Studio) ═══ */
.s-founding .price-card { text-align: left; }
.price-step + .price-step { margin-top: 24px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.price-step-flag {
  font-family: var(--sans); font-weight: 700; font-size: 10.5px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.price-step-name {
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 2.6vw, 2rem);
  text-transform: uppercase; letter-spacing: 0.012em; color: #fff; margin: 0 0 10px;
}
.price-step-desc { font-family: var(--sans); font-size: 13.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.72); margin: 0 0 14px; }
.price-step-rows { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.price-step-rows span { font-family: var(--sans); font-size: 14px; color: rgba(255, 255, 255, 0.82); }
.price-step-rows strong { font-family: var(--serif); color: var(--gold); font-weight: 400; font-size: 1.3rem; margin-right: 5px; }
.price-step .step-link { display: inline-flex; margin-top: 16px; color: var(--gold); }
.price-step-main .price-amount { font-size: clamp(2.6rem, 5vw, 3.6rem); }
.price-lessons { font-family: var(--sans); font-size: 13px; line-height: 1.5; color: rgba(255, 255, 255, 0.72); margin: 16px 0 0; }
.price-lessons strong { color: var(--gold); font-weight: 600; }
.price-lessons span { color: rgba(255, 255, 255, 0.5); }
.s-founding .price-card .btn { margin-top: 26px; }
.s-founding .price-card .btn-link.center { margin-top: 14px; text-align: center; }

/* Inline link on book-title "Soulforce" mentions -> /book */
.soulforce-link { color: inherit; text-decoration: none; border-bottom: 1px solid currentColor; transition: opacity .2s ease; }
.soulforce-link:hover { opacity: 0.7; }

/* ── "Start with Perform Without Pain" helper note (CTA repoint to PWP) ─────── */
.studio-pwp-note {
  margin: 14px 0 0;
  font-size: 13px; line-height: 1.5; letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.72);
}
.studio-pwp-note.center { text-align: center; }
.studio-pwp-note a { color: inherit; border-bottom: 1px solid currentColor; text-decoration: none; }
.studio-pwp-note a:hover { color: #fff; }
