:root {
  --navy-950: #0a102d;
  --navy-900: #111a45;
  --navy-800: #1b285f;
  --navy-700: #2d3c78;
  --gold-500: #dcae43;
  --gold-400: #ecc665;
  --gold-100: #fff4d3;
  --red-600: #ad2638;
  --red-100: #fbe9ec;
  --ink: #151827;
  --muted: #626879;
  --line: #dfe3eb;
  --surface: #f5f7fb;
  --white: #ffffff;
  --success: #1f755d;
  --shell: 1200px;
  --radius: 8px;
  --shadow: 0 18px 44px rgba(17, 26, 69, 0.12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 4px;
}

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

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

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(800px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding-block: 96px;
}

.section-compact {
  padding-block: 72px;
}

.section-soft {
  background: var(--surface);
}

.section-navy {
  color: #dce2f5;
  background: var(--navy-950);
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--red-600);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow-light {
  color: var(--gold-400);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-navy .section-heading > p {
  color: #c0c8e2;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-gold {
  color: var(--navy-950);
  background: var(--gold-500);
}

.button-gold:hover {
  background: var(--gold-400);
}

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

.button-navy:hover {
  background: var(--navy-800);
}

.button-outline {
  color: var(--navy-900);
  border-color: var(--navy-900);
  background: transparent;
}

.button-outline:hover {
  color: var(--white);
  background: var(--navy-900);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
}

.button-outline-light:hover {
  color: var(--navy-950);
  border-color: var(--white);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy-900);
  font-weight: 700;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translate(3px, -3px);
}

.utility-bar {
  color: #e5e8f5;
  background: var(--navy-950);
  font-size: 0.78rem;
}

.utility-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-links {
  display: flex;
  gap: 22px;
}

.utility-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.utility-links a:hover {
  color: var(--gold-400);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(17, 26, 69, 0.08);
  transition: box-shadow 200ms ease;
}

.site-header[data-scrolled] {
  box-shadow: 0 10px 28px rgba(17, 26, 69, 0.09);
}

.header-inner {
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 66px;
  height: 54px;
  object-fit: contain;
}

.brand span,
.footer-brand span {
  display: grid;
}

.brand strong,
.footer-brand strong {
  color: var(--navy-900);
  font-family: "Libre Franklin", Arial, sans-serif;
  font-size: 1.06rem;
  line-height: 1.1;
}

.brand small,
.footer-brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.primary-nav {
  justify-self: end;
}

.primary-nav ul {
  display: flex;
  gap: 5px;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  display: block;
  padding: 10px 12px;
  color: #33384b;
  font-size: 0.91rem;
  font-weight: 600;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--navy-900);
}

.primary-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px var(--gold-500);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
}

.close-icon {
  display: none;
}

.nav-toggle[aria-expanded="true"] .menu-icon {
  display: none;
}

.nav-toggle[aria-expanded="true"] .close-icon {
  display: block;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(780px, calc(100svh - 72px));
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: hero-image 14s ease-out both;
}

.hero-shade,
.page-hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 37, 0.64);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding-block: 130px 110px;
  animation: hero-copy 700ms 120ms ease-out both;
}

.hero-logo {
  width: 92px;
  height: 78px;
  margin-bottom: 28px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.hero h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(3.3rem, 7vw, 6.7rem);
}

.hero-lead {
  max-width: 710px;
  margin-block: 26px 32px;
  color: #eef0f8;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  color: var(--gold-400);
  font-weight: 700;
}

.hero-kicker::before {
  width: 44px;
  height: 2px;
  content: "";
  background: var(--gold-400);
}

.hero-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -34px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.hero-fact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 116px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-fact:last-child {
  border-right: 0;
}

.hero-fact svg {
  color: var(--gold-400);
}

.hero-fact strong,
.hero-fact span {
  display: block;
}

.hero-fact strong {
  font-family: "Libre Franklin", Arial, sans-serif;
  font-size: 1rem;
}

.hero-fact span {
  color: #c8cee3;
  font-size: 0.85rem;
}

.identity-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 74px;
  align-items: center;
}

.identity-media {
  position: relative;
  min-height: 580px;
}

.identity-media .image-main {
  width: calc(100% - 58px);
  height: 520px;
  object-fit: cover;
}

