:root {
  --navy-950: #040b14;
  --navy-900: #07111f;
  --navy-850: #091629;
  --navy-800: #0d1d34;
  --navy-700: #142a46;
  --gold-500: #efbd36;
  --gold-400: #ffd459;
  --gold-300: #ffe394;
  --cream: #f4f1e8;
  --paper: #fbfaf6;
  --ink: #101822;
  --slate: #566272;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: #d9d8d2;
  --shadow: 0 30px 80px rgba(1, 8, 17, 0.2);
  --container: 1180px;
  --radius: 22px;
  --font-display: "Archivo Black", Impact, sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  color: #fff;
  background: var(--navy-900);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
summary {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 999;
  padding: 12px 18px;
  color: var(--navy-900);
  background: var(--gold-400);
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus {
  top: 20px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: var(--navy-950);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(4, 11, 20, 0.88);
  border-color: var(--line-dark);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 1px solid rgba(239, 189, 54, 0.4);
  border-radius: 50%;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 13px;
  font-weight: 700;
}

.main-nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button):focus-visible {
  color: var(--gold-400);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(239, 189, 54, 0.18);
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(239, 189, 54, 0.3);
}

.button-small {
  min-height: 42px;
  padding-inline: 19px;
  font-size: 12px;
}

.button svg,
.text-link svg,
.course-band svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 155px 0 56px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(33, 72, 115, 0.32), transparent 30%),
    radial-gradient(circle at 11% 12%, rgba(239, 189, 54, 0.07), transparent 24%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 52%, #0a1a31);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--gold-400);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 212, 89, 0.1);
}

.eyebrow-dark {
  color: #755506;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

h1 {
  max-width: 650px;
  font-size: clamp(52px, 6.2vw, 88px);
}

h2 {
  font-size: clamp(38px, 4.6vw, 63px);
}

h1 span,
h2 span {
  color: var(--gold-400);
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 13px;
  font-weight: 800;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--gold-400);
  border-color: var(--gold-400);
}

.text-link-dark {
  color: var(--ink);
  border-color: rgba(16, 24, 34, 0.25);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
}

.proof-avatars {
  display: flex;
  align-items: center;
}

.proof-avatars img,
.proof-avatars span {
  width: 44px;
  height: 44px;
  margin-left: -10px;
  border: 3px solid var(--navy-900);
  border-radius: 50%;
}

.proof-avatars img:first-child {
  margin-left: 0;
}

.proof-avatars img {
  object-fit: cover;
}

.proof-avatars span {
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: var(--gold-400);
  font-size: 10px;
  font-weight: 800;
}

.hero-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.55;
}

.hero-proof strong {
  color: #fff;
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.hero-image-main,
.hero-image-small {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow);
}

.hero-image-main {
  top: 5%;
  right: 5%;
  width: 78%;
  aspect-ratio: 0.88;
  border-radius: 190px 190px 30px 30px;
}

.hero-image-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 11, 20, 0.66), transparent 48%);
}

.hero-image-main img,
.hero-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-main img {
  transform: scale(1.02);
}

.image-label {
  position: absolute;
  right: 24px;
  bottom: 26px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.image-label > span {
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: 13px;
}

.image-label p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}

.image-label strong {
  color: #fff;
  font-size: 13px;
}

.hero-image-small {
  bottom: 2%;
  left: 0;
  z-index: 3;
  width: 42%;
  aspect-ratio: 0.95;
  border: 7px solid var(--navy-900);
  border-radius: 24px;
}

.hero-stat {
  position: absolute;
  top: 18%;
  left: -5%;
  z-index: 4;
  width: 138px;
  padding: 20px;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.hero-stat span {
  display: block;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-stat .stat-kicker {
  margin-bottom: 4px;
  color: rgba(4, 11, 20, 0.64);
  letter-spacing: 0.17em;
}

.hero-stat strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 25px;
  letter-spacing: -0.04em;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(239, 189, 54, 0.18);
  border-radius: 50%;
}

.hero-orbit-one {
  top: -10%;
  right: -14%;
  width: 530px;
  height: 530px;
}

.hero-orbit-two {
  right: 19%;
  bottom: -7%;
  width: 340px;
  height: 340px;
}

.feature-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 75px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.feature-bar article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 102px;
  padding: 20px 24px;
  border-right: 1px solid var(--line-dark);
}

.feature-bar article:last-child {
  border-right: 0;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--gold-400);
  background: rgba(239, 189, 54, 0.08);
  border: 1px solid rgba(239, 189, 54, 0.18);
  border-radius: 50%;
}

