:root {
  --academy-black: #1a1a2e;
  --light-grey: #f4f4f4;
  --white: #ffffff;
  --mid-grey: #888888;
  --container: 1240px;
  --header-height: 82px;
  --section-space: clamp(72px, 9vw, 120px);
  --font-headline: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --font-label: "DM Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--academy-black);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary,
select {
  cursor: pointer;
}

a {
  color: inherit;
}

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

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  color: inherit;
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.45rem, 6.5vw, 6.8rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.4rem, 2.2vw, 2.05rem);
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

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

.booking-container {
  max-width: 980px;
}

.section {
  padding-block: var(--section-space);
}

.section-light {
  background: var(--white);
  color: var(--academy-black);
}

.section-muted {
  background: var(--light-grey);
  color: var(--academy-black);
}

.section-dark {
  background: var(--academy-black);
  color: var(--white);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 40;
  padding: 10px 16px;
  background: var(--white);
  color: var(--academy-black);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-180%);
}

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

:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 4px;
}

.announcement {
  position: relative;
  z-index: 30;
  background: var(--light-grey);
  color: var(--academy-black);
  text-align: center;
  border-bottom: 1px solid var(--mid-grey);
}

.announcement a {
  display: block;
  padding: 9px 24px;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--academy-black);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.header-inner {
  width: min(calc(100% - 48px), var(--container));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 72px;
  height: 64px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 34px);
}

.desktop-nav a,
.header-cta,
.mobile-nav a {
  font-family: var(--font-label);
  font-size: 0.76rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a {
  padding-block: 10px;
  color: var(--light-grey);
  transition: opacity 160ms ease-out;
}

.desktop-nav a:hover {
  opacity: 0.65;
}

.header-cta {
  padding: 13px 20px;
  background: var(--white);
  color: var(--academy-black);
  border: 1px solid var(--white);
  transition: transform 160ms ease-out;
}

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

.menu-toggle {
  width: 48px;
  height: 48px;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid var(--mid-grey);
  background: transparent;
  color: var(--white);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease-out, opacity 160ms ease-out;
}

.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;
  inset: var(--header-height) 0 auto;
  min-height: calc(100dvh - var(--header-height));
  padding: 26px 24px max(32px, env(safe-area-inset-bottom));
  background: var(--academy-black);
  border-top: 1px solid var(--mid-grey);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: block;
  padding: 18px 4px;
  border-bottom: 1px solid var(--mid-grey);
}

.mobile-nav .mobile-apply {
  margin-top: 22px;
  padding: 17px 20px;
  background: var(--white);
  color: var(--academy-black);
  border-bottom: 0;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--academy-black);
  color: var(--white);
}

.hero-backdrop,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: grayscale(1);
}

.hero-overlay {
  background: rgba(26, 26, 46, 0.88);
}

.hero-grid {
  position: relative;
  z-index: 10;
  padding-block: 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.hero-copy-block h1 {
  max-width: 900px;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--light-grey);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

.hero-video-card {
  width: min(100%, 390px);
  margin: 0;
  justify-self: end;
  background: var(--academy-black);
  border: 1px solid var(--mid-grey);
}

.hero-video-card video,
.wide-video-frame video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--academy-black);
}

.hero-video-card figcaption,
.video-caption {
  padding: 18px 20px 20px;
  background: var(--academy-black);
  color: var(--white);
}

.hero-video-card figcaption span,
.hero-video-card figcaption strong,
.video-caption span,
.video-caption strong {
  display: block;
}

.hero-video-card figcaption span,
.video-caption span {
  margin-bottom: 5px;
  color: var(--light-grey);
  font-family: var(--font-label);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.hero-video-card figcaption strong,
.video-caption strong {
  font-family: var(--font-headline);
  font-size: 1.14rem;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--mid-grey);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
}

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

.button {
  min-height: 52px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--font-label);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease-out, background-color 160ms ease-out, color 160ms ease-out;
}

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

.button-light {
  background: var(--white);
  color: var(--academy-black);
  border-color: var(--white);
}

