@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@400;500;700&family=Poppins:ital,wght@0,500;0,700;1,500;1,700&family=Raleway:wght@600;700&display=swap");
@import "variables.css";
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}
body {
  margin: 0;
  font-family: var(--font-open-sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-black);
  background: var(--color-white);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}
.container {
  width: min(100%, var(--site-width));
  margin-inline: auto;
  padding-inline: 16px;
}

/* Announcement bar */

.announcement-bar {
  display: block;
  background: var(--color-gold-dark);
  color: var(--color-text-muted);
  text-align: center;
  padding: 10px 16px;
}

.announcement-bar p {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Site header */

.site-header {
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 4px 8px;
  min-height: 100px;
  padding: 0;
  position: relative;
  overflow: visible;
}

.site-header__nav--left,

.site-header__nav--right,

.site-header__logo {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.site-header__nav--left .site-header__nav-list {
  justify-content: flex-end;
}

.site-header__nav--right .site-header__nav-list {
  justify-content: flex-start;
}

.site-header__logo {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-header__logo-img,
.site-header__logo img {
  width: 102px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.site-header__brand {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  font-family: "Montserrat", var(--font-open-sans), sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #c08f26;
  white-space: nowrap;
}
.site-header__brand-line {
  display: block;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header__nav--left {
  justify-content: flex-end;
}

.site-header__nav--right {
  justify-content: flex-start;
}
.nav-item {
  position: relative;
}
.nav-item__link {
  display: block;
  padding: 10px 8px;
  font-family: var(--font-open-sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-black);
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s ease;
}
.nav-item__link:hover,
.nav-item.is-open .nav-item__link,
.nav-item__link.is-active {
  border-bottom-color: var(--color-gold-dark);
}
.nav-item__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  min-width: 240px;
  max-width: 320px;
  background: var(--color-white);
  border-radius: 0;
  padding: 16px 20px 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  z-index: 1100;
}

/* Left nav: keep panel on screen */

.site-header__nav--left .nav-item:first-child .nav-item__dropdown {
  left: 0;
  transform: none;
}

/* Right nav: align panel to the right edge of the link */

.site-header__nav--right .nav-item__dropdown {
  left: auto;
  right: 0;
  transform: none;
}

/* Hover bridge so the menu doesn't close between link and panel */
.nav-item__dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}
.nav-item.has-children:hover .nav-item__dropdown,
.nav-item.has-children.is-open .nav-item__dropdown,
.nav-item.has-children:focus-within .nav-item__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-item__dropdown-heading {
  display: block;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-gold-dark);
  font-family: var(--font-helvetica-light);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--color-black);
  text-transform: uppercase;
}
.nav-item__dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-item__dropdown-list li {
  display: block;
  width: 100%;
}
.nav-item__dropdown-link {
  display: block;
  width: 100%;
  padding: 9px 0;
  font-family: var(--font-helvetica-light);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-black);
  transition: color 0.15s ease;
  white-space: normal;
}
.nav-item__dropdown-link:hover,
.nav-item__dropdown-link.is-active {
  text-decoration: underline;
}

/* Mobile menu toggle - matches live Wix mobile header */
.mobile-menu-toggle {
  display: none;
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  width: 58px;
  height: 58px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #eaaa34;
  flex-shrink: 0;
  box-shadow: none;
  border: 0;
}
.mobile-nav {
  display: none;
}
.mobile-menu-toggle__icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  width: 26px;
}
.mobile-menu-toggle__line {
  display: block;
  height: 3px;
  border-radius: 1px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
}
/* Short / long / short, left-aligned (live site) */
.mobile-menu-toggle__line--1 {
  width: 14px;
}
.mobile-menu-toggle__line--2 {
  width: 26px;
}
.mobile-menu-toggle__line--3 {
  width: 14px;
}
.mobile-menu-toggle.is-active .mobile-menu-toggle__icon {
  position: relative;
  width: 26px;
  height: 26px;
  gap: 0;
  align-items: center;
}
.mobile-menu-toggle.is-active .mobile-menu-toggle__line--1 {
  position: absolute;
  top: 11.5px;
  left: 0;
  width: 26px;
  transform: rotate(45deg);
}
.mobile-menu-toggle.is-active .mobile-menu-toggle__line--2 {
  opacity: 0;
  width: 0;
}
.mobile-menu-toggle.is-active .mobile-menu-toggle__line--3 {
  position: absolute;
  top: 11.5px;
  left: 0;
  width: 26px;
  transform: rotate(-45deg);
}

/* Hero section */

.hero {
  position: relative;
  background: var(--color-white);
}

.hero__media {
  position: relative;
  width: 100%;
  min-height: 748px;
  overflow: hidden;
}

.hero__image {
  display: block;
  width: 100%;
  height: 748px;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero__overlay {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(771px, 79%);
  background: var(--color-overlay);
  pointer-events: none;
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
}

.hero__content-inner {
  width: min(771px, 79%);
  max-width: calc(var(--site-width) - 55px);
  padding: 102px 55px 63px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero__title {
  margin: 0 0 21px;
  font-family: var(--font-poppins);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}

.hero__text {
  margin: 0 0 32px;
  max-width: 660px;
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  background: var(--color-gold-dark);
  color: var(--color-white);
  font-family: var(--font-poppins);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.btn__label--short {
  display: none;
}
.btn:hover {
  background: #444343;
}
.btn--enroll {
  min-width: 172px;
}
.btn--schedule {
  min-width: 308px;
}
.btn--learn {
  min-width: 172px;
}

/* Shared section styles */
.section-cream {
  background: var(--color-cream);
}
.section-title {
  margin: 0;
  text-align: center;
  font-family: var(--font-raleway);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}
.section-title--gold {
  color: var(--color-gold-dark);
}
.section-heading {
  margin: 0 0 10px;
  font-family: var(--font-poppins);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gold-dark);
  text-align: center;
}
.section-subtitle {
  margin: 0 0 24px;
  font-family: var(--font-raleway);
  font-size: 37px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-gold);
  text-align: center;
}

/* Scholarship section */
.scholarship {
  padding-top: 69px;
}
.scholarship__content {
  text-align: center;
}
.scholarship__title {
  margin: 0;
  font-family: var(--font-raleway);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gold-dark);
}
.scholarship__subtitle {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  color: var(--color-gold-dark);
}
.scholarship__text {
  margin: 0 auto 26px;
  max-width: 802px;
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-black);
}
.scholarship__action {
  display: flex;
  justify-content: center;
  padding-bottom: 44px;
}

/* Why families - full-width three-column strip (202 : 549 : 203 on Wix) */
.why-families {
  scroll-margin-top: 150px;
  width: 100%;
  background: var(--color-white);
}
.why-families__strip {
  display: grid;
  grid-template-columns: 202fr 549fr 203fr;
  width: 100%;
  min-height: 862px;
}
.why-families__col--media {
  position: relative;
  overflow: hidden;
  min-height: 862px;
}
.why-families__col--media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.why-families__col--content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--color-white);
  padding: 94px 40px 48px;
  text-align: center;
}
.why-families__title {
  max-width: 611px;
  margin: 0 auto 10px;
  font-family: var(--font-poppins);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gold-dark);
}
.why-families__col--content p {
  max-width: 628px;
  margin: 0 auto 10px;
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-black);
}

/* What sets us apart - text left, image right (Wix comp-m197mqxt) */
.apart-section {
  background: var(--color-white);
  padding: 0 0 57px;
}
.apart-section__layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 73px 0 0;
}
.apart-section__text {
  max-width: 571px;
  padding-left: 15px;
  flex-shrink: 0;
}
.apart-section__title {
  max-width: 600px;
  margin: 0 0 49px;
  font-family: var(--font-poppins);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gold-dark);
}
.apart-section__text p {
  margin: 0 0 10px;
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-black);
}
.apart-section__image {
  flex-shrink: 0;
  width: 374px;
  height: 482px;
  border-radius: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

/* Services - cream section, image left, service cards right (Wix comp-llpidjw0) */
.services {
  background: var(--color-cream);
  padding: 82px 0 69px;
}
.services__layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}
.services__visual {
  position: relative;
  flex-shrink: 0;
  width: 474px;
  min-height: 556px;
}
.services__image-accent {
  position: absolute;
  top: 31px;
  left: 27px;
  width: 439px;
  height: 515px;
  background: var(--color-gold-dark);
  border-radius: 30px;
  z-index: 0;
}
.services__photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 447px;
  height: 525px;
  border-radius: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}
.services__content {
  flex: 1;
  max-width: 419px;
  padding-top: 31px;
}
.services__title {
  margin: 0 0 17px;
  font-family: var(--font-raleway);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gold-dark);
}
.services__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 28px;
  padding: 0;
}
.services__item {
  display: flex;
  align-items: stretch;
  width: 367px;
  max-width: 100%;
  margin-bottom: 17px;
  background: var(--color-white);
  box-shadow: 0 1px 9px rgba(0, 0, 0, 0.13);
}
.services__item:last-child {
  margin-bottom: 0;
}
.services__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 61px;
  background: var(--color-gold-dark);
}
.services__icon img {
  width: 37px;
  height: 37px;
  object-fit: contain;
}
.services__label {
  display: flex;
  flex: 1;
  align-items: center;
  padding: 17px 14px 17px 16px;
  font-family: var(--font-open-sans);
  font-size: 15px;
  line-height: 1.2;
  color: var(--color-black);
}
.services__action {
  display: flex;
  justify-content: flex-start;
}

/* CTA section */
.cta-section {
  background: var(--color-white);
  padding: 48px 0 64px;
}
.cta-section__inner {
  text-align: center;
}
.cta-section__text {
  margin: 0 auto 28px;
  max-width: 820px;
  font-family: var(--font-open-sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-black);
}

/* Footer */
.site-footer {
  width: 100%;
  color: var(--color-black);
}
.site-footer__main {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-white);
}
.site-footer__watermark {
  position: absolute;
  inset: 0;
  width: 100%;
  pointer-events: none;
}
.site-footer__watermark img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 399px;
  object-fit: cover;
  object-position: center;
  opacity: 0.22;
}
.site-footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding: 70px 0 36px;
}
.site-footer__column--links {
  padding-left: 22px;
}
.site-footer__column--brand {
  justify-self: center;
  padding-top: 15px;
}
.site-footer__column--contact {
  justify-self: end;
  max-width: 280px;
  padding-right: 4px;
}
.site-footer__logo {
  display: block;
  width: 170px;
  height: auto;
}
.site-footer__heading {
  margin: 0 0 10px;
  font-family: var(--font-raleway);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-gold-dark);
  text-transform: uppercase;
}
.site-footer__heading--spaced {
  margin-top: 28px;
}
.site-footer__rule {
  width: 100%;
  max-width: 180px;
  height: 2px;
  margin-bottom: 16px;
  background: var(--color-gold-dark);
}
.site-footer__links {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.site-footer__links a {
  font-family: var(--font-open-sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-black);
  transition: color 0.15s ease;
}
.site-footer__links a.is-active,
.site-footer__links a:hover {
  color: var(--color-gold-dark);
}
.site-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
}
.site-footer__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-gold-dark);
  color: var(--color-white);
}
.site-footer__contact-item a {
  font-family: var(--font-poppins);
  font-size: 16px;
  color: #393939;
  letter-spacing: -0.05em;
}
.site-footer__contact-item a:hover {
  color: var(--color-gold-dark);
}
.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.site-footer__social a {
  display: block;
  line-height: 0;
}
.site-footer__social img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}
.site-footer__bottom {
  width: 100%;
  background: var(--color-gold-dark);
  color: var(--color-white);
  padding: 16px 0 24px;
  text-align: center;
}
.site-footer__bottom p {
  margin: 0 0 6px;
  font-family: var(--font-poppins);
  font-size: 15px;
}
.site-footer__bottom a,
.site-footer__bottom strong {
  color: var(--color-white);
  font-weight: 700;
}

/* Mission & Vision page */
.mission-page {
  background: var(--color-white);
}
.mv-section {
  position: relative;
  overflow: visible;
  padding: 42px 0 64px;
}
.mv-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mv-section__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(2px);
  transform: scale(1.04);
}
.mv-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(36, 35, 35, 0.45);
}
.mv-section__inner {
  position: relative;
  z-index: 1;
  padding-block: 0;
}
.mv-panel {
  background: rgba(192, 143, 38, 0.86);
  border-radius: 87px;
  padding: 48px 40px 56px;
  overflow: visible;
}
.mv-panel__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 24px;
  row-gap: 48px;
  align-items: center;
  min-height: 1100px;
  overflow: visible;
}
.mv-block {
  color: var(--color-white);
}
.mv-block--mission-media {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  margin-left: -36px;
  z-index: 2;
}
.mv-block--mission-text {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  max-width: 430px;
  text-align: right;
  padding-top: 48px;
}
.mv-block--vision-text {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  align-self: start;
  max-width: 400px;
  text-align: left;
  padding-top: 24px;
  padding-left: 8px;
}
.mv-block--vision-media {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: end;
  margin-right: -52px;
  margin-bottom: -12px;
  z-index: 2;
}
.mv-block--mission-text .mv-panel__icon,
.mv-block--mission-text .mv-panel__title {
  margin-left: auto;
}
.mv-panel__icon {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
}
.mv-panel__title {
  margin: 0 0 20px;
  font-family: var(--font-poppins);
  font-size: clamp(2rem, 4.5vw, 62px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
}
.mv-block p {
  margin: 0 0 18px;
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white);
}
.mv-block p:last-child {
  margin-bottom: 0;
}
.mv-circle {
  position: relative;
  flex-shrink: 0;
}
.mv-circle--sm {
  width: 377px;
  max-width: 100%;
  aspect-ratio: 377 / 339;
}
.mv-circle--lg {
  width: min(500px, 100%);
  aspect-ratio: 500 / 450;
}
.mv-circle__photo {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
}
.mv-circle--sm .mv-circle__photo {
  width: 60.2%;
  height: auto;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mv-circle--lg .mv-circle__photo {
  width: 60.4%;
  height: auto;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mv-circle__frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  pointer-events: none;
}

/* Values page */
.values-page {
  background: var(--color-white);
}
.values-section {
  background: var(--color-white);
}
.values-section__layout {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 828px;
  margin: 0;
}
.values-section__media {
  flex: 0 0 33.37%;
  width: 33.37%;
  min-height: 828px;
}
.values-section__photo {
  width: 100%;
  height: 100%;
  min-height: 828px;
  object-fit: cover;
  object-position: 62% center;
}
.values-section__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 61px clamp(32px, 5vw, 80px) 64px clamp(28px, 4vw, 56px);
  background: var(--color-white);
}
.values-section__title {
  margin: 0 0 55px;
  width: min(100%, 640px);
  font-family: var(--font-poppins);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: var(--color-gold-dark);
}
.values-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(32px, 6vw, 83px);
  row-gap: 24px;
  width: min(100%, 640px);
}
.values-item {
  margin: 0;
}
.values-item:nth-child(1),
.values-item:nth-child(2) {
  margin-top: 11px;
}
.values-item__title {
  margin: 0 0 8px;
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--color-gold-dark);
}
.values-item p {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-black);
}