.feature-icon svg,
.formation-icon svg,
.photo-note svg,
.instagram-link svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-bar strong,
.feature-bar small {
  display: block;
}

.feature-bar strong {
  margin-bottom: 3px;
  font-size: 12px;
}

.feature-bar small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.section {
  position: relative;
  padding: 130px 0;
}

.section-light {
  color: var(--ink);
  background: var(--cream);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.photo-stack {
  position: relative;
  min-height: 650px;
}

.photo-card {
  position: absolute;
  overflow: hidden;
  background: var(--navy-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card-main {
  top: 0;
  left: 0;
  z-index: 2;
  width: 72%;
  aspect-ratio: 0.78;
}

.photo-card-back {
  right: 0;
  bottom: 0;
  width: 54%;
  aspect-ratio: 0.76;
  border: 8px solid var(--cream);
}

.photo-note {
  position: absolute;
  right: 15%;
  bottom: 9%;
  z-index: 3;
  width: 220px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: 14px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.photo-note svg {
  flex: 0 0 22px;
  margin-top: 2px;
}

.photo-note span,
.photo-note strong {
  display: block;
}

.photo-note span {
  font-size: 9px;
  line-height: 1.55;
}

.photo-note strong {
  margin-bottom: 4px;
  font-size: 11px;
}

.section-copy h2 {
  max-width: 650px;
}

.section-copy h2 span,
.section-heading-dark h2 span,
.faq-heading h2 span {
  color: #a87906;
}

.section-copy > p {
  max-width: 650px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.85;
}

.section-copy > p strong {
  color: var(--ink);
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 34px 0 30px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.check-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 14px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-size: 11px;
  font-weight: 800;
}

.check-grid span {
  color: #755506;
  font-family: var(--font-display);
  font-size: 9px;
}

.formation {
  background:
    radial-gradient(circle at 12% 90%, rgba(239, 189, 54, 0.08), transparent 25%),
    var(--navy-900);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 65px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.8;
}

.formation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.formation-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.formation-card:hover {
  transform: translateY(-7px);
  border-color: rgba(239, 189, 54, 0.45);
}

.formation-card.featured {
  color: var(--navy-950);
  background: var(--gold-400);
  border-color: var(--gold-400);
}

.formation-number {
  position: absolute;
  top: 25px;
  right: 26px;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-display);
  font-size: 30px;
}

.featured .formation-number {
  color: rgba(4, 11, 20, 0.46);
}

.formation-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 65px;
  color: var(--gold-400);
  background: rgba(239, 189, 54, 0.08);
  border: 1px solid rgba(239, 189, 54, 0.22);
  border-radius: 50%;
}

.featured .formation-icon {
  color: var(--navy-950);
  background: rgba(4, 11, 20, 0.08);
  border-color: rgba(4, 11, 20, 0.16);
}

.formation-card h3 {
  margin-bottom: 13px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  text-transform: uppercase;
}

.formation-card p {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.75;
}

.featured p {
  color: rgba(4, 11, 20, 0.66);
}

.card-tag {
  margin-top: auto;
  padding: 7px 10px;
  color: var(--gold-400);
  border: 1px solid rgba(239, 189, 54, 0.3);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured .card-tag {
  color: var(--navy-950);
  border-color: rgba(4, 11, 20, 0.25);
}

.course-band {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  padding: 20px 28px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
}

.course-band > span:first-child {
  color: var(--gold-400);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.course-band strong {
  font-size: 12px;
}

.band-divider {
  width: 4px;
  height: 4px;
  background: var(--gold-400);
  border-radius: 50%;
}

.course-band a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 800;
}

.cohort-history {
  overflow: hidden;
}

.history-heading {
  max-width: 780px;
  margin: 0 auto 90px;
  text-align: center;
}

.history-heading h2 {
  margin-bottom: 20px;
}

.history-heading h2 span {
  color: #755506;
}

.history-heading p {
  max-width: 610px;
  margin: 0 auto;
  color: var(--slate);
  font-size: 14px;
}

.cohort-timeline {
  position: relative;
}

.cohort-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, #b9b7ae 7%, #b9b7ae 93%, transparent);
}

.cohort-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 360px;
  margin-bottom: 60px;
}

.cohort-item:last-child {
  margin-bottom: 0;
}

.cohort-photo {
  position: relative;
  grid-column: 1;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--navy-900);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(4, 11, 20, 0.18);
}

