/* ============================================================
   erinpatten.com — design system
   Source of truth: Figma "edited_MetaBusiness home page Design"
   (file i1lNpi2Fp7Dc3LhgdraNeK, page "New"). Specs extracted via
   API → design/specs/*.txt
   ============================================================ */

:root {
  /* Color tokens (from Figma) */
  --rose:        #af6d6a;
  --rose-dark:   #965a57;
  --coral:       #d8735e;
  --blush:       #f4bbae;
  --blush-light: #ffd0ca;
  --cream:       #f8f6f2;
  --cream-warm:  #f7f3ea;
  --taupe:       #dfd3c9;
  --ink:         #212121;
  --ink-soft:    #1e1e1e;
  --footer-bg:   #1d1d1d;
  --gray:        #8c8c8c;
  --white:       #ffffff;

  /* Type tokens
     Designer fonts: Merchant (serif) + Signature Moments (script) — licensed.
     Live substitutes: Cormorant + Pinyon Script. Swap via these vars if
     licensed files are obtained. */
  --font-sans:   "Jost", "Helvetica Neue", Arial, sans-serif;
  --font-body:   "Raleway", "Helvetica Neue", Arial, sans-serif;
  --font-serif:  "Cormorant", Georgia, "Times New Roman", serif;
  --font-script: "Pinyon Script", cursive;

  --container:   1300px;
  --pad:         24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 18px;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- Typography ---------- */
h1, h2, h3, .serif {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: .04em;
}

.h-display { font-size: clamp(42px, 6.6vw, 96px); font-weight: 400; }
.h-1       { font-size: clamp(36px, 4.9vw, 70px); font-weight: 300; }
.h-2       { font-size: clamp(30px, 3.8vw, 54px); font-weight: 400; }
.h-3       { font-size: clamp(26px, 3vw, 40px);  font-weight: 400; }

.lead {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.45;
  letter-spacing: .04em;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px);
  color: inherit;
}

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.text-center { text-align: center; }
.text-rose   { color: var(--rose); }
.text-white  { color: var(--white); }

/* ---------- Buttons (Figma: 66px tall, 1px outline, Jost 600 18) ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .02em;
  padding: 23px 42px;
  border: 1px solid var(--rose);
  color: var(--rose);
  background: transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  text-align: center;
}
.btn:hover { background: var(--rose); color: var(--white); }

.btn--solid { background: var(--rose); color: var(--white); }
.btn--solid:hover { background: var(--rose-dark); border-color: var(--rose-dark); }

.btn--white { border-color: var(--white); color: var(--white); }
.btn--white:hover { background: var(--white); color: var(--ink); }

.btn--small { padding: 14px 28px; font-size: 15px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(2px);
}
.site-header--solid {
  position: static;
  background: var(--white);
  border-bottom: 1px solid var(--taupe);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 71px;
  gap: 24px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px 4px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease;
}
.site-header--solid .nav-toggle span,
.site-header--dark-icons .nav-toggle span { background: var(--ink); }

.brand {
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
.site-header--solid .brand,
.site-header--dark-icons .brand { color: var(--ink); }

.header-actions { display: flex; gap: 18px; align-items: center; }
.header-actions svg { width: 22px; height: 22px; stroke: var(--white); fill: none; }
.site-header--solid .header-actions svg,
.site-header--dark-icons .header-actions svg { stroke: var(--ink); }

/* Slide-over nav */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,15,14,.96);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }
.nav-overlay nav { text-align: center; }
.nav-overlay a {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--cream);
  padding: 10px 0;
  letter-spacing: .06em;
  transition: color .2s ease;
}
.nav-overlay a:hover { color: var(--blush); }
.nav-overlay .nav-minor a {
  font-family: var(--font-sans);
  font-size: 16px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 0;
  color: var(--gray);
}
.nav-overlay .nav-minor { margin-top: 28px; }
.nav-close {
  position: absolute;
  top: 22px; right: 28px;
  font-size: 34px;
  color: var(--cream);
  line-height: 1;
}

/* ============================================================
   Footer (Figma: #1d1d1d, 610px)
   ============================================================ */
.site-footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: 72px 0 36px;
  font-size: 15px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 56px;
}
.footer-sub h4 {
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.footer-sub p { color: #cfcfcf; font-weight: 300; }
.newsletter-form { display: flex; max-width: 553px; width: 100%; }
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--white);
  border-right: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 17px;
  padding: 12px 20px;
  min-width: 0;
}
.newsletter-form input::placeholder { color: #bdbdbd; }
.newsletter-form button {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  padding: 12px 24px;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--blush); }

.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 36px;
  padding-bottom: 48px;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 26px;
  letter-spacing: .3em;
  text-transform: uppercase;
  line-height: 1.3;
}
.footer-col h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-weight: 300;
  font-size: 14.5px;
  color: #e8e8e8;
  padding: 7px 0;
}
.footer-col a:hover { color: var(--blush); }
.social-links { display: flex; gap: 14px; }
.social-links a { padding: 0; }
.social-links svg { width: 22px; height: 22px; fill: var(--white); transition: fill .2s; }
.social-links a:hover svg { fill: var(--blush); }

.footer-login { text-align: center; padding: 8px 0 40px; }
.footer-login .btn {
  border-color: var(--white);
  color: #d9d9d9;
  padding: 14px 22px;
  font-size: 15px;
}
.footer-login .btn:hover { background: var(--white); color: var(--ink); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 14px;
  color: #dcdcdc;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 26px;
}
.footer-bottom a:hover { color: var(--blush); }

/* ============================================================
   Shared sections
   ============================================================ */
section { position: relative; }
.section { padding: 96px 0; }
.section--cream { background: var(--cream); }
.section--warm  { background: var(--cream-warm); }

/* Full-bleed image banner w/ overlay */
.banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 120px 24px;
}
.banner::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,.40);
}
.banner--warmtint::before {
  background: linear-gradient(rgba(120,72,48,.55), rgba(90,55,38,.55));
}
.banner > * { position: relative; }

/* CTA strip (rose) */
.cta-strip {
  background: var(--rose);
  color: var(--white);
  padding: 38px 0;
}
.cta-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 48px;
}

/* Press / client logo rows */
.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
}

/* ============================================================
   Homepage sections
   ============================================================ */

/* --- Hero --- */
.hero {
  position: relative;
  min-height: clamp(560px, 66vw, 947px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center 20%;
  color: var(--white);
}
.hero::before {
  /* Horizontal fade: dark behind the left text column, opening up so Erin
     stays visible on the right */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(0,0,0,.62) 0%,
    rgba(0,0,0,.48) 38%,
    rgba(0,0,0,.16) 70%,
    rgba(0,0,0,.04) 100%);
}
.hero .container { position: relative; }
.hero h1 {
  max-width: 980px;   /* wide left column — wraps just before Erin's face */
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .hero::before { background: rgba(0,0,0,.45); } /* uniform again when text spans full width */
}
.hero .btn { backdrop-filter: blur(2px); }

/* --- Intro (Beautiful Sol) --- */
.intro { padding: 110px 0; }
.intro .container {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
}
.intro-kicker {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.intro h2 { color: var(--rose); text-transform: uppercase; margin-bottom: 26px; }
.intro .lead { margin-bottom: 40px; white-space: pre-line; }
.intro-photo { position: relative; }
.intro-photo::before {
  content: "";
  position: absolute;
  top: 51px; left: -51px;
  width: 100%; height: 100%;
  background: var(--cream);
}
.intro-photo img { position: relative; width: 100%; }

/* --- Press logo bar --- */
.press-bar { background: var(--cream-warm); padding: 28px 0; }
.press-bar img { width: 100%; max-width: 1300px; margin: 0 auto; }

/* --- Free masterclass --- */
.masterclass { background: var(--cream); padding: 0; overflow: hidden; }
.masterclass .container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 75px);
  align-items: center;
}
.masterclass-art { margin: -40px 0; }
.masterclass h2 {
  font-weight: 300;
  margin-bottom: 30px;
}
.masterclass h2 strong { font-weight: 500; }
.masterclass .lead { margin-bottom: 40px; }
.masterclass-copy { padding: 80px 0; }

/* --- Movement / pillars --- */
.movement { padding: 110px 0 90px; }
.movement h2 {
  font-weight: 300;
  max-width: 900px;
  margin: 0 auto 28px;
}
.movement .lead { max-width: 980px; margin: 0 auto 70px; }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 5vw, 85px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.pillar { position: relative; }
.pillar:nth-child(2) { margin-top: -50px; }
.pillar img {
  width: 100%;
  aspect-ratio: 310 / 401;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.pillar::before {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 100%; height: 100%;
  background: var(--cream);
}
.pillar-label {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: -28px;
  margin-left: 18px;
  z-index: 2;
}
.pillar-label::before {
  content: "";
  width: 1px; height: 58px;
  background: var(--rose);
}
.pillar-label span {
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.7vw, 40px);
  letter-spacing: .04em;
  color: var(--rose);
}

/* --- Sol Full banner --- */
.solfull-banner { min-height: 715px; }
.solfull-banner .script { display: block; margin-bottom: 8px; opacity: .95; }
.solfull-banner h2 {
  font-weight: 300;
  letter-spacing: .06em;
  max-width: 1205px;
  margin: 0 auto 30px;
  font-size: clamp(38px, 5.5vw, 80px);
}
.solfull-banner .lead { max-width: 810px; margin: 0 auto 56px; font-weight: 400; }

/* --- Paths --- */
.paths { background: var(--cream-warm); padding: 110px 0; }
.paths h2 { margin-bottom: 90px; }
.paths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px clamp(40px, 6vw, 120px);
  max-width: 1200px;
  margin: 0 auto;
}
.path { position: relative; padding-top: 80px; }
.path-num {
  position: absolute;
  top: -10px;
  right: 0;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(120px, 12vw, 200px);
  line-height: 1;
  letter-spacing: .04em;
  color: var(--rose);
  opacity: .9;
  z-index: 0;
}
.path--img-left { display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; padding-top: 0; align-items: center; }
.path h3 { margin-bottom: 20px; position: relative; z-index: 1; }
.path p  { font-size: clamp(17px, 1.5vw, 22px); font-weight: 300; letter-spacing: .04em; line-height: 1.45; margin-bottom: 34px; position: relative; z-index: 1; max-width: 420px; }
.path img { width: 100%; position: relative; z-index: 1; }
.path-center { grid-column: 1 / -1; text-align: center; max-width: 760px; margin: 0 auto; padding-top: 0; }
.path-center .path-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 14px;
}
.path-center .path-num { position: static; font-size: clamp(100px, 10vw, 160px); }
.path-center h3 { margin-bottom: 0; }
.path-center p { margin-left: auto; margin-right: auto; }

/* --- Keynote --- */
.keynote {
  position: relative;
  background-size: cover;
  background-position: left center;
  padding: 110px 0;
  min-height: 645px;
  display: flex;
  align-items: center;
}
.keynote .container { display: flex; justify-content: flex-end; width: 100%; }
.keynote-card {
  position: relative;
  background: var(--white);
  max-width: 640px;
  padding: clamp(36px, 5vw, 70px) clamp(28px, 4.5vw, 64px);
  box-shadow: 0 8px 40px rgba(0,0,0,.10);
}
.keynote-card .script {
  position: absolute;
  top: -18px;
  left: -50px;
  color: var(--ink);
}
.keynote-card h2 { color: var(--rose); font-weight: 300; font-size: clamp(28px, 3vw, 40px); margin-bottom: 24px; }
.keynote-card .lead { margin-bottom: 36px; }

