:root {
  --warm-white: #fbf8f1;
  --paper: #fffdf8;
  --seafoam: #a8c9bf;
  --seafoam-deep: #5f9489;
  --sky: #7fcbd2;
  --coral: #ef5326;
  --coral-dark: #b74734;
  --sunshine: #e9c86d;
  --stone: #b8aa98;
  --ink: #26333a;
  --muted: #69767b;
  --line: rgba(38, 51, 58, 0.14);
  --shadow: 0 24px 80px rgba(38, 51, 58, 0.13);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--ink);
  font-family: Nunito, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

.site-shell {
  overflow: visible;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 40px), var(--max));
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 22px;
  background-color: rgba(239, 83, 38, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -1px 0 rgba(116, 31, 16, 0.2);
  backdrop-filter: blur(22px) saturate(1.65) contrast(1.04);
  transition: transform 0.35s ease, background 0.35s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04) 46%, transparent);
  pointer-events: none;
  mix-blend-mode: screen;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  opacity: 1;
  pointer-events: none;
  mask-image: none;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.site-header.is-scrolled {
  background-color: rgba(239, 83, 38, 0.82);
  transform: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
}

.brand img {
  width: 54px;
  height: auto;
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.desktop-nav {
  justify-content: center;
}

.desktop-nav a,
.utility-link {
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.desktop-nav a:hover,
.utility-link:hover {
  color: #fff;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.icon-button span {
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 999px;
  position: relative;
}

.icon-button span::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  right: -6px;
  bottom: -3px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 2px;
}

.section-band {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 1.06fr);
  gap: 58px;
  align-items: start;
  min-height: 660px;
  padding: 54px 0 72px;
  position: relative;
}

.hero-copy {
  max-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 18px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 56px auto auto -120px;
  width: 440px;
  height: 440px;
  border-radius: 46% 54% 58% 42%;
  background: rgba(168, 201, 191, 0.27);
  z-index: -1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Nunito, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 570px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 3.42vw, 3.55rem);
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(2rem, 3.05vw, 3.18rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  font-weight: 600;
  line-height: 1.5;
}

.hero-support,
.text-stack p,
.bridge-copy p,
.careers-copy p {
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.button.primary {
  background: var(--coral);
  color: #fff;
  box-shadow: none;
}

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

.button.secondary {
  border: 1px solid rgba(38, 51, 58, 0.24);
  background: rgba(255, 255, 255, 0.45);
}

.hero-media {
  position: relative;
  padding: 18px 0 62px 26px;
}

.media-frame {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  border-radius: 160px 8px 160px 8px;
  clip-path: inset(0 round 160px 8px 160px 8px);
  border: 1px solid rgba(239, 83, 38, 0.12);
  box-shadow: var(--shadow);
  background: var(--seafoam);
  isolation: isolate;
  transform: translateZ(0);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  clip-path: inherit;
  background: linear-gradient(180deg, rgba(38, 51, 58, 0.04), rgba(38, 51, 58, 0.22));
  mix-blend-mode: multiply;
}

.media-frame img,
.hero-video {
  width: 100%;
  height: 510px;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.96);
}

.hero-video {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  clip-path: inset(0 round 160px 8px 160px 8px);
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.5s ease, transform 0.8s ease;
}

.hero-video.is-active {
  opacity: 1;
  transform: scale(1);
}

.slider-controls {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.slider-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(239, 83, 38, 0.82);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 12px 30px rgba(38, 51, 58, 0.18);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.slider-arrow:hover {
  background: var(--coral);
  transform: translateY(-2px);
}

.slider-dots {
  position: absolute;
  left: 132px;
  bottom: 38px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.slider-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.25s ease, background 0.25s ease;
}

.slider-dots span.is-active {
  width: 24px;
  background: #fff;
}

.quick-access {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - 40px), var(--max));
  margin: -16px auto 96px;
  border: 1px solid rgba(220, 98, 72, 0.18);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: none;
  overflow: hidden;
}

.access-item {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid rgba(220, 98, 72, 0.18);
  transition: background 0.25s ease, transform 0.25s ease;
}

.access-item:last-child {
  border-right: 0;
}

