/* ==========================================================================
   The Skyward Project — simplified, centered, mobile-first
   ========================================================================== */

:root {
  --paper: #ffffff;
  --ink: #0f2438;
  --body-ink: #2b2b2b;
  --quiet: #6f6a63;
  --accent: #a89468;
  --rule: #d9d5cc;
  --well: #f7f5f0;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --display: "Playfair Display", "Times New Roman", Times, serif;
  --body: "Newsreader", Georgia, "Times New Roman", serif;
  --utility: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --nav-height: 3.75rem;
  --gutter: 1.5rem;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body-ink);
  font-family: var(--body);
  font-size: 0.875rem;
  line-height: 1.7;
  font-optical-sizing: auto;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  padding-top: calc(var(--nav-height) + 0.45rem);
  overflow-x: hidden;
  text-align: center;
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  color: transparent;
}

.site-nav img {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.18;
  margin: 0 auto;
  text-align: center;
}

p {
  margin: 0 0 1.25em;
}

a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}

a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 80;
  background: var(--paper);
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--ink);
}

.wrap {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  box-shadow: 0 3px 0 0 var(--paper), 0 4px 0 0 var(--ink);
  padding-top: env(safe-area-inset-top, 0px);
  transition: box-shadow 0.35s var(--ease);
}

.site-nav.is-scrolled {
  box-shadow: 0 3px 0 0 var(--paper), 0 4px 0 0 var(--ink),
    0 10px 22px rgba(15, 36, 56, 0.06);
}

.site-nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  max-width: 58rem;
  margin: 0 auto;
  padding: 0.35rem var(--gutter);
}

.site-nav a {
  border-bottom: 0;
}

.site-nav__home {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.site-nav__emblem {
  width: 2.15rem;
  height: 2.15rem;
  flex-shrink: 0;
  object-fit: contain;
}

.site-nav__mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 799px) {
  .site-nav__home {
    flex: 1;
    margin-right: 0.4rem;
  }
}

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 1.5px;
  background: var(--ink);
}

.site-nav__list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0.5rem var(--gutter) 1rem;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  text-align: center;
}

.site-nav.is-open .site-nav__list {
  display: block;
}

.site-nav__list a {
  display: block;
  padding: 0.75rem 0;
  font-family: var(--utility);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.25s ease;
}

.site-nav__list a[aria-current="page"] {
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   Homepage
   -------------------------------------------------------------------------- */

.opening {
  background: var(--paper);
}

.masthead {
  text-align: center;
  padding-top: 2.6rem;
  padding-bottom: 2rem;
}

.masthead__folio {
  font-family: var(--utility);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--quiet);
  margin: 0 0 1rem;
  padding: 0.45rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.masthead__record {
  font-family: var(--utility);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.85rem;
}

.masthead__roles {
  font-family: var(--utility);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--quiet);
  margin: 0.35rem 0 0;
}

.masthead__lead {
  font-family: var(--utility);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.7rem;
}

.front {
  padding-top: 0.15rem;
  padding-bottom: 1.25rem;
}

.lead {
  padding-bottom: 2.35rem;
  text-align: center;
}

.lead__headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.12rem, 4.6vw, 1.5rem);
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 22rem;
  margin: 0 auto 0.85rem;
  text-wrap: balance;
}

.lead__byline {
  font-family: var(--utility);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--quiet);
  margin: 0 0 1rem;
}

.lead__dek {
  max-width: 22rem;
  margin: 0 auto 1.5rem;
  font-size: 0.86rem;
  line-height: 1.75;
}

.masthead__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 0 auto 0.15rem;
}

.masthead__emblem {
  width: 3.1rem;
  height: auto;
  flex-shrink: 0;
  margin: 0;
}

.masthead__name {
  font-weight: 900;
  font-size: clamp(1.32rem, 6vw, 2.55rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  text-align: center;
}

.masthead__the {
  font-style: italic;
  font-weight: 500;
}

.masthead__rest {
  font-weight: 900;
}

.rules {
  display: block;
  width: 100%;
  height: 9px;
  margin: 1rem 0 1.15rem;
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.rules--light {
  height: 6px;
  margin: 1.25rem 0 1.35rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}

.masthead__deck {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.88rem, 3.2vw, 1.05rem);
  line-height: 1.75;
  color: var(--ink);
  max-width: 22rem;
  margin: 0 auto 1.75rem;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--utility);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  padding: 0.5rem 1.15rem;
  cursor: pointer;
  transition: color 0.4s var(--ease), background 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.button::after {
  content: " \2192";
  font-size: 0.85em;
  letter-spacing: 0;
}

.button:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
  opacity: 1;
}