.cohort-photo::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(4, 11, 20, 0.78));
}

.cohort-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cohort-photo:hover img {
  transform: scale(1.025);
}

.cohort-photo figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cohort-node {
  position: relative;
  z-index: 2;
  grid-column: 2;
  display: grid;
  place-items: center;
}

.cohort-node::before {
  content: "";
  width: 50px;
  height: 50px;
  background: var(--cream);
  border: 1px solid #b9b7ae;
  border-radius: 50%;
}

.cohort-node span {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--gold-400);
  border: 4px solid var(--navy-900);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--gold-400);
}

.cohort-copy {
  grid-column: 3;
  padding-right: 25px;
}

.cohort-label {
  display: inline-block;
  padding: 6px 10px;
  color: #755506;
  border: 1px solid #c9b56f;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cohort-year {
  display: block;
  margin: 10px 0 12px;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(50px, 6vw, 80px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.cohort-copy h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
}

.cohort-copy p {
  max-width: 430px;
  margin: 0;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.75;
}

.cohort-item-reverse .cohort-photo {
  grid-column: 3;
  grid-row: 1;
}

.cohort-item-reverse .cohort-copy {
  grid-column: 1;
  grid-row: 1;
  padding: 0 0 0 25px;
  text-align: right;
}

.cohort-item-reverse .cohort-copy p {
  margin-left: auto;
}

.employment {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(239, 189, 54, 0.08), transparent 22%),
    radial-gradient(circle at 92% 62%, rgba(33, 72, 115, 0.27), transparent 25%),
    var(--navy-900);
}

.employment-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -20px 0 75px;
  padding: 28px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.employment-stats div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 4px 20px;
  border-right: 1px solid var(--line-dark);
}

.employment-stats div:last-child {
  border-right: 0;
}

.employment-stats strong {
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: 38px;
}

.employment-stats span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}

.employee-group + .employee-group {
  margin-top: 85px;
}

.employee-group-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.employee-group-header span {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-400);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.employee-group-header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.carousel-controls button:hover,
.carousel-controls button:focus-visible {
  color: var(--navy-950);
  background: var(--gold-400);
  border-color: var(--gold-400);
}

.carousel-controls svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.employee-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 285px;
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(239, 189, 54, 0.5) rgba(255, 255, 255, 0.06);
}

.employee-card {
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--navy-800);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.employee-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 189, 54, 0.48);
}

.employee-card img {
  width: 100%;
  aspect-ratio: 0.8;
  object-fit: cover;
  background: var(--navy-950);
}

.employee-card div {
  padding: 17px 18px 19px;
}

.employee-card strong,
.employee-card span {
  display: block;
}

.employee-card strong {
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
}

.employee-card span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.impact {
  overflow: hidden;
}

.impact::after {
  content: "Á";
  position: absolute;
  top: -60px;
  right: -20px;
  color: rgba(7, 17, 31, 0.035);
  font-family: var(--font-display);
  font-size: 430px;
  line-height: 1;
  pointer-events: none;
}

.section-heading-dark {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.section-heading-dark p {
  color: var(--slate);
}

.impact-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 75px;
  padding: 25px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.impact-stats div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 10px 25px;
  border-right: 1px solid var(--line-light);
}

.impact-stats div:last-child {
  border: 0;
}

.impact-stats strong {
  color: #9a7412;
  font-family: var(--font-display);
  font-size: 36px;
}

.impact-stats span {
  color: var(--slate);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.mural-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 24px;
}

.mural-card {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  border-radius: var(--radius);
  box-shadow: 0 22px 52px rgba(5, 13, 23, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mural-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 65px rgba(5, 13, 23, 0.24);
}

.mural-card-raised {
  margin-top: -24px;
}

.mural-card img {
  width: 100%;
  aspect-ratio: 0.8;
  object-fit: cover;
}

.mural-card div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: 999px;
}

.mural-card div span {
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.mural-card div strong {
  font-family: var(--font-display);
  font-size: 13px;
}

.journey {
  background:
    radial-gradient(circle at 72% 50%, rgba(32, 68, 109, 0.32), transparent 26%),
    var(--navy-950);
}

.journey-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: clamp(65px, 10vw, 140px);
}

.journey-intro {
  position: sticky;
  top: 125px;
}

.journey-intro h2 {
  font-size: clamp(38px, 4vw, 57px);
}

.journey-intro > p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.8;
}

.journey-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-list::before {
  content: "";
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 30px;
  width: 1px;
  background: linear-gradient(var(--gold-400), rgba(239, 189, 54, 0.1));
}

