:root {
  --paper: #f8f3e8;
  --paper-deep: #efe6d5;
  --ink: #15283a;
  --ink-soft: #3a5163;
  --blue: #153e63;
  --blue-deep: #0c2a45;
  --blue-soft: #dbe5e8;
  --red: #a61e34;
  --red-deep: #7d1528;
  --gold: #b48a45;
  --white: #fffdf7;
  --line: rgba(21, 62, 99, .22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Arial, Helvetica, sans-serif;
  --display: Georgia, "Times New Roman", serif;
  --edit-serif: Spectral, Georgia, "Times New Roman", serif;
  --edit-sans: Archivo, "Helvetica Neue", Arial, sans-serif;
  --shell: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 1rem/1.6 var(--serif);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 10% 0, rgba(180, 138, 69, .08), transparent 28rem),
    repeating-linear-gradient(0deg, transparent 0 55px, rgba(21, 62, 99, .025) 56px);
}

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

a {
  color: inherit;
}

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

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

button {
  border: 0;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: .98;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 7rem);
  letter-spacing: -.055em;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  letter-spacing: -.045em;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -.025em;
}

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

/* Text fields and selects focus on pointer input too. Keep that state quiet. */
input:focus-visible,
select:focus-visible {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(var(--shell), calc(100% - 3rem));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: .5rem;
  left: .5rem;
  z-index: 1000;
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--red-deep);
  font: 800 .75rem var(--sans);
  transform: translateY(-160%);
}

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

.eyebrow,
.section-label,
.item-type,
.role,
.button,
.arrow-link,
.utility-bar,
.main-navigation,
.mobile-menu-button,
.category-index,
.search-form,
.mega-menu,
.site-footer,
.page-links,
.archive-stats {
  font-family: var(--sans);
}

.eyebrow,
.section-label,
.item-type {
  margin-bottom: .85rem;
  color: var(--red-deep);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 1.8rem;
  height: 2px;
  margin-right: .6rem;
  vertical-align: middle;
  content: "";
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .8rem 1.15rem;
  border: 1px solid var(--blue);
  color: var(--white);
  background: var(--blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.button:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
}

.button.red {
  border-color: var(--red);
  background: var(--red);
}

.button.red:hover {
  background: var(--red-deep);
}

.button.light {
  border-color: var(--white);
  color: var(--blue-deep);
  background: var(--white);
}

.button.outline {
  color: var(--blue);
  background: transparent;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--blue);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-underline-offset: .25rem;
  text-transform: uppercase;
}

.arrow-link span {
  font-size: 1.05rem;
  transition: transform .18s ease;
}

.arrow-link:hover span {
  transform: translateX(4px);
}

.utility-bar {
  border-bottom: 1px solid var(--line);
  color: var(--blue-deep);
  background: #fff;
  font-size: .68rem;
  letter-spacing: .045em;
}

.utility-inner {
  display: flex;
  min-height: 2.45rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.utility-inner p {
  margin: 0;
}

.utility-inner nav {
  display: flex;
  min-height: 2.45rem;
  align-items: stretch;
}

.utility-inner a {
  display: flex;
  align-items: center;
  padding-inline: .75rem;
  color: var(--blue-deep);
  text-decoration: none;
}

.utility-inner a:hover {
  color: var(--red-deep);
  background: var(--paper);
}

.utility-inner .utility-donate {
  color: var(--white);
  background: var(--red);
  font-weight: 800;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, .97);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 6.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  min-width: 245px;
  align-items: center;
  color: var(--blue-deep);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(11rem, 16vw, 15rem);
  height: auto;
}

.brand-mark {
  display: grid;
  width: 3.15rem;
  aspect-ratio: 1;
  flex: none;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--paper);
  background: var(--blue);
  font: 700 1.35rem var(--serif);
}

.brand-copy {
  display: grid;
  font-size: 1rem;
  line-height: 1.05;
}

.brand-copy strong {
  margin-top: .22rem;
  color: var(--red-deep);
  font: 800 .62rem var(--sans);
  letter-spacing: .13em;
  text-transform: uppercase;
}

.main-navigation {
  display: flex;
  align-items: stretch;
  gap: clamp(.15rem, 1vw, .8rem);
}

.main-navigation a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: .7rem clamp(.5rem, 1vw, .8rem);
  text-decoration: none;
  background: transparent;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .045em;
  cursor: pointer;
  text-transform: uppercase;
}

.main-navigation a::after {
  position: absolute;
  right: .7rem;
  bottom: .25rem;
  left: .7rem;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transition: transform .18s ease;
}

.main-navigation a:hover::after,
.main-navigation a[aria-expanded="true"]::after,
.main-navigation a.is-current::after {
  transform: scaleX(1);
}

.main-navigation a.is-current {
  color: var(--red-deep);
}

.mobile-menu-button {
  display: none;
}

.mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  border-top: 1px solid var(--line);
  border-bottom: 4px solid var(--red);
  background: var(--white);
  box-shadow: 0 24px 50px rgba(12, 42, 69, .18);
  animation: menu-in .22s ease both;
}

@keyframes menu-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mega-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 0;
  padding-block: 1.2rem;
}

.mega-intro,
.mega-group {
  min-height: 14rem;
  padding: 1.6rem 2rem;
  border-right: 1px solid var(--line);
}

.mega-layout > :last-child {
  border-right: 0;
}

.mega-intro h2 {
  margin-bottom: .75rem;
  font-size: 2rem;
}

.mega-intro p {
  max-width: 28rem;
  color: var(--ink-soft);
}

.mega-group {
  display: flex;
  flex-direction: column;
}

