@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope-variable.woff2') format('woff2');
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ivory: #f5f1e9;
  --paper: #fffdf8;
  --blue: #3970a4;
  --deep-blue: #245081;
  --yellow: #f1d977;
  --ink: #191f25;
  --muted: #4d555c;
  --border: rgba(25, 31, 37, 0.2);
  --border-light: rgba(245, 241, 233, 0.28);
  --container: 1456px;
  --gutter: clamp(1.5rem, 3vw, 3rem);
  --section-space: clamp(5rem, 9vw, 8rem);
  --header-height: 98px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  padding-top: var(--header-height);
  background: var(--ivory);
  color: var(--ink);
  font-family: 'Manrope', Arial, Helvetica, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

a {
  color: inherit;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

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

h1,
h2,
h3 {
  margin-bottom: 0.65em;
  font-weight: 570;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

h1 {
  font-size: clamp(3rem, 5.2vw, 5.1rem);
}

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

h3 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

p {
  max-width: 70ch;
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px var(--yellow);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 80;
  padding: 0.75rem 1rem;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.section--paper {
  background: var(--paper);
}

.section--blue {
  background: var(--deep-blue);
  color: var(--ivory);
}

.section[id],
section[id] {
  scroll-margin-top: 7rem;
}

.lede {
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.65;
}

.large-copy {
  font-size: clamp(1.25rem, 2.1vw, 1.85rem);
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.text-on-blue {
  color: rgba(245, 241, 233, 0.86);
}

.eyebrow,
.kicker,
.panel-label,
.footer-label,
.spotlight-index {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--yellow);
}

.eyebrow::after {
  width: min(18vw, 11rem);
  height: 1px;
  background: currentColor;
  content: '';
}

.kicker {
  margin-bottom: 1.25rem;
  color: var(--deep-blue);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.7fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading h2,
.section-heading p:last-child {
  margin-bottom: 0;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2.25rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.85rem 1.35rem;
  border: 0;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:active {
  transform: scale(0.98);
}

.button--yellow {
  background: var(--yellow);
  color: var(--ink);
}

.button--yellow:hover {
  background: #ffe68a;
}

.button--blue {
  background: var(--deep-blue);
  color: var(--ivory);
}

.button--blue:hover {
  background: #193f69;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link-label {
  text-decoration: underline;
  text-underline-offset: 0.38em;
}

.arrow {
  display: inline-block;
  font-size: 1.35em;
  line-height: 1;
  transition: transform 160ms ease;
}

.button:hover .arrow,
.button:focus-visible .arrow,
.text-link:hover .arrow,
.text-link:focus-visible .arrow {
  transform: translateX(3px);
}

/* Header and navigation */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  height: var(--header-height);
  isolation: isolate;
  padding: 0;
  pointer-events: none;
  background: var(--paper);
  border-bottom: 1px solid rgba(25, 31, 37, 0.1);
  transition:
    background 350ms ease,
    border-color 350ms ease,
    padding 350ms ease;
}

.site-header::before {
  content: none;
}

.site-header:not(.is-condensed)::after {
  content: none;
}

.site-header.is-condensed {
  padding: 12px 16px 0;
  background: transparent;
  border-bottom-color: transparent;
}

.header-sentinel {
  position: absolute;
  top: 24px;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.header-inner {
  position: relative;
  pointer-events: auto;
  display: flex;
  width: min(100%, var(--container));
  height: var(--header-height);
  align-items: center;
  margin-inline: auto;
  padding-inline: var(--gutter);
  border: 1px solid transparent;
  background: var(--paper);
  transform: translate3d(0, 0, 0);
  transition:
    max-width 350ms ease,
    width 350ms ease,
    height 350ms ease,
    padding 350ms ease,
    border-color 350ms ease,
    border-radius 350ms ease,
    box-shadow 350ms ease,
    transform 350ms ease,
    background-color 350ms ease;
  will-change: transform, border-radius;
}

.brand {
  position: relative;
  z-index: 43;
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: clamp(92px, 8vw, 126px);
  height: auto;
  max-height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-self: stretch;
  align-items: stretch;
  gap: clamp(0.85rem, 1.65vw, 1.85rem);
  margin-left: auto;
}

.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--yellow);
  content: '';
  opacity: 0;
  transform: translate(-50%, 5px) scale(0.3);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-link:hover,
.nav-link[aria-current='page'] {
  color: var(--deep-blue);
}

.nav-link[aria-current='page']::after {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.header-cta {
  min-width: 178px;
  min-height: 52px;
  margin-left: clamp(1rem, 2vw, 2.25rem);
  padding: 0.4rem 0.42rem 0.4rem 1.15rem;
  justify-content: space-between;
  border-radius: 8px;
  background: var(--deep-blue);
  color: var(--ivory);
  transition:
    background-color 160ms ease,
    min-width 350ms ease,
    min-height 350ms ease,
    padding 350ms ease,
    border-radius 350ms ease,
    gap 350ms ease,
    font-size 350ms ease;
}

.arrow-disc {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 1.25rem;
  transition:
    width 350ms ease,
    height 350ms ease,
    font-size 350ms ease;
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

@media (min-width: 1024px) {
  .desktop-nav .nav-link:last-child {
    min-height: 52px;
    align-self: center;
    padding: 0 2.05rem 0 1.25rem;
    border-radius: 8px;
    background: var(--deep-blue);
    color: var(--ivory);
  }

  .desktop-nav .nav-link:last-child:hover,
  .desktop-nav .nav-link:last-child[aria-current='page'] {
    color: var(--ivory);
  }

  .desktop-nav .nav-link:last-child::after {
    top: 50%;
    right: 0.8rem;
    bottom: auto;
    left: auto;
    width: 0.42rem;
    height: 0.42rem;
    opacity: 0;
    transform: translateY(-50%) scale(0.35);
  }

  .desktop-nav .nav-link:last-child[aria-current='page']::after {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }

  .site-header.is-condensed .header-inner {
    width: min(920px, calc(100vw - 32px));
    height: 64px;
    padding-inline: 1.15rem 0.7rem;
    border-color: rgba(25, 31, 37, 0.14);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.82);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.65),
      0 12px 32px rgba(25, 31, 37, 0.1),
      0 2px 8px rgba(25, 31, 37, 0.04);
    transform: none;
    -webkit-backdrop-filter: blur(10px) saturate(112%);
    backdrop-filter: blur(10px) saturate(112%);
  }

  .site-header.is-condensed .brand-logo {
    width: 108px;
    max-height: 38px;
  }

  .site-header.is-condensed .nav-link::after {
    bottom: 0.45rem;
  }

  .site-header.is-condensed .desktop-nav .nav-link:last-child {
    min-height: 40px;
    padding: 0 1.75rem 0 1.05rem;
    border-radius: 999px;
  }

  .site-header.is-condensed .desktop-nav .nav-link:last-child::after {
    right: 0.62rem;
  }

  /* Tighter, more pill-like CTA so it fits the condensed island cleanly. */
  .site-header.is-condensed .header-cta {
    min-width: 148px;
    min-height: 40px;
    gap: 0.55rem;
    padding: 0.2rem 0.28rem 0.2rem 0.95rem;
    border-radius: 999px;
    font-size: 0.7rem;
  }

  .site-header.is-condensed .header-cta .arrow-disc {
    width: 34px;
    height: 34px;
    font-size: 1.05rem;
  }
}

/* Home */
.home-stage {
  position: relative;
  margin-bottom: clamp(3rem, 4.5vw, 4rem);
  padding-bottom: clamp(3rem, 4.5vw, 4rem);
  background: var(--deep-blue);
}

.home-hero-grid {
  display: grid;
  min-height: min(632px, calc(100svh - var(--header-height) - 1rem));
  align-items: stretch;
  grid-template-columns: 44% 56%;
}

.home-hero-copy,
.split-hero-copy {
  display: flex;
  align-items: center;
  background: var(--deep-blue);
  color: var(--ivory);
}

.home-hero-copy {
  padding: clamp(3.5rem, 6.2vw, 6.25rem) clamp(2rem, 4vw, 4.5rem) clamp(5.5rem, 8vw, 7.5rem)
    max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
}

.home-hero-copy-inner {
  max-width: 37rem;
}

.home-hero-copy h1 {
  max-width: 10ch;
}

.home-hero-media,
.split-hero-media,
.editorial-media,
.preview-image {
  overflow: hidden;
  background: #d9d4ca;
}

.home-hero-media picture,
.split-hero-media picture,
.editorial-media picture,
.preview-image picture {
  width: 100%;
  height: 100%;
}

.home-hero-media img,
.split-hero-media img,
.editorial-media img,
.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-media img {
  object-position: 58% center;
}

.preview-image--main img {
  object-position: 54% center;
}

.preview-image:nth-child(2) img {
  object-position: 62% center;
}

.preview-image:nth-child(3) img {
  object-position: 48% center;
}

.hero-secondary {
  color: var(--ivory);
}

.goal-panel {
  position: absolute;
  right: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  bottom: -3rem;
  left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  z-index: 10;
  display: grid;
  min-height: 206px;
  grid-template-columns: 1.16fr minmax(18rem, 1fr) 0.72fr;
  overflow: hidden;
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(25, 31, 37, 0.14);
  color: var(--ink);
}

.goal-selector,
.goal-recommendations,
.goal-next {
  position: relative;
  padding: 1.6rem clamp(1.25rem, 2.7vw, 2.75rem);
}

.goal-recommendations::before,
.goal-next::before {
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 0;
  width: 1px;
  background: var(--border);
  content: '';
}

.panel-label {
  margin-bottom: 1rem;
}

.goal-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--blue);
  border-radius: 8px;
}

.goal-tab {
  min-height: 58px;
  padding: 0.55rem;
  border: 0;
  border-left: 1px solid var(--blue);
  border-top: 1px solid var(--blue);
  background: transparent;
  cursor: pointer;
  font-weight: 650;
}

.goal-tab:nth-child(-n + 2) {
  border-top: 0;
}

.goal-tab:nth-child(2n + 1) {
  border-left: 0;
}

.goal-tab[aria-selected='true'] {
  background: var(--blue);
  color: var(--paper);
}

.goal-recommendation {
  margin-bottom: 1rem;
}

.goal-recommendation p {
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
}

.goal-recommendation a {
  min-height: 44px;
  color: var(--deep-blue);
  font-weight: 700;
}

.goal-next p:not(.panel-label) {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.formats-section {
  padding: 5rem 0 2.5rem;
}

.formats-heading-row {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) 1.7fr;
  gap: 3rem;
  align-items: center;
}

.formats-heading-row h2 {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 3.15rem);
}

.pathway-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.pathway-list li {
  display: grid;
  min-height: 70px;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding-left: 1.5rem;
  border-left: 1px solid var(--border);
}

.pathway-list li:first-child {
  border-left: 0;
}

.pathway-number,
.step-number {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
}

.pathway-title {
  font-size: 0.83rem;
  font-weight: 750;
  text-transform: uppercase;
}

.pathway-list a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  font-size: 1.35rem;
  text-decoration: none;
}

