:root {
  --navy: #0b1728;
  --navy-2: #10243e;
  --charcoal: #20252d;
  --ink: #17202b;
  --muted: #5f6874;
  --cream: #f6f1e7;
  --warm-white: #fffaf0;
  --paper: #fffcf6;
  --gold: #b9934a;
  --gold-2: #d7bd7b;
  --teal: #2d7c78;
  --burgundy: #7b2f45;
  --line: rgba(18, 35, 58, 0.14);
  --line-dark: rgba(255, 250, 240, 0.16);
  --shadow: 0 24px 70px rgba(11, 23, 40, 0.14);
  --radius: 8px;
  --banner-height: 42px;
  --header-height: 76px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
#diagnostic-form {
  scroll-margin-top: calc(var(--header-height) + var(--banner-height) + 18px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(45, 124, 120, 0.75);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--navy);
  color: var(--warm-white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 246, 0.9);
  border-bottom: 1px solid rgba(16, 36, 62, 0.1);
  backdrop-filter: blur(18px);
}

.announcement-bar {
  min-height: var(--banner-height);
  display: flex;
  align-items: center;
  background: var(--navy);
  color: var(--warm-white);
  border-bottom: 1px solid rgba(215, 189, 123, 0.22);
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: var(--banner-height);
  text-align: center;
}

.announcement-inner p {
  margin: 0;
  color: rgba(255, 250, 240, 0.88);
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.3;
}

.announcement-inner a {
  flex: 0 0 auto;
  border: 1px solid rgba(215, 189, 123, 0.58);
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
}

.announcement-inner a:hover {
  background: rgba(215, 189, 123, 0.1);
}

.announcement-short {
  display: none;
}

.announcement-cta-short {
  display: none;
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  display: block;
  object-fit: contain;
}

.brand-logo-full {
  width: 206px;
  height: auto;
}

.brand-logo-icon {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.86rem;
  font-size: 0.86rem;
  font-weight: 650;
}

.nav-menu a {
  color: var(--charcoal);
  text-decoration: none;
}

.nav-menu a:hover {
  color: var(--teal);
}

.nav-cta {
  border: 1px solid rgba(185, 147, 74, 0.55);
  border-radius: 999px;
  padding: 0.64rem 1rem;
  background: var(--navy);
  color: var(--warm-white) !important;
  box-shadow: 0 12px 30px rgba(11, 23, 40, 0.15);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--navy);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.section {
  position: relative;
  padding: 88px 0;
}

.section-light {
  background:
    linear-gradient(rgba(11, 23, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 23, 40, 0.035) 1px, transparent 1px),
    var(--cream);
  background-size: 42px 42px;
}

.section-dark {
  background:
    radial-gradient(circle at 12% 18%, rgba(45, 124, 120, 0.2), transparent 28%),
    linear-gradient(135deg, var(--navy), #07101c 72%);
  color: var(--warm-white);
}

.section-accent {
  background: var(--navy-2);
  color: var(--warm-white);
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 58px;
  padding-bottom: 74px;
  background:
    linear-gradient(rgba(11, 23, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 23, 40, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, var(--paper) 0%, var(--cream) 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.axis,
.vector {
  position: absolute;
  display: block;
  opacity: 0.15;
}

.axis-x {
  width: 360px;
  height: 1px;
  right: 8%;
  top: 22%;
  background: var(--teal);
  transform: rotate(-14deg);
}

.axis-y {
  width: 1px;
  height: 270px;
  right: 22%;
  top: 11%;
  background: var(--gold);
  transform: rotate(-14deg);
}

.vector {
  width: 150px;
  height: 2px;
  background: var(--burgundy);
  transform-origin: left center;
}

.vector::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -5px;
  border-left: 10px solid currentColor;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  color: var(--burgundy);
}

.vector-one {
  right: 18%;
  top: 34%;
  transform: rotate(32deg);
}

.vector-two {
  left: 8%;
  bottom: 16%;
  transform: rotate(-24deg);
  background: var(--teal);
}

.vector-two::after {
  color: var(--teal);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.76fr);
  gap: clamp(1.25rem, 2.8vw, 3rem);
  align-items: center;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
}

.hero-actions {
  grid-column: 1;
  grid-row: 2;
}

.hero-card {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.section-accent .eyebrow {
  color: var(--gold-2);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.08;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 700px;
  font-size: clamp(2.55rem, 4.35vw, 3.65rem);
  font-weight: 740;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.75rem);
  font-weight: 720;
}

h3 {
  font-size: 1.12rem;
  font-weight: 760;
}

.hero-subtitle {
  max-width: 620px;
  margin: 1.15rem 0 0;
  color: #394354;
  font-size: clamp(1.08rem, 1.75vw, 1.25rem);
  line-height: 1.55;
}

.cta-note {
  margin: 0.72rem 0 0;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 750;
}

.seasonal-callout {
  width: fit-content;
  margin: 0 0 0.85rem;
  border-left: 2px solid var(--gold);
  padding: 0.1rem 0 0.1rem 0.75rem;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 820;
}

.credential-line {
  max-width: 680px;
  margin: 0.75rem 0 0;
  color: #4f5b6a;
  font-size: 0.92rem;
  font-weight: 720;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--navy);
  color: var(--warm-white);
  border: 1px solid rgba(185, 147, 74, 0.55);
  box-shadow: 0 18px 42px rgba(11, 23, 40, 0.18);
}

.button-secondary {
  color: var(--navy);
  border: 1px solid rgba(16, 36, 62, 0.22);
  background: rgba(255, 252, 246, 0.72);
}

.section-dark .button-primary,
.section-accent .button-primary {
  background: var(--gold-2);
  color: var(--navy);
}

.location-list span {
  border: 1px solid rgba(16, 36, 62, 0.14);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.7);
  padding: 0.48rem 0.72rem;
  color: #344153;
  font-size: 0.85rem;
  font-weight: 700;
}

