:root {
  color-scheme: light;
  --ink: #172021;
  --muted: #586366;
  --paper: #fbfdfc;
  --soft: #eef7f3;
  --line: #d9e4df;
  --teal: #0b6b72;
  --teal-dark: #0b4f55;
  --mint: #d9f0e8;
  --crimson: #9f2f46;
  --gold: #c98c24;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(16, 35, 35, 0.16);
  --max-width: 1180px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

section[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

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

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  height: var(--header-height);
  background: rgba(251, 253, 252, 0.72);
  backdrop-filter: blur(12px);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 253, 252, 0.94);
  border-bottom: 1px solid rgba(217, 228, 223, 0.9);
  box-shadow: 0 14px 36px rgba(16, 35, 35, 0.08);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(var(--max-width), calc(100% - 2rem));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(17, 24, 25, 0.08);
  object-fit: cover;
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-menu a {
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  color: rgba(23, 32, 33, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] {
  background: rgba(11, 107, 114, 0.1);
  color: var(--teal-dark);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #f3f7f5;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 253, 252, 0.06) 0%, rgba(251, 253, 252, 0.38) 48%, rgba(251, 253, 252, 0.92) 73%, rgba(251, 253, 252, 0.98) 100%),
    linear-gradient(0deg, rgba(11, 79, 85, 0.12), rgba(11, 79, 85, 0.02));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  padding: calc(var(--header-height) + 2rem) 0 3rem;
  display: grid;
  justify-items: start;
}

.hero-inner > * {
  width: min(520px, 100%);
  margin-left: auto;
}

.eyebrow,
.section-kicker {
  color: var(--crimson);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 0.8rem;
  font-size: 5.25rem;
  line-height: 0.94;
  font-weight: 850;
}

.hero-subtitle {
  margin-top: 1.25rem;
  color: #263132;
  font-size: 1.22rem;
  line-height: 1.55;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(11, 79, 85, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal);
}

.button-secondary {
  border-color: rgba(11, 79, 85, 0.24);
  background: rgba(255, 255, 255, 0.78);
  color: var(--teal-dark);
}

.hero-points {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-points span {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(11, 107, 114, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #314245;
  font-size: 0.82rem;
  font-weight: 750;
}

.intro-band,
.leadership-section,
.links-section,
.focus-section,
.programs-section,
.resources-section,
.connect-section,
.announcements-section,
.membership-section {
  padding: 5.5rem 0;
}

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

.section-grid,
.programs-layout,
.announcements-layout,
.membership-layout,
.connect-inner,
.footer-inner,
.section-heading,
.leadership-grid,
.link-grid,
.focus-grid,
.resource-grid {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 4rem;
  align-items: start;
}

h2 {
  margin-top: 0.7rem;
  font-size: 2.75rem;
  line-height: 1.08;
  font-weight: 820;
}

.section-copy {
  display: grid;
  gap: 1rem;
  color: #344143;
  font-size: 1.05rem;
}

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

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

.leader-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 1.15rem;
  align-items: center;
  min-height: 250px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 35, 35, 0.05);
}

.founder-card {
  border-color: rgba(11, 107, 114, 0.24);
}

.leader-photo,
.leader-avatar {
  width: 132px;
  height: 132px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--soft);
}

.leader-avatar {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}

.leader-avatar img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
}

.leader-copy {
  display: grid;
  gap: 0.55rem;
}