.brand-partners-section {
  padding: clamp(3.5rem, 6vw, 5.75rem) 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brand-partners-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
}

.brand-partners-copy h2 {
  max-width: 12ch;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  line-height: 0.98;
}

.brand-partners-copy .lede {
  max-width: 34rem;
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  overflow: hidden;
  background: var(--border);
  border: 1px solid var(--border);
  list-style: none;
}

.brand-logo-card {
  display: grid;
  min-height: clamp(7.5rem, 10vw, 9.25rem);
  place-items: center;
  padding: clamp(1rem, 2vw, 1.75rem);
  background: var(--ivory);
}

.brand-logo-card--dark {
  background: var(--deep-blue);
}

.brand-logo-card img {
  width: auto;
  max-width: min(78%, 13rem);
  height: 52px;
  object-fit: contain;
}

.brand-logo-card--aditya img {
  height: 66px;
  max-width: min(84%, 11rem);
}

.brand-logo-card--hero img {
  height: 74px;
  max-width: min(82%, 9rem);
}

.brand-logo-card--dark img {
  max-width: min(82%, 14rem);
}

.gallery-preview-grid {
  display: grid;
  min-height: 650px;
  grid-template-columns: 1.7fr 0.8fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
}

.preview-image {
  margin: 0;
}

.preview-image--main {
  grid-row: 1 / -1;
}

