/* =============================================================
   SGA 2027 Partnership & Sponsorship — Landing Pages
   Scoped stylesheet — applies only inside the .sp wrapper so it
   never overrides the theme's global H1/H2/H3 styles.
   Shared by both the Primary and Detail page templates.

   Font: franklin-gothic-urw (self-hosted / brand webfont)
   Palette (official SGA only):
     --sp-blue        #005289  primary blue
     --sp-teal        #00948f  primary teal
     --sp-blue-dk     #003762  dark blue
     --sp-teal-dk     #006763  dark teal
     --sp-green       #b4d88b  green highlight
     --sp-yellow      #ffde6c  yellow highlight
     --sp-offwhite    #f7f7f7  off-white background
     white / near-black text
   ============================================================= */

/* ---- Optional self-hosted font face -------------------------
   If franklin-gothic-urw is NOT already loaded site-wide by the
   theme (Adobe Fonts kit or existing @font-face), drop the font
   files into /assets/fonts/sponsorship/ and uncomment.
--------------------------------------------------------------
@font-face {
  font-family: "franklin-gothic-urw";
  src: url("assets/fonts/sponsorship/franklin-gothic-urw-book.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "franklin-gothic-urw";
  src: url("assets/fonts/sponsorship/franklin-gothic-urw-medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "franklin-gothic-urw";
  src: url("assets/fonts/sponsorship/franklin-gothic-urw-demi.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "franklin-gothic-urw";
  src: url("assets/fonts/sponsorship/franklin-gothic-urw-bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
------------------------------------------------------------ */

.sp {
  --sp-blue: #005289;
  --sp-teal: #00948f;
  --sp-blue-dk: #003762;
  --sp-teal-dk: #006763;
  --sp-green: #b4d88b;
  --sp-yellow: #ffde6c;
  --sp-offwhite: #f7f7f7;
  --sp-ink: #1a2230;
  --sp-ink-soft: #4a5568;
  --sp-border: #e4e7ec;

  --sp-font: "franklin-gothic-urw", "Libre Franklin", "Franklin Gothic Medium",
             "Arial Narrow", Arial, sans-serif;

  --sp-maxw: 1200px;
  --sp-gutter: clamp(1.25rem, 4vw, 3rem);

  font-family: var(--sp-font);
  color: var(--sp-ink);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Reset a few things inside the wrapper without touching globals */
.sp *,
.sp *::before,
.sp *::after { box-sizing: border-box; }

.sp p { margin: 0 0 1em; }
.sp img, .sp svg { max-width: 100%; }
/* Only plain text links inherit color; buttons keep their own color. */
.sp a:not([class]) { color: var(--sp-blue); }

/* ---- Layout helpers ---------------------------------------- */
.sp__wrap {
  width: 100%;
  max-width: var(--sp-maxw);
  margin: 0 auto;
  padding-left: var(--sp-gutter);
  padding-right: var(--sp-gutter);
}
.sp__section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }

/* ---- Type scale (scoped, not theme H1/H2/H3) --------------- */
.sp__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
  color: var(--sp-teal-dk);
}
.sp__eyebrow--onDark { color: var(--sp-yellow); }
.sp__eyebrow--dot::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  margin-right: 0.6rem;
  vertical-align: middle;
}

.sp__h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 1.4rem;
}
.sp__h2 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 1.1rem;
}
.sp__h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.7rem;
}
.sp__lead {
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  color: var(--sp-ink-soft);
  max-width: 62ch;
}
.sp__section--dark .sp__lead,
.sp__section--darkTeal .sp__lead { color: rgba(255,255,255,0.82); }

.sp__prose { max-width: 68ch; }
.sp__prose p { color: var(--sp-ink-soft); font-size: 1.05rem; }
.sp__prose strong { color: var(--sp-ink); }