.mega-group h3 {
  margin-bottom: .7rem;
  color: var(--red-deep);
  font: 800 .68rem var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mega-group a {
  padding: .6rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
}

.mega-group a:hover {
  color: var(--red-deep);
}

.mega-group-dark {
  color: var(--white);
  background: var(--blue);
}

.mega-group-dark h3,
.mega-group-dark a {
  color: var(--white);
  border-color: rgba(255, 255, 255, .18);
}

.view.is-active {
  animation: view-in .38s ease both;
}

.route-breadcrumb {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.route-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  min-height: 2.8rem;
  margin: 0;
  padding: .65rem 0;
  color: var(--ink-soft);
  font: 700 .72rem var(--sans);
  letter-spacing: .04em;
  list-style: none;
}

.route-breadcrumb li + li::before {
  margin-right: .5rem;
  color: var(--gold-deep);
  content: "/";
}

.route-breadcrumb a {
  color: var(--red-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

.route-breadcrumb [aria-current="page"] {
  color: var(--ink);
}

[data-anchor] {
  scroll-margin-top: 7rem;
}

/*
 * Scroll reveal. The has-reveal class comes from the script, so content stays visible without JavaScript.
 * The script also skips this behavior when the reader asks for reduced motion.
 */
.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.22, 1, .36, 1);
}

.has-reveal [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@keyframes view-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}

/*
 * The hero atmosphere is one decorative layer behind the hero copy.
 * Every animation here moves only transform, so the compositor does the work.
 * The hero layout paints above this layer, because the layout comes later in the document.
 */
.hero-atmosphere {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Paper tooth. The grain stops the washes below from banding on the flat paper color. */
.hero-atmosphere::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}

/*
 * The script adds the is-idle class while a hero sits outside the viewport.
 * A paused animation costs the compositor nothing, which saves battery on long pages.
 * The headline cascade is absent from this list, because that cascade runs once.
 */
.hero.is-idle .hero-rings,
.hero.is-idle .hero-wash,
.hero.is-idle .hero-image img,
.timeline-hero.is-idle .timeline-hero-image img {
  animation-play-state: paused;
}

/* Engraved rings. Each set drifts and breathes on its own period, so the sets never sync. */
.hero-rings {
  position: absolute;
  aspect-ratio: 1;
  border: 1px solid rgba(21, 62, 99, .1);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(21, 62, 99, .025),
    0 0 0 9rem rgba(21, 62, 99, .018),
    0 0 0 15rem rgba(21, 62, 99, .012);
  animation: ring-drift 74s ease-in-out infinite;
}

.hero-rings-a {
  top: -18rem;
  left: -12rem;
  width: 38rem;
}

.hero-rings-b {
  bottom: -30rem;
  left: 16rem;
  width: 26rem;
  opacity: .75;
  animation-duration: 97s;
  animation-direction: reverse;
}

@keyframes ring-drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(2.4rem, -1.6rem, 0) scale(1.055); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

/* Warm and cool light that travels across the panel. No blur filter, because the gradient is already soft. */
.hero-wash {
  position: absolute;
  width: 46rem;
  aspect-ratio: 1;
  border-radius: 50%;
}

.hero-wash-gold {
  top: -15rem;
  left: 1rem;
  background: radial-gradient(circle, rgba(180, 138, 69, .17), rgba(180, 138, 69, 0) 68%);
  animation: wash-drift-gold 53s ease-in-out infinite;
}

.hero-wash-blue {
  bottom: -20rem;
  left: -9rem;
  background: radial-gradient(circle, rgba(21, 62, 99, .1), rgba(21, 62, 99, 0) 68%);
  animation: wash-drift-blue 71s ease-in-out infinite;
}

@keyframes wash-drift-gold {
  0% { transform: translate3d(-4%, 0, 0) scale(1); }
  50% { transform: translate3d(11%, 7%, 0) scale(1.15); }
  100% { transform: translate3d(-4%, 0, 0) scale(1); }
}

@keyframes wash-drift-blue {
  0% { transform: translate3d(0, 4%, 0) scale(1.09); }
  50% { transform: translate3d(-10%, -8%, 0) scale(1); }
  100% { transform: translate3d(0, 4%, 0) scale(1.09); }
}

.hero-layout {
  position: relative;
  display: grid;
  min-height: min(700px, calc(100svh - 8.65rem));
  grid-template-columns: 1.08fr .92fr;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  max-width: 49rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(4rem, 9vw, 8rem) 4rem clamp(4rem, 8vw, 7rem) 0;
}

/* The hero copy enters in reading order. The headline lines carry the middle of the cascade. */
.hero-copy > .eyebrow,
.hero-copy > .hero-lede,
.hero-copy > .button {
  animation: hero-copy-in .7s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-copy > .eyebrow {
  animation-delay: .05s;
}

.hero-copy > .hero-lede {
  animation-delay: .47s;
}

.hero-copy > .button {
  animation-delay: .57s;
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  color: var(--blue-deep);
}

/*
 * One headline line per mask. The padding keeps descender room inside the mask.
 * The negative margin removes that padding from the layout again.
 */
.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: .14em;
  margin-bottom: -.14em;
}

.hero-line > span {
  display: block;
  animation: hero-line-rise .85s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-line:nth-child(1) > span { animation-delay: .11s; }
.hero-line:nth-child(2) > span { animation-delay: .19s; }
.hero-line:nth-child(3) > span { animation-delay: .27s; }
.hero-line:nth-child(4) > span { animation-delay: .35s; }

@keyframes hero-line-rise {
  from { transform: translateY(120%); }
  to { transform: translateY(0); }
}

.hero-lede {
  max-width: 47rem;
  margin-bottom: 1.8rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.hero-image {
  position: relative;
  min-height: 34rem;
  margin: 0 calc((100vw - min(var(--shell), calc(100vw - 3rem))) / -2) 0 0;
  overflow: hidden;
}

.hero-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(21, 62, 99, .14), transparent 45%);
}

/* The portrait drifts on its own. A hover rule would never run on a touch device. */
.hero-image img {
  height: 100%;
  object-fit: cover;
  animation: hero-image-drift 34s ease-in-out infinite;
}

@keyframes hero-image-drift {
  0% { transform: scale(1.005) translate3d(0, 0, 0); }
  50% { transform: scale(1.045) translate3d(-.8%, -.7%, 0); }
  100% { transform: scale(1.005) translate3d(0, 0, 0); }
}

.hero-image figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1;
  padding: .45rem .65rem;
  color: var(--white);
  background: rgba(12, 42, 69, .78);
  font: 700 .65rem var(--sans);
  letter-spacing: .04em;
}

.category-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.category-index a {
  position: relative;
  display: grid;
  min-height: 7.5rem;
  align-content: center;
  padding: 1.6rem clamp(1rem, 2.4vw, 2.4rem);
  border-right: 1px solid var(--line);
  color: var(--blue-deep);
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}

.category-index a:last-child {
  border-right: 0;
}

.category-index a:nth-child(3n) {
  border-right: 0;
}

.category-index a:nth-child(-n + 3) {
  border-bottom: 1px solid var(--line);
}

.category-index a::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}

.category-index a:hover {
  color: var(--white);
  background: var(--blue);
}

.category-index a:hover::before {
  transform: scaleX(1);
}

.category-index strong {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.9vw, 1.75rem);
  line-height: 1.05;
}

.founder-section {
  padding: clamp(5rem, 9vw, 9rem) 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.founder-image {
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 5px solid var(--red);
}

.founder-image img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 28%;
  filter: none;
}

.founder-image figcaption {
  margin-top: .85rem;
  color: var(--ink-soft);
  font: 700 .7rem/1.45 var(--sans);
}

.founder-copy {
  max-width: 42rem;
}

.founder-copy h2 {
  margin-bottom: 1.4rem;
  color: var(--blue-deep);
}

.founder-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.founder-copy .founder-lede {
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.founder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.8rem;
}

.search-section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  color: var(--white);
  background: var(--blue);
}

.search-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.search-copy .eyebrow {
  color: #f2bdc7;
}

.search-copy h2 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
}

.search-copy > p:last-child {
  color: var(--blue-soft);
}

.search-workspace {
  align-self: center;
  padding: clamp(1.3rem, 3vw, 2.3rem);
  color: var(--ink);
  background: var(--white);
  box-shadow: 14px 16px 0 var(--blue-deep);
}

.search-form label {
  display: block;
  margin-bottom: .55rem;
  color: var(--blue-deep);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
}

.search-row input,
.search-row select {
  min-width: 0;
  min-height: 3.1rem;
  padding: .75rem .85rem;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 0;
  background: var(--paper);
  font-family: var(--sans);
  font-size: .85rem;
}

.results-summary {
  margin: 0 0 .4rem;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 700;
}

.results-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .4rem 1.5rem;
}

.results-header a {
  font-size: .85rem;
}

.search-page-shell {
  max-width: 52rem;
}

.search-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1.4rem;
  margin-top: .9rem;
  padding: 0;
  border: 0;
}

.search-filters legend {
  padding: 0;
  margin-right: .4rem;
  color: var(--blue-deep);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.search-filters label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.search-filters input {
  width: 1rem;
  height: 1rem;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--blue-deep);
  accent-color: var(--red-deep);
}

.result-list mark {
  padding: 0 .1em;
  color: inherit;
  background: #f3d67a;
}

.results-footer .button {
  font-size: .8rem;
}

.results-footer {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.8rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.results-footer a {
  font-size: .85rem;
}

.search-results:not(:empty) {
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.search-status {
  margin: 0 0 .7rem;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 700;
}

.search-error {
  color: var(--red-deep);
}

.result-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.result-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .15rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
  animation: result-in .25s ease both;
}

@keyframes result-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-list span {
  color: var(--red-deep);
  font: 800 .62rem var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.result-list a {
  color: var(--blue-deep);
  font-weight: 700;
}

.featured-section,
.page-section,
.format-section {
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 4px solid var(--blue);
}

.section-heading h2 {
  margin-bottom: 0;
}

.feature-layout {
  display: grid;
  grid-template-columns: 1.38fr .62fr;
  gap: 1.2rem;
}

.primary-feature {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 31rem;
  color: var(--white);
  background: var(--blue-deep);
}

.primary-feature img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.75) contrast(1.05);
}

.primary-feature > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(1.6rem, 4vw, 3.5rem);
}

.primary-feature .item-type {
  color: #f2bdc7;
}

.feature-notes .item-type {
  color: var(--red-deep);
}

.primary-feature h3 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
}

.primary-feature p:not(.item-type) {
  color: var(--blue-soft);
}

.primary-feature .arrow-link {
  margin-top: auto;
  padding-top: 2rem;
  color: var(--white);
}