/* Parents & Educators page */
.parents-page {
  background: var(--color-white);
}
.pe-hero {
  position: relative;
  overflow: hidden;
  padding: 39px 0 36px;
}
.pe-hero__bg {
  position: absolute;
  inset: 0;
}
.pe-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.15;
}
.pe-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #eaaa34 0%, #c08f26 100%);
}
.pe-hero__inner {
  position: relative;
  z-index: 1;
}
.pe-hero__title {
  margin: 0 0 26px;
  font-family: var(--font-poppins);
  font-size: clamp(2rem, 5vw, 45px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  color: var(--color-white);
}
.pe-hero__card {
  width: min(100%, 940px);
  margin-inline: auto;
  padding: 52px 56px;
  background: var(--color-white);
  border-radius: 37px;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.15);
}
.pe-hero__text {
  margin: 0 0 18px;
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-gold-dark);
}
.pe-hero__text strong {
  font-weight: 700;
}
.pe-hero__text--left {
  text-align: left;
}
.pe-hero__text--center {
  text-align: center;
}
.pe-hero__text--lead {
  margin-top: 8px;
  margin-bottom: 12px;
}
.pe-hero__text:last-child {
  margin-bottom: 0;
}
.pe-carousel {
  position: relative;
  min-height: 394px;
  overflow: hidden;
}
.pe-carousel__viewport {
  height: 394px;
  overflow: hidden;
}
.pe-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 1000ms ease;
}
.pe-carousel__slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 394px;
}
.pe-carousel__slide--cream {
  background: var(--color-cream);
}
.pe-carousel__slide--white {
  background: var(--color-white);
}
.pe-carousel__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  padding-block: 48px;
}
.pe-carousel__title {
  margin: 0;
  max-width: 980px;
  font-family: var(--font-poppins);
  font-size: clamp(1.75rem, 5vw, 45px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-gold-dark);
  text-transform: uppercase;
}
.pe-carousel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 142px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--color-gold-dark);
  border-radius: 0;
  background: var(--color-white);
  color: var(--color-gold-dark);
  font-family: var(--font-poppins);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pe-carousel__btn:hover {
  background: var(--color-gold-dark);
  color: var(--color-white);
}
.pe-carousel__slide:nth-child(2) .pe-carousel__btn {
  min-width: 181px;
}
.pe-carousel__chevron {
  font-size: 16px;
  line-height: 1;
}
.pe-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 83px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-black);
  transform: translateY(-50%);
  cursor: pointer;
}
.pe-carousel__arrow svg {
  width: 39px;
  height: 11px;
  fill: currentColor;
}
.pe-carousel__arrow--prev {
  left: max(16px, calc(50% - 590px));
}
.pe-carousel__arrow--next {
  right: max(16px, calc(50% - 590px));
}
.pe-carousel__arrow:hover {
  opacity: 0.65;
}
.pe-carousel__arrow:focus-visible {
  outline: 2px solid var(--color-gold-dark);
  outline-offset: 4px;
}

/* Scholarship & Sponsorships page */
.ss-page {
  background: var(--color-white);
}
.ss-intro {
  background: var(--color-white);
}
.ss-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 279px;
  align-items: center;
  gap: 32px;
  width: min(100%, var(--site-width));
  max-width: var(--site-width);
  margin-inline: auto;
  padding: 66px 16px 42px;
}
.ss-intro__title {
  margin: 0 0 17px;
  font-family: var(--font-poppins);
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-gold-dark);
}
.ss-intro__text {
  margin: 0;
  max-width: 640px;
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-gold-dark);
}
.ss-intro__logo-wrap {
  justify-self: end;
}
.ss-intro__logo {
  display: block;
  width: 279px;
  max-width: 100%;
  height: auto;
}
.ss-sponsor {
  width: 100%;
}
.ss-sponsor__strip {
  display: grid;
  grid-template-columns: 327fr 653fr;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  min-height: 618px;
}
.ss-sponsor--witness .ss-sponsor__content {
  background: var(--color-cream);
}
.ss-sponsor--hart .ss-sponsor__strip {
  grid-template-columns: 1fr 1fr;
  background: var(--color-cream);
}
.ss-sponsor--hart .ss-sponsor__content {
  background: var(--color-cream);
  padding: 104px clamp(32px, 6vw, 80px) 64px clamp(27px, 4vw, 48px);
}
.ss-sponsor--hart .ss-sponsor__media {
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
}
.ss-sponsor--hart .ss-sponsor__media img {
  width: auto;
  height: auto;
  min-height: 0;
  max-width: min(420px, 85%);
  max-height: 520px;
  object-fit: contain;
  object-position: center;
}
.ss-sponsor__strip--reverse {
  grid-template-columns: 653fr 327fr;
}
.ss-sponsor--new-earth .ss-sponsor__content {
  background: var(--color-white);
  padding: 104px clamp(32px, 4vw, 56px) 64px
    max(27px, calc((100vw - var(--site-width)) / 2 + 27px));
}
.ss-sponsor--new-earth .ss-sponsor__media img {
  object-fit: contain;
  object-position: center;
}
.ss-sponsor__media {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  min-height: 618px;
  padding: 0;
  overflow: hidden;
  background: #f2f2f2;
}
.ss-sponsor__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 618px;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.ss-sponsor__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 104px 56px 64px 27px;
}
.ss-sponsor__title {
  margin: 0 0 22px;
  font-family: var(--font-poppins);
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-gold-dark);
}
.ss-sponsor__rule {
  width: 100%;
  height: 1px;
  margin: 0 0 35px;
  border: 0;
  background: rgba(192, 143, 38, 0.35);
}
.ss-sponsor__text {
  margin: 0 0 32px;
  max-width: none;
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-gold-dark);
}
.ss-sponsor__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 40px;
  padding: 0 20px;
  border: 1px solid var(--color-gold-dark);
  border-radius: 0;
  background: var(--color-gold-dark);
  color: var(--color-white);
  font-family: var(--font-open-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.ss-sponsor__btn:hover {
  background: var(--color-white);
  color: var(--color-gold-dark);
}
.ss-cta {
  background: var(--color-white);
  padding: 72px 0 80px;
}
.ss-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: clamp(24px, 8vw, 120px);
  text-align: center;
}
.ss-cta__title {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: clamp(1.75rem, 5vw, 45px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-gold-dark);
}
.ss-cta__text {
  margin: 0;
  max-width: 900px;
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-gold-dark);
}
.ss-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 40px;
  padding: 0 24px;
  border: 1px solid var(--color-gold-dark);
  border-radius: 0;
  background: var(--color-gold-dark);
  color: var(--color-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.ss-cta__btn:hover {
  background: var(--color-white);
  color: var(--color-gold-dark);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* FAQ page */
.faq-page {
  background: var(--color-white);
}
.faq-section {
  padding: 64px 16px 96px;
}
.faq-section__inner {
  width: min(100%, var(--site-width));
  margin-inline: auto;
}
.faq-section__title {
  margin: 0 0 32px;
  font-family: var(--font-raleway);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: var(--color-gold-dark);
}
.faq-search {
  position: relative;
  display: block;
  max-width: 480px;
  margin: 0 auto 40px;
}
.faq-search__input {
  width: 100%;
  padding: 12px 44px 12px 16px;
  border: 1px solid rgba(192, 143, 38, 0.35);
  border-radius: 0;
  background: var(--color-white);
  font-family: var(--font-poppins);
  font-size: 15px;
  color: var(--color-gold-dark);
  outline: none;
  transition: border-color 0.2s ease;
}
.faq-search__input::placeholder {
  color: rgba(192, 143, 38, 0.65);
}
.faq-search__input:focus {
  border-color: var(--color-gold-dark);
}
.faq-search__icon {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 20px;
  height: 20px;
  color: var(--color-gold-dark);
  transform: translateY(-50%);
  pointer-events: none;
}
.faq-section__category {
  margin: 0 0 8px;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-gold-dark);
}
.faq-list {
  border-top: 1px solid rgba(192, 143, 38, 0.35);
}
.faq-item {
  border-bottom: 1px solid rgba(192, 143, 38, 0.35);
}
.faq-item__question {
  margin: 0;
}
.faq-item__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 32px 0;
  text-align: left;
  color: var(--color-gold-dark);
}
.faq-item__toggle span {
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.faq-item__chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}
.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
}
.faq-item__answer {
  padding: 0 0 32px;
  font-family: var(--font-poppins);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-gold-dark);
}
.faq-item__answer p {
  margin: 0 0 1em;
}
.faq-item__answer p:last-child {
  margin-bottom: 0;
}
.faq-item__answer ul {
  margin: 0 0 1em;
  padding-left: 1.25em;
  list-style: disc;
}
.faq-item__answer li {
  margin-bottom: 0.5em;
}
.faq-item__answer li:last-child {
  margin-bottom: 0;
}
.faq-item__answer a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-item__answer a:hover {
  color: var(--color-gold);
}
.faq-empty {
  margin: 24px 0 0;
  font-family: var(--font-poppins);
  font-size: 15px;
  text-align: center;
  color: var(--color-gold-dark);
}

/* Getting Started page */
.gs-page {
  background: var(--color-white);
}
.gs-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gs-hero__bg {
  position: absolute;
  inset: 0;
}
.gs-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.gs-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(192, 143, 38, 0.3);
}
.gs-hero__inner {
  position: relative;
  z-index: 1;
  padding: 120px 16px 80px;
  text-align: center;
}
.gs-hero__title {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: clamp(2rem, 6vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.gs-steps {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
}
.gs-admissions {
  background: var(--color-white);
}
.gs-admissions__inner,
.gs-steps__inner {
  position: relative;
  z-index: 1;
}
.gs-admissions__inner {
  padding: 71px 16px 53px;
}
.gs-admissions__layout {
  position: relative;
  width: min(100%, 920px);
  min-height: 376px;
  margin-inline: auto;
}
.gs-admissions__family {
  position: relative;
  width: min(100%, 677px);
  min-height: 376px;
  margin-left: auto;
  padding: 72px 40px 48px 220px;
  background: #ebebeb;
}
.gs-admissions__family-title {
  margin: 0 0 24px;
  font-family: var(--font-poppins);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-gold-dark);
}
.gs-admissions__family-text {
  margin: 0;
  max-width: 415px;
  font-family: var(--font-poppins);
  font-size: 18px;
  line-height: 1.6;
  color: #242323;
}
.gs-admissions__contact {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  width: min(100%, 464px);
  min-height: 265px;
  padding: 40px 32px;
  background: var(--color-gold);
  transform: translateY(-50%);
  text-align: center;
}
.gs-admissions__contact-title {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
}
.gs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 142px;
  min-height: 40px;
  padding: 0 24px;
  border-radius: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.gs-btn--solid {
  position: relative;
  z-index: 1;
  border: 1px solid var(--color-gold-dark);
  background: var(--color-gold-dark);
  color: var(--color-white);
}
.gs-btn--solid:hover {
  background: var(--color-white);
  color: var(--color-gold-dark);
}
.gs-btn--white {
  border: 1px solid var(--color-white);
  background: var(--color-white);
  color: var(--color-gold-dark);
}
.gs-btn--white:hover {
  background: transparent;
  color: var(--color-white);
}
.gs-btn--outline-light {
  border: 1px solid var(--color-white);
  background: transparent;
  color: var(--color-white);
}
.gs-btn--outline-light:hover {
  background: var(--color-white);
  color: var(--color-gold-dark);
}
.gs-btn__arrow {
  font-size: 16px;
  line-height: 1;
}
.gs-steps__inner {
  padding: 24px 16px 72px;
}
.gs-steps__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 473px));
  justify-content: space-between;
  gap: 48px 24px;
}
.gs-step {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.gs-step__image {
  width: 100%;
  height: auto;
  aspect-ratio: 473 / 325;
  object-fit: cover;
}
.gs-step__stripe {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: -1px;
  padding: 6px 16px;
  background: var(--color-gold-dark);
}
.gs-step__label {
  font-family: var(--font-poppins);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  text-align: center;
}
.gs-step__card {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 27px 35px;
  background: var(--color-white);
  color: #242323;
  text-align: center;
}
.gs-step__title {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gold-dark);
}
.gs-step__text,
.gs-step__subhead,
.gs-step__list {
  margin: 0;
  width: 100%;
  font-family: var(--font-poppins);
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  color: #242323;
}
.gs-step__subhead {
  font-family: var(--font-poppins);
  font-weight: 700;
  text-decoration: underline;
  color: var(--color-gold-dark);
}
.gs-step__list {
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.gs-step__list li {
  margin-bottom: 0.35em;
}
.gs-step__list li::before {
  content: "- ";
}
.gs-step__card .gs-btn {
  margin-top: auto;
}
.gs-testimonial {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.gs-testimonial__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.gs-testimonial__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gs-testimonial__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(192, 143, 38, 0.55);
}
.gs-testimonial__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 72px 16px 80px;
}
.gs-testimonial__quote {
  margin: 0;
  max-width: 960px;
  text-align: center;
  color: var(--color-white);
}
.gs-testimonial__quote p {
  margin: 0 0 24px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.25rem, 2.5vw, 26px);
  line-height: 1.45;
}
.gs-testimonial__quote footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.gs-testimonial__name,
.gs-testimonial__role {
  font-family: var(--font-poppins);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}
.gs-testimonial__role {
  font-weight: 400;
}
.gs-welcome {
  background: var(--color-white);
  padding: 72px 16px 96px;
}
.gs-welcome__inner {
  display: grid;
  grid-template-columns: 473fr 507fr;
  gap: 24px;
  align-items: center;
}
.gs-welcome__media {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.gs-welcome__frame {
  position: relative;
  width: 100%;
  max-width: 473px;
  aspect-ratio: 473 / 325;
  overflow: hidden;
  background: #000;
}
.gs-welcome__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.gs-welcome__copy {
  padding-left: 0;
}
.gs-welcome__eyebrow {
  margin: 0 0 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: 26px;
  font-weight: 400;
  line-height: normal;
  color: var(--color-gold-dark);
}
.gs-welcome__title {
  margin: 0 0 22px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 4vw, 47px);
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: var(--color-gold-dark);
}
.gs-welcome__rule {
  width: 100%;
  max-width: 100%;
  height: 1px;
  margin: 0 0 35px;
  border: 0;
  background: #191919;
}
.gs-welcome__text {
  margin: 0 0 1em;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.8;
  color: #242323;
}
.gs-welcome__text:last-child {
  margin-bottom: 0;
}
.gs-welcome__text strong {
  font-weight: 700;
}

/* Responsive */

