@font-face {
  font-family: "museo-sans";
  src: url("assets/fonts/museo-sans-300.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "museo-sans";
  src: url("assets/fonts/museo-sans-500.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "museo-sans";
  src: url("assets/fonts/museo-sans-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --paper: #f8f7f3;
  --white: #ffffff;
  --ink: #24313c;
  --muted: #66727d;
  --line: rgba(36, 49, 60, 0.14);
  --navy: #153b59;
  --teal: #2a9fb0;
  --teal-deep: #0f6d79;
  --orange: #df6f3a;
  --plum: #6d4a80;
  --header-bg: rgba(104, 114, 122, 0.92);
  --shadow-lg: 0 28px 70px rgba(10, 28, 45, 0.18);
  --shadow-md: 0 18px 44px rgba(10, 28, 45, 0.12);
  --shell: min(1280px, calc(100% - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "museo-sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-is-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

p {
  margin: 0 0 1.4rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: "museo-sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4rem, 7vw, 6.45rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-label {
  margin-bottom: 1rem;
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-label--light {
  color: rgba(255, 255, 255, 0.84);
}

.button-row,
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.1;
  transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

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

.button--solid {
  background: var(--navy);
  color: var(--white);
}

.button--solid:hover,
.button--solid:focus-visible {
  background: #0f2f48;
}

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

.button--light:hover,
.button--light:focus-visible {
  background: #e9f7f8;
}

.button--ghost,
.button--ghost-dark {
  background: transparent;
  border-color: currentColor;
}

.button--ghost {
  color: var(--white);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.button--ghost-dark {
  color: var(--navy);
}

.button--ghost-dark:hover,
.button--ghost-dark:focus-visible {
  background: rgba(21, 59, 89, 0.06);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: transparent;
  border-top: 0;
  box-shadow: none;
  color: var(--white);
  transform: translateY(0);
  transition: transform 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 0;
  transition: background-color 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 12px));
}

.site-header.is-scrolled .site-header__bar,
.site-header.is-scrolled .site-header__inner {
  backdrop-filter: none;
}

.site-header.is-scrolled::before {
  background: rgba(164, 171, 178, 0.94);
  box-shadow: 0 14px 34px rgba(10, 28, 45, 0.14);
}

.site-header.is-scrolled {
  background: transparent;
  box-shadow: none;
}

.site-header.is-scrolled .site-header__bar,
.site-header.is-scrolled .site-header__inner {
  background: transparent;
  box-shadow: none;
}

.site-header__bar {
  position: relative;
  z-index: 1;
  background: transparent;
}

.site-header__inner {
  position: relative;
  z-index: 1;
}

.site-header__bar-inner {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: none;
  padding: 0.75rem 0 0.35rem;
  padding-inline: clamp(24px, 4vw, 56px);
}

.site-header__quicklinks,
.quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 96px;
  width: 100%;
  max-width: none;
  padding: 0.8rem clamp(24px, 4vw, 56px) 1rem;
  background: transparent;
}

.site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.site-brand img {
  width: clamp(190px, 23vw, 320px);
}

.site-nav--desktop {
  margin-left: auto;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 1rem;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  display: grid;
  min-width: 290px;
  padding: 14px 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.site-nav__dropdown a {
  padding: 0.85rem 1.25rem;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.35;
}

.site-nav__dropdown a:hover,
.site-nav__dropdown a:focus-visible {
  background: rgba(42, 159, 176, 0.1);
}

.site-nav__item:hover .site-nav__dropdown,
.site-nav__item:focus-within .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle,
.mobile-menu__close {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  padding: 0.85rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.menu-toggle__icon {
  display: inline-grid;
  gap: 5px;
}

.menu-toggle__icon span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  background: rgba(9, 18, 27, 0.62);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu__panel {
  width: min(94vw, 560px);
  height: 100%;
  margin-left: auto;
  padding: 1.4rem 1.25rem 2rem;
  background: #102d43;
  color: var(--white);
  overflow-y: auto;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 1.6rem;
}

.mobile-menu__brand img {
  width: min(240px, 52vw);
}

.mobile-menu__group + .mobile-menu__group {
  margin-top: 1.4rem;
}

.mobile-menu__group h2 {
  margin-bottom: 0.75rem;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 600;
}

.mobile-menu__group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu__group li + li {
  margin-top: 0.5rem;
}

.mobile-menu__group a {
  color: rgba(255, 255, 255, 0.84);
}

.hero {
  position: relative;
  overflow: clip;
  background: #0d1d28;
}

.hero__slides {
  position: relative;
  min-height: min(100svh, 900px);
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(8, 18, 26, 0.28), rgba(8, 18, 26, 0.58));
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: min(100svh, 900px);
  padding: 12rem 0 11rem;
}

.hero__copy {
  width: min(960px, 100%);
  color: var(--white);
}

.hero__eyebrow {
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__copy h1 {
  max-width: 960px;
  color: var(--white);
  font-size: clamp(4rem, 7vw, 6.45rem);
  font-weight: 300;
  line-height: 0.98;
  text-shadow: 0 20px 42px rgba(0, 0, 0, 0.16);
}

.hero__copy strong,
.intro-section__panel strong,
.doorways__intro strong {
  font-weight: 700;
}

.hero__meta {
  margin: 1.45rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.15rem;
  font-weight: 400;
}

.hero__actions {
  margin-top: 2rem;
}

.hero__controls {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  padding-bottom: 2.4rem;
}

.hero__controls.shell,
.hero .shell {
  width: min(100% - 56px, 1440px);
}

.hero__track {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange) 0 50%, var(--plum) 50% 100%);
}

.hero__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 1.25rem;
}

.hero__nav > button,
.hero__dot {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.hero__nav > button {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  font-size: 2rem;
  line-height: 1;
}

.hero__dots {
  display: flex;
  gap: 10px;
}

.hero__dot {
  width: 14px;
  height: 14px;
  padding: 0;
  border-radius: 999px;
  opacity: 0.5;
}

.hero__dot.is-active {
  opacity: 1;
  background: var(--white);
}

.intro-section {
  position: relative;
  padding: 7rem 0 6rem;
}

.intro-section__grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.03fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
}

.intro-section__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 3rem;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-md);
}

.intro-section__panel h2 {
  max-width: 14ch;
}

.intro-section__panel p:not(.section-label) {
  max-width: 38rem;
  margin-top: 1.4rem;
  color: var(--muted);
}

.intro-section__panel .button-row {
  margin-top: 2rem;
}

.intro-section__media {
  overflow: hidden;
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
}

.intro-section__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.learning-grid {
  padding: 1rem 0 7rem;
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.8rem;
}

.section-heading h2 {
  max-width: 14ch;
}

.learning-grid__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(20, 47, 70, 0.12);
}

.learning-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--white);
}

