@font-face {
  font-family: "Fanwood Text";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/fanwood-text-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Fanwood Text";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/fanwood-text-italic.woff2") format("woff2");
}

@font-face {
  font-family: "League Spartan";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/league-spartan-variable.woff2") format("woff2");
}

:root {
  --plum: #52398b;
  --plum-deep: #36215f;
  --lavender: #8261a9;
  --lavender-soft: #eee8f6;
  --mint: #bbedE8;
  --blush: #c06eaf;
  --gold: #ffeac2;
  --paper: #ffffff;
  --ink: #17131f;
  --muted: #625b6c;
  --line: rgba(82, 57, 139, 0.16);
  --shadow: 0 22px 60px rgba(54, 33, 95, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --wrap: min(1220px, calc(100% - 40px));
  --display: "League Spartan", system-ui, sans-serif;
  --body: "Fanwood Text", Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

[id] { scroll-margin-top: 110px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

img, iframe { display: block; max-width: 100%; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--blush);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: var(--plum-deep);
  font-family: var(--display);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

h1, h2, h3, h4, h5, h6,
.eyebrow, .button, .nav-link, .footer-title, .number, .badge {
  font-family: var(--display);
}

h1, h2, h3, h4 { margin: 0; color: var(--plum); line-height: 1.04; }
h1 { font-size: clamp(3.2rem, 8vw, 6.7rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -0.035em; }
h3 { font-size: clamp(1.35rem, 3vw, 2rem); }

p { margin: 0; }
p + p { margin-top: 18px; }

.wrap { width: var(--wrap); margin-inline: auto; }

.section { position: relative; padding: clamp(76px, 11vw, 136px) 0; }
.section-sm { padding: clamp(54px, 8vw, 92px) 0; }
.section-plum { background: var(--plum); color: var(--paper); }
.section-plum h2, .section-plum h3 { color: var(--paper); }
.section-lavender { background: var(--lavender); color: var(--paper); }
.section-lavender h2, .section-lavender h3 { color: var(--paper); }
.section-soft { background: #f8f5fb; }
.section-gold { background: var(--gold); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: currentColor;
  transform-origin: center center;
}

.section-plum .eyebrow { color: var(--gold); }
.section-lavender .eyebrow { color: var(--paper); }
.hero .eyebrow, .page-hero .eyebrow { color: var(--gold); }

.lede {
  max-width: 760px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.42;
}

.section-plum .lede, .section-lavender .lede { color: var(--paper); }

.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 2px solid var(--plum);
  border-radius: var(--radius-pill);
  background: var(--plum);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

.button:hover { transform: translateY(-2px); background: var(--plum-deep); }
.button-light { border-color: var(--gold); background: var(--gold); color: var(--plum-deep); }
.button-light:hover { background: #fff4dd; }
.button-ghost { background: transparent; color: var(--plum); }
.button-ghost:hover { background: var(--lavender-soft); color: var(--plum-deep); }
.section-plum .button-ghost, .section-lavender .button-ghost { border-color: rgba(255,255,255,.6); color: var(--paper); }
.section-plum .button-ghost:hover, .section-lavender .button-ghost:hover { background: rgba(255,255,255,.12); }
.hero .button-ghost, .page-hero .button-ghost { border-color: rgba(255,255,255,.72); color: var(--paper); }
.hero .button-ghost:hover, .page-hero .button-ghost:hover { background: rgba(255,255,255,.14); color: var(--paper); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand { display: block; width: 174px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }

.site-nav { display: flex; align-items: center; gap: 18px; }
.nav-list { display: flex; align-items: center; gap: 17px; margin: 0; padding: 0; list-style: none; }
.nav-link { position: relative; color: var(--plum-deep); font-size: 0.76rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.nav-link::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; content: ""; background: var(--blush); transform: scaleX(0); transition: transform 150ms ease; }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }

.menu-button {
  position: relative;
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--plum);
  cursor: pointer;
}

.menu-button span, .menu-button::before, .menu-button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 0 0 -10px;
  content: "";
  background: currentColor;
  transition: transform 150ms ease, opacity 150ms ease;
}

.menu-button span { transform: translateY(-1px); }
.menu-button::before { transform: translateY(-7px); }
.menu-button::after { transform: translateY(5px); }
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(-1px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-1px) rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 86px);
  align-items: center;
  overflow: hidden;
  background: var(--plum-deep);
  color: var(--paper);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(90deg, rgba(35,18,65,.96) 0%, rgba(54,33,95,.83) 43%, rgba(54,33,95,.12) 80%);
}

.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-content { position: relative; z-index: 1; width: min(820px, 68%); padding: clamp(76px, 10vw, 130px) 0; }
.hero h1 { max-width: 820px; color: var(--paper); }
.hero .lede { max-width: 650px; color: rgba(255,255,255,.84); }

.sparkles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.sparkles i { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--paper); box-shadow: 0 0 16px rgba(255,255,255,.8); }
.sparkles i:nth-child(1) { top: 18%; left: 7%; }
.sparkles i:nth-child(2) { top: 27%; left: 37%; width: 3px; height: 3px; }
.sparkles i:nth-child(3) { top: 68%; left: 10%; width: 4px; height: 4px; }
.sparkles i:nth-child(4) { top: 77%; left: 43%; width: 3px; height: 3px; }

.page-hero { overflow: hidden; padding: clamp(90px, 12vw, 150px) 0; background: var(--plum); color: var(--paper); }
.page-hero h1 { max-width: 920px; color: var(--paper); }
.page-hero .lede { color: rgba(255,255,255,.82); }

.split { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); align-items: center; gap: clamp(44px, 8vw, 100px); }
.split.reverse .split-media { order: -1; }
.split-copy > p:first-of-type { margin-top: 26px; }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 4 / 5; border-radius: 180px 180px var(--radius-lg) var(--radius-lg); object-fit: cover; box-shadow: var(--shadow); }
.split-media.landscape img { aspect-ratio: 5 / 4; border-radius: var(--radius-lg); }
.media-badge { position: absolute; right: -18px; bottom: 26px; max-width: 220px; padding: 18px 22px; border-radius: var(--radius-lg); background: var(--gold); color: var(--plum-deep); font-family: var(--display); font-size: 0.9rem; font-weight: 700; box-shadow: var(--shadow); }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; margin-top: 48px; }
.card { position: relative; min-height: 280px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: 0 12px 42px rgba(54,33,95,.07); }
.card h3 { margin-top: 52px; }
.card p { margin-top: 18px; color: var(--muted); }
.card .number { position: absolute; top: 30px; left: 34px; color: var(--lavender); font-size: 0.8rem; font-weight: 700; letter-spacing: .14em; }
.card-dark { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.08); box-shadow: none; }
.card-dark p { color: rgba(255,255,255,.76); }
.card-dark h3 { color: var(--paper); }