@media (max-width: 1024px) {
  .announcement-bar {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    opacity: 1 !important;
    padding: 9px 12px;
    min-height: 36px;
  }
  .announcement-bar p {
    font-size: 11px;
    letter-spacing: 0.06em;
    line-height: 1.35;
    white-space: normal;
  }
  .site-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 0;
    width: 100%;
    max-width: none;
    padding: 14px 20px;
  }
  .site-header__nav--left,
  .site-header__nav--right {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    width: 56px;
    height: 56px;
  }
  .site-header__logo {
    justify-self: start;
    gap: 10px;
    flex: 0 1 auto;
    min-width: 0;
  }
  .site-header__logo-img,
  .site-header__logo img {
    width: 72px;
    height: 72px;
  }
  .site-header__brand {
    display: flex;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0.02em;
    color: #c08f26;
  }
  .site-header.is-mobile-open .mobile-nav {
    display: block;
  }

  .site-header.is-mobile-open .announcement-bar,
  .site-header.is-mobile-open .site-header__logo,
  .site-header.is-mobile-open .site-header__nav {
    display: none !important;
  }

  .site-header.is-mobile-open .site-header__inner {
    min-height: 72px;
    padding: 16px 22px;
    justify-content: flex-end;
  }

  .site-header.is-mobile-open {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: #ffffff;
    border-bottom: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  .site-header.is-mobile-open .mobile-menu-toggle {
    background: transparent;
    width: 48px;
    height: 48px;
    border-radius: 0;
  }

  .site-header.is-mobile-open .mobile-menu-toggle__line {
    background: #111111;
    height: 2px;
  }

  .site-header.is-mobile-open .mobile-menu-toggle__line--1,
  .site-header.is-mobile-open .mobile-menu-toggle__line--2,
  .site-header.is-mobile-open .mobile-menu-toggle__line--3 {
    width: 24px;
  }

  .site-header.is-mobile-open .mobile-menu-toggle.is-active .mobile-menu-toggle__line--1 {
    top: 12px;
    width: 24px;
  }

  .site-header.is-mobile-open .mobile-menu-toggle.is-active .mobile-menu-toggle__line--3 {
    top: 12px;
    width: 24px;
  }

  .mobile-nav {
    display: none;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    background: #ffffff;
    border-top: 0;
    max-height: none;
    overflow: visible;
    padding: 48px 28px 80px;
    width: 100%;
  }

  .mobile-nav .site-header__nav-list,
  .mobile-nav__list {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
  }

  .mobile-nav .nav-item {
    width: 100%;
    max-width: 360px;
    text-align: center;
  }

  .mobile-nav .nav-item__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: auto;
    max-width: 100%;
    margin-inline: auto;
    padding: 22px 10px;
    border: 0;
    border-bottom: 0;
    border-left: 0;
    font-family: "Montserrat", var(--font-open-sans), sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1a1a1a;
    line-height: 1.2;
  }

  .mobile-nav .nav-item__link:hover,
  .mobile-nav .nav-item.is-open .nav-item__link {
    border-left-color: transparent;
    color: #1a1a1a;
  }

  .mobile-nav .nav-item__link.is-active,
  .mobile-nav .nav-item.is-current > .nav-item__link {
    color: #c08f26;
  }

  .mobile-nav .nav-item__chevron {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: inherit;
    transition: transform 0.2s ease;
  }

  .mobile-nav .nav-item.is-open > .nav-item__link .nav-item__chevron {
    transform: rotate(180deg);
  }

  .mobile-nav .nav-item__chevron-spacer {
    display: none;
  }

  .mobile-nav .nav-item:not(.has-children) .nav-item__chevron-spacer {
    display: none;
  }

  .mobile-nav .nav-item__label {
    display: inline-block;
  }

  .mobile-nav .nav-item__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    padding: 4px 0 18px;
    display: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    left: auto;
    right: auto;
    background: transparent;
  }

  .mobile-nav .nav-item.is-open > .nav-item__dropdown {
    display: block;
  }

  .mobile-nav .nav-item__dropdown-heading {
    display: none;
  }

  .mobile-nav .nav-item__dropdown-list {
    align-items: center;
    gap: 0;
  }

  .mobile-nav .nav-item__dropdown-list li {
    width: 100%;
    text-align: center;
  }

  .mobile-nav .nav-item__dropdown-link {
    display: block;
    width: 100%;
    padding: 18px 14px;
    font-family: "Montserrat", var(--font-open-sans), sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.35;
  }

  .mobile-nav .nav-item__dropdown-link:hover,
  .mobile-nav .nav-item__dropdown-link.is-active {
    text-decoration: none;
    color: #c08f26;
  }
  .hero__media {
    min-height: 520px;
  }
  .hero__image {
    height: min(620px, 78vh);
    min-height: 520px;
  }
  .hero__overlay {
    width: 100%;
  }
  .hero__content {
    align-items: center;
  }
  .hero__content-inner {
    width: 100%;
    max-width: none;
    padding: 48px 20px 40px;
    justify-content: center;
    text-align: center;
  }
  .hero__title {
    font-size: clamp(1.55rem, 5.8vw, 2.1rem);
    line-height: 1.25;
    margin-bottom: 20px;
  }
  .hero__text {
    display: none;
  }
  .hero__actions {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
  }
  .hero__actions .btn {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 46px;
    padding: 0 12px;
    letter-spacing: 0.08em;
    font-size: 13px;
  }
  .hero__actions .btn__label--full {
    display: none;
  }
  .hero__actions .btn__label--short {
    display: inline;
  }
  .btn {
    letter-spacing: 0.06em;
    font-size: 14px;
  }
  .btn--enroll,
  .btn--schedule,
  .btn--learn {
    min-width: 0;
  }
  .scholarship__action .btn,
  .cta-section .btn,
  .services__action .btn {
    width: auto;
    max-width: 100%;
    min-width: 160px;
  }

  .scholarship {
    padding-top: 48px;
  }

  .scholarship__title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    padding-inline: 4px;
  }
  .scholarship__subtitle {
    font-size: clamp(1.15rem, 4.5vw, 1.5rem);
    margin-top: 8px;
    padding-inline: 4px;
  }
  .scholarship__text {
    margin: 16px auto 22px;
    font-size: 16px;
    line-height: 1.5;
    max-width: 22em;
  }
  .scholarship__action {
    padding-bottom: 40px;
  }
  .scholarship__action .btn {
    width: auto;
    min-width: 172px;
  }
  .cta-section .btn,
  .services__action .btn {
    width: auto;
    max-width: 100%;
  }
  .cta-section__inner {
    text-align: center;
  }
  .why-families__strip {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .why-families__col--media {
    display: block;
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }
  .why-families__col--media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .why-families__col--content {
    padding: 48px 20px;
  }
  .why-families__col--media:first-of-type {
    order: -1;
  }
  .why-families__title {
    font-size: clamp(1.65rem, 6.5vw, 2.25rem);
    text-align: center;
  }
  .why-families__col--content p {
    text-align: center;
  }
  .apart-section__layout {
    flex-direction: column;
    align-items: stretch;
    padding-top: 48px;
  }
  .apart-section__text {
    max-width: none;
    padding-left: 0;
    text-align: center;
  }
  .apart-section__title {
    font-size: clamp(1.75rem, 8vw, 48px);
    text-align: center;
  }
  .apart-section__image {
    position: static;
    display: block;
    width: min(374px, 100%);
    height: auto;
    margin: 32px auto 0;
  }
  .services__layout {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .services__visual {
    width: auto;
    min-height: 0;
  }
  .services__image-accent {
    top: 24px;
    left: 16px;
    width: min(439px, calc(100% - 32px));
    height: calc(100% - 24px);
  }
  .services__photo {
    width: min(447px, 100%);
    height: auto;
    margin-inline: auto;
  }
  .services__content {
    width: 100%;
    max-width: 367px;
    padding-top: 0;
  }
  .services__title {
    text-align: center;
    font-size: clamp(1.75rem, 8vw, 48px);
  }
  .services__item {
    width: 100%;
  }
  .services__action {
    justify-content: center;
  }
  .mv-panel {
    border-radius: clamp(32px, 8vw, 87px);
    padding: 32px 24px;
  }
  .mv-panel__layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
    row-gap: 32px;
  }
  .mv-block--mission-media,
  .mv-block--mission-text,
  .mv-block--vision-text,
  .mv-block--vision-media {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    margin: 0;
    max-width: 100%;
    padding: 0;
    text-align: center;
  }
  .mv-block--mission-text .mv-panel__icon,
  .mv-block--mission-text .mv-panel__title {
    margin-left: 0;
  }
  .mv-circle--sm,
  .mv-circle--lg {
    width: min(100%, 377px);
    margin-inline: auto;
  }
  .values-section__layout {
    flex-direction: column;
    min-height: 0;
  }
  .values-section__media {
    flex: none;
    width: 100%;
    min-height: 320px;
  }
  .values-section__photo {
    min-height: 320px;
    max-height: 420px;
    object-position: center;
  }
  .values-section__content {
    align-items: stretch;
    padding: 48px 24px 56px;
  }
  .values-section__title {
    width: 100%;
    font-size: clamp(2rem, 6vw, 48px);
    margin-bottom: 40px;
  }
  .values-grid {
    grid-template-columns: 1fr;
    width: 100%;
    row-gap: 28px;
  }
  .values-item:nth-child(1),
  .values-item:nth-child(2) {
    margin-top: 0;
  }
  .pe-hero {
    padding: 32px 0 28px;
  }
  .pe-hero__card {
    padding: 32px 24px;
    border-radius: 24px;
  }
  .pe-hero__text {
    font-size: 16px;
  }
  .pe-carousel__viewport,
  .pe-carousel__slide {
    min-height: 320px;
  }
  .pe-carousel__content {
    padding-block: 40px;
    gap: 20px;
  }
  .pe-carousel__arrow {
    width: 48px;
  }
  .pe-carousel__arrow--prev {
    left: 8px;
  }
  .pe-carousel__arrow--next {
    right: 8px;
  }
  .ss-intro__inner {
    grid-template-columns: 1fr;
    padding-inline: 16px;
  }
  .ss-intro__title {
    font-size: clamp(1.75rem, 5vw, 45px);
  }
  .ss-intro__logo-wrap {
    justify-self: center;
  }
  .ss-intro__logo {
    width: min(100%, 279px);
  }
  .ss-sponsor__strip,
  .ss-sponsor__strip--reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ss-sponsor--hart .ss-sponsor__strip {
    grid-template-columns: 1fr;
  }

  .ss-sponsor__title {
    font-size: clamp(1.75rem, 5vw, 45px);
    text-align: center;
  }

  .ss-sponsor__media img {
    min-height: 280px;
  }

  .ss-sponsor--hart .ss-sponsor__media {
    min-height: 0;
    padding: 40px 24px 16px;
  }

  .ss-sponsor--hart .ss-sponsor__media img {
    min-height: 0;
    max-width: min(280px, 72%);
    max-height: 280px;
    margin-inline: auto;
  }

  .ss-sponsor__strip--reverse .ss-sponsor__content {
    order: 1;
  }

  .ss-sponsor__strip--reverse .ss-sponsor__media {
    order: 2;
  }

  .ss-sponsor__media {
    min-height: 280px;
    padding: 32px 16px;
  }

  .ss-sponsor__content,
  .ss-sponsor--hart .ss-sponsor__content,
  .ss-sponsor--new-earth .ss-sponsor__content {
    align-items: center;
    text-align: center;
    padding: 48px 24px 56px;
  }

  .ss-sponsor__rule {
    margin-inline: auto;
  }

  .ss-sponsor__btn {
    margin-inline: auto;
  }
  .ss-cta {
    padding-inline: 16px;
  }
  .faq-section {
    padding: 48px 16px 72px;
  }
  .faq-section__title {
    font-size: 24px;
  }
  .faq-item__toggle {
    padding: 24px 0;
  }
  .faq-item__toggle span {
    font-size: 16px;
  }
  .faq-item__answer {
    padding-bottom: 24px;
    font-size: 14px;
  }
  .gs-admissions__inner {
    padding: 48px 16px;
  }
  .gs-admissions__layout {
    min-height: 0;
  }
  .gs-admissions__family {
    width: 100%;
    min-height: 0;
    margin-top: 200px;
    padding: 32px 24px;
  }
  .gs-admissions__contact {
    top: 0;
    left: 50%;
    width: min(calc(100% - 32px), 464px);
    min-height: 220px;
    transform: translate(-50%, 0);
  }
  .gs-steps__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gs-testimonial__inner {
    min-height: 320px;
    padding: 48px 16px;
  }
  .gs-welcome__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .gs-welcome__media {
    padding-right: 0;
  }
  .gs-welcome__frame {
    max-width: none;
    margin-inline: auto;
  }
  .gs-welcome__copy {
    padding-left: 0;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 32px;
  }
  .site-footer__column--links,
  .site-footer__column--contact {
    padding-left: 0;
    padding-right: 0;
    justify-self: stretch;
    max-width: none;
  }
  .site-footer__column--brand {
    justify-self: center;
    padding-top: 0;
  }
  .site-footer__rule {
    max-width: none;
  }

  /* Mobile: center all page text/sections */
  main {
    text-align: center;
  }

  main h1,
  main h2,
  main h3,
  main h4,
  main h5,
  main h6,
  main p,
  main li,
  main .container,
  main [class*="__title"],
  main [class*="__subtitle"],
  main [class*="__text"],
  main [class*="__copy"],
  main [class*="__heading"],
  main [class*="__label"],
  main [class*="__content"],
  main [class*="__inner"],
  main [class*="__body"] {
    text-align: center;
  }

  main [class*="__layout"],
  main [class*="__list"],
  main [class*="__actions"],
  main [class*="__action"],
  main [class*="__grid"] {
    justify-content: center;
    align-items: center;
  }

  main ul,
  main ol {
    padding-left: 0;
  }

  main li {
    justify-content: center;
  }

  .services__item {
    justify-content: center;
  }

  .services__label {
    text-align: center;
  }

  .site-footer,
  .site-footer__column,
  .site-footer__heading,
  .site-footer__contact-item,
  .site-footer__links,
  .site-footer__bottom {
    text-align: center;
  }

  .site-footer__grid {
    justify-items: center;
  }

  .site-footer__social {
    justify-content: center;
  }

  .site-footer__links {
    align-items: center;
  }

  .values-section__content,
  .values-section__title,
  .values-item {
    text-align: center;
    align-items: center;
  }

  .pe-hero__card,
  .pe-hero__text,
  .pe-hero__text--left {
    text-align: center;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 120px;
  }
  .announcement-bar {
    display: block !important;
    padding: 8px 10px;
  }
  .announcement-bar p {
    font-size: 10px;
    letter-spacing: 0.04em;
    line-height: 1.35;
  }
  .site-header__inner {
    min-height: 0;
    padding: 12px 18px;
  }
  .site-header__logo {
    gap: 8px;
  }
  .site-header__logo-img,
  .site-header__logo img {
    width: 68px;
    height: 68px;
  }
  .site-header__brand {
    font-size: 15px;
    line-height: 1.1;
  }
  .mobile-menu-toggle {
    width: 52px;
    height: 52px;
    border-radius: 11px;
  }
  .mobile-menu-toggle__icon {
    width: 24px;
    gap: 5.5px;
    align-items: flex-start;
  }
  .mobile-menu-toggle__line--1,
  .mobile-menu-toggle__line--3 {
    width: 13px;
  }
  .mobile-menu-toggle__line--2 {
    width: 24px;
  }
  .hero__media {
    min-height: 460px;
  }
  .hero__image {
    height: auto;
    min-height: 460px;
    max-height: 70vh;
  }
  .hero__overlay {
    width: 100%;
  }
  .hero__content-inner {
    width: 100%;
    padding: 36px 16px 32px;
  }
  .hero__title {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }
  .hero__actions {
    width: 100%;
    max-width: 300px;
    gap: 8px;
  }

  .hero__actions .btn {
    font-size: 12px;
    padding: 0 10px;
    min-height: 44px;
  }
  .section-title,
  .section-heading {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }
  .section-subtitle {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }
  .scholarship__title {
    font-size: clamp(1.55rem, 7.5vw, 2rem);
  }
  .scholarship__subtitle {
    font-size: clamp(1.05rem, 4.8vw, 1.35rem);
  }
  .scholarship__text {
    padding-left: 0;
    padding-right: 0;
    font-size: 15px;
    max-width: none;
  }
  .why-families__col--media {
    min-height: 240px;
  }
  .why-families__col--content {
    padding: 40px 16px;
  }
  .cta-section__inner {
    padding-inline: 4px;
  }
  .cta-section .btn,
  .services__action .btn {
    width: auto;
    max-width: 100%;
    align-self: center;
  }
  .cta-section__text {
    font-size: 15px;
    line-height: 1.55;
  }
}