.button-light:hover {
  background: var(--light-grey);
  border-color: var(--light-grey);
}

.button-dark {
  background: var(--academy-black);
  color: var(--white);
  border-color: var(--academy-black);
}

.button-dark:hover {
  background: var(--white);
  color: var(--academy-black);
}

.proof-strip {
  background: var(--academy-black);
  color: var(--white);
  border-top: 1px solid var(--mid-grey);
}

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

.proof-grid > div {
  min-height: 146px;
  padding: 30px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid var(--mid-grey);
}

.proof-grid > div:first-child {
  border-left: 1px solid var(--mid-grey);
}

.proof-grid strong {
  font-family: var(--font-label);
  font-size: clamp(2.65rem, 4vw, 4.5rem);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  line-height: 1;
}

.proof-grid span {
  max-width: 108px;
  color: var(--light-grey);
  font-family: var(--font-label);
  font-size: 0.68rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-intro {
  margin-bottom: clamp(48px, 6vw, 78px);
}

.section-intro h2 {
  max-width: 900px;
}

.section-intro > p:not(.eyebrow),
.split-intro > p,
.split-intro > div > p:not(.eyebrow) {
  color: var(--mid-grey);
  font-size: 1.08rem;
}

.centered-intro {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.centered-intro h2,
.centered-intro > p:not(.eyebrow) {
  margin-inline: auto;
}

.centered-intro > p:not(.eyebrow) {
  max-width: 760px;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: clamp(48px, 7vw, 100px);
}

.split-intro h2 {
  margin-bottom: 0;
}

.teaching-credit {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--mid-grey);
}

.teaching-credit strong {
  color: var(--academy-black);
}

.ethos-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.56fr) minmax(0, 1.44fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.wide-video-frame {
  width: min(100%, 420px);
  background: var(--academy-black);
  border: 1px solid var(--mid-grey);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--academy-black);
}

.pillar-grid article {
  min-height: 260px;
  padding: 34px;
  border-right: 1px solid var(--academy-black);
  border-bottom: 1px solid var(--academy-black);
}

.pillar-grid article:nth-child(2n) {
  border-right: 0;
}

.pillar-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.pillar-grid article > span,
.week-grid article > span,
.selection-copy > span,
.form-heading > span,
.portal-callout span {
  display: block;
  margin-bottom: 48px;
  color: var(--mid-grey);
  font-family: var(--font-label);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.pillar-grid h3 {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
}

.pillar-grid p {
  margin-bottom: 0;
  color: var(--mid-grey);
}

.phase-accordion {
  border-top: 1px solid var(--academy-black);
}

.phase-card {
  border-bottom: 1px solid var(--academy-black);
}

.phase-card summary {
  min-height: 118px;
  padding: 28px 64px 28px 0;
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 120px;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.phase-card summary::-webkit-details-marker {
  display: none;
}

.phase-card summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  font-family: var(--font-label);
  font-size: 1.75rem;
}

.phase-card[open] summary::after {
  content: "−";
}

.phase-number,
.phase-weeks {
  color: var(--mid-grey);
  font-family: var(--font-label);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.phase-heading {
  font-family: var(--font-headline);
  font-size: clamp(1.45rem, 2.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
}

.phase-weeks {
  text-align: right;
}

.week-grid {
  padding: 0 0 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--mid-grey);
  border-top: 1px solid var(--mid-grey);
}

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

.week-grid article {
  padding: 28px;
  background: var(--white);
}

.week-grid article > span {
  margin-bottom: 46px;
}

.week-grid h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.week-grid p {
  margin-bottom: 0;
  color: var(--mid-grey);
  font-size: 0.94rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(54px, 8vw, 116px);
}

.resource-cover {
  width: min(100%, 470px);
  padding: clamp(14px, 2vw, 24px);
  display: block;
  justify-self: center;
  background: var(--white);
  border: 1px solid var(--mid-grey);
}

.resource-cover img {
  width: 100%;
  aspect-ratio: 595.5 / 842.25;
  object-fit: cover;
}

.resource-copy h2 {
  color: var(--white);
}

.resource-copy-on-light h2 {
  color: var(--academy-black);
}

.resource-lead {
  max-width: 660px;
  margin-bottom: 38px;
  color: var(--light-grey);
  font-size: 1.08rem;
}

.resource-copy-on-light .resource-lead {
  color: var(--mid-grey);
}

.resource-list {
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--mid-grey);
}

.resource-list li {
  min-height: 72px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--mid-grey);
}