/* ---- Buttons ----------------------------------------------- */
.sp__btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.sp__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sp-font);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 1.9rem;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
/* Kill the site-wide link underline on buttons, in every state */
.sp a.sp__btn,
.sp a.sp__btn:hover,
.sp a.sp__btn:focus,
.sp a.sp__btn:active { text-decoration: none !important; }
/* Primary on dark: yellow fill */
.sp__btn--primary {
  background: var(--sp-yellow);
  color: var(--sp-blue-dk);
  border-color: var(--sp-yellow);
}
.sp__btn--primary:hover { background: #ffd23f; border-color: #ffd23f; }
/* Secondary on dark: outline */
.sp__btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.sp__btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
/* Primary on light: blue fill */
.sp__btn--blue {
  background: var(--sp-blue);
  color: #fff;
  border-color: var(--sp-blue);
}
.sp__btn--blue:hover { background: var(--sp-blue-dk); border-color: var(--sp-blue-dk); }
/* Secondary on light: outline blue */
.sp__btn--outline {
  background: transparent;
  color: var(--sp-blue);
  border-color: var(--sp-blue);
}
.sp__btn--outline:hover { background: var(--sp-blue); color: #fff; }
/* Yellow outline (on dark): 1px yellow stroke, yellow text; fills yellow on hover */
.sp__btn--yellow-outline {
  background: transparent;
  color: var(--sp-yellow);
  border: 1px solid var(--sp-yellow);
  /* +1px top/bottom to match the 2px-bordered primary button height */
  padding-top: calc(1rem + 1px);
  padding-bottom: calc(1rem + 1px);
}
.sp__btn--yellow-outline:hover {
  background: var(--sp-yellow);
  color: var(--sp-blue-dk);
  border-color: var(--sp-yellow);
}

/* ---- Inline text link with arrow (to Detail page) ---------- */
.sp__jump {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  color: var(--sp-blue);
  text-decoration: none !important; 
  border-bottom: 2px solid transparent;
  transition: border-color .18s ease, gap .18s ease;
}
.sp__jump:hover { border-color: var(--sp-blue); gap: 0.7rem; }
.sp__section--dark .sp__jump { color: var(--sp-yellow); }
.sp__section--dark .sp__jump:hover { border-color: var(--sp-yellow); }

/* ---- Section color variants -------------------------------- */
.sp__section--dark { background: var(--sp-blue-dk); color: #fff; }
.sp__section--darkTeal { background: var(--sp-teal-dk); color: #fff; }
.sp__section--offwhite { background: var(--sp-offwhite); }
.sp__section--white { background: #fff; }
.sp__section--dark .sp__h2,
.sp__section--darkTeal .sp__h2 { color: #fff; }

.sp__head { max-width: 68ch; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.sp__head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* =============================================================
   1. HERO
   ============================================================= */
.sp-hero {
  position: relative;
  background: linear-gradient(135deg, #003762 0%, #00343f 60%, #006763 100%);
  color: #fff;
  overflow: hidden;
}
.sp-hero > .sp__wrap {
  position: relative;
  z-index: 1;
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}
/* 60/40 two-column hero (text left, image right) */
.sp-hero__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}
.sp-hero__body { max-width: none; }
.sp-hero__body .sp__h1 { max-width: 18ch; }
.sp-hero__body .sp__lead { color: rgba(255,255,255,0.85); max-width: 54ch; }
.sp-hero__body .sp__btns { margin-bottom: 0; }

.sp-hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 45px rgba(0,0,0,0.28);
}
.sp-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sp-hero__media.sp-hero__media--3-2 { aspect-ratio: 3 / 2; }
/* Image-placeholder fallback (shows when no src is set) */
.sp-hero__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.sp-hero__media--placeholder::after {
  content: "Image";
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Compact hero (Detail) stays single-column */
.sp-hero--compact > .sp__wrap {
  padding-top: clamp(3rem, 5.5vw, 4.75rem);
  padding-bottom: clamp(3rem, 5.5vw, 4.75rem);
}
.sp-hero--compact .sp-hero__body { max-width: 40ch; }
.sp-hero--compact .sp-hero__body .sp__h1 { max-width: 20ch; }

/* Detail hero: 50/50 split, content column fills its full width */
.sp-hero--split .sp-hero__grid { grid-template-columns: 1fr 1fr; }
.sp-hero--split .sp-hero__body { max-width: none; }
.sp-hero--split .sp-hero__body .sp__h1 { max-width: none; }
.sp-hero--split .sp-hero__body .sp__lead { max-width: none; }

/* Hero accent bar (green band under the hero, Heath-style) */
.sp-herobar {
  background: var(--sp-green);
  color: var(--sp-blue-dk);
}
.sp-herobar .sp__wrap {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.sp-herobar__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sp-blue-dk);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: gap .18s ease;
}
.sp-herobar__back:hover { text-decoration: underline; }

/* =============================================================
   2. PRESENCE LIST (Your buyers are already here)
   ============================================================= */
.sp-presence {
  list-style: none;
  margin: 1.6rem 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.9rem;
  max-width: 64ch;
}
.sp-presence li {
  position: relative;
  padding-left: 1.9rem;
  font-size: 1.08rem;
  color: var(--sp-ink);
  font-weight: 500;
}
.sp-presence li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 11px; height: 11px;
  background: var(--sp-teal);
  border-radius: 2px;
}

/* Pull quote (light) — "A logo puts your name in front..." */
.sp-pull {
  border-left: 5px solid var(--sp-yellow);
  background: var(--sp-offwhite);
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2.5rem);
  margin: 2.5rem 0 0;
  max-width: 70ch;
}
.sp-pull p {
  margin: 0;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--sp-blue);
}

/* =============================================================
   3. VALUE-CHAIN STATS (dark)
   ============================================================= */
.sp-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.sp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 4px;
  padding: clamp(1.6rem, 2.5vw, 2rem) 1.25rem;
}
.sp-stat__icon {
  color: var(--sp-yellow);
  margin-bottom: 0.9rem;
}
.sp-stat__icon svg { width: 34px; height: 34px; display: block; }
.sp-stat__num {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin: 0 0 0.1rem;
}
.sp-stat__text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.sp .sp-stats__foot {
  margin-top: 50px;
  max-width: 68ch;
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
}

/* =============================================================
   Quote block (partner testimonial) — light, centered
   ============================================================= */
.sp-quote { background: var(--sp-offwhite); }
.sp-quote .sp__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.sp-quote__mark {
  font-size: 4rem;
  line-height: 0.5;
  color: var(--sp-teal);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.sp-quote__text {
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
  color: var(--sp-blue);
  max-width: 34ch;
  margin: 0 auto 1.5rem;
  text-align: center;
}
.sp-quote__cite {
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--sp-ink-soft);
  text-align: center;
}
/* =============================================================
   4. TWO WAYS TO PARTNER — two cards
   ============================================================= */
.sp-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.sp-two__card {
  background: #fff;
  border: 1px solid var(--sp-border);
  border-top: 4px solid var(--sp-teal);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.sp-two__card h3 { margin-top: 0; }
.sp-two__card p { color: var(--sp-ink-soft); font-size: 1.02rem; margin-bottom: 0; }

/* =============================================================
   5. ADVANCE PARTNERSHIP — badge header + feature list
   ============================================================= */
.sp-badgehead {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  margin-bottom: 1.4rem;
}
.sp-badgehead__logo {
  flex: 0 0 auto;
  width: clamp(88px, 12vw, 120px);
  height: auto;
  display: block;
}
.sp-badgehead__logo svg,
.sp-badgehead__logo img { width: 100%; height: auto; display: block; }
.sp-badgehead__eyebrow { margin: 0; }

.sp-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  margin: 0.4rem 0 1.4rem;
}
.sp-price__amt {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--sp-blue);
}
.sp-price__unit { font-size: 1rem; color: var(--sp-ink-soft); font-weight: 600; }

.sp-features {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  max-width: 74ch;
}
.sp-features li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
  color: var(--sp-ink-soft);
}
.sp-features li strong { color: var(--sp-ink); }
.sp-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 12px; height: 12px;
  background: var(--sp-teal);
  border-radius: 2px;
}
.sp-features--onDark li { color: rgba(255,255,255,0.85); }
.sp-features--onDark li strong { color: #fff; }
.sp-features--onDark li::before { background: var(--sp-yellow); }

/* Callout box (instructor advantage / who it fits / budget reframe) */
.sp-callout {
  border-left: 5px solid var(--sp-teal);
  background: var(--sp-offwhite);
  padding: clamp(1.4rem, 2.5vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
  margin: 2rem 0 0;
  max-width: 74ch;
}
.sp-callout h3 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.sp-callout p { margin: 0; color: var(--sp-ink-soft); }
.sp-callout p + p { margin-top: 0.8rem; }
.sp-callout--dark {
  background: rgba(255,255,255,0.05);
  border-left-color: var(--sp-yellow);
}
/* Flush callout: no left rule, no left padding (aligns with body copy) */
.sp-callout--plain {
  border-left: 0;
  padding-left: 0;
  background: transparent;
}
.sp-callout--dark h3 { color: #fff; }
.sp-callout--dark p { color: rgba(255,255,255,0.82); }

/* =============================================================
   6. CONFERENCE EVENTS LIST
   ============================================================= */
.sp-events { display: grid; gap: 0.75rem; margin-top: clamp(1.5rem, 3vw, 2.25rem); }
.sp-event {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 1.25rem;
  align-items: baseline;
  background: #fff;
  border: 1px solid var(--sp-border);
  border-left: 4px solid var(--sp-blue);
  padding: 1.1rem 1.4rem;
}
.sp-event__date {
  font-weight: 700;
  color: var(--sp-blue);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.sp-event__name { font-weight: 600; color: var(--sp-ink); font-size: 1.02rem; }
.sp-event__loc { color: var(--sp-ink-soft); font-size: 0.92rem; white-space: nowrap; }
.sp-event--exec { border-left-color: var(--sp-teal); background: #f4f9f8; }
.sp .sp-events__note {
  margin-top: 50px;
  max-width: 70ch;
  color: var(--sp-ink-soft);
  font-size: 1.02rem;
}

/* =============================================================
   7. CONFERENCE TIERS (Detail) — five priced cards
   ============================================================= */
.sp-tiers { display: grid; gap: 1.25rem; margin-top: clamp(1.5rem, 3vw, 2.25rem); }
.sp-tier {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  background: #fff;
  border: 1px solid var(--sp-border);
  border-top: 4px solid var(--sp-teal);
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
}
.sp-tier__head { }
.sp-tier__name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sp-blue);
  margin: 0 0 0.3rem;
}
.sp-tier__price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sp-ink);
  line-height: 1;
  margin: 0 0 0.4rem;
}
.sp-tier__avail {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sp-teal-dk);
  letter-spacing: 0.02em;
  margin: 0;
}
.sp-tier__body p { margin: 0 0 0.7rem; color: var(--sp-ink-soft); font-size: 1.02rem; }
.sp-tier__body p:last-child { margin-bottom: 0; }
.sp-tier__items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.sp-tier__items li {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--sp-blue);
  background: #eaf2f7;
  border: 1px solid #d3e3ee;
  border-radius: 3px;
  padding: 0.35rem 0.65rem;
}

