:root {
  --uw-black: #000000;
  --uw-charcoal: #333333;
  --uw-gray-dark: #4e4e4e;
  --uw-gray: #757575;
  --uw-gray-light: #dbdbdb;
  --uw-gray-pale: #eeeeee;
  --uw-wash: #fafafa;
  --uw-gold: #fed34c;
  --uw-gold-dark: #eaab00;
  --uw-gold-pale: #fff8d8;
  --uw-white: #ffffff;
  --content: 75rem;
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--uw-charcoal);
  background: var(--uw-white);
  font-size: 1rem;
  line-height: 1.65;
}

a {
  color: var(--uw-black);
  text-decoration-color: var(--uw-gold-dark);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--uw-gray-dark);
  text-decoration-thickness: 0.18em;
}

a:focus-visible {
  outline: 3px solid var(--uw-gold-dark);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -5rem;
  left: 1rem;
  z-index: 10;
  padding: 0.7rem 1rem;
  color: var(--uw-black);
  background: var(--uw-gold);
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  --mat-1: #efbbf0;
  --mat-2: #ef60ad;
  --mat-3: #df1aa0;
  --mat-4: #a2006e;
  color: var(--uw-white);
  background: var(--uw-black);
  border-top: 0.75rem solid var(--uw-gold);
}

.site-header::after {
  display: block;
  height: 0.65rem;
  background: linear-gradient(
    to right,
    var(--mat-1) 0 25%,
    var(--mat-2) 25% 50%,
    var(--mat-3) 50% 75%,
    var(--mat-4) 75% 100%
  );
  content: "";
}

.site-header__inner,
.site-nav ul,
.content,
.site-footer__inner {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.site-header__inner {
  padding: 1.65rem 0 1.55rem;
}

.site-title {
  display: inline-block;
  max-width: 30ch;
  color: var(--uw-white);
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  font-stretch: condensed;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-decoration: none;
}

.site-title:hover {
  color: var(--uw-gold);
  text-decoration: none;
}

.site-subtitle {
  margin: 0.55rem 0 0;
  color: var(--uw-gray-light);
  font-size: 1rem;
  letter-spacing: 0.015em;
}

.site-nav {
  background: var(--uw-white);
  border-bottom: 1px solid var(--uw-gray-light);
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-block: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  margin: 0;
}

.site-nav a {
  display: block;
  position: relative;
  padding: 0.85rem 0.8rem 0.75rem;
  color: var(--uw-black);
  border-bottom: 0.3rem solid transparent;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.93rem;
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--uw-black);
  background: var(--uw-wash);
  border-bottom-color: var(--uw-gold-dark);
}

.site-nav a[aria-current="page"] {
  color: var(--uw-black);
  background: var(--uw-gold);
  border-bottom-color: var(--uw-black);
}

.content {
  min-height: 60vh;
  margin-block: clamp(2rem, 5vw, 4.5rem);
  padding: 0;
  background: var(--uw-white);
}

.content--wide {
  --content: 82rem;
}

.content > :first-child {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--uw-black);
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-stretch: condensed;
  font-weight: 500;
  hyphens: none;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.6rem;
  font-size: clamp(2.5rem, 6vw, 4.3rem);
}

h1::after {
  display: block;
  width: 4.5rem;
  height: 0.38rem;
  margin-top: 0.65rem;
  background: var(--uw-gold);
  content: "";
}

h2 {
  margin: 2.8rem 0 0.85rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--uw-gray-light);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

h3 {
  margin: 1.9rem 0 0.55rem;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0.5rem 0 1.3rem;
  padding-left: 1.4rem;
}

li + li {
  margin-top: 0.45rem;
}

