@font-face {
  font-family: Karla;
  font-style: normal;
  font-weight: 500 600;
  font-display: optional;
  src: url("assets/fonts/karla-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Newsreader;
  font-style: normal;
  font-weight: 500 600;
  font-display: optional;
  src: url("assets/fonts/newsreader-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400 600;
  font-display: optional;
  src: url("assets/fonts/source-serif-4-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --maroon: #8c1515;
  --maroon-deep: #5c0e0e;
  --gold: #c5a572;
  --paper: #f4f1ed;
  --paper-bright: #fffcf8;
  --ink: #1a1210;
  --ink-soft: #4a3a36;
  --rule: #1a1210;
  --focus: #8c1515;
  --serif-display: "Newsreader", "Iowan Old Style", Palatino, serif;
  --serif-body: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --sans: Karla, "Gill Sans", Calibri, sans-serif;
  --measure: 68ch;
  --gutter: clamp(1rem, 4vw, 3.5rem);
  --nav-h: 4.5rem;
  --space-sm: 1.25rem;
  --space-md: 2rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-optical-sizing: none;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-bright);
  font-family: var(--serif-body);
  font-size: 1.125rem;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: var(--maroon);
}

a:hover {
  color: var(--maroon-deep);
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 20;
  background: var(--paper-bright);
  color: var(--ink);
  padding: 0.5rem 0.85rem;
}

.skip:focus {
  top: 0.75rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.75rem max(var(--gutter), env(safe-area-inset-right)) 0.75rem max(var(--gutter), env(safe-area-inset-left));
  min-height: var(--nav-h);
}

.page-inner .site-header {
  background: var(--paper-bright);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}

.home .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  background: linear-gradient(to bottom, rgb(26 18 16 / 0.45), transparent);
}

.brand {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

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

.home .brand img {
  height: 76px;
  filter: drop-shadow(0 1px 10px rgb(26 18 16 / 0.45));
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  padding: 0.28em 0.5em;
}

.home .nav a {
  color: var(--paper-bright);
}

.nav a[aria-current="page"] {
  color: var(--maroon);
  background: rgb(26 18 16 / 0.06);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.home .nav a[aria-current="page"] {
  color: #fff;
  background: rgb(26 18 16 / 0.12);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.nav a:hover {
  color: var(--maroon);
}

.home .nav a:hover {
  color: var(--gold);
}

.stage {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  color: var(--paper-bright);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgb(26 18 16 / 0.28) 0%, rgb(26 18 16 / 0.08) 36%, rgb(26 18 16 / 0.5) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: calc(5.75rem + 0.55in) var(--gutter) auto;
  padding: 0 0 var(--space-sm);
  width: auto;
  max-width: calc(100% - (2 * var(--gutter)));
}

.hero-copy h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.42em;
  margin: 0 0 var(--space-sm);
  font-family: var(--serif-display);
  font-size: clamp(2rem, 5.2vw, 3.65rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0.01em;
  font-optical-sizing: none;
}

.hero-line {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  line-height: 1.04;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
  padding-block: 0.28em;
  padding-inline: 0.42em;
  background: rgb(26 18 16 / 0.12);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  backdrop-filter: blur(12px) saturate(1.15);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .hero-line {
    background: rgb(26 18 16 / 0.45);
  }
}

@media (prefers-reduced-transparency: reduce) {
  .hero-line {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgb(26 18 16 / 0.55);
  }
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: clamp(0.82rem, 1.55vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95em 1.85em;
  border: 0;
  cursor: pointer;
}

.hero-copy .btn {
  font-size: clamp(0.78rem, 1.45vw, 0.92rem);
}

.btn-primary {
  background: var(--maroon);
  color: var(--paper-bright);
}

.btn-primary:hover {
  background: var(--maroon-deep);
  color: var(--paper-bright);
}

.btn[disabled],
.btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.alumni-rail {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  background: var(--paper-bright);
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  padding: var(--space-sm) 0;
}

.alumni-rail h2 {
  margin: 0;
  padding: 0 var(--gutter);
  font-family: var(--serif-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}

.rail-mask {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.rail-track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.rail-set {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  flex-shrink: 0;
}

@media (hover: hover) {
  .alumni-rail:hover .rail-track {
    animation-play-state: paused;
  }
}

.rail-track img {
  height: 22px;
  width: auto;
}

.rail-note {
  font-family: var(--serif-display);
  font-size: 0.95rem;
  font-style: italic;
  white-space: nowrap;
  color: var(--ink);
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rail-track {
    animation: none;
    width: auto;
    transform: none;
    will-change: auto;
  }
  .rail-set {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0 var(--gutter);
    gap: 1.25rem 2rem;
  }
  .rail-set[aria-hidden] {
    display: none;
  }
  .rail-mask { -webkit-mask-image: none; mask-image: none; }
}

.book {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding: var(--space-xl) var(--gutter) var(--space-md);
  align-items: start;
}

@media (min-width: 960px) {
  .book {
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
    gap: var(--space-xl);
  }
}

.book .prose h2,
.book-panel h2 {
  margin: 0 0 var(--space-sm);
  font-family: var(--serif-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.18;
}

.book-panel {
  padding: var(--space-sm);
  background: var(--paper);
  border: 1px solid var(--ink);
}

.book-panel h2 {
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
}

.book-note {
  margin: 0 0 var(--space-sm);
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 42ch;
}

.book-table-wrap {
  overflow-x: auto;
}

.book-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.book-table th,
.book-table td {
  padding: 0.55rem 0.4rem;
  text-align: left;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
  vertical-align: baseline;
}

.book-table thead th {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
}

.book-table .num {
  text-align: right;
  font-family: var(--sans);
  font-size: 0.92rem;
}

.book-table tbody th {
  font-weight: 400;
}

.book-table .ticker {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.book-table .asset-name {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.book-table tfoot th,
.book-table tfoot td {
  border-bottom: 0;
  padding-top: 0.85rem;
  font-family: var(--serif-display);
  font-weight: 500;
}

.section h2 {
  margin: 0 0 1rem;
  font-family: var(--serif-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.18;
}

.prose {
  max-width: var(--measure);
}

.prose p {
  margin: 0 0 var(--space-sm);
  color: var(--ink);
}

.prose strong {
  font-weight: 600;
}

.figure-line {
  margin: var(--space-md) 0 0;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--ink);
  font-family: var(--serif-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.35;
  letter-spacing: 0.04em;
  max-width: 40rem;
}

.cta-band {
  margin: 0 var(--gutter) var(--space-xl);
  padding: var(--space-lg) var(--space-md);
  background: var(--maroon);
  color: var(--paper-bright);
}

.cta-band h2 {
  margin: 0 0 var(--space-sm);
  font-family: var(--serif-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 500;
}

.cta-band p {
  margin: 0 0 var(--space-sm);
  max-width: 48ch;
}

.cta-band .btn-primary {
  background: var(--paper-bright);
  color: var(--maroon);
}

.cta-band .btn-primary:hover {
  background: var(--gold);
  color: var(--ink);
}

.page-hero {
  padding: 3.2rem var(--gutter) 0;
}

.page-hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--serif-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.1;
  max-width: 16ch;
}

.page-hero.is-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 1.5rem;
}

.page-hero.is-centered h1 {
  max-width: 22ch;
}

.page-hero.is-centered .lede {
  max-width: 62ch;
}

.page-hero .btn {
  margin-top: 0.35rem;
}

.page-thanks {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.page-thanks main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-thanks .page-hero {
  padding-top: 0;
  padding-bottom: 2rem;
}

.split + .split {
  padding-top: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 2.5rem var(--gutter) 3rem;
}

@media (min-width: 840px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.split h2 {
  margin: 0 0 0.9rem;
  font-family: var(--serif-display);
  font-size: 1.7rem;
  font-weight: 500;
}

h1,
h2,
.title-slab {
  overflow-wrap: anywhere;
}

.hero-copy h1,
.hero-line {
  overflow-wrap: normal;
}

.title-slab {
  display: inline-block;
  max-width: 100%;
  background: var(--maroon);
  color: var(--paper-bright);
  padding: 0.38rem 0.8rem 0.45rem;
}

.split.is-panels {
  gap: 1.25rem;
}

.panel {
  padding: 1.5rem 1.4rem 1.7rem;
  background: var(--paper);
}

.panel-maroon {
  background: var(--maroon);
  color: var(--paper-bright);
}

.panel-maroon .title-slab {
  background: var(--paper-bright);
  color: var(--maroon);
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 46rem;
}

.topic-list li {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.7rem;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
}

.pyramid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 1rem var(--gutter) 4rem;
}

.pyramid-row {
  display: grid;
  gap: 2rem 1.75rem;
  width: 100%;
  justify-content: center;
}

.pyramid-row.row-2 {
  max-width: 52rem;
  grid-template-columns: 1fr;
}

.pyramid-row.row-3 {
  max-width: 72rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .pyramid-row.row-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .pyramid-row.row-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.officer {
  max-width: 22rem;
  margin: 0 auto;
  width: 100%;
}

.officer .well {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  background:
    linear-gradient(160deg, #ddd4c8, #cfc4b6);
  margin-bottom: 0.85rem;
}

.officer h2 {
  margin: 0 0 0.2rem;
  font-family: var(--serif-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.officer .role {
  margin: 0 0 0.65rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.officer .bio {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  line-height: 1.5;
}

.officer .links {
  display: flex;
  gap: 1rem;
  margin: 0;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.officer .links a {
  color: var(--maroon);
}

.officer .links a:hover {
  color: var(--maroon-deep);
}

.form-wrap {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0.5rem var(--gutter) 4.5rem;
}

.form-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem 1.25rem;
  padding: 1.6rem 1.4rem 1.8rem;
  background: var(--paper);
}

@media (min-width: 720px) {
  .form-panel {
    grid-template-columns: 1fr 1fr;
    padding: 2rem 2rem 2.1rem;
    gap: 1.25rem 1.5rem;
  }

  .form-panel .span-2 {
    grid-column: 1 / -1;
  }
}

.form-checks {
  display: grid;
  gap: 0.85rem;
  padding: 0.2rem 0 0.1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

label span {
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--serif-body);
  font-size: 1.05rem;
  font-weight: 400;
}

.check input {
  margin-top: 0.35rem;
  accent-color: var(--maroon);
}

input[type="text"],
input[type="email"],
select,
textarea {
  font: inherit;
  font-size: 1.05rem;
  padding: 0.7rem 0.75rem;
  border: 1px solid color-mix(in srgb, var(--ink) 28%, transparent);
  background: var(--paper-bright);
  color: var(--ink);
  width: 100%;
}

textarea {
  min-height: 7rem;
  resize: vertical;
}

.form-note,
.form-status {
  font-size: 1rem;
  color: var(--ink-soft);
}

.form-status[data-state="error"] {
  color: var(--maroon-deep);
}

.form-status[data-state="ok"] {
  color: var(--maroon);
}

.site-footer {
  padding: var(--space-md) max(var(--gutter), env(safe-area-inset-right)) calc(var(--space-md) + env(safe-area-inset-bottom)) max(var(--gutter), env(safe-area-inset-left));
  border-top: 1px solid var(--ink);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem var(--space-md);
  justify-content: space-between;
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
  max-width: 46ch;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  margin-left: auto;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-social a {
  color: var(--ink);
  text-decoration: none;
}

.footer-x {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}

.footer-x svg {
  width: 0.95em;
  height: 0.95em;
  display: block;
  flex-shrink: 0;
}

.footer-social a:hover {
  color: var(--maroon);
}

.credit {
  color: var(--ink-soft);
  font-size: 0.85rem;
  text-align: right;
  max-width: 42ch;
}

.credit a {
  color: var(--maroon);
  text-decoration: none;
}

.credit a:hover {
  color: var(--maroon-deep);
}

@media (max-width: 720px) {
  :root {
    --gutter: 1rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 2.75rem;
  }

  body {
    font-size: 1.05rem;
  }

  .site-header {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    min-height: 0;
    padding-top: max(0.5rem, env(safe-area-inset-top));
    padding-bottom: 0.5rem;
  }

  .home .site-header {
    position: relative;
    background: var(--maroon-deep);
  }

  .brand {
    flex: 0 0 auto;
  }

  .home .brand img,
  .brand img {
    height: 44px;
  }

  .nav {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.1rem 0.15rem;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .nav a {
    padding: 0.5em 0.28em;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .home .stage {
    min-height: 0;
  }

  .hero {
    min-height: min(70svh, 32rem);
    justify-content: center;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    max-width: none;
    padding: 1.25rem max(var(--gutter), env(safe-area-inset-left)) 1.5rem;
    padding-right: max(var(--gutter), env(safe-area-inset-right));
    container-type: inline-size;
  }

  .hero-copy h1 {
    align-items: center;
    width: 100%;
    font-size: clamp(1.05rem, calc(100cqi / 15.4), 2.2rem);
    gap: 0.32em;
    margin-bottom: 0.75em;
  }

  .hero-line {
    display: inline-flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    letter-spacing: 0.004em;
    padding-block: 0.2em;
    padding-inline: 0.32em;
    justify-content: center;
    text-align: center;
  }

  .btn {
    max-width: 100%;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    padding: 0.85em 1.35em;
    min-height: 44px;
    text-align: center;
  }

  .hero-copy .btn {
    position: relative;
    font-size: clamp(0.68rem, calc(100cqi / 28), 0.85rem);
    letter-spacing: 0.1em;
    padding: 0.55em 1.1em;
    min-height: 0;
    line-height: 1.15;
  }

  .hero-copy .btn::after {
    content: "";
    position: absolute;
    inset: -0.55rem -0.7rem;
  }

  .alumni-rail h2 {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    line-height: 1.3;
  }

  .page-hero {
    padding-top: 2rem;
  }

  .page-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
    letter-spacing: 0.02em;
    line-height: 1.2;
    max-width: 100%;
  }

  .page-hero.is-centered h1 {
    max-width: 100%;
  }

  .title-slab {
    padding: 0.3rem 0.55rem 0.35rem;
  }

  .split {
    gap: 1.75rem;
    padding: 1.75rem var(--gutter) 2rem;
  }

  .split h2 {
    font-size: 1.35rem;
  }

  .panel {
    padding: 1.15rem 1rem 1.3rem;
  }

  .book-table th,
  .book-table td {
    padding: 0.4rem 0.3rem;
    font-size: 0.9rem;
  }

  .book-table .num {
    font-size: 0.8rem;
  }

  .officer .bio {
    font-size: 0.98rem;
  }

  input[type="text"],
  input[type="email"],
  select,
  textarea {
    font-size: 1rem;
  }

  .check {
    font-size: 1rem;
  }

  .form-panel {
    padding: 1.2rem 1rem 1.4rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .site-footer p {
    max-width: none;
  }

  .footer-meta {
    margin-left: 0;
    width: 100%;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .credit {
    text-align: left;
    max-width: none;
  }
}