/* Included-at-every-level panel (dark teal) */
.sp-included {
  background: var(--sp-teal-dk);
  color: #fff;
  padding: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
}
.sp-included h3 { color: #fff; margin: 0 0 1.4rem; font-size: 1.4rem; }
.sp-included__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 2.5rem;
}
.sp-included__item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.sp-included__item::before {
  content: "";
  flex: 0 0 auto;
  width: 10px; height: 10px;
  margin-top: 0.45rem;
  background: var(--sp-yellow);
  border-radius: 2px;
}
.sp .sp-booth-note {
  margin-top: 50px;
  max-width: 74ch;
  color: var(--sp-ink-soft);
  font-size: 1rem;
}

/* =============================================================
   8. OUTCOME MAP (Detail) — objective -> recommendation
   ============================================================= */
.sp-outcomes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem); }
.sp-outcome {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #fff;
  border: 1px solid var(--sp-border);
  padding: 1rem 1.25rem;
}
.sp-outcome__goal { font-weight: 700; color: var(--sp-ink); font-size: 1.02rem; flex: 1; }
.sp-outcome__arrow { color: var(--sp-teal); font-weight: 700; flex: 0 0 auto; }
.sp-outcome__rec { color: var(--sp-blue); font-weight: 600; font-size: 0.98rem; flex: 1;
  text-align: right; }