/* --- Transform / resource cards --- */
.transform { padding: 110px 0; }
.transform h2 { margin-bottom: 24px; }
.transform > .container > .lead { max-width: 730px; margin: 0 auto 80px; }
.resource-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1304px;
  margin: 0 auto;
}
.resource-card { border: 1px solid var(--taupe); background: var(--white); display: flex; flex-direction: column; }
.resource-card-img {
  aspect-ratio: 408 / 369;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resource-card-img img { width: 100%; height: 100%; object-fit: cover; }
.resource-card-img--blush { background: var(--blush-light); padding: 28px; }
.resource-card-img--blush img { object-fit: contain; }
.resource-card-body { padding: 36px; display: flex; flex-direction: column; flex: 1; }
.resource-card h3 { margin-bottom: 14px; }
.resource-card p { font-weight: 300; font-size: 19px; letter-spacing: .03em; line-height: 1.4; margin-bottom: 30px; }
.resource-card .btn { margin-top: auto; align-self: flex-start; }

/* --- Connect strip --- */
.connect-strip .strip-photo {
  width: 150px;
  border: 4px solid var(--white);
  transform: rotate(-4deg);
  margin-top: -60px;
  margin-bottom: -60px;
}
.connect-strip h2 { font-weight: 300; font-size: clamp(26px, 2.8vw, 40px); }

/* --- Clients --- */
.clients { padding: 90px 0 70px; }
.clients h2 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: .04em;
  margin-bottom: 56px;
}
.clients img { margin: 0 auto; max-width: 1200px; width: 100%; }

/* --- Podcast --- */
.podcast { background: var(--cream-warm); padding: 96px 0; overflow: hidden; }
.podcast-top {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 90px);
  margin-bottom: 64px;
}
.podcast h2 { font-weight: 300; font-size: clamp(34px, 4.4vw, 64px); margin-bottom: 26px; }
.podcast h2 em { font-style: normal; color: var(--rose); }
.podcast-top .lead { max-width: 620px; margin-bottom: 36px; }
.podcast-platforms { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.podcast-platforms span {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: .06em;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.podcast-main {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(36px, 5vw, 90px);
  align-items: start;
}
.podcast-phone {
  max-width: 334px;
  margin: 0 auto;
  align-self: end;       /* anchor Erin to the bottom of the section row */
  position: relative;
}
.podcast-phone::after {  /* soft fade into the section background so the
                            image's leg cutoff has no hard edge */
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(247,243,234,0), var(--cream-warm) 92%);
  pointer-events: none;
}
.podcast-feed h3 { font-weight: 300; font-size: clamp(26px, 3vw, 44px); margin-bottom: 44px; max-width: 670px; }
.episode {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(140,140,140,.25);
}
.episode img { width: 110px; height: 110px; object-fit: cover; flex-shrink: 0; }
.episode-title {
  flex: 1;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 21px;
  letter-spacing: .06em;
  line-height: 1.45;
}
.episode-play { flex-shrink: 0; }
.episode-play svg { width: 54px; height: 54px; fill: var(--ink-soft); transition: fill .2s; }
.episode:hover .episode-play svg { fill: var(--rose); }
.podcast-feed .btn { margin-top: 44px; }

/* --- Testimonials --- */
.testimonials { padding: 100px 0; }
.testimonials-kicker {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: .04em;
  text-align: center;
  margin-bottom: 60px;
}
.testimonial-rule {
  width: 414px; max-width: 60%;
  height: 6px;
  background: var(--rose);
  margin-bottom: 70px;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(24px, 2.5vw, 36px);
  letter-spacing: .04em;
  line-height: 1.4;
  text-align: center;
  max-width: 940px;
  margin: 0 auto 90px;
}
.testimonial-people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-person { display: flex; gap: 22px; align-items: center; }
.testimonial-person img { width: 107px; height: 114px; object-fit: cover; }
.testimonial-person strong { display: block; font-weight: 500; font-size: 22px; letter-spacing: .04em; }
.testimonial-person span { color: var(--gray); font-size: 17px; font-weight: 400; }

/* --- Next-level banner --- */
.next-banner { padding: 90px 24px; }
.next-banner .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 64px;
}
.next-banner h2 { font-weight: 300; font-size: clamp(28px, 3vw, 40px); }

/* ============================================================
   Interior page shared
   ============================================================ */
.page-hero {
  position: relative;
  min-height: clamp(420px, 65vw, 945px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center 25%;
  color: var(--white);
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,.35);
}
.page-hero h1 {
  position: relative;
  font-size: clamp(40px, 6.9vw, 100px);
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  max-width: 1205px;
  padding: 0 24px;
}
.page-hero--short { min-height: clamp(340px, 42vw, 610px); }

/* ============================================================
   About page
   ============================================================ */
.about-bio { padding: 110px 0 80px; text-align: center; }
.about-bio .intro-kicker { max-width: 800px; margin: 0 auto 36px; }
.about-bio-text {
  max-width: 980px;
  margin: 0 auto;
  font-weight: 300;
  font-size: clamp(17px, 1.45vw, 20px);
  letter-spacing: .05em;
  line-height: 1.5;
}
.about-bio-text p { margin-bottom: 22px; }
.about-bio-photo {
  position: relative;
  width: min(307px, 70vw);
  margin: 48px 0 0 auto;
}
.about-bio-photo::before {
  content: "";
  position: absolute;
  top: -20px; right: -19px;
  width: 100%; height: 100%;
  background: var(--cream);
}
.about-bio-photo img { position: relative; }

.press-bar--alt { background: #ede8e2; }

.stand-for { padding: 100px 0 0; text-align: center; }
.stand-for h2 { max-width: 640px; margin: 0 auto 80px; font-weight: 300; }
.values { background: var(--cream); padding: 80px 0; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 360px 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
  margin-bottom: 70px;
}
.values-col { display: flex; flex-direction: column; gap: 50px; text-align: left; }
.value h3 {
  color: var(--rose);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}
.value p { font-size: 16.5px; font-weight: 300; letter-spacing: .05em; line-height: 1.45; color: var(--ink-soft); }
.values-card {
  background: var(--blush);
  padding: 42px 34px 50px;
  margin-top: -160px;
  text-align: center;
}
.values-card h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 25px;
  line-height: 1.2;
  max-width: 230px;
  margin: 0 auto 32px;
}
.values-card img { margin: 0 auto; }
.values-card .script { display: block; margin-top: 18px; font-size: 30px; }
.vision { max-width: 760px; margin: 0 auto; text-align: center; }
.vision h3 { color: var(--rose); font-size: 28px; font-weight: 500; margin-bottom: 12px; }
.vision p { font-size: 16.5px; font-weight: 300; letter-spacing: .05em; line-height: 1.45; }

.qualified { padding: 110px 0; overflow: hidden; }
.qualified h2 { text-align: center; font-weight: 300; margin-bottom: 80px; }
.qualified-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
}
.qualified-nav { position: relative; padding: 30px 0 30px clamp(0px, 4vw, 60px); }
.qualified-nav::before {
  content: "";
  position: absolute;
  left: -42vw; top: 50%;
  transform: translateY(-50%);
  width: 60vw; max-width: 700px;
  aspect-ratio: 1;
  background: url("../images/about-mandala.webp") right center / contain no-repeat;
  opacity: .5;
  pointer-events: none;
}
.qualified-nav ol { position: relative; display: flex; flex-direction: column; gap: 26px; counter-reset: none; }
.qualified-nav button {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: .06em;
  color: #d9d9d9;
  transition: color .2s, transform .2s;
  text-align: left;
}
.qualified-nav li:nth-child(2) { margin-left: 38px; }
.qualified-nav li:nth-child(3) { margin-left: 62px; }
.qualified-nav li:nth-child(4) { margin-left: 62px; }
.qualified-nav li:nth-child(5) { margin-left: 38px; }
.qualified-nav button:hover { color: var(--blush); }
.qualified-nav button.active { color: var(--rose); transform: scale(1.15); }
.qualified-panel img {
  width: 100%;
  max-width: 453px;
  aspect-ratio: 453 / 333;
  object-fit: cover;
  margin-bottom: 34px;
}
.qualified-panel h3 {
  color: var(--rose);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: .06em;
  margin-bottom: 18px;
  max-width: 453px;
}
.qualified-panel p { font-weight: 400; font-size: 18px; letter-spacing: .06em; line-height: 1.5; max-width: 453px; }

.essence { background: var(--cream-warm); padding: 90px 0 80px; text-align: center; }
.essence h2 { font-weight: 300; margin-bottom: 64px; }
.essence-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.essence-item img {
  width: 100%;
  aspect-ratio: 227 / 294;
  object-fit: cover;
}
.essence-item span {
  display: block;
  font-family: var(--font-serif);
  font-size: 24px;
  margin-top: 16px;
}

/* ============================================================
   Speaking page
   ============================================================ */
.speak-hero h1 { text-transform: none; letter-spacing: .06em; }
.speak-hero .hero-attr { position: relative; margin-top: 40px; }
.speak-hero .hero-attr strong { display: block; font-family: var(--font-sans); font-weight: 600; font-size: 18px; }
.speak-hero .hero-attr span { font-size: 15px; opacity: .85; }
.speak-hero .watch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
}
.speak-hero .watch svg { width: 44px; height: 44px; fill: var(--white); }

.why { padding: 100px 0; }
.why h2 { text-align: center; margin-bottom: 70px; }
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card img {
  width: 100%;
  aspect-ratio: 421 / 369;
  object-fit: cover;
  margin-bottom: 30px;
}
.why-card .why-num {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  color: var(--rose);
  padding: 0 36px;
}
.why-card h3 {
  font-weight: 500;
  font-size: 28px;
  color: var(--rose);
  margin: 14px 0 18px;
  padding: 0 36px;
}
.why-card p { font-weight: 400; font-size: 16.5px; letter-spacing: .05em; line-height: 1.45; padding: 0 36px; margin-bottom: 22px; }
.why-card a {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--rose);
  text-transform: uppercase;
  padding: 0 36px;
}
.why-card a:hover { color: var(--rose-dark); }

.topics { padding: 30px 0 90px; }
.topics > h2 { text-align: center; margin-bottom: 90px; }
.topic {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
  margin-bottom: 110px;
}
.topic:last-child { margin-bottom: 0; }
.topic--flip { grid-template-columns: 1.4fr 1fr; }
.topic--flip .topic-media { order: 2; }
.topic-media img {
  width: 100%;
  aspect-ratio: 507 / 723;
  object-fit: cover;
}
.topic h3 {
  color: var(--rose);
  font-weight: 400;
  font-size: clamp(30px, 3.8vw, 56px);
  line-height: 1.05;
  margin-bottom: 26px;
}
.topic .hook { font-family: var(--font-sans); font-weight: 600; font-size: 18px; letter-spacing: .06em; margin-bottom: 18px; }
.topic .body { font-weight: 400; font-size: 16.5px; letter-spacing: .05em; line-height: 1.5; margin-bottom: 26px; max-width: 760px; }
.topic h4 { font-family: var(--font-sans); font-weight: 600; font-size: 17px; margin-bottom: 10px; }
.topic ul { padding-left: 4px; }
.topic li {
  font-weight: 400;
  font-size: 16.5px;
  letter-spacing: .05em;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.topic li::before {
  content: "";
  position: absolute;
  left: 0; top: .72em;
  width: 7px; height: 7px;
  border: 1px solid var(--rose);
  transform: rotate(45deg);
}

.perf { color: var(--white); }
.perf-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
  padding: 110px 24px 220px;
}
.perf-banner::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.60); }
.perf-banner > * { position: relative; }
.perf-banner h2 { font-weight: 300; font-size: clamp(34px, 5.3vw, 76px); max-width: 1045px; margin: 0 auto 18px; }
.perf-banner .script { font-size: 28px; }
.perf-card {
  background: var(--cream);
  color: var(--ink);
  max-width: 1000px;
  margin: -150px auto 0;
  position: relative;
  padding: clamp(40px, 5vw, 70px) clamp(24px, 5vw, 90px) 70px;
  text-align: center;
}
.perf-item { padding: 26px 0; }
.perf-item h3 { color: var(--rose); font-weight: 400; font-size: clamp(28px, 3.8vw, 56px); margin-bottom: 16px; }
.perf-item p { font-weight: 400; font-size: clamp(16px, 1.6vw, 24px); letter-spacing: .06em; line-height: 1.4; max-width: 790px; margin: 0 auto; }
.perf-item + .perf-item { border-top: 1px solid var(--taupe); }
.perf-card .btn { margin-top: 36px; }