.feature-notes {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1.2rem;
}

.feature-notes article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 5px solid var(--red);
  background: var(--paper-deep);
}

.feature-notes h3 {
  margin-bottom: .7rem;
}

.feature-notes p:not(.item-type) {
  color: var(--ink-soft);
}

.feature-notes .arrow-link {
  margin-top: auto;
  padding-top: 1rem;
}

.instagram-section {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  border-top: 6px solid var(--red);
  color: var(--white);
  background: var(--blue-deep);
}

.instagram-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr) auto;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.instagram-layout .eyebrow {
  color: #f2bdc7;
}

.instagram-layout h2,
.instagram-layout p {
  margin-bottom: 0;
}

.instagram-layout h2 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
}

.instagram-layout > p {
  max-width: 38rem;
  color: var(--blue-soft);
  font-size: 1.1rem;
}

.instagram-layout .button {
  justify-self: end;
}

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.6rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.instagram-slot {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 18rem;
  background: var(--white);
  overflow: hidden;
}

.instagram-slot [data-instagram-embed]:empty {
  display: none;
}

.instagram-slot .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.instagram-real-link {
  display: block;
  padding: .9rem 1.1rem;
  color: var(--blue-deep);
  font: 800 .72rem var(--sans);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-top: 1px solid var(--line);
}

.instagram-real-link:hover {
  color: var(--red-deep);
}

.instagram-sync-note {
  margin-top: 1.2rem;
  color: var(--blue-soft);
  font-size: .8rem;
}

.instagram-sync-note code {
  color: var(--white);
}

.about-brief {
  padding: clamp(5rem, 9vw, 9rem) 0;
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}

.about-brief-layout {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.about-brief h2 {
  max-width: 15ch;
  margin-bottom: 0;
}

.about-brief-layout > div:last-child {
  padding-top: 2.2rem;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.about-brief .button {
  margin-top: 1.2rem;
}

.support-efel {
  padding: 4.5rem 0;
  color: var(--white);
  background: var(--red-deep);
}

.support-layout {
  display: grid;
  grid-template-columns: 1fr .8fr auto;
  align-items: center;
  gap: 3rem;
}

.support-layout .eyebrow {
  color: #f2bdc7;
}

.support-layout h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.support-layout > p {
  margin-bottom: 0;
  color: #f8e1e5;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0;
  color: var(--white);
  background: var(--blue-deep);
}

.page-hero::after {
  position: absolute;
  top: -15rem;
  right: -8rem;
  width: 37rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, .025), 0 0 0 10rem rgba(255, 255, 255, .018);
}

.page-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 4rem;
}

.page-hero h1 {
  max-width: 12ch;
  margin-bottom: 0;
}

.page-hero .eyebrow {
  color: #f2bdc7;
}

.page-hero-layout > p {
  max-width: 38rem;
  margin-bottom: .5rem;
  color: var(--blue-soft);
  font-size: 1.2rem;
}

.page-hero-issues {
  background: var(--blue);
}

.page-hero-publications {
  background: #1c3348;
}

.page-hero-media {
  background: #1c3348;
}

.page-hero-programs {
  background: var(--red-deep);
}

.page-hero-resources {
  background: var(--red-deep);
}

.page-hero-timeline {
  background: #172a3a;
}

.alt-section {
  border-block: 1px solid var(--line);
  background: var(--paper-deep);
}

.statement-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.statement-layout h2 {
  max-width: 14ch;
}

.statement-copy {
  padding-top: 2.2rem;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.legal-note {
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--gold);
  background: var(--white);
  font-size: .95rem;
}

.numbered-ledger {
  padding: 0;
  margin: 0;
  border-top: 4px solid var(--blue);
  list-style: none;
}

.numbered-ledger li {
  display: grid;
  grid-template-columns: 5rem 1fr 1.25fr;
  align-items: baseline;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.numbered-ledger span {
  color: var(--red-deep);
  font: 800 .7rem var(--sans);
  letter-spacing: .1em;
}

.numbered-ledger h3,
.numbered-ledger p {
  margin: 0;
}

.numbered-ledger p {
  color: var(--ink-soft);
}

.leadership-section {
  color: var(--white);
  background: var(--blue);
}

.leadership-layout {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.leadership-layout figure {
  position: relative;
  max-width: 28rem;
  margin: 0;
}

.leadership-layout figure::after {
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, .35);
  content: "";
}

.leadership-layout img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(.8);
}

.leadership-layout .eyebrow {
  color: #f2bdc7;
}

.leadership-layout h2 {
  margin-bottom: .7rem;
}

.leadership-layout .role {
  color: #e8c98f;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.leadership-layout > div > p:not(.eyebrow, .role) {
  max-width: 40rem;
  color: var(--blue-soft);
}

.leadership-layout .arrow-link {
  color: var(--white);
}

/*
 * About view: a broadsheet dossier.
 * The organization publishes a monthly report, a weekly column, and a newsletter.
 * The page therefore reads as typeset print: rules, plates, clauses, and a masthead.
 */

.about-view {
  font-family: var(--edit-serif);
}

.about-view h1,
.about-view h2,
.about-view h3,
.about-view blockquote p {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -.015em;
}

/* Use strong section headings for legibility. */
.about-view h2,
.about-view h3,
.roster-name {
  font-weight: 700;
  font-optical-sizing: none;
  font-variation-settings: "opsz" 11;
}

.about-view blockquote p {
  font-weight: 500;
  font-optical-sizing: none;
  font-variation-settings: "opsz" 14;
}

/* Shared editorial furniture ---------------------------------------------- */

.chapter-kicker {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .9rem;
  color: var(--red-deep);
  font: 700 .66rem var(--edit-sans);
  letter-spacing: .22em;
  text-transform: uppercase;
}

.chapter-kicker::before {
  width: 1.8rem;
  height: 1px;
  content: "";
  background: var(--red);
}

.about-chapter {
  padding: clamp(3.25rem, 6.5vw, 6rem) 0;
  border-bottom: 1px solid var(--line);
}

.chapter-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem 2.5rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.chapter-head h2,
.chapter-grid h2 {
  max-width: 24ch;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.04;
}

.chapter-hint {
  margin: 0;
  color: var(--ink-soft);
  font: 400 .78rem var(--edit-sans);
  letter-spacing: .04em;
}

/* Archival plate: small, framed, captioned. Never a hero. */

.plate {
  position: relative;
  max-width: 14rem;
  margin: 0;
}

.plate::before {
  position: absolute;
  inset: .5rem -.5rem -.5rem .5rem;
  border: 1px solid var(--line);
  content: "";
}

.plate img {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--ink);
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.06) sepia(.16);
  transition: filter .5s ease;
}

.plate-tall img {
  aspect-ratio: 3 / 4;
}

.plate:hover img {
  filter: grayscale(.15) contrast(1.02) sepia(.03);
}

.plate figcaption {
  position: relative;
  margin-top: .6rem;
  padding-top: .5rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font: 400 .62rem/1.45 var(--edit-sans);
  letter-spacing: .09em;
  text-transform: uppercase;
}

/* Masthead ---------------------------------------------------------------- */

.about-masthead {
  position: relative;
  padding: clamp(2.75rem, 6vw, 5.5rem) 0 clamp(1.75rem, 3.5vw, 3rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 82% -10%, rgba(180, 138, 69, .16), transparent 60%),
    var(--paper);
}

.about-masthead::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  content: "";
}

.masthead-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .7rem;
  padding-bottom: 1.1rem;
  margin-bottom: clamp(1.5rem, 3.5vw, 2.75rem);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font: 500 .66rem var(--edit-sans);
  letter-spacing: .22em;
  text-transform: uppercase;
}

.masthead-kicker i {
  color: var(--gold);
  font-size: .5rem;
  font-style: normal;
}

.masthead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.about-masthead h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 500;
  line-height: .84;
  letter-spacing: -.035em;
}

.about-masthead h1 em {
  display: block;
  padding-left: .06em;
  color: var(--red-deep);
  font-style: italic;
  font-weight: 400;
}

.masthead-lede {
  padding-left: clamp(0rem, 2.5vw, 2.5rem);
  border-left: 1px solid var(--line);
}