.learning-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.learning-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1.1rem;
  padding: 2rem 1.9rem 2.1rem;
}

.learning-card__body h3 {
  font-size: 1.9rem;
  line-height: 1.05;
}

.learning-card__body p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.learning-card__body .button {
  margin-top: auto;
  align-self: flex-start;
}

.doorways {
  position: relative;
  padding: 7rem 0;
  background: linear-gradient(135deg, #26415b 0%, #122332 100%);
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.doorways .shell {
  width: min(100% - 56px, 1760px);
}

.doorways__layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.doorways__intro h2,
.doorways__intro p {
  color: var(--white);
}

.doorways__intro p:not(.section-label) {
  margin-top: 1.2rem;
  max-width: 22rem;
  opacity: 0.84;
}

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

.doorway-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 520px;
  padding: 1.8rem;
  border-radius: 32px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-lg);
  transition: transform 0.24s ease;
}

.doorway-card:hover,
.doorway-card:focus-visible {
  transform: translateY(-4px);
}

.doorway-card--1 {
  background-image: url("assets/images/pathway-arts.jpg");
}

.doorway-card--2 {
  background-image: url("assets/images/pathway-sport.jpg");
}

.doorway-card--3 {
  background-image: url("assets/images/pathway-technology.jpg");
}

.doorway-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 16, 25, 0.04), rgba(8, 16, 25, 0.56));
}

.doorway-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.8rem;
  color: var(--white);
}

.doorway-card__title {
  font-size: 2.35rem;
  font-weight: 300;
  line-height: 1.05;
}

.doorway-card__content span:not(.doorway-card__title, .doorway-card__cta) {
  font-size: 0.98rem;
  line-height: 1.7;
  opacity: 0.88;
}

.doorway-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
}

.doorway-card__cta::after {
  content: ">";
  font-size: 1.1rem;
}