.parent-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 720px;
  margin-top: 1.1rem;
}

.parent-proof div {
  border-left: 1px solid rgba(185, 147, 74, 0.55);
  padding: 0.15rem 0 0.15rem 0.85rem;
}

.parent-proof span {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 800;
}

.parent-proof p {
  margin: 0.1rem 0 0;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.35;
}

.hero-card,
.feature-card,
.program-card,
.portrait-card {
  border: 1px solid rgba(16, 36, 62, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.86);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.video-placeholder {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(255, 250, 240, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 240, 0.08) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(45, 124, 120, 0.34), transparent 48%),
    var(--navy);
  background-size: 32px 32px, 32px 32px, auto, auto;
  color: var(--warm-white);
}

.play-button {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 189, 123, 0.68);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.08);
  color: var(--gold-2);
  cursor: default;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.play-button span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-left: 20px solid currentColor;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}

.formula-strip {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  color: rgba(255, 250, 240, 0.42);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
}

.hero-card-copy {
  padding: 1.25rem;
}

.card-kicker,
.program-label {
  margin: 0 0 0.45rem;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card-copy h2 {
  font-family: inherit;
  font-size: 1.3rem;
}

.hero-card-copy p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.summer-landing-hero {
  min-height: auto;
  overflow: hidden;
  padding: 72px 0;
  background:
    linear-gradient(rgba(11, 23, 40, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 23, 40, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, var(--paper), var(--cream));
  background-size: 48px 48px, 48px 48px, auto;
}

.landing-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.55fr);
  gap: clamp(1.5rem, 4vw, 4.5rem);
  align-items: center;
}

.landing-hero-copy h1 {
  max-width: 760px;
}

.trust-line {
  max-width: 640px;
  margin: 1rem 0 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 820;
}

.landing-detail-card {
  border: 1px solid rgba(16, 36, 62, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 250, 240, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 240, 0.08) 1px, transparent 1px),
    var(--navy);
  background-size: 32px 32px, 32px 32px, auto;
  box-shadow: var(--shadow);
  color: var(--warm-white);
  padding: 1.3rem;
}

.landing-detail-card h2 {
  margin-bottom: 1rem;
  font-family: inherit;
  font-size: 1.25rem;
}

.hero-detail-strip {
  display: grid;
  gap: 0.65rem;
}

.hero-detail-strip span {
  border: 1px solid rgba(215, 189, 123, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.06);
  padding: 0.72rem 0.78rem;
  color: rgba(255, 250, 240, 0.9);
  font-weight: 780;
  line-height: 1.35;
}

.video-proof-list {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.video-proof-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 750;
}

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

.section-heading {
  max-width: 780px;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.need-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.need-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.need-list article {
  position: relative;
  border: 1px solid rgba(16, 36, 62, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.76);
  padding: 1rem 1rem 1rem 2.1rem;
  color: var(--charcoal);
  font-weight: 760;
  line-height: 1.42;
}

.need-list article::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.35rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(45, 124, 120, 0.1);
}

.diagnostic-section {
  padding: 48px 0;
  background: var(--navy);
  color: var(--warm-white);
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.diagnostic-section .section-heading {
  margin-bottom: 0;
}

.diagnostic-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.76);
}

