@font-face {
  font-family: "Garamond Premier Pro";
  src: local("Garamond Premier Pro"), local("GaramondPremierPro-Regular");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Garamond Premier Pro";
  src: local("Garamond Premier Pro Semibold"), local("GaramondPremierPro-Smbd");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #20201e;
  --muted: #74736e;
  --rule: #d9d8d2;
  --paper: #f8f8f5;
  --page: min(1280px, calc(100% - 80px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Garamond Premier Pro", "EB Garamond", Garamond, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-header,
footer {
  width: var(--page);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.site-header {
  min-height: 124px;
  padding-top: 38px;
  border-bottom: 1px solid var(--rule);
}

.wordmark {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .18em;
  text-decoration: none;
}

nav { display: flex; gap: 42px; }

nav a,
.text-link {
  font-size: 15px;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

nav a { text-decoration: none; }
nav a:hover, nav a:focus-visible { text-decoration: underline; }

main { width: var(--page); margin-inline: auto; }

.intro {
  min-height: 700px;
  padding: 156px 0 180px;
}

.eyebrow {
  margin: 0 0 38px;
  color: var(--muted);
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: .15em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 54px;
  font-size: clamp(60px, 7.2vw, 112px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .95;
}

.intro-copy {
  max-width: 475px;
  margin: 0 0 0 42%;
  color: #494946;
  font-size: 22px;
}

.section {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.3fr);
  column-gap: clamp(56px, 8vw, 130px);
  align-items: start;
  min-height: 680px;
  padding: 110px 0 150px;
  border-top: 1px solid var(--rule);
}

.section-number {
  grid-column: 1 / -1;
  margin-bottom: 90px;
  color: var(--muted);
  font-size: 13px;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: .12em;
}

.section-content { max-width: 720px; }

.section-image {
  margin: 0;
  overflow: hidden;
  background: #deded9;
}

.section-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.section-image--audience { aspect-ratio: 2 / 3; }
.section-image--harp { aspect-ratio: 3 / 4; }

.involved .section-content { grid-column: 1; }
.involved .section-image { grid-column: 2; grid-row: 2; }

h2 {
  margin-bottom: 72px;
  font-size: clamp(40px, 4.6vw, 68px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.purpose-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.purpose-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}

.purpose-list li::before { color: var(--muted); content: "—"; }

.involved .section-content > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 36px;
  color: #494946;
}

.contact {
  min-height: 480px;
  padding: 120px 0;
  border-top: 1px solid var(--rule);
}

.contact h2 { margin: 0; }
.contact h2 a { text-decoration-thickness: 1px; text-underline-offset: 10px; }

footer {
  min-height: 170px;
  padding: 44px 0;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 13px;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: .05em;
}

footer p { margin: 0; }

@media (max-width: 720px) {
  :root { --page: calc(100% - 40px); }
  body { font-size: 17px; }
  .site-header { min-height: 98px; padding-top: 28px; }
  nav { gap: 18px; }
  nav a { font-size: 13px; }
  .intro { min-height: 610px; padding: 120px 0; }
  h1 { font-size: clamp(54px, 17vw, 78px); }
  .intro-copy { margin-left: 18%; }
  .section { grid-template-columns: 1fr; row-gap: 56px; min-height: auto; padding: 80px 0 110px; }
  .section-number { grid-column: 1; margin-bottom: 16px; }
  .section-image { width: 78%; }
  .section-image--audience { aspect-ratio: 2 / 3; }
  .involved .section-content,
  .involved .section-image { grid-column: 1; grid-row: auto; }
  .involved .section-image { margin-left: auto; }
  h2 { margin-bottom: 52px; }
  .contact { min-height: 380px; padding: 90px 0; }
  .contact h2 { font-size: clamp(32px, 9vw, 48px); }
  footer { align-items: flex-start; flex-direction: column; gap: 10px; }
}

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