.resource-list span,
.resource-actions > span {
  color: var(--light-grey);
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
}

.resource-list strong {
  color: var(--white);
  font-family: var(--font-headline);
  font-size: clamp(1.16rem, 1.8vw, 1.55rem);
}

.resource-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--mid-grey);
  border: 1px solid var(--mid-grey);
}

.portal-grid article {
  min-height: 330px;
  padding: 34px 28px;
  background: var(--white);
}

.portal-grid svg {
  width: 48px;
  height: 48px;
  margin-bottom: 62px;
  fill: none;
  stroke: var(--academy-black);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.portal-grid h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.portal-grid p {
  margin-bottom: 0;
  color: var(--mid-grey);
  font-size: 0.94rem;
}

.portal-callout {
  margin-top: 36px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--academy-black);
  color: var(--white);
}

.portal-callout span {
  margin-bottom: 4px;
  color: var(--light-grey);
}

.portal-callout strong {
  font-family: var(--font-headline);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.dark-intro h2 {
  color: var(--white);
}

.dark-intro > p {
  color: var(--light-grey);
}

.application-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
  gap: 1px;
  background: var(--mid-grey);
  border: 1px solid var(--mid-grey);
}

.selection-panel,
.application-form {
  min-width: 0;
  background: var(--academy-black);
}

.selection-panel > img,
.selection-panel > video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--academy-black);
}

.selection-panel > img {
  filter: grayscale(1);
}

.selection-copy {
  padding: clamp(30px, 4vw, 54px);
}

.selection-copy > span,
.form-heading > span {
  margin-bottom: 24px;
  color: var(--light-grey);
}

.selection-copy h3,
.form-heading h3 {
  color: var(--white);
}

.selection-copy p,
.selection-copy li,
.form-note {
  color: var(--light-grey);
}

.selection-copy ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--mid-grey);
}