/* ============================================================
   Press & Media page
   ============================================================ */
.press-hero { min-height: clamp(440px, 60vw, 860px); }
.press-hero::before { background: rgba(0,0,0,.18); }
.press-hero h1 { max-width: 980px; }
.press-hero .btn {
  position: relative;
  margin-top: 52px;
  background: rgba(186,160,137,.46);
  border-color: var(--white);
  color: var(--white);
}
.press-hero .btn:hover { background: var(--white); color: var(--ink); }

/* Featured article (Recent Press and Appearances) */
.press-recent { padding: 110px 0 140px; }
.press-recent > .container > h2 { margin-bottom: 90px; }
.press-feature {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(36px, 4.5vw, 64px);
  align-items: center;
}
.press-feature-media { position: relative; margin-top: 30px; }
.press-feature-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 495 / 500;
  object-fit: cover;
}
.press-feature-media .press-feature-back {
  position: absolute;
  top: -30px;
  left: 34px;
}
.press-feature-logo { height: 58px; width: auto; margin-bottom: 30px; }
.press-feature-body h3 {
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 37px);
  line-height: 1.17;
  max-width: 530px;
  margin-bottom: 24px;
}
.press-feature-body > p {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: .04em;
  line-height: 1.45;
  max-width: 645px;
  margin-bottom: 26px;
}
.press-meta {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.press-feature-body .press-meta { margin-bottom: 40px; }

/* Article / podcast card grids */
.press-grid-section { padding: 105px 0; }
.press-grid-section > .container > h2 { font-weight: 300; margin-bottom: 80px; }
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 32px;
}
.press-card { display: block; }
.press-card-img {
  width: 100%;
  aspect-ratio: 416 / 415;
  object-fit: cover;
  border: 1px solid #d4d4d4;
}
.press-card-body { padding: 24px 24px 0; }
.press-card-logo { height: 32px; width: auto; margin-bottom: 26px; }
.press-card .press-meta { font-size: 14px; margin-bottom: 22px; }
.press-card h3 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: .08em;
  line-height: 1.5;
  text-transform: uppercase;
  transition: color .2s ease;
}
.press-card:hover h3 { color: var(--rose); }
.press-podcasts .press-card .press-meta { margin: 22px 0 0; }
.press-more { text-align: center; margin-top: 84px; }

/* ============================================================
   Podcast page
   ============================================================ */
.podcast-hero {
  position: relative;
  min-height: clamp(560px, 65.6vw, 945px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center top;
  color: var(--white);
  overflow: hidden;
}
.podcast-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,.30);
}
.podcast-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 4vw, 80px);
  align-items: center;
  width: 100%;
  padding-top: 90px;
}
.podcast-hero h1 {
  font-weight: 300;
  font-size: clamp(44px, 6.9vw, 100px);
  line-height: 1.02;
  letter-spacing: .06em;
  margin-bottom: clamp(36px, 4.5vw, 64px);
  max-width: 880px;
}
.podcast-hero .podcast-platforms { gap: clamp(22px, 3.2vw, 60px); }
.podcast-hero .podcast-platforms svg { fill: var(--white); }
.podcast-hero .podcast-platforms span { color: var(--white); }

/* Phone mockup composite (spec: Group 85) */
.phone-mock {
  position: relative;
  width: 100%;
  max-width: 470px;
  aspect-ratio: 607 / 791;
  margin: 0 auto;
}
.phone-mock .phone-frame {
  width: 100%; height: 100%;
  object-fit: cover;
}
.phone-caption {
  position: absolute;
  left: 32.3%; top: 16.8%;
  width: 35.3%;
  background: #3f3f3f;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 8px;
  letter-spacing: .04em;
  line-height: 1;
  padding: 5px 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone-cover {
  position: absolute;
  left: 27.3%; top: 24.7%;
  width: 44.8%;
  border-radius: 6px;
}
.phone-title {
  position: absolute;
  left: 27.3%; top: 63.3%;
  min-width: 39.4%;
  background: #2d2d2d;
  color: var(--white);
  font-family: var(--font-sans);
  padding: 7px 10px;
}
.phone-title strong { display: block; font-weight: 500; font-size: 12px; letter-spacing: .02em; line-height: 1.3; white-space: nowrap; }
.phone-title span { display: block; font-weight: 300; font-size: 9px; color: #cfcfcf; }
.phone-airpod { position: absolute; }
.phone-airpod--l { left: 7.9%; top: 67.9%; width: 13.1%; }
.phone-airpod--r { left: 12.7%; top: 73.1%; width: 19.1%; }

/* Intro */
.podcast-intro { padding: 110px 0 120px; }
.podcast-intro h2 { margin-bottom: 26px; }
.podcast-kicker {
  color: var(--rose);
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: .04em;
  margin-bottom: 22px;
}
.podcast-intro .lead { max-width: 850px; margin: 0 auto; }

/* The Latest */
.latest { padding: 100px 0 130px; }
.latest h2 { margin-bottom: 64px; }
.latest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.latest-cover { position: relative; display: block; }
.latest-cover img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.latest-play {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.latest-play svg {
  width: 40px; height: 40px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.35));
  transition: transform .2s ease;
}
.latest-cover:hover .latest-play svg { transform: scale(1.12); }

/* Guest spotlight */
.guest { position: relative; margin-top: 130px; }
.guest-photo {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 67.85%;
}
.guest-photo img { width: 100%; height: 100%; object-fit: cover; }
.guest-panel {
  position: relative;
  margin: 31px 0 32px 49.5%;
  background: var(--cream-warm);
  padding: clamp(48px, 7.6vw, 110px) max(24px, calc((100vw - var(--container)) / 2 + var(--pad))) clamp(40px, 5vw, 72px) clamp(28px, 5vw, 72px);
}
.guest-script {
  position: absolute;
  left: -80px; top: 24px;
  color: var(--ink);
  font-size: 30px;
}
.guest-panel h2 {
  color: var(--rose);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.12;
  letter-spacing: .04em;
  margin-bottom: 24px;
  max-width: 600px;
}
.guest-panel .lead { max-width: 580px; margin-bottom: 52px; }
.guest-episode {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  background: var(--cream);
  border: 1px solid #d2d2d2;
  padding-right: clamp(16px, 2.2vw, 32px);
  transition: border-color .2s ease;
}
.guest-episode:hover { border-color: var(--rose); }
.guest-episode img { width: 101px; height: 101px; object-fit: cover; flex-shrink: 0; }
.guest-ep-title {
  flex: 1;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .08em;
  line-height: 1.45;
  padding: 14px 0;
}
.guest-play { flex-shrink: 0; display: flex; }
.guest-play svg { width: 40px; height: 40px; }

/* All episodes */
.episodes { padding: 120px 0 110px; }
.episodes h2 { margin-bottom: 64px; }
.episodes-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 33px;
}
.episodes-filters { display: flex; gap: 16px; flex-wrap: wrap; }
.ep-filter {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  padding: 7px 20px;
  border: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.ep-filter:hover { color: var(--rose); }
.ep-filter.active { color: var(--rose); border-color: var(--rose); }
.episodes-search {
  width: min(394px, 100%);
  height: 48px;
  border: 1px solid var(--ink);
  background: transparent;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  color: var(--ink);
  padding: 0 20px;
}
.episodes-search::placeholder { color: var(--gray); }
.ep-row {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 26px);
  padding: 34px clamp(20px, 4.4vw, 64px) 34px clamp(20px, 4.2vw, 60px);
  background: #fdfbf9;
}
.ep-row:nth-child(even) { background: var(--cream-warm); }
.ep-row:hover { outline: 1px solid var(--ink); outline-offset: -1px; }
.ep-row img { width: 130px; height: 130px; object-fit: cover; flex-shrink: 0; }
.ep-info { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.ep-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: .08em;
  line-height: 1.5;
}
.ep-meta { font-weight: 300; font-size: 16px; letter-spacing: .08em; }
.ep-play { flex-shrink: 0; color: var(--ink); display: flex; transition: color .2s ease; }
.ep-row:hover .ep-play { color: var(--rose); }
.ep-play svg { width: 60px; height: 60px; }
.episodes-more { margin-top: 62px; }

/* Like / review / ask panel */
.sub-cta {
  display: grid;
  grid-template-columns: 52.5fr 5.5fr 42fr;
  align-items: center;
  margin-top: 50px;
}
.sub-panel {
  grid-column: 1 / 3;
  grid-row: 1;
  background: var(--cream-warm);
  padding: clamp(48px, 6.6vw, 96px) clamp(90px, 9vw, 130px) clamp(48px, 6.6vw, 96px) max(24px, calc((100vw - var(--container)) / 2 + var(--pad)));
}
.sub-photo {
  grid-column: 2 / 4;
  grid-row: 1;
  position: relative;
  z-index: 1;
}
.sub-photo > img:first-child { width: 100%; }
.sub-stamp {
  position: absolute;
  left: 2%; top: 4%;
  width: 18.7%;
}
.sub-list {
  display: flex;
  flex-direction: column;
  gap: 42px;
  max-width: 675px;
}
.sub-item {
  display: flex;
  align-items: center;
  gap: 24px;
  border-left: 2px solid var(--blush);
  padding-left: 26px;
}
.sub-item svg { width: 80px; height: 80px; flex-shrink: 0; fill: var(--rose); }
.sub-label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .06em;
}
.sub-line {
  display: block;
  color: var(--rose);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: .04em;
  margin-top: 8px;
  max-width: 545px;
}