.program-panels,
.format-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.program-panel,
.format-column {
  min-height: 360px;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-left: 1px solid var(--ink);
}

.program-panel {
  display: flex;
  flex-direction: column;
}

.program-panel:first-child,
.format-column:first-child {
  border-left: 0;
}

.program-panel:nth-child(2) {
  background: var(--yellow);
}

.program-panel:nth-child(2) .pathway-number {
  color: var(--ink);
}

.program-panel:nth-child(4) {
  background: var(--deep-blue);
  color: var(--ivory);
}

.program-panel:nth-child(4) .pathway-number,
.program-panel:nth-child(4) p {
  color: var(--ivory);
}

.program-panel .pathway-number,
.format-column .pathway-number {
  display: block;
  margin-bottom: 4rem;
}

.program-panel p,
.format-column p {
  color: var(--muted);
}

.program-panel .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.closing-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: center;
}

.closing-band h2 {
  max-width: 18ch;
  margin-bottom: 0;
}

/* Internal heroes */
.split-hero {
  display: grid;
  min-height: min(610px, calc(100svh - var(--header-height)));
  align-items: stretch;
  grid-template-columns: 48% 52%;
}

.split-hero-copy {
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 5vw, 5rem) clamp(4rem, 8vw, 8rem)
    max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
}

.split-hero-copy-inner {
  max-width: 39rem;
}

.split-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.85rem, 4.5vw, 4.5rem);
}

.split-hero-media img {
  object-position: center;
}

#about-hero .split-hero-media img {
  object-position: 52% center;
}

#programs-hero .split-hero-media img {
  object-position: 56% center;
}

/* Programs spotlight */
.program-goals {
  background: var(--ivory);
}

.program-spotlight-tabs {
  display: none;
}

.program-spotlight-stage {
  display: grid;
  gap: 1.25rem;
}

.program-spotlight-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 5.25rem);
  border: 1px solid var(--ink);
}

.spotlight--blue {
  background: var(--deep-blue);
  color: var(--ivory);
}

.spotlight--yellow {
  background: var(--yellow);
  color: var(--ink);
}

.spotlight--ivory {
  background: var(--paper);
  color: var(--ink);
}

.spotlight--ink {
  background: var(--ink);
  color: var(--ivory);
}

.spotlight-ghost {
  position: absolute;
  top: -0.1em;
  right: -0.02em;
  color: currentColor;
  font-size: clamp(10rem, 28vw, 26rem);
  font-weight: 200;
  letter-spacing: -0.12em;
  line-height: 0.75;
  opacity: 0.1;
  user-select: none;
}

.spotlight-title,
.spotlight-details {
  position: relative;
  z-index: 1;
}

.spotlight-title h3 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.25rem);
}

.spotlight-index {
  margin-bottom: 1rem;
  color: currentColor;
  opacity: 0.72;
}

.spotlight-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: clamp(4rem, 9vw, 8rem) 0 0;
}

.spotlight-details > div {
  padding: 1.25rem clamp(1rem, 2.2vw, 2rem);
  border-left: 1px solid currentColor;
}

.spotlight-details > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.spotlight-details dt {
  margin-bottom: 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spotlight-details dd {
  margin: 0;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.65;
}

.js .program-spotlight[data-enhanced='true'] {
  display: grid;
  grid-template-columns: minmax(15rem, 0.34fr) minmax(0, 1fr);
  gap: 1rem;
}

.js .program-spotlight[data-enhanced='true'] .program-spotlight-tabs {
  display: grid;
  align-content: stretch;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.program-spotlight-tabs button {
  display: grid;
  min-height: 110px;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  border: 0;
  border-top: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.program-spotlight-tabs button:first-child {
  border-top: 0;
}

.program-spotlight-tabs button span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
}

.program-spotlight-tabs button[aria-selected='true'] {
  background: var(--ink);
  color: var(--ivory);
}

.program-spotlight-tabs button[aria-selected='true'] span {
  color: var(--yellow);
}

.js .program-spotlight[data-enhanced='true'] .program-spotlight-stage {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.js .program-spotlight[data-enhanced='true'] .program-spotlight-panel {
  position: absolute;
  inset: 0;
  min-height: 650px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  visibility: hidden;
  transition:
    opacity 240ms ease,
    transform 320ms var(--ease),
    visibility 0s linear 320ms;
}

.js .program-spotlight[data-enhanced='true'] .program-spotlight-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
  transition-delay: 60ms, 0s, 0s;
}

.format-column:nth-child(2) {
  background: var(--blue);
  color: var(--paper);
}

.format-column:nth-child(2) .pathway-number,
.format-column:nth-child(2) p {
  color: var(--paper);
}

.format-column:nth-child(4) {
  background: var(--deep-blue);
  color: var(--ivory);
}

.format-column:nth-child(4) .pathway-number,
.format-column:nth-child(4) p {
  color: var(--ivory);
}

.comparison-table {
  display: grid;
  grid-template-columns: minmax(8rem, 0.55fr) repeat(4, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.comparison-table > div {
  min-height: 160px;
  padding: 1.5rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.comparison-table dt {
  margin-bottom: 0.8rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison-table dd {
  margin: 0;
  color: var(--muted);
}

.comparison-label {
  background: var(--ink);
  color: var(--paper);
}

/* Gallery - immersive video stage, chrome outside the media */
.gallery-hero {
  padding: 0 0 clamp(2.25rem, 4vw, 3.5rem);
  background: var(--ivory);
  color: var(--ink);
}

.gallery-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 0.55fr);
  gap: 0 clamp(2rem, 6vw, 6rem);
  align-items: end;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(1.2rem, 2.8vw, 2rem) var(--gutter) clamp(0.8rem, 1.8vw, 1.25rem);
}

.gallery-intro .eyebrow {
  grid-column: 1;
  color: var(--deep-blue);
}

.gallery-intro h1 {
  grid-column: 1;
  max-width: 14ch;
  margin-bottom: 0;
}

.gallery-intro .lede {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 40rem;
  margin-bottom: 0;
  color: var(--muted);
}

.gallery {
  outline: none;
}

.gallery-stage {
  overflow: hidden;
  background: var(--ink);
}

.gallery-enlarge-hint {
  display: none;
}

/* Baseline / no-JS: editorial grid of all five videos */
.gallery-slides {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
}

.gallery-slide {
  display: grid;
  grid-template-rows: auto auto;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

.gallery-slide picture,
.gallery-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink);
}

.gallery-slide img,
.gallery-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--ink);
}

/*
  First video is 4:3 in a wider stage. A lower focal point keeps the room and
  participants centered without changing the video element's layout box.
*/
.gallery-slide video.gallery-video--focus-bottom {
  object-fit: cover;
  object-position: center 92%;
}

.gallery-slide figcaption {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.85rem;
  padding: 1rem 1.15rem 1.35rem;
  font-size: 0.92rem;
}

.gallery-slide figcaption span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
}