.selection-copy li {
  padding: 13px 0;
  border-bottom: 1px solid var(--mid-grey);
  font-family: var(--font-label);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.application-form {
  padding: clamp(32px, 5vw, 68px);
}

.form-heading {
  margin-bottom: 38px;
}

.form-heading h3 {
  max-width: 640px;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.application-form label {
  margin-bottom: 22px;
  display: block;
}

.application-form label > span {
  margin-bottom: 8px;
  display: block;
  color: var(--light-grey);
  font-family: var(--font-label);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.application-form input,
.application-form textarea,
.application-form select {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--mid-grey);
  border-radius: 0;
  background: var(--white);
  color: var(--academy-black);
}

.application-form textarea {
  min-height: 150px;
  resize: vertical;
}

.application-form input:focus,
.application-form textarea:focus,
.application-form select:focus {
  border-color: var(--white);
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.application-form .button {
  width: 100%;
  border: 0;
}

.form-note,
.form-status {
  margin-top: 16px;
  font-size: 0.82rem;
}

.form-status {
  min-height: 1.4em;
  color: var(--white);
}

.next-step-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 56px;
}

.next-step-grid h2 {
  max-width: 850px;
  margin-bottom: 0;
}

/* Multi-page content */
.page-hero {
  padding: clamp(74px, 9vw, 126px) 0;
  background: var(--academy-black);
  color: var(--white);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: clamp(52px, 8vw, 118px);
}

.breadcrumb {
  margin-bottom: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--light-grey);
  font-family: var(--font-label);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.breadcrumb a {
  text-underline-offset: 4px;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(3.6rem, 6.6vw, 6.9rem);
}

.page-hero-lede {
  max-width: 720px;
  margin-bottom: 34px;
  color: var(--light-grey);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.page-hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.section-actions-spaced {
  margin-top: 34px;
}

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

.button-outline-light:hover {
  background: var(--white);
  color: var(--academy-black);
}

.page-hero-media {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--mid-grey);
}

.page-hero-media img,
.page-hero-media video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.page-hero-media img {
  filter: grayscale(1);
}

.page-hero-media figcaption {
  padding: 20px 22px;
  color: var(--academy-black);
}

.page-hero-media figcaption span,
.page-hero-media figcaption strong {
  display: block;
}

.page-hero-media figcaption span {
  margin-bottom: 5px;
  color: var(--mid-grey);
  font-family: var(--font-label);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.page-hero-media figcaption strong {
  font-family: var(--font-headline);
  font-size: 1.2rem;
}

.inline-metrics {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--mid-grey);
}

.inline-metrics > div {
  min-height: 112px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--mid-grey);
}

.inline-metrics > div:last-child {
  border-right: 0;
}

.inline-metrics strong {
  color: var(--white);
  font-family: var(--font-label);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.inline-metrics span {
  color: var(--light-grey);
  font-family: var(--font-label);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(48px, 8vw, 112px);
}

.content-split h2 {
  margin-bottom: 0;
}

.content-copy > p {
  color: var(--mid-grey);
  font-size: 1.06rem;
}

.content-copy > p:first-child {
  color: var(--academy-black);
  font-size: 1.2rem;
  font-weight: 600;
}

.content-copy h3 {
  margin-top: 34px;
}

.info-grid,
.profile-grid,
.process-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--mid-grey);
  border: 1px solid var(--mid-grey);
}

.info-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.process-card,
.contact-card {
  min-height: 300px;
  padding: clamp(28px, 3.5vw, 44px);
  background: var(--white);
}

.info-card > span,
.process-card > span,
.contact-card > span {
  margin-bottom: 52px;
  display: block;
  color: var(--mid-grey);
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
}

.info-card p,
.process-card p,
.contact-card p {
  color: var(--mid-grey);
}

.info-card a,
.contact-card a {
  font-weight: 700;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.dark-card-grid .info-card,
.dark-card-grid .process-card {
  background: var(--academy-black);
  color: var(--white);
}

.dark-card-grid .info-card p,
.dark-card-grid .process-card p {
  color: var(--light-grey);
}

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

.profile-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.74fr) minmax(0, 1.26fr);
  background: var(--white);
}

.profile-card > img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: grayscale(1);
}

.profile-copy {
  padding: clamp(30px, 4vw, 52px);
}

.profile-copy > span {
  display: block;
  margin-bottom: 28px;
  color: var(--mid-grey);
  font-family: var(--font-label);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.profile-copy p {
  color: var(--mid-grey);
}

.profile-copy ul,
.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--mid-grey);
}

.profile-copy li,
.check-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--mid-grey);
}

.profile-card-text {
  grid-template-columns: 1fr;
}

.profile-card-text .profile-copy {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-list {
  border-top: 1px solid var(--academy-black);
}

.faq-list details {
  border-bottom: 1px solid var(--academy-black);
}

.faq-list summary {
  min-height: 92px;
  padding: 26px 58px 26px 0;
  position: relative;
  display: flex;
  align-items: center;
  font-family: var(--font-headline);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  font-family: var(--font-label);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details > div {
  max-width: 920px;
  padding: 0 0 32px;
  color: var(--mid-grey);
}

.page-cta {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--academy-black);
  color: var(--white);
}

.page-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
}

.page-cta h2 {
  max-width: 860px;
  margin-bottom: 0;
}

.document-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  color: var(--light-grey);
  font-family: var(--font-label);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.address-panel {
  padding: clamp(34px, 5vw, 66px);
  background: var(--light-grey);
  border: 1px solid var(--mid-grey);
}

.address-panel address {
  margin-bottom: 28px;
  color: var(--academy-black);
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}