/* Enrollment Options page */
.eo-page {
  background: var(--color-white);
}
.eo-scholarship {
  background: rgba(255, 245, 216, 0.8);
}
.eo-scholarship__inner {
  max-width: 850px;
  padding: 64px 16px 56px;
  text-align: center;
}
.eo-scholarship__title {
  margin: 0 0 12px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-gold-dark);
}
.eo-scholarship__subtitle {
  margin: 0 0 28px;
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.3;
  color: var(--color-gold-dark);
}
.eo-scholarship__text {
  margin: 0 auto 28px;
  max-width: 802px;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-black);
}
.eo-intro__inner {
  padding: 48px 16px 40px;
  text-align: center;
}
.eo-intro__title {
  margin: 0 0 20px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.75rem, 4vw, 37px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}
.eo-intro__text {
  margin: 0 auto;
  max-width: 850px;
  font-family: "Times New Roman", Times, serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-black);
}
.eo-programs {
  position: relative;
  overflow: hidden;
  min-height: 813px;
  background: var(--color-white);
}
.eo-programs__bg {
  position: absolute;
  inset: 0;
}
.eo-programs__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.eo-programs__inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin-inline: auto;
  padding: 63px 16px 56px;
}
.eo-programs__grid {
  display: grid;
  grid-template-columns: repeat(4, 320px);
  justify-content: center;
  gap: 7px;
}
.eo-program-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: 24px 20px 28px;
  background: var(--color-white);
  text-align: center;
}
.eo-program-card__number {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-raleway);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-black);
}
.eo-program-card__title {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-black);
}
.eo-program-card__title--gold {
  color: var(--color-gold-dark);
}
.eo-program-card__subtitle {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--color-black);
}
.eo-program-card__text {
  margin: 0 0 20px;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.8;
  color: #242323;
}
.eo-program-card__text--muted {
  color: #5a5a5a;
}
.eo-program-card .eo-btn {
  margin-top: auto;
}
.eo-offered__inner {
  display: grid;
  grid-template-columns: 421fr 559fr;
  align-items: center;
  gap: 0;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 56px 16px 64px;
}
.eo-offered__title {
  margin: 0 0 24px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 5vw, 55px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gold-dark);
}
.eo-offered__text {
  margin: 0;
  max-width: 416px;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.8;
  color: #242323;
}
.eo-offered__text strong {
  font-weight: 700;
  text-decoration: underline;
  color: var(--color-gold-dark);
}
.eo-offered__media img {
  display: block;
  width: 100%;
  max-width: 559px;
  height: auto;
  aspect-ratio: 559 / 556;
  object-fit: cover;
  margin-left: auto;
}
.eo-education {
  background: rgba(255, 245, 216, 0.8);
}
.eo-education__inner {
  padding: 64px 16px 72px;
  text-align: center;
}
.eo-education__title {
  margin: 0 0 20px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-gold-dark);
}
.eo-education__intro {
  margin: 0 auto 48px;
  max-width: 850px;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-black);
}
.eo-education__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 280px));
  justify-content: center;
  gap: 40px 32px;
  width: min(100%, 980px);
  margin-inline: auto;
}
.eo-grade-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.eo-grade-card__image {
  width: 121px;
  height: 121px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
}
.eo-grade-card__title {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-black);
}
.eo-grade-card__text {
  margin: 0 0 24px;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.8;
  color: #242323;
}
.eo-grade-card .eo-btn {
  margin-top: auto;
}
.eo-dyk__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 32px;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 64px 16px 80px;
}
.eo-dyk__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gold-dark);
}
.eo-dyk__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.eo-dyk__text {
  margin: 0;
  max-width: 520px;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.8;
  color: #242323;
}
.eo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 142px;
  min-height: 40px;
  padding: 10px 20px;
  border: 1px solid var(--color-gold);
  border-radius: 0;
  background: var(--color-gold);
  font-family: var(--font-open-sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  color: var(--color-white);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.eo-btn:hover {
  background: var(--color-white);
  border-color: var(--color-gold-dark);
  color: var(--color-black);
}
.eo-btn--compact {
  min-width: 142px;
}
.eo-btn__arrow {
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 1024px) {
  .eo-programs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
  .eo-offered__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .eo-offered__media img {
    margin-inline: auto;
  }
  .eo-education__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .eo-dyk__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .eo-programs__grid {
    grid-template-columns: 1fr;
  }
  .eo-program-card {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .eo-scholarship__inner,
  .eo-education__inner,
  .eo-dyk__inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

/* Enroll Now page */
.en-page {
  background: var(--color-white);
}
.en-hero {
  position: relative;
  min-height: 397px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.en-hero__bg {
  position: absolute;
  inset: 0;
}
.en-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.en-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(192, 143, 38, 0.3);
}
.en-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 80px 16px;
  text-align: center;
}
.en-hero__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2.5rem, 8vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.en-yearround {
  background: rgba(255, 245, 216, 0.8);
}
.en-yearround__inner {
  padding: 48px 16px;
  text-align: center;
}
.en-yearround__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.75rem, 5vw, 50px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gold-dark);
}
.en-form {
  background: var(--color-white);
}
.en-form__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 44px 16px;
}
.en-form__iframe {
  display: block;
  width: 100%;
  min-height: 1639px;
  height: 1639px;
  border: 0;
  background: var(--color-white);
}
.en-fee {
  background: var(--color-gold);
}
.en-fee__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 39px;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 114px 16px 48px;
  text-align: center;
}
.en-fee__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.75rem, 4.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
}
.en-fee__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 42px;
  padding: 10px 24px;
  border: 1px solid var(--color-white);
  background: var(--color-white);
  font-family: var(--font-raleway);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  color: var(--color-gold-dark);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.en-fee__btn:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-white);
  color: var(--color-white);
}

@media (max-width: 768px) {
  .en-hero {
    min-height: 280px;
  }
  .en-hero__inner {
    padding: 56px 16px;
  }
  .en-form__iframe {
    min-height: 1200px;
    height: 1200px;
  }
  .en-fee__inner {
    padding-top: 72px;
  }
}

/* Tuition page */
.tu-page {
  background: var(--color-white);
}
.tu-hero {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tu-hero__bg {
  position: absolute;
  inset: 0;
}
.tu-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.tu-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(192, 143, 38, 0.3);
}
.tu-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 80px 16px;
  text-align: center;
}
.tu-hero__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.tu-intro {
  background: rgba(255, 245, 216, 0.8);
}
.tu-intro__inner {
  padding: 48px 16px;
}
.tu-intro__text {
  margin: 0 auto;
  max-width: 900px;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.8;
  color: var(--color-black);
}
.tu-programs {
  background: #fafafa;
}
.tu-programs__inner {
  padding: 48px 16px 64px;
}
.tu-programs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(100%, 980px);
  margin-inline: auto;
}
.tu-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px 36px;
  background: var(--color-white);
  border: 2px solid var(--color-gold-dark);
  border-radius: 67px;
}
.tu-card--virtual,
.tu-card--pair,
.tu-card--full {
  grid-column: 1 / -1;
}
.tu-card__heading {
  margin: 0 0 12px;
  font-family: "Times New Roman", Times, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.38;
  color: var(--color-gold);
}
.tu-card__column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  background: var(--color-white);
  border-radius: 0 30px 30px 30px;
  box-shadow: 0 1px 9px rgba(0, 0, 0, 0.13);
}
.tu-card__column .tu-btn {
  margin-top: auto;
  align-self: center;
}
.tu-card__column .tu-card__image {
  max-width: none;
  width: 100%;
}
.tu-card__title {
  margin: 0 0 24px;
  font-family: "Times New Roman", Times, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.38;
  text-align: center;
  color: var(--color-gold);
}
.tu-card__subtitle {
  display: block;
  margin-top: 4px;
  font-size: 25px;
  font-weight: 400;
  color: var(--color-gold);
}
.tu-card__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 0;
}
.tu-card--virtual .tu-card__columns {
  margin-bottom: 28px;
}
.tu-card__plan {
  margin: 0 0 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-gold-dark);
}
.tu-card__price {
  margin: 0 0 4px;
  font-family: "Times New Roman", Times, serif;
  font-size: 23px;
  font-weight: 700;
  color: var(--color-gold-dark);
}
.tu-card__price--lead {
  font-size: 20px;
  text-align: left;
}
.tu-card__term {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.5;
  color: #242323;
}
.tu-card__term--gold {
  color: var(--color-gold-dark);
}
.tu-card__text {
  margin: 0 0 14px;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.75;
  color: #393939;
}
.tu-card__label {
  margin: 0 0 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.75;
  color: #393939;
}
.tu-card__list {
  margin: 0 0 18px;
  padding-left: 1.25rem;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.75;
  color: #393939;
}
.tu-card__list li {
  margin-bottom: 4px;
}
.tu-card__image {
  display: block;
  width: 100%;
  max-width: 376px;
  height: auto;
  margin: 8px 0 20px;
  object-fit: cover;
}
.tu-card__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 8px;
}
.tu-card__split > div {
  padding: 24px 20px;
  background: var(--color-white);
  border-radius: 0 30px 30px 30px;
  box-shadow: 0 1px 9px rgba(0, 0, 0, 0.13);
}
.tu-card .tu-btn {
  margin-top: auto;
  align-self: center;
}
.tu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 160px;
  min-height: 42px;
  padding: 10px 24px;
  border: 1px solid var(--color-gold);
  background: var(--color-gold);
  font-family: var(--font-raleway);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  color: var(--color-white);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.tu-btn:hover {
  background: var(--color-white);
  border-color: var(--color-gold-dark);
  color: var(--color-gold-dark);
}
.tu-btn__arrow {
  font-size: 16px;
  line-height: 1;
}
.tu-fee {
  background: var(--color-gold);
}
.tu-fee__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 80px 16px 64px;
  text-align: center;
}
.tu-fee__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.75rem, 4.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
}
.tu-fee__text {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-white);
}
.tu-fee__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 42px;
  padding: 10px 24px;
  border: 1px solid var(--color-white);
  background: var(--color-white);
  font-family: var(--font-raleway);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  color: var(--color-gold-dark);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.tu-fee__btn:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-white);
  color: var(--color-white);
}

@media (max-width: 900px) {
  .tu-programs__grid,
  .tu-card__columns,
  .tu-card__split {
    grid-template-columns: 1fr;
  }
  .tu-card--virtual,
  .tu-card--pair,
  .tu-card--full {
    grid-column: auto;
  }
  .tu-card {
    border-radius: 40px;
  }
  .tu-card__column,
  .tu-card__split > div {
    border-radius: 0 20px 20px 20px;
  }
  .tu-card__image {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .tu-hero {
    min-height: 280px;
  }
  .tu-hero__inner {
    padding: 56px 16px;
  }
  .tu-intro__inner,
  .tu-fee__inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

/* State Educational Funding page */
.sef-page {
  background: var(--color-white);
}
.sef-hero {
  position: relative;
  min-height: 397px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sef-hero__bg {
  position: absolute;
  inset: 0;
}
.sef-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sef-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(192, 143, 38, 0.3);
}
.sef-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 72px 16px;
  text-align: center;
}
.sef-hero__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.75rem, 5vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.sef-intro {
  background: var(--color-white);
}
.sef-intro__inner {
  padding: 56px 16px 48px;
  text-align: center;
}
.sef-intro__title {
  margin: 0 0 24px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gold);
}
.sef-intro__text {
  margin: 0 auto;
  max-width: 900px;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.8;
  color: var(--color-black);
}
.sef-features {
  background: var(--color-white);
  padding-bottom: 56px;
}
.sef-features__band {
  height: 120px;
  background: var(--color-gold);
}
.sef-features__inner {
  padding-inline: 16px;
}
.sef-features__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  width: min(100%, 980px);
  margin: -72px auto 0;
}
.sef-feature-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.sef-feature-card__media img {
  display: block;
  width: 100%;
  height: 325px;
  object-fit: cover;
}
.sef-feature-card__body {
  flex: 1;
  padding: 28px 24px 32px;
  background: var(--color-cream);
}
.sef-feature-card__heading {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-gold);
}
.sef-feature-card__text {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-black);
}
.sef-programs {
  background: rgba(255, 245, 216, 0.8);
}
.sef-programs__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 64px 16px;
}
.sef-program__title {
  margin: 0 0 20px;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--color-gold);
}
.sef-program__text {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-black);
}
.sef-program__link-wrap {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-black);
}
.sef-program__link {
  color: #c21111;
  text-decoration: underline;
}
.sef-program__link:hover {
  color: #8f0d0d;
}
.sef-cta {
  background: var(--color-white);
}
.sef-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 64px 16px;
  text-align: center;
}
.sef-cta__title {
  margin: 0;
  max-width: 900px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 4vw, 40px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-black);
}
.sef-cta__subtitle {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 4vw, 40px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-gold);
}
.sef-help {
  background: var(--color-white);
}
.sef-help__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 48px 16px 80px;
  text-align: center;
}
.sef-help__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-gold);
}
.sef-help__text {
  margin: 0;
  max-width: 900px;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.8;
  color: var(--color-black);
}
.sef-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 160px;
  min-height: 42px;
  padding: 10px 24px;
  border: 1px solid var(--color-gold);
  background: var(--color-gold);
  font-family: var(--font-raleway);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  color: var(--color-white);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.sef-btn:hover {
  background: var(--color-white);
  border-color: var(--color-gold-dark);
  color: var(--color-gold-dark);
}
.sef-btn__arrow {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 768px) {
  .sef-features__grid,
  .sef-programs__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sef-features__grid {
    margin-top: -48px;
  }
  .sef-features__band {
    height: 96px;
  }
  .sef-feature-card__media img {
    height: 260px;
  }
  .sef-feature-card__body {
    padding: 24px 20px 28px;
  }
  .sef-hero {
    min-height: 280px;
  }
  .sef-hero__inner {
    padding: 56px 16px;
  }
  .sef-intro__inner,
  .sef-programs__inner,
  .sef-cta__inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .sef-help__inner {
    padding-bottom: 64px;
  }
}

/* Educational Philosophy page */
.ep-page {
  background: var(--color-white);
}
.ep-hero {
  position: relative;
  min-height: 397px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ep-hero__bg {
  position: absolute;
  inset: 0;
}
.ep-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ep-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(192, 143, 38, 0.3);
}
.ep-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 80px 16px;
  text-align: center;
}
.ep-hero__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.ep-content {
  background: rgba(255, 245, 216, 0.8);
}
.ep-content__inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 56px 16px 72px;
}
.ep-content__media {
  flex: 0 0 425px;
  width: 425px;
  max-width: 100%;
}
.ep-content__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ep-content__copy {
  flex: 1 1 auto;
  min-width: 0;
}
.ep-content__copy p {
  margin: 0 0 18px;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.4;
  color: var(--color-black);
}
.ep-content__copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .ep-content__inner {
    flex-direction: column;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 56px;
  }
  .ep-content__media {
    flex: none;
    width: min(100%, 425px);
  }
}

@media (max-width: 640px) {
  .ep-hero {
    min-height: 280px;
  }
  .ep-hero__inner {
    padding: 56px 16px;
  }
}

