:root {
  --navy: #0a2d48;
  --navy-deep: #061e31;
  --red: #ad0133;
  --red-dark: #850027;
  --ink: #152631;
  --muted: #536670;
  --line: #d5dee4;
  --mist: #f4f7f9;
  --sky: #eaf4f8;
  --teal: #0b6b72;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(10, 45, 72, 0.12);
  --content: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #49a7c1;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.narrow {
  max-width: 790px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(10, 45, 72, 0.12);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 158px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.desktop-nav a {
  position: relative;
  color: #29404f;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  color: var(--navy);
  border-color: var(--navy);
  background: var(--white);
}

.btn-secondary:hover {
  color: var(--white);
  background: var(--navy);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.btn-outline-light:hover {
  color: var(--navy);
  background: var(--white);
}

.text-link {
  color: var(--navy);
  font-weight: 800;
  text-decoration-color: var(--red);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(760px, calc(100svh - var(--header-height)));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-color: var(--navy-deep);
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(4, 26, 42, 0.7);
}

.hero-home {
  min-height: min(760px, calc(100svh - var(--header-height)));
  background-position: center 62%;
}

.hero-page {
  min-height: 520px;
}

.hero-rookie {
  background-position: center 44%;
}

.hero-page::before {
  background: rgba(4, 26, 42, 0.68);
}

.hero-content {
  max-width: 810px;
  padding-block: 92px 104px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 5px;
  height: 23px;
  content: "";
  background: var(--red);
  transform: skewX(-17deg);
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: 64px;
  line-height: 1.03;
}

.hero-page h1 {
  font-size: 54px;
}

.hero-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin: 40px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  list-style: none;
}

.hero-proof li {
  max-width: 210px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-proof strong {
  display: block;
  color: var(--white);
  font-size: 18px;
}

.authority-band {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.authority-item {
  display: flex;
  min-width: 0;
  min-height: 142px;
  flex-direction: column;
  justify-content: center;
  padding: 26px 34px;
}

.authority-item:first-child {
  padding-left: 0;
}

.authority-item + .authority-item {
  border-left: 1px solid var(--line);
}

.authority-item strong {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

.authority-item span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.authority-item a {
  margin-top: 6px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding-block: 88px;
}

.section-compact {
  padding-block: 64px;
}

.section-mist {
  background: var(--mist);
}

.section-sky {
  background: var(--sky);
}

.section-navy {
  color: var(--white);
  background: var(--navy);
}

.section-red {
  color: var(--white);
  background: var(--red);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 42px;
}

.section-header.single {
  display: block;
  max-width: 780px;
}

.section-header .eyebrow {
  color: var(--red);
}

.section-header h2,
.content-block h2,
.contact-intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: 42px;
  line-height: 1.12;
}

.section-navy .section-header h2,
.section-navy .section-header .eyebrow,
.section-red .section-header h2,
.section-red .section-header .eyebrow {
  color: var(--white);
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-navy .section-header p,
.section-red .section-header p {
  color: rgba(255, 255, 255, 0.82);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.program-card {
  position: relative;
  grid-column: span 4;
  min-height: 285px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(10, 45, 72, 0.07);
}

.program-card.featured {
  grid-column: span 6;
  min-height: 330px;
}

.program-card::before {
  position: absolute;
  top: 0;
  left: 25px;
  width: 54px;
  height: 4px;
  content: "";
  background: var(--red);
}

.program-index {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.program-card h3 {
  margin: 36px 0 12px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.2;
}

.program-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.program-card .text-link {
  display: inline-block;
  margin-top: 24px;
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 64px;
}

.media-split.reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
}

.media-split.reverse .media-frame {
  order: 2;
}

.media-frame {
  min-height: 440px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--navy);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.content-block .eyebrow {
  color: var(--red);
}

.content-block p {
  color: var(--muted);
}

.content-block > :last-child {
  margin-bottom: 0;
}

.check-list,
.plain-list {
  display: grid;
  gap: 13px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 13px;
  height: 8px;
  border-bottom: 3px solid var(--teal);
  border-left: 3px solid var(--teal);
  content: "";
  transform: rotate(-45deg);
}

.plain-list li::before {
  position: absolute;
  top: 10px;
  left: 2px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--red);
  transform: skewX(-18deg);
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
}

.route-options {
  display: grid;
  gap: 10px;
}

.profile-option {
  width: 100%;
  min-height: 62px;
  padding: 15px 17px;
  border: 1px solid #b7c7d0;
  border-radius: 4px;
  color: var(--navy);
  background: var(--white);
  font-size: 15px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.profile-option:hover,
.profile-option.is-active {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.route-result {
  min-height: 100%;
  padding: 36px;
  border-left: 5px solid var(--red);
  border-radius: 0 6px 6px 0;
  background: var(--white);
  box-shadow: var(--shadow);
}

.route-result .label {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.route-result h3 {
  margin: 0;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.18;
}

.route-result p {
  color: var(--muted);
}

.route-result .btn {
  margin-top: 12px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: timeline;
}

.timeline li {
  position: relative;
  min-height: 210px;
  padding: 54px 24px 20px 0;
  counter-increment: timeline;
}

.timeline li::before {
  position: absolute;
  z-index: 1;
  top: -19px;
  left: 0;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 4px solid var(--mist);
  border-radius: 50%;
  color: var(--white);
  content: counter(timeline, decimal-leading-zero);
  background: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.timeline li:not(:last-child)::after {
  position: absolute;
  top: -1px;
  right: -18px;
  left: 18px;
  height: 2px;
  content: "";
  background: #758c99;
}

.timeline h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.career-journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: career;
}

.career-journey > li {
  position: relative;
  min-width: 0;
  min-height: 450px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(10, 45, 72, 0.08);
  counter-increment: career;
}

.career-journey > li::before {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  content: counter(career, decimal-leading-zero);
  background: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.career-journey > li:not(:last-child)::after {
  position: absolute;
  top: 43px;
  right: -29px;
  width: 13px;
  height: 13px;
  border-top: 3px solid #758c99;
  border-right: 3px solid #758c99;
  content: "";
  transform: rotate(45deg);
}

.career-journey-compact > li {
  min-height: 330px;
}

.career-phase {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.career-journey .career-phase {
  margin-top: 22px;
}

.career-journey h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.22;
}

.career-journey p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.career-journey > li > strong {
  display: block;
  margin-top: 17px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.45;
}

.journey-milestones {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.journey-milestones li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.journey-milestones li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--teal);
}

.journey-milestones strong,
.journey-outcome strong {
  color: var(--navy);
}

.career-journey .journey-outcome {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.continuity-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
  margin-top: 16px;
  padding: 18px 22px;
  border-left: 5px solid var(--red);
  background: var(--white);
  color: var(--navy);
  font-size: 15px;
}

.continuity-strip span {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-top: 28px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-block: 17px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--navy);
  font-weight: 700;
}

.media-frame-training img {
  object-position: center 58%;
}

.media-frame-team img {
  object-position: center 42%;
}

.level-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.level-list li {
  display: grid;
  grid-template-columns: 60px minmax(190px, 0.55fr) minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.level-number {
  color: var(--red);
  font-size: 22px;
  font-weight: 800;
}

.level-list h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
}

.level-list p {
  margin: 0;
  color: var(--muted);
}

.projection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.projection-item {
  min-height: 230px;
  padding: 25px;
  border-left: 4px solid var(--teal);
  background: var(--white);
}

.projection-item h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
}

.projection-item p {
  margin: 0;
  color: var(--muted);
}

.notice {
  padding: 26px 28px;
  border: 1px solid #bdcdd5;
  border-left: 5px solid var(--red);
  border-radius: 4px;
  background: var(--white);
}

.notice h2,
.notice h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 24px;
}

.notice p {
  margin: 0;
  color: var(--muted);
}

.notice + .notice {
  margin-top: 16px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 52px 24px 0;
  color: var(--navy);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 25px;
  right: 8px;
  color: var(--red);
  content: "+";
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 850px;
  padding: 0 60px 24px 0;
  color: var(--muted);
}

.faq-answer p {
  margin-top: 0;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
}

.cta-band h2 {
  margin: 0;
  max-width: 720px;
  font-size: 38px;
  line-height: 1.15;
}

.cta-band p {
  margin: 12px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 60px;
}

.contact-intro {
  position: sticky;
  top: 115px;
}

.contact-intro p {
  color: var(--muted);
}

.contact-points {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.contact-point {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-point strong {
  display: block;
  color: var(--navy);
}

.contact-point span,
.contact-point a {
  color: var(--muted);
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid #aebec7;
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  outline: 3px solid rgba(73, 167, 193, 0.28);
}

.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--red);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.form-status {
  min-height: 26px;
  margin: 18px 0 0;
  color: var(--teal);
  font-weight: 800;
}

.microcopy {
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 64px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(150px, 0.7fr));
  gap: 42px;
}

.footer-brand img {
  width: 180px;
}

.footer-brand p {
  max-width: 330px;
  margin: 20px 0 0;
}

.footer-column h2 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 15px;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.source-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section-navy .source-note {
  color: rgba(255, 255, 255, 0.78);
}

.section-navy .source-note .text-link {
  color: var(--white);
}

@media (max-width: 1120px) {
  .career-journey {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .career-journey > li,
  .career-journey-compact > li {
    min-height: 0;
  }

  .career-journey > li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -33px;
    left: calc(50% - 7px);
    transform: rotate(135deg);
  }
}

@media (max-width: 1020px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    grid-template-columns: 160px 1fr auto;
  }

  .desktop-nav,
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-panel {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 24px;
    background: var(--white);
    overflow-y: auto;
  }

  .mobile-panel.is-open {
    display: block;
  }

  .mobile-panel nav {
    display: grid;
  }

  .mobile-panel nav a {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-panel .btn {
    width: 100%;
    margin-top: 24px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-page h1 {
    font-size: 46px;
  }

  .program-card,
  .program-card.featured {
    grid-column: span 6;
  }

  .media-split,
  .media-split.reverse {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .media-split.reverse .media-frame {
    order: 0;
  }

  .route-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    position: static;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
    margin-left: 0;
  }

  .timeline li {
    min-height: 0;
    padding: 0 0 38px 56px;
  }

  .timeline li::before {
    top: 0;
    left: 0;
  }

  .timeline li:not(:last-child)::after {
    top: 18px;
    right: auto;
    bottom: -18px;
    left: 17px;
    width: 2px;
    height: auto;
  }

  .projection-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .brand img {
    width: 142px;
  }

  .hero,
  .hero-home {
    min-height: 660px;
    align-items: flex-end;
  }

  .hero-page {
    min-height: 560px;
  }

  .hero-content {
    padding-block: 72px 62px;
  }

  .hero h1,
  .hero-page h1 {
    font-size: 39px;
    line-height: 1.06;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    display: none;
  }

  .authority-grid {
    grid-template-columns: 1fr;
    padding-block: 8px;
  }

  .authority-item,
  .authority-item:first-child {
    min-height: 0;
    padding: 20px 0;
  }

  .authority-item + .authority-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding-block: 66px;
  }

  .section-compact {
    padding-block: 50px;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 32px;
  }

  .section-header h2,
  .content-block h2,
  .contact-intro h2 {
    font-size: 33px;
  }

  .program-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .program-card,
  .program-card.featured {
    grid-column: auto;
    min-height: 0;
  }

  .media-frame,
  .media-frame img {
    min-height: 330px;
  }

  .route-result {
    padding: 28px 22px;
  }

  .route-result h3 {
    font-size: 25px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
    margin-left: 0;
  }

  .timeline li {
    min-height: 0;
    padding: 0 0 36px 56px;
  }

  .timeline li::before {
    top: 0;
    left: 0;
  }

  .timeline li:not(:last-child)::after {
    top: 18px;
    right: auto;
    bottom: -18px;
    left: 17px;
    width: 2px;
    height: auto;
  }

  .career-journey {
    gap: 48px;
  }

  .career-journey > li {
    padding: 22px;
  }

  .career-journey h3 {
    font-size: 22px;
  }

  .career-journey > li:not(:last-child)::after {
    bottom: -30px;
  }

  .continuity-strip {
    display: grid;
    gap: 8px;
    padding: 18px;
  }

  .continuity-strip span {
    padding-left: 0;
    border-left: 0;
  }

  .section-actions {
    align-items: stretch;
  }

  .section-actions .btn {
    width: 100%;
  }

  .level-list li {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .level-list p {
    grid-column: 2;
  }

  .projection-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .cta-band h2 {
    font-size: 31px;
  }

  .cta-band .btn {
    width: 100%;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