/* Submit your question */
.ask {
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}
.ask-card {
  background: var(--white);
  max-width: 580px;
  margin-left: auto;
  padding: clamp(32px, 3.6vw, 50px);
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
}
.ask-card h2 {
  font-weight: 300;
  font-size: clamp(34px, 3.3vw, 48px);
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 14px;
}
.ask-card > p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  max-width: 413px;
  margin: 0 auto 32px;
}
.ask-form label {
  display: block;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 24px;
}
.ask-form input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--ink-soft);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink);
  padding: 0 12px;
  margin-top: 8px;
}
.ask-form input::placeholder { color: #9a9a9a; }
.ask-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ask-form .btn { margin-top: 8px; }

/* ============================================================
   MetaBusiness page
   Section backgrounds alternate #f3f0ed / #ede8e2 (from Figma)
   ============================================================ */

/* --- Hero --- */
.mb-hero {
  background: #f3f0ed;
  position: relative;
  z-index: 2;
  padding-top: 100px;
}
.mb-hero-grid {
  display: grid;
  grid-template-columns: 0.55fr 0.95fr 0.85fr;
  align-items: center;
  column-gap: clamp(20px, 2.6vw, 38px);
}
.mb-hero-copy {
  grid-column: 1 / 3;
  grid-row: 1;
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 40px 0 70px;
}
.mb-hero-copy h1 {
  font-weight: 300;
  font-size: clamp(38px, 4.9vw, 70px);
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 800px;
  margin-bottom: 26px;
}
.mb-hero-copy p {
  max-width: 350px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 46px;
}
.mb-hero-main {
  grid-column: 2 / 3;
  grid-row: 1;
  z-index: 1;
  align-self: stretch;
}
.mb-hero-main img {
  width: 100%;
  height: calc(100% + 120px);  /* 40px up behind the header, 80px over the press bar (per design) */
  object-fit: cover;
  object-position: center top;
  margin-top: -40px;
  margin-bottom: -80px;
  position: relative;
}
.mb-hero-side {
  grid-column: 3 / 4;
  grid-row: 1;
  z-index: 2;
}
.mb-hero-side img {
  width: 100%;
  aspect-ratio: 463 / 554;
  object-fit: cover;
}

/* --- Membership video card --- */
.mb-membership { background: #f3f0ed; padding: 96px 0; }
.mb-membership .lead {
  font-weight: 400;
  max-width: 1000px;
  margin: 0 auto 64px;
  text-align: center;
}
.mb-video {
  position: relative;
  display: block;
  background: var(--footer-bg);
  min-height: clamp(340px, 41vw, 596px);
  overflow: hidden;
  color: var(--white);
}
.mb-video-photo {
  position: absolute;
  right: 0; bottom: 0;
  width: 37%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.mb-video-copy {
  position: absolute;
  left: clamp(24px, 9.5vw, 130px);
  top: 50%;
  transform: translateY(-50%);
}
.mb-video-title {
  display: block;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(40px, 6.7vw, 97px);
  letter-spacing: .02em;
  line-height: 1.05;
  background: linear-gradient(92deg, var(--blush-light) 0%, var(--blush) 45%, var(--rose) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mb-video-row {
  display: flex;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}
.mb-video-sub {
  display: block;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(24px, 3.6vw, 52px);
  letter-spacing: .04em;
  color: var(--white);
}
.mb-video-play {
  width: clamp(54px, 5.4vw, 78px);
  transition: transform .25s ease;
}
.mb-video-play svg { width: 100%; height: auto; display: block; }
.mb-video:hover .mb-video-play { transform: scale(1.1); }
.mb-video-badge {
  position: absolute;
  left: 0; bottom: 12px;
  width: clamp(110px, 11vw, 158px);
  opacity: .92;
}

/* --- Process --- */
.mb-process { background: #ede8e2; padding: 100px 0 110px; }
.mb-process h2 { text-align: center; font-weight: 300; margin-bottom: 90px; }
.mb-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mb-step { text-align: center; position: relative; padding: 0 18px; }
.mb-step-num {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(36px, 3.5vw, 50px);
  line-height: 1.5;
  display: block;
  margin-bottom: 14px;
}
.mb-step h3 {
  color: var(--rose);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.3;
  margin-bottom: 20px;
}
.mb-step p { font-weight: 400; font-size: clamp(16px, 1.65vw, 24px); line-height: 1.5; max-width: 390px; margin: 0 auto; }
.mb-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: clamp(26px, 2.6vw, 38px);
  left: calc(50% + 70px);
  width: calc(100% - 140px);
  height: 1px;
  background: var(--gray);
}

/* --- More than just a course (pillar tiles) --- */
.mb-course { background: #f3f0ed; padding: 100px 0; }
.mb-course-head { text-align: center; max-width: 1000px; margin: 0 auto; }
.mb-course-head h2 { font-weight: 300; margin-bottom: 26px; }
.mb-course-head .lead { font-weight: 400; max-width: 860px; margin: 0 auto 40px; }
.mb-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3.6vw, 48px);
  align-items: start;
  margin-top: 80px;
}
.mb-tile { position: relative; }
.mb-tile:nth-child(even) { margin-top: 80px; }
.mb-tile img {
  width: 100%;
  aspect-ratio: 292 / 517;
  object-fit: cover;
}
.mb-tile span {
  position: absolute;
  top: 0; bottom: 0;
  left: -.42em;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: .01em;
  pointer-events: none;
}
.mb-tile:nth-child(1) span { font-size: clamp(30px, 4.8vw, 69px); }
.mb-tile:nth-child(2) span { font-size: clamp(42px, 6.9vw, 99px); }
.mb-tile:nth-child(3) span { font-size: clamp(40px, 6.3vw, 91px); }
.mb-tile:nth-child(4) span { font-size: clamp(30px, 4.8vw, 69px); }

/* --- What's included (horizontal accordion) --- */
.mb-included { background: #ede8e2; padding: 100px 0 120px; }
.mb-included h2 { text-align: center; font-weight: 300; max-width: 1000px; margin: 0 auto 90px; }
.mb-acc { display: flex; gap: 22px; align-items: stretch; }
.mb-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 0 0 108px;
  cursor: pointer;
  transition: flex-grow .5s ease, flex-basis .5s ease;
}
.mb-panel.open { flex: 1 1 auto; cursor: default; }
.mb-panel-img { height: clamp(260px, 30vw, 432px); overflow: hidden; }
.mb-panel-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.mb-panel-body {
  background: var(--white);
  flex: 1;
  position: relative;
  padding: 36px;
  display: flex;
}
.mb-panel-full { width: 100%; }
.mb-panel:not(.open) .mb-panel-body { padding: 36px 0; justify-content: center; }
.mb-panel-vert {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--rose);
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: .04em;
  line-height: 1.1;
  white-space: nowrap;
}
.mb-panel.open .mb-panel-vert { display: none; }
.mb-panel:not(.open) .mb-panel-full { display: none; }
.mb-panel-full h3 {
  color: var(--rose);
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 40px);
  letter-spacing: .04em;
  margin-bottom: 18px;
}
.mb-panel-full p { font-weight: 400; font-size: 16.5px; letter-spacing: .05em; line-height: 1.45; margin-bottom: 24px; }
.mb-row { border-bottom: 1px solid #d9d9d9; }
.mb-row:first-of-type { border-top: 1px solid #d9d9d9; }
.mb-row summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 2px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 24px);
  letter-spacing: .04em;
  cursor: pointer;
}
.mb-row summary::-webkit-details-marker { display: none; }
.mb-row-plus { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.mb-row-plus::before, .mb-row-plus::after {
  content: "";
  position: absolute;
  background: #5f6368;
  transition: transform .25s ease;
}
.mb-row-plus::before { left: 0; right: 0; top: 7px; height: 2px; }
.mb-row-plus::after { top: 0; bottom: 0; left: 7px; width: 2px; }
.mb-row[open] .mb-row-plus::after { transform: scaleY(0); }
.mb-row > p { padding: 0 2px 18px; margin-bottom: 0 !important; }
.mb-apply { margin-top: 30px; padding: 16px 40px; font-size: 16px; }

/* --- This is (not) for you --- */
.mb-fit { background: #f3f0ed; padding: 130px 0; }
.mb-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1248px;
}
.fit-head {
  border: 1px solid var(--ink);
  padding: 24px 20px;
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.2;
}
.fit-head em { font-style: normal; color: var(--coral); }
.fit-row {
  border: 1px solid var(--ink);
  margin-top: -1px;
  padding: 22px 24px;
  display: flex;
  gap: 22px;
  align-items: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .04em;
  line-height: 1.4;
}
.fit-row svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--ink); }

/* --- Meet Erin --- */
.mb-meet { background: #ede8e2; padding: 120px 0; overflow: hidden; }
.mb-meet-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: center;
}
.mb-meet h2 { font-weight: 300; font-size: clamp(34px, 3.9vw, 56px); margin-bottom: 34px; }
.mb-meet p {
  font-weight: 300;
  font-size: clamp(17px, 1.65vw, 24px);
  letter-spacing: .04em;
  line-height: 1.45;
  margin-bottom: 22px;
  max-width: 660px;
}
.mb-meet-photo { position: relative; max-width: 495px; justify-self: end; }
.mb-meet-photo::before {
  content: "";
  position: absolute;
  top: 51px; left: -51px;
  width: 100%; height: 100%;
  background: var(--cream);
}
.mb-meet-photo img { position: relative; border: 12px solid var(--white); }

/* --- FAQs --- */
.mb-faq { background: #f3f0ed; padding: 100px 0 140px; }
.mb-faq h2 { text-align: center; font-weight: 300; margin-bottom: 50px; }
.mb-faq-list {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item { background: var(--white); border: 1px solid rgba(33,33,33,.4); }
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(17px, 1.65vw, 24px);
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 19px; height: 19px; flex-shrink: 0; }
.faq-plus::before, .faq-plus::after {
  content: "";
  position: absolute;
  background: var(--rose);
  transition: transform .25s ease;
}
.faq-plus::before { left: 0; right: 0; top: 8.5px; height: 2px; }
.faq-plus::after { top: 0; bottom: 0; left: 8.5px; width: 2px; }
.faq-item[open] .faq-plus::after { transform: scaleY(0); }
.faq-item p { padding: 0 24px 22px; font-weight: 300; font-size: 17px; line-height: 1.5; }

/* --- MetaBusiness responsive --- */
@media (max-width: 900px) {
  .mb-hero { padding-top: 88px; }
  .mb-hero-grid { grid-template-columns: 1fr 1fr; row-gap: 0; }
  .mb-hero-copy { grid-column: 1 / -1; grid-row: 1; padding: 28px 0 40px; }
  .mb-hero-copy p { max-width: 480px; }
  .mb-hero-main { grid-column: 1 / 2; grid-row: 2; }
  .mb-hero-main img { margin-top: 0; margin-bottom: 0; height: 100%; }
  .mb-hero-side { grid-column: 2 / 3; grid-row: 2; }
  .mb-hero-side img { height: 100%; aspect-ratio: auto; }
  .mb-hero .container { padding-bottom: 40px; }
  .mb-video { min-height: 0; }
  .mb-video-photo { position: relative; width: 100%; height: auto; display: block; }
  .mb-video-copy { position: static; transform: none; display: block; padding: 26px 24px 60px; }
  .mb-steps { grid-template-columns: 1fr; gap: 48px; }
  .mb-step:not(:last-child)::after { display: none; }
  .mb-acc { flex-direction: column; }
  .mb-panel, .mb-panel.open { flex: 1 1 auto; cursor: default; }
  .mb-panel-img { height: clamp(200px, 40vw, 320px); }
  .mb-panel:not(.open) .mb-panel-body { padding: 32px; justify-content: flex-start; }
  .mb-panel-vert,
  .mb-panel:not(.open) .mb-panel-vert { display: none; }
  .mb-panel:not(.open) .mb-panel-full { display: block; }
  .mb-fit-grid { grid-template-columns: 1fr; }
  .mb-meet-grid { grid-template-columns: 1fr; }
  .mb-meet-photo { justify-self: start; margin-left: 51px; }
}

@media (max-width: 640px) {
  .mb-tiles { grid-template-columns: 1fr 1fr; gap: 18px; }
  .mb-tile:nth-child(even) { margin-top: 40px; }
  .mb-tile:nth-child(1) span { font-size: clamp(26px, 8vw, 40px); }
  .mb-tile:nth-child(2) span { font-size: clamp(32px, 11vw, 56px); }
  .mb-tile:nth-child(3) span { font-size: clamp(30px, 10vw, 52px); }
  .mb-tile:nth-child(4) span { font-size: clamp(26px, 8vw, 40px); }
  .mb-membership, .mb-process, .mb-course, .mb-included, .mb-fit, .mb-meet, .mb-faq { padding-top: 64px; padding-bottom: 64px; }
  .mb-process h2, .mb-included h2 { margin-bottom: 56px; }
  .mb-video-title { font-size: clamp(34px, 9.5vw, 48px); }
  .mb-video-sub { font-size: clamp(20px, 5.5vw, 28px); }
}

/* ============================================================
   Masterclass pages
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Landing hero — designer export with headline + button baked into the art.
   Header needs dark icons on the cream background. */
body:has(.mc-hero) .site-header .nav-toggle span { background: var(--ink); }
body:has(.mc-hero) .site-header .brand { color: var(--ink); }
body:has(.mc-hero) .site-header .header-actions svg { stroke: var(--ink); }

.mc-hero { position: relative; background: #ede8e2; }
.mc-hero > img { width: 100%; }
.mc-hero-hotspot {
  position: absolute;
  left: 41%; top: 67.5%;
  width: 18%; height: 8%;
}
.mc-hero-hotspot:focus-visible { outline: 2px solid var(--rose); }
.mc-hero-caption { padding: 44px 24px 8px; text-align: center; }
.mc-hero-caption .eyebrow { margin-bottom: 14px; }
.mc-hero-caption h1 { font-size: clamp(30px, 7.6vw, 40px); margin-bottom: 26px; }
@media (min-width: 641px) {
  .mc-hero-caption {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

/* Free badge (coral circle) */
.mc-free-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 91px; height: 91px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Featured free masterclass */
.mc-feature { padding: 110px 0 100px; }
.mc-feature h2 { margin-bottom: 30px; }
.mc-feature-sub {
  text-align: center;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: .04em;
  margin-bottom: 70px;
}
.mc-feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 4.5vw, 70px);
  align-items: center;
}
.mc-feature-art { position: relative; }
.mc-feature-art .mc-free-badge { left: 34%; top: 3%; }
.mc-feature-copy h3 {
  color: var(--rose);
  font-weight: 300;
  font-size: clamp(30px, 3.3vw, 48px);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 26px;
}
.mc-feature-copy p {
  font-weight: 400;
  font-size: clamp(17px, 1.55vw, 22px);
  letter-spacing: .02em;
  line-height: 1.46;
  margin-bottom: 22px;
  max-width: 600px;
}
.mc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 44px;
  margin: 30px 0 36px;
}
.mc-meta li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(17px, 1.5vw, 22px);
  letter-spacing: .04em;
}
.mc-meta svg { width: 24px; height: 24px; color: #5f6368; flex-shrink: 0; }
.mc-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.mc-link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--rose);
}
.mc-link:hover { color: var(--rose-dark); }