.button--test {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 1.05rem 2.35rem;
  min-width: min(100%, 18.5rem);
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0.28rem 0.28rem 0 0 var(--accent);
}

.button--test::after {
  content: " \2192";
  font-size: 1em;
}

.button--test:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 0.28rem 0.28rem 0 0 var(--ink);
}

.lead__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.95rem;
  margin-top: 0.15rem;
}

.lead__more {
  font-family: var(--utility);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

.lead__more:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.test-notice {
  text-align: center;
  padding: 2.4rem 0 3rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.test-notice .kicker {
  margin-bottom: 0.55rem;
}

.test-notice__line {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.45;
  color: var(--ink);
  max-width: 26rem;
  margin: 0 auto 1.4rem;
}

.test-notice .button--test {
  margin-top: 0.15rem;
}

.edition-head {
  text-align: center;
  padding-top: 2.35rem;
  padding-bottom: 0.35rem;
}

.edition-head h1 {
  font-size: clamp(2.35rem, 11vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.92;
  max-width: none;
  margin: 0.1rem auto 0.7rem;
}

.edition-front {
  padding-bottom: 3.5rem;
}

.edition-rail {
  text-align: center;
  padding-top: 0.35rem;
}

.edition-facts {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  border-top: 1px solid var(--ink);
}

.edition-facts li {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.85rem;
  margin: 0;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--ink);
}

.edition-facts strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.85rem;
  line-height: 1;
  color: var(--ink);
}

.edition-facts span {
  font-family: var(--utility);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--quiet);
}

.edition-post {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink);
}

.wash {
  position: relative;
  overflow: hidden;
}

.wash__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.11;
}

.wash__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wash > *:not(.wash__art) {
  position: relative;
  z-index: 1;
}

.columns {
  display: grid;
  gap: 0;
  padding-top: 0.75rem;
  padding-bottom: 4.5rem;
  text-align: center;
  border-top: 1px solid var(--ink);
  counter-reset: brief;
}

.column {
  text-align: center;
  padding: 2.15rem 0.25rem;
  border-top: 1px solid var(--rule);
}

.column:first-child {
  border-top: 0;
}

.column p {
  font-size: 0.86rem;
  line-height: 1.75;
}

.column p:last-child {
  margin: 0;
}

.column .kicker::before {
  counter-increment: brief;
  content: counter(brief, decimal-leading-zero);
  display: block;
  font-family: var(--utility);
  font-style: normal;
  font-weight: 600;
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  color: var(--quiet);
  margin-bottom: 0.28rem;
}

.ledger {
  padding-top: 0.25rem;
  padding-bottom: 2.75rem;
  text-align: center;
}

.ledger .kicker {
  margin-bottom: 1.1rem;
}

.ledger__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.ledger__item {
  padding: 1.15rem 0.4rem 1.05rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.ledger__item strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 0.3rem;
}

.ledger__item span {
  font-family: var(--utility);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--quiet);
}

.issue {
  padding-top: 0.15rem;
  padding-bottom: 2.15rem;
  text-align: center;
}

.issue .kicker {
  margin-bottom: 0.35rem;
}

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

.issue__list li {
  margin: 0;
}

.issue__list a {
  display: block;
  border: 0;
  padding: 0.9rem 0;
  border-top: 1px solid var(--rule);
}

.issue__list li:last-child a {
  border-bottom: 1px solid var(--rule);
}

.issue__title {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink);
}

.issue__leaders {
  display: none;
}

.issue__page {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--utility);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--quiet);
}

.team-block {
  background: var(--paper);
  padding: 0.5rem 0 4.5rem;
  text-align: center;
}

.section-title {
  font-size: clamp(0.98rem, 3.4vw, 1.18rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.01em;
  padding: 0.65rem 0;
  margin: 0 0 1.35rem;
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.team {
  display: grid;
  gap: 2.75rem;
}

.team-hint {
  font-family: var(--utility);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--quiet);
  margin: -0.55rem 0 1.75rem;
}

.member__photo {
  display: block;
  width: min(12.75rem, 70vw);
  aspect-ratio: 1;
  margin: 0 auto 0.9rem;
  padding: 3px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--ink);
  outline: 1px solid var(--ink);
  outline-offset: 4px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  color: inherit;
}

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

