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

:root {
  --ink: #18212b;
  --muted: #5b6671;
  --teal: #236b73;
  --deep-teal: #0d4f5b;
  --rose: #f7c4dc;
  --rose-strong: #dc6d9f;
  --gold: #c9850d;
  --soft-blue: #dcebf0;
  --paper: #fffdfb;
  --panel: #ffffff;
  --line: rgba(24, 33, 43, 0.12);
  --shadow: 0 18px 45px rgba(34, 50, 67, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 17px;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fbfb 0%, #fff7fb 55%, #ffffff 100%);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

/* Header chrome is owned by css/chrome.css — do not restyle .site-header here */

.top-nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 210px 1fr 210px;
  align-items: center;
  gap: 22px;
}

.brand-mark {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  text-decoration: none;
}

.brand-mark img {
  width: 112px;
  height: 64px;
  object-fit: contain;
}

.brand-title {
  justify-self: center;
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  color: #050608;
  white-space: nowrap;
}

.nav-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  list-style: none;
  font-size: 1rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--deep-teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.hero {
  width: min(100% - 2.5rem, 1180px);
  margin: 1.5rem auto 2rem;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  text-align: left;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  color: #3f3648;
  border-radius: 28px;
  background: linear-gradient(135deg, #fffdfb 0%, #fff7fb 55%, #f4f9fa 100%);
  box-shadow: 0 18px 50px rgba(95, 74, 110, 0.08);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-copy {
  width: 100%;
  max-width: 36rem;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--deep-teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0.5rem 1rem;
  color: #9b4f78;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(233, 160, 196, 0.55);
  border-radius: 999px;
  text-shadow: none;
}

.hero h1 {
  max-width: none;
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.35rem, 4.5vw, 3.75rem);
  line-height: 1.08;
  font-weight: 700;
  color: #3f3648;
  letter-spacing: -0.02em;
  text-shadow: none;
}

.hero p:not(.eyebrow) {
  max-width: 34rem;
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.7;
  color: #5a5263;
  text-shadow: none;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.hero-media {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  border-radius: 22px;
  overflow: hidden;
  background: #eef4f5;
  box-shadow: 0 14px 36px rgba(55, 70, 88, 0.12);
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(420px, 55vh);
  object-fit: cover;
  object-position: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--rose-strong);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(119, 38, 83, 0.22);
}

.btn-primary:hover {
  background: #c9558c;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--deep-teal);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.intro-section,
.program-section,
.pathways-section,
.formats-section,
.resources-section,
.split-section,
.faq-section,
.cta-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 36px;
  align-items: center;
  padding: 74px 0 46px;
}

.intro-copy h2,
.section-heading h2,
.split-panel h2,
.process-panel h2,
.cta-section h2 {
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.18;
  font-weight: 760;
}

.intro-copy p:not(.section-kicker) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-stats {
  display: grid;
  gap: 14px;
}

.intro-stats div {
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(27, 42, 50, 0.08);
}

.intro-stats strong {
  display: block;
  color: var(--deep-teal);
  font-size: 1.12rem;
}

.intro-stats span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.program-section {
  padding: 36px 0 74px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.program-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.program-card img,
.program-visual {
  width: 100%;
  height: clamp(230px, 22vw, 305px);
  padding: 12px;
  object-fit: contain;
  background: linear-gradient(135deg, #fff8fb 0%, #edf7f8 100%);
  border-bottom: 1px solid rgba(24, 33, 43, 0.08);
}

.fallback-hidden {
  display: none;
}

.program-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.visual-audio span {
  width: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--rose-strong), var(--deep-teal));
  animation: none;
}

.visual-audio span:nth-child(1) {
  height: 80px;
}

.visual-audio span:nth-child(2) {
  height: 140px;
  animation-delay: 0.15s;
}

.visual-audio span:nth-child(3) {
  height: 104px;
  animation-delay: 0.3s;
}

@keyframes audioPulse {
  0%,
  100% {
    transform: scaleY(0.78);
  }

  50% {
    transform: scaleY(1);
  }
}

.program-card div:last-child {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.program-card h3 {
  color: var(--deep-teal);
  font-size: 1.18rem;
  line-height: 1.3;
  font-weight: 760;
  margin-bottom: 8px;
}

.program-card p,
.pathway-card p,
.split-panel p,
.process-list p {
  color: var(--muted);
}

.program-card a {
  display: inline-flex;
  margin-top: auto;
  padding-top: 18px;
  color: #9e3b6e;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.program-card a:hover {
  color: var(--deep-teal);
  transform: translateX(3px);
}

.pathways-section {
  padding: 8px 0 74px;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pathway-card {
  min-height: 270px;
  padding: 26px;
  border-radius: 8px;
  border: 1px solid rgba(24, 33, 43, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(34, 50, 67, 0.09);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.pathway-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #ffe6f1;
  color: #9e3b6e;
  font-size: 0.86rem;
  font-weight: 900;
}

.pathway-card h3 {
  margin-bottom: 10px;
  color: var(--deep-teal);
  font-size: 1.12rem;
  line-height: 1.32;
}

.formats-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1.16fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 74px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 251, 0.96), rgba(237, 247, 248, 0.92)),
    #ffffff;
  border: 1px solid rgba(220, 109, 159, 0.18);
  box-shadow: 0 18px 42px rgba(92, 68, 85, 0.1);
}

.formats-copy h2,
.resource-card h2 {
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.18;
}

.formats-copy p:not(.section-kicker),
.resource-card p:not(.section-kicker) {
  margin-top: 16px;
  color: var(--muted);
}

.format-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.format-list div {
  min-height: 132px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 33, 43, 0.08);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.format-list strong,
.resource-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--deep-teal);
  font-size: 1.04rem;
}

