@font-face {
  font-family: "Geist";
  src: url("../fonts/Geist-Latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --font-geist-sans: "Geist";
  --navy: #071b3d;
  --navy-deep: #04142f;
  --navy-soft: #0d2852;
  --green: #138a58;
  --green-dark: #0e7249;
  --green-light: #9bd8b9;
  --mint: #e6f2eb;
  --paper: #f4f6f2;
  --paper-warm: #eeefe9;
  --white: #ffffff;
  --ink: #0c1d35;
  --muted: #596678;
  --line: rgba(7, 27, 61, 0.14);
  --line-light: rgba(255, 255, 255, 0.17);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-is-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--green-light);
  outline-offset: 4px;
}

section {
  scroll-margin-top: 72px;
}

.medicheck-site {
  min-width: 320px;
  overflow: clip;
}

.page-shell {
  width: min(100% - 96px, 1440px);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(110px, 10vw, 176px);
}

.section-index {
  margin: 0;
  color: var(--green);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-index-light {
  color: var(--green-light);
}

.image-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #dce2dc;
}

.image-frame img {
  width: 100%;
  height: calc(100% + 6%);
  object-fit: cover;
  will-change: transform;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: clamp(28px, 4.5vw, 72px);
  color: var(--white);
  transition: height 0.35s ease, color 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: transparent;
  transition: background-color 0.35s ease;
}