/* Other masterclasses */
.mc-others { background: var(--cream); padding: 110px 0; }
.mc-others h2 { margin-bottom: 90px; }
.mc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1310px;
  margin: 0 auto;
}
.mc-card { background: var(--white); display: flex; flex-direction: column; }
.mc-card-img { position: relative; }
.mc-card-img .mc-free-badge { top: -46px; right: -10px; }
.mc-card-img img { width: 100%; }
.mc-card-body { padding: 36px; display: flex; flex-direction: column; flex: 1; }
.mc-card-body h3 {
  color: var(--rose);
  font-weight: 400;
  font-size: clamp(26px, 2.1vw, 30px);
  line-height: 1.1;
  margin-bottom: 26px;
}
.mc-card-body p { font-weight: 400; font-size: 16px; letter-spacing: .05em; line-height: 1.45; margin-bottom: 26px; }
.mc-price { font-family: var(--font-sans); margin-top: auto; }
.mc-price s { opacity: .55; margin-left: 8px; }
.mc-card .mc-actions { margin-top: 6px; gap: 18px; }
.mc-card .btn { padding: 23px 26px; font-size: 16px; }

/* What you'll learn */
.mc-learn { padding: 120px 0 0; overflow: hidden; }
.mc-learn h2 { margin-bottom: 44px; }
.mc-learn-lead {
  text-align: center;
  max-width: 930px;
  margin: 0 auto 24px;
}
.mc-learn-photo { position: absolute; }
.mc-learn-photo--left { left: 0; top: 0; width: 186px; }
.mc-learn-photo--right { right: -19px; bottom: 0; width: 249px; }
.mc-learn-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1029px;
  margin: 64px auto 0;
}
.mc-learn-box { border: 1px solid var(--blush); padding: 24px; min-height: 153px; }
.mc-learn-box--plain { border-color: transparent; }
.mc-learn-box h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: .04em;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.mc-learn-box p { font-weight: 400; font-size: 16px; letter-spacing: .04em; line-height: 1.45; text-transform: capitalize; }
.mc-learn .container { position: relative; padding-bottom: 150px; }
@media (max-width: 1280px) {
  .mc-learn-photo { display: none; }
  .mc-learn .container { padding-bottom: 110px; }
}

/* Meet Erin */
.mc-meet { padding: 110px 0; }
.mc-meet .container {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
}
.mc-meet h2 { font-weight: 300; font-size: clamp(38px, 5.3vw, 76px); margin-bottom: 30px; }
.mc-meet .lead { white-space: pre-line; }

/* Slim banner strip */
.banner--slim { padding: 38px 24px; }
.banner--slim .container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px 48px;
  flex-wrap: wrap;
}
.banner--slim h2 { font-weight: 300; font-size: clamp(24px, 2.8vw, 40px); text-align: left; }
.banner--slim .btn { flex-shrink: 0; }

/* Detail hero */
.mc-detail-hero {
  position: relative;
  background: #b77c79;
  overflow: hidden;
  aspect-ratio: 1440 / 945;
  max-height: 945px;
  min-height: 340px;
}
.mc-detail-hero img {
  position: absolute;
  left: 50%; top: -3.5%;
  transform: translateX(-52%);
  width: min(81%, 1161px);
  height: auto;
}
.mc-detail-register {
  position: absolute;
  left: 50%; top: 66%;
  transform: translateX(-50%);
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
  white-space: nowrap;
}
.mc-detail-register:hover { background: transparent; color: var(--white); }

/* Register form */
.mc-register { padding: 100px 0 110px; }
.mc-register h2 { max-width: 920px; margin: 0 auto 56px; }
.mc-register--tint { background: #ede8e2; }
.mc-register-panel { background: #f8f7f5; padding: 30px 50px 34px; max-width: 1185px; margin: 0 auto; }
.mc-register--tint .mc-register-panel { background: transparent; padding-left: 0; padding-right: 0; }
.mc-register-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  align-items: end;
}
.mc-field label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.mc-field input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--ink-soft);
  background: var(--white);
  padding: 0 14px;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink);
}
.mc-field input:focus { outline: 2px solid var(--rose); outline-offset: -1px; }
.mc-register-btn { white-space: nowrap; }
.mc-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  cursor: pointer;
}
.mc-consent input { width: 14px; height: 14px; margin-top: 2px; accent-color: var(--rose); }

/* Overview */
.mc-overview { background: var(--cream); padding: 100px 0 110px; }
.mc-overview h2 { margin-bottom: 44px; }
.mc-overview p {
  font-weight: 400;
  font-size: clamp(17px, 1.55vw, 24px);
  letter-spacing: .02em;
  line-height: 1.46;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 24px;
}
.mc-overview-media { width: 100%; max-width: 1200px; margin: 40px auto 0; }

/* Checklist */
.mc-checklist { padding: 120px 0 110px; }
.mc-checklist h2 { max-width: 920px; margin: 0 auto 70px; }
.mc-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(40px, 8vw, 116px);
  max-width: 1312px;
  margin: 0 auto 64px;
}
.mc-checks li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-weight: 300;
  font-size: clamp(17px, 1.55vw, 24px);
  letter-spacing: .04em;
  line-height: 1.42;
  margin-bottom: 40px;
}
.mc-checks li:last-child { margin-bottom: 0; }
.mc-checks svg { width: 34px; height: 34px; color: var(--rose); flex-shrink: 0; }
.mc-checks strong { font-weight: 600; }

@media (max-width: 1024px) {
  .mc-cards { grid-template-columns: 1fr; max-width: 480px; }
  .mc-card-img .mc-free-badge { right: 12px; }
  .mc-checks { grid-template-columns: 1fr; }
  .mc-checks li:last-child { margin-bottom: 40px; }
  .mc-register-form { grid-template-columns: 1fr; align-items: stretch; }
  .mc-register-btn { justify-self: start; }
}

@media (max-width: 900px) {
  .mc-feature-grid { grid-template-columns: 1fr; }
  .mc-feature-art { max-width: 520px; margin: 0 auto; }
  .mc-meet .container { grid-template-columns: 1fr; }
  .mc-meet .intro-photo { order: -1; max-width: 430px; }
  .mc-meet .intro-photo::before { top: 30px; left: -30px; }
}

@media (max-width: 640px) {
  .mc-feature, .mc-others, .mc-learn, .mc-meet, .mc-register, .mc-overview, .mc-checklist { padding-top: 64px; padding-bottom: 64px; }
  .mc-learn { padding-bottom: 0; }
  .mc-learn .container { padding-bottom: 64px; }
  .mc-feature-sub { margin-bottom: 44px; }
  .mc-others h2 { margin-bottom: 56px; }
  .mc-free-badge { width: 70px; height: 70px; font-size: 14px; }
  .mc-card-img .mc-free-badge { top: -35px; }
  .mc-learn-boxes { grid-template-columns: 1fr; }
  .mc-learn-box { min-height: 0; }
  .mc-learn-box--plain { border-color: var(--blush); }
  .mc-card .mc-actions .btn { width: auto; }
  .mc-detail-hero .mc-detail-register { width: auto; padding: 12px 22px; font-size: 13px; }
  .banner--slim .container { justify-content: center; }
  .banner--slim h2 { text-align: center; }
}

/* ============================================================
   Sol Full page
   ============================================================ */
/* --- Hero --- */
.sf-hero::before { background: linear-gradient(rgba(0,0,0,.22), rgba(0,0,0,.08)); }
.sf-hero h1 { max-width: 960px; margin-bottom: 30px; }
.sf-hero .lead { max-width: 620px; margin-bottom: 48px; }
.sf-hero .btn--white { background: rgba(186,160,137,.46); }
.sf-hero .btn--white:hover { background: var(--white); }

/* --- As Seen In press bar --- */
.sf-press { padding: 26px 0; }
.sf-press-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px clamp(28px, 4.5vw, 64px);
}
.sf-press-label { font-size: clamp(28px, 3.3vw, 47px); letter-spacing: .04em; white-space: nowrap; }
.sf-press-row img.sf-logo { width: auto; height: 30px; margin: 0; }
.sf-press-row img.sf-logo--tall { height: 44px; }

