:root {
  color-scheme: light;
  --paper: #efe8da;
  --paper-raised: #f8f3e9;
  --ink: #201d19;
  --muted: #71685f;
  --rule: #b9ad9b;
  --oxblood: #551c28;
  --green: #315244;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgb(85 28 40 / 4%) 1px, transparent 1px) 0 0 / 100% 30px,
    var(--paper);
}

main {
  display: flex;
  width: min(1320px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 76px);
  flex-direction: column;
}

.masthead {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  border-bottom: 1px solid var(--ink);
}

.mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--paper-raised);
  background: var(--oxblood);
  border-radius: 2px;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.wordmark { font-size: 17px; font-weight: 800; letter-spacing: -.035em; }
.edition,
.kicker,
.number,
.coordinates {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.edition { color: var(--muted); font-size: 9px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, .65fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  padding: clamp(72px, 13vh, 150px) 0 clamp(68px, 10vh, 112px);
}

.kicker {
  grid-column: 1 / -1;
  margin: 0 0 -12px;
  color: var(--oxblood);
  font-size: 10px;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 9vw, 128px);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .86;
}

.lede {
  max-width: 430px;
  margin: 0 0 8px;
  color: #3b3530;
  font-size: clamp(19px, 2vw, 27px);
  letter-spacing: -.025em;
  line-height: 1.35;
}

.bench {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--ink);
}

.bench article { min-height: 210px; padding: 24px 28px 34px 0; }
.bench article + article { padding-left: 28px; border-left: 1px solid var(--rule); }
.number { display: block; margin-bottom: 42px; color: var(--oxblood); font-size: 9px; }
h2 { margin: 0 0 10px; font-size: 17px; letter-spacing: -.02em; }
.bench p { max-width: 330px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
  padding: 28px 0 34px;
  color: var(--muted);
  font-size: 12px;
}
footer p { margin: 0; }
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 9px; background: var(--green); border-radius: 50%; }
.coordinates { font-size: 8px; }

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; padding-block: 72px 64px; }
  .kicker { margin-bottom: 0; }
  h1 { font-size: clamp(54px, 16vw, 82px); }
  .lede { max-width: 560px; }
  .bench { grid-template-columns: 1fr; }
  .bench article { min-height: auto; padding: 24px 0 28px; }
  .bench article + article { padding-left: 0; border-top: 1px solid var(--rule); border-left: 0; }
  .number { margin-bottom: 18px; }
  footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero > * { animation: settle .55s ease-out both; }
  .hero > :nth-child(2) { animation-delay: .06s; }
  .hero > :nth-child(3) { animation-delay: .12s; }
  @keyframes settle {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