::marker {
  color: var(--uw-gold-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(11rem, 15rem);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.hero h1 {
  margin-bottom: 0.4rem;
}

.hero__role {
  margin-bottom: 1.5rem;
  color: var(--uw-gray-dark);
  font-size: 1.15rem;
  font-weight: 600;
}

.portrait {
  width: 100%;
  height: auto;
  border: 1px solid var(--uw-gray-light);
  border-bottom: 0.45rem solid var(--uw-gold);
}

.page-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.5rem;
  padding: 1px;
  background: var(--uw-gray-light);
  list-style: none;
}

.page-links li {
  margin: 0;
}

.page-links a {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 4.5rem;
  padding: 1rem 1.15rem;
  color: var(--uw-black);
  background: var(--uw-wash);
  border-left: 0.35rem solid var(--uw-gold);
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-decoration: none;
}

.page-links a:hover {
  color: var(--uw-black);
  background: var(--uw-gold-pale);
  border-left-color: var(--uw-gold-dark);
}

.lead {
  max-width: 60rem;
  color: var(--uw-gray-dark);
  font-size: 1.18rem;
  line-height: 1.6;
}

.callout {
  margin: 1.75rem 0;
  padding: 1.15rem 1.3rem;
  background: var(--uw-gold-pale);
  border-left: 0.4rem solid var(--uw-gold-dark);
}

.year {
  padding-top: 0.5rem;
  border-top: 1px solid var(--uw-gray-light);
}

.source-note {
  margin-top: 3rem;
  padding-top: 1rem;
  color: var(--uw-gray);
  border-top: 1px solid var(--uw-gray-light);
  font-size: 0.88rem;
}

.site-footer {
  color: var(--uw-white);
  background: var(--uw-black);
  border-top: 0.45rem solid var(--uw-gold);
}

.site-footer__inner {
  padding: 1.65rem 0;
}

.site-footer p {
  margin: 0;
  color: var(--uw-gray-light);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.site-footer a {
  color: var(--uw-white);
  text-decoration-color: var(--uw-gold);
}

@media (max-width: 48rem) {
  .hero {
    grid-template-columns: 1fr;
  }

  .portrait {
    order: -1;
    width: 10rem;
  }

  .page-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 32rem) {
  .site-header__inner,
  .site-nav ul,
  .content,
  .site-footer__inner {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .site-header__inner {
    padding-block: 1.25rem;
  }

  .site-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-block: 0.25rem;
  }

  .site-nav a {
    height: 100%;
    padding: 0.65rem 0.5rem 0.55rem;
    border-bottom-width: 0.2rem;
    font-size: 0.78rem;
  }

  .content {
    margin-block: 2rem;
  }

  h1 {
    font-size: clamp(2.25rem, 13vw, 3.2rem);
  }

  .page-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Compact site-wide rhythm and reduce avoidable text wrapping. */
:root {
  --content: 82rem;
}

body {
  line-height: 1.5;
}

.site-header__inner {
  padding: 0.85rem 0 0.75rem;
}

.site-subtitle {
  margin-top: 0.25rem;
}

.content {
  margin-block: clamp(1.25rem, 3vw, 2.5rem);
}

.content--wide {
  --content: 88rem;
}

h1 {
  margin-bottom: 1rem;
}

h1::after {
  margin-top: 0.4rem;
}

h2 {
  margin: 1.75rem 0 0.55rem;
  padding-bottom: 0.25rem;
}

h3 {
  margin: 1.25rem 0 0.4rem;
}

p {
  margin-bottom: 0.65rem;
  text-wrap: pretty;
}

ul {
  margin: 0.35rem 0 0.85rem;
}

li {
  text-wrap: pretty;
}

li + li {
  margin-top: 0.25rem;
}

.hero {
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.hero__role {
  margin-bottom: 0.8rem;
}

.lead {
  max-width: none;
  line-height: 1.45;
}

.callout {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
}

.year {
  padding-top: 0.2rem;
}

@media (max-width: 32rem) {
  .site-header__inner {
    padding-block: 0.7rem;
  }

  .content {
    margin-block: 1.25rem;
  }
}

/* Shared banner/footer brand colors and tighter page-heading spacing. */
:root {
  --mat-middle: #ef60ad;
  --mat-light: #efbbf0;
}

.site-title,
.site-title:hover {
  color: var(--uw-gold);
}

.site-subtitle {
  color: var(--mat-light);
}

.site-footer p {
  color: var(--mat-light);
}

.site-footer a,
.site-footer a:hover {
  color: var(--uw-gold);
}

.content {
  margin-block-start: 0.25rem;
  margin-block-end: clamp(0.75rem, 2vw, 1.5rem);
}

h1 {
  margin-bottom: 0.75rem;
}

h2 {
  margin: 1.1rem 0 0.45rem;
}

h3 {
  margin: 0.9rem 0 0.35rem;
}

@media (max-width: 32rem) {
  .content {
    margin-block-start: 0.25rem;
    margin-block-end: 0.75rem;
  }
}