.journey-list li {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-dark);
}

.journey-list li > span {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-400);
  border: 7px solid var(--navy-950);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 10px;
}

.journey-list h3 {
  margin: 3px 0 8px;
  font-family: var(--font-display);
  font-size: 19px;
  text-transform: uppercase;
}

.journey-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.7;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: clamp(60px, 10vw, 140px);
}

.faq-heading {
  position: sticky;
  top: 125px;
}

.faq-heading h2 {
  font-size: clamp(38px, 3.8vw, 55px);
}

.faq-heading p {
  color: var(--slate);
  font-size: 13px;
}

.faq-list {
  border-top: 1px solid #c9c8c2;
}

.faq-list details {
  border-bottom: 1px solid #c9c8c2;
}

.faq-list summary {
  min-height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 4px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: 1px solid #b9b7ae;
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 8px;
  width: 12px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span {
  color: var(--navy-950);
  background: var(--gold-400);
  border-color: var(--gold-400);
}

.faq-list details[open] summary span::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 610px;
  padding: 0 55px 25px 4px;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.8;
}

.contact-section {
  padding: 0 0 28px;
  color: var(--ink);
  background: var(--cream);
}

.contact-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
  padding: 50px 55px;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 26px;
}

.contact-intro .eyebrow {
  margin-bottom: 15px;
}

.contact-intro h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 3.4vw, 48px);
}

.contact-intro h2 span {
  color: #755506;
}

.contact-intro p {
  margin: 0;
  color: var(--slate);
  font-size: 12px;
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-links > a {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 15px 18px;
  background: var(--cream);
  border: 1px solid var(--line-light);
  border-radius: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-links > a:hover,
.contact-links > a:focus-visible {
  transform: translateX(4px);
  border-color: #a87906;
}

.contact-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: 50%;
}

.contact-icon svg,
.contact-arrow {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-links small,
.contact-links strong {
  display: block;
}

.contact-links small {
  margin-bottom: 3px;
  color: var(--slate);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-links strong {
  font-size: 13px;
}

.contact-arrow {
  width: 18px;
  color: #755506;
}

.cta-section {
  padding: 0 0 90px;
  color: #fff;
  background: var(--cream);
}

.cta-card {
  position: relative;
  min-height: 300px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 45px;
  padding: 60px 65px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(48, 90, 137, 0.38), transparent 24%),
    var(--navy-900);
  border-radius: 28px;
}

.cta-card > div:not(.cta-mark),
.cta-card > a {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 55px);
}

.cta-mark {
  position: absolute;
  top: -95px;
  right: 210px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-display);
  font-size: 390px;
  line-height: 1;
}