.masthead-drop {
  margin: 0 0 1.6rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.55;
}

.colophon {
  margin: 0;
}

.colophon div {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  padding: .45rem 0;
  border-bottom: 1px dotted var(--line);
}

.colophon dt {
  color: var(--ink-soft);
  font: 500 .62rem var(--edit-sans);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.colophon dd {
  margin: 0 0 0 auto;
  color: var(--blue-deep);
  font-family: var(--display);
  font-size: 1.02rem;
  font-variant-numeric: tabular-nums;
}

/* Mission ---------------------------------------------------------------- */

.chapter-grid {
  display: grid;
  grid-template-columns: minmax(0, 14rem) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
}

.chapter-rail {
  position: relative;
}

.lede-drop {
  margin-bottom: 1.1rem;
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.6;
}

.lede-drop::first-letter {
  float: left;
  padding: .04em .1em 0 0;
  color: var(--red-deep);
  font-family: var(--display);
  font-size: 4.1em;
  line-height: .76;
}

.chapter-body > p {
  max-width: 62ch;
  color: var(--ink-soft);
}

.chapter-body > p strong {
  color: var(--ink);
}

.figure-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 1.4rem 0;
  margin: 2rem 0 1.6rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  list-style: none;
}

.figure-row b {
  display: block;
  margin-bottom: .3rem;
  color: var(--blue-deep);
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.figure-row span {
  display: block;
  max-width: 22ch;
  color: var(--ink-soft);
  font: 400 .68rem/1.5 var(--edit-sans);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.charter-note {
  max-width: 62ch;
  padding-left: 1.1rem;
  border-left: 2px solid var(--gold);
  color: var(--ink-soft);
  font-size: .92rem;
}

.charter-note b {
  margin-right: .5rem;
  color: var(--red-deep);
  font: 700 .62rem var(--edit-sans);
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* Chapter 02 — principles ------------------------------------------------ */

.about-principles-section {
  background:
    linear-gradient(180deg, var(--paper-deep) 0%, var(--paper) 70%);
}

.principle-tabs {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--ink);
  scrollbar-width: none;
}

.principle-tabs::-webkit-scrollbar {
  display: none;
}

.principle-tabs button {
  display: flex;
  flex: 1 0 auto;
  align-items: baseline;
  gap: .55rem;
  padding: .85rem 1.2rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: var(--ink-soft);
  background: transparent;
  font: 500 .74rem var(--edit-sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease, border-color .25s ease, background .2s ease;
}

.principle-tabs button b {
  color: var(--gold);
  font-family: var(--display);
  font-size: .84rem;
  transition: color .2s ease;
}

.principle-tabs button:hover {
  color: var(--ink);
  background: color-mix(in srgb, var(--white) 60%, transparent);
}

.principle-tabs button[aria-selected="true"] {
  border-bottom-color: var(--red);
  color: var(--blue-deep);
  background: var(--white);
}

.principle-tabs button[aria-selected="true"] b {
  color: var(--red);
}

.principle-panels {
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--white);
}

.principle-panel {
  display: grid;
  grid-template-columns: minmax(0, 13rem) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: start;
}

.principle-panel.is-active {
  animation: panel-rise .45s cubic-bezier(.2, .7, .3, 1) both;
}

@keyframes panel-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.panel-copy h3 {
  max-width: 26ch;
  margin-bottom: 1.1rem;
  color: var(--blue-deep);
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  line-height: 1.15;
}

.clauses {
  padding: 0;
  margin: 0;
  list-style: none;
}

.clauses li {
  position: relative;
  padding: 0 0 0 1.4rem;
  color: var(--ink-soft);
}

.clauses li + li {
  margin-top: .8rem;
}

.clauses li::before {
  position: absolute;
  top: .62em;
  left: .1rem;
  width: .38rem;
  height: .38rem;
  content: "";
  background: var(--red);
  border-radius: 50%;
}

/* Pull quote ------------------------------------------------------------- */

.about-quote {
  position: relative;
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(ellipse at 15% 0, rgba(180, 138, 69, .2), transparent 55%),
    var(--blue-deep);
}

.about-quote::before {
  position: absolute;
  top: -3.5rem;
  right: 2rem;
  color: rgba(255, 253, 247, .07);
  content: "”";
  font-family: var(--display);
  font-size: 26rem;
  line-height: 1;
  pointer-events: none;
}

.quote-grid {
  position: relative;
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.quote-plate {
  margin: 0;
}

.quote-plate img {
  aspect-ratio: 1;
  border: 1px solid rgba(255, 253, 247, .35);
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}

.about-quote blockquote {
  margin: 0;
}

.about-quote blockquote p {
  margin: 0 0 1.3rem;
  max-width: 34ch;
  font-size: clamp(1.5rem, 3.4vw, 2.85rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.14;
  text-wrap: balance;
}

.about-quote cite {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .5rem .9rem;
  font: 700 .68rem var(--edit-sans);
  font-style: normal;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.about-quote cite span {
  color: var(--gold);
  font-weight: 400;
  letter-spacing: .12em;
}

/* Chapter 03 — masthead roster ------------------------------------------ */

.roster {
  border-top: 1px solid var(--ink);
}

.roster-entry {
  border-bottom: 1px solid var(--line);
}

.roster-entry summary {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) auto 1.6rem;
  align-items: center;
  gap: 1.25rem;
  padding: .95rem .6rem;
  margin: 0 -.6rem;
  cursor: pointer;
  list-style: none;
  transition: background .25s ease;
}

.roster-entry summary::-webkit-details-marker {
  display: none;
}

.roster-entry summary:hover {
  background: linear-gradient(90deg, var(--paper-deep), transparent 85%);
}

.roster-entry summary img {
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid var(--ink);
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) sepia(.14);
  transition: filter .45s ease;
}

.roster-entry[open] summary img,
.roster-entry summary:hover img {
  filter: none;
}

/* A monogram stands in until a headshot arrives. */
.roster-monogram {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px dashed var(--line);
  color: var(--ink-soft);
  background: var(--paper-deep);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .04em;
  place-items: center;
}

.roster-name {
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  color: var(--blue-deep);
  transition: transform .25s ease;
}

.roster-entry summary:hover .roster-name {
  transform: translateX(4px);
}

.roster-role {
  color: var(--ink-soft);
  font: 500 .64rem var(--edit-sans);
  letter-spacing: .15em;
  text-align: right;
  text-transform: uppercase;
}

.roster-entry summary i {
  position: relative;
  justify-self: end;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.roster-entry summary i::before,
.roster-entry summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: .55rem;
  height: 1px;
  content: "";
  background: var(--red-deep);
  transform: translate(-50%, -50%);
  transition: transform .3s ease, opacity .3s ease;
}

.roster-entry summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.roster-entry[open] summary i::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.roster-bio {
  padding: 0 1.6rem 1.5rem 4.75rem;
  animation: bio-in .4s ease both;
}

@keyframes bio-in {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: none; }
}

.roster-bio p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .96rem;
}

.roster-bio p + p {
  margin-top: .7rem;
}

/* Set open biographies as two newspaper columns divided by a hairline. */
@supports (columns: 2) {
  .roster-bio {
    columns: 2;
    column-gap: clamp(2rem, 4vw, 3.5rem);
    column-rule: 1px solid var(--line);
    orphans: 2;
    widows: 2;
  }

  .roster-bio p {
    break-inside: avoid;
  }
}

/* Chapter 05 — colophon ------------------------------------------------- */

.about-colophon {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--ink);
  background: var(--paper-deep);
}

.colophon-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
}

.colophon-grid h2 {
  max-width: 20ch;
  margin-bottom: 1.2rem;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.08;
}

.colophon-links ul {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.colophon-links li a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem .3rem .8rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue-deep);
  font: 500 .74rem var(--edit-sans);
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: padding-left .25s ease, color .2s ease, background .2s ease;
}

.colophon-links li a:hover {
  padding-left: .6rem;
  color: var(--red-deep);
  background: color-mix(in srgb, var(--white) 70%, transparent);
}

.colophon-signup .signup-note {
  color: var(--ink-soft);
}