.site-header.is-scrolled {
  height: 74px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 35px rgba(4, 20, 47, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-scrolled::after {
  background: rgba(7, 27, 61, 0.08);
}

.brand {
  position: relative;
  width: 188px;
  height: 42px;
  display: block;
}

.brand img {
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
}

.brand-on-light,
.site-header.is-scrolled .brand-on-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-on-light {
  opacity: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 520;
  letter-spacing: -0.01em;
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
  opacity: 0.86;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

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

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 640;
  transition: color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.header-cta:hover {
  color: var(--white);
  background: var(--green);
  transform: translateY(-1px);
}

.header-cta-mobile {
  display: none;
}

.site-header.is-scrolled .header-cta {
  color: var(--white);
  background: var(--navy);
}

.site-header.is-scrolled .header-cta:hover {
  background: var(--green);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.25s ease;
}

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

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 22px 30px;
  background: var(--paper);
  color: var(--navy);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu nav {
  display: grid;
  margin: auto 0;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(27px, 8vw, 42px);
  letter-spacing: -0.04em;
}

.mobile-menu nav span {
  width: 24px;
  color: var(--green);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.mobile-menu-cta {
  width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: max(720px, 100svh);
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy);
}

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

.hero-media {
  z-index: -3;
  overflow: hidden;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  transform-origin: center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 20, 47, 0.91) 0%, rgba(4, 20, 47, 0.78) 31%, rgba(4, 20, 47, 0.26) 67%, rgba(4, 20, 47, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 20, 47, 0.36) 0%, rgba(4, 20, 47, 0) 45%);
}

.hero-content {
  padding-top: 82px;
}

.hero-kicker {
  margin: 0 0 28px;
  color: var(--green-light);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(58px, 6.25vw, 104px);
  font-weight: 430;
  line-height: 0.94;
  letter-spacing: -0.062em;
}

.hero-title-line {
  display: block;
}

.hero .accent-line {
  color: #a7dfc3;
}

.hero-copy {
  max-width: 590px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.48;
  letter-spacing: -0.018em;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 25px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 640;
  transition: transform 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

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

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

.button-light:hover {
  background: #e5f2eb;
}

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

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

.text-link {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 520;
}

.text-link::after {
  content: "";
  position: absolute;
  inset: auto 0 3px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform 0.24s ease;
}

.text-link:hover::after {
  transform: scaleX(0.65);
}

.hero-discover {
  position: absolute;
  left: clamp(28px, 4.5vw, 72px);
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-discover i {
  position: relative;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.hero-discover i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green-light);
  transform: translateX(-100%);
  animation: discoverLine 2.4s 1.1s ease-in-out infinite;
}

@keyframes discoverLine {
  0%, 20% { transform: translateX(-100%); }
  58%, 100% { transform: translateX(100%); }
}

.reframe-section {
  min-height: 180vh;
  color: var(--navy);
  background: var(--paper);
}

.reframe-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.reframe-layout {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(0, 4fr);
  gap: 46px;
  align-items: start;
}

.reframe-layout h2 {
  max-width: 1150px;
  margin: 0;
  font-size: clamp(58px, 7.2vw, 116px);
  font-weight: 430;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.reframe-layout h2 span {
  display: block;
}

.reframe-feeling {
  color: var(--navy);
}

.reframe-decision {
  margin-top: 0.28em;
  color: var(--green);
}

.reframe-copy {
  max-width: 560px;
  margin: 54px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.48;
  letter-spacing: -0.025em;
}

.reveal-section {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(0, 3fr);
  gap: 46px;
  align-items: start;
  margin-bottom: clamp(72px, 8vw, 124px);
}

.section-heading h2,
.experience-intro h2,
.locations-heading h2 {
  max-width: 950px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(50px, 6.25vw, 98px);
  font-weight: 440;
  line-height: 0.98;
  letter-spacing: -0.062em;
}

.section-heading > div > p,
.experience-intro > p:last-child {
  max-width: 610px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.5;
  letter-spacing: -0.022em;
}

.reveal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.reveal-main-image {
  min-height: 740px;
}

.reveal-main-image figcaption {
  position: absolute;
  inset: auto 22px 18px;
  z-index: 2;
  color: var(--white);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reveal-main-image::after {
  content: "";
  position: absolute;
  inset: 60% 0 0;
  background: linear-gradient(0deg, rgba(4, 20, 47, 0.54), transparent);
}

.reveal-side {
  display: grid;
  grid-template-rows: 0.92fr 1.08fr;
  gap: 22px;
}

.time-card {
  min-height: 335px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3vw, 48px);
  color: var(--white);
  background: var(--navy);
}

.time-card-label {
  color: var(--green-light);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.time-card strong {
  display: block;
  margin: auto 0 12px;
  font-size: clamp(70px, 7vw, 116px);
  font-weight: 430;
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.time-card p {
  max-width: 290px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.45;
}

.reveal-detail-image {
  min-height: 380px;
}

.principles-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 68px;
  border-top: 1px solid var(--line);
}

.principles-row div {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 24px 18px 8px 0;
  border-right: 1px solid var(--line);
}

.principles-row div:not(:first-child) {
  padding-left: 24px;
}

.principles-row div:last-child {
  border-right: 0;
}

.principles-row span {
  color: var(--green);
  font-size: 10px;
  font-weight: 680;
}

.principles-row p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(18px, 1.7vw, 24px);
  letter-spacing: -0.025em;
}

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

.experience-intro {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(0, 3fr);
  gap: 24px 46px;
  margin-bottom: clamp(80px, 9vw, 140px);
}

.experience-intro h2,
.experience-intro > p:last-child {
  grid-column: 2;
}

.experience-intro > p:last-child {
  margin-top: 10px;
}

.experience-list {
  display: grid;
  gap: clamp(100px, 11vw, 170px);
}

.experience-moment {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: center;
}

.experience-moment:nth-child(even) {
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.55fr);
}

.experience-moment:nth-child(even) figure {
  grid-column: 2;
  grid-row: 1;
}

.experience-moment:nth-child(even) .experience-moment-copy {
  grid-column: 1;
  grid-row: 1;
}

.experience-moment figure {
  height: min(70vh, 720px);
  min-height: 520px;
}

.experience-moment-copy {
  max-width: 430px;
}

.experience-moment-copy > span {
  display: block;
  width: 38px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--green);
  color: var(--green);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0.12em;
}

.experience-moment h3 {
  margin: 34px 0 0;
  color: var(--navy);
  font-size: clamp(34px, 3.4vw, 55px);
  font-weight: 460;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.experience-moment p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.016em;
}

.programs-section {
  background: var(--white);
}

.programs-heading {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(0, 3fr);
  gap: 46px;
  margin-bottom: clamp(70px, 8vw, 120px);
}

.programs-heading h2 {
  max-width: 1050px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(52px, 6.2vw, 98px);
  font-weight: 440;
  line-height: 0.96;
  letter-spacing: -0.064em;
}

.programs-heading > div > p {
  max-width: 590px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.022em;
}

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

.program-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  z-index: 2;
  border-color: rgba(19, 138, 88, 0.42);
  box-shadow: 0 26px 80px rgba(7, 27, 61, 0.09);
  transform: translateY(-7px);
}

