:root {
  --navy: #071f49;
  --navy-2: #123b72;
  --blue: #174f91;
  --sky: #c8d2d8;
  --accent: #9ea9b1;
  --silver: #c9d1d6;
  --ink: #061833;
  --muted: #536070;
  --line: #d4dce2;
  --soft: #f3f6f8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 31, 73, .18);
  --radius: 8px;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: "Barlow", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
svg { width: 1.1em; height: 1.1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; }
.sr-only, .hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 50;
  padding: 10px 16px;
  background: var(--silver);
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
}
.skip-link:focus { top: 12px; }

.announce {
  background: var(--silver);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0;
}
.announce__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 1rem;
}
.announce a { font-size: .9rem; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(90deg, #071f49, #123b72);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  min-width: 238px;
}
.brand img {
  width: 56px;
  height: 56px;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .2));
}
.brand__text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.72rem;
  line-height: .84;
  text-transform: uppercase;
  letter-spacing: .035em;
}
.brand strong { display: block; font-weight: 800; }
.brand small {
  display: block;
  margin-top: 5px;
  color: var(--silver);
  font: 800 .66rem/1 "Barlow", system-ui, sans-serif;
  letter-spacing: .16em;
}
.site-menu {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 80px);
  font-weight: 700;
}
.site-menu a {
  text-decoration: none;
  color: rgba(255, 255, 255, .88);
}
.site-menu a:hover { color: var(--white); }
.site-menu .nav-cta {
  background: var(--silver);
  color: var(--navy);
  padding: 14px 24px;
  border-radius: var(--radius);
}
.nav-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 134px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7, 31, 73, .92) 0%, rgba(7, 31, 73, .82) 44%, rgba(6, 24, 51, .62) 100%),
    url("assets/hero-male-students.jpg") center/cover;
  color: var(--white);
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(340px, 420px);
  align-items: center;
  min-height: calc(100vh - 134px);
  gap: clamp(42px, 7vw, 104px);
  padding: 72px 0 64px;
}
.hero__copy { z-index: 2; max-width: 680px; }
.hero h1 { color: var(--white); }
h1, h2, h3 {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0;
  margin: 0;
  color: var(--navy);
}
h1 {
  font-size: clamp(3.25rem, 4.35vw, 5.1rem);
  line-height: .94;
  max-width: 720px;
  text-wrap: balance;
}
.hero__lead {
  margin: 24px 0 28px;
  max-width: 620px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.05rem, 1.35vw, 1.36rem);
  line-height: 1.5;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font: 800 1rem "Barlow", system-ui, sans-serif;
}
.button--primary, .button--submit {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  box-shadow: 0 14px 32px rgba(7, 31, 73, .26);
}
.button--outline {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}
.button--submit {
  width: 100%;
  border-color: transparent;
  color: var(--navy);
  background: var(--silver);
  box-shadow: none;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible, .site-menu a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
}
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 730px;
  color: var(--white);
}
.proof-row span {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 1 190px;
  min-height: 58px;
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, .32);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.2;
}
.proof-row span:first-child { padding-left: 0; }
.proof-row span:last-child { border-right: 0; }
.proof-row svg { color: var(--silver); width: 32px; height: 32px; flex: 0 0 auto; }
.proof-row span:nth-child(3) svg { color: var(--accent); }