.site-footer {
  padding: 78px 0 24px;
  background: var(--academy-black);
  color: var(--white);
}

.footer-grid {
  padding-bottom: 62px;
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(160px, 0.65fr));
  gap: 52px;
}

.footer-brand img,
.booking-footer img,
.booking-header img {
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand img {
  width: 108px;
  height: 108px;
}

.footer-brand p,
.footer-address a {
  max-width: 330px;
  color: var(--light-grey);
  font-size: 0.88rem;
}

.footer-title {
  margin-bottom: 18px;
  color: var(--white);
  font-family: var(--font-label);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.footer-grid > div > a {
  width: fit-content;
  margin-bottom: 11px;
  display: block;
  color: var(--light-grey);
  font-size: 0.9rem;
  text-underline-offset: 4px;
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--mid-grey);
  color: var(--light-grey);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom a {
  font-weight: 700;
}

/* Booking funnel */
.booking-page {
  background: var(--academy-black);
}

.booking-header {
  padding: 24px;
  display: flex;
  justify-content: center;
  background: var(--academy-black);
  border-bottom: 1px solid var(--mid-grey);
}

.booking-header a {
  display: block;
}

.booking-header img {
  width: 82px;
  height: 72px;
}

.booking-hero {
  padding: clamp(70px, 9vw, 112px) 0;
  background: var(--academy-black);
  color: var(--white);
  text-align: center;
}

.booking-hero h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(3.25rem, 6.5vw, 6.4rem);
}

.booking-hero > .booking-container > p:not(.eyebrow) {
  max-width: 700px;
  margin: 0 auto 42px;
  color: var(--light-grey);
  font-size: 1.08rem;
}

.vsl-frame {
  width: min(100%, 520px);
  margin-inline: auto;
  padding: 12px;
  background: var(--white);
}

.vsl-frame video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--academy-black);
}

.trust-bar {
  background: var(--light-grey);
  color: var(--academy-black);
}

.trust-grid {
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-grid > div {
  min-height: 132px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-right: 1px solid var(--mid-grey);
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--mid-grey);
}

.trust-grid span {
  color: var(--mid-grey);
  font-family: var(--font-label);
  font-size: 0.74rem;
  font-variant-numeric: tabular-nums;
}

.trust-grid strong {
  font-family: var(--font-label);
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.45;
  text-transform: uppercase;
}

.booking-section {
  padding: var(--section-space) 0;
  background: var(--white);
  color: var(--academy-black);
}

.booking-intro {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

.booking-intro > p:not(.eyebrow) {
  color: var(--mid-grey);
}

.calendar-frame {
  min-height: 720px;
  padding: clamp(14px, 3vw, 30px);
  background: var(--light-grey);
  border: 1px solid var(--mid-grey);
}

.calendar-frame iframe {
  width: 100%;
  min-height: 680px;
  display: block;
  border: 0;
  background: var(--white);
}

.booking-footer {
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--academy-black);
  color: var(--light-grey);
  text-align: center;
}

.booking-footer img {
  width: 80px;
  height: 70px;
  margin-bottom: 20px;
}

.booking-footer p {
  margin-bottom: 8px;
  font-family: var(--font-label);
  font-size: 0.72rem;
  text-transform: uppercase;
}

/* Privacy policy */
.privacy-content {
  width: min(calc(100% - 48px), 920px);
  margin: 0 auto;
  padding: 64px 0 90px;
}

.privacy-content .back-link {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--mid-grey);
  font-family: var(--font-label);
  font-weight: 500;
}

.privacy-content > h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.privacy-content section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--mid-grey);
}

.privacy-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.privacy-content h3 {
  margin-top: 26px;
  font-size: 1.15rem;
}

.privacy-content p,
.privacy-content li {
  color: var(--mid-grey);
}

.privacy-content table {
  width: 100%;
  border-collapse: collapse;
}

.privacy-content .button {
  background: var(--academy-black);
  color: var(--white);
  border-color: var(--academy-black);
}

