:root {
  --red: #ed1c24;
  --red-dark: #b70f17;
  --ink: #111215;
  --ink-soft: #1b1d21;
  --paper: #f4f4f2;
  --white: #ffffff;
  --muted: #73767d;
  --line: #d7d8d9;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

em {
  color: var(--red);
  font-style: normal;
}

::selection {
  background: var(--red);
  color: var(--white);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 1rem;
  transform: translateY(-120%);
  background: var(--ink);
  color: white;
  padding: 0.7rem 1rem;
}

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

.scroll-progress {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: 3px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(17, 18, 21, 0.11);
  background: rgba(244, 244, 242, 0.92);
  backdrop-filter: blur(18px);
  transition: min-height 250ms ease, box-shadow 250ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  box-shadow: 0 12px 30px rgba(17, 18, 21, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
  height: 62px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.25rem, 2.6vw, 3rem);
}

.desktop-nav a {
  position: relative;
  color: #3b3d42;
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  min-height: 44px;
  padding: 0 1.15rem;
  border: 1px solid var(--ink);
  font-size: 0.84rem;
  font-weight: 750;
  transition: color 200ms ease, background 200ms ease;
}

.header-cta:hover {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  min-height: min(850px, 100svh);
  padding: 82px 0 0 8vw;
  background-image:
    linear-gradient(rgba(17, 18, 21, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 18, 21, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero::before {
  position: absolute;
  z-index: 0;
  top: 32%;
  left: 0;
  width: 4px;
  height: 28%;
  background: var(--red);
  content: "";
}

.hero-index {
  position: absolute;
  z-index: 4;
  bottom: 2rem;
  left: 2.2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.hero-index span {
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-index i {
  width: 1px;
  height: 70px;
  background: var(--ink);
}

.hero-index small {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 790px;
  padding: 7rem 6vw 6rem 0;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  color: #55585f;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 3px;
  background: var(--red);
}

.hero h1,
.statement h2,
.program-heading h2,
.courses h2,
.certification h2,
.direction h2,
.contact h2 {
  margin: 0;
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(3.9rem, 6.4vw, 7.7rem);
}

.hero h1 em {
  display: block;
}

.hero-lead {
  max-width: 620px;
  margin: 2rem 0 0;
  color: #4a4d53;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 52px;
  padding: 0 1.2rem;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 800;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}

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

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

.button-primary:hover {
  background: var(--red-dark);
}

.button-quiet {
  border-color: #b7b9bc;
  background: rgba(255, 255, 255, 0.35);
}

.button-quiet:hover {
  border-color: var(--ink);
  background: var(--white);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  max-width: 560px;
  margin-top: 3.2rem;
  border-top: 1px solid #c8c9ca;
}

.hero-meta div {
  padding: 1.1rem 1.4rem 0 0;
}

.hero-meta div + div {
  padding-left: 1.4rem;
  border-left: 1px solid #c8c9ca;
}

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

.hero-meta span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-meta strong {
  margin-top: 0.2rem;
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  background: var(--ink);
}

.hero-image-wrap {
  position: absolute;
  inset: 0 0 0 -2.5vw;
  overflow: hidden;
  background: var(--ink);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-image-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
  transform: scale(1.035);
  transition: opacity 500ms ease, transform 900ms cubic-bezier(.2,.7,.2,1);
}

.hero-image-wrap.is-changing > img {
  opacity: 0;
  transform: scale(1.08);
}

.hero-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 18, 21, 0.02) 35%, rgba(17, 18, 21, 0.88) 100%);
}

.hero-image-shade::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(237, 28, 36, 0.12), transparent 30%);
  content: "";
  mix-blend-mode: screen;
}

.scan-line {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 11%;
  width: 1px;
  height: 100%;
  background: rgba(237, 28, 36, 0.7);
  box-shadow: 0 0 22px rgba(237, 28, 36, 0.5);
  animation: scan 5s ease-in-out infinite alternate;
}

@keyframes scan {
  to { left: 88%; }
}

.corner-label {
  position: absolute;
  z-index: 3;
  right: clamp(1.6rem, 4vw, 4.5rem);
  bottom: clamp(2.2rem, 5vw, 5rem);
  display: grid;
  min-width: min(330px, 70%);
  padding: 1.2rem 0 0 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  color: white;
}

.corner-label span {
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.corner-label strong {
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: clamp(1.3rem, 2.3vw, 2.3rem);
  line-height: 1;
  text-transform: uppercase;
}

.crosshair {
  position: absolute;
  z-index: 3;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.crosshair::before,
.crosshair::after {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  content: "";
}

.crosshair::before { top: 11px; left: -5px; width: 34px; height: 1px; }
.crosshair::after { top: -5px; left: 11px; width: 1px; height: 34px; }
.crosshair-one { top: 20%; right: 15%; }
.crosshair-two { bottom: 27%; left: 23%; transform: scale(0.65); }

.next-visual {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 120px;
  min-height: 58px;
  padding: 0 1.2rem;
  border: 0;
  background: var(--red);
  color: white;
  cursor: pointer;
}

.next-visual span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.next-visual b {
  font-size: 1.3rem;
  transition: transform 200ms ease;
}

.next-visual:hover b { transform: translateX(5px); }

.industry-ticker {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--red);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 46px;
  animation: ticker 32s linear infinite;
}

.ticker-track span,
.ticker-track i {
  flex: none;
  color: white;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.ticker-track span { padding: 0 1.3rem; }
.ticker-track i { font-size: 0.45rem; }

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section-pad {
  padding: clamp(5rem, 9vw, 9rem) max(6vw, calc((100vw - var(--max)) / 2));
}

.section-kicker {
  margin-bottom: 3rem;
}

.section-kicker > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #afb1b4;
  color: var(--ink);
  font-size: 0.68rem;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 7vw;
  align-items: end;
}

.statement h2,
.program-heading h2,
.certification h2,
.direction h2,
.contact h2 {
  font-size: clamp(2.8rem, 5.7vw, 6.4rem);
}

.statement-copy {
  padding-left: 1.5rem;
  border-left: 2px solid var(--red);
}

.statement-copy p {
  margin: 0;
  color: #484b50;
  font-size: 1.02rem;
}

.statement-copy p + p { margin-top: 1.2rem; }

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.principles article {
  min-height: 250px;
  padding: 1.5rem 2rem 2.5rem 0;
}

.principles article + article {
  padding-left: 2rem;
  border-left: 1px solid var(--ink);
}

.principles span,
.program-number {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.principles h3 {
  max-width: 250px;
  margin: 5rem 0 0.8rem;
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: 1.65rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.principles p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.program-types {
  background: white;
}

.program-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 5rem;
}

.program-heading p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.program-list {
  border-top: 1px solid var(--ink);
}

.program-row {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(230px, 0.75fr) minmax(300px, 1fr) 48px;
  gap: 1.5rem;
  align-items: center;
  min-height: 140px;
  border-bottom: 1px solid #cfd0d1;
  transition: padding 250ms ease, background 250ms ease;
}

.program-row::before {
  position: absolute;
  inset: 0;
  background: var(--ink);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}

.program-row > * {
  position: relative;
  z-index: 1;
}

.program-row:hover {
  padding-inline: 1rem;
  color: white;
}

.program-row:hover::before { transform: scaleY(1); }

.program-row h3 {
  margin: 0;
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2.35rem);
  line-height: 1;
  text-transform: uppercase;
}

.program-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.program-row:hover p { color: #c9cbd0; }
.program-arrow { font-size: 1.6rem; }

.courses {
  overflow: hidden;
  padding-bottom: clamp(5rem, 9vw, 9rem);
  background: var(--ink);
  color: white;
}

.courses-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 3rem;
}

.section-kicker-light { color: #a9abb0; }
.section-kicker-light > span { border-color: #55585e; color: white; }
.courses h2 { font-size: clamp(3rem, 5.8vw, 6.5rem); }

.course-carousel {
  position: relative;
}

.rail-arrow {
  position: absolute;
  z-index: 6;
  top: 50%;
  display: grid;
  width: clamp(52px, 4.2vw, 68px);
  height: clamp(52px, 4.2vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(17, 18, 21, 0.88);
  color: white;
  cursor: pointer;
  font-size: 1.35rem;
  place-items: center;
  transform: translateY(-50%);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
  transition: background 200ms ease, border-color 200ms ease, opacity 200ms ease, transform 200ms ease;
}

.rail-arrow-prev { left: clamp(0.75rem, 2.2vw, 2.5rem); }
.rail-arrow-next { right: clamp(0.75rem, 2.2vw, 2.5rem); }

.rail-arrow:hover:not(:disabled),
.rail-arrow:focus-visible {
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-50%) scale(1.06);
}

.rail-arrow:disabled {
  opacity: 0.28;
  cursor: default;
}

.course-rail {
  display: flex;
  gap: 1px;
  overflow-x: auto;
  padding: 0 max(6vw, calc((100vw - var(--max)) / 2));
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.course-rail::-webkit-scrollbar { display: none; }

.course-card {
  position: relative;
  flex: 0 0 clamp(280px, 31vw, 470px);
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #24262a;
  color: white;
  cursor: pointer;
  text-align: left;
  scroll-snap-align: start;
}

.course-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.88) contrast(1.04);
  transform: scale(1.01);
  transition: transform 600ms cubic-bezier(.2,.7,.2,1), filter 350ms ease;
}

.course-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 18, 21, 0.48), transparent 30%),
    linear-gradient(0deg, rgba(17, 18, 21, 0.78), transparent 34%);
}