.access-item:hover {
  background: rgba(220, 98, 72, 0.09);
  transform: translateY(-4px);
}

.access-icon,
.step-icon,
.program-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--coral);
  box-shadow: 0 12px 30px rgba(220, 98, 72, 0.22);
}

.access-icon,
.program-icon {
  box-shadow: none;
}

.access-icon::before,
.step-icon::before,
.program-icon::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
}

.access-icon::after,
.step-icon::after,
.program-icon::after {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 9px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--sunshine);
}

.access-icon::before,
.access-icon::after {
  display: none;
}

.access-icon svg {
  display: block;
  width: 30px;
  height: 30px;
  overflow: visible;
}

.access-icon circle,
.access-icon rect,
.access-icon path {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-provider::before,
.step-guide::before,
.speech-icon::before {
  width: 24px;
  height: 16px;
  border-radius: 12px 12px 4px 12px;
}

.icon-partner::before,
.step-connect::before,
.ot-icon::before {
  width: 24px;
  height: 24px;
  border-radius: 6px 18px 18px 18px;
}

.icon-careers::before,
.step-grow::before,
.parent-icon::before {
  width: 22px;
  height: 22px;
  border-radius: 999px 999px 4px 4px;
}

.access-item > span:not(.access-icon),
.research-list span {
  display: block;
  margin-bottom: 18px;
  font-weight: 800;
}

.access-item p,
.process-step p,
.program-card p,
.research-list p,
.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.manifesto,
.process,
.bridge-feature,
.programs,
.outcomes,
.research,
.partnerships,
.careers {
  padding: 96px 0 54px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 70px;
  align-items: start;
}

.text-stack {
  display: grid;
  gap: 20px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 48px;
}

.process {
  position: relative;
}

.process-line {
  display: none;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 0 auto;
  padding-left: 0;
  justify-content: center;
  align-items: stretch;
}

.program-card,
.metric-card {
  border: 1px solid rgba(220, 98, 72, 0.18);
  background: rgba(255, 253, 248, 0.78);
}

.process-step {
  position: relative;
  display: flex;
  aspect-ratio: auto;
  min-height: 360px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 92px 8px 92px 8px;
  clip-path: inset(0 round 92px 8px 92px 8px);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.72)), var(--step-bg);
  background-position: center;
  background-size: cover;
  box-shadow: 0 24px 70px rgba(38, 51, 58, 0.14);
  color: #fff;
  isolation: isolate;
  transform: translateZ(0);
}

.process-step span {
  display: block;
  margin-bottom: 54px;
  color: #fff;
  font-family: Nunito, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  font-size: 2.9rem;
  line-height: 0.9;
}

.process-step h3 {
  color: #fff;
}

.process-step p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  line-height: 1.45;
}

.bridge-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: center;
}

.bridge-board {
  position: relative;
  min-height: 500px;
  overflow: visible;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  perspective: 1100px;
}

.bridge-board::before,
.bridge-board::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.bridge-board::before {
  left: 50%;
  top: 50%;
  width: min(62%, 310px);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(239, 83, 38, 0.24);
  border-radius: 999px;
  transform: translate(-50%, -50%) rotateX(62deg);
}

.bridge-board::after {
  left: 50%;
  top: 50%;
  width: min(42%, 220px);
  aspect-ratio: 1 / 1;
  border: 1px dashed rgba(95, 148, 137, 0.34);
  border-radius: 999px;
  transform: translate(-50%, -50%) rotateX(62deg);
}

.bridge-map {
  position: relative;
  z-index: 2;
  min-height: 500px;
  transform-style: preserve-3d;
}

.bridge-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 152px;
  min-height: 106px;
  padding: 15px 14px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px 44px 8px 44px;
  background: var(--node-color, var(--coral));
  box-shadow: none;
  text-align: center;
  transform-style: preserve-3d;
  animation-duration: 24s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.bridge-node strong {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.04;
}

.bridge-node span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.24;
  max-width: 118px;
}

.node-center {
  left: 50%;
  top: 50%;
  width: 150px;
  min-height: 150px;
  padding: 18px 16px;
  place-content: center;
  border-radius: 999px;
  background: var(--coral);
  text-align: center;
  transform: translate(-50%, -50%);
  animation: none;
}