/* --- Sol-First Approach --- */
.sf-approach {
  padding: 100px 0 90px;
  background: url("../images/solfull-mandala.webp") center top / cover no-repeat;
}
.sf-approach h2 { max-width: 820px; margin: 0 auto 70px; }
.sf-approach-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(36px, 5vw, 90px);
  align-items: center;
}
.sf-approach-text p {
  font-weight: 300;
  font-size: clamp(17px, 1.65vw, 24px);
  letter-spacing: .04em;
  line-height: 1.45;
  color: #444444;
  margin-bottom: 30px;
}
.sf-approach-text p:last-child { margin-bottom: 0; }
.sf-approach-text strong { font-weight: 600; }
.sf-approach-img { width: 100%; max-width: 487px; justify-self: end; }

/* --- Your Life After --- */
.sf-life { padding: 90px 0 0; }
.sf-life h2 { max-width: 780px; margin: 0 auto 18px; }
.sf-kicker {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .06em;
  margin-bottom: 64px;
}
.sf-life-grid {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: 47% 1fr;
  max-width: 1440px;
  margin: 0 auto;
}
.sf-life-grid::before {
  content: "";
  position: absolute;
  top: -105px; right: 0;
  width: 334px; height: 411px;
  background: #ede8e2;
  z-index: -1;
}
.sf-life-panel { position: relative; background: #faf7f0; padding: clamp(40px, 5vw, 84px) clamp(28px, 8vw, 150px) clamp(40px, 5vw, 70px) clamp(28px, 5vw, 80px); }
.sf-life-photo img { width: 100%; height: 100%; object-fit: cover; }
.sf-life-flower { position: absolute; top: 30px; right: 26px; width: clamp(64px, 8vw, 128px); }
.sf-benefit { max-width: 575px; margin-bottom: 44px; }
.sf-benefit h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 8px;
}
.sf-benefit p {
  font-weight: 300;
  font-size: clamp(17px, 1.6vw, 23px);
  letter-spacing: .04em;
  line-height: 1.42;
  color: #444444;
}