.leader-role {
  color: var(--crimson);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.leader-copy h3 {
  font-size: 1.45rem;
  line-height: 1.2;
}

.leader-copy p {
  color: var(--muted);
  font-size: 0.96rem;
}

.leader-link {
  width: max-content;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(11, 107, 114, 0.18);
  border-radius: 8px;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.leader-link:hover,
.leader-link:focus-visible {
  border-color: rgba(11, 107, 114, 0.4);
  outline: none;
}

.page-hero {
  padding: calc(var(--header-height) + 5rem) 0 5rem;
  background:
    linear-gradient(90deg, rgba(11, 79, 85, 0.08), transparent 45%),
    var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.page-hero h1 {
  width: min(760px, 100%);
  margin-top: 0.85rem;
  font-size: 4.5rem;
  line-height: 0.98;
}

.page-hero p:not(.eyebrow) {
  width: min(680px, 100%);
  margin-top: 1.2rem;
  color: #334244;
  font-size: 1.16rem;
}

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

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

.link-card {
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1.15rem;
  border: 1px solid rgba(11, 107, 114, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 28px rgba(16, 35, 35, 0.05);
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.link-card:hover,
.link-card:focus-visible {
  border-color: rgba(11, 107, 114, 0.36);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  outline: none;
}

.link-card span {
  color: var(--crimson);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.link-card strong {
  font-size: 1.12rem;
  line-height: 1.25;
}

.link-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.link-card.primary-link {
  background: var(--teal-dark);
  color: var(--white);
}

.link-card.primary-link span,
.link-card.primary-link p {
  color: rgba(255, 255, 255, 0.78);
}

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

.section-heading {
  margin-bottom: 2.25rem;
}

.section-heading > p:not(.section-kicker) {
  width: min(610px, 100%);
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.focus-card {
  min-height: 280px;
  display: grid;
  align-content: start;
  gap: 1.1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 35, 35, 0.06);
}

.card-number {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
}

.focus-card h3,
.program-row h3 {
  font-size: 1.1rem;
  line-height: 1.25;
}

.focus-card p,
.program-row p {
  color: var(--muted);
  font-size: 0.96rem;
}

.programs-section {
  background:
    linear-gradient(90deg, rgba(11, 79, 85, 0.05), transparent 35%),
    var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.programs-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 4rem;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  width: auto;
  margin: 0;
}

.program-list {
  display: grid;
  gap: 0.85rem;
}

.program-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.2rem;
  border: 1px solid rgba(11, 107, 114, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.program-label {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--teal-dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.program-row p {
  margin-top: 0.35rem;
}

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

.announcements-layout,
.membership-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 4rem;
  align-items: start;
}

.announcement-list {
  display: grid;
  gap: 1rem;
}

.announcement-card {
  display: grid;
  gap: 0.95rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 35, 35, 0.05);
}

.featured-announcement {
  border-color: rgba(11, 107, 114, 0.28);
  background:
    linear-gradient(90deg, rgba(11, 107, 114, 0.08), transparent 58%),
    var(--white);
}

.announcement-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.announcement-meta span {
  color: var(--crimson);
}

.announcement-card h3 {
  font-size: 1.35rem;
  line-height: 1.22;
}

.announcement-card p {
  color: var(--muted);
}

.announcement-card .button {
  width: max-content;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.inline-links a {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(11, 107, 114, 0.18);
  border-radius: 8px;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

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

.application-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 35, 35, 0.05);
}

.light-field label,
.choice-field legend {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.light-field input,
.light-field textarea,
.light-field select,
.choice-field > input[type="text"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.light-field input,
.light-field select,
.choice-field > input[type="text"] {
  min-height: 46px;
  padding: 0 0.85rem;
}

.light-field input[type="file"] {
  min-height: auto;
  padding: 0.7rem 0.85rem;
}

.light-field textarea {
  min-height: 132px;
  padding: 0.75rem 0.85rem;
  resize: vertical;
}

.light-field input:focus,
.light-field textarea:focus,
.light-field select:focus,
.choice-field > input[type="text"]:focus {
  border-color: rgba(11, 107, 114, 0.5);
  outline: 2px solid rgba(11, 107, 114, 0.14);
  outline-offset: 1px;
}

.choice-field {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.choice-field legend {
  padding: 0 0.3rem;
}

.choice-field label {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: #334244;
  font-size: 0.96rem;
}

.choice-field input[type="radio"],
.choice-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--teal-dark);
  flex: 0 0 auto;
}

.field-error {
  display: none;
  color: var(--crimson);
  font-size: 0.86rem;
  font-weight: 800;
}

.field-help {
  color: #516668;
  font-size: 0.84rem;
}

.choice-field.is-invalid {
  border-color: rgba(159, 47, 70, 0.55);
  outline: 2px solid rgba(159, 47, 70, 0.1);
}

.choice-field.is-invalid .field-error {
  display: block;
}

.application-form .button {
  width: max-content;
}

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

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.resource-card {
  min-height: 170px;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 35, 35, 0.05);
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  border-color: rgba(11, 107, 114, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  outline: none;
}

.resource-card span {
  color: var(--crimson);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.resource-card strong {
  font-size: 1.05rem;
  line-height: 1.28;
}

.connect-section {
  background: var(--teal-dark);
  color: var(--white);
}

.connect-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.contact-layout {
  grid-template-columns: minmax(250px, 0.7fr) minmax(320px, 1fr);
  align-items: start;
}

.connect-copy {
  display: grid;
  gap: 1rem;
}

.connect-section .section-kicker {
  color: var(--mint);
}

.connect-section h2 {
  width: min(760px, 100%);
}

.connect-copy p:not(.section-kicker) {
  width: min(560px, 100%);
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  display: grid;
  gap: 0.95rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
}

.form-field input {
  min-height: 46px;
  padding: 0 0.85rem;
}

.form-field textarea {
  min-height: 136px;
  padding: 0.75rem 0.85rem;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--mint);
  outline: 2px solid rgba(217, 240, 232, 0.45);
  outline-offset: 1px;
}

.form-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.application-form .light-field label {
  color: var(--ink);
}

.application-form .light-field input,
.application-form .light-field textarea,
.application-form .light-field select {
  border-color: var(--line);
  background: var(--paper);
}

.connect-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.social-actions {
  grid-column: 1 / -1;
  justify-content: flex-start;
}

.connect-section .button-primary {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: none;
}

.connect-section .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.site-footer {
  background: #111819;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--white);
  font-weight: 750;
}

@media (max-width: 1160px) {
  .brand-copy span {
    display: none;
  }

  .nav {
    gap: 0.75rem;
  }

  .nav-menu a {
    padding-inline: 0.55rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(251, 253, 252, 0.1) 0%, rgba(251, 253, 252, 0.58) 52%, rgba(251, 253, 252, 0.96) 100%),
      linear-gradient(0deg, rgba(11, 79, 85, 0.12), rgba(11, 79, 85, 0.02));
  }

  .hero h1 {
    font-size: 4rem;
  }

  .brand-copy span {
    display: none;
  }

  .nav-menu {
    gap: 0.1rem;
  }

  .nav-menu a {
    padding-inline: 0.58rem;
  }

  .section-grid,
  .programs-layout,
  .announcements-layout,
  .membership-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sticky-heading {
    position: static;
  }

  .link-grid,
  .leadership-grid,
  .focus-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .connect-inner {
    grid-template-columns: 1fr;
  }

  .connect-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .brand-copy span {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(var(--header-height) - 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-menu a {
    padding: 0.9rem;
  }

  .hero {
    min-height: 88vh;
    align-items: end;
  }

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

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(251, 253, 252, 0.99) 0%, rgba(251, 253, 252, 0.92) 42%, rgba(251, 253, 252, 0.18) 76%),
      linear-gradient(90deg, rgba(11, 79, 85, 0.12), rgba(159, 47, 70, 0.08));
  }

  .hero-inner {
    padding: calc(var(--header-height) + 15rem) 0 2rem;
  }

  .hero-inner > * {
    margin-left: 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .button {
    width: 100%;
  }

  .hero-points span {
    flex: 1 1 auto;
    text-align: center;
  }

  .intro-band,
  .leadership-section,
  .links-section,
  .focus-section,
  .programs-section,
  .resources-section,
  .connect-section,
  .announcements-section,
  .membership-section {
    padding: 4rem 0;
  }

  .page-hero {
    padding: calc(var(--header-height) + 3.25rem) 0 3.75rem;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1.02rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .link-grid,
  .leadership-grid,
  .focus-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

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

  .leader-photo,
  .leader-avatar {
    width: 112px;
    height: 112px;
  }

  .focus-card {
    min-height: auto;
  }

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

  .announcement-card .button {
    width: 100%;
  }

  .application-form .button {
    width: 100%;
  }

  .program-label {
    width: max-content;
    min-width: 96px;
  }

  .footer-inner {
    padding: 1.5rem 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

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