/* K-5 Program page */
.k5-page {
  background: var(--color-white);
}
.k5-hero {
  position: relative;
  min-height: 397px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.k5-hero__bg {
  position: absolute;
  inset: 0;
}
.k5-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.k5-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(192, 143, 38, 0.3);
}
.k5-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 80px 16px;
  text-align: center;
}
.k5-hero__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 6vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.k5-overview {
  background: var(--color-white);
  padding-bottom: 51px;
}
.k5-overview__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 0 16px;
}
.k5-overview__stage {
  position: relative;
  width: 100%;
  min-height: 842px;
}
.k5-overview__media {
  position: absolute;
  top: 69px;
  left: 27.24%;
  width: 77.76%;
  max-width: 762px;
  z-index: 1;
}
.k5-overview__media img {
  display: block;
  width: 100%;
  height: 524px;
  object-fit: cover;
}
.k5-overview__panel {
  position: absolute;
  top: 318px;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(473px, 48.27%);
  aspect-ratio: 1;
  padding: 48px 28px;
  background: var(--color-cream);
  box-sizing: border-box;
}
.k5-overview__title {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--color-gold-dark);
}
.k5-overview__text {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.75;
  text-align: center;
  color: var(--color-black);
}
.k5-testimonial {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.k5-testimonial__bg {
  position: absolute;
  inset: 0;
}
.k5-testimonial__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.k5-testimonial__overlay {
  position: absolute;
  inset: 0;
  background: rgba(192, 143, 38, 0.55);
}
.k5-testimonial__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 64px 16px;
  text-align: center;
}
.k5-testimonial__quote {
  margin: 0 0 20px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.25rem, 3vw, 30px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-white);
}
.k5-testimonial__name {
  margin: 0 0 4px;
  font-family: var(--font-open-sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-white);
}
.k5-testimonial__role {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  font-style: italic;
  color: var(--color-white);
}
.k5-grade-intro__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 56px 16px 32px;
  text-align: center;
}
.k5-grade-intro__title {
  margin: 0 0 20px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}
.k5-grade-intro__text {
  margin: 0 auto;
  max-width: 900px;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.8;
  color: var(--color-black);
}
.k5-courses {
  background: var(--color-white);
  padding-bottom: 56px;
}
.k5-courses__band {
  height: 120px;
  background: var(--color-gold);
}
.k5-courses__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  padding-inline: 16px;
}
.k5-courses__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: -72px;
  margin-bottom: 0;
}
.k5-courses__photos img {
  display: block;
  width: 100%;
  height: 325px;
  object-fit: cover;
}
.k5-courses__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}
.k5-courses__panel {
  padding: 28px 24px 32px;
  background: var(--color-cream);
}
.k5-courses__heading {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-gold);
}
.k5-courses__list {
  margin: 0;
  padding-left: 1.25rem;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-black);
}
.k5-courses__list li {
  margin-bottom: 10px;
}
.k5-courses__list li:last-child {
  margin-bottom: 0;
}
.k5-highlight {
  background: var(--color-gold);
}
.k5-highlight__inner {
  display: grid;
  grid-template-columns: minmax(0, 392px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 64px 16px;
}
.k5-highlight__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}
.k5-highlight__text {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.8;
  color: var(--color-white);
}
.k5-cta {
  background: var(--color-white);
}
.k5-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 64px 16px 80px;
  text-align: center;
}
.k5-cta__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.75rem, 5vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-gold);
}
.k5-cta__text {
  margin: 0;
  max-width: 760px;
  font-family: "Times New Roman", Times, serif;
  font-size: 19px;
  line-height: 1.8;
  color: var(--color-black);
}
.k5-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 160px;
  min-height: 42px;
  padding: 10px 24px;
  border: 1px solid var(--color-gold);
  background: var(--color-gold);
  font-family: var(--font-raleway);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  color: var(--color-white);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.k5-btn:hover {
  background: var(--color-white);
  border-color: var(--color-gold-dark);
  color: var(--color-gold-dark);
}
.k5-btn__arrow {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 900px) {
  .k5-overview__stage {
    min-height: auto;
    padding: 32px 0;
  }
  .k5-overview__media {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
  }
  .k5-overview__media img {
    height: auto;
    min-height: 280px;
    aspect-ratio: 762 / 524;
  }
  .k5-overview__panel {
    position: relative;
    top: auto;
    left: auto;
    width: min(473px, 100%);
    margin: -72px auto 0;
    padding: 40px 24px;
  }
  .k5-courses__photos,
  .k5-courses__grid,
  .k5-highlight__inner {
    grid-template-columns: 1fr;
  }
  .k5-courses__photos {
    margin-top: -48px;
  }
  .k5-courses__band {
    height: 96px;
  }
  .k5-courses__photos img {
    height: 260px;
  }
  .k5-highlight__inner {
    gap: 24px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (max-width: 640px) {
  .k5-hero {
    min-height: 280px;
  }
  .k5-hero__inner {
    padding: 56px 16px;
  }
  .k5-grade-intro__inner {
    padding-top: 48px;
  }
  .k5-cta__inner {
    padding-bottom: 64px;
  }
}

/* 6-8 Program page */
.m68-page {
  background: var(--color-white);
}
.m68-hero {
  position: relative;
  min-height: 397px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.m68-hero__bg {
  position: absolute;
  inset: 0;
}
.m68-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.m68-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(192, 143, 38, 0.3);
}
.m68-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 80px 16px;
  text-align: center;
}
.m68-hero__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 6vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.m68-overview {
  background: var(--color-white);
  padding-bottom: 51px;
}
.m68-overview__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 0 16px;
}
.m68-overview__stage {
  position: relative;
  width: 100%;
  min-height: 842px;
}
.m68-overview__media {
  position: absolute;
  top: 69px;
  left: 27.24%;
  width: 77.76%;
  max-width: 762px;
  z-index: 1;
}
.m68-overview__media img {
  display: block;
  width: 100%;
  height: 524px;
  object-fit: cover;
}
.m68-overview__panel {
  position: absolute;
  top: 318px;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(473px, 48.27%);
  aspect-ratio: 1;
  padding: 48px 28px;
  background: var(--color-cream);
  box-sizing: border-box;
}
.m68-overview__title {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--color-gold-dark);
}
.m68-overview__text {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.75;
  text-align: center;
  color: var(--color-black);
}
.m68-testimonial {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.m68-testimonial__bg {
  position: absolute;
  inset: 0;
}
.m68-testimonial__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.m68-testimonial__overlay {
  position: absolute;
  inset: 0;
  background: rgba(192, 143, 38, 0.55);
}
.m68-testimonial__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 64px 16px;
  text-align: center;
}
.m68-testimonial__quote {
  margin: 0 0 20px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.25rem, 3vw, 30px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-white);
}
.m68-testimonial__name {
  margin: 0 0 4px;
  font-family: var(--font-open-sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-white);
}
.m68-testimonial__role {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  font-style: italic;
  color: var(--color-white);
}
.m68-core-intro__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 56px 16px 32px;
  text-align: center;
}
.m68-core-intro__title {
  margin: 0 0 20px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}
.m68-core-intro__text {
  margin: 0 auto;
  max-width: 900px;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.8;
  color: var(--color-black);
}
.m68-courses {
  background: var(--color-white);
  padding-bottom: 56px;
}
.m68-courses__band {
  height: 120px;
  background: var(--color-gold);
}
.m68-courses__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  padding-inline: 16px;
}
.m68-courses__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: -72px;
  margin-bottom: 0;
}
.m68-courses__photos img {
  display: block;
  width: 100%;
  height: 325px;
  object-fit: cover;
}
.m68-courses__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}
.m68-courses__panel {
  padding: 28px 24px 32px;
  background: var(--color-cream);
}
.m68-courses__heading {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-gold);
}
.m68-courses__list {
  margin: 0;
  padding-left: 1.25rem;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-black);
}
.m68-courses__list li {
  margin-bottom: 10px;
}
.m68-courses__list li:last-child {
  margin-bottom: 0;
}
.m68-electives-intro {
  background: rgba(255, 245, 216, 0.8);
}
.m68-electives-intro__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 56px 16px;
  text-align: center;
}
.m68-electives-intro__title {
  margin: 0 0 20px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}
.m68-electives-intro__text {
  margin: 0 auto;
  max-width: 900px;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.8;
  color: var(--color-black);
}
.m68-electives {
  position: relative;
}
.m68-electives__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.m68-electives__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.m68-electives__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 64px 24px 72px;
}
.m68-electives__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px 22px;
}
.m68-elective {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 42px;
  padding: 52px 16px 28px;
  background: var(--color-white);
  text-align: center;
  box-sizing: border-box;
}
.m68-elective__num {
  position: absolute;
  top: -42px;
  left: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--color-cream);
  transform: translateX(-50%);
  font-family: var(--font-helvetica-light);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-gold);
}
.m68-elective__title {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-gold);
}
.m68-elective__text {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: #a68b67;
}
.m68-highlight {
  background: var(--color-gold);
}
.m68-highlight__inner {
  display: grid;
  grid-template-columns: minmax(0, 373px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 64px 16px;
}
.m68-highlight__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}
.m68-highlight__text {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.8;
  color: var(--color-white);
}
.m68-cta {
  background: var(--color-white);
}
.m68-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 64px 16px 80px;
  text-align: center;
}
.m68-cta__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.75rem, 5vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-gold);
}
.m68-cta__text {
  margin: 0;
  max-width: 760px;
  font-family: "Times New Roman", Times, serif;
  font-size: 19px;
  line-height: 1.8;
  color: var(--color-black);
}
.m68-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 160px;
  min-height: 42px;
  padding: 10px 24px;
  border: 1px solid var(--color-gold);
  background: var(--color-gold);
  font-family: var(--font-raleway);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  color: var(--color-white);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.m68-btn:hover {
  background: var(--color-white);
  border-color: var(--color-gold-dark);
  color: var(--color-gold-dark);
}
.m68-btn__arrow {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 900px) {
  .m68-overview__stage {
    min-height: auto;
    padding: 32px 0;
  }
  .m68-overview__media {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
  }
  .m68-overview__media img {
    height: auto;
    min-height: 280px;
    aspect-ratio: 762 / 524;
  }
  .m68-overview__panel {
    position: relative;
    top: auto;
    left: auto;
    width: min(473px, 100%);
    margin: -72px auto 0;
    padding: 40px 24px;
  }
  .m68-courses__photos,
  .m68-courses__grid,
  .m68-highlight__inner {
    grid-template-columns: 1fr;
  }
  .m68-courses__photos {
    margin-top: -48px;
  }
  .m68-courses__band {
    height: 96px;
  }
  .m68-courses__photos img {
    height: 260px;
  }
  .m68-electives__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 18px;
  }
  .m68-highlight__inner {
    gap: 24px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (max-width: 640px) {
  .m68-hero {
    min-height: 280px;
  }
  .m68-hero__inner {
    padding: 56px 16px;
  }
  .m68-core-intro__inner,
  .m68-electives-intro__inner {
    padding-top: 48px;
  }
  .m68-electives__grid {
    grid-template-columns: 1fr;
  }
  .m68-cta__inner {
    padding-bottom: 64px;
  }
}

/* 9-12 Program page */
.hs-page {
  background: var(--color-white);
}
.hs-hero {
  position: relative;
  min-height: 397px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hs-hero__bg {
  position: absolute;
  inset: 0;
}
.hs-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hs-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(192, 143, 38, 0.3);
}
.hs-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 80px 16px;
  text-align: center;
}
.hs-hero__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 6vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.hs-overview {
  background: var(--color-white);
  padding-bottom: 51px;
}
.hs-overview__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 0 16px;
}
.hs-overview__stage {
  position: relative;
  width: 100%;
  min-height: 842px;
}
.hs-overview__media {
  position: absolute;
  top: 69px;
  left: 27.24%;
  width: 77.76%;
  max-width: 762px;
  z-index: 1;
}
.hs-overview__media img {
  display: block;
  width: 100%;
  height: 524px;
  object-fit: cover;
}
.hs-overview__panel {
  position: absolute;
  top: 318px;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(473px, 48.27%);
  aspect-ratio: 1;
  padding: 48px 28px;
  background: var(--color-cream);
  box-sizing: border-box;
}
.hs-overview__title {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--color-gold-dark);
}
.hs-overview__text {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.75;
  text-align: center;
  color: var(--color-black);
}
.hs-testimonial {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hs-testimonial__bg {
  position: absolute;
  inset: 0;
}
.hs-testimonial__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hs-testimonial__overlay {
  position: absolute;
  inset: 0;
  background: rgba(192, 143, 38, 0.55);
}
.hs-testimonial__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 64px 16px;
  text-align: center;
}
.hs-testimonial__quote {
  margin: 0 0 20px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.25rem, 3vw, 30px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-white);
}
.hs-testimonial__name {
  margin: 0 0 4px;
  font-family: var(--font-open-sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-white);
}
.hs-testimonial__role {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  font-style: italic;
  color: var(--color-white);
}
.hs-intro__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 56px 16px 32px;
  text-align: center;
}
.hs-intro--cream {
  background: rgba(255, 245, 216, 0.8);
}
.hs-intro--cream .hs-intro__inner {
  padding: 56px 16px;
}
.hs-intro__title {
  margin: 0 0 20px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}
.hs-intro__text {
  margin: 0 auto;
  max-width: 900px;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.8;
  color: var(--color-black);
}
.hs-courses {
  background: var(--color-white);
  padding-bottom: 56px;
}
.hs-courses__band {
  height: 120px;
  background: var(--color-gold);
}
.hs-courses__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  padding-inline: 16px;
}
.hs-courses__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: -72px;
  margin-bottom: 0;
}
.hs-courses__photos img {
  display: block;
  width: 100%;
  height: 325px;
  object-fit: cover;
}
.hs-courses__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}
.hs-courses__panel {
  padding: 28px 24px 32px;
  background: var(--color-cream);
}
.hs-courses__heading {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-gold);
}
.hs-courses__list {
  margin: 0;
  padding-left: 1.25rem;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-black);
}
.hs-courses__list li {
  margin-bottom: 10px;
}
.hs-courses__list li:last-child {
  margin-bottom: 0;
}
.hs-highlight {
  background: var(--color-gold);
}
.hs-highlight__inner {
  display: grid;
  grid-template-columns: minmax(0, 373px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 64px 16px;
}
.hs-highlight__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}
.hs-highlight__text {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.8;
  color: var(--color-white);
}
.hs-cta {
  background: var(--color-white);
}
.hs-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 64px 16px 80px;
  text-align: center;
}
.hs-cta__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.75rem, 5vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-gold);
}
.hs-cta__text {
  margin: 0;
  max-width: 760px;
  font-family: "Times New Roman", Times, serif;
  font-size: 19px;
  line-height: 1.8;
  color: var(--color-black);
}
.hs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 160px;
  min-height: 42px;
  padding: 10px 24px;
  border: 1px solid var(--color-gold);
  background: var(--color-gold);
  font-family: var(--font-raleway);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  color: var(--color-white);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.hs-btn:hover {
  background: var(--color-white);
  border-color: var(--color-gold-dark);
  color: var(--color-gold-dark);
}
.hs-btn__arrow {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 900px) {
  .hs-overview__stage {
    min-height: auto;
    padding: 32px 0;
  }
  .hs-overview__media {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
  }
  .hs-overview__media img {
    height: auto;
    min-height: 280px;
    aspect-ratio: 762 / 524;
  }
  .hs-overview__panel {
    position: relative;
    top: auto;
    left: auto;
    width: min(473px, 100%);
    margin: -72px auto 0;
    padding: 40px 24px;
  }
  .hs-courses__photos,
  .hs-courses__grid,
  .hs-highlight__inner {
    grid-template-columns: 1fr;
  }
  .hs-courses__photos {
    margin-top: -48px;
  }
  .hs-courses__band {
    height: 96px;
  }
  .hs-courses__photos img {
    height: 260px;
  }
  .hs-highlight__inner {
    gap: 24px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (max-width: 640px) {
  .hs-hero {
    min-height: 280px;
  }
  .hs-hero__inner {
    padding: 56px 16px;
  }
  .hs-intro__inner {
    padding-top: 48px;
  }
  .hs-cta__inner {
    padding-bottom: 64px;
  }
}

/* Course Plan Samples page */
.cps-page {
  background: var(--color-white);
}
.cps-hero {
  position: relative;
  min-height: 397px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cps-hero__bg {
  position: absolute;
  inset: 0;
}
.cps-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cps-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}
.cps-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 80px 16px;
  text-align: center;
}
.cps-hero__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 6vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.cps-intro {
  background: rgba(255, 245, 216, 0.8);
}
.cps-intro__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 56px 16px;
  text-align: center;
}
.cps-intro__title {
  margin: 0 0 24px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}