.diagnostic-card {
  border: 1px solid rgba(215, 189, 123, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.07);
  padding: 1.35rem;
}

.diagnostic-card h3 {
  margin-bottom: 0.8rem;
}

.diagnostic-card ul {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0 0 1.2rem;
  list-style: none;
}

.diagnostic-card li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(255, 250, 240, 0.82);
}

.diagnostic-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-2);
}

.section-dark .section-heading p:not(.eyebrow),
.section-accent .section-heading p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.76);
}

.feature-grid,
.discipline-grid,
.expect-grid,
.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-card,
.expect-grid article {
  padding: 1.35rem;
}

.feature-card p,
.discipline-grid p,
.program-card p,
.program-card dd,
.about-copy p,
.faq-list p,
.expect-grid p,
.local-grid p,
.final-cta p,
.site-footer p {
  color: var(--muted);
}

.line-icon {
  display: block;
  width: 48px;
  height: 32px;
  margin-bottom: 1rem;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--gold);
  position: relative;
}

.line-icon::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  width: 28px;
  height: 2px;
  background: var(--burgundy);
  transform: rotate(-28deg);
}

.line-icon-dots::before,
.line-icon-plan::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  right: 7px;
  top: 0;
}

.line-icon-steps::after {
  width: 36px;
  transform: none;
  box-shadow: -12px 10px 0 var(--burgundy), -24px 20px 0 var(--burgundy);
}

.discipline-grid {
  grid-template-columns: repeat(3, 1fr);
}

.discipline-grid article,
.fit-grid article {
  border-top: 1px solid rgba(185, 147, 74, 0.5);
  padding: 1.35rem 0 0;
}

.readiness-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(16, 36, 62, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.82);
  padding: 1.2rem;
  box-shadow: 0 18px 50px rgba(11, 23, 40, 0.08);
}

.readiness-intro h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.readiness-intro p {
  margin: 0;
  color: var(--muted);
}

.readiness-line {
  margin-top: 0.7rem !important;
  color: var(--navy) !important;
  font-weight: 800;
}

.readiness-intro ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.readiness-intro li {
  position: relative;
  padding-left: 1rem;
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 740;
  line-height: 1.42;
}

.readiness-intro li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

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

.course-card {
  border: 1px solid rgba(16, 36, 62, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.9);
  padding: 1.08rem;
  box-shadow: 0 18px 50px rgba(11, 23, 40, 0.08);
}

.course-card h3 {
  font-size: 1.04rem;
}

.course-card p {
  margin: 0.55rem 0 0;
}

.course-card .program-fit {
  color: var(--charcoal);
  font-size: 0.91rem;
  font-weight: 780;
}

.course-card .program-points {
  margin-bottom: 0;
}

.course-card .program-points li {
  color: var(--muted);
}

.flagship-course-grid .course-card {
  display: flex;
  flex-direction: column;
}

.course-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.landing-course-details {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.course-details article {
  border: 1px solid rgba(16, 36, 62, 0.13);
  border-radius: var(--radius);
  background: rgba(246, 241, 231, 0.6);
  padding: 0.85rem;
}

.course-details span {
  display: block;
  margin-bottom: 0.22rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.course-details p {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 730;
  line-height: 1.4;
}

.request-note {
  margin-top: 1rem;
  border: 1px solid rgba(16, 36, 62, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.82);
  padding: 1rem;
}

.request-note p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.request-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.request-tags span {
  border: 1px solid rgba(185, 147, 74, 0.38);
  border-radius: 999px;
  background: rgba(185, 147, 74, 0.08);
  padding: 0.38rem 0.62rem;
  color: var(--charcoal);
  font-size: 0.84rem;
  font-weight: 760;
}

.light-cta {
  border-color: rgba(16, 36, 62, 0.13);
  background: var(--navy);
}

.summer-cta {
  align-items: center;
}

.summer-cta h3 {
  color: var(--warm-white);
  font-size: 1.08rem;
}

.summer-cta p {
  margin-top: 0.45rem;
}

.compact-cta-row {
  flex: 0 0 auto;
  margin-top: 0;
}

.dark-secondary {
  color: var(--warm-white);
  border-color: rgba(255, 250, 240, 0.28);
  background: rgba(255, 250, 240, 0.07);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.light-card {
  background: var(--navy);
  color: var(--warm-white);
}

.light-card li {
  color: rgba(255, 250, 240, 0.82);
}

.landing-request-note h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.center-cta-row {
  justify-content: center;
  margin-top: 1.3rem;
}

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

.program-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 1.12rem;
  background: rgba(255, 250, 240, 0.06);
  border-color: var(--line-dark);
  box-shadow: none;
}

.program-card-wide {
  grid-column: auto;
}

.program-card p,
.program-card dd {
  color: rgba(255, 250, 240, 0.75);
}

.program-card h3 {
  font-size: 1.05rem;
}

.program-card p {
  margin: 0.55rem 0 0;
  line-height: 1.5;
}

.program-card .program-fit {
  color: rgba(255, 250, 240, 0.9);
  font-size: 0.92rem;
  font-weight: 780;
}

.program-points {
  display: grid;
  gap: 0.35rem;
  padding: 0;
  margin: 0.85rem 0 1rem;
  list-style: none;
}

.program-points li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.9rem;
  line-height: 1.42;
}

.program-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-2);
}