.gallery-chrome {
  display: none;
}

.gallery-active-caption {
  display: none;
}

.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.gallery-controls button {
  display: inline-grid;
  min-width: 48px;
  min-height: 48px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease;
}

.gallery-controls button:hover {
  border-color: var(--deep-blue);
  background: var(--ivory);
}

.video-audio-toggle {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 3;
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(245, 241, 233, 0.6);
  border-radius: 999px;
  background: rgba(25, 31, 37, 0.62);
  color: var(--ivory);
  cursor: pointer;
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.video-audio-toggle:hover,
.video-audio-toggle:focus-visible {
  border-color: var(--yellow);
  background: rgba(25, 31, 37, 0.84);
}

.video-audio-toggle:active {
  transform: scale(0.96);
}

.audio-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.video-audio-toggle[data-muted='true'] .audio-icon--unmuted,
.video-audio-toggle[data-muted='false'] .audio-icon--muted {
  display: none;
}

.gallery-controls .gallery-pause {
  display: inline-flex;
  padding-inline: 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.gallery-counter {
  min-width: 4.4rem;
  margin: 0;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-align: center;
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
}

.gallery-thumbnails button {
  min-height: 72px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 0.35rem;
  background: var(--ink);
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease;
}

.gallery-thumbnails button[aria-current='true'] {
  border-color: var(--yellow);
  background: var(--deep-blue);
  opacity: 1;
}

.gallery-thumbnails button:hover,
.gallery-thumbnails button:focus-visible {
  border-color: var(--blue);
  background: #11171d;
}

.gallery-thumbnails span {
  display: grid;
  min-height: 80px;
  place-items: center;
  color: var(--ivory);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.gallery-thumbnails button[aria-current='true'] span {
  color: var(--yellow);
}

.gallery-thumbnails img,
.gallery-thumbnails video {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

/*
  Enhanced: full-width stage framed to 16:9. Videos use contain so mixed
  4:3 / 16:9 sources show the full frame (letterbox/pillarbox on ink).
*/
.js .gallery[data-enhanced='true'] {
  display: block;
  width: 100%;
}

.js .gallery[data-enhanced='true'] .gallery-stage {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  max-height: min(72svh, 720px);
  overflow: hidden;
  touch-action: pan-y;
  background: var(--ink);
  cursor: zoom-in;
}

.js .gallery[data-enhanced='true'] .gallery-enlarge-hint {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: block;
  margin: 0;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(245, 241, 233, 0.42);
  border-radius: 999px;
  background: rgba(25, 31, 37, 0.58);
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  pointer-events: none;
  text-transform: uppercase;
}

.js .gallery[data-enhanced='true'] .gallery-slides {
  position: absolute;
  inset: 0;
  display: block;
  gap: 0;
  background: var(--ink);
}

.js .gallery[data-enhanced='true'] .gallery-slide {
  position: absolute;
  inset: 0;
  display: block;
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  opacity: 0;
  pointer-events: none;
  transition: opacity 480ms var(--ease);
}

.js .gallery[data-enhanced='true'] .gallery-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.js .gallery[data-enhanced='true'] .gallery-slide picture,
.js .gallery[data-enhanced='true'] .gallery-media {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
  background: var(--ink);
}

.js .gallery[data-enhanced='true'] .gallery-slide img,
.js .gallery[data-enhanced='true'] .gallery-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  background: var(--ink);
}

.js .gallery[data-enhanced='true'] .gallery-slide video.gallery-video--focus-bottom {
  object-fit: cover;
  object-position: center 92%;
}

.js .gallery[data-enhanced='true'] .video-audio-toggle {
  display: grid;
  cursor: pointer;
}

/* Enlarged video lightbox — full-viewport shell so backdrop clicks close cleanly */
.gallery-lightbox {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  margin: 0;
  padding: 1rem;
  border: 0;
  background: transparent;
  color: var(--ivory);
}

.gallery-lightbox:focus {
  outline: none;
}

.gallery-lightbox[open] {
  display: grid;
  place-items: center;
}

.gallery-lightbox::backdrop {
  background: rgba(10, 14, 18, 0.82);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
}

.gallery-lightbox-panel {
  display: grid;
  gap: 0.75rem;
  width: min(100%, 1120px);
  padding: 0.85rem 0.85rem 1rem;
  border-radius: 1rem;
  background: #0d1116;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.5rem;
  padding-inline: 0.35rem;
}

.gallery-lightbox-title {
  margin: 0;
  color: rgba(245, 241, 233, 0.92);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.gallery-lightbox-close {
  flex: 0 0 auto;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(245, 241, 233, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ivory);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.1);
}

.gallery-lightbox-frame {
  overflow: hidden;
  border-radius: 0.65rem;
  background: #000;
}

.gallery-lightbox-frame video {
  display: block;
  width: 100%;
  max-height: min(78svh, 820px);
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}

.gallery-lightbox-nav {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
}

.gallery-lightbox-nav button {
  display: inline-grid;
  min-width: 48px;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(245, 241, 233, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ivory);
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease;
}

.gallery-lightbox-nav button:hover,
.gallery-lightbox-nav button:focus-visible {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 720px) {
  .gallery-lightbox {
    padding: 0.55rem;
  }

  .gallery-lightbox-panel {
    padding: 0.7rem 0.7rem 0.85rem;
    border-radius: 0.85rem;
  }

  .gallery-lightbox-frame video {
    max-height: min(70svh, 640px);
  }
}

/* Hide per-slide figcaptions in enhanced mode; chrome caption is the visible one */
.js .gallery[data-enhanced='true'] .gallery-slide figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.js .gallery[data-enhanced='true'] .gallery-chrome {
  display: grid;
  gap: 1rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.15rem var(--gutter) 0;
  background: transparent;
}

.js .gallery[data-enhanced='true'] .gallery-active-caption {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: baseline;
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
}

.js .gallery[data-enhanced='true'] .gallery-active-caption [data-gallery-caption-index] {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
}

.js .gallery[data-enhanced='true'] .gallery-controls {
  justify-content: flex-start;
}

.js .gallery[data-enhanced='true'] .gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* Social links under the filmstrip */
.gallery-social {
  margin-top: clamp(1.4rem, 3vw, 2.25rem);
  padding-bottom: 0.5rem;
}

.gallery-social .kicker {
  margin-bottom: 1rem;
}

.gallery-social-row {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  gap: 1rem;
}

.gallery-social-card {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: 100%;
  gap: 1rem;
  align-items: center;
  min-height: 88px;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.gallery-social-card:hover,
.gallery-social-card:focus-visible {
  border-color: var(--deep-blue);
  background: #fff;
  box-shadow: 0 10px 28px rgba(25, 31, 37, 0.08);
  transform: translateY(-1px);
}

.gallery-social-card--wide {
  min-height: 102px;
}

.gallery-social-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 999px;
  background: var(--ivory);
  color: var(--deep-blue);
}

.gallery-social-copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.gallery-social-name {
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.gallery-social-hint {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.gallery-social-arrow {
  color: var(--deep-blue);
  font-size: 1.15rem;
  font-weight: 700;
}

.video-slot-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.people-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: var(--ink);
}

/* About */
.about-purpose,
.audience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 9vw, 9rem);
}

#purpose {
  padding-bottom: clamp(4.25rem, 7vw, 7rem);
}

.people-section {
  padding-block: clamp(4.5rem, 7vw, 7.5rem);
  background: #edf3f6;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.people-section .section-heading {
  margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

.audience-list,
.boundary-list,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-list li {
  padding: 1.1rem 0;
  border-top: 1px solid var(--border-light);
}

.audience-list li:last-child {
  border-bottom: 1px solid var(--border-light);
}

.value-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-template-areas: 'clarity respect practice' 'inclusion inclusion autonomy';
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.value {
  min-height: 250px;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.value:nth-child(1) {
  grid-area: clarity;
}
.value:nth-child(2) {
  grid-area: respect;
  background: var(--yellow);
}
.value:nth-child(3) {
  grid-area: practice;
}
.value:nth-child(4) {
  grid-area: inclusion;
  background: var(--blue);
  color: var(--paper);
}
.value:nth-child(5) {
  grid-area: autonomy;
}

.value p {
  margin-bottom: 0;
  color: var(--muted);
}

.value:nth-child(4) p {
  color: var(--paper);
}

.founder-profile {
  display: grid;
  grid-template-columns: minmax(13rem, 0.7fr) 1fr;
  gap: 2rem;
}

.people-credential {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--ink);
  background: var(--paper);
}

.people-credential--lead {
  background: var(--deep-blue);
  color: var(--ivory);
}

.people-credential--lead .kicker,
.people-credential--lead p {
  color: var(--ivory);
}

.people-credential h3 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
}

.people-credential p:last-child {
  margin-bottom: 0;
}

.artist-list {
  font-weight: 700;
  line-height: 1.75;
}

.founder-profile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

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

.boundary-box {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(2rem, 7vw, 7rem);
  padding: clamp(2rem, 5vw, 5rem);
  border: 1px solid var(--ink);
  background: var(--paper);
}

.boundary-list li {
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

/* Contact */
.contact-hero {
  position: relative;
  box-sizing: border-box;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  padding-block: clamp(1.25rem, 2.5vw, 2.5rem);
  overflow: hidden;
  background: var(--deep-blue);
  color: var(--ivory);
}

.contact-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(28rem, 0.72fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.contact-hero h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.65rem, 4.8vw, 4.7rem);
}

.contact-hero .lede {
  margin-bottom: 0;
  color: rgba(245, 241, 233, 0.82);
}

.contact-directory {
  background: var(--ivory);
  color: var(--ink);
  box-shadow: 0 22px 60px rgba(25, 31, 37, 0.22);
}

.contact-directory-heading {
  padding: clamp(1.15rem, 2vw, 1.8rem);
  border-bottom: 1px solid var(--ink);
}

.contact-directory-heading h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
}