/* --- What People Are Saying --- */
.sf-saying { padding: 100px 0 90px; }
.sf-saying h2 { margin-bottom: 12px; }
.sf-saying-eyebrow {
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .06em;
  margin-bottom: 90px;
}
.sf-saying .testimonials-kicker { position: relative; z-index: 0; margin-bottom: 36px; }
.sf-saying .testimonials-kicker::before {
  content: "\201C";
  position: absolute;
  left: 50%; top: -36px;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 230px;
  line-height: 1;
  color: #ede8e2;
  z-index: -1;
  pointer-events: none;
}
.sf-quote { margin-bottom: 56px; }
.sf-readmore {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.sf-readmore:hover { color: var(--rose); }
.sf-saying-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 940px;
  margin: 0 auto;
}
.sf-dots { display: flex; gap: 13px; }
.sf-dots span { width: 14px; height: 14px; border-radius: 50%; background: #d9d9d9; }
.sf-dots span:first-child { background: var(--rose); }

/* --- 10 Years Ago banner + story --- */
.sf-tenyears-wrap { background: linear-gradient(var(--white) 55%, var(--cream) 55%); }
.sf-tenyears { padding: 80px 24px; background-position: center 38%; }
.sf-tenyears::before { background: rgba(0,0,0,.60); }
.sf-tenyears h2 { font-weight: 300; margin-bottom: 26px; }
.sf-tenyears p {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.3;
  max-width: 560px;
  margin: 0 auto;
}
.sf-story {
  background: var(--cream) url("../images/solfull-mandala.webp") center / cover no-repeat;
  padding: 90px 0 70px;
}
.sf-story-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(36px, 9vw, 130px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto 80px;
}
.sf-story-row--flip { grid-template-columns: 1fr 320px; align-items: center; margin-bottom: 0; }
.sf-story-img { position: relative; z-index: 0; margin: 0; }
.sf-story-img::before {
  content: "";
  position: absolute;
  top: 10px; left: 10px;
  width: 100%; height: 100%;
  background: #ede8e2;
  z-index: -1;
}
.sf-story-img img { width: 100%; aspect-ratio: 316 / 408; object-fit: cover; }
.sf-story-h {
  color: var(--rose);
  font-size: clamp(28px, 2.7vw, 39px);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sf-story p, .sf-triumph p {
  font-weight: 300;
  font-size: clamp(17px, 1.65vw, 24px);
  letter-spacing: .04em;
  line-height: 1.45;
  color: #444444;
  margin-bottom: 22px;
}
.sf-story strong { font-weight: 600; color: var(--ink); }
.sf-triumph { position: relative; padding: 110px 0 90px; }
.sf-triumph-text { max-width: 940px; text-align: center; }
.sf-triumph-text .sf-story-h { margin-bottom: 28px; }
.sf-triumph-side { position: absolute; width: clamp(150px, 17.5vw, 251px); z-index: 2; }
.sf-triumph-side--l { left: 0; top: -150px; }
.sf-triumph-side--r { right: 0; bottom: -75px; }

/* --- Your Turn --- */
.sf-turn { background: #ede8e2; padding: 70px 0 90px; overflow: hidden; }
.sf-turn-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.sf-turn-h {
  color: var(--rose);
  font-size: clamp(38px, 3.9vw, 56px);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sf-turn-intro {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .06em;
  margin-bottom: 38px;
}
.sf-checklist { margin-bottom: 38px; }
.sf-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-weight: 300;
  font-size: clamp(17px, 1.65vw, 24px);
  letter-spacing: .04em;
  line-height: 1.42;
  margin-bottom: 28px;
}
.sf-checklist svg { width: 30px; height: 30px; flex-shrink: 0; fill: var(--rose); margin-top: 2px; }
.sf-turn-grid p {
  font-weight: 300;
  font-size: clamp(17px, 1.65vw, 24px);
  letter-spacing: .04em;
  line-height: 1.42;
  margin-bottom: 26px;
  max-width: 600px;
}
.sf-turn-grid strong { font-weight: 600; }
.sf-turn-img { width: 110%; max-width: none; }

/* --- Say YES CTA banner --- */
.sf-cta { padding: 48px 24px; }
.sf-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 64px;
}
.sf-cta h2 { font-weight: 300; font-size: clamp(28px, 2.8vw, 40px); letter-spacing: .04em; }

/* --- Curriculum --- */
.sf-curriculum { padding: 100px 0 70px; }
.sf-curriculum h2 { margin-bottom: 70px; }
.sf-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sf-module { display: flex; flex-direction: column; }
.sf-module > img { width: 100%; aspect-ratio: 421 / 369; object-fit: cover; }
.sf-module-body {
  background: var(--cream);
  padding: 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sf-module-num {
  color: var(--rose);
  font-size: 24px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sf-module h3 {
  color: var(--rose);
  font-weight: 400;
  font-size: 27px;
  line-height: 1.18;
  letter-spacing: .04em;
  margin-bottom: 22px;
}
.sf-module-body > p {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .06em;
  line-height: 1.45;
  margin-bottom: 26px;
}
.sf-module .sf-readmore { margin-top: auto; }

/* --- Bonuses --- */
.sf-bonuses { padding: 20px 0 100px; }
.sf-bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px clamp(24px, 3vw, 70px);
}
.sf-bonus-media {
  background: #f2eee6;
  aspect-ratio: 635 / 369;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  margin-bottom: 38px;
}
.sf-bonus-media img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.sf-bonus-tag {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.sf-bonus h3 {
  color: var(--rose);
  font-weight: 400;
  font-size: clamp(24px, 2.1vw, 30px);
  line-height: 1.15;
  letter-spacing: .04em;
  max-width: 570px;
  margin-bottom: 22px;
}
.sf-bonus p {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .06em;
  line-height: 1.45;
  max-width: 550px;
  margin-bottom: 16px;
}

/* --- Sign Up --- */
.sf-signup { background: #faf7f0; padding: 80px 0 90px; }
.sf-signup-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.sf-signup h2 {
  text-align: center;
  font-weight: 400;
  font-size: clamp(34px, 3.4vw, 48px);
  letter-spacing: .02em;
  margin-bottom: 14px;
}
.sf-signup-sub {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto 42px;
}
.sf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sf-field { margin-bottom: 24px; }
.sf-field label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 8px;
}
.sf-field input {
  width: 100%;
  height: 48px;
  background: #f3f0ed;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 0 12px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
}
.sf-field input::placeholder { color: #9a9a9a; }
.sf-field input:focus { outline: 2px solid var(--rose); outline-offset: -1px; }
.sf-plans {
  display: grid;
  grid-template-columns: 1fr 1.28fr;
  gap: 23px;
  margin: 8px 0 38px;
}
.sf-plan {
  position: relative;
  display: block;
  border: 1px solid var(--rose);
  color: var(--rose);
  padding: 15px 24px 17px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.75;
  transition: background .2s ease, color .2s ease;
}
.sf-plan input { position: absolute; opacity: 0; pointer-events: none; }
.sf-plan strong { display: block; font-weight: 600; }
.sf-plan:has(input:checked) { background: var(--rose); color: var(--white); }
.sf-plan:hover { background: rgba(175,109,106,.12); }
.sf-plan:has(input:checked):hover { background: var(--rose-dark); }
.sf-register { width: 100%; }
.sf-signup-photo { margin-top: -50px; }
.sf-signup-photo img { width: 100%; }

/* --- FAQ accordion --- */
.sf-faq { padding: 90px 0 120px; }
.sf-faq-h { font-weight: 300; font-size: clamp(38px, 3.9vw, 56px); letter-spacing: .02em; margin-bottom: 50px; }
.sf-faq-list { max-width: 768px; margin: 0 auto; }
.sf-faq-item { border: 1px solid var(--ink); margin-bottom: 16px; background: var(--white); }
.sf-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 19px 24px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(17px, 1.6vw, 24px);
  line-height: 1.5;
}
.sf-faq-item summary::-webkit-details-marker { display: none; }
.sf-faq-item summary::after {
  content: "+";
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.sf-faq-item[open] summary::after { transform: rotate(45deg); }
.sf-faq-a { padding: 2px 24px 24px; }
.sf-faq-a p {
  font-weight: 300;
  font-size: 17px;
  letter-spacing: .02em;
  line-height: 1.6;
  margin-bottom: 14px;
}
.sf-faq-a p:last-child { margin-bottom: 0; }
.sf-faq-a a { color: var(--rose); text-decoration: underline; }

/* --- Sol Full responsive --- */
@media (max-width: 1024px) {
  .sf-approach-grid { grid-template-columns: 1fr; }
  .sf-approach-img { justify-self: center; max-width: 420px; }
  .sf-life-grid { grid-template-columns: 1fr; }
  .sf-life-grid::before { display: none; }
  .sf-life-photo { max-height: 560px; overflow: hidden; }
  .sf-story-row, .sf-story-row--flip { grid-template-columns: 1fr; gap: 40px; max-width: 560px; }
  .sf-story-img { max-width: 320px; }
  .sf-story-row--flip .sf-story-img { order: -1; }
  .sf-story-row--flip { margin-top: 70px; }
  .sf-triumph-side { display: none; }
  .sf-turn-grid { grid-template-columns: 1fr; }
  .sf-turn-img { width: 100%; }
  .sf-modules { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .sf-bonus-grid { grid-template-columns: 1fr; max-width: 635px; }
  .sf-signup-grid { grid-template-columns: 1fr; }
  .sf-signup-photo { margin-top: 0; max-width: 560px; }
}

@media (max-width: 640px) {
  .sf-press-label { width: 100%; text-align: center; }
  .sf-press-row img.sf-logo { height: 22px; }
  .sf-press-row img.sf-logo--tall { height: 34px; }
  .sf-approach, .sf-saying, .sf-curriculum, .sf-faq { padding-top: 64px; }
  .sf-life { padding-top: 64px; }
  .sf-saying .testimonials-kicker::before { font-size: 150px; top: -24px; }
  .sf-saying-foot { flex-direction: column; align-items: flex-start; }
  .sf-dots { align-self: center; }
  .sf-tenyears { padding: 56px 18px; }
  .sf-form-row { grid-template-columns: 1fr; gap: 0; }
  .sf-plans { grid-template-columns: 1fr; gap: 16px; }
  .sf-module-body { padding: 28px 24px; }
  .sf-bonus-media { padding: 18px; }
  .sf-faq-item summary { padding: 16px 18px; gap: 14px; }
  .sf-faq-a { padding: 0 18px 18px; }
}

/* ============================================================
   Mastermind page
   ============================================================ */
.mm-kicker {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(17px, 1.7vw, 24px);
  letter-spacing: .05em;
  margin-bottom: 26px;
}

.mm-num {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1;
  letter-spacing: .04em;
  color: var(--rose);
  opacity: .16;
  user-select: none;
}

.mm-deco { position: absolute; opacity: .85; pointer-events: none; }

/* --- Hero --- */
.mm-hero h1 { max-width: 950px; }
.mm-hero .lead { position: relative; max-width: 620px; margin-bottom: 48px; }
.mm-btn-join {
  background: rgba(186, 160, 137, .46);
  border-color: var(--white);
  color: var(--white);
  backdrop-filter: blur(2px);
}
.mm-btn-join:hover { background: var(--white); border-color: var(--white); color: var(--ink); }

/* --- A Call for Women --- */
.mm-call { padding: 110px 0 90px; text-align: center; }
.mm-call h2 { margin-bottom: 36px; }
.mm-call-body { max-width: 980px; margin: 0 auto 54px; color: #444; }
.mm-nomore { max-width: 760px; margin: 0 auto; color: #444; }
.mm-nomore li {
  font-weight: 300;
  font-size: clamp(17px, 1.7vw, 24px);
  letter-spacing: .05em;
  padding: 8px 0;
}

/* --- Your Sacred Space --- */
.mm-sacred { padding: 0 0 90px; }
.mm-sacred-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: stretch;
  position: relative;
}
.mm-sacred-copy { position: relative; padding: 60px 0 0; }
.mm-sacred-copy::before {
  content: "";
  position: absolute;
  top: 0; left: -25vw;
  width: calc(25vw + 320px); height: 493px;
  background: #ede8e2;
  z-index: -1;
}
.mm-sacred-copy h2 { max-width: 640px; margin-bottom: 30px; }
.mm-sacred-copy .lead { margin-bottom: 26px; max-width: 744px; color: #444; }
.mm-sacred-copy .btn { margin-top: 16px; }
.mm-sacred-photo img { width: 100%; height: 100%; object-fit: cover; }

/* --- What we believe in --- */
.mm-beliefs { padding: 96px 0 110px; }
.mm-beliefs h2 { margin-bottom: 24px; }
.mm-beliefs .mm-kicker { margin-bottom: 80px; }
.mm-beliefs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 56px);
}
.mm-belief { position: relative; padding-top: 70px; }
.mm-belief .mm-num {
  position: absolute;
  top: -28px; left: 44px;
  font-size: clamp(110px, 11vw, 190px);
  z-index: 0;
}
.mm-belief h3 {
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: clamp(24px, 2vw, 30px);
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.35;
  margin-bottom: 22px;
}
.mm-belief p { font-weight: 300; font-size: 17px; letter-spacing: .05em; line-height: 1.45; max-width: 250px; }

/* --- Guided by / Meet Erin --- */
.mm-erin { background: #f7f5f1; padding: 70px 0; margin-top: 40px; }
.mm-erin .mm-deco--erin { left: -77px; top: 24px; width: 154px; }
.mm-erin-grid {
  display: grid;
  grid-template-columns: 495px 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.mm-erin-photo { margin-top: -110px; }
.mm-erin-photo img { width: 100%; }
.mm-erin h2 { max-width: 600px; margin-bottom: 30px; }
.mm-erin .lead { max-width: 620px; }

/* --- Why This Mastermind --- */
.mm-why { padding: 110px 0 0; text-align: center; }
.mm-why h2 { margin-bottom: 16px; }
.mm-why .mm-kicker { margin-bottom: 60px; }
.mm-why-band {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 70px 24px 90px;
}
.mm-why-copy { max-width: 720px; margin: 0 auto; }
.mm-why-copy .lead { margin-bottom: 30px; }
.mm-why-copy .mm-kicker { margin-bottom: 30px; }
.mm-why-copy strong { font-weight: 600; }
.mm-why-img { position: absolute; width: clamp(170px, 17vw, 251px); }
.mm-why-img--left { left: 44px; top: -108px; }
.mm-why-img--right { right: 0; bottom: -110px; }

/* --- My Client Stories --- */
.mm-stories { padding: 170px 0 90px; }
.mm-stories-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 15px;
  max-width: 1190px;
}
.mm-stories-card { background: #ede8e2; padding: 44px; }
.mm-stories-intro { display: flex; flex-direction: column; justify-content: center; }
.mm-stories-intro h3 {
  color: var(--rose);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: .04em;
  margin-bottom: 28px;
}
.mm-stories-intro p { font-weight: 300; font-size: 17px; letter-spacing: .05em; line-height: 1.45; }
.mm-stories-quote { padding: 44px 60px 50px; }
.mm-quote-mark {
  display: block;
  font-family: var(--font-serif);
  font-size: 110px;
  line-height: .6;
  color: var(--rose);
  margin-bottom: 18px;
}
.mm-stories-quote blockquote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: .04em;
  line-height: 1.4;
  margin-bottom: 20px;
}
.mm-readmore { font-family: var(--font-sans); font-weight: 600; font-size: 18px; }
.mm-person { display: flex; gap: 20px; align-items: center; margin-top: 28px; }
.mm-person img { width: 74px; height: 74px; border-radius: 50%; object-fit: cover; }
.mm-person strong { display: block; font-weight: 500; font-size: 21px; letter-spacing: .04em; }
.mm-person span { color: var(--gray); font-size: 16px; font-weight: 400; }

/* --- Step into your transformation --- */
.mm-transform { padding: 90px 0; }
.mm-transform h2 { margin-bottom: 70px; }
.mm-compare { max-width: 1010px; margin: 0 auto; }
.mm-compare-head,
.mm-compare-row {
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  gap: 0 24px;
  align-items: start;
}
.mm-compare-head h3 {
  color: var(--rose);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: .04em;
  text-align: center;
  margin-bottom: 36px;
}
.mm-compare-row p {
  font-weight: 300;
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: .05em;
  line-height: 1.45;
  padding: 0 0 34px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 34px;
  min-height: 136px;
}
.mm-compare-row strong { font-weight: 600; }
.mm-compare-row--last p:last-child { border-bottom-color: var(--rose); }
.mm-arrow { display: flex; justify-content: center; align-items: center; color: var(--rose); padding-top: 14px; }
.mm-arrow svg { width: 44px; height: 18px; }

/* --- What You'll Get --- */
.mm-get { padding-bottom: 90px; }
.mm-get-banner { padding: 210px 24px 380px; }
.mm-get-banner::before { background: rgba(0,0,0,.60); }
.mm-get-banner h2 { letter-spacing: .04em; margin-bottom: 14px; }
.mm-get-date { font-family: var(--font-sans); font-weight: 500; font-size: clamp(18px, 1.7vw, 24px); letter-spacing: .04em; }
.mm-get-card {
  position: relative;
  background: #f7f3ec;
  max-width: 965px;
  margin: -245px auto 0;
  padding: clamp(40px, 6vw, 110px) clamp(24px, 8vw, 148px);
}
.mm-get-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0 16px;
  align-items: center;
  padding: 26px 0;
}
.mm-get-item + .mm-get-item { border-top: 1px solid rgba(175,109,106,.55); position: relative; }
.mm-get-item + .mm-get-item::before,
.mm-get-item + .mm-get-item::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(175,109,106,.55);
}
.mm-get-item + .mm-get-item::before { left: 0; }
.mm-get-item + .mm-get-item::after { right: 0; }
.mm-get-item .mm-num { font-size: clamp(86px, 9vw, 150px); text-align: center; opacity: .2; }
.mm-get-item p { font-weight: 400; font-size: clamp(17px, 1.7vw, 24px); letter-spacing: .05em; line-height: 1.4; max-width: 500px; }

/* --- How It Works / check lists --- */
.mm-how { padding: 50px 0 90px; }
.mm-how h2 { margin-bottom: 70px; }
.mm-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px clamp(40px, 5vw, 90px);
  max-width: 1150px;
  margin: 0 auto;
}
.mm-check { display: flex; gap: 16px; align-items: flex-start; }
.mm-check svg { width: 26px; height: 20px; flex-shrink: 0; color: var(--blush); margin-top: 4px; }
.mm-check p { font-weight: 400; font-size: clamp(16px, 1.3vw, 18px); letter-spacing: .04em; line-height: 1.35; }
.mm-check strong { font-weight: 600; }

/* --- Take Ownership --- */
.mm-own { padding: 50px 0 110px; }
.mm-half-sun { width: 122px; height: 61px; overflow: hidden; margin: 0 auto 44px; }
.mm-half-sun img { width: 122px; }
.mm-own h2 { max-width: 1150px; margin: 0 auto 30px; }
.mm-own > .container > .mm-kicker { margin-bottom: 70px; }
.mm-own-list { text-align: center; max-width: 820px; margin: 0 auto 80px; }
.mm-own-list .lead { line-height: 1.6; }

/* --- What is a Mastermind --- */
.mm-what { padding: 60px 0 0; }
.mm-what-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
}
.mm-what-card {
  position: relative;
  background: #f7f5f1;
  padding: clamp(40px, 5vw, 70px) clamp(28px, 5vw, 80px);
  margin: 66px 0;
}
.mm-what-card::before {
  content: "";
  position: absolute;
  top: -60px; left: -64px;
  width: 334px; height: 411px;
  background: #ede8e2;
  z-index: -1;
}
.mm-what-card h2 { margin-bottom: 30px; max-width: 520px; }
.mm-what-card .lead { color: var(--ink-soft); margin-bottom: 44px; max-width: 644px; }
.mm-what-photo img { width: 100%; height: 100%; object-fit: cover; }

/* --- Have a question form --- */
.mm-form-section { padding: 110px 0; }
.mm-form-section .mm-deco--form { left: -34px; top: 140px; width: 140px; }
.mm-form-title { text-align: center; font-size: clamp(32px, 3.3vw, 48px); margin-bottom: 10px; }
.mm-form-section .mm-kicker { display: block; text-align: center; margin-bottom: 50px; }
.mm-form { max-width: 630px; margin: 0 auto; }
.mm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mm-form label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 24px;
}
.mm-form input,
.mm-form select {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  background: #f3f0ed;
  border: 1px solid #c9c2b9;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
}
.mm-form input::placeholder { color: #9a9a9a; }
.mm-form .btn { width: 100%; margin-top: 10px; }

/* --- What are the benefits --- */
.mm-benefits { background: #f7f5f1; padding: 90px 0; }
.mm-benefits-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
}
.mm-benefits h2 { margin-bottom: 60px; }
.mm-benefit { position: relative; padding-left: clamp(110px, 12vw, 180px); margin-bottom: 56px; }
.mm-benefit:last-child { margin-bottom: 0; }
.mm-benefit .mm-num { position: absolute; left: 0; top: -22px; font-size: clamp(96px, 10vw, 158px); opacity: .2; }
.mm-benefit .lead { font-size: clamp(16px, 1.4vw, 20px); }
.mm-benefit strong { font-weight: 600; }
.mm-benefits-photo img { width: 100%; }

/* --- Membership Bonus --- */
.mm-bonus { padding: 100px 0; }
.mm-bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
}
.mm-bonus-art { max-width: 516px; }
.mm-bonus h2 { margin-bottom: 28px; max-width: 480px; }
.mm-bonus .lead { max-width: 583px; margin-bottom: 44px; }

/* --- FAQs --- */
.mm-faq { padding: 30px 0 130px; }
.mm-faq-title { text-align: center; font-size: clamp(36px, 3.9vw, 56px); margin-bottom: 50px; }
.mm-faq details { max-width: 768px; margin: 0 auto 16px; border: 1px solid var(--ink); }
.mm-faq summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 20px 64px 20px 24px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
}
.mm-faq summary::-webkit-details-marker { display: none; }
.mm-faq summary::after {
  content: "+";
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}
.mm-faq details[open] summary::after { content: "\2212"; }
.mm-faq details p {
  padding: 0 24px 22px;
  font-weight: 300;
  font-size: 16.5px;
  letter-spacing: .03em;
  line-height: 1.55;
}

/* --- Mastermind responsive --- */
@media (max-width: 1024px) {
  .mm-beliefs-grid { grid-template-columns: repeat(2, 1fr); gap: 56px 40px; }
  .mm-belief p { max-width: none; }
  .mm-erin-grid { grid-template-columns: 1fr; }
  .mm-erin-photo { margin-top: 0; max-width: 420px; }
  .mm-erin { margin-top: 0; }
  .mm-stories-grid { grid-template-columns: 1fr; }
  .mm-benefits-grid { grid-template-columns: 1fr; }
  .mm-benefits-photo { max-width: 450px; }
  .mm-what-grid { grid-template-columns: 1fr; }
  .mm-what-card { margin: 0; }
  .mm-what-card::before { display: none; }
  .mm-why-img { display: none; }
  .mm-stories { padding-top: 90px; }
}

@media (max-width: 900px) {
  .mm-sacred-grid { grid-template-columns: 1fr; }
  .mm-sacred-photo { max-width: 480px; }
  .mm-sacred-copy::before { display: none; }
  .mm-sacred-copy { padding-top: 0; }
  .mm-bonus-grid { grid-template-columns: 1fr; }
  .mm-bonus-art { margin: 0 auto; }
  .mm-deco { display: none; }
}

@media (max-width: 760px) {
  .mm-compare-head { display: none; }
  .mm-compare-row { grid-template-columns: 1fr; }
  .mm-compare-row p { min-height: 0; }
  .mm-arrow { transform: rotate(90deg); padding: 0; margin: -10px auto 24px; }
  .mm-checks { grid-template-columns: 1fr; gap: 28px; }
  .mm-get-item { grid-template-columns: 84px 1fr; }
  .mm-beliefs-grid { grid-template-columns: 1fr; }
  .mm-belief { max-width: 420px; }
}

@media (max-width: 640px) {
  .mm-call, .mm-beliefs, .mm-transform, .mm-form-section, .mm-bonus { padding-top: 64px; padding-bottom: 64px; }
  .mm-own, .mm-how { padding-bottom: 64px; }
  .mm-stories { padding: 64px 0; }
  .mm-stories-card { padding: 28px; }
  .mm-stories-quote { padding: 32px 28px; }
  .mm-form-row { grid-template-columns: 1fr; gap: 0; }
  .mm-get-banner { padding: 110px 24px 280px; }
  .mm-faq summary { padding: 16px 52px 16px 18px; }
  .mm-faq details p { padding: 0 18px 18px; }
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-main { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact-photo { position: relative; margin-top: 30px; }
.contact-photo::before {
  content: "";
  position: absolute;
  top: -28px; left: -28px;
  width: 100%; height: 100%;
  background: var(--cream);
}
.contact-photo img { position: relative; width: 100%; }
.contact-form-col .script { display: block; color: var(--ink); margin-bottom: 14px; }
.contact-intro { font-weight: 300; font-size: 17px; letter-spacing: .04em; line-height: 1.55; margin-bottom: 36px; max-width: 480px; }
.contact-form label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: .03em;
  margin-bottom: 20px;
}
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #d9d3cb;
  background: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  color: var(--ink);
  border-radius: 0;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #b5b0a9; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: 1px solid var(--rose); border-color: var(--rose); }
.contact-form textarea { resize: vertical; }
.contact-form .btn { margin-top: 6px; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-photo { max-width: 420px; margin: 0 auto 20px; }
}

/* ============================================================
   Sol Full pricing (enrichment from WP copy)
   ============================================================ */
.sf-pricing { background: var(--cream-warm); padding: 100px 0; }
.sf-pricing-cohort {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rose);
  margin: 14px 0 40px;
}
.sf-price { margin-bottom: 44px; }
.sf-price-old {
  display: block;
  font-size: clamp(34px, 4vw, 54px);
  color: var(--gray);
  text-decoration: line-through;
}
.sf-price-label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 10px 0 2px;
}
.sf-price-now {
  display: block;
  font-size: clamp(64px, 8vw, 110px);
  color: var(--rose);
  line-height: 1.05;
}
.sf-plans {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.sf-plan {
  background: var(--white);
  border: 1px solid var(--taupe);
  padding: 30px 48px;
  min-width: 260px;
}
.sf-plan h3 { color: var(--rose); font-size: 26px; margin-bottom: 8px; }
.sf-plan p { font-weight: 300; font-size: 18px; letter-spacing: .04em; }
.sf-guarantee {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 34px;
}
.sf-guarantee::before { content: "✦ "; color: var(--rose); }
.sf-guarantee::after { content: " ✦"; color: var(--rose); }
.sf-bonus-value { display: block; font-size: .72em; color: var(--rose); margin-top: 4px; }

/* ============================================================
   404 page
   ============================================================ */
.nf {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: right center;
  padding: 120px 0;
}
.nf-card {
  max-width: 520px;
  background: rgba(248,246,242,.92);
  padding: clamp(36px, 5vw, 64px);
}
.nf-code {
  display: block;
  font-size: clamp(80px, 10vw, 140px);
  color: var(--rose);
  line-height: 1;
  margin-bottom: 6px;
}
.nf-card h1 { font-size: clamp(26px, 3vw, 40px); margin-bottom: 16px; }
.nf-card p { font-weight: 300; font-size: 17px; letter-spacing: .04em; margin-bottom: 30px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .paths-grid { grid-template-columns: 1fr; gap: 70px; }
  .path { max-width: 560px; }
  .path p { max-width: none; }
  .values-grid { grid-template-columns: 1fr; }
  .values-card { margin-top: 0; max-width: 380px; margin-left: auto; margin-right: auto; }
  .essence-strip { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .qualified-grid { grid-template-columns: 1fr; }
  .qualified-nav ol { flex-direction: row; flex-wrap: wrap; gap: 18px; }
  .qualified-nav li { margin-left: 0 !important; }
  .qualified-nav::before { display: none; }
  .why-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .topic, .topic--flip { grid-template-columns: 1fr; }
  .topic--flip .topic-media { order: 0; }
  .topic-media { max-width: 440px; }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  /* Podcast page */
  .podcast-hero-grid { grid-template-columns: 1fr; padding-top: 130px; padding-bottom: 64px; }
  .phone-mock { max-width: 360px; }
  .guest { margin-top: 90px; }
  .guest-photo { position: static; width: 100%; max-height: 560px; aspect-ratio: 977 / 668; }
  .guest-photo img { max-height: 560px; }
  .guest-panel { margin: 0; padding: 56px max(24px, calc((100vw - var(--container)) / 2 + var(--pad))); }
  .guest-script { position: static; display: block; margin-bottom: 10px; }
  .sub-cta { display: block; }
  .sub-panel { padding: 64px max(24px, calc((100vw - var(--container)) / 2 + var(--pad))); }
  .sub-photo { max-width: 600px; margin: 0 auto; }
  .ask-card { margin: 0 auto; }
}

@media (max-width: 900px) {
  .intro .container,
  .masterclass .container,
  .podcast-top,
  .podcast-main { grid-template-columns: 1fr; }
  .masterclass-art { margin: 0; }
  .masterclass-copy { padding: 0 0 72px; }
  .masterclass { padding-top: 56px; }
  .intro-photo { order: -1; max-width: 430px; }
  .intro-photo::before { top: 30px; left: -30px; }
  .resource-cards { grid-template-columns: 1fr; max-width: 480px; }
  .testimonial-people { grid-template-columns: 1fr; max-width: 420px; }
  .pillars { grid-template-columns: 1fr; max-width: 360px; }
  .pillar:nth-child(2) { margin-top: 0; }
  .keynote .container { justify-content: center; }
  .keynote-card .script { left: 8px; }
  .path--img-left { grid-template-columns: 1fr; }
  .connect-strip .strip-photo { margin-top: 0; }
  .press-feature { grid-template-columns: 1fr; }
  .press-feature-media { max-width: 460px; margin-bottom: 16px; }
  .episodes-bar { flex-direction: column; align-items: stretch; }
  .episodes-search { width: 100%; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .intro { padding: 72px 0; }
  .movement, .paths, .transform, .testimonials { padding: 72px 0; }
  .btn { padding: 18px 28px; font-size: 15px; width: 100%; max-width: 420px; }
  .footer-cols { grid-template-columns: 1fr; gap: 8px; }
  .footer-brand { margin-bottom: 18px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid var(--white); margin-bottom: 12px; }
  .hero h1 { margin-bottom: 36px; }
  .episode { gap: 16px; }
  .episode img { width: 72px; height: 72px; }
  .episode-title { font-size: 17px; }
  .essence-strip { grid-template-columns: repeat(2, 1fr); }
  .about-bio { padding: 64px 0 56px; }
  .press-recent { padding: 72px 0 84px; }
  .press-grid-section { padding: 72px 0; }
  .press-recent > .container > h2,
  .press-grid-section > .container > h2 { margin-bottom: 48px; }
  .press-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .press-card-body { padding: 20px 0 0; }
  .press-more { margin-top: 56px; }
  .press-feature-media .press-feature-back { top: -18px; left: 20px; }
  .press-feature-logo { height: 46px; }
  /* Podcast page */
  .podcast-intro { padding: 72px 0; }
  .latest { padding: 64px 0 80px; }
  .latest-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .latest h2, .episodes h2 { margin-bottom: 40px; }
  .guest { margin-top: 64px; }
  .guest-panel .lead { margin-bottom: 32px; }
  .guest-episode img { width: 76px; height: 76px; }
  .guest-ep-title { font-size: 14px; }
  .episodes { padding: 72px 0; }
  .ep-row { padding: 18px 16px; }
  .ep-row img { width: 84px; height: 84px; }
  .ep-title { font-size: 17px; }
  .ep-play svg { width: 44px; height: 44px; }
  .episodes-more { margin-top: 44px; }
  .sub-item svg { width: 54px; height: 54px; }
  .sub-item { gap: 18px; padding-left: 18px; }
  .ask { padding: 56px 0; }
  .ask-row { grid-template-columns: 1fr; gap: 0; }
}