.form-card {
  z-index: 3;
  align-self: center;
  min-width: 0;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(6, 27, 62, .14);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.form-card h2 {
  background: var(--navy);
  color: var(--white);
  font-size: 1.8rem;
  text-align: center;
  padding: 14px 22px;
}
.form-card > p {
  margin: 14px 22px 6px;
  color: var(--muted);
  font-size: .95rem;
}
form { padding: 6px 22px 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label {
  display: grid;
  gap: 5px;
  margin: 0 0 9px;
  color: var(--navy);
  font-size: .84rem;
  font-weight: 700;
}
label span { color: var(--muted); font-weight: 500; }
input, select, textarea {
  width: 100%;
  border: 1px solid #b9c7d8;
  border-radius: 5px;
  padding: 9px 12px;
  font: 500 .95rem "Barlow", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
}
textarea { resize: vertical; min-height: 62px; }
.form-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .78rem;
  text-align: center;
}
.form-success {
  margin: 0 22px 22px;
  padding: 18px;
  background: #eef4f6;
  border: 1px solid var(--silver);
  color: var(--navy);
  border-radius: var(--radius);
}
.form-success strong, .form-success span { display: block; }

.credential-strip {
  position: relative;
  z-index: 2;
  margin-top: -54px;
  background: linear-gradient(180deg, #f4f7f9, #ffffff);
  border-bottom: 1px solid var(--line);
  padding: 72px 0 50px;
}
.credential-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 48px;
  align-items: center;
}
.array-panel {
  min-height: 190px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 26px;
  align-items: center;
  padding: 28px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(6, 27, 62, .08);
  border-radius: var(--radius);
  text-decoration: none;
}
.array-panel img { max-height: 92px; object-fit: contain; }
.array-panel span {
  font: 800 2rem/1 "Barlow Condensed", sans-serif;
  color: var(--navy);
}
.section-label {
  margin: 0 0 10px;
  color: #56616d;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}
.curriculum-preview h2, .section-heading h2, .split h2, .admissions h2, .leader h2 {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: .96;
}
.curriculum-preview p, .section-heading p, .split__body > p, .admissions p, .leader p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 760px;
}
.mini-courses {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.mini-courses span {
  padding: 16px 14px;
  border-left: 3px solid var(--accent);
  background: #f7f9fb;
  font-weight: 800;
  color: var(--navy);
}

.section { padding: 92px 0; }
.mission-feature {
  border-bottom: 1px solid var(--line);
}
.mission-statement {
  padding: 92px 0 104px;
  background: var(--white);
  text-align: center;
}
.mission-statement .container {
  max-width: 1320px;
}
.mission-statement .section-label {
  color: var(--navy-2);
  font-size: .95rem;
  letter-spacing: .18em;
}
.mission-statement p:not(.section-label) {
  max-width: 1160px;
  margin: 0 auto;
  color: #303844;
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
  line-height: 1.45;
  text-wrap: balance;
}
.mission-statement p:not(.section-label) + p:not(.section-label) {
  margin-top: 20px;
}
.split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.feature-list article, .program-card, .admissions-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.feature-list article {
  padding: 22px;
  display: grid;
  gap: 8px;
}
.feature-list strong, .program-card h3 {
  color: var(--navy);
  font-weight: 800;
}
.feature-list span, .program-card p { color: var(--muted); }

.academics { background: var(--soft); }
.academics > .container > .section-heading {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.academics > .container > .section-heading p {
  margin-left: auto;
  margin-right: auto;
}
.section-heading {
  display: grid;
  gap: 8px;
  max-width: 860px;
  margin-bottom: 34px;
}
.curriculum-system {
  display: grid;
  gap: 22px;
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.experience-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6, 27, 62, .04);
}
.experience-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .08em;
}
.experience-grid h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
  line-height: 1;
}
.experience-grid p {
  margin: 0;
  color: var(--muted);
}
.credit-panel {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 34px;
  align-items: start;
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  box-shadow: var(--shadow);
}
.credit-panel .section-label,
.credit-panel h3 {
  color: var(--white);
}
.credit-panel h3 {
  font-size: clamp(2.2rem, 3vw, 3.35rem);
  line-height: .95;
}
.credit-panel p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .78);
}
.credit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
}
.credit-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}
.credit-list dt,
.credit-list dd {
  margin: 0;
  font-weight: 800;
}
.credit-list dt {
  color: rgba(255, 255, 255, .86);
}
.credit-list dd {
  color: var(--white);
  white-space: nowrap;
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.program-card {
  padding: 26px;
  min-height: 238px;
  box-shadow: 0 12px 30px rgba(6, 27, 62, .04);
}
.program-card span {
  display: block;
  margin-bottom: 26px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .08em;
}
.program-card h3 {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 12px;
}
.program-card p { margin: 0; }

.admissions {
  color: var(--white);
  background: linear-gradient(135deg, rgba(7, 31, 73, .98), rgba(18, 59, 114, .94));
}
.admissions h2, .admissions .section-label { color: var(--white); }
.admissions p { color: rgba(255,255,255,.82); margin-bottom: 26px; }
.admissions__grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 64px;
  align-items: center;
}
.admissions-card {
  padding: 32px;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.admissions-card div {
  padding-bottom: 26px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.admissions-card span, .admissions-card small { display: block; color: var(--muted); font-weight: 700; }
.admissions-card .scholarship-note {
  width: fit-content;
  margin-top: 12px;
  padding: 8px 12px;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1rem;
}
.admissions-card strong {
  display: block;
  color: var(--navy);
  font: 900 5rem/.9 "Barlow Condensed", sans-serif;
}
.admissions-card ol {
  margin: 0;
  padding-left: 22px;
  color: var(--navy);
  font-weight: 800;
}
.admissions-card li + li { margin-top: 14px; }

.leader { background: var(--white); }
.leader__inner {
  max-width: 940px;
  text-align: center;
}
.leader__inner p { margin-left: auto; margin-right: auto; }

.footer {
  background: var(--navy);
  color: rgba(255,255,255,.74);
  padding: 40px 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand--footer { min-width: 132px; }
.brand--footer img { width: auto; height: 74px; max-width: 140px; }
.brand--footer span { font-size: 1.28rem; }
.footer p { margin: 0; }
.footer nav { display: flex; flex-wrap: wrap; gap: 18px; justify-content: flex-end; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--white); }

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: linear-gradient(135deg, rgba(7, 31, 73, .98), rgba(18, 59, 114, .94));
}
.success-shell {
  width: min(620px, 100%);
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: 48px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.success-shell img { width: min(180px, 70vw); height: auto; object-fit: contain; }
.success-shell h1 { font-size: clamp(3rem, 6vw, 5rem); line-height: .95; }
.success-shell p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.08rem;
}

@media (max-width: 1180px) {
  .container { width: min(100% - 40px, var(--max)); }
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
    padding-top: 44px;
  }
  .hero__copy, .form-card { grid-column: auto; grid-row: auto; }
  .proof-row { grid-template-columns: repeat(2, 1fr); }
  .proof-row span { border: 0; padding-left: 0; }
}

