/* ============================================================
   BRYONY LANCASTER — SALES PAGE STYLESHEET
   Loaded AFTER css/styles.css and depends on it for the reset,
   the :root tokens and the font stacks. Every class here is
   prefixed .sp- so nothing can affect the existing site pages.

   Used by:
     regulated-teacher.html            (The Regulated Teacher, $1,450)
     trauma-sensitive-mindfulness.html (90-min workshop, $27)
   ============================================================ */

:root {
  --sp-max:     1060px;   /* standard sales-page column */
  --sp-narrow:  720px;    /* long-form reading column   */
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.sp-wrap {
  max-width: var(--sp-max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.sp-wrap--narrow { max-width: var(--sp-narrow); }

.sp-section       { padding: 88px 0; background: var(--white); }
.sp-section--tight{ padding: 64px 0; }
.sp-section--cream{ background: var(--cream); }
.sp-section--pale { background: var(--sage-pale); }
.sp-section--sage { background: var(--sage); color: var(--white); }

/* ============================================================
   TYPE
   ============================================================ */
.sp-eyebrow {
  font-family: var(--f-proxima);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}
.sp-eyebrow--light { color: rgba(255,255,255,0.8); }

.sp-h2 {
  font-family: var(--f-futura);
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3em;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 18px;
}
.sp-section--sage .sp-h2 { color: var(--white); }

.sp-h3 {
  font-family: var(--f-futura);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}

.sp-lede {
  font-family: var(--f-brandon);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.65em;
  color: var(--text);
  margin-bottom: 28px;
}

/* Long-form body copy — matches the .article-body reading style */
.sp-prose p {
  font-family: var(--f-brandon);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85em;
  color: var(--text-mid);
  margin-bottom: 22px;
}
.sp-prose p:last-child { margin-bottom: 0; }
.sp-prose strong { font-weight: 600; color: var(--text); }
.sp-prose em     { font-style: italic; }
.sp-section--sage .sp-prose p { color: rgba(255,255,255,0.86); }
.sp-section--sage .sp-prose strong { color: var(--white); }

.sp-centered { text-align: center; }
.sp-centered .sp-divider { margin-left: auto; margin-right: auto; }

/* Every section heading block is centred — never alternating */
.sp-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.sp-head .sp-divider { margin-left: auto; margin-right: auto; }
.sp-head .sp-prose p { margin-bottom: 0; }

.sp-divider {
  width: 36px;
  height: 1px;
  background: var(--sage);
  margin: 0 0 26px;
}
.sp-divider--light { background: rgba(255,255,255,0.55); }

/* ============================================================
   BUTTONS (extends .btn from styles.css)
   ============================================================ */
.btn-lg {
  padding: 17px 48px;
  font-size: 13px;
  letter-spacing: 0.14em;
}
.btn-cream {
  background: var(--cream);
  color: var(--sage-dark);
  border: 1.5px solid var(--cream);
}
.btn-cream:hover { background: var(--white); border-color: var(--white); }

.sp-cta-note {
  font-family: var(--f-proxima);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-top: 14px;
}
.sp-cta-note--light { color: rgba(255,255,255,0.82); font-size: 14px; }

/* ============================================================
   MINIMAL HEADER (funnel landing pages — no nav, no exits)
   ============================================================ */
.sp-minimal-nav {
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-minimal-nav .nav-logo-wrap { gap: 3px; }

/* ============================================================
   HERO — FULL BLEED (The Regulated Teacher)
   ============================================================ */
.sp-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--nav-h);
  background-color: var(--sage);
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.sp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46,47,24,0.52) 0%, rgba(46,47,24,0.42) 45%, rgba(46,47,24,0.66) 100%);
}
.sp-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 56px 24px;
  max-width: 780px;
}
.sp-hero-content h1 {
  font-family: var(--f-futura);
  font-size: 58px;
  font-weight: 300;
  line-height: 1.12em;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.sp-hero-tagline {
  font-family: var(--f-brandon);
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.92);
  margin-bottom: 22px;
}
.sp-hero-sub {
  font-family: var(--f-din);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7em;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto 34px;
}
.sp-hero-with {
  font-family: var(--f-proxima);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}