.tour-band {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  background: var(--white);
}

.tour-band__image {
  min-height: 560px;
  background-image: url("assets/images/aerial-campus.jpg");
  background-position: center;
  background-size: cover;
}

.tour-band__panel {
  padding: 4.25rem;
  background: linear-gradient(180deg, #14748a 0%, #0f5a68 100%);
  color: var(--white);
}

.tour-band__panel h2,
.tour-band__panel p {
  color: var(--white);
}

.tour-band__panel h2 {
  max-width: 12ch;
  font-size: 4.1rem;
}

.tour-band__panel p:not(.section-label) {
  max-width: 30rem;
  margin-top: 1.35rem;
  opacity: 0.88;
}

.tour-band__panel .button-row {
  margin-top: 2rem;
}

.site-footer {
  background: #0f2a3f;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__main {
  padding: 4rem 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.6fr) minmax(160px, 0.8fr) minmax(280px, 1.4fr) minmax(120px, 0.5fr);
  gap: 2rem;
  align-items: start;
}

.site-footer__brand img {
  width: 170px;
}

.site-footer__links {
  display: grid;
  gap: 0.55rem;
}

.site-footer__links a,
.site-footer__social a,
.site-footer__legal a {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__links a:hover,
.site-footer__social a:hover,
.site-footer__legal a:hover {
  color: var(--white);
}

.site-footer__acknowledgement p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-size: 0.9rem;
}

.site-footer__bottom-inner p {
  margin: 0;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 1180px) {
  h2 {
    font-size: 3.6rem;
  }

  .site-nav--desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .learning-grid__cards,
  .doorways__cards {
    grid-template-columns: 1fr;
  }

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

  .doorways__intro p:not(.section-label) {
    max-width: 44rem;
  }

  .doorway-card {
    min-height: 380px;
  }
}

@media (max-width: 880px) {
  :root {
    --shell: min(100% - 32px, 1280px);
  }

  body {
    font-size: 16px;
  }

  h2,
  .tour-band__panel h2 {
    font-size: 2.7rem;
  }

  .site-header__quicklinks,
  .quicklinks {
    gap: 0.8rem;
    font-size: 0.72rem;
  }

  .site-header__inner {
    min-height: 82px;
    padding-inline: 16px;
  }

  .site-header__bar-inner {
    padding-inline: 16px;
  }

  .site-brand img {
    width: 205px;
  }

  .hero__content {
    min-height: 760px;
    padding: 8rem 0 9rem;
  }

  .hero__slides {
    min-height: 760px;
  }

  .intro-section {
    padding: 4rem 0;
  }

  .intro-section__grid,
  .tour-band {
    grid-template-columns: 1fr;
  }

  .intro-section__panel,
  .tour-band__panel {
    padding: 2rem;
  }

  .intro-section__media img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .learning-grid {
    padding-bottom: 4rem;
  }

  .doorways {
    padding: 4rem 0;
  }

  .doorway-card__title {
    font-size: 2rem;
  }

  .tour-band__image {
    min-height: 360px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header__bar {
    display: none;
  }

  .site-header__inner {
    min-height: 82px;
    padding: 0.75rem 16px;
  }

  .site-brand img {
    width: min(210px, 54vw);
  }
}

@media (max-width: 560px) {
  .hero__copy h1 {
    font-size: 3.35rem;
  }

  h2,
  .tour-band__panel h2 {
    font-size: 2.25rem;
  }

  .site-header__quicklinks,
  .quicklinks {
    justify-content: flex-end;
  }

  .site-header__quicklinks a:first-child,
  .quicklinks a:first-child {
    display: none;
  }

  .site-brand img {
    width: 178px;
  }

  .menu-toggle {
    padding: 0.78rem 0.9rem;
  }

  .hero__controls.shell,
  .hero .shell,
  .doorways .shell {
    width: min(100% - 32px, 1760px);
  }

  .hero__nav > button {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .intro-section__panel,
  .tour-band__panel {
    padding: 1.5rem;
    border-radius: 24px;
  }

  .learning-grid__cards,
  .doorway-card {
    border-radius: 24px;
  }

  .learning-card__body {
    padding: 1.5rem;
  }

  .button {
    width: 100%;
  }

  .hero__actions .button,
  .button-row .button {
    width: auto;
  }
}
