:root {
  --cream: #fdf8f3;
  --apricot: #f4a574;
  --coral: #e8857a;
  --sage: #9db5a0;
  --lilac: #b8a9d4;
  --ink: #2e2926;
  --muted: #766b64;
  --deep-sage: #304f3c;
  --line: rgba(46, 41, 38, 0.16);
  --white: #fffdf9;
  --display: "DM Serif Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --page: min(1320px, calc(100vw - 80px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button { font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--ink);
  color: white;
}

.skip-link:focus { transform: translateY(0); }

.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;
}

.announcement {
  position: relative;
  z-index: 60;
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 8px 24px;
  background: var(--coral);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.announcement p { margin: 0; }
.announcement p span { margin: 0 8px; }
.announcement a { text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: 100%;
  min-height: 84px;
  align-items: center;
  padding: 0 max(40px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(253, 248, 243, .9);
  backdrop-filter: blur(18px);
  transition: min-height .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  border-color: var(--line);
  box-shadow: 0 12px 36px rgba(46, 41, 38, .06);
}

.wordmark {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.wordmark__mark, .monogram, .mini-mark {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  font-family: var(--display);
}

.wordmark__mark { width: 45px; height: 45px; font-size: 18px; }

.wordmark__name {
  font-family: var(--display);
  font-size: 23px;
  line-height: .9;
}

.wordmark__name small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.3vw, 36px); }

.site-nav a {
  position: relative;
  padding: 31px 0;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--coral);
  content: "";
  transition: transform .25s ease;
}

.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta { justify-self: end; }

.menu-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-3px); box-shadow: 0 16px 28px rgba(46, 41, 38, .14); }
.button span { font-size: 17px; font-weight: 400; }
.button--dark { min-height: 46px; background: var(--ink); color: white; }
.button--coral { background: var(--coral); color: white; }
.button--cream { background: var(--cream); color: var(--ink); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, .88fr);
  width: var(--page);
  min-height: 720px;
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  margin: 0 auto;
  padding: 68px 0 78px;
}

.hero__copy { position: relative; z-index: 2; }

.eyebrow {
  margin: 0 0 22px;
  color: #ca6358;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

h1, h2, h3, p { text-wrap: pretty; }

h1, h2, h3 { font-family: var(--display); font-weight: 400; }

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(70px, 7.2vw, 112px);
  letter-spacing: -.045em;
  line-height: .86;
}

.hero h1 em, .section h2 em, .final-cta h2 em {
  color: #c96358;
  font-weight: 400;
}

.hero__lead {
  max-width: 610px;
  margin: 36px 0 0;
  color: #5f5650;
  font-size: 17px;
  line-height: 1.72;
}

.hero__actions { display: flex; align-items: center; gap: 28px; margin-top: 35px; }
.hero__actions .button { min-width: 235px; }