.card-link { color: var(--plum); font-family: var(--display); font-size: .84rem; font-weight: 700; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.card-link:hover { color: var(--plum-deep); }

.pathway-grid, .resource-grid, .event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.pathway, .resource-card, .event-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 12px 42px rgba(54,33,95,.07);
}

.pathway h3, .resource-card h3, .event-card h3 { margin-bottom: 14px; }
.pathway p, .resource-card p, .event-card p { color: var(--muted); }
.pathway .button, .resource-card .button, .event-card .button { margin-top: 24px; }
.event-card .eyebrow { margin-bottom: 14px; }
.event-meta { margin-top: 16px; color: var(--plum-deep) !important; font-family: var(--display); font-size: .9rem; font-weight: 700; }
.resource-card { display: flex; min-height: 310px; flex-direction: column; }
.resource-card .button { align-self: flex-start; margin-top: auto; }
.section-intro { max-width: 820px; }
.section-intro .lede { margin-top: 22px; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; margin-top: 46px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: 0 12px 42px rgba(54,33,95,.07); }
.product-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.product-card-content { padding: 24px; }
.product-card-content p { margin-top: 10px; color: var(--muted); }
.product-card-content .button { margin-top: 20px; }
.book-cover img { aspect-ratio: 768 / 943; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.path-band { overflow: hidden; }
.path-band .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: end; }
.path-band .statement { color: var(--paper); font-family: var(--display); font-size: clamp(2rem,4.3vw,4.2rem); font-weight: 700; line-height: 1.03; letter-spacing: -.035em; }

