:root {
  --green: #18864b;
  --green-dark: #0d6335;
  --green-deep: #083d22;
  --green-soft: #edf8f0;
  --green-pale: #f6fbf7;
  --ink: #12251a;
  --text: #33483b;
  --muted: #6d7d73;
  --line: #dce9df;
  --white: #ffffff;
  --max: 1280px;
  --pad: clamp(20px, 5vw, 72px);
  --section: clamp(72px, 9vw, 128px);
  --radius-sm: 10px;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

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

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

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 720;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(54px, 7.2vw, 108px);
  line-height: 0.91;
}

h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
}

h3 {
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.12;
}

ul {
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none !important;
}

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

:focus-visible {
  outline: 3px solid rgba(24, 134, 75, 0.3);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--green-deep);
  color: var(--white);
  font-weight: 700;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 74px;
  padding: 12px var(--pad);
  border-bottom: 1px solid rgba(220, 233, 223, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 1 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 11px;
  background: var(--green);
  color: var(--white);
  font-size: 21px;
  font-weight: 800;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 26px);
  font-size: 13px;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 14px !important;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: var(--white);
}

.nav-cta:hover {
  background: var(--green-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.76fr);
  grid-template-areas:
    "copy image"
    "stats image";
  gap: 40px clamp(42px, 6vw, 96px);
  align-items: center;
  max-width: calc(var(--max) + 2 * var(--pad));
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 98px) var(--pad) 42px;
}

.hero-copy {
  grid-area: copy;
  align-self: end;
  max-width: 760px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 780px;
  font-size: clamp(58px, 7vw, 106px);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.hero-title span {
  display: block;
}

.hero .lead {
  max-width: 600px;
  margin-top: 28px;
  color: var(--text);
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  font-weight: 720;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

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

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

.button-ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button-ghost:hover {
  border-color: var(--green);
}

.button span {
  margin-left: 7px;
}

.hero-stage {
  position: relative;
  grid-area: image;
  align-self: stretch;
  min-height: 610px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--green-soft);
}

.hero-portrait {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: 45% center;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(180deg, transparent, rgba(5, 56, 28, 0.78));
  pointer-events: none;
}

.hero-stage-meta {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
}

.hero-stage-meta span {
  font-size: 29px;
  font-weight: 760;
  letter-spacing: -0.05em;
}

.hero-stage-meta p {
  font-size: 12px;
  line-height: 1.35;
  text-align: right;
}

.hero-stats {
  grid-area: stats;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-self: start;
  margin: 0;
  border-top: 1px solid var(--line);
}

.hero-stats div {
  padding: 17px 14px 0 0;
}

.hero-stats div + div {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.hero-stats dt {
  color: var(--green-dark);
  font-size: 27px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.hero-stats dd {
  max-width: 135px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.section {
  padding: var(--section) var(--pad);
}

.section > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.section-white {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.section-soft {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--green-pale);
}

.section-dark {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.78);
}

.section-dark .eyebrow {
  color: #9fe0b8;
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 132px);
  align-items: start;
}

.sticky-head {
  position: sticky;
  top: 112px;
}

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

.wide-head {
  margin-bottom: clamp(40px, 6vw, 72px);
}

.wide-head > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
}

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

.feature-card {
  padding: 25px 0 34px;
  border-top: 1px solid var(--line);
}

.feature-number {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.feature-card h3 {
  margin-top: 24px;
}

.feature-card p {
  margin-top: 12px;
  color: var(--muted);
}

.program-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}

.program-tabs {
  position: sticky;
  top: 108px;
  display: grid;
}

.tab {
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.tab strong,
.tab span {
  display: block;
}

.tab strong {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.tab span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.tab.active {
  color: var(--green-dark);
}

.tab.active strong::before {
  content: "→ ";
  color: var(--green);
}

.program-panel.active {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.program-content {
  padding: clamp(28px, 4vw, 52px);
}

.program-kicker,
.role {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 750;
}

.role {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.program-content h3 {
  margin-top: 15px;
  font-size: clamp(36px, 3.9vw, 54px);
}

.program-content > p:not(.program-kicker) {
  margin-top: 18px;
  color: var(--text);
}

.checks {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  list-style: none;
}

.checks li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 14px;
}

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

.leader-side {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--green-soft);
}

.leader-side-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-panel .leader-side-photo {
  object-position: 30% 50% !important;
}

.leader-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 15px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
}

.leader-badge strong,
.leader-badge span {
  display: block;
}

.leader-badge strong {
  font-size: 15px;
}

.leader-badge span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.research-card {
  min-height: 290px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.research-card > span {
  color: #9fe0b8;
  font-size: 13px;
  font-weight: 800;
}

.research-card h3 {
  margin-top: 70px;
}

.research-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
}

.rector-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  margin-bottom: var(--section);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--green-pale);
}

.rector-card img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
}

.rector-card > div {
  padding: 42px 50px 42px 0;
}

.rector-card h2 {
  margin-bottom: 12px;
}

.rector-card > div > strong {
  color: var(--green-dark);
}

.rector-card blockquote {
  margin: 30px 0 24px;
  color: var(--ink);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 620;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.rector-card > div > p:last-child {
  color: var(--muted);
}

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

.leader-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.leader-card img,
.photo-fallback {
  width: 170px;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.leader-card > div:last-child {
  padding: 24px;
}

.leader-card h3 {
  margin-top: 8px;
}

.leader-card div > p:not(.role) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.leader-card small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.campus-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 120px);
  background: var(--green-soft);
}