.format-list span,
.resource-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.resources-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: stretch;
  padding-bottom: 74px;
}

.resource-card,
.resource-grid a {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 14px 32px rgba(32, 49, 58, 0.08);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.resource-card {
  padding: clamp(26px, 4vw, 38px);
  background: linear-gradient(135deg, rgba(220, 235, 240, 0.92), rgba(255, 253, 251, 0.98));
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.resource-grid a {
  display: block;
  padding: 24px;
  text-decoration: none;
}

.resource-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(220, 109, 159, 0.5);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 24px;
  align-items: stretch;
  padding-bottom: 72px;
}

.split-panel,
.process-panel {
  border-radius: 8px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.split-panel {
  background: linear-gradient(135deg, rgba(220, 235, 240, 0.9), rgba(255, 253, 251, 0.96));
}

.split-panel p {
  margin-top: 16px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #2f3d46;
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.process-panel {
  background: var(--panel);
  box-shadow: 0 16px 36px rgba(32, 49, 58, 0.1);
}

.process-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.process-list span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ffe6f1;
  color: #9e3b6e;
  font-size: 0.9rem;
  font-weight: 900;
}

.process-list strong {
  display: block;
  color: var(--ink);
}

.faq-section {
  padding-bottom: 74px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(32, 49, 58, 0.07);
  overflow: hidden;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  color: #9e3b6e;
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 76px;
  padding: clamp(30px, 4.5vw, 46px);
  border-radius: 8px;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 247, 251, 0.9) 48%, rgba(237, 247, 248, 0.95) 100%),
    linear-gradient(135deg, #f8c6dd 0%, #c9bfd1 48%, #9eabb4 100%);
  color: var(--ink);
  border: 1px solid rgba(220, 109, 159, 0.26);
  box-shadow: 0 18px 42px rgba(92, 68, 85, 0.12);
}

.cta-section .section-kicker {
  color: #9e3b6e;
}

.cta-section h2 {
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

.cta-section .btn-primary {
  background: var(--rose-strong);
  color: #ffffff;
  flex: 0 0 auto;
  box-shadow: 0 12px 28px rgba(119, 38, 83, 0.2);
}

.program-card:hover,
.pathway-card:hover,
.format-list div:hover,
.resource-card:hover,
.resource-grid a:hover,
.split-panel:hover,
.process-panel:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 109, 159, 0.42);
  box-shadow: 0 22px 48px rgba(34, 50, 67, 0.14);
}

/* Old page footer chrome — disabled; shared footer.site-footer owns this */

@media (max-width: 900px) {
  .top-nav {
    grid-template-columns: 120px 1fr;
    min-height: 84px;
  }

  .brand-title {
    justify-self: end;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-self: center;
    padding-bottom: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(100% - 1.5rem, 1180px);
    padding: 1.35rem 1.25rem 1.5rem;
    gap: 1.35rem;
    min-height: auto;
  }

  .hero-copy {
    max-width: none;
    order: 1;
  }

  .hero-media {
    order: 2;
    max-width: none;
    margin: 0;
  }

  .hero-media img {
    max-height: 280px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .intro-section,
  .formats-section,
  .resources-section,
  .split-section,
  .program-grid,
  .pathway-grid {
    grid-template-columns: 1fr;
  }

  .pathway-card {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .top-nav,
  .intro-section,
  .program-section,
  .pathways-section,
  .formats-section,
  .resources-section,
  .split-section,
  .faq-section,
  .cta-section {
    width: min(100% - 28px, 1180px);
  }

  .top-nav {
    grid-template-columns: 86px 1fr;
    gap: 12px;
  }

  .brand-mark img {
    width: 82px;
    height: 52px;
  }

  .brand-title {
    font-size: 1.28rem;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.95rem;
  }

  .hero {
    margin-top: 1rem;
    border-radius: 20px;
    padding: 1.15rem 1rem 1.25rem;
    min-height: auto;
  }

  .hero-actions,
  .cta-section {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .intro-section {
    padding-top: 52px;
  }

  .format-list,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .program-card div:last-child,
  .pathway-card,
  .format-list div,
  .resource-grid a,
  .split-panel,
  .process-panel {
    padding: 22px;
  }

  .program-card div:last-child {
    display: flex;
  }

  .process-list li {
    grid-template-columns: 42px 1fr;
  }

  .process-list span {
    width: 42px;
    height: 42px;
  }
}