/* =============================================================
   9. SUPPORT LIST (Detail) — how we support what you buy
   ============================================================= */
.sp-support { counter-reset: sp-sup; display: grid; gap: 1rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem); max-width: 82ch; }
.sp-support__row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
  background: #fff;
  border: 1px solid var(--sp-border);
  border-left: 4px solid var(--sp-yellow);
  padding: 1.4rem 1.5rem;
}
.sp-support__row::before {
  counter-increment: sp-sup;
  content: counter(sp-sup, decimal-leading-zero);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sp-teal);
}
.sp-support__row h3 { margin: 0 0 0.35rem; font-size: 1.15rem; }
.sp-support__row p { margin: 0; color: var(--sp-ink-soft); font-size: 1.02rem; }

/* =============================================================
   10. CONTACT / FINAL CTA  (id="start")
   ============================================================= */
.sp-cta { background: var(--sp-blue-dk); color: #fff; }
.sp-cta .sp__wrap { text-align: center; }
.sp-cta__inner { max-width: 52ch; margin: 0 auto; }
.sp-cta .sp__h2 { color: #fff; margin-bottom: 1.1rem; }
.sp-cta__lead { color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.sp-cta .sp__btns { justify-content: center; }
.sp-contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: left;
}
.sp-contact {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-top: 3px solid var(--sp-yellow);
  padding: 1.4rem 1.5rem;
}
.sp-contact__name { font-weight: 700; color: #fff; font-size: 1.05rem; margin: 0 0 0.15rem; }
.sp-contact__role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sp-yellow);
  margin: 0 0 0.8rem;
}
.sp-contact a {
  display: block;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  word-break: break-word;
}
.sp-contact a:hover { color: #fff; text-decoration: underline; }
/* Member Services: white email (hover unchanged), bold light-green phone */
.sp-contact a.sp-contact__email { color: #fff; }
.sp-contact a.sp-contact__phone { color: var(--sp-green); font-weight: 700; }
.sp-contact a.sp-contact__phone:hover { color: var(--sp-green); text-decoration: underline; }

/* Final CTA: contact-form placeholder (2 cols) + Member Services (1 col) */
.sp-cta__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: left;
  align-items: start;
}
.sp-formph {
  background: #fff;
  border-radius: 4px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
/* Form panel is a white card inside the dark CTA — keep its text dark */
.sp-formph { color: var(--sp-ink); }
.sp-formph label,
.sp-formph legend,
.sp-formph .gfield_label,
.sp-formph .gform_description,
.sp-formph .gfield_description,
.sp-formph p,
.sp-formph span,
.sp-formph li,
.sp-formph input,
.sp-formph textarea,
.sp-formph select { color: var(--sp-ink); }
.sp-formph a { color: var(--sp-blue); }
.sp-formph__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sp-teal-dk);
  margin: 0 0 1rem;
}
.sp-formph__box {
  flex: 1;
  border: 2px dashed #c7d2dd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}
.sp-formph__box p { margin: 0; color: var(--sp-ink-soft); font-size: 0.95rem; max-width: 34ch; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 900px) {
  .sp-hero__grid { grid-template-columns: 1fr; gap: clamp(1.75rem, 5vw, 2.5rem); }
  .sp-hero__media { aspect-ratio: 16 / 9; order: -1; }
  /* Detail split hero: image stays last on mobile/tablet */
  .sp-hero--split .sp-hero__media { order: 1; }
  .sp-stats { grid-template-columns: repeat(2, 1fr); }
  .sp-two { grid-template-columns: 1fr; }
  .sp-tier { grid-template-columns: 1fr; }
  .sp-included__grid { grid-template-columns: 1fr; }
  .sp-outcomes { grid-template-columns: 1fr; }
  .sp-contacts { grid-template-columns: 1fr; }
  .sp-cta__grid { grid-template-columns: 1fr; }
  .sp-event { grid-template-columns: 110px 1fr; }
  .sp-event__loc { grid-column: 2; white-space: normal; }
}
@media (max-width: 520px) {
  .sp { font-size: 17px; }
  .sp__btns { flex-direction: column; align-items: stretch; }
  .sp__btn { width: 100%; }
  .sp-stats { grid-template-columns: 1fr 1fr; }
  .sp-badgehead { flex-direction: row; gap: 1rem; }
  .sp-outcome { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .sp-outcome__rec { text-align: left; }
  .sp-event { grid-template-columns: 1fr; }
  .sp-support__row { grid-template-columns: 40px 1fr; gap: 0.9rem; }
}