.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 48px; }
.quote { position: relative; padding: clamp(32px,5vw,54px); border-radius: var(--radius-lg); background: var(--lavender); color: var(--paper); }
.quote::before { position: absolute; top: 10px; left: 26px; color: rgba(255,255,255,.72); content: "“"; font-family: Georgia, serif; font-size: 6rem; line-height: 1; }
.quote p { position: relative; font-size: clamp(1.3rem,2.5vw,1.75rem); font-style: italic; line-height: 1.35; }
.quote cite { display: block; margin-top: 24px; color: var(--paper); font-family: var(--display); font-size: .86rem; font-style: normal; font-weight: 700; }

.cta-band { text-align: center; }
.cta-band h2 { max-width: 800px; margin-inline: auto; }
.cta-band .lede { margin-inline: auto; }
.cta-band .button-row { justify-content: center; }

.credential-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-top: 46px; }
.credential { padding: 24px; border-left: 3px solid var(--mint); background: #f8f5fb; }
.credential h3 { font-size: 1.12rem; }
.credential p { margin-top: 10px; color: var(--muted); font-size: .98rem; }

.program-list { display: grid; gap: 18px; margin-top: 46px; }
.program { display: grid; grid-template-columns: 90px 1fr auto; gap: 24px; align-items: center; padding: 28px 0; border-top: 1px solid var(--line); }
.program:last-child { border-bottom: 1px solid var(--line); }
.program .number { color: var(--lavender); font-weight: 700; }
.program p { max-width: 690px; margin-top: 10px; color: var(--muted); }

.course-summary { max-width: 830px; }
.course-summary .lede { margin-bottom: 34px; }
.course-details { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-top: 46px; }
.course-detail { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: 0 12px 42px rgba(54,33,95,.06); }
.course-detail h3 { font-size: 1.3rem; }
.course-detail p { margin-top: 12px; color: var(--muted); }
.course-steps { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-top: 42px; }
.course-step { padding: 28px; border-radius: var(--radius-lg); background: rgba(255,255,255,.09); }
.course-step .number { display: block; margin-bottom: 20px; color: var(--gold); font-size: .78rem; font-weight: 700; letter-spacing: .14em; }
.course-step h3 { color: var(--paper); font-size: 1.35rem; }
.course-step p { margin-top: 12px; color: rgba(255,255,255,.78); }
.take2-feature { padding: clamp(34px,6vw,58px); border-radius: var(--radius-lg); background: var(--plum); color: var(--paper); box-shadow: var(--shadow); }
.take2-feature h2 { color: var(--paper); }
.take2-feature .lede { max-width: 700px; color: rgba(255,255,255,.84); }
.take2-feature .eyebrow { color: var(--gold); }

.badge { display: inline-flex; padding: 8px 14px; border-radius: var(--radius-pill); background: var(--gold); color: var(--plum-deep); font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.spotify-shell { margin-top: 44px; padding: 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 24px; background: rgba(255,255,255,.07); }
.spotify-shell iframe { width: 100%; height: 352px; border: 0; border-radius: 12px; }

.pull-quote { margin: 0; color: var(--paper); font-family: var(--display); font-size: clamp(2rem,4.8vw,4.7rem); font-weight: 700; letter-spacing: -.04em; line-height: 1.05; }

.check-list { display: grid; gap: 18px; margin: 36px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list li::before { flex: 0 0 12px; width: 12px; height: 12px; margin-top: 9px; border: 2px solid var(--plum); border-radius: 50%; content: ""; box-shadow: inset 0 0 0 3px var(--paper); background: var(--mint); }

.contact-layout { display: grid; grid-template-columns: minmax(0,.74fr) minmax(520px,1.26fr); gap: clamp(34px,7vw,84px); align-items: start; }
.contact-panel { position: sticky; top: 120px; }
.contact-methods { display: grid; gap: 16px; margin-top: 34px; }
.contact-method { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-md); text-decoration: none; }
.contact-method strong { display: block; color: var(--plum); font-family: var(--display); }
.form-shell { min-height: 790px; padding: clamp(18px,3vw,34px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow); }
.form-shell iframe { width: 100%; min-height: 720px; border: 0; }
.form-fallback { margin-top: 18px; color: var(--muted); font-size: .9rem; }

.site-footer { padding: 72px 0 30px; background: var(--plum-deep); color: rgba(255,255,255,.78); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .7fr .9fr; gap: 42px; }
.footer-brand { width: 244px; height: auto; }
.footer-tagline { max-width: 400px; margin-top: 24px; font-size: 1.25rem; }
.footer-title { margin-bottom: 18px; color: var(--gold); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .86rem; }

.notice { padding: 18px 22px; border-left: 4px solid var(--gold); background: rgba(255,234,194,.36); color: var(--plum-deep); }

.legal-copy { max-width: 820px; }
.legal-copy h2 { margin-top: 48px; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.legal-copy h3 { margin-top: 32px; font-size: 1.25rem; }
.legal-copy p, .legal-copy ul { margin-top: 16px; }
.legal-copy li + li { margin-top: 8px; }
.fine-print { color: var(--muted); font-size: .92rem; }
.provider-form-shell { min-height: 760px; margin-top: 42px; }
.provider-form-shell iframe { width: 100%; min-height: 700px; border: 0; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

@media (max-width: 1120px) {
  .site-header { backdrop-filter: none; }
  .menu-button { display: block; }
  .site-nav {
    position: fixed;
    inset: 86px 0 0;
    display: none;
    align-items: stretch;
    padding: 38px 20px;
    background: var(--paper);
    overflow-y: auto;
  }
  .site-nav[data-open="true"] { display: block; }
  .nav-list { align-items: stretch; flex-direction: column; gap: 0; }
  .nav-link { display: block; padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .site-nav > .button { width: 100%; margin-top: 24px; }
  .hero-content { width: 78%; }
  .cards { grid-template-columns: 1fr; }
  .course-details, .course-steps { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .pathway-grid, .resource-grid, .event-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-panel { position: static; }
}

@media (max-width: 760px) {
  :root { --wrap: min(100% - 28px, 1220px); }
  body { font-size: 17px; }
  .header-inner { min-height: 76px; }
  .brand { width: 160px; }
  .site-nav { inset-block-start: 76px; }
  .hero { min-height: 760px; align-items: end; }
  .hero::after { background: linear-gradient(180deg, rgba(35,18,65,.08) 0%, rgba(35,18,65,.48) 36%, rgba(35,18,65,.98) 76%); }
  .hero-media img { object-position: 54% center; }
  .hero-content { width: 100%; padding: 280px 0 64px; }
  h1 { font-size: clamp(3rem, 15vw, 4.9rem); }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media img { aspect-ratio: 4 / 4.8; border-radius: 120px 120px var(--radius-lg) var(--radius-lg); }
  .media-badge { right: 10px; }
  .path-band .wrap, .quote-grid { grid-template-columns: 1fr; }
  .credential-grid { grid-template-columns: 1fr; }
  .program { grid-template-columns: 56px 1fr; }
  .program .button { grid-column: 2; justify-self: start; }
  .contact-layout { display: block; }
  .form-shell { min-height: 820px; margin-top: 42px; padding: 10px; }
  .form-shell iframe { min-height: 790px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .pathway-grid, .resource-grid, .event-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .resource-card { min-height: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