.mini-disclaimer {
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  padding-top: 0.8rem;
}

.summer-disclaimer {
  margin: 1rem 0 0;
  color: var(--muted);
  border-top-color: rgba(16, 36, 62, 0.13);
}

.program-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid rgba(215, 189, 123, 0.42);
  border-radius: 999px;
  padding: 0.68rem 0.9rem;
  color: var(--gold-2);
  background: rgba(255, 250, 240, 0.06);
  font-size: 0.86rem;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.program-button:hover,
.text-link:hover {
  background: rgba(215, 189, 123, 0.12);
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: rgba(255, 250, 240, 0.06);
}

.section-cta p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 250, 240, 0.8);
}

.path-compare {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.path-compare article {
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.05);
  padding: 1rem;
}

.path-compare h3 {
  font-size: 1rem;
}

.path-compare p {
  margin: 0.5rem 0 0;
  color: rgba(255, 250, 240, 0.76);
  font-size: 0.92rem;
}

.method-layout,
.about-grid,
.local-grid,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.method-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  border-bottom: 1px solid rgba(16, 36, 62, 0.13);
  padding: 0 0 1rem;
}

.method-list span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.method-list p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.about-grid {
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  align-items: center;
}

.portrait-card {
  width: min(100%, 300px);
  justify-self: center;
  padding: 0.7rem;
}

.founder-photo {
  display: block;
  width: 100%;
  aspect-ratio: 354 / 388;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.04) saturate(1.03);
}

.credential-list {
  display: grid;
  gap: 0.6rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.credential-list li {
  position: relative;
  padding-left: 1.4rem;
}

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

.fit-grid {
  grid-template-columns: repeat(5, 1fr);
}

.fit-grid article {
  font-weight: 760;
}

.expect-grid {
  grid-template-columns: repeat(3, 1fr);
}

.expect-grid article {
  margin: 0;
  border: 1px solid rgba(16, 36, 62, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.86);
  box-shadow: var(--shadow);
}

.expect-grid {
  grid-template-columns: repeat(4, 1fr);
}

.expect-grid article h3 {
  margin-bottom: 0.55rem;
}

.expect-grid article p {
  margin: 0;
}

.placeholder-note {
  font-size: 0.95rem !important;
}

.local-grid {
  align-items: center;
}

.local-grid p {
  color: rgba(255, 250, 240, 0.78);
}

.section-accent h2 {
  font-size: clamp(1.95rem, 3.2vw, 3rem);
}

.local-cta {
  width: fit-content;
  margin-top: 1rem;
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.location-list span {
  border-color: rgba(255, 250, 240, 0.18);
  background: rgba(255, 250, 240, 0.08);
  color: var(--warm-white);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid rgba(16, 36, 62, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.7);
}

summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  color: var(--navy);
  font-weight: 800;
}

summary::marker {
  color: var(--gold);
}

details p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(rgba(255, 250, 240, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 240, 0.08) 1px, transparent 1px),
    var(--navy);
  background-size: 44px 44px;
  color: var(--warm-white);
}

.final-cta-inner {
  max-width: 760px;
}

.final-cta p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.78);
  font-size: 1.1rem;
}