.family-icon {
  width: 44px;
  height: auto;
  margin-bottom: 7px;
  overflow: visible;
}

.family-icon circle,
.family-icon path {
  fill: none;
  stroke: #fff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/*
  Reserved option: branded TLC-logo silhouette as the central BRIDGE shape.
  To restore it, replace .node-center with a transparent container and apply:
  .node-center::before {
    content: "";
    position: absolute;
    inset: -8px;
    z-index: -1;
    background: var(--coral);
    mask: url("https://tlcpediatric.org/wp-content/uploads/2024/08/TLC_Logo-1.png") center / contain no-repeat;
    -webkit-mask: url("https://tlcpediatric.org/wp-content/uploads/2024/08/TLC_Logo-1.png") center / contain no-repeat;
  }
*/

.node-center strong,
.node-center span {
  color: #fff;
  text-shadow: 0 1px 2px rgba(116, 31, 16, 0.28);
}

.node-screening {
  --node-color: var(--seafoam-deep);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg) translateX(145px) rotate(0deg);
  animation-name: orbitIdentify;
}

.node-guidance {
  --node-color: #c98473;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(90deg) translateX(145px) rotate(-90deg);
  animation-name: orbitGuide;
}

.node-care {
  --node-color: var(--sunshine);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(180deg) translateX(145px) rotate(-180deg);
  animation-name: orbitCoordinate;
}

.node-outcomes {
  left: 50%;
  top: 50%;
  --node-color: #8d8171;
  transform: translate(-50%, -50%) rotate(270deg) translateX(145px) rotate(-270deg);
  animation-name: orbitEmpower;
}

@keyframes orbitIdentify {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateX(145px) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg) translateX(145px) rotate(-360deg);
  }
}

@keyframes orbitGuide {
  from {
    transform: translate(-50%, -50%) rotate(90deg) translateX(145px) rotate(-90deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(450deg) translateX(145px) rotate(-450deg);
  }
}

@keyframes orbitCoordinate {
  from {
    transform: translate(-50%, -50%) rotate(180deg) translateX(145px) rotate(-180deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(540deg) translateX(145px) rotate(-540deg);
  }
}

@keyframes orbitEmpower {
  from {
    transform: translate(-50%, -50%) rotate(270deg) translateX(145px) rotate(-270deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(630deg) translateX(145px) rotate(-630deg);
  }
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--coral-dark);
  font-weight: 800;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.program-card {
  min-height: 230px;
  padding: 28px;
  border-radius: 24px;
  background: #fffdf8;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.program-card:hover {
  border-color: rgba(220, 98, 72, 0.28);
  background: rgba(255, 253, 248, 0.98);
  transform: translateY(-4px);
}

.program-card:hover .program-icon {
  transform: scale(1.04);
}

.program-card:nth-child(2) {
  background: #fffdf8;
}

.program-card:nth-child(3) {
  background: #fffdf8;
}

.outcomes {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: start;
}

.outcome-metrics {
  display: grid;
  gap: 16px;
}

.metric-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px;
}

.metric-card strong {
  color: var(--coral);
  font-family: Nunito, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.1;
}

.metric-card span {
  color: var(--muted);
  font-weight: 700;
}

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

.research-list a {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) 1fr;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.research-list a:hover span {
  color: var(--coral-dark);
}

.partnerships-layout {
  display: grid;
  gap: 34px;
  width: 100%;
  margin: 0 auto;
}

.partnerships-heading {
  width: min(calc(100% - 40px), 760px);
  margin: 0 auto;
  text-align: center;
}

.partnerships-heading .eyebrow {
  justify-content: center;
}

.partner-cloud {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.partner-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: partnerMarquee 24s linear infinite;
}

.partner-cloud span {
  flex: 0 0 auto;
  min-width: 150px;
  padding: 13px 20px;
  border: 2px solid var(--partner-color, var(--coral));
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.64);
  color: var(--partner-color, var(--coral));
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.partner-cloud span:nth-child(7n + 1) {
  --partner-color: var(--coral);
}

.partner-cloud span:nth-child(3n + 2) {
  --partner-color: var(--sky);
}

.partner-cloud span:nth-child(3n) {
  --partner-color: var(--sunshine);
}

.partner-cloud span:nth-child(3n + 1) {
  --partner-color: var(--coral);
}

.partner-cloud:hover .partner-track {
  animation-play-state: paused;
}

@keyframes partnerMarquee {
  from {
    transform: translateX(calc(-50% - 6px));
  }

  to {
    transform: translateX(0);
  }
}

.careers {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(320px, 0.72fr);
  gap: 60px;
  align-items: center;
}

.careers-media {
  overflow: hidden;
  border-radius: 8px 130px 8px 130px;
  box-shadow: var(--shadow);
}

.careers-media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: saturate(0.76) contrast(0.98);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(220px, 0.72fr) minmax(180px, 0.45fr);
  gap: 72px;
  width: min(calc(100% - 40px), var(--max));
  min-height: 360px;
  margin: 42px auto 40px;
  padding: 64px 58px;
  border-top: 0;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 42%),
    var(--coral);
  color: #fff;
  box-shadow: 0 -18px 70px rgba(183, 71, 52, 0.13);
}