.privacy-content th,
.privacy-content td {
  padding: 14px;
  border: 1px solid var(--mid-grey);
  text-align: left;
}

.privacy-content + footer {
  padding: 40px 20px;
  background: var(--academy-black) !important;
  color: var(--white) !important;
  text-align: center;
}

.privacy-content + footer p {
  color: var(--white);
}

.privacy-actions {
  margin-top: 50px;
}

.privacy-footer {
  padding: 40px 20px;
  background: var(--academy-black);
  color: var(--white);
  text-align: center;
}

@media (max-width: 1100px) {
  .portal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 0.7fr);
    gap: 32px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 74px;
  }

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

  .menu-toggle {
    margin-left: auto;
    display: flex;
  }

  .brand img {
    width: 62px;
    height: 56px;
  }

  .hero-grid,
  .split-intro,
  .ethos-grid,
  .resource-grid,
  .application-grid,
  .page-hero-grid,
  .content-split,
  .page-cta-grid,
  .next-step-grid {
    grid-template-columns: 1fr;
  }

  .info-grid-four,
  .info-grid,
  .process-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-grid {
    padding-block: 72px;
  }

  .hero-copy-block {
    text-align: center;
  }

  .hero-copy,
  .hero-video-card {
    margin-inline: auto;
  }

  .hero-video-card {
    justify-self: center;
  }

  .split-intro {
    align-items: start;
    gap: 28px;
  }

  .wide-video-frame {
    margin-inline: auto;
  }

  .resource-grid {
    gap: 48px;
  }

  .resource-cover {
    max-width: 420px;
  }

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

  .next-step-grid {
    gap: 30px;
  }

  .next-step-grid .button {
    width: fit-content;
  }

  .page-cta-grid .button {
    width: fit-content;
  }

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

@media (max-width: 700px) {
  .container,
  .booking-container,
  .header-inner,
  .privacy-content {
    width: min(calc(100% - 32px), var(--container));
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 58px;
    gap: 44px;
  }

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

  .proof-grid > div {
    min-height: 126px;
    padding: 22px 14px;
    border-bottom: 1px solid var(--mid-grey);
  }

  .proof-grid > div:nth-child(odd) {
    border-left: 1px solid var(--mid-grey);
  }

  .proof-grid strong {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .pillar-grid,
  .portal-grid,
  .field-grid,
  .week-grid,
  .week-grid-three,
  .inline-metrics,
  .info-grid,
  .info-grid-four,
  .process-grid,
  .contact-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .page-hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .page-hero-actions .button,
  .section-actions .button,
  .page-cta-grid .button {
    width: 100%;
  }

  .inline-metrics > div {
    border-right: 0;
    border-bottom: 1px solid var(--mid-grey);
  }

  .inline-metrics > div:last-child {
    border-bottom: 0;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .profile-card > img {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .profile-card-text .profile-copy {
    min-height: auto;
  }

  .pillar-grid article {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--academy-black);
  }

  .pillar-grid article:nth-last-child(2) {
    border-bottom: 1px solid var(--academy-black);
  }

  .phase-card summary {
    min-height: 130px;
    padding: 24px 46px 24px 0;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .phase-weeks {
    text-align: left;
  }

  .portal-grid article {
    min-height: auto;
  }

  .portal-grid svg {
    margin-bottom: 44px;
  }

  .portal-callout {
    padding: 28px 24px;
    align-items: stretch;
    flex-direction: column;
  }

  .portal-callout .button {
    width: 100%;
  }

  .resource-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .application-form {
    padding: 32px 22px;
  }

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

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

  .booking-hero h1 {
    font-size: clamp(2.85rem, 13vw, 4.5rem);
  }

  .trust-grid > div {
    min-height: 110px;
    justify-content: flex-start;
    border-right: 1px solid var(--mid-grey);
    border-bottom: 1px solid var(--mid-grey);
  }

  .calendar-frame {
    min-height: 780px;
    padding: 8px;
  }

  .calendar-frame iframe {
    min-height: 760px;
  }

  .privacy-content {
    overflow-x: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