.hero__price { display: grid; grid-template-columns: auto auto; align-items: end; gap: 0 10px; }
.hero__price span { color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.hero__price strong { grid-row: 1 / 3; grid-column: 2; font-family: var(--display); font-size: 46px; font-weight: 400; line-height: .9; }

.micro-proof { display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; margin: 28px 0 0; list-style: none; }
.micro-proof li { color: var(--muted); font-size: 11px; }
.micro-proof li::before { margin-right: 6px; color: var(--deep-sage); content: "✓"; }

.hero__visual { position: relative; min-height: 590px; }

.hero__portrait {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 7%;
  bottom: 15px;
  left: 7%;
  margin: 0;
  overflow: hidden;
  border-radius: 48% 48% 28px 28px;
  background: #e8e5e6;
  box-shadow: 0 35px 75px rgba(66, 49, 42, .14);
}

.hero__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

.hero__halo { position: absolute; border-radius: 50%; }
.hero__halo--apricot { top: -18px; right: -55px; width: 210px; height: 210px; background: var(--apricot); }
.hero__halo--lilac { bottom: 2px; left: -58px; width: 165px; height: 165px; background: var(--lilac); }

.hero__badge {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(253, 248, 243, .9);
  box-shadow: 0 18px 45px rgba(46, 41, 38, .12);
  backdrop-filter: blur(12px);
}

.hero__badge--students {
  top: 58px;
  left: -18px;
  padding: 17px 20px;
  border-radius: 22px;
}

.hero__badge--students strong { font-family: var(--display); font-size: 32px; font-weight: 400; }
.hero__badge--students span { color: #b4554c; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.hero__badge--tone {
  right: -18px;
  bottom: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 15px;
  padding: 15px 18px;
  border-radius: 18px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero__badge--tone span::before { display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: var(--coral); content: ""; }
.hero__badge--tone span:nth-child(2)::before { background: var(--sage); }
.hero__badge--tone span:nth-child(3)::before { background: var(--apricot); }
.hero__badge--tone span:nth-child(4)::before { background: var(--lilac); }

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-bar div { padding: 27px 20px; border-right: 1px solid var(--line); text-align: center; }
.proof-bar div:last-child { border: 0; }
.proof-bar strong { display: block; font-family: var(--display); font-size: clamp(23px, 2vw, 30px); font-weight: 400; }
.proof-bar span { color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.section { padding: 110px max(40px, calc((100vw - 1320px) / 2)); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .55fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 55px;
}

.section h2 {
  margin: 0;
  font-size: clamp(54px, 5.4vw, 82px);
  letter-spacing: -.04em;
  line-height: .98;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.ritual { background: var(--white); }
.ritual__layout { display: grid; grid-template-columns: minmax(310px, .75fr) minmax(0, 1.6fr); gap: 24px; }

.class-card {
  display: flex;
  min-height: 580px;
  flex-direction: column;
  padding: 34px;
  border-radius: 28px;
  background: var(--deep-sage);
  color: white;
}

.class-card__top { display: flex; align-items: center; justify-content: space-between; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.mini-mark { width: 38px; height: 38px; background: rgba(255,255,255,.16); }
.class-card > p { margin: auto 0 12px; color: #d8e4d9; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.class-card h3 { max-width: 380px; margin: 0; font-size: clamp(38px, 3.4vw, 55px); line-height: .98; }
.class-card ul { display: grid; gap: 11px; padding: 0; margin: 28px 0; list-style: none; }
.class-card li { color: #ecf1eb; font-size: 12px; }
.class-card li::before { margin-right: 8px; color: var(--apricot); content: "✦"; }
.class-card .button { width: 100%; }
.class-card small { margin-top: 13px; color: rgba(255,255,255,.58); font-size: 9px; text-align: center; }

.learning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.learning-card {
  position: relative;
  display: flex;
  min-height: 278px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border-radius: 28px;
}

.learning-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  box-shadow: 0 0 0 20px rgba(255,255,255,.13), 0 0 0 41px rgba(255,255,255,.09);
  content: "";
}

.learning-card--apricot { background: var(--apricot); }
.learning-card--sage { background: var(--sage); }
.learning-card--lilac { background: var(--lilac); }
.learning-card--coral { background: var(--coral); color: white; }
.learning-card > span { font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.learning-card h3 { max-width: 300px; margin: auto 0 7px; font-size: clamp(30px, 2.6vw, 41px); line-height: 1; }
.learning-card p { position: relative; z-index: 2; max-width: 310px; margin: 0; font-size: 12px; line-height: 1.55; }

.results { overflow: hidden; background: var(--cream); }
.results__header { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.results__header h2 { max-width: 850px; }

.rail-controls { display: flex; gap: 10px; }
.rail-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  transition: background .2s ease, color .2s ease;
}
.rail-controls button:hover { background: var(--ink); color: white; }

.result-rail {
  display: grid;
  grid-auto-columns: minmax(240px, 22vw);
  grid-auto-flow: column;
  gap: 18px;
  margin-right: calc(max(40px, (100vw - 1320px) / 2) * -1);
  padding-right: max(40px, calc((100vw - 1320px) / 2));
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}
.result-rail::-webkit-scrollbar { display: none; }
.result-rail figure { position: relative; margin: 0; scroll-snap-align: start; }
.result-rail img { width: 100%; aspect-ratio: 4 / 5; border-radius: 24px; background: #eee2d9; object-fit: cover; }
.result-rail figcaption { display: flex; justify-content: space-between; padding: 13px 5px 0; color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.result-rail figcaption span { color: var(--ink); font-weight: 700; }
.results__note { margin: 24px 0 0; color: var(--muted); font-size: 9px; }

.coach {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .78fr);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
  background: var(--sage);
}

.coach__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.coach__event { position: relative; min-height: 205px; margin: 0; overflow: hidden; border-radius: 20px; background: #829b85; }
.coach__event--large { grid-column: 1 / -1; min-height: 320px; }
.coach__event img { width: 100%; height: 100%; object-fit: cover; }
.coach__event figcaption { position: absolute; right: 10px; bottom: 10px; padding: 8px 10px; border-radius: 999px; background: rgba(253,248,243,.9); font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.monogram { width: 68px; height: 68px; margin-bottom: 28px; background: var(--cream); color: var(--deep-sage); font-size: 27px; }
.coach__copy .eyebrow { color: var(--deep-sage); }
.coach__copy h2 { font-size: clamp(65px, 6vw, 92px); }
.coach__lead { margin: 25px 0 18px; font-family: var(--display); font-size: 25px; line-height: 1.22; }
.coach__copy > p:not(.eyebrow):not(.coach__lead) { color: #3e5143; font-size: 13px; line-height: 1.75; }
.credential-list { display: grid; gap: 0; padding: 0; margin: 28px 0 0; list-style: none; }
.credential-list li { padding: 13px 0; border-top: 1px solid rgba(48,79,60,.2); font-size: 11px; }
.credential-list li::before { margin-right: 9px; content: "↗"; }

.bonus { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(420px, 1fr); gap: clamp(55px, 9vw, 135px); background: var(--white); }
.bonus__copy > p:not(.eyebrow) { max-width: 520px; margin: 25px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.bonus-list { padding: 0; margin: 38px 0 0; list-style: none; counter-reset: bonus; }
.bonus-list li { display: grid; grid-template-columns: 42px 1fr; align-items: center; padding: 15px 0; border-top: 1px solid var(--line); font-size: 12px; font-weight: 600; }
.bonus-list li:last-child { border-bottom: 1px solid var(--line); }
.bonus-list span { color: #c96358; font-size: 9px; font-weight: 700; }

.bonus__visual { position: relative; align-self: center; padding: 28px; border-radius: 44% 44% 24px 24px; background: var(--lilac); }
.bonus__visual img { width: 100%; border-radius: 40% 40% 16px 16px; }
.bonus__value { position: absolute; z-index: 2; right: -24px; bottom: 45px; display: flex; width: 150px; height: 150px; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: var(--apricot); text-align: center; }
.bonus__value span, .bonus__value small { font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.bonus__value strong { font-family: var(--display); font-size: 34px; font-weight: 400; }

.faq { display: grid; grid-template-columns: minmax(280px, .65fr) minmax(0, 1.25fr); gap: clamp(60px, 9vw, 140px); background: var(--cream); }
.faq__intro { align-self: start; }
.faq__intro > p:not(.eyebrow) { max-width: 360px; margin: 24px 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.faq__intro > a { font-size: 11px; font-weight: 700; text-underline-offset: 5px; }
.faq__intro > a span { margin-left: 10px; }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 2px; cursor: pointer; font-family: var(--display); font-size: 25px; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; width: 30px; height: 30px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-family: var(--sans); font-size: 16px; transition: transform .2s ease, background .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); background: var(--coral); color: white; }
.faq-list details p { max-width: 700px; padding: 0 55px 24px 2px; margin: -4px 0 0; color: var(--muted); font-size: 13px; line-height: 1.72; }

.final-cta {
  position: relative;
  display: flex;
  min-height: 580px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 95px 30px;
  overflow: hidden;
  background: var(--deep-sage);
  color: white;
  text-align: center;
}

.final-cta > *:not(.final-cta__shape) { position: relative; z-index: 2; }
.final-cta .monogram { margin-bottom: 25px; }
.final-cta .eyebrow { color: #dce8dd; }
.final-cta h2 { max-width: 950px; margin: 0; font-size: clamp(60px, 6.5vw, 98px); letter-spacing: -.04em; line-height: .9; }
.final-cta h2 em { color: var(--apricot); }
.final-cta > p:not(.eyebrow) { margin: 27px 0 30px; color: rgba(255,255,255,.68); font-size: 13px; }
.final-cta .button { min-width: 225px; }
.final-cta__shape { position: absolute; border-radius: 50%; filter: saturate(.9); }
.final-cta__shape--one { top: -130px; left: -80px; width: 380px; height: 380px; border: 75px solid var(--sage); opacity: .18; }
.final-cta__shape--two { right: -100px; bottom: -160px; width: 440px; height: 440px; border: 90px solid var(--lilac); opacity: .2; }
.monogram--light { background: rgba(255,255,255,.12); color: white; }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 34px max(40px, calc((100vw - 1320px) / 2));
  background: var(--white);
}

footer > p { margin: 0; color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
footer > p:last-child { justify-self: end; }

.mobile-booking { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.learning-card:nth-child(2) { transition-delay: .08s; }
.learning-card:nth-child(3) { transition-delay: .16s; }
.learning-card:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1120px) {
  :root { --page: calc(100vw - 56px); }
  .site-header { grid-template-columns: 1fr auto; padding-inline: 28px; }
  .site-nav { display: none; }
  .header-cta { margin-right: 54px; }
  .menu-toggle {
    position: absolute;
    right: 28px;
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { width: 15px; height: 1px; background: var(--ink); transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav.is-open {
    position: fixed;
    top: 122px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 40px 28px;
    background: var(--cream);
  }
  .site-header.is-scrolled .site-nav.is-open { top: 70px; }
  .site-nav.is-open a { width: 100%; padding: 20px 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 34px; font-weight: 400; }
  .hero { grid-template-columns: minmax(0, .95fr) minmax(380px, .8fr); gap: 30px; }
  .hero h1 { font-size: clamp(65px, 7.4vw, 90px); }
  .hero__visual { min-height: 530px; }
  .ritual__layout { grid-template-columns: 1fr; }
  .class-card { min-height: 520px; }
  .coach { grid-template-columns: 1fr; }
  .coach__gallery { order: 2; }
  .coach__copy { max-width: 760px; }
  .bonus { gap: 55px; }
}

@media (max-width: 900px) and (min-width: 761px) {
  .hero {
    grid-template-columns: 1fr;
    max-width: 720px;
    gap: 58px;
  }
  .hero__copy { grid-row: 2; }
  .hero__visual {
    grid-row: 1;
    width: min(100%, 590px);
    min-height: 610px;
    margin: 0 auto;
  }
  .bonus { grid-template-columns: 1fr; }
  .bonus__visual {
    width: min(100%, 650px);
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  :root { --page: calc(100vw - 36px); }
  body { padding-bottom: 72px; }
  .announcement { min-height: 32px; justify-content: center; padding: 7px 14px; font-size: 8px; white-space: nowrap; }
  .announcement a { display: none; }
  .site-header { min-height: 68px; padding: 0 18px; }
  .site-header.is-scrolled { min-height: 62px; }
  .wordmark__mark { width: 39px; height: 39px; font-size: 16px; }
  .wordmark__name { font-size: 20px; }
  .wordmark__name small { display: none; }
  .header-cta { display: none; }
  .menu-toggle { right: 18px; }
  .site-nav.is-open { top: 100px; padding: 30px 18px; }
  .site-header.is-scrolled .site-nav.is-open { top: 62px; }
  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column-reverse;
    gap: 52px;
    padding: 38px 0 68px;
  }
  .hero__copy { width: 100%; }
  .hero h1 { font-size: clamp(62px, 18.5vw, 78px); }
  .hero__lead { margin-top: 28px; font-size: 15px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero__actions .button { width: 100%; }
  .hero__visual { width: 100%; min-height: 450px; }
  .hero__portrait { top: 8px; right: 3%; bottom: 8px; left: 3%; }
  .hero__halo--apricot { right: -55px; width: 160px; height: 160px; }
  .hero__halo--lilac { left: -45px; width: 125px; height: 125px; }
  .hero__badge--students { top: 26px; left: -3px; }
  .hero__badge--tone { right: -6px; bottom: 22px; grid-template-columns: 1fr; }
  .hero__badge--tone span:nth-child(even) { display: none; }
  .proof-bar { grid-template-columns: 1fr 1fr; }
  .proof-bar div { padding: 21px 10px; border-top: 1px solid var(--line); }
  .proof-bar div:nth-child(odd) { border-right: 1px solid var(--line); }
  .proof-bar div:nth-child(even) { border-right: 0; }
  .proof-bar div:nth-child(-n+2) { border-top: 0; }
  .proof-bar strong { font-size: 23px; }
  .section { padding: 82px 18px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 42px; }
  .section h2 { font-size: clamp(50px, 14.5vw, 65px); }
  .ritual__layout { gap: 18px; }
  .class-card { min-height: 550px; padding: 26px; border-radius: 23px; }
  .learning-grid { grid-template-columns: 1fr; gap: 18px; }
  .learning-card { min-height: 240px; padding: 24px; border-radius: 23px; }
  .learning-card h3 { font-size: 36px; }
  .results__header { align-items: flex-start; flex-direction: column; }
  .result-rail { grid-auto-columns: 78vw; margin-right: -18px; padding-right: 18px; }
  .coach { gap: 55px; }
  .coach__gallery { gap: 8px; }
  .coach__event { min-height: 150px; border-radius: 14px; }
  .coach__event--large { min-height: 235px; }
  .coach__event figcaption { max-width: calc(100% - 16px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .coach__lead { font-size: 23px; }
  .bonus { grid-template-columns: 1fr; }
  .bonus__visual { padding: 18px; }
  .bonus__value { right: -6px; bottom: 25px; width: 120px; height: 120px; }
  .bonus__value strong { font-size: 28px; }
  .faq { grid-template-columns: 1fr; gap: 50px; }
  .faq-list summary { padding: 21px 0; font-size: 22px; }
  .faq-list details p { padding-right: 42px; }
  .final-cta { min-height: 590px; padding: 80px 20px; }
  .final-cta h2 { font-size: clamp(56px, 16vw, 74px); }
  footer { grid-template-columns: 1fr; padding: 38px 18px; text-align: center; }
  footer .wordmark, footer > p:last-child { justify-self: center; }
  .mobile-booking {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 100;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-radius: 999px;
    background: var(--ink);
    color: white;
    box-shadow: 0 14px 35px rgba(46,41,38,.28);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Shared multi-page system */
.site-nav a[aria-current="page"] { color: #bd594f; }
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.footer-nav { display: flex; align-items: center; justify-content: center; gap: 20px; }
.footer-nav a { color: var(--muted); font-size: 9px; font-weight: 600; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.footer-nav a:hover { color: var(--ink); }

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .8fr);
  min-height: 650px;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  padding: 70px max(40px, calc((100vw - 1320px) / 2));
  overflow: hidden;
}
.page-hero--sage { background: #dce7dd; }
.page-hero--lilac { background: #e5ddf0; }
.page-hero--coral { background: #f3d2cd; }
.page-hero--apricot { background: #f8d7c0; }
.page-hero__copy { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 10px; margin: 0 0 48px; color: var(--muted); font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.breadcrumb a { text-decoration: none; }
.page-hero h1, .faq-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(66px, 6.6vw, 100px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .89;
}
.page-hero h1 em, .faq-hero h1 em { color: #b75950; font-weight: 400; }
.page-hero__copy > p:last-child, .page-hero__copy > p:nth-last-child(2) { max-width: 620px; color: #5d5550; font-size: 15px; line-height: 1.72; }
.page-hero__copy h1 + p { margin: 32px 0 0; }
.page-hero__portrait, .page-hero__landscape { position: relative; height: 525px; margin: 0; overflow: hidden; background: rgba(255,255,255,.4); }
.page-hero__portrait { border-radius: 48% 48% 26px 26px; }
.page-hero__landscape { border-radius: 180px 24px 24px 24px; }
.page-hero__portrait::after, .page-hero__landscape::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.55); border-radius: inherit; content: ""; pointer-events: none; }
.page-hero__portrait img, .page-hero__landscape img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__portrait img { object-position: center 25%; }
.page-hero__actions { display: flex; align-items: center; gap: 20px; margin-top: 32px; }
.page-hero__actions > span { color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

.page-stats { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); background: var(--white); }
.page-stats > div { padding: 29px 20px; border-right: 1px solid var(--line); text-align: center; }
.page-stats > div:last-child { border: 0; }
.page-stats strong { display: block; font-family: var(--display); font-size: 29px; font-weight: 400; }
.page-stats span { color: var(--muted); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }

.content-section { padding: 110px max(40px, calc((100vw - 1320px) / 2)); }
.content-heading { display: block; margin-bottom: 55px; }
.content-heading h2, .before-after__copy h2, .science-copy h2, .starter-copy h2, .schedule-card h2, .access-card h2 {
  max-width: 950px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 5.2vw, 78px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .98;
}
.content-heading h2 em { color: #bd5c52; font-weight: 400; }
.content-heading > p:not(.eyebrow) { max-width: 720px; margin: 22px 0 0; }
.source-note { color: var(--muted); font-size: 11px; line-height: 1.65; }

.story-section { background: var(--white); }
.story-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.story-card { display: flex; min-height: 380px; flex-direction: column; padding: 27px; border-radius: 25px; }
.story-card--coral { background: var(--coral); color: white; }
.story-card--apricot { background: var(--apricot); }
.story-card--sage { background: var(--sage); }
.story-card--lilac { background: var(--lilac); }
.story-card > span { font-size: 9px; font-weight: 700; letter-spacing: .15em; }
.story-card h3 { margin: auto 0 14px; font-size: 37px; line-height: 1; }
.story-card p { margin: 0; font-size: 11px; line-height: 1.62; }

.before-after { display: grid; grid-template-columns: minmax(420px, 1fr) minmax(330px, .75fr); align-items: center; gap: clamp(60px, 9vw, 140px); background: var(--cream); }
.before-after__images { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 14px; }
.before-after__images figure { margin: 0; }
.before-after__images figure:first-child { transform: translateY(38px); }
.before-after__images img { width: 100%; aspect-ratio: 4 / 5; border-radius: 48% 48% 16px 16px; object-fit: cover; }
.before-after__images figcaption { padding: 10px 4px; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.before-after__copy > p:not(.eyebrow) { color: var(--muted); font-size: 13px; line-height: 1.75; }
.before-after__copy blockquote { padding: 22px 0 0; margin: 26px 0 0; border-top: 1px solid var(--line); font-family: var(--display); font-size: 22px; line-height: 1.35; }

.expertise-section { background: var(--sage); }
.event-wall { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 12px; }
.event-wall figure { position: relative; min-height: 260px; margin: 0; overflow: hidden; border-radius: 20px; background: #849b87; }
.event-wall__wide { grid-column: span 2; min-height: 340px !important; }
.event-wall img { width: 100%; height: 100%; object-fit: cover; }
.event-wall figcaption { position: absolute; right: 10px; bottom: 10px; max-width: calc(100% - 20px); padding: 8px 11px; overflow: hidden; border-radius: 999px; background: rgba(253,248,243,.92); font-size: 8px; font-weight: 700; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }

.page-cta { display: flex; min-height: 480px; align-items: center; justify-content: center; flex-direction: column; padding: 90px max(30px, calc((100vw - 1100px) / 2)); text-align: center; }
.page-cta--lilac { background: var(--lilac); }
.page-cta--apricot { background: var(--apricot); }
.page-cta--sage { background: var(--sage); }
.page-cta--coral { background: var(--coral); color: white; }
.page-cta .monogram { margin-bottom: 20px; }
.page-cta h2 { max-width: 980px; margin: 0 0 32px; font-family: var(--display); font-size: clamp(52px, 5.6vw, 82px); font-weight: 400; letter-spacing: -.04em; line-height: .98; }
.page-cta .eyebrow { color: inherit; opacity: .75; }

.programme-overview { background: var(--white); }
.level-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.level-card { min-height: 535px; padding: 35px; border-radius: 28px; }
.level-card--beginner { background: var(--apricot); }
.level-card--advanced { background: var(--deep-sage); color: white; }
.level-card > span { font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.level-card h3 { max-width: 500px; margin: 150px 0 17px; font-size: clamp(45px, 4vw, 62px); line-height: .95; }
.level-card p { max-width: 580px; font-size: 12px; line-height: 1.65; }
.level-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 25px; padding: 20px 0 0; border-top: 1px solid currentColor; margin: 27px 0 0; list-style: none; }
.level-card li { font-size: 10px; line-height: 1.4; }
.level-card li::before { margin-right: 7px; content: "✦"; }

.curriculum-section { background: var(--cream); }
.curriculum-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.curriculum-card { min-height: 275px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.curriculum-card > span { color: #bd5c52; font-size: 9px; font-weight: 700; }
.curriculum-card h3 { margin: 75px 0 10px; font-size: 31px; }
.curriculum-card p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.65; }

.schedule-section { background: var(--lilac); }
.schedule-card { max-width: 1080px; margin: 0 auto; padding: 60px; border-radius: 35px; background: var(--deep-sage); color: white; }
.schedule-card h2 { max-width: 720px; }
.schedule-card > p:not(.eyebrow) { max-width: 700px; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.7; }
.schedule-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 40px 0 30px; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.schedule-facts div { padding: 24px; border-right: 1px solid rgba(255,255,255,.2); text-align: center; }
.schedule-facts div:last-child { border: 0; }
.schedule-facts strong { display: block; font-family: var(--display); font-size: 43px; font-weight: 400; }
.schedule-facts span { font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.schedule-card .button { margin-top: 15px; }

.plans-section { background: var(--white); }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.plan-card { position: relative; display: flex; min-height: 470px; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 24px; }
.plan-card--featured { transform: translateY(-15px); border-color: transparent; background: var(--coral); color: white; }
.plan-tag { position: absolute; top: 18px; right: 18px; padding: 7px 10px; border-radius: 999px; background: var(--ink); color: white; font-size: 7px; font-weight: 700; text-transform: uppercase; }
.plan-card > p { margin: 0; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.plan-card h3 { margin: 65px 0 4px; font-size: 48px; }
.plan-card > strong { font-family: var(--display); font-size: 31px; font-weight: 400; }
.plan-card ul { display: grid; gap: 11px; padding: 25px 0; margin: 25px 0; border-top: 1px solid currentColor; list-style: none; }
.plan-card li { font-size: 10px; }
.plan-card li::before { margin-right: 7px; content: "✓"; }
.plan-card > a { margin-top: auto; font-size: 10px; font-weight: 700; text-underline-offset: 4px; }

.page-hero--results { min-height: 690px; }
.results-hero-stack { position: relative; height: 535px; }
.results-hero-stack img { position: absolute; width: 48%; aspect-ratio: 4 / 5; border: 8px solid rgba(253,248,243,.8); border-radius: 22px; object-fit: cover; box-shadow: 0 20px 45px rgba(46,41,38,.14); }
.results-hero-stack img:nth-child(1) { top: 0; left: 0; transform: rotate(-6deg); }
.results-hero-stack img:nth-child(2) { top: 45px; left: 26%; z-index: 2; transform: rotate(2deg); }
.results-hero-stack img:nth-child(3) { top: 4px; right: 0; transform: rotate(7deg); }
.concerns-section { background: var(--white); }
.concern-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.concern-cloud span { padding: 14px 19px; border: 1px solid var(--line); border-radius: 999px; font-family: var(--display); font-size: 20px; }
.concern-cloud span:nth-child(4n+1) { background: var(--apricot); }
.concern-cloud span:nth-child(4n+2) { background: var(--sage); }
.concern-cloud span:nth-child(4n+3) { background: var(--lilac); }
.concern-cloud span:nth-child(4n) { background: #f2cec8; }
.transformation-section { background: var(--cream); }
.transformation-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px 15px; }
.transformation-grid figure { margin: 0; }
.transformation-grid figure:nth-child(3n+2) { transform: translateY(35px); }
.transformation-grid img { width: 100%; aspect-ratio: 4 / 5; border-radius: 21px; object-fit: cover; background: #e9ddd4; }
.transformation-grid figcaption { display: flex; justify-content: space-between; gap: 10px; padding: 10px 3px; color: var(--muted); font-size: 8px; text-transform: uppercase; }
.transformation-grid figcaption span { color: var(--ink); font-weight: 700; }
.results-disclaimer { max-width: 720px; margin: 65px 0 0; color: var(--muted); font-size: 9px; line-height: 1.6; }
.testimonial-section { background: var(--deep-sage); color: white; }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.testimonial-grid blockquote { min-height: 350px; padding: 35px; margin: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 25px; }
.testimonial-grid blockquote::before { color: var(--apricot); content: "“"; font-family: var(--display); font-size: 65px; }
.testimonial-grid p { margin: 45px 0 25px; font-family: var(--display); font-size: 25px; line-height: 1.35; }
.testimonial-grid cite { color: rgba(255,255,255,.65); font-size: 9px; font-style: normal; letter-spacing: .1em; text-transform: uppercase; }
.result-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; background: var(--white); }
.principle-card { min-height: 300px; padding: 28px; border-radius: 24px; }
.principle-card--sage { background: var(--sage); }
.principle-card--apricot { background: var(--apricot); }
.principle-card--lilac { background: var(--lilac); }
.principle-card > span { font-size: 9px; font-weight: 700; }
.principle-card h3 { margin: 120px 0 9px; font-size: 34px; }
.principle-card p { margin: 0; font-size: 10px; line-height: 1.6; }

.agenda-section { background: var(--white); }
.agenda-list { padding: 0; margin: 0; border-top: 1px solid var(--line); list-style: none; }
.agenda-list li { display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 25px; padding: 24px 5px; border-bottom: 1px solid var(--line); }
.agenda-list li > span { color: #bd5c52; font-size: 9px; font-weight: 700; }
.agenda-list h3 { margin: 0 0 5px; font-size: 29px; }
.agenda-list p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.agenda-list strong { color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.science-section { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: clamp(60px, 8vw, 120px); background: var(--sage); }
.science-visual { position: relative; }
.science-visual img { width: 100%; min-height: 520px; border-radius: 48% 48% 22px 22px; object-fit: cover; }
.science-visual span { position: absolute; right: 20px; bottom: 20px; padding: 11px 15px; border-radius: 999px; background: var(--cream); font-size: 8px; font-weight: 700; text-transform: uppercase; }
.science-copy > p:not(.eyebrow) { color: #3d5042; font-size: 13px; line-height: 1.7; }
.science-copy ul { display: grid; gap: 0; padding: 0; margin-top: 25px; list-style: none; }
.science-copy li { padding: 13px 0; border-top: 1px solid rgba(48,79,60,.2); font-size: 10px; }
.science-copy li::before { margin-right: 8px; content: "✦"; }
.workshop-learnings { background: var(--cream); }
.workshop-card-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.workshop-card-grid article { min-height: 330px; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.workshop-card-grid span { color: #bd5c52; font-size: 9px; font-weight: 700; }
.workshop-card-grid h3 { margin: 110px 0 10px; font-size: 28px; line-height: 1; }
.workshop-card-grid p { margin: 0; color: var(--muted); font-size: 9px; line-height: 1.55; }
.workshop-offer { display: grid; grid-template-columns: 1.25fr .55fr; gap: 50px; background: var(--deep-sage); color: white; }
.workshop-offer__copy h2 { margin: 0; font-size: clamp(50px, 5vw, 75px); }
.workshop-offer__copy ul { display: grid; gap: 10px; padding: 0; margin: 30px 0; list-style: none; }
.workshop-offer__copy li { font-size: 11px; }
.workshop-offer__copy li::before { margin-right: 8px; color: var(--apricot); content: "✦"; }
.workshop-offer__price { display: flex; min-height: 340px; align-items: center; justify-content: center; flex-direction: column; border-radius: 50%; background: var(--apricot); color: var(--ink); text-align: center; }
.workshop-offer__price span, .workshop-offer__price small { font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.workshop-offer__price strong { font-family: var(--display); font-size: 76px; font-weight: 400; line-height: 1; }
.workshop-offer__price s { color: var(--muted); font-size: 11px; }

.resource-intro { background: var(--white); }
.resource-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.resource-card { display: flex; min-height: 350px; flex-direction: column; padding: 25px; border-radius: 22px; }
.resource-card:nth-child(1), .resource-card:nth-child(2) { grid-column: span 3; }
.resource-card:nth-child(n+3) { grid-column: span 2; }
.resource-card--apricot { background: var(--apricot); }
.resource-card--sage { background: var(--sage); }
.resource-card--lilac { background: var(--lilac); }
.resource-card--coral { background: var(--coral); color: white; }
.resource-card--cream { border: 1px solid var(--line); background: var(--cream); }
.resource-card > span { font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.resource-card h3 { margin: auto 0 10px; font-size: 39px; line-height: 1; }
.resource-card p { margin: 0; font-size: 10px; line-height: 1.55; }
.resource-card small { padding-top: 20px; margin-top: 20px; border-top: 1px solid currentColor; font-size: 8px; text-transform: uppercase; }
.starter-section { display: grid; grid-template-columns: 1fr .95fr; align-items: center; gap: clamp(60px, 9vw, 135px); background: var(--cream); }
.starter-visual { display: grid; min-height: 580px; place-items: center; padding: 50px; border-radius: 48% 48% 25px 25px; background: var(--lilac); }
.starter-visual img { width: 100%; object-fit: contain; }
.starter-copy ol { padding: 0; margin: 30px 0 0; list-style: none; }
.starter-copy li { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 15px 0; border-top: 1px solid var(--line); }
.starter-copy li > span { color: #bd5c52; font-size: 8px; font-weight: 700; }
.starter-copy h3 { margin: 0 0 4px; font-size: 24px; }
.starter-copy li p { margin: 0; color: var(--muted); font-size: 9px; }
.ritual-pillars { display: grid; grid-template-columns: repeat(4, 1fr); padding-top: 0; padding-bottom: 0; background: var(--white); }
.pillar { min-height: 320px; padding: 45px 28px; border-right: 1px solid var(--line); }
.pillar:first-child { border-left: 1px solid var(--line); }
.pillar > span { color: #bd5c52; font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.pillar h3 { margin: 120px 0 10px; font-size: 29px; line-height: 1; }
.pillar p { margin: 0; color: var(--muted); font-size: 9px; line-height: 1.55; }
.access-section { background: var(--lilac); }
.access-card { max-width: 1050px; padding: 60px; margin: 0 auto; border-radius: 32px; background: var(--deep-sage); color: white; text-align: center; }
.access-card .monogram { margin: 0 auto 25px; }
.access-card h2 { margin-inline: auto; }
.access-card > p:not(.eyebrow) { max-width: 700px; margin: 25px auto; color: rgba(255,255,255,.7); font-size: 11px; line-height: 1.7; }

.faq-hero { min-height: 600px; padding: 90px max(40px, calc((100vw - 1320px) / 2)); background: linear-gradient(90deg, #fdf8f3 0 60%, #f8d7c0 60%); }
.faq-hero__copy { max-width: 850px; margin: 0 auto; text-align: center; }
.faq-hero .breadcrumb { justify-content: center; }
.faq-hero .monogram { margin: 0 auto 25px; }
.faq-hero h1 { margin: 0 auto; }
.faq-hero__copy > p:last-child { max-width: 540px; margin: 25px auto 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.faq-page-section { display: grid; grid-template-columns: 250px 1fr; align-items: start; gap: clamp(50px, 8vw, 120px); background: var(--white); }
.faq-categories { position: sticky; top: 105px; display: flex; flex-direction: column; }
.faq-categories p { margin: 0 0 15px; font-family: var(--display); font-size: 25px; }
.faq-categories a { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 9px; font-weight: 600; text-decoration: none; text-transform: uppercase; }
.faq-group { padding-bottom: 65px; scroll-margin-top: 100px; }
.faq-group details { border-top: 1px solid var(--line); }
.faq-group details:last-child { border-bottom: 1px solid var(--line); }
.faq-group summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 2px; cursor: pointer; font-family: var(--display); font-size: 24px; list-style: none; }
.faq-group summary::-webkit-details-marker { display: none; }
.faq-group summary span { display: grid; width: 29px; height: 29px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-family: var(--sans); font-size: 15px; transition: transform .2s ease, background .2s ease; }
.faq-group details[open] summary span { transform: rotate(45deg); background: var(--coral); color: white; }
.faq-group details > p { max-width: 720px; padding: 0 50px 24px 2px; margin: -3px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.contact-band { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 60px max(40px, calc((100vw - 1320px) / 2)); background: var(--deep-sage); color: white; }
.contact-band h2 { margin: 0; font-size: 45px; }
.contact-band p:not(.eyebrow) { color: rgba(255,255,255,.65); font-size: 10px; }

@media (max-width: 1120px) {
  .footer-nav { gap: 12px; }
  .page-hero { grid-template-columns: minmax(0, .9fr) minmax(350px, .7fr); }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .level-card h3 { margin-top: 100px; }
  .workshop-card-grid { grid-template-columns: repeat(3, 1fr); }
  .workshop-card-grid article:nth-child(n+4) { min-height: 270px; }
  .transformation-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .page-hero { grid-template-columns: 1fr; gap: 50px; }
  .page-hero__portrait, .page-hero__landscape { width: min(100%, 620px); height: 570px; margin: 0 auto; }
  .page-hero__landscape { height: 480px; }
  .event-wall { grid-template-columns: 1fr 1fr; }
  .event-wall__wide { grid-column: 1 / -1; }
  .before-after { grid-template-columns: 1fr; }
  .before-after__images { max-width: 650px; }
  .level-grid, .science-section, .starter-section, .workshop-offer { grid-template-columns: 1fr; }
  .curriculum-grid { grid-template-columns: 1fr 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-card--featured { transform: none; }
  .results-hero-stack { width: min(100%, 620px); margin: 0 auto; }
  .transformation-grid { grid-template-columns: 1fr 1fr; }
  .workshop-offer__price { width: min(100%, 410px); min-height: 410px; margin: 0 auto; }
  .resource-card:nth-child(n) { grid-column: span 3; }
  .ritual-pillars { grid-template-columns: 1fr 1fr; }
  .pillar { border-bottom: 1px solid var(--line); }
  .faq-page-section { grid-template-columns: 1fr; }
  .faq-categories { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
  .faq-categories p { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .footer-nav { flex-wrap: wrap; }
  .page-hero { min-height: 0; padding: 65px 18px; }
  .page-hero h1, .faq-hero h1 { font-size: clamp(58px, 17vw, 74px); }
  .breadcrumb { margin-bottom: 35px; }
  .page-hero__portrait, .page-hero__landscape { height: 440px; }
  .page-hero__landscape { border-radius: 100px 18px 18px 18px; }
  .page-hero__actions { align-items: flex-start; flex-direction: column; }
  .page-hero__actions .button { width: 100%; }
  .page-stats { grid-template-columns: 1fr 1fr; }
  .page-stats > div { border-top: 1px solid var(--line); }
  .page-stats > div:nth-child(-n+2) { border-top: 0; }
  .page-stats > div:nth-child(even) { border-right: 0; }
  .content-section { padding: 80px 18px; }
  .content-heading { grid-template-columns: 1fr; gap: 20px; }
  .content-heading > p:not(.eyebrow) { grid-column: auto; }
  .content-heading h2, .before-after__copy h2, .science-copy h2, .starter-copy h2, .schedule-card h2, .access-card h2 { font-size: clamp(48px, 14vw, 62px); }
  .story-grid { grid-template-columns: 1fr; }
  .story-card { min-height: 325px; }
  .before-after__images { gap: 8px; }
  .event-wall { gap: 8px; }
  .event-wall figure { min-height: 170px; }
  .event-wall__wide { min-height: 240px !important; }
  .page-cta { min-height: 500px; padding: 75px 18px; }
  .page-cta h2 { font-size: clamp(50px, 14.5vw, 65px); }
  .level-grid { grid-template-columns: 1fr; }
  .level-card { min-height: 500px; padding: 26px; }
  .level-card h3 { margin-top: 95px; }
  .level-card ul { grid-template-columns: 1fr; }
  .curriculum-grid { grid-template-columns: 1fr; }
  .curriculum-card { min-height: 230px; }
  .curriculum-card h3 { margin-top: 55px; }
  .schedule-card { padding: 35px 24px; border-radius: 25px; }
  .schedule-facts { grid-template-columns: 1fr; }
  .schedule-facts div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .schedule-facts div:last-child { border-bottom: 0; }
  .plan-card { min-height: 430px; }
  .page-hero--results { min-height: 0; }
  .results-hero-stack { height: 390px; }
  .results-hero-stack img { width: 55%; border-width: 5px; }
  .results-hero-stack img:nth-child(2) { left: 22%; }
  .concern-cloud span { padding: 11px 14px; font-size: 17px; }
  .transformation-grid { gap: 18px 9px; }
  .transformation-grid figure:nth-child(3n+2) { transform: none; }
  .transformation-grid img { border-radius: 14px; }
  .transformation-grid figcaption { align-items: flex-start; flex-direction: column; }
  .testimonial-grid, .result-principles { grid-template-columns: 1fr; }
  .testimonial-grid blockquote { min-height: 330px; padding: 27px; }
  .testimonial-grid p { margin-top: 28px; font-size: 22px; }
  .agenda-list li { grid-template-columns: 38px 1fr; gap: 10px; }
  .agenda-list li > strong { grid-column: 2; }
  .science-visual img { min-height: 420px; }
  .workshop-card-grid { grid-template-columns: 1fr; }
  .workshop-card-grid article { min-height: 250px; }
  .workshop-card-grid h3 { margin-top: 70px; }
  .workshop-offer__price { min-height: 340px; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-card:nth-child(n) { grid-column: auto; }
  .resource-card { min-height: 300px; }
  .starter-visual { min-height: 420px; padding: 25px; }
  .ritual-pillars { grid-template-columns: 1fr; padding-inline: 18px; }
  .pillar { min-height: 260px; border-left: 1px solid var(--line); }
  .pillar h3 { margin-top: 80px; }
  .access-card { padding: 38px 22px; }
  .faq-hero { min-height: 570px; padding: 70px 18px; background: linear-gradient(180deg, #fdf8f3 0 70%, #f8d7c0 70%); }
  .faq-categories { grid-template-columns: 1fr; }
  .faq-group summary { font-size: 21px; }
  .contact-band { align-items: flex-start; flex-direction: column; padding: 55px 18px; }
  .contact-band .button { width: 100%; }
}