.site-footer img {
  width: 102px;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 390px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.footer-menu h3,
.footer-social h3 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-menu nav {
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.82);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
  font-size: 0.78rem;
}

.social-links svg {
  width: 20px;
  height: 20px;
  overflow: visible;
}

.social-links rect,
.social-links circle,
.social-links path {
  fill: none;
  stroke: #fff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a[aria-label="Facebook"] path {
  fill: #fff;
  stroke: none;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.24);
}

.reveal,
.scroll-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
  will-change: opacity, transform;
}

.reveal.is-visible,
.scroll-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.program-card.reveal.is-visible {
  transition: opacity 0.72s ease, transform 0.72s ease, background 0.25s ease, border-color 0.25s ease;
}

.program-card.reveal.is-visible:hover {
  transform: translateY(-4px);
}

.delay-1 {
  transition-delay: 0.12s;
}

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

  .desktop-nav {
    display: none;
  }

  .header-actions {
    justify-content: end;
  }

  .hero,
  .bridge-feature,
  .outcomes,
  .careers,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 72px;
  }

  .hero-media {
    padding-left: 0;
  }

  .quick-access,
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .access-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .process-step {
    min-height: 0;
  }

  .process-step span {
    margin-bottom: 22px;
  }
}

@media (max-width: 680px) {
  .site-header,
  .section-band,
  .quick-access,
  .site-footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    gap: 14px;
    margin-top: 12px;
    padding: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand span,
  .utility-link {
    display: none;
  }

  .hero {
    gap: 34px;
    padding: 84px 0 54px;
  }

  h1 {
    max-width: 360px;
    font-size: 2.42rem;
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(2.15rem, 9.5vw, 3.05rem);
    line-height: 1.06;
  }

  .hero-lede {
    font-size: 1rem;
  }

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

  .media-frame,
  .media-frame img {
    min-height: 440px;
    height: 440px;
  }

  .media-frame {
    border-radius: 92px 8px 92px 8px;
    clip-path: inset(0 round 92px 8px 92px 8px);
  }

  .quick-access,
  .program-grid,
  .site-footer,
  .research-list a,
  .metric-card {
    grid-template-columns: 1fr;
  }

  .quick-access {
    margin-bottom: 54px;
  }

  .access-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .access-item:last-child {
    border-bottom: 0;
  }

  .manifesto,
  .process,
  .bridge-feature,
  .programs,
  .outcomes,
  .research,
  .partnerships,
  .careers {
    padding: 64px 0;
  }

  .process-line {
    display: none;
  }

  .process-grid {
    margin-top: 0;
    padding-left: 0;
  }

  .bridge-board {
    min-height: 470px;
  }

  .bridge-board::before,
  .bridge-board::after {
    display: none;
  }

  .bridge-map {
    display: grid;
    gap: 12px;
    min-height: 0;
  }

  .bridge-node,
  .node-center,
  .node-screening,
  .node-guidance,
  .node-care,
  .node-outcomes {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 0;
    transform: none;
  }

  .careers-media img {
    height: 370px;
  }

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