.site-footer {
  padding: 65px 0 20px;
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 60px;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-institution p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.footer-institution > strong,
.footer-institution > span {
  display: block;
}

.footer-institution > strong {
  color: var(--gold-400);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.footer-institution > span {
  margin: 4px 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
}

.footer-contacts {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
}

.footer-contacts a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-contacts a:hover,
.footer-contacts a:focus-visible {
  color: var(--gold-400);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 800;
}

.instagram-link svg {
  width: 20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }

@media (max-width: 1020px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav > a:not(.button) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 45px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-image-main {
    width: 88%;
  }

  .feature-bar {
    grid-template-columns: 1fr 1fr;
  }

  .feature-bar article:nth-child(2) {
    border-right: 0;
  }

  .feature-bar article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .split-layout {
    gap: 65px;
  }

  .photo-stack {
    min-height: 580px;
  }

  .section-heading {
    gap: 40px;
  }

  .formation-card {
    padding: 30px 25px;
  }

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

  .instagram-link {
    grid-column: 2;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .nav-wrap {
    min-height: 72px;
  }

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

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    padding: 95px 30px 35px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    background: rgba(4, 11, 20, 0.98);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--line-dark);
    color: #fff;
    font-family: var(--font-display);
    font-size: 22px;
    text-transform: uppercase;
  }

  .main-nav .button {
    margin-top: 20px;
  }

  .hero {
    min-height: auto;
    padding: 125px 0 36px;
  }

  .hero-grid,
  .split-layout,
  .journey-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 45px;
  }

  h1 {
    font-size: clamp(47px, 14vw, 70px);
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-image-main {
    right: 0;
    width: 86%;
  }

  .hero-stat {
    left: 1%;
  }

  .feature-bar {
    margin-top: 55px;
  }

  .section {
    padding: 90px 0;
  }

  .photo-stack {
    min-height: 610px;
  }

  .photo-card-main {
    width: 70%;
  }

  .photo-card-back {
    width: 52%;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 45px;
  }

  .section-heading p {
    max-width: 590px;
  }

  .history-heading {
    margin-bottom: 60px;
    text-align: left;
  }

  .history-heading p {
    margin: 0;
  }

  .cohort-timeline::before {
    left: 24px;
  }

  .cohort-item,
  .cohort-item.cohort-item-reverse {
    grid-template-columns: 49px minmax(0, 1fr);
    gap: 18px;
    min-height: 0;
    margin-bottom: 70px;
  }

  .cohort-node,
  .cohort-item-reverse .cohort-node {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    margin-top: 20px;
  }

  .cohort-node::before {
    width: 40px;
    height: 40px;
  }

  .cohort-node span {
    width: 12px;
    height: 12px;
    border-width: 3px;
    box-shadow: 0 0 0 4px var(--gold-400);
  }

  .cohort-photo,
  .cohort-item-reverse .cohort-photo {
    grid-column: 2;
    grid-row: 1;
  }

  .cohort-copy,
  .cohort-item-reverse .cohort-copy {
    grid-column: 2;
    grid-row: 2;
    padding: 0;
    text-align: left;
  }

  .cohort-item-reverse .cohort-copy p {
    margin-left: 0;
  }

  .employment-stats {
    margin-bottom: 55px;
  }

  .employee-track {
    grid-auto-columns: min(78vw, 285px);
    margin-right: calc((100vw - min(calc(100vw - 30px), var(--container))) / -2);
    padding-right: 20px;
  }

  .formation-grid,
  .mural-grid {
    grid-template-columns: 1fr;
  }

  .formation-card {
    min-height: 340px;
  }

  .formation-icon {
    margin-bottom: 40px;
  }

  .course-band {
    flex-wrap: wrap;
  }

  .course-band a {
    width: 100%;
    margin: 10px 0 0;
  }

  .impact-stats {
    margin-bottom: 55px;
  }

  .impact-stats div {
    flex-direction: column;
    gap: 4px;
    padding-inline: 12px;
    text-align: center;
  }

  .mural-grid {
    max-width: 500px;
    margin-inline: auto;
  }

  .mural-card-raised {
    margin-top: 0;
  }

  .journey-intro,
  .faq-heading {
    position: static;
  }

  .faq-grid {
    gap: 50px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 45px 35px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 40px 30px;
  }

  .cta-card .button {
    justify-self: start;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-contacts {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .instagram-link {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .brand small {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-proof {
    margin-top: 35px;
  }

  .hero-visual {
    min-height: 455px;
  }

  .hero-image-main {
    width: 90%;
    border-radius: 130px 130px 24px 24px;
  }

  .hero-image-small {
    width: 44%;
  }

  .hero-stat {
    top: 17%;
    width: 116px;
    padding: 15px;
  }

  .hero-stat strong {
    font-size: 21px;
  }

  .feature-bar {
    grid-template-columns: 1fr;
  }

  .feature-bar article {
    min-height: 86px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .feature-bar article:nth-child(3) {
    border-bottom: 1px solid var(--line-dark);
  }

  .feature-bar article:last-child {
    border-bottom: 0;
  }

  .photo-stack {
    min-height: 500px;
  }

  .photo-card-main {
    width: 78%;
  }

  .photo-card-back {
    width: 55%;
  }

  .photo-note {
    right: 8%;
    bottom: 4%;
    width: 190px;
  }

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

  .impact-stats strong {
    font-size: 28px;
  }

  .employment-stats div {
    flex-direction: column;
    gap: 3px;
    padding-inline: 8px;
    text-align: center;
  }

  .employment-stats strong {
    font-size: 30px;
  }

  .employment-stats span {
    font-size: 7px;
  }

  .employee-group-header h3 {
    font-size: 22px;
  }

  .carousel-controls button {
    width: 40px;
    height: 40px;
  }

  .impact-stats span {
    font-size: 7px;
  }

  .journey-list li {
    gap: 17px;
  }

  .faq-list summary {
    font-size: 13px;
  }

  .cta-section {
    padding-bottom: 60px;
  }

  .contact-card {
    padding: 35px 20px;
  }

  .contact-links strong {
    font-size: 11px;
    overflow-wrap: anywhere;
  }

  .cta-card {
    min-height: 360px;
    padding: 40px 25px;
  }

  .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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
