:root {
  color-scheme: light;
  --ink: #173c43;
  --muted-ink: #52696a;
  --paper: #fffefa;
  --soft-paper: #edf2ef;
  --line: #d3ddda;
  --coral: #bd563b;
  --sun: #e9bd5f;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 76px);
  background: var(--paper);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark-mark {
  width: 36px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 42px);
}

.site-header nav a,
.draft-label {
  font-size: 13px;
  text-decoration: none;
}

.site-header nav a:hover,
.site-footer .footer-links a:hover {
  color: var(--coral);
}

.draft-label {
  padding: 5px 9px;
  border: 1px solid var(--line);
  color: var(--muted-ink);
}

.hero {
  min-height: min(700px, 72svh);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 58%;
}

.hero-shade {
  background: linear-gradient(90deg, rgb(12 28 25 / 78%) 0%, rgb(12 28 25 / 42%) 52%, rgb(12 28 25 / 4%) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
  padding: 84px clamp(24px, 10vw, 150px);
}

.eyebrow,
.section-kicker,
.hero-index,
.pillar-number,
.event-date {
  font-size: 12px;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 18px;
  color: #f0d486;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 76px;
  font-weight: 400;
  line-height: 1.04;
}

.hero-intro {
  max-width: 420px;
  margin: 22px 0 32px;
  font-size: 20px;
}

.hero-byline {
  max-width: 480px;
  margin: -16px 0 30px;
  color: #edf1eb;
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.text-link-light {
  color: var(--paper);
}

.hero-index {
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  bottom: 26px;
  z-index: 1;
  color: var(--paper);
}

.hero-index span {
  padding: 0 5px;
  color: var(--sun);
}

.photo-credit {
  margin: 0;
  padding: 10px clamp(20px, 5vw, 76px);
  color: var(--muted-ink);
  background: var(--soft-paper);
  font-size: 11px;
}

.photo-credit a {
  text-underline-offset: 3px;
}

.section-wrap {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}

.intro,
.join {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 44px;
  padding-block: 94px 76px;
}

.section-kicker {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--muted-ink);
  text-transform: uppercase;
}

.section-kicker span:first-child {
  color: var(--coral);
}

.intro-copy h2,
.events h2,
.join h2 {
  max-width: 710px;
  margin: 0;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
}

.intro-copy p,
.join-content p {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted-ink);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 96px;
}

.pillar {
  min-height: 190px;
  padding: 24px 28px 28px 0;
}

.pillar + .pillar {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.pillar-number {
  color: var(--coral);
}

.pillar h3,
.event-row h3 {
  margin: 16px 0 6px;
  font-size: 18px;
}

.pillar p,
.event-row p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 14px;
}

.history {
  padding-block: 74px 94px;
  background: var(--soft-paper);
}

.history-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 44px;
}

.history h2 {
  max-width: 680px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
}

.history-intro {
  max-width: 650px;
  margin: 0 0 30px;
  color: var(--muted-ink);
}

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

.history-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
}

.history-list time,
.history-year {
  padding-top: 3px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 700;
}

.history-list h3 {
  margin: 0 0 5px;
  font-size: 17px;
}

.history-list p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 14px;
}

.history-sources,
.history-note {
  margin: 20px 0 0;
  color: var(--muted-ink);
  font-size: 12px;
}

.history-sources a {
  text-underline-offset: 3px;
}

.history-note {
  padding-left: 12px;
  border-left: 2px solid var(--sun);
}

.join {
  position: relative;
  min-height: 320px;
  align-items: start;
  overflow: hidden;
  padding-block: 90px;
}

.join-content {
  position: relative;
  z-index: 1;
}

.join-content .text-link {
  margin-top: 26px;
  color: var(--coral);
}

.join-mark {
  position: absolute;
  right: 20px;
  bottom: -135px;
  color: #f1f5f1;
  font-family: var(--serif);
  font-size: 360px;
  line-height: 1;
}

.site-footer {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(20px, 5vw, 76px);
  color: var(--paper);
  background: var(--ink);
}

.wordmark-footer {
  color: var(--paper);
}

.wordmark-footer .wordmark-mark {
  color: var(--ink);
  background: var(--sun);
}

.site-footer p {
  margin: 0;
  color: #dce5df;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.site-footer .footer-links a {
  color: #dce5df;
  font-size: 12px;
  text-underline-offset: 3px;
}

.legal-main {
  width: min(820px, 100% - 48px);
  margin-inline: auto;
  padding-block: 56px 96px;
}

.legal-warning {
  margin: 0 0 38px;
  padding: 16px 20px;
  border-left: 4px solid var(--coral);
  color: var(--ink);
  background: #fff2ed;
  font-size: 14px;
  font-weight: 700;
}

.legal-kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-main h1,
.legal-main h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
}

.legal-main h1 {
  margin: 0 0 26px;
  font-size: 52px;
}

.legal-main h2 {
  margin: 38px 0 12px;
  font-size: 28px;
}

.legal-main p,
.legal-main li {
  color: var(--muted-ink);
}

.legal-main p {
  margin-block: 10px;
}

.legal-main ul {
  padding-left: 22px;
}

.legal-pending {
  color: #8d3023 !important;
  font-weight: 700;
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding-inline: 20px;
  }

  .site-header nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    padding: 6px 0 2px;
  }

  .draft-label {
    margin-left: auto;
  }

  .hero {
    min-height: 64svh;
  }

  .hero-image {
    object-position: 55% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgb(12 28 25 / 76%) 0%, rgb(12 28 25 / 34%) 100%);
  }

  .hero-copy {
    padding: 70px 24px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-intro {
    max-width: 330px;
    font-size: 18px;
  }

  .section-wrap {
    width: min(100% - 40px, 560px);
  }

  .intro,
  .join,
  .history-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .intro,
  .join {
    padding-block: 64px;
  }

  .intro-copy h2,
  .history h2,
  .join h2 {
    font-size: 34px;
  }

  .pillars {
    grid-template-columns: 1fr;
    margin-bottom: 64px;
  }

  .pillar,
  .pillar + .pillar {
    min-height: auto;
    padding: 22px 0;
    border-left: 0;
  }

  .pillar + .pillar {
    border-top: 1px solid var(--line);
  }

  .history {
    padding-block: 58px 68px;
  }

  .history-list li {
    grid-template-columns: 66px 1fr;
    gap: 12px;
  }

  .join {
    min-height: 340px;
  }

  .join-mark {
    right: -35px;
    bottom: -90px;
    font-size: 260px;
  }

  .site-footer {
    flex-wrap: wrap;
  }

  .site-footer p {
    order: 3;
    width: 100%;
  }

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

  .legal-main {
    width: min(100% - 40px, 560px);
    padding-block: 36px 68px;
  }

  .legal-main h1 {
    font-size: 42px;
  }

  .legal-main h2 {
    font-size: 25px;
  }
}

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