.member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.bio-layer {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(15, 36, 56, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  animation: veil 0.28s ease;
}

@keyframes veil {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.bio-layer[hidden] {
  display: none;
}

.bio-card {
  width: min(32rem, 100%);
  max-height: min(88vh, 40rem);
  overflow: auto;
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 0 0 0 1px var(--paper), 0 0 0 2px var(--ink);
  padding: 1.35rem 1.25rem 1.5rem;
  text-align: center;
}

.bio-close {
  display: block;
  margin: 0 0 1rem auto;
  font-family: var(--utility);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
}

.bio-card__photo {
  width: 8.5rem;
  aspect-ratio: 1;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 1px solid var(--ink);
  padding: 3px;
}

.bio-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.bio-card h3 {
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
}

.bio-card__copy {
  text-align: center;
  margin-top: 0.85rem;
  font-size: 0.84rem;
  line-height: 1.65;
}

.bio-card__copy p:last-child {
  margin-bottom: 0;
}

.member h3 {
  font-size: 1rem;
  margin: 0 0 0.3rem;
}

.member__role {
  font-family: var(--utility);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.member__bio {
  text-align: center;
  font-size: 1rem;
  margin: 0 auto;
  max-width: 28rem;
}

/* --------------------------------------------------------------------------
   Interior
   -------------------------------------------------------------------------- */

.page-head {
  text-align: center;
  padding-top: 2.6rem;
  padding-bottom: 2rem;
}

.page-folio {
  font-family: var(--utility);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--quiet);
  margin: 0 0 0.85rem;
}

.page-head h1 {
  font-size: clamp(1.12rem, 4.6vw, 1.65rem);
  font-weight: 700;
  max-width: 22rem;
  margin: 0 auto 0.65rem;
}

.byline {
  font-family: var(--utility);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--quiet);
  margin: 0 0 1.05rem;
}

.kicker {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--accent);
  margin: 0 0 0.75rem;
  text-align: center;
}

.article {
  padding-top: 0.75rem;
  padding-bottom: 4.5rem;
  text-align: center;
}

.article section {
  margin: 0 0 3rem;
  text-align: center;
}

.article p {
  line-height: 1.75;
}

.article .kicker {
  display: inline-block;
  padding: 0 0 0.45rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--ink);
}

.lede {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--ink);
  text-align: center;
  margin-bottom: 0;
}

.excerpt {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1.2rem 0.2rem;
  margin: 0 0 1.6rem;
  text-align: center;
}

.excerpt p {
  margin: 0;
}

.excerpt__label {
  font-family: var(--utility);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--quiet);
  margin: 0 0 0.4rem;
}

.pull-quote {
  margin: 2.5rem 0;
  padding: 1.5rem 0.2rem;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  text-align: center;
}