.colophon-signup .signup-status:not(:empty) {
  margin-top: .7rem;
  color: var(--blue-deep);
  font-weight: 700;
}

/* Load choreography ----------------------------------------------------- */

.about-view[data-view] .masthead-kicker,
.about-view[data-view] .about-masthead h1,
.about-view[data-view] .masthead-lede {
  animation: masthead-in .7s cubic-bezier(.2, .7, .3, 1) both;
}

.about-view[data-view] .about-masthead h1 {
  animation-delay: .06s;
}

.about-view[data-view] .masthead-lede {
  animation-delay: .14s;
}

@keyframes masthead-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .about-view *,
  .about-view *::before,
  .about-view *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .masthead-grid,
  .chapter-grid,
  .colophon-grid {
    grid-template-columns: 1fr;
  }

  .masthead-lede {
    padding-left: 0;
    border-left: 0;
  }

  .plate,
  .plate-tall {
    max-width: 11rem;
  }

  .quote-grid {
    grid-template-columns: 5.5rem minmax(0, 1fr);
  }

  .roster-entry summary {
    grid-template-columns: 3rem minmax(0, 1fr) 1.4rem;
    gap: .9rem;
  }

  .roster-role {
    grid-column: 2;
    text-align: left;
  }

  .roster-bio {
    padding-left: 3.9rem;
  }

  .roster-bio,
  .about-view .roster-bio {
    columns: 1;
    column-rule: 0;
  }
}

@media (max-width: 640px) {
  .figure-row {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .principle-panel {
    grid-template-columns: 1fr;
  }

  .panel-rail .plate {
    max-width: 9.5rem;
  }
}

.timeline-preview {
  overflow: hidden;
}

.milestone-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(12rem, 1fr));
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scrollbar-color: var(--red) var(--paper-deep);
}

.milestone-row article {
  position: relative;
  min-height: 17rem;
  padding: 2.8rem 1.4rem 1.4rem;
  border-top: 2px solid var(--blue);
  border-right: 1px solid var(--line);
}

.milestone-row article::before {
  position: absolute;
  top: -.45rem;
  left: 1.4rem;
  width: .8rem;
  aspect-ratio: 1;
  border: 2px solid var(--red);
  border-radius: 50%;
  content: "";
  background: var(--paper);
}

.milestone-row time {
  color: var(--red-deep);
  font: 800 .72rem var(--sans);
  letter-spacing: .08em;
}

.milestone-row h3 {
  margin: 1.1rem 0 .7rem;
  font-size: 1.35rem;
}

.milestone-row p {
  color: var(--ink-soft);
  font-size: .9rem;
}

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

.locations-layout {
  display: grid;
  grid-template-columns: .55fr 1fr .45fr;
  gap: 4rem;
}

.location-list {
  border-top: 4px solid var(--blue);
}

.location-list article {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.location-list h3,
.location-list p {
  margin: 0;
}

.location-list h3 {
  font-size: 1.25rem;
}

.location-list p {
  color: var(--ink-soft);
}

.page-links {
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--red);
}

.page-links a {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.subject-list {
  border-top: 4px solid var(--blue);
}

.subject-details {
  border-bottom: 1px solid var(--line);
}

.subject-details summary {
  display: grid;
  grid-template-columns: minmax(15rem, 1fr) 1.25fr 2rem;
  align-items: center;
  gap: 2rem;
  min-height: 7.3rem;
  padding: 1rem 0;
  cursor: pointer;
  list-style: none;
  transition: padding .18s ease, color .18s ease;
}

.subject-details summary::-webkit-details-marker {
  display: none;
}

.subject-details summary:hover {
  padding-inline: 1rem;
  color: var(--white);
  background: var(--blue);
}

.subject-details[open] summary i {
  transform: rotate(45deg);
}

.subject-list span {
  color: var(--red-deep);
  font: 800 .68rem var(--sans);
}

.subject-list h3,
.subject-list p,
.subject-list i {
  margin: 0;
}

.subject-list p {
  color: var(--ink-soft);
}

.subject-details summary:hover p {
  color: var(--blue-soft);
}

.subject-list i {
  color: var(--red);
  font: normal 1.2rem var(--sans);
  transition: transform .18s ease;
}

.subject-panel {
  display: flex;
  flex-direction: column;
  padding: 0 0 1.5rem;
}

.subject-panel a {
  padding: .5rem 0;
  color: var(--blue);
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
}

.subject-panel a:hover {
  color: var(--red-deep);
}

.subject-panel a.arrow-link {
  margin-top: .5rem;
  color: var(--red-deep);
  font-family: var(--sans);
  font-size: .8rem;
}

.resource-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.resource-layout > div:first-child p:last-child {
  max-width: 30rem;
  color: var(--ink-soft);
}

.resource-ledger {
  border-top: 4px solid var(--red);
}

.resource-ledger a {
  display: grid;
  grid-template-columns: 7rem 1fr 2rem;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.resource-ledger span {
  color: var(--red-deep);
  font: 800 .67rem var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.resource-ledger strong {
  font-family: var(--serif);
  font-size: 1.15rem;
}

.resource-ledger i {
  color: var(--red);
  font: normal 1rem var(--sans);
}

.archive-section {
  padding: clamp(5rem, 9vw, 9rem) 0;
  color: var(--white);
  background: var(--blue-deep);
}

.archive-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.archive-intro .eyebrow {
  color: #f2bdc7;
}

.archive-intro > p:not(.eyebrow) {
  max-width: 38rem;
  color: var(--blue-soft);
}

.archive-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.2rem 0;
  border-block: 1px solid rgba(255, 255, 255, .2);
  color: var(--blue-soft);
  font-size: .7rem;
  text-transform: uppercase;
}

.archive-stats strong {
  display: block;
  color: var(--white);
  font: 700 1.45rem var(--serif);
  letter-spacing: normal;
}

.archive-highlights {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.archive-highlights li {
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  color: var(--blue-soft);
  font-size: .9rem;
}

.archive-highlights li:last-child {
  border-bottom: 0;
}

.archive-highlights span {
  margin-right: .5rem;
  color: #f2bdc7;
  font: 800 .65rem var(--sans);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.archive-collections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  align-self: start;
  background: rgba(255, 255, 255, .22);
}

.archive-collections a {
  display: flex;
  min-height: 13rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
  transition: color .18s ease, background .18s ease;
}

.archive-collections a:hover {
  color: var(--white);
  background: var(--red-deep);
}

.archive-collections span,
.archive-collections small {
  font: 800 .65rem var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.archive-collections span {
  margin-bottom: auto;
  color: var(--red-deep);
}

.archive-collections a:hover span {
  color: #f2bdc7;
}

.archive-collections strong {
  margin-bottom: .5rem;
  font-size: 1.25rem;
}

.archive-collections small {
  opacity: .7;
}

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

.format-listen {
  background: var(--paper-deep);
}

.format-watch {
  color: var(--white);
  background: #1c3348;
}

.format-layout {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.format-layout header h2 {
  margin-bottom: .9rem;
}

.format-layout header > p:last-child {
  max-width: 24rem;
  color: var(--ink-soft);
}

.format-watch header > p:last-child {
  color: var(--blue-soft);
}

.format-items {
  border-top: 4px solid var(--blue);
}

.format-watch .format-items {
  border-color: var(--red);
}

.format-watch .format-items a {
  border-color: rgba(255, 255, 255, .18);
}

.format-watch .format-items p {
  color: #f2bdc7;
}

.format-watch .format-items span {
  color: var(--blue-soft);
}

.format-items a {
  display: grid;
  grid-template-columns: .6fr 1fr auto;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.format-items p,
.format-items h3,
.format-items span {
  margin: 0;
}

.format-items p,
.format-items span {
  font: 800 .67rem var(--sans);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.format-items p {
  color: var(--red-deep);
}

.format-items h3 {
  font-size: 1.4rem;
}

.format-items span {
  color: var(--blue);
}

.video-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  border: 1px solid rgba(255, 255, 255, .18);
}

.video-image {
  position: relative;
  display: block;
  min-height: 25rem;
  color: inherit;
  text-decoration: none;
}

.video-image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.75) brightness(.78);
}

.video-image span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 4.5rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--white);
  font: 800 .7rem var(--sans);
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.video-feature > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
}

.video-feature .item-type {
  color: var(--white);
}

.video-feature > div:last-child > p:not(.item-type) {
  color: var(--blue-soft);
}

.quiet-audio-label {
  margin: 1.6rem 0 .5rem;
  color: var(--ink-soft);
  font: 800 .67rem var(--sans);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.quiet-audio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.2rem;
  padding: 0;
  list-style: none;
}

.quiet-audio-list a {
  color: var(--ink-soft);
  font-size: .85rem;
  text-decoration: underline;
  text-decoration-color: var(--line);
}

.quiet-audio-list a:hover {
  color: var(--red-deep);
}

.speech-collection {
  margin-top: 2.5rem;
}

.speech-collection h3 {
  margin-bottom: .4rem;
  color: var(--white);
  font-size: 1.5rem;
}

.speech-collection > p {
  margin-bottom: 1rem;
  color: var(--blue-soft);
}

.subscribe-section {
  padding: 4.5rem 0;
  color: var(--white);
  background: var(--red-deep);
}

.subscribe-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 6rem);
}