.cps-intro__text {
  margin: 0 auto 18px;
  max-width: 900px;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-black);
}
.cps-intro__text:last-child {
  margin-bottom: 0;
}
.cps-week {
  background: var(--color-white);
}
.cps-week__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 100%;
  min-height: 560px;
}
.cps-week__aside {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 48px;
  background: var(--color-gold-dark);
  text-align: center;
}
.cps-week__title {
  margin: 0;
  max-width: 360px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-white);
}
.cps-week__content {
  padding: 56px clamp(32px, 5vw, 72px);
  background: var(--color-white);
}
.cps-week__subtitle {
  margin: 0 0 28px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.35rem, 3vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-gold-dark);
}
.cps-week__label {
  margin: 0 0 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-gold-dark);
}
.cps-week__text {
  margin: 0 0 22px;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-black);
}
.cps-week__list {
  margin: 0 0 24px;
  padding-left: 1.35rem;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-black);
}
.cps-week__list li {
  margin-bottom: 6px;
}
.cps-week__concepts {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-black);
}
.cps-week__concepts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.cps-week__icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  background-color: var(--color-gold-dark);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='27.5 24.5 145 151'%3E%3Cpath fill='black' d='M166.82 92.908c-4.907-6.392-12.402-9.912-21.097-9.912h-15.146c6.23-13.612 6.442-33.453 1.485-45.221-3.609-8.563-9.786-13.275-17.398-13.275-2.065 0-4.226.362-6.425 1.067C97.378 29.064 96.97 37.703 96.61 45.321c-.525 11.074-1.32 27.359-29.535 48.386V83.144H27.5v90.882h39.575v-11.241c6.772 6.125 16.413 12.715 26.557 12.715h45.764c9.546 0 18.961-7.209 21.44-16.41l10.278-38.174c2.838-10.55 1.275-20.76-4.294-28.008zM56.546 163.515H38.029V93.66h18.518l-.001 69.855zm104.396-45.33l-10.278 38.176c-1.237 4.598-6.501 8.625-11.269 8.625H93.632c-9.948 0-21.633-11.478-26.557-17.341v-41.027c38.409-26.049 39.433-47.737 40.053-60.801.38-8.062.829-9.112 4.341-10.246 1.153-.371 2.23-.557 3.196-.557 3.193 0 5.778 2.302 7.69 6.838 5.25 12.462 2.515 34.824-5.228 42.724l-8.754 8.931h37.35c5.424 0 9.831 2.003 12.74 5.796 3.559 4.637 4.463 11.515 2.479 18.882z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='27.5 24.5 145 151'%3E%3Cpath fill='black' d='M166.82 92.908c-4.907-6.392-12.402-9.912-21.097-9.912h-15.146c6.23-13.612 6.442-33.453 1.485-45.221-3.609-8.563-9.786-13.275-17.398-13.275-2.065 0-4.226.362-6.425 1.067C97.378 29.064 96.97 37.703 96.61 45.321c-.525 11.074-1.32 27.359-29.535 48.386V83.144H27.5v90.882h39.575v-11.241c6.772 6.125 16.413 12.715 26.557 12.715h45.764c9.546 0 18.961-7.209 21.44-16.41l10.278-38.174c2.838-10.55 1.275-20.76-4.294-28.008zM56.546 163.515H38.029V93.66h18.518l-.001 69.855zm104.396-45.33l-10.278 38.176c-1.237 4.598-6.501 8.625-11.269 8.625H93.632c-9.948 0-21.633-11.478-26.557-17.341v-41.027c38.409-26.049 39.433-47.737 40.053-60.801.38-8.062.829-9.112 4.341-10.246 1.153-.371 2.23-.557 3.196-.557 3.193 0 5.778 2.302 7.69 6.838 5.25 12.462 2.515 34.824-5.228 42.724l-8.754 8.931h37.35c5.424 0 9.831 2.003 12.74 5.796 3.559 4.637 4.463 11.515 2.479 18.882z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}
.cps-week__icon svg {
  display: none;
}
.cps-week__rule,
.cps-structure__rule {
  width: 120px;
  height: 3px;
  margin: 0 auto 28px;
  background: var(--color-gold-dark);
}
.cps-structure {
  background: rgba(255, 245, 216, 0.8);
}
.cps-structure__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 56px 16px;
}
.cps-structure__title {
  margin: 0 0 28px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 4vw, 36px);
  font-weight: 700;
  text-align: center;
  color: var(--color-black);
}
.cps-structure__list {
  margin: 0;
  padding-left: 1.5rem;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.9;
  color: var(--color-black);
}
.cps-structure__list li {
  margin-bottom: 12px;
}
.cps-breakdown {
  background: var(--color-gold-dark);
}
.cps-breakdown__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 40px 16px;
  text-align: center;
}
.cps-breakdown__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 4vw, 35px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}
.cps-days {
  background: var(--color-white);
  padding-bottom: 48px;
}
.cps-days__band {
  height: 120px;
  background: var(--color-gold);
}
.cps-days__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  padding-inline: 16px;
}
.cps-days__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: -72px;
}
.cps-days__photos img {
  display: block;
  width: 100%;
  height: 325px;
  object-fit: cover;
}
.cps-days__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}
.cps-days__panel {
  padding: 28px 24px 32px;
  background: var(--color-cream);
}
.cps-days__heading {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-gold);
}
.cps-days__list {
  margin: 0;
  padding-left: 1.25rem;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-black);
}
.cps-days__list li {
  margin-bottom: 10px;
}
.cps-days__list a {
  color: var(--color-gold-dark);
  text-decoration: underline;
}
.cps-days__list a:hover {
  color: var(--color-gold);
}
.cps-disclaimer {
  background: var(--color-white);
  padding-bottom: 72px;
}
.cps-disclaimer__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 8px 16px 0;
}
.cps-disclaimer__text {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.75;
  text-align: center;
  color: var(--color-black);
}

@media (max-width: 900px) {
  .cps-days__photos,
  .cps-days__grid {
    grid-template-columns: 1fr;
  }
  .cps-days__photos {
    margin-top: -48px;
  }
  .cps-days__band {
    height: 96px;
  }
  .cps-days__photos img {
    height: 260px;
  }
  .cps-week__split {
    grid-template-columns: 1fr;
  }
  .cps-week__aside {
    min-height: 220px;
    padding: 40px 28px;
  }
  .cps-week__content {
    padding: 40px 28px;
  }
}

@media (max-width: 640px) {
  .cps-hero {
    min-height: 280px;
  }
  .cps-hero__inner {
    padding: 56px 16px;
  }
  .cps-week__split {
    grid-template-columns: 1fr;
  }
  .cps-week__aside {
    min-height: 200px;
    padding: 40px 24px;
  }
  .cps-week__content {
    padding: 40px 24px;
  }
  .cps-intro__inner,
  .cps-structure__inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

/* Self-Paced / Independent Enrichment Courses */
.iec-page {
  background: var(--color-white);
}
.iec-intro {
  background: var(--color-white);
}
.iec-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 279px;
  gap: 40px;
  align-items: start;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 67px 16px 68px;
}
.iec-intro__title {
  margin: 0 0 24px;
  max-width: 494px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 3.5vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-gold-dark);
}
.iec-intro__text {
  margin: 0;
  max-width: 674px;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-black);
}
.iec-intro__logo img {
  display: block;
  width: 279px;
  height: 271px;
  object-fit: cover;
}
.iec-courses {
  background: var(--color-white);
  padding-bottom: 72px;
}
.iec-courses__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 0 16px;
}
.iec-course {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.iec-course__media img {
  display: block;
  width: 100%;
  height: 282px;
  object-fit: cover;
}
.iec-course__title {
  margin: 0 0 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-black);
}
.iec-course__meta {
  margin: 0 0 12px;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-gold-dark);
}
.iec-course__text {
  margin: 0 0 20px;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-black);
}
.iec-course__text p {
  margin: 0 0 12px;
}
.iec-course__text p:last-child {
  margin-bottom: 0;
}
.iec-course__note {
  font-style: italic;
}
.iec-course__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  background: var(--color-gold-dark);
  font-family: var(--font-helvetica-light);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--color-white);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1px solid var(--color-gold-dark);
}
.iec-course__btn:hover {
  background: var(--color-white);
  color: var(--color-gold-dark);
}

@media (max-width: 900px) {
  .iec-intro__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .iec-intro__title,
  .iec-intro__text {
    max-width: none;
  }
  .iec-course {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .iec-course__media img {
    height: auto;
    aspect-ratio: 310 / 282;
  }
}

@media (max-width: 640px) {
  .iec-intro__logo img {
    width: min(220px, 100%);
    height: auto;
    aspect-ratio: 279 / 271;
  }
  .iec-courses__inner {
    gap: 32px;
  }
}

/* Graduation Requirements page */
.gr-page {
  background: var(--color-white);
}
.gr-hero {
  position: relative;
  min-height: 397px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gr-hero__bg {
  position: absolute;
  inset: 0;
}
.gr-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gr-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}
.gr-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 80px 16px;
  text-align: center;
}
.gr-hero__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 6vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.gr-info {
  background: rgba(255, 245, 216, 0.8);
}
.gr-info__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 56px 16px 64px;
}
.gr-info__title {
  margin: 0 0 24px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: var(--color-gold-dark);
}
.gr-info__subtitle {
  margin: 32px 0 14px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.25rem, 3vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-gold-dark);
}
.gr-info__text {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-black);
}
.gr-info__text:last-child {
  margin-bottom: 0;
}
.gr-info__text a {
  color: var(--color-gold-dark);
  text-decoration: underline;
}
.gr-info__text a:hover {
  color: var(--color-gold);
}
.gr-info__list {
  margin: 0 0 8px;
  padding-left: 1.5rem;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-black);
}
.gr-table-section {
  position: relative;
  overflow: hidden;
}
.gr-table-section__bg {
  position: absolute;
  inset: 0;
}
.gr-table-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gr-table-section__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 64px 16px 80px;
}
.gr-table-section__title {
  margin: 0 0 36px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: var(--color-black);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}
.gr-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.75fr) minmax(0, 1.35fr);
  column-gap: 10px;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.4;
  color: var(--color-black);
}
.gr-grid__h {
  padding: 14px 12px;
  background: var(--color-gold);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: var(--color-white);
}
.gr-grid__c {
  padding: 16px 18px;
  background: rgba(255, 245, 216, 0.92);
}
.gr-grid__c--center {
  text-align: center;
}
.gr-grid__c--total {
  font-weight: 700;
  padding-bottom: 28px;
}

@media (max-width: 700px) {
  .gr-hero {
    min-height: 280px;
  }
  .gr-hero__inner {
    padding: 56px 16px;
  }
  .gr-info__inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .gr-table-section__inner {
    padding-top: 48px;
    padding-bottom: 56px;
    overflow-x: auto;
  }
  .gr-grid {
    min-width: 720px;
  }
}

/* College Planning page */
.colp-page {
  background: var(--color-white);
}
.colp-hero {
  position: relative;
  min-height: 397px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.colp-hero__bg {
  position: absolute;
  inset: 0;
}
.colp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.colp-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}
.colp-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 80px 16px;
  text-align: center;
}
.colp-hero__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 6vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.colp-intro {
  background: var(--color-white);
}
.colp-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 279px;
  gap: 40px;
  align-items: start;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 56px 16px 64px;
}
.colp-intro__title {
  margin: 0 0 20px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 3.5vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-gold-dark);
}
.colp-intro__text {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-black);
}
.colp-intro__logo img {
  display: block;
  width: 279px;
  height: 271px;
  object-fit: cover;
}
.colp-grades {
  background: var(--color-cream);
}
.colp-grades__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 56px 16px 64px;
}
.colp-grade__title {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.35rem, 3vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-gold-dark);
}
.colp-grade__text {
  margin: 0 0 14px;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-black);
}
.colp-grade__list {
  margin: 0 0 14px;
  padding-left: 1.5rem;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-black);
}
.colp-grade__list li {
  margin-bottom: 10px;
}
.colp-grade__list:last-child {
  margin-bottom: 0;
}
.colp-advantages {
  background: rgba(255, 245, 216, 0.8);
}
.colp-advantages__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 100%;
  align-items: stretch;
}
.colp-advantages__media {
  min-height: 420px;
  overflow: hidden;
}
.colp-advantages__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.colp-advantages__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px clamp(24px, 4vw, 56px);
}
.colp-advantages__title {
  margin: 0 0 18px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gold-dark);
}
.colp-advantages__text {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-black);
}
.colp-advantages__list {
  margin: 0;
  padding-left: 1.5rem;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-black);
}
.colp-advantages__list li {
  margin-bottom: 12px;
}
.colp-close {
  background: #f7f7f7;
}
.colp-close__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 56px 16px 72px;
}
.colp-close__text {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  color: var(--color-black);
}

@media (max-width: 900px) {
  .colp-intro__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .colp-advantages__split {
    grid-template-columns: 1fr;
  }
  .colp-advantages__media {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .colp-hero {
    min-height: 280px;
  }
  .colp-hero__inner {
    padding: 56px 16px;
  }
  .colp-intro__logo img {
    width: min(220px, 100%);
    height: auto;
    aspect-ratio: 279 / 271;
  }
  .colp-grades__inner,
  .colp-close__inner {
    padding-top: 48px;
    padding-bottom: 56px;
  }
}

/* Academic Advising page */
.aa-page {
  background: var(--color-white);
}
.aa-hero {
  position: relative;
  min-height: 397px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.aa-hero__bg {
  position: absolute;
  inset: 0;
}
.aa-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.aa-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}
.aa-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 80px 16px;
  text-align: center;
}
.aa-hero__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 6vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.aa-content {
  background: var(--color-white);
}
.aa-content__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 100%;
  min-height: 640px;
}
.aa-content__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(24px, 5vw, 72px);
  background: var(--color-white);
}
.aa-content__title {
  margin: 0 0 24px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}
.aa-content__text {
  margin: 0 0 18px;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-black);
}
.aa-content__list {
  margin: 0 0 22px;
  padding-left: 1.5rem;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-black);
}
.aa-content__list li {
  margin-bottom: 8px;
}
.aa-content__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--color-cream);
}
.aa-content__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.aa-content__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 245, 216, 0.35);
  pointer-events: none;
}
.aa-cta {
  background: var(--color-cream);
}
.aa-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 64px 16px 80px;
  text-align: center;
}
.aa-cta__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.75rem, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}
.aa-cta__text {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-black);
}
.aa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 42px;
  padding: 10px 24px;
  border: 1px solid var(--color-gold-dark);
  background: var(--color-gold-dark);
  font-family: var(--font-helvetica-light);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--color-white);
  transition: background 0.2s ease, color 0.2s ease;
}
.aa-btn:hover {
  background: var(--color-white);
  color: var(--color-gold-dark);
}

