:root {
  --paper: #f6f4f0;
  --white: #ffffff;
  --red: #e51937;
  --red-dark: #b80f29;
  --navy: #14365d;
  --ink: #101d2d;
  --mist: #dce7f2;
  --muted: #5f6975;
  --line: rgba(16, 29, 45, 0.16);
  --shell: min(1280px, calc(100vw - 64px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

section[id],
[id="training-gallery"] {
  scroll-margin-top: 76px;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(100px, 12vw, 180px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--red);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 92px;
  padding-inline: max(32px, calc((100vw - 1280px) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition:
    height 300ms ease,
    color 300ms ease,
    background-color 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  height: 76px;
  color: var(--ink);
  background: rgba(246, 244, 240, 0.95);
  border-color: var(--line);
  box-shadow: 0 14px 40px rgba(16, 29, 45, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  justify-self: start;
  width: 116px;
}

.brand img {
  width: 100%;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

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

.header-cta {
  justify-self: end;
  padding: 12px 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--red);
  border: 1px solid var(--red);
  transition:
    color 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--red);
  background: var(--white);
  transform: translateY(-2px);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-media video,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media video {
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(0.78) contrast(1.04);
  transform: scale(1.025);
}

.hero-scrim {
  background:
    radial-gradient(circle at 78% 40%, rgba(20, 54, 93, 0.13), transparent 34%),
    linear-gradient(90deg, rgba(9, 20, 35, 0.92) 0%, rgba(9, 20, 35, 0.62) 48%, rgba(9, 20, 35, 0.3) 100%),
    linear-gradient(0deg, rgba(9, 20, 35, 0.58), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding-block: 148px 124px;
}

.hero-affiliation {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.affiliation-rule {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.hero h1 {
  max-width: 950px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(66px, 8.1vw, 128px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.hero h1 em,
.display-heading em,
.join h2 em {
  display: block;
  color: var(--red);
  font-weight: 400;
}

.hero h1 em {
  margin-left: clamp(0px, 8vw, 130px);
}

.hero-content > p {
  max-width: 630px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 300;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition:
    background-color 240ms ease,
    color 240ms ease,
    border-color 240ms ease,
    transform 240ms ease;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-3px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-block: 12px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.text-link span {
  transition: transform 220ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateY(4px);
}

.text-link-light {
  color: var(--white);
}

.hero-bottom {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  z-index: 2;
  display: flex;
  gap: 36px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-bottom span:not(:last-child)::after {
  margin-left: 36px;
  color: var(--red);
  content: "•";
}

.section-kicker {
  display: grid;
  grid-template-columns: 52px auto 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(42px, 7vw, 90px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-kicker::after {
  height: 1px;
  content: "";
  background: var(--line);
}

.section-kicker span {
  color: var(--red);
}

.section-kicker p {
  margin: 0;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.62);
}

.section-kicker-light::after {
  background: rgba(255, 255, 255, 0.18);
}

.display-heading {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6.4vw, 96px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.display-heading-light {
  color: var(--white);
}

.intro-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.55fr);
  align-items: end;
  gap: clamp(50px, 9vw, 140px);
}

.intro-body {
  color: var(--muted);
}

.intro-body p {
  margin: 0;
}

.intro-body p + p {
  margin-top: 22px;
}

.panorama {
  position: relative;
  height: clamp(340px, 42vw, 610px);
  margin: clamp(70px, 10vw, 130px) 0 0;
}

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

.panorama figcaption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: space-between;
  padding: 60px 30px 24px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(transparent, rgba(9, 20, 35, 0.78));
}

.image-card {
  overflow: hidden;
}

.image-card img {
  transition:
    transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 700ms ease;
  will-change: transform;
}

.image-card:hover img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.055);
}

.ratio-3-2 {
  --media-ratio: 1.5;
}

.ratio-4-3 {
  --media-ratio: 1.3333;
}

.ratio-16-9 {
  --media-ratio: 1.7778;
}

.team-stats {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(229, 25, 55, 0.18), transparent 26%),
    var(--navy);
}

.team-stats::after {
  position: absolute;
  top: -180px;
  right: -90px;
  width: 460px;
  height: 460px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.015);
  pointer-events: none;
}

.stats-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: clamp(55px, 8vw, 100px);
}

.stats-heading .eyebrow {
  margin: 0 0 10px;
}

.stats-heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(55px, 7vw, 100px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.stats-heading h2 em {
  display: block;
  color: var(--red);
  font-weight: 400;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
  position: relative;
  min-height: 250px;
  padding: 32px 24px 18px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat:not(:first-child) {
  padding-left: 28px;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(66px, 7vw, 102px);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.stat strong small {
  display: block;
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 0.18em;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.stat span {
  display: block;
  max-width: 180px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.55;
  text-transform: uppercase;
}

.stat i {
  position: absolute;
  right: 28px;
  bottom: 22px;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.14);
}

.stat i::after {
  display: block;
  width: 42%;
  height: 100%;
  content: "";
  background: var(--red);
  transition: width 450ms ease;
}

.stat:nth-child(2) i::after {
  width: 72%;
}

.stat:nth-child(3) i::after {
  width: 33%;
}

.stat:nth-child(4) i::after {
  width: 100%;
}

.stat:hover i::after {
  width: 100%;
}

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

.section-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  align-items: end;
  gap: clamp(48px, 9vw, 140px);
}

.section-lead > p {
  margin: 0;
  color: var(--muted);
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 6vw, 90px);
  margin-top: clamp(70px, 10vw, 140px);
}

.founder-card-offset {
  margin-top: 90px;
}

.founder-photo {
  position: relative;
  aspect-ratio: 0.82;
  background: var(--paper);
}

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

.founder-card:first-child .founder-photo img {
  object-position: center 18%;
}

.founder-card:nth-child(2) .founder-photo img {
  object-position: center 25%;
}

.photo-index {
  position: absolute;
  right: 18px;
  bottom: 16px;
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--white);
  place-items: center;
  background: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.founder-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  column-gap: 24px;
  margin-top: 26px;
}

.founder-copy .role {
  grid-column: 1 / -1;
  margin: 0 0 6px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.founder-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.principles-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(70px, 10vw, 160px);
}

.principle-list {
  border-top: 1px solid var(--line);
}

.principle {
  display: grid;
  grid-template-columns: 42px 0.55fr 1fr;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.principle > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.principle h3,
.growth-step h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.principle p,
.growth-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

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

.culture-lead > p {
  color: rgba(255, 255, 255, 0.64);
}

.culture-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: clamp(70px, 10vw, 140px);
}

.culture-row {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: 100%;
}

.culture-photo {
  position: relative;
  flex: var(--media-ratio) 1 0;
  min-width: 0;
  aspect-ratio: var(--media-ratio);
  margin: 0;
}

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

.culture-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(transparent 56%, rgba(9, 20, 35, 0.76));
  pointer-events: none;
}

.culture-photo figcaption {
  position: absolute;
  right: 20px;
  bottom: 16px;
  left: 20px;
  z-index: 2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(6px);
  transition: transform 350ms ease;
}

.culture-photo:hover figcaption {
  transform: translateY(0);
}

.growth-header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.55fr);
  align-items: end;
  gap: clamp(50px, 9vw, 140px);
}

.growth-group-mark {
  width: min(390px, 76vw);
  height: auto;
  margin-bottom: 28px;
}

.growth-header > p {
  margin: 0;
  color: var(--muted);
}

.growth {
  padding-bottom: clamp(70px, 7vw, 100px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(54px, 7vw, 92px);
}

.why-card {
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid rgba(16, 29, 45, 0.1);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.why-card:hover {
  border-color: rgba(229, 25, 55, 0.28);
  box-shadow: 0 22px 54px rgba(16, 29, 45, 0.09);
  transform: translateY(-6px);
}

.why-card > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  color: var(--white);
  place-items: center;
  background: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.why-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 39px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.why-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.growth-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(340px, 0.6fr);
  gap: clamp(42px, 5vw, 68px);
  margin-top: clamp(54px, 8vw, 110px);
}

.growth-image {
  position: relative;
  align-self: start;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  background: var(--white);
}

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

.growth-image figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  padding: 18px 20px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  background: rgba(16, 29, 45, 0.82);
  backdrop-filter: blur(10px);
}

.growth-steps {
  align-self: center;
  border-top: 1px solid var(--line);
}

.growth-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.growth-step > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.growth-step p {
  margin-top: 11px;
}

.training-strip {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-top: 54px;
}

.training-strip figure {
  flex: var(--media-ratio) 1 0;
  min-width: 0;
  aspect-ratio: var(--media-ratio);
  margin: 0;
}

.training-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.join-reasons-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  margin-top: 18px;
}

.featured-gallery {
  margin-top: clamp(56px, 7vw, 90px);
}

.featured-gallery > * {
  height: 100%;
}

.reason-photo {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(16, 29, 45, 0.1);
  box-shadow: 0 18px 44px rgba(16, 29, 45, 0.06);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.reason-photo::after {
  position: absolute;
  inset: 12px 12px 68px;
  pointer-events: none;
  content: "";
  background: linear-gradient(125deg, transparent 0%, rgba(255, 255, 255, 0.34) 44%, transparent 60%);
  opacity: 0;
  transform: translateX(-42%);
  transition:
    opacity 260ms ease,
    transform 620ms ease;
}

.reason-photo:hover {
  border-color: rgba(229, 25, 55, 0.24);
  box-shadow: 0 24px 58px rgba(16, 29, 45, 0.12);
  transform: translateY(-4px);
}

.reason-photo:hover::after {
  opacity: 1;
  transform: translateX(42%);
}

.reason-photo img {
  width: 100%;
  height: auto;
}

.featured-gallery .reason-photo img {
  height: clamp(270px, 25vw, 360px);
  object-fit: cover;
}

.featured-gallery .reason-photo:nth-child(1) img,
.featured-gallery .reason-photo:nth-child(2) img,
.featured-gallery .reason-photo:nth-child(3) img,
.featured-gallery .reason-photo:nth-child(4) img {
  object-position: center center;
}

.featured-gallery .reason-photo:nth-child(5) img {
  object-position: center 38%;
}

.reason-photo figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.reason-photo figcaption::before {
  width: 22px;
  height: 2px;
  content: "";
  background: var(--red);
}

.reason-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(229, 25, 55, 0.08), transparent 52%),
    var(--white);
  border: 1px solid rgba(16, 29, 45, 0.1);
  box-shadow: 0 18px 44px rgba(16, 29, 45, 0.06);
}

.reason-copy h3 {
  max-width: 520px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.reason-copy > p:last-child {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.growth-library {
  position: relative;
  margin-top: 24px;
  padding: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(16, 29, 45, 0.08);
}

.growth-library::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 48%, transparent 64%),
    radial-gradient(circle at 12% 20%, rgba(229, 25, 55, 0.08), transparent 34%);
  opacity: 0.55;
  transform: translateX(-52%);
  animation: library-sheen 8s ease-in-out infinite;
}

.library-heading {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.library-heading .eyebrow {
  margin-bottom: 0;
}

.library-heading span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.library-track {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.library-marquee {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: library-scroll 58s linear infinite;
  will-change: transform;
}

.library-track:hover .library-marquee {
  animation-play-state: paused;
}

@keyframes library-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@keyframes library-sheen {
  0%,
  32% {
    transform: translateX(-58%);
  }

  58%,
  100% {
    transform: translateX(58%);
  }
}

.library-track::-webkit-scrollbar {
  height: 8px;
}

.library-track::-webkit-scrollbar-track {
  background: rgba(16, 29, 45, 0.08);
}

.library-track::-webkit-scrollbar-thumb {
  background: rgba(229, 25, 55, 0.55);
}

.library-card {
  position: relative;
  flex: 0 0 min(340px, 72vw);
  margin: 0;
  padding: 8px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(16, 29, 45, 0.1);
  box-shadow: 0 16px 38px rgba(16, 29, 45, 0.08);
  scroll-snap-align: start;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.library-card::after {
  position: absolute;
  inset: 8px 8px 44px;
  pointer-events: none;
  content: "";
  background: linear-gradient(125deg, transparent 0%, rgba(255, 255, 255, 0.42) 42%, transparent 58%);
  opacity: 0;
  transform: translateX(-40%);
  transition:
    opacity 260ms ease,
    transform 560ms ease;
}

.library-card:hover {
  border-color: rgba(229, 25, 55, 0.28);
  box-shadow: 0 22px 52px rgba(16, 29, 45, 0.14);
  transform: translateY(-6px);
}

.library-card:hover::after {
  opacity: 1;
  transform: translateX(42%);
}

.library-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(220, 231, 242, 0.42), rgba(255, 255, 255, 0.9));
}

.certificate-card {
  flex-basis: min(300px, 70vw);
}

.wide-certificate {
  flex-basis: min(390px, 78vw);
}

.certificate-card img {
  padding: 12px;
  object-fit: contain;
  filter: saturate(0.98) contrast(1.02);
}

.library-card figcaption {
  margin-top: 9px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.join {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.join-media,
.join-media img,
.join-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.join-media img {
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.5);
}

.join-scrim {
  background:
    linear-gradient(90deg, rgba(9, 20, 35, 0.98) 0%, rgba(9, 20, 35, 0.88) 52%, rgba(9, 20, 35, 0.65) 100%),
    radial-gradient(circle at 80% 45%, rgba(229, 25, 55, 0.26), transparent 28%);
}

.join-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: clamp(60px, 10vw, 160px);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.join h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(55px, 6.5vw, 94px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.join-copy > p:last-child {
  max-width: 570px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.interest-form {
  align-self: start;
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  background: var(--paper);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.interest-form label {
  display: block;
  margin-bottom: 20px;
}

.interest-form label > span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  width: 100%;
  padding: 13px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(16, 29, 45, 0.3);
  border-radius: 0;
  outline: none;
  transition: border-color 200ms ease;
}

.interest-form textarea {
  resize: vertical;
}

.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus {
  border-color: var(--red);
}

.interest-form .button {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.form-note.is-success {
  color: var(--navy);
  font-weight: 700;
}

.site-footer {
  padding-block: 70px 28px;
  background: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr;
  gap: 60px;
  padding-bottom: 64px;
}

.footer-brand img {
  width: 120px;
  height: 74px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p,
.era-affiliation p {
  max-width: 260px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-label {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--red);
}

.era-affiliation {
  justify-self: end;
}

.era-affiliation img {
  width: 76px;
  height: 84px;
  object-fit: contain;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 40px;
  padding-top: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.6;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 76px;
    padding-inline: 20px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    padding: 11px;
    color: inherit;
    background: transparent;
    border: 1px solid currentColor;
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 250ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    color: var(--ink);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(16, 29, 45, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
  }

  .intro-copy,
  .section-lead,
  .growth-header,
  .join-content,
  .principles-layout,
  .growth-showcase {
    grid-template-columns: 1fr;
  }

  .intro-copy,
  .section-lead,
  .growth-header {
    align-items: start;
  }

  .founder-copy {
    grid-template-columns: 1fr;
  }

  .founder-copy > p:last-child {
    margin-top: 18px;
  }

  .principles-layout,
  .growth-showcase,
  .join-content {
    gap: 60px;
  }

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

  .join-reasons-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .stats-heading {
    align-items: start;
    flex-direction: column;
  }

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

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

  .era-affiliation {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 32px);
  }

  body {
    font-size: 16px;
  }

  .section {
    padding-block: 90px;
  }

  .brand {
    width: 92px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-block: 120px 142px;
  }

  .hero-media video {
    object-position: 55% center;
  }

  .hero-affiliation {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .affiliation-rule {
    width: 24px;
  }

  .hero h1 {
    font-size: clamp(54px, 18vw, 78px);
  }

  .hero h1 em {
    margin-left: 0;
  }

  .hero-content > p {
    margin-top: 24px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
  }

  .hero-bottom {
    bottom: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    overflow: visible;
    font-size: 9px;
    letter-spacing: 0.09em;
    white-space: normal;
  }

  .hero-bottom span {
    text-align: center;
  }

  .hero-bottom span:not(:last-child)::after {
    display: none;
  }

  .display-heading,
  .join h2 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .section-kicker {
    grid-template-columns: 34px auto 1fr;
    margin-bottom: 46px;
  }

  .panorama {
    height: 440px;
  }

  .panorama img {
    object-position: center;
  }

  .panorama figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

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

  .founder-card-offset {
    margin-top: 28px;
  }

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

  .principle p {
    grid-column: 2;
  }

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

  .stat,
  .stat:not(:first-child) {
    min-height: 210px;
    padding: 28px 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 0;
  }

  .stat:first-child {
    border-top: 0;
  }

  .culture-row {
    align-items: stretch;
    flex-direction: column;
  }

  .culture-photo {
    flex: none;
    width: 100%;
    aspect-ratio: var(--media-ratio);
  }

  .training-strip {
    align-items: stretch;
    flex-direction: column;
    margin-top: 56px;
  }

  .training-strip figure {
    flex: none;
    width: 100%;
    aspect-ratio: var(--media-ratio);
  }

  .why-grid,
  .join-reasons-gallery {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: auto;
  }

  .why-card > span {
    margin-bottom: 26px;
  }

  .growth-image {
    aspect-ratio: 16 / 10;
  }

  .growth-image figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 12px 14px;
    font-size: 11px;
  }

  .reason-photo {
    padding: 10px;
  }

  .featured-gallery .reason-photo img {
    height: clamp(230px, 68vw, 290px);
  }

  .featured-gallery .reason-photo figcaption {
    min-height: 38px;
  }

  .reason-copy {
    padding: 28px 22px;
  }

  .growth-library {
    padding: 16px;
  }

  .library-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .interest-form {
    padding: 24px 20px;
  }

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

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

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

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

  .hero-media video {
    display: none;
  }

  .library-marquee {
    animation: none;
  }
}