.campus-copy p:last-child {
  margin-top: 24px;
  color: var(--text);
  font-size: 17px;
}

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

.metric-card {
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.metric-card > strong {
  color: var(--green);
  font-size: 36px;
  letter-spacing: -0.04em;
}

.metric-card h3 {
  margin-top: 16px;
}

.metric-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.timeline-card {
  min-height: 260px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.timeline-card > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
}

.timeline-card h3 {
  margin-top: 60px;
}

.timeline-card p {
  margin-top: 12px;
  color: var(--muted);
}

.apply-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 0.7fr);
  gap: clamp(48px, 9vw, 140px);
  background: var(--green-deep);
}

.apply-copy .eyebrow {
  color: #9fe0b8;
}

.apply-copy h2,
.apply-copy p {
  color: var(--white);
}

.apply-copy p:last-child {
  max-width: 550px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
}

.apply-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius);
  background: var(--white);
}

.apply-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(24, 134, 75, 0.1);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.5em;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 48px var(--pad);
  background: #052d19;
  color: var(--white);
}

.site-footer > div {
  max-width: 540px;
}

.site-footer strong {
  font-size: 22px;
}

.site-footer p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
}

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

.page-hero {
  padding: clamp(88px, 11vw, 154px) var(--pad) clamp(62px, 8vw, 104px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 930px;
  font-size: clamp(50px, 7vw, 96px);
  line-height: 0.92;
  overflow-wrap: normal;
}

.page-hero-inner > p:last-child {
  max-width: 740px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
}

.page-section {
  padding: var(--section) var(--pad);
  background: var(--white);
}

.page-section.soft {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--green-pale);
}

.page-section-inner,
.program-directory,
.contact-layout,
.page-section > .wide-head,
.page-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.page-section-inner {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1fr);
  gap: clamp(48px, 9vw, 150px);
}

.page-section-copy {
  max-width: 740px;
}

.page-section-copy p + p {
  margin-top: 18px;
}

.page-section-copy p,
.page-section-copy li {
  color: var(--text);
  font-size: 17px;
}

.page-section-copy ul,
.page-card ul {
  display: grid;
  gap: 9px;
  margin-top: 22px;
  padding-left: 20px;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.page-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.page-card p {
  margin-top: 12px;
  color: var(--muted);
}

.program-directory {
  display: grid;
  gap: 24px;
}

.program-directory-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.program-directory-card > div {
  padding: clamp(28px, 5vw, 58px);
}

.program-directory-card h2 {
  margin-top: 16px;
  font-size: clamp(38px, 4.4vw, 62px);
}

.program-directory-card p:not(.program-kicker) {
  margin-top: 18px;
  color: var(--text);
}

.program-directory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50% !important;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.contact-layout > div {
  display: grid;
  gap: 16px;
}

.contact-panel {
  position: sticky;
  top: 104px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--green-soft);
}

.contact-panel dl {
  display: grid;
  gap: 20px;
  margin: 0;
}

.contact-panel dt {
  color: var(--green-dark);
  font-weight: 750;
}

.contact-panel dd {
  margin: 4px 0 0;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "image"
      "stats";
    min-height: 0;
  }

  .hero-copy {
    align-self: auto;
  }

  .hero-stage,
  .hero-portrait {
    min-height: 560px;
  }

  .section-layout,
  .campus-section,
  .apply-section {
    grid-template-columns: 1fr;
  }

  .sticky-head,
  .program-tabs {
    position: static;
  }

  .program-shell {
    grid-template-columns: 1fr;
  }

  .program-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 20px;
  }

  .rector-card {
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  }

  .rector-card > div {
    padding: 34px 34px 34px 0;
  }
}

@media (max-width: 780px) {
  h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .site-header {
    min-height: 68px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-text strong {
    max-width: 62vw;
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-text small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 18px 40px rgba(8, 61, 34, 0.12);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 30px;
  }

  .hero-title {
    font-size: clamp(54px, 15.5vw, 76px);
  }

  .hero .lead {
    font-size: 18px;
  }

  .hero-stage,
  .hero-portrait {
    min-height: 460px;
  }

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

  .hero-stats div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-stats div:nth-child(n + 3) {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }

  .feature-grid,
  .research-grid,
  .leader-grid,
  .campus-metrics,
  .timeline,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .program-tabs {
    grid-template-columns: 1fr;
  }

  .program-panel.active,
  .rector-card,
  .program-directory-card,
  .contact-layout,
  .page-section-inner {
    grid-template-columns: 1fr;
  }

  .program-panel.active {
    min-height: 0;
  }

  .leader-side {
    min-height: 430px;
  }

  .rector-card img {
    min-height: 420px;
  }

  .rector-card > div {
    padding: 28px 22px 34px;
  }

  .leader-card {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .leader-card img,
  .photo-fallback {
    width: 120px;
    min-height: 210px;
  }

  .leader-card > div:last-child {
    padding: 20px;
  }

  .program-directory-card img {
    order: -1;
    max-height: 420px;
  }

  .contact-panel {
    position: static;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 480px) {
  .hero-actions .button {
    flex: 1 1 auto;
  }

  .hero-stage,
  .hero-portrait {
    min-height: 420px;
  }

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

  .leader-card img,
  .photo-fallback {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}

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