/* ============================================================
   HERO - OFFER (workshop landing page)
   Centred headline across the full width, then a split of
   offer copy + image. On mobile the image drops BELOW the copy.
   ============================================================ */
.sp-hero-offer { background: var(--cream); }

.sp-hero-offer-head {
  max-width: 980px;
  margin: 0 auto;
  padding: 66px var(--pad-x) 46px;
  text-align: center;
}
.sp-hero-offer-head h1 {
  font-family: var(--f-futura);
  font-size: 50px;
  font-weight: 300;
  line-height: 1.14em;
  letter-spacing: 0.01em;
  color: var(--text);
}

/* ---- The offer block ------------------------------------------
   A deliberate three-family system, each family with one job:
     Jost   (--f-futura)  the product and the price - display voice
     Barlow (--f-din)     sentences meant to be read
     Nunito (--f-proxima) micro-labels and access details
   Sage is spent once, on the price.
   ---------------------------------------------------------------- */

/* Product name - display family, ties it to the headline above */
.sp-offer-label {
  font-family: var(--f-futura);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 14px;
}

/* Price */
.sp-offer-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 15px;
  line-height: 1;
  margin-bottom: 22px;
}
.sp-price-was {
  font-family: var(--f-futura);
  font-size: 26px;
  font-weight: 300;
  color: var(--text-light);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.sp-price-now {
  font-family: var(--f-futura);
  font-size: 66px;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--sage);
}

/* Who it is for - the qualifying line, sized to be read, not skimmed */
.sp-offer-who {
  font-family: var(--f-din);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--text);
  margin-bottom: 26px;
}

/* Access detail - subordinate to the line above it */
.sp-offer-access {
  font-family: var(--f-proxima);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 30px;
}

/* ============================================================
   HERO — SPLIT
   ============================================================ */