.subscribe-layout h2 {
  margin-bottom: 0;
}

.subscribe-layout .eyebrow {
  color: #f2bdc7;
}

.subscribe-copy > p:last-child {
  max-width: 31rem;
  margin: 1rem 0 0;
  color: #f7dce1;
}

.subscribe-form {
  min-width: 0;
}

.signup-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr) auto;
  align-items: end;
  gap: .75rem;
}

.signup-controls label {
  display: grid;
  gap: .45rem;
  color: #f7dce1;
  font: 800 .66rem var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.signup-controls input {
  width: 100%;
  min-height: 3.15rem;
  padding: .75rem .9rem;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  font: 500 1rem var(--sans);
}

.signup-controls .button {
  min-height: 3.15rem;
  white-space: nowrap;
}

.signup-note {
  margin: .8rem 0 0;
  color: #f2bdc7;
  font-size: .68rem;
}

.signup-status {
  margin: 0;
  color: var(--white);
  font: 700 clamp(1.15rem, 2vw, 1.45rem) var(--serif);
}

.program-ledger {
  border-top: 4px solid var(--blue);
}

.program-ledger article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}

.program-ledger h3,
.program-ledger p {
  margin-bottom: .4rem;
}

.program-ledger article > div > p:last-child {
  max-width: 45rem;
  color: var(--ink-soft);
}

.program-ledger a {
  color: var(--blue);
  font: 800 .7rem var(--sans);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.next-event-section {
  padding: 0;
  color: var(--white);
  background: var(--blue);
}

.next-event-layout {
  display: grid;
  min-height: 37rem;
  grid-template-columns: 1fr 1fr;
}

.next-event-layout > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(3rem, 7vw, 6rem) clamp(3rem, 7vw, 6rem) clamp(3rem, 7vw, 6rem) 0;
}

.next-event-layout .eyebrow {
  color: #f2bdc7;
}

.next-event-layout > div > p:not(.eyebrow) {
  color: var(--blue-soft);
}

.upcoming-event-card {
  margin: 1.2rem 0 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.upcoming-event-card h3 {
  margin-bottom: .7rem;
}

.upcoming-event-card > p:not(.item-type) {
  margin-bottom: 1.2rem;
  color: var(--blue-soft);
}

.next-event-layout figure {
  position: relative;
  margin: 0 calc((100vw - min(var(--shell), calc(100vw - 3rem))) / -2) 0 0;
}

.next-event-layout img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) contrast(1.05);
}

.next-event-layout figcaption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: .45rem .65rem;
  background: rgba(12, 42, 69, .82);
  font: 700 .65rem var(--sans);
}

.past-events-layout {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.past-events-layout > div:first-child > p:last-child {
  max-width: 28rem;
  color: var(--ink-soft);
}

.year-list {
  border-top: 4px solid var(--red);
}

.year-list a {
  display: grid;
  grid-template-columns: 6rem 1fr 2rem;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.year-list span {
  color: var(--red-deep);
  font: 800 .7rem var(--sans);
}

.year-list i {
  color: var(--red);
  font: normal 1rem var(--sans);
}

.timeline-hero {
  overflow: hidden;
  border-bottom: 6px solid var(--red);
  color: var(--white);
  background: var(--blue-deep);
}

.timeline-hero-layout {
  display: grid;
  min-height: clamp(34rem, 58vw, 47rem);
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.timeline-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(5rem, 9vw, 8rem) clamp(2.5rem, 6vw, 6rem) clamp(5rem, 9vw, 8rem) 0;
}

.timeline-hero-copy .eyebrow {
  color: #f2bdc7;
}

.timeline-hero-copy h1 {
  max-width: 10ch;
  margin-bottom: 1.6rem;
  font-size: clamp(3.4rem, 6.4vw, 6.6rem);
}

.timeline-hero-copy > p:not(.eyebrow) {
  max-width: 38rem;
  color: var(--blue-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.timeline-hero-copy .button {
  margin-top: 1rem;
}

.timeline-hero-image {
  position: relative;
  min-height: 34rem;
  margin: 0 calc((100vw - min(var(--shell), calc(100vw - 3rem))) / -2) 0 0;
  overflow: hidden;
  background: #061827;
}

.timeline-hero-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(12, 42, 69, .28), transparent 40%);
}

/* The portrait drifts on its own, to match the home hero. A hover rule never runs on a touch device. */
.timeline-hero-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-image-drift 34s ease-in-out infinite;
}

.timeline-hero-image figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1;
  max-width: 27rem;
  padding: .55rem .7rem;
  color: var(--white);
  background: rgba(8, 31, 51, .84);
  font: 700 .68rem/1.45 var(--sans);
}

