@font-face {
  font-family: "Glacial Indifference";
  src: url("fonts/GlacialIndifference-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Glacial Indifference";
  src: url("fonts/GlacialIndifference-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --unl-red: #d00000;
  --unl-red-dark: #8f0018;
  --unl-accent: #ffffff;
  --charcoal: #211b19;
  --charcoal-soft: #3b302d;
  --cream: #f4efe6;
  --paper: #f8f7f3;
  --ink: #211b19;
  --line: rgba(33, 27, 25, 0.16);
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
}

* { box-sizing: border-box; }

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

body,
button,
input,
select,
textarea {
  margin: 0;
  font-family: "Glacial Indifference", "Avenir Next", Avenir, Arial, sans-serif;
}

body {
  color: var(--ink);
  background: var(--paper);
}

body.modal-open { overflow: hidden; }

button,
a { font: inherit; }

a { color: inherit; }

button { color: inherit; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(1.25rem, 2.8vw, 2.75rem) var(--page-pad);
  color: white;
  background: var(--unl-red-dark);
}

.hero__image,
.hero__wash {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
  filter: contrast(1.02) saturate(0.94);
  opacity: 1;
  transform: scale(1.01);
}

.hero__wash {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(92, 0, 12, 0.18) 0%, rgba(180, 0, 0, 0.06) 58%, rgba(92, 0, 12, 0) 100%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.08) 0%, rgba(18, 18, 18, 0.02) 48%, rgba(16, 16, 16, 0.72) 100%);
}