.sp-hero-split {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: stretch;
  background: var(--cream);
}
.sp-hero-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 56px 34px;
  text-align: center;
  align-items: center;
}
.sp-hero-split-text .sp-lede {
  max-width: 520px;
  margin-bottom: 22px;
}
.sp-hero-split-text h1 {
  font-family: var(--f-futura);
  font-size: 44px;
  font-weight: 300;
  line-height: 1.16em;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 20px;
}
.sp-hero-split-img {
  min-height: 420px;
  background-color: var(--sage-light);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================================
   FACT BAR (dates · place · hours · price)
   ============================================================ */
.sp-facts {
  background: var(--sage-dark);
  color: var(--white);
}
.sp-facts-inner {
  max-width: var(--sp-max);
  margin: 0 auto;
  padding: 22px var(--pad-x);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 44px;
}
.sp-fact {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-proxima);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.sp-fact svg {
  width: 15px; height: 15px;
  color: var(--sage-light);
  flex-shrink: 0;
}

/* ============================================================
   PULL QUOTE
   ============================================================ */
.sp-pullquote {
  max-width: 640px;
  margin: 44px auto;
  padding: 34px 0;
  border-top: 1px solid var(--sage-light);
  border-bottom: 1px solid var(--sage-light);
  text-align: center;
}
.sp-pullquote p {
  font-family: var(--f-brandon);
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55em;
  color: var(--sage);
  margin: 0;
}

/* Full-bleed image quote strip */
.sp-quote-strip {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--sage-dark);
  background-size: cover;
  background-position: center 55%;
  background-repeat: no-repeat;
}
.sp-quote-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30,36,24,0.5);
}
.sp-quote-strip-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 72px 32px;
  text-align: center;
  color: var(--white);
}
.sp-quote-strip-inner p {
  font-family: var(--f-brandon);
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6em;
  margin-bottom: 18px;
}
.sp-quote-strip-inner cite {
  font-family: var(--f-proxima);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   CURRICULUM MODULES
   ============================================================ */
.sp-modules {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.sp-module {
  background: var(--white);
  padding: 38px 44px;
  transition: background 0.25s;
}
.sp-module:hover { background: var(--cream); }
.sp-module-num {
  font-family: var(--f-proxima);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--sage);
  margin-bottom: 14px;
}
.sp-module h3 {
  font-family: var(--f-futura);
  font-size: 21px;
  font-weight: 300;
  line-height: 1.35em;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 12px;
}
.sp-module p {
  font-family: var(--f-din);
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.8em;
  color: var(--text-mid);
}
.sp-module p strong { font-weight: 600; color: var(--text); }
/* Final module spans both columns when the count is odd */
.sp-module--wide { grid-column: 1 / -1; }

/* ============================================================
   LISTS
   ============================================================ */
.sp-list { display: flex; flex-direction: column; gap: 16px; }
.sp-list li {
  position: relative;
  padding-left: 32px;
  font-family: var(--f-brandon);
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.75em;
  color: var(--text-mid);
}
.sp-list li::before {
  content: '\2022';
  position: absolute;
  left: 6px;
  top: 0;
  color: var(--sage);
  font-size: 1em;
  line-height: inherit;
}
.sp-list li strong { font-weight: 600; color: var(--text); }

/* Tick list — deliverables / inclusions */
.sp-ticks { display: flex; flex-direction: column; gap: 14px; }
.sp-ticks li {
  position: relative;
  padding-left: 32px;
  font-family: var(--f-din);
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.7em;
  color: var(--text-mid);
}
.sp-ticks li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 0.42em;
  width: 12px;
  height: 6px;
  border-left: 1.5px solid var(--sage);
  border-bottom: 1.5px solid var(--sage);
  transform: rotate(-45deg);
}
.sp-ticks ul {
  margin: 12px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-ticks ul li {
  padding-left: 20px;
  font-size: 14.5px;
  line-height: 1.6em;
}
.sp-ticks ul li::before {
  content: '';
  left: 2px;
  top: 0.72em;
  width: 8px;
  height: 1px;
  border: none;
  background: var(--sage-light);
  transform: none;
}

/* ============================================================
   PANEL (prerequisites, scope note)
   ============================================================ */
.sp-panel {
  border: 1px solid var(--sage-light);
  background: var(--white);
  padding: 40px 44px;
}
.sp-panel--flat { background: transparent; }
.sp-panel .sp-h3 { color: var(--sage); }

/* ============================================================
   INVESTMENT
   ============================================================ */
.sp-invest {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: start;
}
.sp-price-card {
  background: var(--white);
  border: 1px solid var(--sage-light);
  padding: 40px 36px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.sp-price-label {
  font-family: var(--f-proxima);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.sp-price {
  font-family: var(--f-futura);
  font-size: 44px;
  font-weight: 300;
  line-height: 1.1em;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 6px;
}
.sp-price-sub {
  font-family: var(--f-din);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6em;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.sp-price-rule {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}
.sp-price-alt {
  font-family: var(--f-din);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.7em;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.sp-price-alt strong { font-weight: 600; color: var(--text); }
.sp-price-card .btn { display: block; text-align: center; margin-top: 26px; }

/* ============================================================
   SCHEDULE
   ============================================================ */
.sp-schedule { border-top: 1px solid var(--border); }
.sp-schedule-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.sp-schedule-time {
  font-family: var(--f-proxima);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}
.sp-schedule-what {
  font-family: var(--f-din);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5em;
  color: var(--text);
}

/* ============================================================
   NUMBERED STEPS ("here's the plan")
   ============================================================ */
.sp-steps {
  display: flex;
  flex-direction: column;
  counter-reset: sp-step;
}
.sp-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.sp-step:first-child { border-top: 1px solid var(--border); }
.sp-step::before {
  counter-increment: sp-step;
  content: counter(sp-step, decimal-leading-zero);
  font-family: var(--f-futura);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.4em;
  color: var(--sage-light);
}
.sp-step p {
  font-family: var(--f-brandon);
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.8em;
  color: var(--text-mid);
}

/* ============================================================
   BIO
   ============================================================ */
.sp-bio {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  align-items: stretch;
}
.sp-bio-img {
  min-height: 560px;
  background-color: var(--sage-light);
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}
.sp-bio-text {
  background: var(--white);
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sp-bio-text p {
  font-family: var(--f-din);
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.85em;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.sp-bio-text p:last-child { margin-bottom: 0; }
.sp-bio-text em { font-style: italic; }

/* ============================================================
   FAQ (native <details> accordion)
   ============================================================ */
.sp-faq { border-top: 1px solid var(--border); }
.sp-faq details { border-bottom: 1px solid var(--border); }
.sp-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 40px 24px 0;
  position: relative;
  font-family: var(--f-futura);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5em;
  letter-spacing: 0.01em;
  color: var(--text);
  transition: color 0.2s;
}
.sp-faq summary::-webkit-details-marker { display: none; }
.sp-faq summary:hover { color: var(--sage); }
.sp-faq summary::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -7px;
  border-right: 1.5px solid var(--sage);
  border-bottom: 1.5px solid var(--sage);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.sp-faq details[open] summary::after {
  transform: rotate(-135deg);
  margin-top: -2px;
}
.sp-faq-answer { padding: 0 40px 26px 0; }
.sp-faq-answer p {
  font-family: var(--f-brandon);
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.8em;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.sp-faq-answer p:last-child { margin-bottom: 0; }

/* ============================================================
   CLOSING CTA BAND
   ============================================================ */
.sp-cta-band {
  background: var(--sage);
  color: var(--white);
  padding: 96px 0;
  text-align: center;
}
.sp-cta-band h2 {
  font-family: var(--f-futura);
  font-size: 34px;
  font-weight: 300;
  line-height: 1.3em;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.sp-cta-band p {
  font-family: var(--f-brandon);
  font-size: 17.5px;
  font-weight: 300;
  line-height: 1.8em;
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin: 0 auto 18px;
}
.sp-cta-band .btn { margin-top: 30px; }
.sp-cta-band .sp-cta-note { margin-top: 28px; }

/* ============================================================
   INLINE CTA (mid-page buy prompt)
   ============================================================ */
.sp-inline-cta {
  text-align: center;
  margin-top: 48px;
}
.sp-guarantee-box {
  max-width: 560px;
  margin: 34px auto 0;
  padding: 28px 34px;
  border: 1px solid var(--sage-light);
  background: var(--white);
  text-align: center;
}
.sp-guarantee-box h4 {
  font-family: var(--f-futura);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}
.sp-guarantee-box p {
  font-family: var(--f-din);
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.7em;
  color: var(--text-mid);
}
.sp-guarantee-box a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

/* ============================================================
   STICKY CTA BAR (revealed once the hero scrolls away)
   ============================================================ */
.sp-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  background: var(--sage-dark);
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  transform: translateY(110%);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.14);
}
.sp-sticky.is-visible { transform: translateY(0); }
.sp-sticky-text {
  font-family: var(--f-din);
  font-size: 15px;
  font-weight: 300;
  color: var(--white);
}
.sp-sticky-text strong {
  font-family: var(--f-futura);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.sp-sticky .btn { padding: 11px 32px; }

/* ============================================================
   MINIMAL FOOTER (funnel pages)
   ============================================================ */
.sp-footer {
  background: var(--sage-pale);
  padding: 40px 0;
  text-align: center;
}
.sp-footer p {
  font-family: var(--f-proxima);
  font-size: 11px;
  line-height: 1.9em;
  letter-spacing: 0.06em;
  color: var(--text-light);
}
.sp-footer a { color: var(--text-mid); text-decoration: underline; text-underline-offset: 3px; }
.sp-footer a:hover { color: var(--sage); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .sp-hero-content h1     { font-size: 48px; }
  .sp-hero-offer-head     { padding: 52px var(--pad-x) 36px; }
  .sp-hero-offer-head h1  { font-size: 40px; }
  .sp-hero-split-text     { padding: 36px 44px 60px; }
  .sp-invest              { grid-template-columns: 1fr; gap: 44px; }
  .sp-price-card          { position: static; }
  .sp-bio-text            { padding: 56px 44px; }
}

@media (max-width: 768px) {
  .sp-section       { padding: 64px 0; }
  .sp-section--tight{ padding: 48px 0; }

  .sp-hero          { min-height: 520px; }
  .sp-hero-content  { padding: 56px 8px; }
  .sp-hero-content h1 { font-size: 36px; }
  .sp-hero-tagline  { font-size: 17px; }
  .sp-hero-sub      { font-size: 16px; }

  .sp-hero-split       { grid-template-columns: 1fr; }
  .sp-hero-split-img   { min-height: 340px; }
  .sp-hero-split-text  { padding: 28px 24px 48px; text-align: left; align-items: stretch; }
  .sp-hero-split-text .sp-lede { max-width: none; }

  .sp-hero-offer-head    { padding: 44px 24px 28px; }
  .sp-hero-offer-head h1 { font-size: 32px; }
  .sp-offer-price        { justify-content: flex-start; gap: 13px; }
  .sp-price-was          { font-size: 23px; }
  .sp-price-now          { font-size: 56px; }
  .sp-offer-who          { font-size: 17px; }

  .sp-facts-inner   { gap: 12px 26px; padding: 18px var(--pad-x); }
  .sp-fact          { font-size: 11px; letter-spacing: 0.1em; }

  .sp-h2            { font-size: 26px; }
  .sp-lede          { font-size: 18px; }

  .sp-module        { padding: 30px 26px; }
  .sp-head          { margin-bottom: 34px; }

  .sp-panel         { padding: 30px 26px; }

  .sp-quote-strip-inner p { font-size: 21px; }
  .sp-pullquote p   { font-size: 20px; }

  .sp-schedule-row  { grid-template-columns: 1fr; gap: 4px; padding: 15px 0; }

  .sp-step          { grid-template-columns: 44px 1fr; gap: 14px; padding: 22px 0; }

  .sp-bio           { grid-template-columns: 1fr; }
  .sp-bio-img       { min-height: 340px; }
  .sp-bio-text      { padding: 40px 26px; }

  .sp-cta-band      { padding: 68px 0; }
  .sp-cta-band h2   { font-size: 27px; }
  .sp-cta-band p    { font-size: 16.5px; }

  .sp-faq summary   { font-size: 16.5px; padding-right: 34px; }

  .sp-sticky        { gap: 14px; padding: 12px 16px; }
  .sp-sticky-text   { font-size: 13.5px; }
  .sp-sticky .btn   { padding: 10px 24px; font-size: 12px; }

}

@media (max-width: 520px) {
  .sp-hero-content h1 { font-size: 31px; }
  .sp-price           { font-size: 36px; }
  .sp-sticky-text     { display: none; }
  .sp-sticky          { justify-content: stretch; }
  .sp-sticky .btn     { flex: 1; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .sp-sticky { transition: none; }
  .sp-faq summary::after { transition: none; }
}

/* ============================================================
   STICKY BAR CLEARANCE
   The fixed .sp-sticky bar sits over the last ~70px of the page,
   so sales pages give their footer extra room underneath.
   ============================================================ */
.sp-body footer,
.sp-body .sp-footer { padding-bottom: 96px; }

@media (max-width: 768px) {
  .sp-body footer,
  .sp-body .sp-footer { padding-bottom: 84px; }
}

/* Inline links inside sales copy */
.sp-faq-answer a,
.sp-prose a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.sp-faq-answer a:hover,
.sp-prose a:hover { opacity: 0.7; }