.pull-quote::before {
  content: "\201C";
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 0.65;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.pull-quote p {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}

.tiers {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  text-align: center;
}

.tiers li {
  padding: 1.2rem 0.1rem;
  border-top: 1px solid var(--rule);
}

.tiers dfn {
  display: block;
  font-family: var(--utility);
  font-size: 0.7rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.25rem;
}

.tiers p {
  margin: 0;
}

.footnote {
  font-size: 0.84rem;
  color: var(--quiet);
  text-align: center;
}

.latest {
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
  text-align: center;
}

.card {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 1.65rem 0.15rem 1.5rem;
  text-align: center;
}

.card__headline {
  font-size: 1.18rem;
  font-style: italic;
  margin: 0 0 0.45rem;
}

.card__eyebrow {
  font-family: var(--utility);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.card__dek {
  margin: 0;
}

.form {
  max-width: 28rem;
  margin: 0 auto;
  padding: 0.5rem 0 4.25rem;
  text-align: center;
}

.field {
  margin: 0 0 1.55rem;
  text-align: center;
}

.field label {
  display: block;
  font-family: var(--utility);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
  text-align: center;
}

.optional {
  color: var(--quiet);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding: 0.65rem 0.15rem;
  transition: border-color 0.3s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-width: 2px;
}

.field textarea {
  border: 1px solid var(--ink);
  padding: 0.65rem 0.75rem;
  min-height: 8rem;
}

.letters-kicker {
  margin-bottom: 1.75rem;
}

.form .button {
  width: auto;
}

.form__status {
  font-family: var(--utility);
  font-size: 0.875rem;
  margin: 1rem 0 0;
  text-align: center;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.thanks {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.thanks p {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  max-width: 22rem;
  margin: 0 0 1.5rem;
}

.thanks a {
  font-family: var(--utility);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer {
  border-top: 2px solid var(--ink);
  box-shadow: 0 -3px 0 0 var(--paper), 0 -4px 0 0 var(--ink);
  padding: 1.5rem 0 max(1.75rem, env(safe-area-inset-bottom, 0px));
  text-align: center;
  font-family: var(--utility);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--quiet);
}

.footer__row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: center;
}

.footer__row p {
  margin: 0;
}

.footer__row a {
  border: 0;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   Desktop
   -------------------------------------------------------------------------- */

@media (min-width: 800px) {
  :root {
    --nav-height: 4rem;
  }

  body {
    font-size: 1rem;
    line-height: 1.7;
  }

  .wrap {
    max-width: 64rem;
  }

  .site-nav__bar {
    max-width: 64rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .site-nav__bar {
    padding: 0;
    margin: 0;
    min-height: var(--nav-height);
  }

  .site-nav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.7rem 0.95rem;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    max-width: 42rem;
  }

  .site-nav.is-open .site-nav__list {
    display: flex;
  }

  .site-nav__list a {
    padding: 0;
    font-size: 0.64rem;
    position: relative;
  }

  .site-nav__list a::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    margin-top: 0.28rem;
    background: var(--accent);
    transition: width 0.35s var(--ease);
  }

  .site-nav__list a:hover::after,
  .site-nav__list a[aria-current="page"]::after {
    width: 100%;
  }

  .site-nav__list a:hover {
    color: var(--accent);
  }

  .masthead {
    padding-top: 3.5rem;
    padding-bottom: 2.35rem;
  }

  .masthead__folio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.16em;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .masthead__dot {
    display: none;
  }

  .masthead__brand {
    flex-direction: row;
    gap: 0.9rem;
  }

  .masthead__name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 4.05rem;
    text-align: left;
    letter-spacing: 0.018em;
    line-height: 0.9;
    text-transform: none;
  }

  .masthead__the {
    font-family: var(--utility);
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.35rem;
  }

  .masthead__rest {
    text-transform: uppercase;
  }

  .masthead__emblem {
    width: 4.15rem;
  }

  .masthead__record {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.15rem;
  }

  .masthead__record::before,
  .masthead__record::after {
    content: "";
    width: 4.25rem;
    height: 1px;
    background: var(--ink);
  }

  .front {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.95fr);
    align-items: start;
    padding-top: 2.15rem;
    padding-bottom: 2.85rem;
    text-align: left;
  }

  .lead {
    padding-top: 0;
    padding-right: 2rem;
    padding-bottom: 0;
    border-right: 1px solid var(--ink);
    text-align: left;
  }

  .lead .masthead__lead,
  .lead__byline,
  .lead__dek {
    text-align: left;
  }

  .lead__headline {
    font-size: 2.75rem;
    line-height: 1.12;
    max-width: none;
    margin: 0 0 1rem;
    text-align: left;
    letter-spacing: -0.025em;
  }

  .lead__dek {
    max-width: none;
    margin: 0 0 1.55rem;
    font-size: 1.02rem;
  }

  .lead .button {
    margin-left: 0;
    margin-right: 0;
  }

  .lead__actions {
    align-items: flex-start;
  }

  .test-notice {
    padding: 2.75rem 0 3.25rem;
  }

  .test-notice__line {
    font-size: 1.28rem;
    max-width: 32rem;
  }

  .edition-head {
    padding-top: 3.1rem;
  }

  .edition-head h1 {
    font-size: clamp(3.2rem, 6.4vw, 4.35rem);
    margin-bottom: 0.85rem;
    max-width: 100%;
  }

  .edition-front.front {
    padding-top: 1.6rem;
    padding-bottom: 4.25rem;
  }

  .edition-rail {
    padding-top: 0;
    padding-left: 1.85rem;
    text-align: left;
  }

  .edition-rail .kicker {
    text-align: left;
  }

  .edition-facts li {
    justify-content: flex-start;
  }

  .edition-post {
    text-align: left;
    font-size: 1rem;
  }

  .edition-front .button--test {
    margin-left: 0;
  }

  .front .issue {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 1.85rem;
    text-align: left;
  }

  .front .issue .kicker {
    text-align: left;
  }

  .column p {
    text-align: justify;
    hyphens: auto;
  }

  .article p {
    hyphens: auto;
    text-align: justify;
  }

  .article .pull-quote p,
  .article .excerpt p {
    text-align: inherit;
  }

  .lede {
    font-size: 1.18rem;
    line-height: 1.65;
  }

  .masthead__deck {
    max-width: 32rem;
    margin-bottom: 1.85rem;
    font-size: 1.12rem;
  }

  .site-nav__emblem {
    width: 2.35rem;
    height: 2.35rem;
  }

  .site-nav__mark {
    font-size: 0.88rem;
  }

  .columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    text-align: left;
    padding-top: 0.65rem;
    padding-bottom: 3.5rem;
  }

  .column {
    padding: 1.85rem 1.35rem;
    border-top: 0;
    border-left: 1px solid var(--ink);
    text-align: left;
  }

  .column:first-child {
    border-top: 0;
    border-left: 0;
    padding-left: 0;
  }

  .column:last-child {
    padding-right: 0;
  }

  .column .kicker {
    text-align: left;
    display: inline-block;
    padding-bottom: 0.4rem;
    margin-bottom: 0.95rem;
    border-bottom: 1px solid var(--ink);
  }

  .column p {
    font-size: 0.95rem;
  }

  .team {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: center;
  }

  .member__photo {
    width: 12rem;
  }

  .member__photo img {
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .member__photo:hover img {
    transform: scale(1.06);
  }

  .lede::first-letter {
    font-family: var(--display);
    font-weight: 900;
    font-size: 3.55rem;
    float: left;
    line-height: 0.78;
    padding: 0.22rem 0.5rem 0 0;
    color: var(--ink);
  }

  .article,
  .article section,
  .article p,
  .article li,
  .lede,
  .footnote {
    text-align: left;
  }

  .article .kicker {
    text-align: left;
  }

  .excerpt {
    border-top: 0;
    border-bottom: 0;
    border-left: 1px solid var(--ink);
    padding: 0.2rem 0 0.2rem 1.1rem;
    text-align: left;
  }

  .form,
  .field,
  .field label,
  .form__status {
    text-align: left;
  }

  .bio-card {
    padding: 1.75rem 1.75rem 2rem;
    border: 1px solid var(--ink);
  }

  .article,
  .form {
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
  }

  .page-head {
    padding-top: 3.5rem;
    padding-bottom: 2.25rem;
  }

  .page-head h1 {
    max-width: 36rem;
    font-size: 2.85rem;
    letter-spacing: -0.028em;
    line-height: 1.12;
  }

  .footer__row {
    flex-direction: row;
    justify-content: space-between;
  }

  .ledger__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ledger__item {
    padding-top: 1.45rem;
    padding-bottom: 1.35rem;
  }

  .ledger__item strong {
    font-size: 2.65rem;
    font-weight: 900;
    letter-spacing: -0.03em;
  }

  .issue__list {
    max-width: none;
    margin: 0;
  }

  .issue__list a {
    display: flex;
    align-items: baseline;
    text-align: left;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .issue__list a:hover .issue__title {
    color: var(--accent);
  }

  .issue__title {
    flex-shrink: 0;
    font-size: 1.05rem;
  }

  .issue__leaders {
    display: block;
    flex: 1 1 auto;
    border-bottom: 1px dotted var(--ink);
    margin: 0 0.75rem 0.28rem;
    min-width: 1.5rem;
    height: 0;
  }

  .issue__page {
    margin-top: 0;
    flex-shrink: 0;
  }

  .article .kicker::before {
    content: "§ ";
    font-family: var(--utility);
    font-style: normal;
    font-size: 0.7em;
    letter-spacing: 0.1em;
    font-weight: 600;
  }

  .pull-quote {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .pull-quote::before {
    font-size: 3rem;
    margin-bottom: 0.55rem;
  }

  .pull-quote p {
    font-size: 1.45rem;
    line-height: 1.4;
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 0.55rem, 0);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-ready [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

.js-ready .column[data-reveal]:nth-child(2) {
  transition-delay: 0.12s;
}

.js-ready .column[data-reveal]:nth-child(3) {
  transition-delay: 0.24s;
}

.js-ready .member[data-reveal]:nth-child(2) {
  transition-delay: 0.14s;
}

.js-ready .article section[data-reveal]:nth-of-type(2) {
  transition-delay: 0.08s;
}

.js-ready .article section[data-reveal]:nth-of-type(3) {
  transition-delay: 0.14s;
}

.js-ready .article section[data-reveal]:nth-of-type(4) {
  transition-delay: 0.2s;
}

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

  .js-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .bio-layer {
    animation: none;
  }

  .member__photo img {
    transition: none;
  }
}