.site-header,
.hero__content,
.hero__scroll {
  position: relative;
  z-index: 2;
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.site-logo {
  display: block;
  width: clamp(4.75rem, 7vw, 6.6rem);
  flex: 0 0 auto;
  border-radius: 0.8rem;
  overflow: hidden;
  line-height: 0;
  text-decoration: none;
}

.site-logo img { display: block; width: 100%; height: auto; }

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  padding-top: 0.5rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.site-nav a,
.text-link,
.page-footer__links a,
.page-footer__links button {
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.site-nav a:hover,
.text-link:hover,
.page-footer__links a:hover,
.page-footer__links button:hover { text-decoration: underline; text-underline-offset: 0.28em; }

.hero__content {
  align-self: center;
  width: 100%;
  max-width: 100rem;
  padding: clamp(4rem, 8vh, 7rem) 0 clamp(3rem, 6vh, 5.5rem);
}

.section-label {
  margin: 0 0 1.2rem;
  font-size: clamp(0.68rem, 0.8vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.17em;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(4rem, 10.5vw, 10.4rem);
  line-height: 0.79;
  letter-spacing: -0.058em;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 span { display: block; }

.hero__outline {
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.1vw, 2px) white;
}

.hero__subhead {
  max-width: 42rem;
  margin: clamp(1.55rem, 3vw, 2.4rem) 0 0;
  font-size: clamp(1.03rem, 1.45vw, 1.38rem);
  line-height: 1.45;
}

.hero__actions,
.resources__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: 0.86rem 1.2rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.085em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button--light { border-color: white; background: white; color: var(--charcoal); }
.button--ghost { background: transparent; color: white; }
.button--ghost:hover { background: white; color: var(--charcoal); }

.hero__scroll {
  justify-self: end;
  padding-bottom: 0.15rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
}

.belief,
.training,
.beneficiary,
.year,
.leadership,
.resources {
  padding: clamp(3.75rem, 6vw, 6.5rem) var(--page-pad);
}

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

.belief > h2,
.section-heading h2,
.activation h2,
.resources h2 {
  margin: 0;
  font-size: clamp(3.35rem, 8.2vw, 8.8rem);
  line-height: 0.84;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.belief > h2 { max-width: 13ch; }
.belief > h2 em { color: var(--unl-red); font-weight: 400; }

.belief__copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 7vw, 8rem);
  max-width: 76rem;
  margin: clamp(2.25rem, 4vw, 4.25rem) 0 0 auto;
  font-size: clamp(1.12rem, 1.7vw, 1.55rem);
  line-height: 1.55;
}

.belief__copy p { margin: 0; }

.training {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(3rem, 10vw, 12rem);
  align-items: end;
  color: var(--ink);
  background: white;
  border-top: 1px solid var(--line);
}

.training__copy h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7.5rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.training__copy > p:last-child {
  max-width: 46rem;
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  line-height: 1.5;
}

.training__copy a {
  color: var(--unl-red);
  font-weight: 700;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.training__logo {
  display: block;
  width: clamp(7.5rem, 10vw, 10rem);
  padding: 1.1rem;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 180ms ease;
}

.training__logo:hover { transform: translateY(-3px); }
.training__logo img { display: block; width: 100%; height: auto; }

.training__partners {
  width: clamp(12rem, 18vw, 17rem);
  display: grid;
  gap: 0.85rem;
}

.training__partner-logo {
  min-height: 7rem;
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  background: white;
  text-decoration: none;
  transition: transform 180ms ease;
}

.training__partner-logo:hover { transform: translateY(-3px); }
.training__partner-logo img { display: block; max-width: 100%; max-height: 7rem; object-fit: contain; }
.training__partner-logo--caps img { width: 7rem; }
.training__partner-logo--bryan img { width: 100%; }

.beneficiary {
  display: grid;
  grid-template-columns: minmax(11rem, 0.4fr) minmax(0, 1.6fr);
  gap: clamp(2.5rem, 8vw, 9rem);
  align-items: center;
  color: var(--ink);
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.beneficiary__logo {
  display: grid;
  place-items: center;
  min-height: 11rem;
  padding: 2rem;
  background: white;
  border: 1px solid var(--line);
  transition: transform 180ms ease;
}

.beneficiary__logo:hover { transform: translateY(-3px); }
.beneficiary__logo img { display: block; width: min(100%, 12rem); height: auto; }

.beneficiary__copy h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.8rem, 6.2vw, 6.6rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.beneficiary__copy h2 a { text-decoration: none; }
.beneficiary__copy h2 a:hover { color: var(--unl-red); }

.beneficiary__copy > p:last-child {
  max-width: 48rem;
  margin: clamp(1.75rem, 3vw, 2.8rem) 0 0;
  font-size: clamp(1.08rem, 1.6vw, 1.45rem);
  line-height: 1.5;
}

.activation {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(22rem, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  padding: clamp(3.75rem, 6vw, 6rem) var(--page-pad);
  color: white;
  background: var(--charcoal);
}

.activation::after {
  content: "";
  position: absolute;
  inset: auto -14rem -24rem auto;
  width: 44rem;
  height: 44rem;
  border: 9rem solid rgba(208, 0, 0, 0.42);
  border-radius: 50%;
}

.activation__signal {
  color: var(--unl-red);
  font-size: clamp(8rem, 22vw, 23rem);
  line-height: 0.75;
  letter-spacing: -0.1em;
  font-weight: 700;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: 0.92;
}

.activation__content { position: relative; z-index: 1; max-width: 60rem; }
.activation h2 { max-width: 7ch; }
.activation__content > p:not(.section-label) { max-width: 38rem; font-size: clamp(1.08rem, 1.7vw, 1.45rem); line-height: 1.55; }
.section-label--light { color: white; }
.text-link { display: inline-block; margin-top: 2rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.11em; }

.year { background: var(--cream); }

.section-heading { margin-bottom: clamp(2.5rem, 4vw, 4.25rem); }
.section-heading h2 { max-width: 12ch; }

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.timeline li {
  position: relative;
  min-height: 14.5rem;
  padding: 1.65rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline li::before {
  content: "";
  position: absolute;
  top: -0.34rem;
  left: 2rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--unl-accent);
}

.timeline__date { display: block; margin-bottom: 2.8rem; color: var(--unl-red); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.13em; }
.timeline strong { display: block; font-size: clamp(1.3rem, 2vw, 2rem); line-height: 1; }
.timeline p { max-width: 16rem; margin: 0.8rem 0 0; line-height: 1.42; }

.leadership { color: white; background: var(--unl-red); }
.leadership .section-label { color: white; }

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
  gap: clamp(2rem, 8vw, 10rem);
  align-items: end;
}

.section-heading--split > p { margin: 0 0 0.45rem; font-size: clamp(1rem, 1.5vw, 1.3rem); line-height: 1.5; }

.presidents {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 64rem;
  margin-bottom: clamp(2.25rem, 4vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.presidents--single { grid-template-columns: minmax(0, 1fr); max-width: 32rem; }

.roster { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-left: 1px solid rgba(255, 255, 255, 0.24); }

.team-groups { border-top: 1px solid rgba(255, 255, 255, 0.55); }

.team-group { border-bottom: 1px solid rgba(255, 255, 255, 0.38); }

.team-group summary {
  position: relative;
  min-height: 5.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 2rem;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  list-style: none;
  cursor: pointer;
  font-size: clamp(1.35rem, 2.4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.team-group summary::-webkit-details-marker { display: none; }
.team-group summary small { font-size: 0.68rem; letter-spacing: 0.12em; }
.team-group summary::after { content: "+"; justify-self: end; font-size: 2rem; font-weight: 400; line-height: 1; }
.team-group[open] summary::after { content: "−"; }
.team-group[open] summary { color: var(--cream); }
.team-group .roster { margin-bottom: 1.5rem; }

.leader {
  min-height: 10.5rem;
  display: grid;
  grid-template-columns: minmax(5.5rem, 7.5rem) minmax(0, 1fr);
  gap: 1rem;
  align-items: end;
  padding: 1rem 1rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: var(--unl-red);
  overflow: hidden;
}

.leader--president { position: relative; min-height: 14rem; grid-template-columns: minmax(8rem, 12rem) minmax(0, 1fr); }
.leader--president h3 { font-size: clamp(1.45rem, 2.5vw, 2.5rem); }

.leader__bio-button {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  min-height: 2.75rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: white;
  background: rgba(0, 59, 122, 0.84);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.leader__bio-button:hover { background: white; color: var(--unl-red-dark); }
.leader__bio-button:focus-visible { outline: 3px solid white; outline-offset: 3px; }

.leader__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  background: var(--unl-red);
  font-size: clamp(2.8rem, 5vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.07em;
}

.leader > .leader__details,
.leader > div:last-child { min-width: 0; padding-bottom: 1rem; }
.leader__photo img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.leader__photo--portrait img { object-fit: cover; object-position: center center; }
.leader__photo--bodie img { object-position: center 58%; }
.leader__photo--carson img { object-position: center 56%; }
.leader__photo--nathan img { object-position: center 55%; }
.leader__photo--luke img { object-position: center 54%; }
.leader__photo--sam img { object-position: center 55%; }
.leader__photo--vince img { object-position: center 55%; }
.leader__photo--noah img { object-position: center 55%; }
.leader__photo--cooper img { object-position: center 54%; }
.leader__photo--charlie img { object-position: center 54%; }
.leader__photo--emmett img { object-position: center 55%; }
.leader__photo--elliott img { object-position: center 55%; }
.leader__photo--brett img {
  object-position: center bottom;
  filter: brightness(1.12);
  transform: none;
}
.leader__photo--carson img,
.leader__photo--cooper img,
.leader__photo--vince img { filter: brightness(.98); }
.leader__photo--noah img { filter: brightness(1.05); }
.leader__photo--charlie img,
.leader__photo--luke img { filter: brightness(1.08); }
.leader__photo--emmett img { filter: brightness(1.14); }
.leader__photo--nathan img { filter: brightness(1.28); }
.leader h3 { margin: 0; font-size: clamp(1.05rem, 1.5vw, 1.45rem); line-height: 1; }
.leader p { margin: 0.55rem 0 0; font-size: 0.67rem; line-height: 1.3; letter-spacing: 0.08em; }
.leader p span { display: block; margin-top: 0.35rem; }

.resources {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
  gap: clamp(2rem, 8vw, 10rem);
  align-items: end;
  color: white;
  background: var(--charcoal);
}

.resources h2 { max-width: 8ch; }
.resources__copy > p { margin: 0; font-size: clamp(1.12rem, 1.8vw, 1.55rem); line-height: 1.5; }

.page-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem var(--page-pad);
  color: var(--ink);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-logo--footer { width: 4.6rem; border: 1px solid rgba(33, 27, 25, 0.12); }
.page-footer__links { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.09em; }
.page-footer > p { margin: 0; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.11em; }

.modal-shell { position: fixed; inset: 0; z-index: 50; background: var(--cream); }
.modal-shell[hidden] { display: none; }

.support-screen {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 100svh;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 10%, rgba(208, 0, 0, 0.09), transparent 26rem),
    radial-gradient(circle at 4% 92%, rgba(208, 0, 0, 0.055), transparent 22rem),
    var(--cream);
  animation: screen-in 420ms cubic-bezier(.2, .82, .2, 1) both;
}

.support-screen:focus { outline: none; }

.support-screen__inner {
  width: min(100%, 92rem);
  min-height: 100%;
  margin: 0 auto;
  padding: max(1.4rem, env(safe-area-inset-top)) max(1.4rem, env(safe-area-inset-right)) max(1.4rem, env(safe-area-inset-bottom)) max(1.4rem, env(safe-area-inset-left));
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(2rem, 5vh, 4.5rem);
}

.support-screen__header { display: flex; align-items: center; gap: 0.8rem; padding-right: 4rem; }
.support-screen__mark { width: 3.6rem; height: 0.38rem; border-radius: 999px; background: linear-gradient(90deg, var(--unl-red) 0 64%, var(--unl-accent) 64% 100%); }
.support-screen__label { margin: 0; color: var(--unl-red); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.18em; }

.modal-close {
  position: fixed;
  top: max(1.15rem, env(safe-area-inset-top));
  right: max(1.15rem, env(safe-area-inset-right));
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(33, 27, 25, 0.18);
  border-radius: 999px;
  background: rgba(244, 239, 230, 0.9);
  color: var(--charcoal);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.modal-close span { font-size: 2rem; line-height: 1; transform: translateY(-0.06em); }
.modal-close:hover:not(:disabled) { transform: rotate(4deg) scale(1.04); background: white; }
.modal-close:disabled { opacity: 0.26; cursor: wait; }

.button:focus-visible,
.modal-close:focus-visible,
.support-action:focus-visible,
a:focus-visible { outline: 3px solid rgba(208, 0, 0, 0.7); outline-offset: 3px; }

.support-screen__body { align-self: center; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.8fr); gap: clamp(2.5rem, 8vw, 9rem); align-items: center; padding: 1rem 0; }
.support-screen h2 { margin: 0; max-width: 11ch; font-size: clamp(3.8rem, 7.6vw, 8.7rem); line-height: 0.9; letter-spacing: -0.06em; }
.support-screen__details { max-width: 36rem; }
.support-screen__copy { font-size: clamp(1.08rem, 1.7vw, 1.38rem); line-height: 1.5; }
.support-screen__copy p { margin: 0 0 1rem; }
.support-screen__copy p:last-child { margin-bottom: 0; }
.support-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }

.support-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.82rem 1.15rem;
  border: 1px solid rgba(33, 27, 25, 0.22);
  border-radius: 999px;
  color: var(--charcoal);
  background: transparent;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.support-action--primary { border-color: var(--charcoal); background: var(--charcoal); color: white; }
.support-action:hover { transform: translateY(-2px); background: white; }
.support-action--primary:hover { background: var(--charcoal-soft); color: white; }
.support-screen__time { margin: 1.2rem 0 0; color: rgba(33, 27, 25, 0.55); font-size: 0.75rem; letter-spacing: 0.04em; }
.support-screen__footer { max-width: 56rem; padding-top: 1.15rem; border-top: 1px solid rgba(33, 27, 25, 0.15); }
.support-screen__emergency { margin: 0; font-size: 0.78rem; line-height: 1.4; font-weight: 700; }
.support-screen__disclaimer { margin: 0.58rem 0 0; color: rgba(33, 27, 25, 0.62); font-size: 0.64rem; line-height: 1.4; }

.noscript-note { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 100; padding: 1rem; border-radius: 0.75rem; background: white; color: black; font-size: 0.9rem; }

.bio-dialog {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1rem;
  overflow: auto;
  color: white;
  background: rgba(33, 27, 25, 0.8);
  backdrop-filter: blur(7px);
}

.bio-dialog[hidden] { display: none; }
.bio-dialog__panel {
  position: relative;
  width: min(52rem, 100%);
  max-height: min(48rem, calc(100svh - 2rem));
  padding: clamp(1.4rem, 4vw, 3.5rem);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 1.25rem;
  background: var(--unl-red);
  box-shadow: 0 2rem 7rem rgba(33, 27, 25, 0.42);
}
.bio-dialog .section-label { margin-bottom: 1.1rem; padding-right: 3.5rem; }
.bio-dialog h2 { margin: 0; font-size: clamp(3.25rem, 9vw, 7rem); line-height: 0.82; letter-spacing: -0.06em; }
.bio-dialog__copy { max-width: 42rem; margin-top: clamp(1.5rem, 4vw, 2.5rem); font-size: clamp(1rem, 1.7vw, 1.25rem); line-height: 1.5; }
.bio-dialog__copy p { margin: 0 0 1rem; }
.bio-dialog__copy p:last-child { margin-bottom: 0; }
.bio-dialog__close { position: absolute; top: 1rem; right: 1rem; display: grid; place-items: center; width: 2.9rem; height: 2.9rem; padding: 0; border: 1px solid rgba(255, 255, 255, 0.62); border-radius: 50%; color: white; background: transparent; cursor: pointer; }
.bio-dialog__close span { font-size: 1.9rem; line-height: 1; transform: translateY(-0.05em); }
.bio-dialog__close:hover { color: var(--unl-red-dark); background: white; }
.bio-dialog__close:focus-visible { outline: 3px solid white; outline-offset: 3px; }

@keyframes screen-in { from { opacity: 0; transform: scale(1.01); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 980px) {
  .roster { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .activation { grid-template-columns: minmax(10rem, 0.55fr) minmax(0, 1.45fr); }
  .page-footer { grid-template-columns: auto 1fr; }
  .page-footer > p { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .site-header { align-items: center; }
  .site-nav a:not(:last-child) { display: none; }
  .hero { min-height: 112svh; }
  .hero__image {
    inset: clamp(5.25rem, 11vh, 6.5rem) 0 auto;
    width: 100%;
    height: min(40svh, 23rem);
    object-fit: contain;
    object-position: center center;
    transform: none;
  }
  .hero__content { align-self: end; padding: clamp(14rem, 38svh, 21rem) 0 clamp(1.25rem, 3vh, 2rem); }
  .hero h1 { max-width: 100%; font-size: clamp(2.65rem, 13vw, 5.25rem); line-height: 0.82; }
  .hero__outline { width: fit-content; max-width: 100%; font-size: 1em; white-space: nowrap; }
  .hero__subhead { max-width: 28rem; }
  .hero__scroll { justify-self: start; }
  .belief__copy,
  .training,
  .beneficiary,
  .section-heading--split,
  .resources { grid-template-columns: 1fr; }
  .training__partners { width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .training__partner-logo { min-height: 7.5rem; }
  .activation { min-height: auto; grid-template-columns: 1fr; }
  .activation__signal { writing-mode: initial; transform: none; font-size: clamp(7rem, 30vw, 13rem); }
  .activation h2 { font-size: clamp(4rem, 18vw, 7rem); }
  .timeline { grid-template-columns: 1fr; }
  .timeline li { min-height: 15rem; }
  .roster { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .presidents {
    max-width: none;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
    border-left: 0;
  }
  .leader--president {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: var(--unl-red);
  }
  .leader--president .leader__photo {
    align-self: end;
    margin: 0;
    background: var(--unl-red);
  }
  .leader--president > .leader__details {
    width: 100%;
    padding: 0.75rem 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }
  .leader--president h3 { font-size: clamp(1rem, 4.5vw, 1.35rem); }
  .leader--president p { font-size: 0.63rem; }
  .leader__bio-button { top: 0.55rem; right: 0.55rem; min-height: 2.75rem; padding: 0.55rem 0.7rem; font-size: 0.75rem; }
  .team-group summary {
    min-height: 4.5rem;
    grid-template-columns: minmax(0, 1fr) auto 2rem;
    gap: 0.75rem;
    padding: 0.85rem 0.25rem;
    font-size: clamp(1.15rem, 5vw, 1.75rem);
    line-height: 1.05;
  }
  .team-group summary::after {
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    font-size: 1.3rem;
  }
  .team-group[open] summary {
    margin-bottom: 0.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }
  .team-group .roster {
    gap: 0;
    margin-bottom: 1rem;
    border-left: 0;
  }
  .team-group .leader {
    min-height: 8.75rem;
    grid-template-columns: minmax(5.5rem, 6.5rem) minmax(0, 1fr);
    align-items: end;
    padding: 0.7rem 0.25rem 0;
    border-right: 0;
    background: var(--unl-red);
  }
  .team-group .leader__photo {
    align-self: end;
    margin-bottom: -1px;
    background: var(--unl-red);
  }
  .team-group .leader > div:last-child { padding-bottom: 0.75rem; }
  .page-footer { grid-template-columns: 1fr; align-items: start; }
  .page-footer__links { justify-content: flex-start; }
  .support-screen__body { align-self: start; grid-template-columns: 1fr; gap: 1.8rem; padding-top: 0.8rem; }
  .support-screen h2 { max-width: 9.5ch; font-size: clamp(3.35rem, 15vw, 5.8rem); }
  .support-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .support-action:first-child:nth-last-child(3) { grid-column: 1 / -1; }
  .support-action { width: 100%; }
}

@media (max-width: 430px) {
  .hero__actions,
  .resources__actions { display: grid; }
  .button { width: 100%; }
  .belief > h2,
  .section-heading h2,
  .resources h2 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .presidents { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .presidents--single { grid-template-columns: 1fr; max-width: 100%; }
  .roster { grid-template-columns: 1fr; }
  .team-group .leader { min-height: 7.9rem; grid-template-columns: 5.75rem minmax(0, 1fr); }
  .team-group summary { min-height: 4rem; grid-template-columns: minmax(0, 1fr) 2rem; font-size: 1.1rem; }
  .team-group summary small { display: none; }
  .support-screen h2 { font-size: clamp(2.85rem, 14.5vw, 4rem); }
  .support-screen__copy { font-size: 0.98rem; line-height: 1.43; }
  .support-action { min-height: 3rem; padding: 0.72rem 0.75rem; font-size: 0.78rem; }
  .bio-dialog { padding: 0.5rem; }
  .bio-dialog__panel { width: 100%; max-height: calc(100svh - 1rem); padding: 1.25rem; border-radius: 0.9rem; }
  .bio-dialog h2 { font-size: clamp(3rem, 16vw, 4.5rem); }
  .bio-dialog__copy { font-size: 1rem; line-height: 1.45; }
}

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