.contact-directory-heading p:last-child {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--muted);
}

.contact-hub {
  border: 1px solid var(--ink);
  background: var(--paper);
}

.contact-status {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: clamp(1.75rem, 3.5vw, 3rem);
}

.contact-status > span {
  width: 0.8rem;
  height: 0.8rem;
  margin-top: 0.4rem;
  border: 2px solid var(--deep-blue);
  border-radius: 50%;
}

.contact-status h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
}

.contact-status p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-action {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
}

.contact-action span {
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-action strong {
  text-align: right;
  overflow-wrap: anywhere;
}

.contact-action--primary {
  grid-column: 1 / -1;
  min-height: 96px;
  background: var(--yellow);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  font-weight: 750;
}

.contact-action--whatsapp {
  min-height: 78px;
  background: #e5f5ec;
  font-size: 1rem;
}

.contact-action--social {
  grid-column: 1 / -1;
  min-height: 60px;
  font-size: 0.86rem;
}

.contact-prep {
  padding-block: clamp(2rem, 4vw, 3.5rem);
  background: var(--yellow);
}

.prep-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: center;
}

.prep-strip h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.prep-strip p:last-child {
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

/* 404 */
.not-found-page {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  padding: var(--gutter);
  background: var(--deep-blue);
  color: var(--ivory);
}

.not-found-card {
  width: min(100%, 1000px);
  min-width: 0;
  padding: clamp(2rem, 7vw, 7rem);
  border: 1px solid var(--border-light);
}

.not-found-code {
  display: block;
  margin-bottom: 3rem;
  color: var(--yellow);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 250;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.not-found-card h1 {
  max-width: 14ch;
}

/* Footer */
.site-footer {
  padding: clamp(4rem, 7vw, 6.5rem) 0 1.5rem;
  background: var(--ink);
  color: var(--ivory);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.9fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding-bottom: 4rem;
}

.site-footer .brand {
  z-index: 0;
  color: var(--ivory);
}

.footer-statement {
  max-width: 30rem;
  margin-top: 2rem;
  color: rgba(245, 241, 233, 0.72);
}

.footer-label {
  margin-bottom: 1rem;
  color: var(--yellow);
}

.footer-links {
  display: grid;
}

.footer-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  color: rgba(245, 241, 233, 0.62);
  font-size: 0.78rem;
}

/* Progressive reveal */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 480ms var(--ease),
    transform 480ms var(--ease);
}

