@font-face {
  font-family: "CM Geom";
  src: url("assets/fonts/CMGeom-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("assets/fonts/WorkSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("assets/fonts/WorkSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("assets/fonts/WorkSans-SemiBold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy: #00043c;
  --blue: #123f7a;
  --blue-soft: #edf3fb;
  --blue-mist: #f6f9fd;
  --grey: #d9d9d9;
  --soft: #f5f5f3;
  --ink: #000000;
  --text: #343434;
  --white: #ffffff;
  --line: rgba(0, 4, 60, 0.16);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 122px;
  height: auto;
}

.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding-block: 8px;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--white);
}

.language-switch button {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.language-switch button.active {
  background: var(--navy);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(780px, calc(100svh - 56px));
  display: grid;
  align-items: end;
  padding: clamp(118px, 16vh, 190px) clamp(20px, 6vw, 76px) clamp(64px, 9vh, 94px);
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/images/academic-hero.jpg");
  background-position: center center;
  background-size: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 4, 60, 0.94) 0%, rgba(0, 4, 60, 0.78) 35%, rgba(18, 63, 122, 0.2) 67%, rgba(0, 4, 60, 0.04) 100%),
    linear-gradient(0deg, rgba(0, 4, 60, 0.34), rgba(0, 4, 60, 0.08));
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--white);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: "CM Geom", "Work Sans", Arial, sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  color: var(--white);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 400;
}

h2 {
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 400;
}

h3 {
  font-size: 24px;
  font-weight: 400;
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.35;
}

.hero-actions,
.cta .button {
  margin-top: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 4, 60, 0.18);
}

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

.hero .button.primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 34px 0 0;
}

.hero-proof div {
  width: min(230px, 100%);
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.hero-proof dt {
  color: var(--white);
  font-family: "CM Geom", "Work Sans", Arial, sans-serif;
  font-size: 46px;
  line-height: 1;
}

.hero-proof dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.35;
}

.section {
  padding: clamp(72px, 10vw, 118px) clamp(20px, 5vw, 64px);
}

.section-inner {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.section-copy p,
.section-heading p,
.image-band p,
.cta p {
  max-width: 720px;
  margin: 22px 0 0;
}

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

.feature-grid article,
.service-card,
.contact-form,
.accordion details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-grid article {
  min-height: 214px;
  padding: 24px;
  background: linear-gradient(145deg, var(--white), var(--blue-mist));
}

.line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  font-family: "CM Geom", "Work Sans", Arial, sans-serif;
  font-size: 15px;
}

.feature-grid p,
.service-card p {
  margin: 13px 0 0;
  color: #4e4e4e;
  font-size: 15px;
  line-height: 1.55;
}

.principles {
  padding-top: clamp(72px, 10vw, 118px);
}

.principles > .section-inner {
  padding-inline: clamp(20px, 5vw, 64px);
  margin-bottom: 40px;
}

.principle-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 830px);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  padding: clamp(36px, 5vw, 62px) clamp(20px, 7vw, 108px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(90deg, var(--white), var(--blue-mist));
}

.principle-row.muted {
  background: linear-gradient(90deg, var(--blue-soft), var(--soft));
}

.principle-row p {
  margin: 12px 0 0;
  max-width: 760px;
}

.principle-icon {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 1px solid var(--navy);
  border-radius: 50%;
}

.principle-icon svg,
.giant-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-heading {
  display: grid;
  gap: 0;
  max-width: 820px;
  margin-bottom: 38px;
}

.services {
  background: linear-gradient(180deg, var(--white), var(--blue-mist));
}

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

.service-card {
  display: grid;
  justify-items: center;
  min-height: 330px;
  padding: clamp(28px, 4vw, 42px);
  border: 2px solid var(--navy);
  background: linear-gradient(145deg, var(--white), var(--blue-soft));
  text-align: center;
}

.giant-icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 4, 60, 0.24);
  border-radius: 50%;
  background: var(--white);
}

.giant-icon svg {
  width: 58px;
  height: 58px;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  padding: clamp(72px, 10vw, 120px) clamp(20px, 7vw, 108px);
  background: linear-gradient(135deg, var(--blue-soft), var(--white) 46%, var(--soft));
}

.image-band img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stats {
  background: var(--navy);
  color: var(--white);
  padding: clamp(58px, 8vw, 88px) clamp(20px, 5vw, 64px);
}

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

.stats-grid div {
  min-height: 150px;
  padding: 26px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.stats-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.stats strong {
  display: block;
  color: var(--white);
  font-family: "CM Geom", "Work Sans", Arial, sans-serif;
  font-size: clamp(48px, 5vw, 66px);
  font-weight: 400;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.35;
}

.faq {
  background: var(--white);
}

.faq-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.1fr);
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  padding: 0 22px;
  background: var(--soft);
}

.accordion summary {
  cursor: pointer;
  padding: 21px 0;
  color: var(--navy);
  font-weight: 700;
}

.accordion p {
  margin: 0;
  padding: 0 0 22px;
}

.cta {
  background: linear-gradient(135deg, var(--blue-soft), var(--soft) 58%, var(--white));
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.74fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 4, 60, 0.22);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: var(--white);
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: #606060;
  font-size: 13px;
  line-height: 1.45;
}

.form-note.is-warning {
  color: #7a2f00;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.84);
  padding: 52px clamp(20px, 5vw, 64px) 28px;
}

.footer-inner {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: 170px 1.2fr 0.7fr 1fr;
  gap: 28px;
  margin-inline: auto;
}

.site-footer img {
  width: 134px;
}

.site-footer h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.site-footer p,
.site-footer a {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.site-footer a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  width: min(var(--max), 100%);
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

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

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: none;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .two-column,
  .faq-layout,
  .cta-grid,
  .image-band {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 72px;
    gap: 12px;
    padding-inline: 16px;
  }

  .brand img {
    width: 92px;
  }

  .language-switch button {
    min-width: 32px;
    min-height: 32px;
    font-size: 12px;
  }

  .hero {
    min-height: 720px;
    padding: 118px 20px 48px;
  }

  .hero-media {
    background-position: 60% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(0, 4, 60, 0.92), rgba(0, 4, 60, 0.58));
  }

  .feature-grid,
  .service-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .principle-row {
    grid-template-columns: 1fr;
  }

  .principle-icon {
    width: 74px;
    height: 74px;
  }

  .service-card {
    min-height: 0;
  }

  .stats-grid div,
  .stats-grid div:last-child {
    border-right: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

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

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