@media (max-width: 900px) {
  .aa-content__split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .aa-content__media {
    min-height: 360px;
    order: -1;
  }
  .aa-content__copy {
    padding: 48px 24px;
  }
}

@media (max-width: 640px) {
  .aa-hero {
    min-height: 280px;
  }
  .aa-hero__inner {
    padding: 56px 16px;
  }
  .aa-cta__inner {
    padding-bottom: 64px;
  }
}

/* Student Support Services page */
.sss-page {
  background: var(--color-white);
}
.sss-hero {
  position: relative;
  min-height: 397px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sss-hero__bg {
  position: absolute;
  inset: 0;
}
.sss-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.sss-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}
.sss-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 80px 16px;
  text-align: center;
}
.sss-hero__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 6vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.sss-intro {
  background: var(--color-white);
}
.sss-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 64px 16px 48px;
}
.sss-intro__title {
  margin: 0 0 20px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.75rem, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-gold-dark);
}
.sss-intro__text {
  margin: 0 0 16px;
  max-width: 674px;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.65;
  color: var(--color-gold-dark);
}
.sss-intro__text:last-child {
  margin-bottom: 0;
}
.sss-intro__logo img {
  display: block;
  width: 279px;
  max-width: 100%;
  height: auto;
}
.sss-services {
  background: var(--color-gold-dark);
}
.sss-services__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(100%, 1240px);
  margin-inline: auto;
  padding: 48px 16px 64px;
}
.sss-card {
  display: flex;
  flex-direction: column;
  background: var(--color-cream);
  overflow: hidden;
}
.sss-card__media {
  aspect-ratio: 400 / 325;
  overflow: hidden;
  background: var(--color-cream);
}
.sss-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sss-card__body {
  flex: 1;
  padding: 28px 24px 32px;
}
.sss-card__title {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.15rem, 2vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-gold-dark);
}
.sss-card__text {
  margin: 0 0 14px;
  font-family: "Times New Roman", Times, serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-black);
}
.sss-card__list {
  margin: 0;
  padding-left: 1.15rem;
  font-family: "Times New Roman", Times, serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-black);
}
.sss-card__list li {
  margin-bottom: 10px;
}
.sss-card__list li:last-child {
  margin-bottom: 0;
}
.sss-card__list a {
  color: var(--color-gold-dark);
  text-decoration: underline;
}
.sss-card__list a:hover {
  color: var(--color-black);
}
.sss-admissions {
  background: var(--color-white);
}
.sss-admissions__inner {
  padding: 71px 16px 80px;
}
.sss-admissions__layout {
  position: relative;
  width: min(100%, 920px);
  min-height: 376px;
  margin-inline: auto;
}
.sss-admissions__family {
  position: relative;
  width: min(100%, 677px);
  min-height: 376px;
  margin-left: auto;
  padding: 72px 40px 48px 220px;
  background: #ebebeb;
}
.sss-admissions__family-title {
  margin: 0 0 24px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.75rem, 4vw, 45px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-gold-dark);
}
.sss-admissions__family-text {
  margin: 0;
  max-width: 415px;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.6;
  color: #242323;
}
.sss-admissions__contact {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  width: min(100%, 464px);
  min-height: 265px;
  padding: 40px 32px;
  background: var(--color-gold);
  transform: translateY(-50%);
  text-align: center;
}
.sss-admissions__contact-title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 3.5vw, 37px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
}
.sss-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 40px;
  padding: 10px 24px;
  border: 1px solid var(--color-white);
  background: var(--color-white);
  font-family: var(--font-open-sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--color-gold-dark);
  transition: background 0.2s ease, color 0.2s ease;
}
.sss-btn:hover {
  background: transparent;
  color: var(--color-white);
}

@media (max-width: 1100px) {
  .sss-services__inner {
    grid-template-columns: 1fr;
    width: min(100%, 560px);
  }
}

@media (max-width: 900px) {
  .sss-intro__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 48px;
  }
  .sss-intro__text {
    margin-inline: auto;
  }
  .sss-intro__logo {
    justify-self: center;
  }
  .sss-admissions__layout {
    min-height: 0;
  }
  .sss-admissions__family {
    width: 100%;
    min-height: 0;
    margin-left: 0;
    padding: 48px 24px 40px;
  }
  .sss-admissions__contact {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    margin-bottom: 24px;
    transform: none;
  }
  .sss-admissions__layout {
    display: flex;
    flex-direction: column;
  }
  .sss-admissions__contact {
    order: -1;
  }
}

@media (max-width: 640px) {
  .sss-hero {
    min-height: 280px;
  }
  .sss-hero__inner {
    padding: 56px 16px;
  }
  .sss-intro__logo img {
    width: 200px;
  }
  .sss-card__body {
    padding: 24px 20px 28px;
  }
  .sss-admissions__inner {
    padding-bottom: 64px;
  }
}

/* IEP/504 Counseling page */
.iep-page {
  background: var(--color-white);
}
.iep-hero {
  position: relative;
  min-height: 397px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.iep-hero__bg {
  position: absolute;
  inset: 0;
}
.iep-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.iep-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}
.iep-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 80px 16px;
  text-align: center;
}
.iep-hero__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 6vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.iep-intro {
  background: var(--color-white);
}
.iep-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 64px 16px 48px;
}
.iep-intro__title {
  margin: 0 0 20px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gold-dark);
}
.iep-intro__text {
  margin: 0;
  max-width: 674px;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.65;
  color: var(--color-gold-dark);
}
.iep-intro__logo img {
  display: block;
  width: 279px;
  max-width: 100%;
  height: auto;
}
.iep-features {
  background: var(--color-white);
  padding-bottom: 72px;
}
.iep-features__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 0 16px;
}
.iep-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.iep-card__media {
  aspect-ratio: 473 / 325;
  overflow: hidden;
  background: var(--color-cream);
}
.iep-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.iep-card__body {
  flex: 1;
  padding: 28px 24px 32px;
  background: var(--color-cream);
}
.iep-card__title {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.15rem, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-gold-dark);
}
.iep-card__list {
  margin: 0;
  padding-left: 1.15rem;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-black);
}
.iep-card__list li {
  margin-bottom: 12px;
}
.iep-card__list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .iep-intro__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 48px;
  }
  .iep-intro__text {
    margin-inline: auto;
  }
  .iep-intro__logo {
    justify-self: center;
  }
  .iep-features__inner {
    grid-template-columns: 1fr;
    width: min(100%, 560px);
  }
}

@media (max-width: 640px) {
  .iep-hero {
    min-height: 280px;
  }
  .iep-hero__inner {
    padding: 56px 16px;
  }
  .iep-intro__logo img {
    width: 200px;
  }
  .iep-card__body {
    padding: 24px 20px 28px;
  }
  .iep-features {
    padding-bottom: 56px;
  }
}

/* Back-to-School Info page */
.bts-page {
  background: var(--color-white);
}
.bts-hero {
  position: relative;
  min-height: 397px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bts-hero__bg {
  position: absolute;
  inset: 0;
}
.bts-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bts-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}
.bts-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 80px 16px;
  text-align: center;
}
.bts-hero__title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 5.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.bts-intro {
  background: var(--color-white);
}
.bts-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 64px 16px 48px;
}
.bts-intro__title {
  margin: 0 0 20px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gold-dark);
}
.bts-intro__text {
  margin: 0;
  max-width: 674px;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.65;
  color: var(--color-gold-dark);
}
.bts-intro__logo img {
  display: block;
  width: 279px;
  max-width: 100%;
  height: auto;
}
.bts-section-title {
  margin: 0 0 28px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.75rem, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-gold-dark);
  text-align: center;
}
.bts-cards--cream {
  background: var(--color-cream);
  padding: 48px 0 56px;
}
.bts-cards__inner,
.bts-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 0 16px;
}
.bts-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-cream);
}
.bts-cards--cream .bts-card {
  background: var(--color-white);
}
.bts-card__media {
  aspect-ratio: 473 / 325;
  overflow: hidden;
  background: #f0ebe0;
}
.bts-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bts-card__body {
  flex: 1;
  padding: 28px 24px 32px;
}
.bts-card__title {
  margin: 0 0 14px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.15rem, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-gold-dark);
}
.bts-card__text,
.bts-card__list {
  margin: 0 0 12px;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-black);
}
.bts-card__text:last-child,
.bts-card__list:last-child {
  margin-bottom: 0;
}
.bts-card__list {
  padding-left: 1.15rem;
}
.bts-card__list li {
  margin-bottom: 8px;
}
.bts-card__list li:last-child {
  margin-bottom: 0;
}
.bts-card__list--checks {
  list-style: none;
  padding-left: 0;
}
.bts-card__list--checks li {
  position: relative;
  padding-left: 1.6rem;
}
.bts-card__list--checks li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  color: var(--color-gold-dark);
  font-weight: 700;
}
.bts-card__list--numbered {
  list-style: decimal;
}
.bts-platform {
  background: var(--color-cream);
}
.bts-platform__split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  width: 100%;
  min-height: 420px;
}
.bts-platform__media {
  min-height: 320px;
  overflow: hidden;
}
.bts-platform__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bts-platform__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px clamp(24px, 5vw, 64px);
  background: rgba(255, 245, 216, 0.92);
}
.bts-platform__title {
  margin: 0 0 20px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-gold-dark);
}
.bts-platform__list {
  margin: 0 0 18px;
  padding-left: 1.15rem;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-black);
}
.bts-platform__list li {
  margin-bottom: 10px;
}
.bts-platform__note {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-black);
}
.bts-tech {
  background: #f7f7f7;
  padding: 56px 0 64px;
}
.bts-tech .bts-card {
  background: var(--color-cream);
}
.bts-schedules {
  background: #f7f7f7;
  padding: 8px 0 64px;
}
.bts-schedules__inner {
  width: min(100%, 780px);
  margin-inline: auto;
  padding: 0 16px;
  text-align: center;
}
.bts-schedules__text {
  margin: 0 0 14px;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.7;
  color: var(--color-black);
}
.bts-schedules__text:last-child {
  margin-bottom: 0;
}
.bts-expectations {
  background: var(--color-cream);
  padding: 56px 0 64px;
}
.bts-expectations .bts-card {
  background: var(--color-white);
}
.bts-pta {
  background: #f7f7f7;
  padding: 56px 0 64px;
}
.bts-pta__inner {
  width: min(100%, 780px);
  margin-inline: auto;
  padding: 0 16px;
  text-align: center;
}
.bts-pta__text {
  margin: 0 0 14px;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.7;
  color: var(--color-black);
}
.bts-pta__text:last-child {
  margin-bottom: 0;
}
.bts-faqs {
  background: var(--color-cream);
  padding: 56px 0 64px;
}
.bts-faqs__inner {
  width: min(100%, 780px);
  margin-inline: auto;
  padding: 0 16px;
}
.bts-faq {
  margin-bottom: 28px;
}
.bts-faq:last-child {
  margin-bottom: 0;
}
.bts-faq__q {
  margin: 0 0 10px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.25rem, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-gold-dark);
  text-align: center;
}
.bts-faq__a {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-black);
  text-align: center;
}
.bts-final {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.bts-final__bg {
  position: absolute;
  inset: 0;
}
.bts-final__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bts-final__overlay {
  position: absolute;
  inset: 0;
  background: rgba(247, 247, 247, 0.78);
}
.bts-final__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
  margin-inline: auto;
  padding: 72px 16px;
  text-align: center;
}
.bts-final__title {
  margin: 0 0 24px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.75rem, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-gold-dark);
}
.bts-final__list {
  margin: 0 0 24px;
  padding-left: 0;
  list-style: none;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.75;
  color: var(--color-black);
}
.bts-final__list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 1.4rem;
  text-align: left;
  max-width: 520px;
  margin-inline: auto;
}
.bts-final__list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--color-gold-dark);
  font-weight: 700;
}
.bts-final__text {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-black);
}

@media (max-width: 900px) {
  .bts-intro__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 48px;
  }
  .bts-intro__text {
    margin-inline: auto;
  }
  .bts-intro__logo {
    justify-self: center;
  }
  .bts-cards__inner,
  .bts-cards__grid {
    grid-template-columns: 1fr;
    width: min(100%, 560px);
  }
  .bts-platform__split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .bts-platform__media {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .bts-hero {
    min-height: 280px;
  }
  .bts-hero__inner {
    padding: 56px 16px;
  }
  .bts-intro__logo img {
    width: 200px;
  }
  .bts-card__body {
    padding: 24px 20px 28px;
  }
  .bts-final__inner {
    padding: 56px 16px;
  }
}

/* School Calendar page */
.cal-page {
  background: var(--color-white);
}
.cal-header {
  background: rgba(255, 245, 216, 0.8);
  padding: 72px 16px 48px;
}
.cal-header__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  text-align: center;
}
.cal-header__title {
  margin: 0 0 28px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 4vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-gold-dark);
}
.cal-header__dates {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.75;
  color: var(--color-black);
}
.cal-quarters {
  background: var(--color-white);
  padding: 48px 0 80px;
}
.cal-quarters__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 0 16px;
}
.cal-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cal-card__media {
  aspect-ratio: 473 / 325;
  overflow: hidden;
  background: var(--color-cream);
}
.cal-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cal-card__body {
  flex: 1;
  padding: 28px 24px 32px;
  background: var(--color-cream);
}
.cal-card__title {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.15rem, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-gold-dark);
}
.cal-card__list {
  margin: 0;
  padding-left: 1.15rem;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-black);
}
.cal-card__list li {
  margin-bottom: 8px;
}
.cal-card__list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .cal-quarters__inner {
    grid-template-columns: 1fr;
    width: min(100%, 560px);
  }
}

@media (max-width: 640px) {
  .cal-header {
    padding: 56px 16px 40px;
  }
  .cal-card__body {
    padding: 24px 20px 28px;
  }
  .cal-quarters {
    padding-bottom: 56px;
  }
}