.form-section {
  background:
    linear-gradient(rgba(11, 23, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 23, 40, 0.035) 1px, transparent 1px),
    var(--cream);
  background-size: 42px 42px;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.form-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.form-expectation {
  margin-top: 1.4rem;
  border-left: 1px solid rgba(185, 147, 74, 0.55);
  padding-left: 1rem;
}

.form-expectation ol {
  display: grid;
  gap: 0.5rem;
  padding-left: 1.1rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.diagnostic-form {
  border: 1px solid rgba(16, 36, 62, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.9);
  box-shadow: var(--shadow);
  padding: 1.35rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.95rem;
}

.form-field label,
.form-field legend {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 820;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(16, 36, 62, 0.18);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 0.78rem 0.85rem;
}

.form-field textarea {
  resize: vertical;
}

.form-field fieldset,
fieldset.form-field {
  border: 0;
  padding: 0;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
  margin-top: 0.15rem;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(16, 36, 62, 0.12);
  border-radius: var(--radius);
  background: rgba(246, 241, 231, 0.58);
  padding: 0.62rem 0.7rem;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 720;
}

.checkbox-grid input {
  width: auto;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-footnote {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.honeypot-input {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  padding: 54px 0 88px;
  background: #07101c;
  color: var(--warm-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1fr;
  gap: 2rem;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 250, 240, 0.72);
}

.footer-logo {
  width: 230px;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.site-footer h2 {
  margin: 0 0 0.7rem;
  font-family: inherit;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a {
  text-decoration-color: rgba(215, 189, 123, 0.45);
  text-underline-offset: 4px;
}

.footer-contact {
  margin: 1rem 0 0;
}

.footer-bottom {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 250, 240, 0.14);
  padding-top: 1.5rem;
}

.legal-disclaimer {
  max-width: 980px;
  font-size: 0.78rem;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: calc(var(--header-height) + var(--banner-height)) 0 auto;
    display: grid;
    gap: 0;
    padding: 0.75rem 1rem 1.2rem;
    background: rgba(255, 252, 246, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 40px rgba(11, 23, 40, 0.14);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 180ms ease, visibility 180ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .nav-menu a {
    padding: 0.9rem 0.2rem;
  }

  .nav-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 0.4rem;
    padding: 0.85rem 1rem !important;
  }

  .hero-grid,
  .landing-hero-grid,
  .diagnostic-grid,
  .need-grid,
  .readiness-intro,
  .support-grid,
  .form-grid,
  .method-layout,
  .about-grid,
  .local-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: start;
    min-height: auto;
  }

  .hero-copy,
  .hero-card,
  .hero-actions {
    grid-column: 1;
    grid-row: auto;
  }

  .feature-grid,
  .discipline-grid,
  .course-grid,
  .course-details,
  .path-compare,
  .expect-grid,
  .fit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .summer-page .nav-menu {
    inset: var(--header-height) 0 auto;
  }
}

@media (max-width: 720px) {
  :root {
    --banner-height: 46px;
    --header-height: 68px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand-logo-full {
    display: none;
  }

  .brand-logo-icon {
    display: block;
    width: 42px;
    height: 42px;
  }

  .section {
    padding: 64px 0;
  }

  .announcement-inner {
    justify-content: space-between;
    gap: 0.65rem;
  }

  .announcement-inner p {
    text-align: left;
    font-size: 0.78rem;
  }

  .announcement-full {
    display: none;
  }

  .announcement-short {
    display: inline;
  }

  .announcement-cta-full {
    display: none;
  }

  .announcement-cta-short {
    display: inline;
  }

  .announcement-inner a {
    padding: 0.31rem 0.56rem;
    font-size: 0.74rem;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 56px;
  }

  .summer-landing-hero {
    padding: 54px 0 58px;
  }

  h1 {
    font-size: clamp(2.2rem, 10.5vw, 3.15rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

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

  .button {
    width: 100%;
  }

  .parent-proof {
    grid-template-columns: 1fr;
  }

  .video-placeholder {
    min-height: 190px;
  }

  .hero-card-copy {
    padding: 1rem;
  }

  .hero-card-copy h2 {
    font-size: 1.05rem;
  }

  .hero-card-copy p,
  .hero-card-copy .video-proof-list {
    display: none;
  }

  .feature-grid,
  .discipline-grid,
  .program-grid,
  .course-grid,
  .course-details,
  .landing-course-details,
  .path-compare,
  .expect-grid,
  .fit-grid,
  .form-row,
  .readiness-intro ul,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .program-card-wide {
    grid-column: auto;
  }

  .need-list {
    grid-template-columns: 1fr;
  }

  .method-list li {
    grid-template-columns: 46px 1fr;
  }

  .founder-photo {
    aspect-ratio: 354 / 388;
  }

  .site-footer {
    padding-bottom: 106px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    display: block;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(7, 16, 28, 0.94);
    border-top: 1px solid rgba(215, 189, 123, 0.32);
    backdrop-filter: blur(16px);
  }

  .mobile-sticky-cta.is-hidden {
    display: none;
  }

  .mobile-sticky-cta a {
    display: flex;
    justify-content: center;
    border-radius: 999px;
    background: var(--gold-2);
    color: var(--navy);
    padding: 0.85rem 1rem;
    font-weight: 850;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