.timeline-story {
  overflow: clip;
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.timeline-intro {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(5rem, 9vw, 9rem) 0 clamp(3.5rem, 6vw, 6rem);
}

.timeline-intro h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

.timeline-intro > p {
  max-width: 39rem;
  margin-bottom: .5rem;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.timeline-era-index {
  display: grid;
  grid-template-columns: repeat(5, minmax(10rem, 1fr));
  padding: 0;
  margin: 0;
  overflow-x: auto;
  border-block: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
  list-style: none;
  scrollbar-color: var(--red) var(--paper-deep);
}

.timeline-era-index li {
  display: grid;
  min-height: 10.5rem;
  align-content: end;
  padding: 0;
  border-right: 1px solid var(--line);
}

.timeline-era-index a {
  display: grid;
  min-height: 10.5rem;
  align-content: end;
  padding: 1.4rem;
  color: inherit;
  text-decoration: none;
  transition: color .18s ease, background .18s ease;
}

.timeline-era-index a:hover,
.timeline-era-index a.is-current {
  color: var(--white);
  background: var(--blue);
}

.timeline-era-index a:hover small,
.timeline-era-index a.is-current small {
  color: var(--blue-soft);
}

.timeline-era-index small,
.timeline-era-heading p,
.timeline-entry time,
.timeline-media figcaption {
  font-family: var(--sans);
}

.timeline-era-index strong {
  font: 700 1.25rem/1.05 var(--serif);
}

.timeline-era-index small {
  margin-top: .55rem;
  color: var(--ink-soft);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.timeline-era {
  padding-top: clamp(6rem, 11vw, 11rem);
}

.timeline-era-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding-bottom: 1.6rem;
  border-bottom: 4px solid var(--blue);
}

.timeline-era-heading p {
  margin-bottom: .7rem;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.timeline-era-heading h2 {
  margin-bottom: 0;
}

.timeline-entries {
  position: relative;
}

.timeline-entries::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8rem;
  width: 1px;
  content: "";
  background: var(--line);
}

.timeline-entry {
  position: relative;
  display: grid;
  grid-template-columns: 8rem minmax(0, .9fr) minmax(18rem, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
  padding: clamp(3.5rem, 7vw, 7rem) 0;
  border-bottom: 1px solid var(--line);
}

.timeline-entry::before {
  position: absolute;
  top: calc(clamp(3.5rem, 7vw, 7rem) + .2rem);
  left: calc(8rem - .42rem);
  z-index: 1;
  width: .8rem;
  aspect-ratio: 1;
  border: 2px solid var(--red);
  border-radius: 50%;
  content: "";
  background: var(--paper);
}

.timeline-entry time {
  grid-row: 1;
  grid-column: 1;
  align-self: start;
  padding-right: 1.7rem;
  color: var(--red-deep);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.timeline-copy {
  grid-row: 1;
  grid-column: 2;
  max-width: 40rem;
}

.timeline-entry:nth-child(even) .timeline-copy {
  grid-column: 3;
}

.timeline-entry--text .timeline-copy,
.timeline-entry--text:nth-child(even) .timeline-copy {
  grid-column: 2 / -1;
  max-width: 52rem;
}

.timeline-copy h3 {
  margin-bottom: 1rem;
  color: var(--blue-deep);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.timeline-copy p {
  color: var(--ink-soft);
}

.timeline-copy .timeline-summary {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.5;
}

.timeline-copy p:last-child {
  margin-bottom: 0;
}

.timeline-media {
  position: relative;
  grid-row: 1;
  grid-column: 3;
  width: 100%;
  height: clamp(23rem, 31vw, 31rem);
  margin: 0;
  overflow: hidden;
  border-bottom: 5px solid var(--red);
  background: var(--paper-deep);
}

.timeline-entry:nth-child(even) .timeline-media {
  grid-column: 2;
}

.timeline-media img,
.timeline-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-media img {
  filter: none;
  transition: transform .5s ease;
}

.timeline-entry:hover .timeline-media img {
  transform: scale(1.025);
}

.timeline-media--portrait {
  height: clamp(27rem, 37vw, 36rem);
}

.timeline-media--portrait img {
  object-position: center 22%;
}

.timeline-media--document {
  height: clamp(30rem, 42vw, 40rem);
  background: var(--white);
}

.timeline-media--document img,
.timeline-media--logo img {
  padding: clamp(1rem, 3vw, 2rem);
  object-fit: contain;
}

.timeline-media--video {
  height: clamp(30rem, 44vw, 42rem);
  background: #050505;
}

.timeline-media--video video {
  object-fit: contain;
}

.timeline-media--logo {
  background: #0a2a47;
}

.timeline-media figcaption {
  position: absolute;
  right: .8rem;
  bottom: .8rem;
  left: .8rem;
  padding: .55rem .7rem;
  color: var(--white);
  background: rgba(8, 31, 51, .86);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.timeline-distinction {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  margin-top: clamp(6rem, 11vw, 11rem);
  padding: clamp(2.5rem, 5vw, 5rem);
  border-left: 6px solid var(--gold);
  background: var(--white);
}

.timeline-distinction h2 {
  max-width: 15ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.timeline-distinction > p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.timeline-archive-callout {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 2rem;
  padding: clamp(2.5rem, 5vw, 5rem);
  border-top: 6px solid var(--red);
  color: var(--white);
  background: var(--blue-deep);
}

.timeline-archive-callout .eyebrow {
  color: #f2bdc7;
}

.timeline-archive-callout h2,
.timeline-archive-callout p {
  margin-bottom: 0;
}

.timeline-archive-callout h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.timeline-archive-callout > p {
  max-width: 32rem;
  color: var(--blue-soft);
}

.site-footer {
  padding: 5rem 0 1.5rem;
  color: #b8c8d3;
  background: #081f33;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, .6fr);
  gap: 3rem;
}

.footer-brand h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: 2.2rem;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
}

.footer-grid nav h3 {
  margin-bottom: 1rem;
  color: #e8c98f;
  font: 800 .68rem var(--sans);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-grid nav a {
  padding: .45rem 0;
  color: var(--blue-soft);
  font-size: .77rem;
  text-decoration: none;
}

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

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, .15);
  font-size: .68rem;
}

.footer-base p {
  margin: 0;
}

@media (max-width: 1100px) {
  .brand {
    min-width: 210px;
  }

  .main-navigation a {
    font-size: .62rem;
  }

  .feature-layout,
  .archive-layout {
    grid-template-columns: 1fr;
  }

  .feature-notes {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .archive-collections a {
    min-height: 10rem;
  }

  .locations-layout {
    grid-template-columns: .65fr 1fr;
  }

  .locations-layout .page-links {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .utility-inner > p {
    display: none;
  }

  .utility-inner {
    justify-content: flex-end;
  }

  .header-inner {
    min-height: 5.2rem;
  }

  .mobile-menu-button {
    display: flex;
    min-height: 3rem;
    align-items: center;
    gap: .7rem;
    padding: .7rem;
    background: transparent;
    font: 800 .72rem var(--sans);
    letter-spacing: .06em;
    cursor: pointer;
    text-transform: uppercase;
  }

  .menu-lines,
  .menu-lines::before,
  .menu-lines::after {
    display: block;
    width: 1.5rem;
    height: 2px;
    content: "";
    background: var(--blue);
  }

  .menu-lines {
    position: relative;
  }

  .menu-lines::before {
    position: absolute;
    top: -.4rem;
  }

  .menu-lines::after {
    position: absolute;
    top: .4rem;
  }

  .main-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: .8rem 1.5rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .main-navigation.is-open {
    display: flex;
  }

  .main-navigation a {
    width: 100%;
    min-height: 3.2rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .mega-menu {
    position: static;
    max-height: calc(100svh - 8rem);
    overflow-y: auto;
  }

  .mega-layout {
    grid-template-columns: 1fr 1fr;
  }

  .mega-intro {
    grid-column: 1 / -1;
  }

  .mega-intro,
  .mega-group {
    min-height: auto;
  }

  .category-index {
    grid-template-columns: 1fr 1fr;
  }

  .category-index a:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .category-index a:nth-child(2n) {
    border-right: 0;
  }

  .category-index a:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .search-layout,
  .founder-layout,
  .instagram-layout,
  .about-brief-layout,
  .statement-layout,
  .resource-layout,
  .format-layout,
  .past-events-layout {
    grid-template-columns: 1fr;
  }

  .founder-image {
    max-width: 42rem;
  }

  .instagram-layout .button {
    justify-self: start;
  }

  .support-layout,
  .subscribe-layout {
    grid-template-columns: 1fr;
  }

  .support-layout > div,
  .subscribe-layout > div {
    grid-column: auto;
  }

  .primary-feature {
    grid-template-columns: 1fr;
  }

  .primary-feature img {
    max-height: 24rem;
  }

  .page-hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline-hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .timeline-hero-copy {
    padding: 5.5rem 0 4.5rem;
  }

  .timeline-hero-image {
    min-height: 30rem;
    margin-inline: calc((100vw - min(var(--shell), calc(100vw - 3rem))) / -2);
  }

  .timeline-intro,
  .timeline-distinction,
  .timeline-archive-callout {
    grid-template-columns: 1fr;
  }

  .timeline-era-heading {
    grid-template-columns: 1fr;
  }

  .timeline-entries::before {
    left: 6rem;
  }

  .timeline-entry {
    grid-template-columns: 6rem minmax(0, 1fr);
    gap: 2rem;
  }

  .timeline-entry::before {
    left: calc(6rem - .42rem);
  }

  .timeline-copy,
  .timeline-entry:nth-child(even) .timeline-copy,
  .timeline-entry--text .timeline-copy,
  .timeline-entry--text:nth-child(even) .timeline-copy {
    grid-row: 1;
    grid-column: 2;
    max-width: 48rem;
  }

  .timeline-media,
  .timeline-entry:nth-child(even) .timeline-media {
    grid-row: 2;
    grid-column: 2;
    max-width: 42rem;
    margin-top: 1rem;
  }

  .timeline-archive-callout .button {
    justify-self: start;
  }

  .numbered-ledger li {
    grid-template-columns: 4rem 1fr;
  }

  .numbered-ledger p {
    grid-column: 2;
  }

  .subject-details summary {
    grid-template-columns: 1fr 2rem;
  }

  .subject-list p {
    display: none;
  }

  .subject-panel {
    padding-left: 0;
  }

  .video-feature {
    grid-template-columns: 1fr;
  }

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

  .program-ledger article > a {
    grid-column: 1;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, .7fr);
    gap: 1.5rem;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(var(--shell), calc(100% - 2rem));
  }

  .utility-inner nav {
    width: 100%;
    justify-content: flex-end;
  }

  .utility-inner a {
    padding-inline: .45rem;
    font-size: .58rem;
  }

  .brand-mark {
    width: 2.65rem;
  }

  .brand-logo {
    width: 11rem;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 4.5rem 0 3.5rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .hero-image {
    min-height: 27rem;
    margin: 0 -1rem;
  }

  .hero-image figcaption {
    right: .8rem;
    bottom: .8rem;
  }

  .search-row {
    grid-template-columns: 1fr;
    gap: .55rem;
  }

  .search-row input,
  .search-row select {
    border: 1px solid var(--line);
  }

  .search-workspace {
    box-shadow: 8px 9px 0 var(--blue-deep);
  }

  .feature-notes {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-layout,
  .subscribe-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .support-layout > div,
  .subscribe-layout > div {
    grid-column: auto;
  }

  .signup-controls {
    grid-template-columns: 1fr;
  }

  .signup-controls .button {
    justify-self: start;
  }

  .leadership-layout {
    grid-template-columns: 1fr;
  }

  .leadership-layout figure {
    max-width: 21rem;
  }

  .instagram-feed {
    grid-template-columns: 1fr;
  }

  .locations-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .locations-layout .page-links {
    grid-column: auto;
  }

  .archive-collections {
    grid-template-columns: 1fr;
  }

  .format-items a {
    grid-template-columns: 1fr auto;
  }

  .format-items p {
    grid-column: 1 / -1;
  }

  .next-event-layout {
    grid-template-columns: 1fr;
  }

  .next-event-layout > div {
    padding: 4.5rem 0;
  }

  .next-event-layout figure {
    min-height: 25rem;
    margin: 0 -1rem;
  }

  .timeline-hero-copy {
    padding: 4.5rem 0 3.5rem;
  }

  .timeline-hero-copy h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .timeline-hero-image {
    min-height: 23rem;
    margin-inline: -1rem;
  }

  .timeline-hero-image figcaption {
    right: .8rem;
    bottom: .8rem;
    left: .8rem;
  }

  .timeline-era-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .timeline-entries::before {
    left: 1.2rem;
  }

  .timeline-entry {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 1rem;
    padding: 3.5rem 0;
  }

  .timeline-entry::before {
    top: calc(3.5rem + .2rem);
    left: calc(1.2rem - .42rem);
  }

  .timeline-entry time {
    grid-row: 1;
    grid-column: 2;
    padding-right: 0;
  }

  .timeline-copy,
  .timeline-entry:nth-child(even) .timeline-copy,
  .timeline-entry--text .timeline-copy,
  .timeline-entry--text:nth-child(even) .timeline-copy {
    grid-row: 2;
    grid-column: 2;
  }

  .timeline-media,
  .timeline-entry:nth-child(even) .timeline-media {
    grid-row: 3;
    grid-column: 2;
    height: 22rem;
  }

  .timeline-media--portrait {
    height: 29rem;
  }

  .timeline-media--document,
  .timeline-media--video {
    height: 32rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .utility-inner a span {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .brand-copy {
    max-width: 9rem;
  }

  .mobile-menu-button > span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .mega-layout {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .mega-intro,
  .mega-group {
    grid-column: auto;
    padding: 1.25rem 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .category-index {
    grid-template-columns: 1fr;
  }

  .category-index a,
  .category-index a:nth-child(2) {
    min-height: 6.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .primary-feature > div,
  .feature-notes article {
    padding: 1.4rem;
  }

  .founder-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .founder-actions .button,
  .instagram-layout .button {
    width: 100%;
  }

  .numbered-ledger li {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
  }

  .subject-details summary {
    grid-template-columns: 1fr 1.5rem;
    gap: .7rem;
  }

  .subject-list h3 {
    font-size: 1.1rem;
  }

  .subject-panel {
    padding-left: 0;
  }

  .resource-ledger a {
    grid-template-columns: 1fr 1.5rem;
  }

  .resource-ledger span {
    grid-column: 1 / -1;
  }

  .archive-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .program-ledger article {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .year-list a {
    grid-template-columns: 4.5rem 1fr 1.5rem;
  }

  .timeline-distinction,
  .timeline-archive-callout {
    padding: 1.5rem;
  }

  .timeline-archive-callout .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-base {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Shared reading controls and the timeline position index. */
.colophon-signup .signup-controls label { color: var(--ink); }
.email-signup-frame { display: block; width: 100%; height: 1030px; border: 0; background: #fff; }
.video-player { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; background: #13283b; }
.speech-player { min-width: 0; }
.speech-player > a { display: inline-block; margin-top: 10px; }
.speech-close { display: block; margin-bottom: 10px; }
.speech-poster { position: relative; isolation: isolate; display: grid; place-content: center; justify-items: center; gap: 12px; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid var(--line); background: #13283b; color: #fff; font: inherit; font-size: 0; font-weight: 700; cursor: pointer; }
.speech-poster img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; opacity: .65; }
.speech-poster span { position: relative; z-index: 1; display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: #a61e34; font-size: 25px; }
.speech-poster::after { position: relative; z-index: 1; content: 'Play video'; font-size: 18px; }
.speech-poster:focus-visible { outline: 3px solid #a61e34; outline-offset: 3px; }
.speech-video { min-width: 0; padding-block: 20px; border-top: 1px solid var(--line); }
.speech-video h3 { margin-bottom: 20px; }
.timeline-navigation-layout { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 0 40px; align-items: start; }
.timeline-navigation-layout .timeline-intro { grid-column: 1 / -1; }
.timeline-navigation-layout .timeline-era-index { position: sticky; top: 125px; grid-template-columns: 1fr; max-height: calc(100vh - 145px); overflow-y: auto; border: 1px solid var(--line); }
.timeline-navigation-layout .timeline-era-index li, .timeline-navigation-layout .timeline-era-index a { min-height: 0; }
.timeline-navigation-layout .timeline-era-index li { border: 0; }
.timeline-navigation-layout .timeline-era-index a { padding: 14px 18px; gap: 3px; }
.timeline-navigation-layout .timeline-era-index strong { font-size: 17px; }
.timeline-navigation-layout .timeline-era-index small { margin: 0; }
.timeline-navigation-layout .timeline-eras { min-width: 0; }
.timeline-navigation-layout .timeline-entry { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.timeline-navigation-layout .timeline-entry > time { grid-column: 1 / -1; }
@media (max-width: 900px) {
 .timeline-navigation-layout { display: block; }
 .timeline-navigation-layout .timeline-era-index { position: sticky; top: 0; z-index: 4; display: flex; max-height: none; overflow: auto; }
 .timeline-navigation-layout .timeline-era-index li { flex: 0 0 150px; }
 .timeline-navigation-layout .timeline-entry { grid-template-columns: 1fr; }
}
.timeline-navigation-layout .timeline-entry::before,
.timeline-navigation-layout .timeline-entries::before { display: none; }
.timeline-navigation-layout .timeline-entry .timeline-copy { grid-column: 1; grid-row: 2; }
.timeline-navigation-layout .timeline-entry .timeline-media { grid-column: 2; grid-row: 2; }
.timeline-navigation-layout .timeline-entry--text .timeline-copy { grid-column: 1 / -1; }
@media (max-width: 900px) {
 .timeline-navigation-layout .timeline-era-index { top: 100px; }
 .timeline-navigation-layout .timeline-entry .timeline-media { grid-column: 1; grid-row: 3; }
}

.all-subjects { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px 30px; }
.all-subjects a { border-bottom: 1px solid var(--line); padding-block: 12px; text-decoration: none; }
@media(max-width: 900px) { .all-subjects { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media(max-width: 500px) { .all-subjects { grid-template-columns: 1fr; } }

.site-header { background: #fff; }
.timeline-navigation-layout .timeline-era-index { top: calc(var(--site-header-height, 100px) + 16px); }
@media(max-width: 900px) { .timeline-navigation-layout .timeline-era-index { top: var(--site-header-height, 84px); } }