.identity-media .image-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border: 10px solid var(--white);
}

.identity-copy > p:not(.eyebrow) {
  margin-block: 22px 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.proof-list {
  display: grid;
  gap: 18px;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
}

.proof-list svg {
  padding: 8px;
  color: var(--navy-900);
  background: var(--gold-100);
  border-radius: 50%;
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.program-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.program-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface);
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.program-card:hover .program-image img {
  transform: scale(1.035);
}

.program-copy {
  padding: 24px;
}

.program-copy h3 {
  margin-bottom: 12px;
}

.program-copy > p:not(.program-years) {
  min-height: 88px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.program-years {
  margin-bottom: 8px;
  color: var(--red-600);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.experience-list {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.experience-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--navy-950);
}

.experience-item svg {
  color: var(--gold-400);
}

.experience-item p {
  margin-top: 6px;
  color: #bfc6de;
  font-size: 0.92rem;
}

.experience-collage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 230px 230px;
  gap: 12px;
}

.experience-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-collage img:first-child {
  grid-row: 1 / 3;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
}

.gallery-grid figure {
  position: relative;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}

.gallery-grid figure:nth-child(1),
.gallery-grid figure:nth-child(6) {
  grid-column: span 8;
  grid-row: span 2;
}

.gallery-grid figure:nth-child(2),
.gallery-grid figure:nth-child(3) {
  grid-row: span 1;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: center;
}

.partner-row figure {
  display: grid;
  min-height: 116px;
  place-items: center;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.partner-row img {
  max-width: 138px;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(0.15);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-list summary {
  padding-block: 20px;
  color: var(--navy-900);
  font-family: "Libre Franklin", Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.faq-list details p {
  max-width: 840px;
  padding: 0 0 22px;
  color: var(--muted);
}

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

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news-card-copy {
  padding: 24px;
}

.news-card-copy h3 {
  margin-block: 8px 14px;
}

.news-card-copy > p:not(.news-category) {
  margin-bottom: 18px;
  color: var(--muted);
}

.news-category {
  color: var(--red-600);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 500px;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding-block: 110px 80px;
}

.page-hero h1 {
  max-width: 850px;
  color: var(--white);
}

.page-hero-content > p:last-child {
  max-width: 700px;
  margin-top: 22px;
  color: #e5e8f3;
  font-size: 1.12rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 70px;
}

.prose {
  color: #333746;
  font-size: 1.02rem;
}

.prose h2 {
  margin-block: 54px 18px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-block: 30px 12px;
}

.prose p + p,
.prose ul + p,
.prose p + ul {
  margin-top: 18px;
}

.prose ul,
.prose ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.sidebar-panel {
  align-self: start;
  padding: 26px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius);
}

.sidebar-panel h2,
.sidebar-panel h3 {
  color: var(--white);
}

.sidebar-panel > p {
  margin-block: 14px 22px;
  color: #ccd1e3;
}

.sidebar-links {
  display: grid;
  gap: 2px;
  padding: 0;
  list-style: none;
}

.sidebar-links a {
  display: block;
  padding: 11px 0;
  color: #eef0f8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

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

.value-item,
.feature-item {
  padding: 26px;
  border-left: 3px solid var(--gold-500);
  background: var(--white);
}

.value-item p,
.feature-item p {
  margin-top: 10px;
  color: var(--muted);
}

.steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.step {
  min-height: 270px;
  padding: 26px;
  background: var(--white);
}

.step-number {
  display: block;
  margin-bottom: 42px;
  color: var(--red-600);
  font-family: "Libre Franklin", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
}

.step p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.fees-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--white);
}

.fees-table th,
.fees-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.fees-table thead th {
  color: var(--white);
  background: var(--navy-900);
}

.fees-table tbody tr:last-child td {
  border-bottom: 0;
}

.fees-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-item svg {
  padding: 9px;
  color: var(--navy-900);
  background: var(--gold-100);
  border-radius: 50%;
}

.contact-item strong,
.contact-item a,
.contact-item span {
  display: block;
}

.contact-item a,
.contact-item span {
  color: var(--muted);
}

.contact-image {
  min-height: 520px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-header {
  padding-block: 88px 56px;
  background: var(--surface);
}

.article-header h1 {
  max-width: 900px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.article-meta {
  margin-top: 18px;
  color: var(--red-600);
  font-weight: 700;
}

.article-image {
  width: min(var(--shell), calc(100% - 40px));
  max-height: 620px;
  margin: 0 auto 64px;
  object-fit: cover;
}

.article-body {
  padding-bottom: 24px;
  color: #333746;
  font-size: 1.03rem;
}

.article-body > p {
  margin-bottom: 20px;
}

.article-body > h2 {
  position: relative;
  margin: 18px 0;
  padding-left: 22px;
  color: var(--navy-900);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.5;
}

.article-body > h2::before {
  position: absolute;
  top: 0.62em;
  left: 2px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold-500);
  border-radius: 50%;
}

.article-back {
  padding-block: 30px 88px;
  border-top: 1px solid var(--line);
}

.site-footer {
  color: #cbd1e5;
  background: var(--navy-950);
}

.footer-cta-band {
  background: var(--navy-800);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-cta {
  display: flex;
  min-height: 220px;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.footer-cta h2 {
  max-width: 680px;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.65fr 0.8fr 1.15fr;
  gap: 50px;
  padding-block: 70px 54px;
}

.footer-grid h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1rem;
}

.footer-brand img {
  width: 72px;
  height: 60px;
  object-fit: contain;
}

.footer-brand strong,
.footer-brand small {
  color: var(--white);
}

.footer-brand-block > p {
  max-width: 340px;
  margin-top: 22px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--gold-400);
}

.footer-contact li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.footer-contact svg {
  margin-top: 3px;
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  font-size: 0.84rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js [data-reveal][data-visible="true"] {
  opacity: 1;
  transform: none;
}

@keyframes hero-copy {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@keyframes hero-image {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 16px;
  }

  .primary-nav a {
    padding-inline: 9px;
  }

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

  .program-copy > p:not(.program-years) {
    min-height: 0;
  }

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

@media (max-width: 979px) {
  .utility-location,
  .utility-links a:nth-child(2) {
    display: none;
  }

  .utility-inner {
    justify-content: flex-end;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    z-index: 90;
    inset: 116px 0 auto;
    display: none;
    max-height: calc(100svh - 116px);
    overflow-y: auto;
    padding: 20px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(17, 26, 69, 0.14);
  }

  .primary-nav[data-open] {
    display: block;
  }

  .primary-nav ul {
    display: grid;
  }

  .primary-nav a {
    padding: 14px 10px;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
    box-shadow: none !important;
  }

  .section-heading,
  .identity-grid,
  .experience-grid,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .identity-grid,
  .experience-grid,
  .content-grid,
  .contact-grid {
    gap: 46px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .hero-fact {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-fact:last-child {
    border-bottom: 0;
  }

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

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

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

  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

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

@media (max-width: 680px) {
  .shell,
  .narrow {
    width: min(100% - 28px, var(--shell));
  }

  .section {
    padding-block: 70px;
  }

  .section-compact {
    padding-block: 56px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 54px;
    height: 46px;
  }

  .brand strong {
    font-size: 0.93rem;
  }

  .brand small {
    font-size: 0.64rem;
  }

  .header-action {
    display: none;
  }

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

  .primary-nav {
    inset-block-start: 106px;
    max-height: calc(100svh - 106px);
  }

  .utility-links a:first-child {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero > img {
    object-position: 56% center;
  }

  .hero-content {
    padding-block: 90px 68px;
  }

  .hero-logo {
    width: 74px;
    height: 62px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .section-heading {
    gap: 22px;
    margin-bottom: 34px;
  }

  .identity-media {
    min-height: 420px;
  }

  .identity-media .image-main {
    height: 370px;
  }

  .program-grid,
  .value-grid,
  .feature-grid,
  .news-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .experience-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 150px;
  }

  .experience-collage img:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .gallery-grid figure,
  .gallery-grid figure:nth-child(1),
  .gallery-grid figure:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-grid figure:first-child {
    grid-column: 1 / 3;
    grid-row: span 2;
  }

  .partner-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .step {
    min-height: 0;
  }

  .step-number {
    margin-bottom: 24px;
  }

  .page-hero {
    min-height: 430px;
  }

  .page-hero-content {
    padding-block: 84px 58px;
  }

  .page-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .footer-cta {
    min-height: 300px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