.course-card::after {
  position: absolute;
  inset: 0;
  border: 0 solid var(--red);
  content: "";
  transition: border-width 220ms ease;
}

.course-card:hover::after,
.course-card:focus-visible::after { border-width: 5px; }
.course-card:hover > img { filter: saturate(1) brightness(0.96) contrast(1.02); transform: scale(1.055); }

.course-top,
.course-bottom {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  left: 1.5rem;
  display: flex;
  justify-content: space-between;
}

.course-top { top: 1.4rem; align-items: center; }
.course-bottom { bottom: 1.7rem; align-items: end; }

.course-top small {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.course-top b {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
}

.course-bottom strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.course-bottom i {
  margin-left: auto;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(17, 18, 21, 0.7);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.swipe-note {
  margin: 1.7rem max(6vw, calc((100vw - var(--max)) / 2)) 0;
  color: #8f9298;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certification {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1.1fr);
  gap: 9vw;
  align-items: center;
  min-height: 850px;
}

.certificate-visual {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    var(--ink-soft);
  background-size: 32px 32px;
}

.certificate-visual::before {
  position: absolute;
  inset: 0;
  border: 1px solid #2f3237;
  content: "";
  transform: translate(14px, 14px);
}

.certificate-card {
  position: relative;
  z-index: 2;
  width: min(72%, 390px);
  aspect-ratio: 0.76;
  padding: 2.2rem;
  background: #f7f7f5;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  transform: rotate(-4deg);
}

.certificate-card::after {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 66px;
  height: 66px;
  border: 8px solid var(--red);
  border-radius: 50%;
  content: "";
  opacity: 0.15;
}

.certificate-logo {
  color: var(--red);
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
}

.certificate-card > span {
  display: block;
  max-width: 240px;
  margin-top: 0.5rem;
  color: #696c72;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.certificate-line {
  width: 52px;
  height: 4px;
  margin: 4.5rem 0 1.2rem;
  background: var(--red);
}

.certificate-card strong {
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.certificate-code {
  display: grid;
  grid-template-columns: repeat(3, 8px);
  gap: 3px;
  margin-top: 4rem;
}

.certificate-code i { width: 8px; height: 8px; background: var(--ink); }
.certificate-code i:nth-child(2),
.certificate-code i:nth-child(4),
.certificate-code i:nth-child(9) { background: transparent; border: 1px solid var(--ink); }

.certificate-card small {
  position: absolute;
  bottom: 2.3rem;
  left: 2.2rem;
  color: #7a7d82;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cert-seal {
  position: absolute;
  z-index: 4;
  right: 8%;
  bottom: 16%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  background: var(--red);
  color: white;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  transform: rotate(5deg);
}

.cert-seal span { font-size: 1rem; }

.certification-copy > p {
  max-width: 640px;
  margin: 2rem 0 0;
  color: #54575d;
  font-size: 1.02rem;
}

.certification-copy ul {
  margin: 2.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.certification-copy li {
  display: grid;
  grid-template-columns: 50px 1fr;
  padding: 1rem 0;
  border-bottom: 1px solid #cbccce;
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: 1.1rem;
  font-weight: 750;
  text-transform: uppercase;
}

.certification-copy li span { color: var(--red); font-size: 0.66rem; }
.certification-copy .fine-print { font-size: 0.78rem; color: #85878c; }

.direction {
  background: var(--ink);
  color: white;
}

.direction-title {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: start;
}

.direction-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  margin: 6rem 0 0 auto;
  border-top: 1px solid #4d5056;
}

.direction-panels article {
  min-height: 300px;
  padding: 1.8rem 3.5rem 2rem 0;
}

.direction-panels article + article {
  padding-left: 3.5rem;
  border-left: 1px solid #4d5056;
}

.direction-panels span,
.collaborators > span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.direction-panels p {
  margin: 5.5rem 0 0;
  color: #c2c4c8;
  font-size: 1rem;
}

.collaborators {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  margin-top: 5rem;
  padding-top: 1.6rem;
  border-top: 1px solid #34363b;
}

.collaborators strong {
  color: #c9cacf;
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: clamp(0.85rem, 1.4vw, 1.25rem);
  letter-spacing: 0.02em;
}

.collaborators i { width: 4px; height: 4px; background: #5f6268; transform: rotate(45deg); }

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 5vw;
  overflow: hidden;
  min-height: 650px;
  padding: clamp(5rem, 9vw, 9rem) max(6vw, calc((100vw - var(--max)) / 2));
  background: var(--red);
  color: white;
}

.contact-shape {
  position: absolute;
  right: -2vw;
  bottom: -0.43em;
  color: rgba(17, 18, 21, 0.13);
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: min(58vw, 820px);
  font-weight: 900;
  line-height: 0.8;
}

.contact-copy,
.contact-details { position: relative; z-index: 2; }
.eyebrow-light { color: rgba(255,255,255,.78); }
.eyebrow-light > span { background: white; }
.contact h2 { font-size: clamp(3.5rem, 7vw, 8.4rem); }
.contact h2 em { color: var(--ink); }

.contact-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 2rem 0;
  font-size: 1.08rem;
}

.button-light {
  min-width: 250px;
  background: var(--ink);
  color: white;
}

.button-light:hover { background: white; color: var(--ink); }

.contact-details {
  align-self: end;
  display: flex;
  flex-direction: column;
  padding: 1.7rem 0 0 1.7rem;
  border-top: 1px solid rgba(255,255,255,.7);
  border-left: 1px solid rgba(255,255,255,.7);
}

.contact-details > span {
  margin-bottom: 1rem;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-details a {
  width: fit-content;
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 750;
}

.contact-details a:hover { text-decoration: underline; }
.contact-details small { margin-top: 1.2rem; color: rgba(255,255,255,.72); }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 140px;
  padding: 1rem max(6vw, calc((100vw - var(--max)) / 2));
  background: white;
}

.footer-brand { width: 155px; height: 82px; overflow: hidden; }
.footer-brand img { width: 100%; height: 100%; object-fit: contain; }
footer p { margin: 0; font-size: 0.74rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
footer > span { justify-self: end; color: var(--muted); font-size: .75rem; }

.course-dialog {
  width: min(1000px, calc(100vw - 2rem));
  max-height: min(780px, calc(100svh - 2rem));
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
}

.course-dialog[open] {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(390px, 1.1fr);
  animation: dialog-in 260ms cubic-bezier(.2,.7,.2,1);
}

.course-dialog::backdrop {
  background: rgba(10, 11, 13, 0.82);
  backdrop-filter: blur(6px);
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
}

.dialog-close {
  position: absolute;
  z-index: 5;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid #c8c9ca;
  background: rgba(244,244,242,.88);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.dialog-media {
  min-height: 620px;
  overflow: hidden;
  background: var(--ink);
}

.dialog-media img { width: 100%; height: 100%; object-fit: cover; }
.dialog-copy { align-self: center; padding: clamp(2.5rem, 5vw, 5rem); }
.dialog-copy > span { color: var(--red); font-size: .68rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.dialog-copy h2 { margin: 1rem 0 1.3rem; font-family: Bahnschrift, "Arial Narrow", sans-serif; font-size: clamp(2rem, 4vw, 4rem); letter-spacing: -.05em; line-height: .95; text-transform: uppercase; }
.dialog-copy p { color: #5a5d63; }
.dialog-copy ul { margin: 1.8rem 0 2rem; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.dialog-copy li { padding: .75rem 0; border-bottom: 1px solid #cdced0; font-size: .88rem; font-weight: 700; }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 750ms ease, transform 750ms cubic-bezier(.2,.7,.2,1);
}

.reveal[data-delay="1"] { transition-delay: 120ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 200px 1fr auto; }
  .desktop-nav { gap: 1.3rem; }
  .hero { grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr); padding-left: 6vw; }
  .hero-copy { padding-right: 3vw; }
  .hero h1 { font-size: clamp(3.7rem, 6vw, 5.7rem); }
  .hero-index { display: none; }
  .principles article { min-height: 280px; }
  .program-row { grid-template-columns: 55px .8fr 1fr 36px; }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 70px; padding-inline: 5vw; }
  .brand { width: 150px; height: 58px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle {
    display: grid;
    gap: 7px;
    width: 44px;
    height: 44px;
    padding: 13px 9px;
    border: 1px solid #bfc1c3;
    background: transparent;
  }
  .menu-toggle span { display: block; width: 100%; height: 2px; background: var(--ink); transition: transform 200ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .mobile-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    padding: 1rem 5vw 2rem;
    border-bottom: 1px solid #c5c6c8;
    background: var(--paper);
  }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a { padding: .9rem 0; border-bottom: 1px solid #d5d6d7; font-family: Bahnschrift, "Arial Narrow", sans-serif; font-size: 1.35rem; font-weight: 800; text-transform: uppercase; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 70px 0 0; }
  .hero-copy { padding: 7rem 6vw 4rem; }
  .hero h1 { font-size: clamp(3.5rem, 11vw, 6rem); }
  .hero-visual { min-height: 620px; }
  .hero-image-wrap { inset: 0; clip-path: none; }
  .statement-grid, .program-heading, .certification, .direction-title { grid-template-columns: 1fr; }
  .statement-copy { margin-top: 3rem; }
  .principles { grid-template-columns: 1fr; }
  .principles article { min-height: 220px; }
  .principles article + article { padding-left: 0; border-top: 1px solid var(--ink); border-left: 0; }
  .principles h3 { margin-top: 3.5rem; }
  .program-heading { gap: 2rem; }
  .program-row { grid-template-columns: 45px 1fr 40px; padding: 1.5rem 0; }
  .program-row p { grid-column: 2 / 3; }
  .program-arrow { grid-column: 3; grid-row: 1 / 3; }
  .courses-head { align-items: end; }
  .certification { gap: 5rem; }
  .certificate-visual { min-height: 570px; }
  .direction-title { gap: 2rem; }
  .direction-panels { margin-top: 4rem; }
  .contact { grid-template-columns: 1fr; }
  .contact-details { max-width: 480px; }
}

@media (max-width: 650px) {
  .hero-copy { padding-top: 5.5rem; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 5rem); letter-spacing: -0.065em; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta div + div { padding-left: 0; border-left: 0; }
  .hero-visual { min-height: 510px; }
  .corner-label { min-width: 70%; }
  .section-pad { padding-block: 5rem; }
  .statement h2, .program-heading h2, .certification h2, .direction h2 { font-size: clamp(2.7rem, 14vw, 4.8rem); }
  .program-row { grid-template-columns: 36px 1fr 30px; gap: .8rem; }
  .program-row h3 { font-size: 1.45rem; }
  .courses-head { display: block; }
  .course-card { flex-basis: 83vw; }
  .rail-arrow { width: 48px; height: 48px; }
  .certificate-visual { min-height: 500px; }
  .certificate-card { width: 76%; padding: 1.7rem; }
  .certificate-line { margin-top: 3.2rem; }
  .certificate-code { margin-top: 3rem; }
  .direction-panels { grid-template-columns: 1fr; }
  .direction-panels article { min-height: 240px; padding-right: 0; }
  .direction-panels article + article { padding-left: 0; border-top: 1px solid #4d5056; border-left: 0; }
  .direction-panels p { margin-top: 3.2rem; }
  .collaborators { flex-wrap: wrap; }
  .contact { min-height: 700px; }
  .contact h2 { font-size: clamp(3.2rem, 16vw, 5.3rem); }
  footer { grid-template-columns: 1fr; gap: .7rem; padding-block: 2rem; }
  footer p, footer > span { justify-self: start; }
  .course-dialog[open] { display: block; overflow-y: auto; }
  .dialog-media { min-height: 300px; height: 44vh; }
  .dialog-copy { padding: 2rem 1.4rem 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 1ms !important; animation-iteration-count: 1 !important; transition-duration: 1ms !important; }
  .reveal { opacity: 1; transform: none; }
}