.program-card.is-featured {
  border-color: rgba(19, 138, 88, 0.48);
  background: var(--white);
}

.program-image {
  height: 315px;
}

.program-image::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(0deg, rgba(4, 20, 47, 0.35), transparent);
}

.program-badge {
  position: absolute;
  inset: 18px auto auto 18px;
  z-index: 2;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(19, 138, 88, 0.92);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.program-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 2.8vw, 42px);
}

.program-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.program-topline span,
.program-topline p {
  margin: 0;
  color: var(--green);
  font-size: 9px;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-topline p {
  color: var(--muted);
  text-align: right;
}

.program-card h3 {
  margin: 30px 0 0;
  color: var(--navy);
  font-size: clamp(28px, 2.35vw, 38px);
  font-weight: 620;
  line-height: 1;
  letter-spacing: -0.048em;
}

.program-card h4 {
  margin: 22px 0 0;
  color: var(--navy);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 460;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.program-copy {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.program-card ul {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.program-card li {
  position: relative;
  padding-left: 18px;
  color: var(--navy);
  font-size: 13px;
}

.program-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.program-cta {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: auto;
  padding-top: 36px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 650;
}

.program-cta span {
  transition: transform 0.2s ease;
}

.program-cta:hover span {
  transform: translate(3px, -3px);
}

.program-help {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  margin-top: 38px;
  padding: 34px 38px;
  color: var(--navy);
  background: var(--mint);
}

.program-help span {
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.program-help p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.trust-section {
  position: relative;
  color: var(--white);
  background: var(--navy-deep);
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 25%, rgba(19, 138, 88, 0.12), transparent 32%);
}

.trust-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(64px, 9vw, 150px);
  align-items: center;
}

.trust-copy h2 {
  margin: 34px 0 0;
  font-size: clamp(54px, 6.3vw, 98px);
  font-weight: 430;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.trust-copy > p:not(.section-index) {
  max-width: 480px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.52;
}

.backing-statement {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.backing-statement strong {
  white-space: nowrap;
  font-size: clamp(42px, 4.7vw, 72px);
  font-weight: 450;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.backing-statement span {
  max-width: 180px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.35;
}

.light-line-link {
  display: inline-flex;
  gap: 30px;
  margin-top: 44px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.22s ease, border-color 0.22s ease;
}

.light-line-link:hover {
  color: var(--green-light);
  border-color: var(--green-light);
}

.trust-media {
  position: relative;
  min-height: 760px;
}

.trust-main-image {
  position: absolute;
  inset: 0 0 10% 14%;
}

.trust-secondary-image {
  position: absolute;
  inset: 48% 55% 0 0;
  z-index: 2;
  border: 10px solid var(--navy-deep);
}

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

.locations-heading {
  margin-bottom: clamp(70px, 7vw, 110px);
}

.locations-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(330px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.location-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
}

.location-card figure {
  height: 500px;
}

.location-secondary figure {
  height: 390px;
}

.location-badge {
  position: absolute;
  inset: 20px auto auto 20px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 27, 61, 0.88);
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.location-card-body {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 3.1vw, 48px);
}

.location-kicker {
  margin: 0 0 24px;
  color: var(--green);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.location-card h3 {
  max-width: 650px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 460;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.location-secondary h3 {
  font-size: clamp(28px, 2.5vw, 40px);
}

.location-card-body > div > p:last-child {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.location-card-body > a {
  flex: 0 0 auto;
  align-self: flex-end;
  display: flex;
  gap: 20px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  font-size: 14px;
  font-weight: 610;
}

.location-secondary .location-card-body {
  flex-direction: column;
}

.location-secondary .location-card-body > a {
  align-self: flex-start;
}

.desire-section {
  position: relative;
  isolation: isolate;
  min-height: max(760px, 100vh);
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy);
}

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

.desire-media {
  z-index: -3;
  overflow: hidden;
  margin: 0;
}

.desire-media img {
  height: 106%;
  object-fit: cover;
}

.desire-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 20, 47, 0.96) 0%, rgba(4, 20, 47, 0.78) 46%, rgba(4, 20, 47, 0.24) 80%),
    linear-gradient(0deg, rgba(4, 20, 47, 0.65), transparent 55%);
}

.desire-content {
  padding-block: 120px;
}

.desire-content h2 {
  margin: 34px 0 0;
  font-size: clamp(62px, 7.2vw, 116px);
  font-weight: 430;
  line-height: 0.92;
  letter-spacing: -0.068em;
}

.desire-list {
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 1.7vw, 24px);
  letter-spacing: -0.025em;
}

.desire-time {
  max-width: 440px;
  display: grid;
  margin-top: 86px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.desire-time span {
  color: var(--green-light);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desire-time strong {
  margin-top: 12px;
  font-size: clamp(54px, 5vw, 78px);
  font-weight: 440;
  line-height: 1;
  letter-spacing: -0.06em;
}

.desire-time p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
}

.desire-cta {
  margin-top: 38px;
}

.contact-section {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(72px, 10vw, 170px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy h2 {
  margin: 34px 0 0;
  color: var(--navy);
  font-size: clamp(54px, 6vw, 94px);
  font-weight: 440;
  line-height: 0.96;
  letter-spacing: -0.064em;
}

.contact-copy > p:not(.section-index) {
  max-width: 500px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.whatsapp-direct {
  max-width: 500px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 56px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--navy);
}

.whatsapp-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(19, 138, 88, 0.1);
}

.whatsapp-direct span:nth-child(2) {
  display: grid;
  gap: 3px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.whatsapp-direct small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whatsapp-direct b {
  font-weight: 500;
}

.lead-form {
  padding: clamp(30px, 4.2vw, 64px);
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lead-form.is-started {
  border-color: rgba(19, 138, 88, 0.42);
  box-shadow: 0 24px 80px rgba(7, 27, 61, 0.07);
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 26px;
}

.form-field label,
.location-choice legend {
  color: var(--navy);
  font-size: 12px;
  font-weight: 630;
  letter-spacing: -0.005em;
}

.form-field label span {
  color: var(--muted);
  font-weight: 450;
}

.form-field input {
  width: 100%;
  height: 58px;
  padding: 0 2px;
  border: 0;
  border-bottom: 1px solid rgba(7, 27, 61, 0.28);
  border-radius: 0;
  outline: none;
  color: var(--navy);
  background: transparent;
  font-size: 18px;
  transition: border-color 0.2s ease;
}

.form-program {
  margin-bottom: 28px;
}

.form-field select {
  width: 100%;
  height: 58px;
  padding: 0 40px 0 2px;
  border: 0;
  border-bottom: 1px solid rgba(7, 27, 61, 0.28);
  border-radius: 0;
  outline: none;
  color: var(--navy);
  background-color: transparent;
  font-size: 18px;
  font-weight: 580;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.form-field select:focus {
  border-color: var(--green);
}

.form-field input::placeholder {
  color: #9aa2a9;
}

.form-field input:focus {
  border-color: var(--green);
}

.location-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 38px 0 0;
  padding: 0;
  border: 0;
}

.location-choice legend {
  width: 100%;
  margin-bottom: 10px;
}

.location-choice label {
  cursor: pointer;
}

.location-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.location-choice label > span {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 13px;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.location-choice label > span small {
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.location-choice input:checked + span {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

.location-choice input:checked + span small {
  color: var(--green-light);
}

.location-choice input:focus-visible + span {
  outline: 2px solid var(--green-light);
  outline-offset: 3px;
}

.form-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 42px;
}

.form-note {
  max-width: 520px;
  margin: 17px auto 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.site-footer {
  padding: 74px 0 26px;
  color: var(--white);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.75fr;
  gap: 50px;
  padding-bottom: 64px;
}

.footer-brand img {
  width: 190px;
}

.footer-brand p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column > span {
  margin-bottom: 10px;
  color: var(--green-light);
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column p,
.footer-column a {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
  line-height: 1.6;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-backing strong {
  font-size: 36px;
  font-weight: 680;
  letter-spacing: -0.06em;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  justify-self: end;
}

.mobile-conversion {
  display: none;
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 20px;
    font-size: 13px;
  }

  .trust-layout {
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
    gap: 70px;
  }

  .locations-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.8fr);
  }

  .contact-layout {
    gap: 80px;
  }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .reveal-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  }

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

  .location-card figure,
  .location-secondary figure {
    height: 420px;
  }

  .location-card-body {
    flex-direction: column;
  }

  .location-card-body > a {
    align-self: flex-start;
  }

  .contact-layout {
    grid-template-columns: minmax(300px, 0.8fr) minmax(460px, 1.2fr);
    gap: 55px;
  }

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

  .program-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .program-card:first-child .program-image {
    height: auto;
    min-height: 470px;
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 56px, 760px);
  }

  .reframe-section {
    min-height: auto;
    padding-block: 150px;
  }

  .reframe-sticky {
    position: static;
    min-height: 0;
  }

  .reframe-layout,
  .section-heading,
  .experience-intro,
  .programs-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .reframe-layout h2,
  .section-heading > div,
  .experience-intro h2,
  .experience-intro > p:last-child,
  .programs-heading > div {
    grid-column: 1;
  }

  .reframe-layout h2 {
    font-size: clamp(53px, 9.7vw, 82px);
  }

  .reframe-decision {
    opacity: 1 !important;
    transform: none !important;
  }

  .reframe-copy {
    opacity: 1 !important;
    transform: none !important;
  }

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

  .reveal-main-image {
    min-height: 620px;
  }

  .reveal-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .time-card,
  .reveal-detail-image {
    min-height: 380px;
  }

  .experience-moment,
  .experience-moment:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .experience-moment:nth-child(even) figure,
  .experience-moment:nth-child(even) .experience-moment-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .experience-moment:nth-child(even) figure {
    grid-row: 1;
  }

  .experience-moment-copy {
    max-width: 590px;
  }

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

  .program-card:first-child {
    grid-column: auto;
    display: flex;
  }

  .program-card:first-child .program-image,
  .program-image {
    height: 420px;
    min-height: 0;
  }

  .experience-moment figure {
    height: 620px;
  }

  .trust-layout {
    grid-template-columns: 1fr;
    gap: 90px;
  }

  .trust-copy {
    max-width: 650px;
  }

  .trust-media {
    min-height: 680px;
  }

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

  .location-card figure,
  .location-secondary figure {
    height: 560px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 76px;
  }

  .contact-copy {
    position: static;
  }

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

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

  .footer-bottom p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 700px) {
  .page-shell {
    width: calc(100% - 40px);
  }

  .section-pad {
    padding-block: 96px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 64px;
    padding-inline: 16px 10px;
  }

  .brand {
    width: 142px;
    height: 34px;
  }

  .header-actions {
    gap: 4px;
  }

  .header-cta {
    min-height: 39px;
    padding-inline: 15px;
    font-size: 12px;
  }

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

  .header-cta-mobile {
    display: inline;
  }

  .hero {
    min-height: max(720px, 100svh);
    align-items: flex-end;
  }

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

  .hero-shade {
    background: linear-gradient(0deg, rgba(4, 20, 47, 0.97) 0%, rgba(4, 20, 47, 0.87) 43%, rgba(4, 20, 47, 0.26) 76%, rgba(4, 20, 47, 0.14) 100%);
  }

  .hero-content {
    padding: 110px 0 70px;
  }

  .hero-kicker {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 12.1vw, 57px);
    line-height: 0.98;
    letter-spacing: -0.058em;
  }

  .hero-title-line {
    display: inline;
  }

  .hero-title-line::after {
    content: " ";
  }

  .hero-copy {
    max-width: 96%;
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 27px;
  }

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

  .hero-actions .text-link {
    display: none;
  }

  .hero-discover {
    display: none;
  }

  .reframe-section {
    padding-block: 110px;
  }

  .reframe-layout {
    gap: 32px;
  }

  .reframe-layout h2,
  .section-heading h2,
  .experience-intro h2,
  .contact-copy h2 {
    font-size: clamp(44px, 12vw, 60px);
    line-height: 0.98;
  }

  .reframe-decision {
    margin-top: 0.34em;
  }

  .reframe-copy {
    margin-top: 38px;
    font-size: 17px;
  }

  .section-heading,
  .experience-intro,
  .programs-heading {
    gap: 28px;
    margin-bottom: 62px;
  }

  .section-heading > div > p,
  .experience-intro > p:last-child,
  .programs-heading > div > p {
    margin-top: 24px;
    font-size: 17px;
  }

  .reveal-grid {
    gap: 14px;
  }

  .reveal-main-image {
    min-height: 470px;
  }

  .reveal-side {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .time-card {
    min-height: 330px;
  }

  .reveal-detail-image {
    min-height: 360px;
  }

  .principles-row {
    grid-template-columns: 1fr 1fr;
    margin-top: 50px;
  }

  .principles-row div,
  .principles-row div:not(:first-child) {
    padding: 19px 12px 19px 0;
    border-bottom: 1px solid var(--line);
  }

  .principles-row div:nth-child(even) {
    padding-left: 15px;
    border-right: 0;
  }

  .experience-list {
    gap: 92px;
  }

  .programs-heading h2 {
    font-size: clamp(44px, 12vw, 60px);
  }

  .program-image,
  .program-card:first-child .program-image {
    height: 310px;
  }

  .program-card h3 {
    font-size: 31px;
  }

  .program-card h4 {
    font-size: 25px;
  }

  .program-help {
    align-items: stretch;
    flex-direction: column;
    padding: 28px 22px;
  }

  .program-help .button {
    width: 100%;
  }

  .experience-moment figure {
    height: 470px;
    min-height: 0;
  }

  .experience-moment h3 {
    margin-top: 26px;
    font-size: 38px;
  }

  .trust-layout {
    gap: 70px;
  }

  .trust-copy h2 {
    margin-top: 30px;
    font-size: clamp(50px, 13vw, 66px);
  }

  .backing-statement {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 52px;
  }

  .backing-statement span {
    max-width: 250px;
  }

  .trust-media {
    min-height: 520px;
  }

  .trust-main-image {
    inset: 0 0 11% 7%;
  }

  .trust-secondary-image {
    inset: 56% 52% 0 0;
    border-width: 7px;
  }

  .location-card figure,
  .location-secondary figure {
    height: 430px;
  }

  .location-card-body {
    gap: 30px;
    padding: 28px 24px 32px;
  }

  .location-card h3,
  .location-secondary h3 {
    font-size: 34px;
  }

  .desire-section {
    min-height: 820px;
    align-items: flex-end;
  }

  .desire-shade {
    background: linear-gradient(0deg, rgba(4, 20, 47, 0.98) 0%, rgba(4, 20, 47, 0.84) 52%, rgba(4, 20, 47, 0.28) 85%);
  }

  .desire-content {
    padding: 120px 0 86px;
  }

  .desire-content h2 {
    font-size: clamp(51px, 13.8vw, 68px);
  }

  .desire-list {
    line-height: 1.45;
  }

  .desire-time {
    margin-top: 62px;
  }

  .contact-layout {
    gap: 58px;
  }

  .contact-copy > p:not(.section-index) {
    margin-top: 26px;
    font-size: 16px;
  }

  .whatsapp-direct {
    margin-top: 38px;
  }

  .lead-form {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .form-field input {
    font-size: 16px;
  }

  .form-field select {
    font-size: 16px;
  }

  .location-choice {
    display: grid;
  }

  .location-choice label > span {
    width: 100%;
    justify-content: space-between;
  }

  .site-footer {
    padding-top: 58px;
    padding-bottom: 92px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-bottom: 44px;
  }

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

  .mobile-conversion {
    position: fixed;
    inset: auto 12px 12px;
    z-index: 80;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 21px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    color: var(--white);
    background: rgba(7, 27, 61, 0.94);
    box-shadow: 0 14px 36px rgba(4, 20, 47, 0.28);
    font-size: 14px;
    font-weight: 640;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(14px);
  }

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

@media (max-width: 360px) {
  .header-cta {
    display: none;
  }
}

/* 2026 product selector and fluid conversion system */
.programs-section { overflow: hidden; background: linear-gradient(180deg, var(--white), #eef3ef 88%); }
.program-switcher { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; padding: 8px; border: 1px solid rgba(7,27,61,.1); border-radius: 999px; background: rgba(255,255,255,.76); box-shadow: 0 16px 50px rgba(7,27,61,.06); backdrop-filter: blur(16px); }
.program-switcher button { min-width: 0; min-height: 58px; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 0 18px; border: 0; border-radius: 999px; color: var(--navy); background: transparent; cursor: pointer; font-size: 14px; font-weight: 610; letter-spacing: -.018em; transition: color .24s ease, background-color .24s ease, transform .24s ease; }
.program-switcher button span { color: var(--green); font-size: 9px; letter-spacing: .08em; }
.program-switcher button[aria-selected="true"] { color: var(--white); background: var(--navy); box-shadow: 0 10px 26px rgba(7,27,61,.18); }
.program-switcher button[aria-selected="true"] span { color: var(--green-light); }
.program-stage { position: relative; min-height: 670px; overflow: hidden; border-radius: clamp(28px,4vw,58px); color: var(--white); background: var(--navy); box-shadow: 0 34px 100px rgba(7,27,61,.16); }
.program-stage::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 88% 16%, rgba(112,195,157,.14), transparent 32%); }
.program-panel { position: absolute; inset: 0; z-index: 1; display: grid; grid-template-columns: minmax(0,.95fr) minmax(440px,1.05fr); opacity: 0; visibility: hidden; transform: translateY(18px) scale(.995); transition: opacity .46s ease, visibility .46s ease, transform .46s cubic-bezier(.2,.8,.2,1); }
.program-panel.is-active { position: relative; opacity: 1; visibility: visible; transform: none; }
.program-panel-media { position: relative; min-height: 670px; overflow: hidden; margin: 0; }
.program-panel-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(7,27,61,.32)); }
.program-panel-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.025); transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.program-panel.is-active .program-panel-media img { transform: scale(1); }
.program-panel-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: clamp(48px,6vw,94px); }
.program-label { margin: 0; color: var(--green-light); font-size: 10px; font-weight: 680; letter-spacing: .13em; text-transform: uppercase; }
.program-panel h3 { margin: 26px 0 0; color: var(--white); font-size: clamp(42px,4.6vw,72px); font-weight: 520; line-height: .94; letter-spacing: -.062em; }
.program-panel h4 { max-width: 580px; margin: 28px 0 0; color: var(--white); font-size: clamp(25px,2.25vw,34px); font-weight: 440; line-height: 1.08; letter-spacing: -.04em; }
.program-panel-copy > p:not(.program-label) { max-width: 560px; margin: 24px 0 0; color: rgba(255,255,255,.64); font-size: 16px; line-height: 1.55; }
.program-panel ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0 0; padding: 0; list-style: none; }
.program-panel li { padding: 10px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: rgba(255,255,255,.78); font-size: 11px; }
.program-panel .button { align-self: flex-start; margin-top: 38px; color: var(--navy); background: var(--white); }
.program-panel .button:hover { color: var(--white); background: var(--green); }
.program-orientation { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 28px 0 0; color: var(--muted); font-size: 13px; text-align: center; }
.program-orientation a { color: var(--navy); font-weight: 650; }
.journey-section { background: var(--paper-warm); }
.journey-heading { display: grid; grid-template-columns: minmax(150px,1fr) minmax(0,3fr); gap: 46px; margin-bottom: clamp(64px,7vw,108px); }
.journey-heading h2 { max-width: 980px; margin: 0; color: var(--navy); font-size: clamp(52px,6.2vw,98px); font-weight: 440; line-height: .96; letter-spacing: -.064em; }
.journey-heading > div > p { max-width: 560px; margin: 28px 0 0; color: var(--muted); font-size: clamp(18px,1.5vw,22px); line-height: 1.5; }
.journey-media { position: relative; height: min(66vh,680px); min-height: 520px; overflow: hidden; margin: 0; border-radius: clamp(28px,4vw,54px); background: var(--navy); }
.journey-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,20,47,.78), transparent 62%); }
.journey-media img { width: 100%; height: 100%; object-fit: cover; }
.journey-media figcaption { position: absolute; inset: auto clamp(28px,4vw,58px) clamp(28px,4vw,50px); z-index: 2; display: grid; grid-template-columns: auto 1fr; gap: 6px 24px; align-items: end; color: var(--white); }
.journey-media figcaption span { grid-column: 1/-1; color: var(--green-light); font-size: 10px; font-weight: 680; letter-spacing: .13em; text-transform: uppercase; }
.journey-media figcaption strong { font-size: clamp(58px,7vw,104px); font-weight: 430; line-height: .9; letter-spacing: -.07em; }
.journey-media figcaption p { max-width: 230px; margin: 0 0 8px; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.4; }
.journey-steps { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 42px; }
.journey-steps article { min-width: 0; padding: 24px clamp(20px,3vw,44px) 0 0; border-top: 1px solid var(--line); }
.journey-steps article + article { padding-left: clamp(20px,3vw,44px); border-left: 1px solid var(--line); }
.journey-steps span { color: var(--green); font-size: 10px; font-weight: 680; }
.journey-steps h3 { margin: 26px 0 0; color: var(--navy); font-size: clamp(24px,2.4vw,36px); font-weight: 480; line-height: 1.05; letter-spacing: -.04em; }
.journey-steps p { max-width: 330px; margin: 16px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.trust-media { min-height: 690px; }
.trust-main-image { inset: 0 0 0 8%; overflow: hidden; border-radius: clamp(32px,4vw,58px); }
.trust-secondary-image { inset: auto auto 34px 0; width: min(36%,230px); aspect-ratio: .78; overflow: hidden; border: 8px solid var(--navy-deep); border-radius: 999px; }
.locations-grid { gap: 18px; }
.location-card { overflow: hidden; border: 0; border-radius: clamp(28px,3.5vw,48px); box-shadow: 0 26px 80px rgba(7,27,61,.08); }
.location-card figure { overflow: hidden; }
.location-primary { background: var(--navy); }
.location-primary .location-card-body, .location-primary h3, .location-primary .location-card-body > a { color: var(--white); }
.location-primary .location-card-body > div > p:last-child { color: rgba(255,255,255,.62); }
.location-primary .location-card-body > a { border-color: rgba(255,255,255,.55); }
.location-secondary { background: #edf2ee; }
.lead-form { border: 0; border-radius: clamp(28px,3.5vw,46px); background: linear-gradient(145deg,#f4f7f4,#edf2ee); box-shadow: 0 28px 90px rgba(7,27,61,.08); }
.lead-form.is-started { border-color: transparent; box-shadow: 0 32px 100px rgba(7,27,61,.12); }
@media (max-width:900px) {
  .programs-heading, .journey-heading { grid-template-columns: 1fr; gap: 28px; }
  .program-switcher { grid-template-columns: 1fr; border-radius: 30px; }
  .program-switcher button { justify-content: flex-start; padding-inline: 22px; }
  .program-panel { grid-template-columns: 1fr; }
  .program-panel-media { min-height: 430px; }
  .program-panel-copy { padding: 50px 38px 58px; }
  .journey-steps { grid-template-columns: 1fr; }
  .journey-steps article, .journey-steps article + article { padding: 24px 0 28px; border-left: 0; }
  .trust-media { min-height: 560px; }
  .locations-grid { grid-template-columns: 1fr; }
  .location-secondary { display: grid; grid-template-columns: minmax(260px,.75fr) 1fr; }
  .location-secondary figure { height: 100%; min-height: 360px; }
}
@media (max-width:700px) {
  .programs-heading h2, .journey-heading h2 { font-size: clamp(44px,12vw,60px); }
  .program-stage { min-height: 0; border-radius: 28px; }
  .program-panel-media { min-height: 300px; }
  .program-panel-copy { padding: 38px 24px 42px; }
  .program-panel h3 { font-size: 40px; }
  .program-panel h4 { font-size: 25px; }
  .program-panel .button { width: 100%; }
  .program-orientation { align-items: flex-start; flex-direction: column; text-align: left; }
  .journey-media { min-height: 500px; }
  .journey-media figcaption { grid-template-columns: 1fr; }
  .trust-media { min-height: 490px; }
  .trust-main-image { inset: 0 0 0 10%; }
  .trust-secondary-image { width: 150px; }
  .location-secondary { display: flex; }
  .location-card figure, .location-secondary figure { height: 300px; min-height: 0; }
}

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

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