/* Transcript & Record Request page */
.tr-page {
  background: var(--color-white);
}
.tr-intro {
  background: var(--color-white);
}
.tr-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 64px 16px 48px;
}
.tr-intro__title {
  margin: 0 0 20px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.75rem, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-gold-dark);
}
.tr-intro__text {
  margin: 0;
  max-width: 674px;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.65;
  color: var(--color-gold-dark);
}
.tr-intro__logo img {
  display: block;
  width: 279px;
  max-width: 100%;
  height: auto;
}
.tr-processing {
  background: #f7f7f7;
  padding: 48px 16px 56px;
}
.tr-processing__inner {
  width: min(100%, 780px);
  margin-inline: auto;
  text-align: center;
}
.tr-processing__title {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 3.5vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gold-dark);
}
.tr-processing__text {
  margin: 0 0 14px;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.7;
  color: var(--color-black);
}
.tr-processing__text:last-child {
  margin-bottom: 0;
}
.tr-processing__text a {
  color: var(--color-gold-dark);
  text-decoration: underline;
}
.tr-processing__text a:hover {
  color: var(--color-black);
}
.tr-form-section {
  background: var(--color-cream);
  padding: 56px 16px 80px;
}
.tr-form-section__inner {
  width: min(100%, 860px);
  margin-inline: auto;
}
.tr-form-card {
  padding: 48px clamp(20px, 4vw, 56px) 56px;
  background: var(--color-white);
}
.tr-form-section__title {
  margin: 0 0 40px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.75rem, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
  text-align: center;
}
.tr-form__fieldset {
  margin: 0 0 40px;
  padding: 0;
  border: 0;
}
.tr-form__legend {
  margin: 0 0 22px;
  padding: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-black);
}
.tr-form__field {
  margin-bottom: 28px;
}
.tr-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}
.tr-form__label {
  display: block;
  margin: 0 0 6px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-black);
}
.tr-form__req {
  color: var(--color-black);
}
.tr-form__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.tr-form__input,
.tr-form__textarea,
.tr-form__select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 8px 0 10px;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
  background: transparent;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-black);
  appearance: none;
  -webkit-appearance: none;
}
.tr-form__input::placeholder,
.tr-form__textarea::placeholder {
  color: #9a9a9a;
  font-style: italic;
}
.tr-form__input:focus,
.tr-form__textarea:focus,
.tr-form__select:focus {
  outline: none;
  border-bottom-color: #000;
  box-shadow: 0 1px 0 0 #000;
}
.tr-form__select {
  padding-right: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.5' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  cursor: pointer;
}
.tr-form__select:invalid {
  color: #9a9a9a;
  font-style: italic;
}
.tr-form__select option {
  color: var(--color-black);
  font-style: normal;
}
.tr-form__textarea {
  resize: vertical;
  min-height: 56px;
}
.tr-form__date {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 0 20px;
}
.tr-form__datetime {
  display: grid;
  gap: 20px;
}
.tr-form__time {
  max-width: 220px;
}
.tr-form__phone {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  border-bottom: 1px solid #000;
}
.tr-form__phone-code {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-bottom: 10px;
  color: #333;
  flex-shrink: 0;
}
.tr-form__chevron {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #000;
}
.tr-form__input--phone {
  border-bottom: 0;
  flex: 1;
  min-width: 0;
}
.tr-form__phone:focus-within {
  box-shadow: 0 1px 0 0 #000;
}
.tr-form__input--nested {
  margin-top: 8px;
  margin-left: 1.75rem;
  width: calc(100% - 1.75rem);
}
.tr-form__group {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}
.tr-form__choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 12px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-black);
  cursor: pointer;
}
.tr-form__choice input {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #000;
}
.tr-form__choice--certify {
  margin: 18px 0 28px;
}
.tr-form__consent {
  margin: 0 0 8px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-black);
}
.tr-form__actions {
  display: flex;
  justify-content: center;
  padding-top: 12px;
}
.tr-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 46px;
  padding: 12px 28px;
  border: 1px solid #000;
  background: #000;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-white);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.tr-form__submit:hover {
  background: var(--color-white);
  color: #000;
}

@media (max-width: 900px) {
  .tr-intro__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 48px;
  }
  .tr-intro__text {
    margin-inline: auto;
  }
  .tr-intro__logo {
    justify-self: center;
  }
}

@media (max-width: 700px) {
  .tr-form__row,
  .tr-form__date {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .tr-form__time {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .tr-intro__logo img {
    width: 200px;
  }
  .tr-form-section {
    padding-bottom: 64px;
  }
  .tr-form-card {
    padding: 36px 18px 44px;
  }
  .tr-form__input--nested {
    margin-left: 0;
    width: 100%;
  }
}

/* Careers page */
.car-page {
  background: var(--color-white);
}
.car-hero {
  position: relative;
  min-height: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.car-hero__bg {
  position: absolute;
  inset: 0;
}
.car-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.car-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(192, 143, 38, 0.78);
}
.car-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 80px 16px;
  text-align: center;
}
.car-hero__title {
  margin: 0;
  font-family: var(--font-montserrat, "Montserrat", sans-serif);
  font-size: clamp(2.5rem, 8vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-white);
}
.car-content {
  background: #fafafa;
  padding: 56px 16px 72px;
}
.car-content__inner {
  width: min(100%, 820px);
  margin-inline: auto;
}
.car-content__title {
  margin: 0 0 24px;
  font-family: var(--font-montserrat, "Montserrat", sans-serif);
  font-size: clamp(1.5rem, 3.5vw, 35px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-black);
  text-align: center;
}
.car-content__text {
  margin: 0 0 18px;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-black);
  text-align: center;
}
.car-content__text--after-banner {
  margin-top: 24px;
  margin-bottom: 36px;
}
.car-banner {
  margin: 28px 0 0;
  padding: 18px 24px;
  border: 2px solid var(--color-gold);
  border-radius: 13px 13px 0 0;
  background: var(--color-gold);
  text-align: center;
}
.car-banner__text {
  margin: 0;
  font-family: var(--font-montserrat, "Montserrat", sans-serif);
  font-size: clamp(1rem, 2.2vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-white);
}
.car-role {
  margin: 0 0 28px;
}
.car-role__header {
  padding: 16px 24px;
  border: 2px solid var(--color-gold);
  border-radius: 13px 13px 0 0;
  background: var(--color-gold);
  text-align: center;
}
.car-role__title {
  margin: 0;
  font-family: var(--font-montserrat, "Montserrat", sans-serif);
  font-size: clamp(1rem, 2.2vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-white);
}
.car-role__body {
  margin-top: -2px;
  padding: 28px 32px 32px;
  border-radius: 0 30px 30px 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 9px rgba(0, 0, 0, 0.13);
}
.car-role__text {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-black);
  text-align: center;
}
.car-actions {
  display: flex;
  justify-content: center;
  padding-top: 12px;
}
.car-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 53px;
  padding: 14px 28px;
  border: 0;
  border-radius: 13px 0 13px 0;
  background: var(--color-gold);
  font-family: var(--font-open-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--color-white);
  transition: background 0.2s ease;
}
.car-btn:hover {
  background: rgb(248, 221, 139);
  color: var(--color-white);
}

@media (max-width: 640px) {
  .car-hero {
    min-height: 260px;
  }
  .car-hero__inner {
    padding: 56px 16px;
  }
  .car-content {
    padding-bottom: 56px;
  }
  .car-role__body {
    padding: 24px 20px 28px;
  }
}

/* Contact page */
.ct-page {
  background: var(--color-white);
}
.ct-hero {
  position: relative;
  min-height: min(70vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ct-hero__bg {
  position: absolute;
  inset: 0;
}
.ct-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ct-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(192, 143, 38, 0.78);
}
.ct-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  padding: 80px 24px;
  text-align: center;
}
.ct-hero__title {
  margin: 0 0 36px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.75rem, 4vw, 31px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}
.ct-hero__list {
  margin: 0;
}
.ct-hero__row {
  margin: 0 0 22px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.05rem, 2.2vw, 20px);
  line-height: 1.55;
  color: var(--color-white);
}
.ct-hero__row:last-child {
  margin-bottom: 0;
}
.ct-hero__row dt,
.ct-hero__row dd {
  display: inline;
  margin: 0;
}
.ct-hero__row dt {
  font-weight: 700;
}
.ct-hero__row dd {
  font-weight: 400;
}
.ct-hero__row a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ct-hero__row a:hover {
  color: var(--color-cream);
}
.ct-form {
  background: var(--color-white);
}
.ct-form__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 44px 16px 72px;
}
.ct-form__iframe {
  display: block;
  width: 100%;
  min-height: 1400px;
  height: 1400px;
  border: 0;
  background: var(--color-white);
}

@media (max-width: 640px) {
  .ct-hero {
    min-height: 480px;
  }
  .ct-hero__inner {
    padding: 64px 20px;
  }
  .ct-form__iframe {
    min-height: 1600px;
    height: 1600px;
  }
}

/* Enroll A Student page (form only) */
.eas-page {
  background: var(--color-white);
}
.eas-form {
  background: var(--color-white);
}
.eas-form__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 48px 16px 72px;
}
.eas-form__iframe {
  display: block;
  width: 100%;
  min-height: 1639px;
  height: 1639px;
  border: 0;
  background: var(--color-white);
}

@media (max-width: 640px) {
  .eas-form__iframe {
    min-height: 1800px;
    height: 1800px;
  }
}

/* Blog listing page */
.blog-page {
  background: var(--color-white);
}
.blog-listing {
  padding: 48px 16px 80px;
}
.blog-listing__inner {
  width: min(100%, 980px);
  margin-inline: auto;
}
.blog-nav {
  margin-bottom: 36px;
}
.blog-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-nav__link {
  padding: 6px 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  font-family: var(--font-open-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: #666;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.blog-nav__link:hover {
  color: var(--color-gold-dark);
}
.blog-nav__link.is-active {
  color: var(--color-gold-dark);
  border-bottom-color: var(--color-gold);
  font-weight: 700;
}
.blog-listing__title {
  margin: 0 0 36px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.75rem, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-black);
  text-align: center;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
}
.blog-card[hidden],
.blog-card.is-hidden {
  display: none !important;
}
.blog-card__media {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f0f0f0;
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}
.blog-card__media:hover img {
  transform: scale(1.03);
}
.blog-card__body {
  padding-top: 18px;
}
.blog-card__title {
  margin: 0 0 12px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.15rem, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.3;
}
.blog-card__title a {
  color: var(--color-black);
  text-decoration: none;
}
.blog-card__title a:hover {
  color: var(--color-gold-dark);
}
.blog-card__meta {
  margin: 0;
  font-family: var(--font-open-sans);
  font-size: 13px;
  line-height: 1.5;
  color: #777;
}
.blog-card__author {
  font-weight: 600;
  color: #555;
}
.blog-card__sep {
  margin: 0 6px;
}

@media (max-width: 700px) {
  .blog-grid {
    grid-template-columns: 1fr;
    width: min(100%, 480px);
    margin-inline: auto;
  }
  .blog-listing {
    padding-bottom: 56px;
  }
}

/* Blog post pages */
.post-page {
  background: var(--color-white);
}
.post-article {
  padding: 40px 16px 80px;
}
.post-article__inner {
  width: min(100%, 780px);
  margin-inline: auto;
}
.post-article .blog-nav {
  margin-bottom: 40px;
}
.post-article .blog-nav__link {
  text-decoration: none;
}
.post-article__cover {
  margin: 0 0 36px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0f0f0;
}
.post-article__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.post-article__title {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.75rem, 4.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}
.post-article__meta {
  margin: 0 0 32px;
  font-family: var(--font-open-sans);
  font-size: 14px;
  line-height: 1.5;
  color: #777;
}
.post-article__author {
  font-weight: 600;
  color: #555;
}
.post-article__sep {
  margin: 0 6px;
}
.post-article__body {
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-black);
}
.post-article__body p {
  margin: 0 0 1.15em;
}
.post-article__body p:last-child {
  margin-bottom: 0;
}
.post-article__body a {
  color: var(--color-gold-dark);
  text-decoration: underline;
}
.post-article__body a:hover {
  color: var(--color-black);
}
.post-article__tags {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #e5e5e5;
}
.post-article__tags-label {
  margin: 0 0 12px;
  font-family: var(--font-open-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black);
}
.post-article__tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.post-article__tag {
  display: inline-block;
  padding: 6px 12px;
  background: #f5f5f5;
  font-family: var(--font-open-sans);
  font-size: 13px;
  color: #555;
  text-decoration: none;
}
.post-article__category {
  display: inline-block;
  font-family: var(--font-open-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gold-dark);
  text-decoration: none;
}
.post-article__category:hover {
  text-decoration: underline;
}
.post-article__back {
  margin-top: 36px;
}
.post-article__back-link {
  font-family: var(--font-open-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gold-dark);
  text-decoration: none;
}
.post-article__back-link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .post-article {
    padding-bottom: 56px;
  }
  .post-article__body {
    font-size: 17px;
  }
}

/* -- Legal / Terms -- */
.legal-page {
  background: var(--color-cream, #fff5d8);
}
.legal-section__inner {
  width: min(100%, 820px);
  margin-inline: auto;
  padding: 56px 16px 80px;
}
.legal-section__title {
  margin: 0 0 18px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--color-gold-dark, #c08f26);
}
.legal-section__lead {
  margin: 0 0 28px;
  font-family: var(--font-open-sans, "Open Sans", sans-serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-black, #111);
}
.legal-section__heading {
  margin: 28px 0 10px;
  font-family: "Times New Roman", Times, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-black, #111);
}
.legal-section p {
  margin: 0 0 14px;
  font-family: var(--font-open-sans, "Open Sans", sans-serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-black, #111);
}
.legal-section__list {
  margin: 0 0 14px;
  padding-left: 1.25em;
  font-family: var(--font-open-sans, "Open Sans", sans-serif);
  font-size: 16px;
  line-height: 1.55;
}
.legal-section__list li + li {
  margin-top: 6px;
}
.legal-section__cta {
  margin-top: 36px !important;
  padding-top: 24px;
  border-top: 1px solid rgba(192, 143, 38, 0.35);
}
.legal-section a {
  color: var(--color-gold-dark, #c08f26);
  font-weight: 600;
}

/* -- State scholarship picker -- */
.sts-page {
  background: var(--color-white, #fff);
}
.sts-intro {
  background: rgba(255, 245, 216, 0.85);
}
.sts-intro__inner,
.sts-states__inner {
  width: min(100%, 900px);
  margin-inline: auto;
  padding: 48px 16px;
}
.sts-intro__title {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--color-gold-dark, #c08f26);
}
.sts-intro__text {
  margin: 0;
  font-family: var(--font-open-sans, "Open Sans", sans-serif);
  font-size: 17px;
  line-height: 1.55;
}
.sts-states__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.sts-states__list a {
  display: block;
  padding: 14px 18px;
  background: rgba(255, 245, 216, 0.9);
  border-left: 4px solid var(--color-gold, #eaaa34);
  color: var(--color-black, #111);
  font-family: var(--font-open-sans, "Open Sans", sans-serif);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.sts-states__list a:hover {
  background: #fff5d8;
  color: var(--color-gold-dark, #c08f26);
}
.sts-states__note {
  margin: 28px 0 0;
  font-family: var(--font-open-sans, "Open Sans", sans-serif);
  font-size: 15px;
  line-height: 1.5;
}
.sts-states__note a {
  color: var(--color-gold-dark, #c08f26);
  font-weight: 600;
}

/* -- Find state scholarships guide -- */
.fsf-page {
  background: var(--color-white, #fff);
}
.fsf-intro {
  background: rgba(255, 245, 216, 0.85);
}
.fsf-intro__inner,
.fsf-states__inner {
  width: min(100%, 920px);
  margin-inline: auto;
  padding: 48px 16px;
}
.fsf-intro__title {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--color-gold-dark, #c08f26);
}
.fsf-intro__text {
  margin: 0;
  font-family: var(--font-open-sans, "Open Sans", sans-serif);
  font-size: 17px;
  line-height: 1.55;
}
.fsf-intro__text a,
.fsf-card a {
  color: var(--color-gold-dark, #c08f26);
  font-weight: 600;
}
.fsf-states__inner {
  display: grid;
  gap: 22px;
  padding-top: 32px;
  padding-bottom: 72px;
}
.fsf-card {
  padding: 22px 24px;
  background: rgba(255, 245, 216, 0.55);
  border-top: 3px solid var(--color-gold, #eaaa34);
}
.fsf-card__title {
  margin: 0 0 12px;
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
  color: var(--color-black, #111);
}
.fsf-card p,
.fsf-card li {
  font-family: var(--font-open-sans, "Open Sans", sans-serif);
  font-size: 16px;
  line-height: 1.55;
}
.fsf-card p {
  margin: 0 0 12px;
}
.fsf-card ul {
  margin: 0;
  padding-left: 1.2em;
}
.fsf-card li + li {
  margin-top: 6px;
}
.fsf-card--cta {
  background: rgba(234, 170, 52, 0.18);
}
.fsf-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