.js [data-reveal].is-visible,
.visual-test [data-reveal] {
  opacity: 1;
  transform: none;
}

.js .hero-enter {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 480ms var(--ease),
    transform 600ms var(--ease);
}

.js .page-ready .hero-enter,
.visual-test .hero-enter {
  opacity: 1;
  transform: none;
}

/* Responsive navigation and layout */
@media (max-width: 1279px) {
  .desktop-nav {
    gap: 0.95rem;
  }

  .pathway-list li {
    gap: 0.7rem;
    padding-left: 1rem;
  }

  .pathway-list a {
    width: 40px;
    height: 40px;
  }

  .header-cta {
    min-width: 166px;
    margin-left: 1rem;
  }
}

@media (max-width: 1023px) {
  :root {
    --header-height: 82px;
  }

  .site-header,
  .site-header.is-condensed {
    z-index: 120;
    height: var(--header-height);
    background: var(--paper);
  }

  .header-inner,
  .site-header.is-condensed .header-inner {
    width: 100%;
    height: var(--header-height);
    padding-inline: var(--gutter);
    border: 0;
    border-radius: 0;
    background: var(--paper);
    box-shadow: none;
    transform: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .gallery-social-row {
    grid-template-columns: 1fr;
  }

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

  .mobile-menu {
    display: block;
  }

  .site-header .brand {
    z-index: 80;
  }

  .mobile-menu summary {
    position: relative;
    z-index: 240;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: var(--ivory);
    cursor: pointer;
    list-style: none;
    transition:
      background-color 180ms ease,
      border-color 180ms ease,
      transform 180ms ease;
  }

  .mobile-menu[open] summary {
    border-color: var(--deep-blue);
    background: var(--deep-blue);
  }

  .mobile-menu[open] summary:active {
    transform: scale(0.96);
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .menu-icon {
    position: relative;
    display: block;
    width: 21px;
    height: 16px;
  }

  .menu-icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transform-origin: center;
    transition:
      top 240ms var(--ease),
      transform 240ms var(--ease),
      opacity 120ms ease;
  }

  .menu-icon span:nth-child(1) {
    top: 0;
  }
  .menu-icon span:nth-child(2) {
    top: 7px;
  }
  .menu-icon span:nth-child(3) {
    top: 14px;
  }

  .mobile-menu[open] .menu-icon span:nth-child(1) {
    top: 7px;
    background: var(--ivory);
    transform: rotate(45deg);
  }
  .mobile-menu[open] .menu-icon span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu[open] .menu-icon span:nth-child(3) {
    top: 7px;
    background: var(--ivory);
    transform: rotate(-45deg);
  }

  .mobile-menu-panel {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    justify-content: flex-start;
    gap: clamp(1.15rem, 3vh, 2rem);
    padding: clamp(5.8rem, 10vh, 6.8rem) max(var(--gutter), calc((100vw - 720px) / 2)) 2rem;
    overflow-y: auto;
    background: linear-gradient(145deg, var(--paper) 0%, var(--ivory) 58%, #eee7dc 100%);
  }

  .mobile-menu-brand {
    display: flex;
    width: 100%;
    align-items: center;
    align-self: stretch;
    justify-content: flex-start;
    margin-bottom: clamp(0.45rem, 1.7vh, 1rem);
  }

  .mobile-menu-brand::after {
    height: 1px;
    flex: 1 1 auto;
    margin-left: 1rem;
    background: linear-gradient(90deg, rgba(36, 80, 129, 0.42), rgba(36, 80, 129, 0));
    content: '';
  }

  .mobile-menu-brand img {
    display: block;
    width: clamp(118px, 32vw, 140px);
    height: auto;
    max-height: 84px;
    object-fit: contain;
  }

  .mobile-menu-panel nav {
    display: grid;
    gap: clamp(0.65rem, 1.8vh, 1rem);
  }

  .mobile-menu-panel .nav-link {
    min-height: clamp(62px, 8.2vh, 72px);
    align-items: center;
    justify-content: space-between;
    padding: 0.2rem 0.95rem 0.2rem 1rem;
    border: 1px solid rgba(25, 31, 37, 0.11);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.74);
    font-size: clamp(1.45rem, 5.8vw, 2.05rem);
    font-weight: 610;
    letter-spacing: -0.025em;
    text-transform: none;
    transition:
      background-color 160ms ease,
      border-color 160ms ease,
      color 160ms ease,
      transform 160ms ease;
  }

  .mobile-menu-panel .nav-link:hover,
  .mobile-menu-panel .nav-link:focus-visible {
    border-color: rgba(36, 80, 129, 0.32);
    background: var(--paper);
    color: var(--deep-blue);
  }

  .mobile-menu-panel .nav-link:active {
    transform: translateY(1px);
  }

  .mobile-menu-panel .nav-link::after {
    position: static;
    right: auto;
    bottom: auto;
    left: auto;
    width: 0.62rem;
    height: 0.62rem;
    flex: 0 0 auto;
    opacity: 0;
    transform: scale(0.4);
  }

  .mobile-menu-panel .nav-link[aria-current='page'] {
    border-color: var(--deep-blue);
    background: var(--deep-blue);
    color: var(--ivory);
  }

  .mobile-menu-panel .nav-link[aria-current='page']::after {
    opacity: 1;
    transform: scale(1);
  }

  .home-stage {
    margin-bottom: 0;
  }

  .goal-panel {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1.2fr 1fr;
    margin: -1.5rem var(--gutter) 0;
  }

  .goal-next {
    grid-column: 1 / -1;
  }

  .goal-next::before {
    top: 0;
    right: 1.5rem;
    bottom: auto;
    left: 1.5rem;
    width: auto;
    height: 1px;
  }

  .formats-section {
    padding-top: 5rem;
  }

  .formats-heading-row,
  .brand-partners-layout,
  .gallery-intro,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .brand-partners-copy h2 {
    max-width: 13ch;
  }

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

  .pathway-list li:nth-child(odd) {
    border-left: 0;
  }

  .gallery-intro .eyebrow,
  .gallery-intro h1,
  .gallery-intro .lede {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-intro {
    gap: 0;
  }

  .gallery-intro h1 {
    margin-bottom: 0.75rem;
  }

  .program-panels,
  .format-columns {
    grid-template-columns: 1fr;
  }

  .program-panel,
  .format-column {
    min-height: auto;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .program-panel:first-child,
  .format-column:first-child {
    border-top: 0;
  }

  .program-panel .pathway-number,
  .format-column .pathway-number {
    margin-bottom: 2rem;
  }

  .js .program-spotlight[data-enhanced='true'] {
    grid-template-columns: 12.5rem minmax(0, 1fr);
  }

  .spotlight-details {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .spotlight-details > div,
  .spotlight-details > div:first-child {
    padding: 1.1rem 0;
    border-top: 1px solid currentColor;
    border-left: 0;
  }

  .comparison-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    border: 0;
  }

  .comparison-table > div {
    min-height: auto;
    border: 1px solid var(--border);
  }

  .contact-hero-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-intro {
    max-width: 46rem;
  }
}

@media (max-width: 767px) {
  :root {
    --gutter: clamp(1rem, 5vw, 1.5rem);
    --section-space: clamp(4.5rem, 18vw, 6rem);
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .brand-logo {
    width: 92px;
    max-height: 36px;
  }

  .home-hero-grid,
  .split-hero,
  .gallery-hero-inner,
  .contact-hero-grid,
  .contact-hero-shell {
    grid-template-columns: 1fr;
  }

  .home-hero-grid,
  .split-hero {
    min-height: auto;
  }

  .home-hero-copy,
  .split-hero-copy {
    padding: 4rem var(--gutter);
  }

  .home-hero-media,
  .split-hero-media {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .home-hero-copy .hero-secondary {
    width: max-content;
    max-width: 100%;
    align-self: center;
    justify-content: center;
    margin-inline: auto;
    text-align: center;
    white-space: nowrap;
  }

  .goal-panel {
    grid-template-columns: 1fr;
    margin: -1rem 0.75rem 0;
  }

  .goal-selector,
  .goal-recommendations,
  .goal-next {
    padding: 1.5rem 1rem;
  }

  .goal-recommendations::before,
  .goal-next::before {
    top: 0;
    right: 1rem;
    bottom: auto;
    left: 1rem;
    width: auto;
    height: 1px;
  }

  .goal-next {
    grid-column: auto;
  }

  .goal-tab {
    min-height: 64px;
    padding-inline: 0.25rem;
    font-size: 0.74rem;
  }

  .formats-section {
    padding-top: 4.5rem;
  }

  .pathway-list {
    grid-template-columns: 1fr;
  }

  .pathway-list li,
  .pathway-list li:first-child {
    min-height: 76px;
    padding-left: 0;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .pathway-list li:last-child {
    border-bottom: 1px solid var(--border);
  }

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

  .brand-logo-card {
    min-height: 7rem;
  }

  .brand-logo-card img {
    height: 42px;
    max-width: min(82%, 10rem);
  }

  .brand-logo-card--aditya img {
    height: 52px;
    max-width: min(86%, 8.75rem);
  }

  .brand-logo-card--hero img {
    height: 58px;
    max-width: min(84%, 7.25rem);
  }

  .gallery-preview-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .preview-image,
  .preview-image--main {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .closing-band,
  .about-purpose,
  .audience-layout,
  .boundary-box,
  .contact-layout,
  .prep-strip,
  .video-slot-layout,
  .people-layout {
    grid-template-columns: 1fr;
  }

  .people-credential {
    min-height: auto;
  }

  .js .program-spotlight[data-enhanced='true'] {
    display: block;
  }

  .js .program-spotlight[data-enhanced='true'] .program-spotlight-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 0.9rem;
    overflow: hidden;
    scroll-snap-type: none;
  }

  .program-spotlight-tabs button {
    min-width: 0;
    min-height: 70px;
    grid-template-columns: 1.8rem minmax(0, 1fr);
    gap: 0.6rem;
    padding: 0.85rem 0.75rem;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    font-size: 0.88rem;
    line-height: 1.2;
    scroll-snap-align: start;
  }

  .program-spotlight-tabs button:nth-child(-n + 2) {
    border-top: 0;
  }

  .program-spotlight-tabs button:nth-child(odd) {
    border-left: 0;
  }

  .js .program-spotlight[data-enhanced='true'] .program-spotlight-stage,
  .js .program-spotlight[data-enhanced='true'] .program-spotlight-panel,
  .program-spotlight-panel {
    min-height: 560px;
  }

  .program-spotlight-panel {
    padding: 1.5rem;
  }

  .spotlight-ghost {
    opacity: 0.1;
  }

  .spotlight-title h3 {
    max-width: 9ch;
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 0.98;
  }

  .spotlight-details {
    margin-top: 2rem;
  }

  .comparison-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    border: 0;
  }

  .comparison-table > div {
    min-height: auto;
    border: 1px solid var(--border);
    background: var(--paper);
  }

  .comparison-table .comparison-label {
    margin-top: 0.7rem;
    padding: 0.75rem 1rem;
    background: var(--ink);
    color: var(--paper);
  }

  .comparison-table .comparison-label:first-child {
    margin-top: 0;
  }

  .comparison-value {
    padding: 1rem;
  }

  .comparison-table dt {
    margin-bottom: 0.45rem;
    font-size: 0.72rem;
  }

  .comparison-table dd {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .comparison-table .comparison-label {
    background: var(--ink);
  }

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

  .js .gallery[data-enhanced='true'] .gallery-stage {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: min(58svh, 520px);
  }

  .js .gallery[data-enhanced='true'] .gallery-chrome {
    gap: 0.85rem;
    padding: 1rem var(--gutter) 0;
  }

  .js .gallery[data-enhanced='true'] .gallery-controls {
    width: 100%;
  }

  .js .gallery[data-enhanced='true'] .gallery-pause {
    margin-left: auto;
  }

  .js .gallery[data-enhanced='true'] .gallery-thumbnails {
    display: flex;
    gap: 0.45rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .js .gallery[data-enhanced='true'] .gallery-thumbnails button {
    min-height: 56px;
    flex: 1 0 58px;
    scroll-snap-align: start;
  }

  .js .gallery[data-enhanced='true'] .gallery-thumbnails img {
    height: 56px;
  }

  .js .gallery[data-enhanced='true'] .gallery-thumbnails span {
    min-height: 56px;
  }

  .contact-hero {
    min-height: calc(100svh - var(--header-height));
    align-items: start;
    padding-block: 1.5rem;
  }

  .contact-hero-shell {
    gap: 1.15rem;
  }

  .contact-hero h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .contact-directory-heading,
  .contact-status {
    padding: 1.15rem;
  }

  .contact-directory-heading h2 {
    margin-bottom: 0.55rem;
    font-size: clamp(1.35rem, 6.5vw, 2rem);
  }

  .contact-directory-heading p:last-child {
    font-size: 0.95rem;
    line-height: 1.45;
  }

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

  .contact-action,
  .contact-action--primary,
  .contact-action--whatsapp,
  .contact-action--social {
    min-height: 58px;
    padding: 0.68rem 0.9rem;
    font-size: 0.86rem;
  }

  .contact-action--primary {
    grid-column: 1 / -1;
    min-height: 66px;
  }

  .contact-action--social {
    grid-column: 1 / -1;
    min-height: 54px;
  }

  .contact-action strong {
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .value-grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .value:nth-child(n) {
    grid-area: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .home-hero-copy .action-row {
    width: min(100%, 24rem);
    align-items: stretch;
    flex-direction: column;
    gap: 0.95rem;
  }

  .home-hero-copy .action-row .button,
  .home-hero-copy .hero-secondary {
    width: 100%;
  }

  .home-hero-copy .hero-secondary {
    justify-content: center;
    min-height: 52px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .home-stage {
    margin-bottom: clamp(5.5rem, 8vw, 6.5rem);
    padding-bottom: clamp(6.5rem, 8vw, 7rem);
  }
}

@media (max-width: 479px) {
  .mobile-menu-panel {
    padding-top: 5.5rem;
  }

  .mobile-menu-panel .nav-link {
    min-height: 64px;
  }

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

  .action-row .button {
    width: 100%;
  }

  .js .gallery[data-enhanced='true'] .gallery-pause {
    font-size: 0.72rem;
    padding-inline: 0.85rem;
  }

  .js .gallery[data-enhanced='true'] .gallery-active-caption {
    font-size: 0.88rem;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-height: 540px) and (orientation: landscape) and (max-width: 1023px) {
  .mobile-menu-panel {
    justify-content: flex-start;
    padding-top: 4.5rem;
  }

  .mobile-menu-panel .nav-link {
    min-height: 48px;
    font-size: 1.4rem;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-condensed .header-inner {
    background: var(--ivory);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (forced-colors: active) {
  .site-header.is-condensed .header-inner {
    border: 2px solid CanvasText;
    background: Canvas;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-link[aria-current='page'] {
    text-decoration: underline;
  }
}

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

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

  .js [data-reveal],
  .js .hero-enter {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .gallery-controls,
  .gallery-thumbnails {
    display: none !important;
  }
}