@media (max-width: 900px) {
  .announce__inner { justify-content: space-between; }
  .nav { min-height: 74px; }
  .brand { min-width: auto; }
  .brand img { width: 46px; height: 46px; max-width: none; }
  .brand span { font-size: 1.24rem; }
  .brand small { font-size: .54rem; letter-spacing: .13em; margin-top: 4px; }
  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: var(--radius);
    background: transparent;
    color: var(--white);
    padding: 10px;
  }
  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
  }
  .site-menu {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    padding: 18px 20px 24px;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.16);
  }
  .site-menu.is-open { display: grid; gap: 18px; }
  .site-menu .nav-cta { text-align: center; }
  .hero {
    min-height: 0;
    background-position: 30% center;
  }
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .form-card { grid-column: auto; grid-row: auto; }
  .credential-grid, .split, .admissions__grid, .footer__inner { grid-template-columns: 1fr; }
  .array-panel { grid-template-columns: 1fr; }
  .mini-courses, .feature-list, .experience-grid, .program-grid, .credit-list { grid-template-columns: repeat(2, 1fr); }
  .credit-panel { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 32px, var(--max)); }
  .announce__inner { font-size: .86rem; gap: 10px; }
  h1 { font-size: clamp(2.85rem, 13vw, 3.75rem); }
  .hero__lead { font-size: 1rem; }
  .hero__actions, .button { width: 100%; }
  .proof-row, .form-row, .mini-courses, .feature-list, .experience-grid, .program-grid, .credit-list { grid-template-columns: 1fr; }
  .proof-row span { min-height: 44px; }
  .form-card h2 { font-size: 1.5rem; }
  .section { padding: 68px 0; }
  .curriculum-preview h2, .section-heading h2, .split h2, .admissions h2, .leader h2 { font-size: 2.5rem; }
  .credit-panel { padding: 24px; }
  .credit-list div { display: grid; gap: 4px; }
  .admissions-card strong { font-size: 4rem; }
  .footer nav { justify-content: flex-start; }
}
