:root {
  --ink: #171714;
  --paper: #f3f0e8;
  --yellow: #f6cb33;
  --red: #b73b20;
  --line: #c9c4b7;
  --focus: #0645e5;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}
a { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 4px solid var(--focus);
  outline-offset: 5px;
  border-radius: 2px;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: #fff;
  color: #000;
  transform: translateY(-180%);
  font-weight: 700;
}
.skip-link:focus { transform: none; }
.site-header {
  min-height: 88px;
  padding: 20px clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.03em;
  text-decoration: none;
}
.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--yellow);
  border-radius: 50%;
}
.brand-mark span {
  display: block;
  width: 19px;
  height: 19px;
  background: var(--ink);
  border-radius: 50%;
  transform: translateX(4px);
}
nav { display: flex; gap: 32px; font-size: 14px; font-weight: 700; }
nav a { text-decoration-thickness: 1px; text-underline-offset: 5px; }
.hero {
  min-height: calc(100vh - 88px);
  max-height: 940px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  align-items: center;
  padding: 70px clamp(24px, 7vw, 112px);
}
.hero-copy { position: relative; z-index: 2; max-width: 760px; }
.eyebrow {
  margin: 0 0 22px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 800;
}
h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .91;
}
h1 { font-size: clamp(64px, 7.3vw, 118px); }
h1 em, h2 em { color: var(--red); font-weight: 400; }
.lead {
  max-width: 620px;
  margin: 35px 0 38px;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 15px 22px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.button:hover { background: #33332d; }
.eclipse-wrap {
  position: relative;
  height: min(58vw, 700px);
  min-height: 480px;
  display: grid;
  place-items: center;
}
.eclipse {
  position: relative;
  z-index: 1;
  width: min(34vw, 490px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 18px rgba(246, 203, 51, .2), 0 0 90px rgba(246, 203, 51, .45);
  display: grid;
  place-items: center;
}
.moon {
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  transform: translate(10%, -3%);
}
.orbit-line {
  position: absolute;
  width: 140%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.eclipse-wrap p {
  position: absolute;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-weight: 900;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: .82;
  letter-spacing: -.07em;
  transform: rotate(-7deg);
}
.side-note {
  position: absolute;
  right: 20px;
  bottom: 100px;
  writing-mode: vertical-rl;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
}
.statement {
  display: grid;
  grid-template-columns: 1fr 5fr;
  gap: 40px;
  padding: clamp(90px, 12vw, 180px) clamp(24px, 11vw, 170px);
  background: var(--ink);
  color: var(--paper);
}
.section-number { margin: 0; font-size: 13px; color: #aaa89f; }
.statement h2, .purpose h2, .coming h2 { font-size: clamp(52px, 7vw, 102px); }
.statement > div > p:last-child {
  margin: 44px 0 0;
  max-width: 620px;
  color: #d3d0c8;
  font-size: 20px;
}
.purpose { padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 112px); }
.purpose-intro { max-width: 900px; }
.purpose-list { margin-top: 90px; border-top: 1px solid var(--line); }
.purpose-list article {
  display: grid;
  grid-template-columns: 70px minmax(200px, 1fr) minmax(280px, 1.5fr);
  gap: 30px;
  align-items: start;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}
.purpose-list span { font-size: 12px; font-weight: 800; }
.purpose-list h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 500;
}
.purpose-list p { margin: 0; max-width: 620px; }
.coming {
  min-height: 620px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 8vw;
  padding: 70px clamp(24px, 8vw, 130px);
  background: var(--yellow);
}
.coming-sun {
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: inset -55px 18px 0 0 var(--ink);
  transform: translateX(-22%);
}
.coming-copy { max-width: 720px; }
.coming-copy > p:not(.eyebrow):not(.status) {
  margin: 34px 0;
  max-width: 590px;
  font-size: 20px;
}
.status { display: flex; gap: 12px; align-items: center; font-size: 13px; font-weight: 800; }
.status span { width: 9px; height: 9px; flex: 0 0 auto; background: var(--red); border-radius: 50%; }
footer {
  min-height: 150px;
  padding: 35px clamp(24px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 30px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
}
footer p { margin: 0; }

@media (max-width: 850px) {
  .site-header nav { display: none; }
  .hero { min-height: auto; max-height: none; grid-template-columns: 1fr; padding-top: 80px; }
  .eclipse-wrap { min-height: 390px; height: 110vw; max-height: 520px; }
  .eclipse { width: min(78vw, 420px); }
  .orbit-line { width: 110%; }
  .side-note { display: none; }
  .statement { grid-template-columns: 1fr; }
  .section-number { display: none; }
  .purpose-list article { grid-template-columns: 45px 1fr; }
  .purpose-list article p { grid-column: 2; }
  .coming { grid-template-columns: 1fr; padding-top: 0; }
  .coming-sun { width: 82vw; max-width: 480px; transform: translate(-25%, -12%); }
  footer { grid-template-columns: 1fr; padding-block: 45px; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .site-header { min-height: 74px; }
  h1 { font-size: 56px; }
  .hero { padding-top: 60px; }
  .lead { margin-top: 28px; }
  .button { width: 100%; justify-content: space-between; }
  .purpose-list { margin-top: 60px; }
  .purpose-list article { grid-template-columns: 1fr; gap: 12px; }
  .purpose-list article p { grid-column: 1; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
@media (forced-colors: active) {
  .brand-mark, .eclipse, .status span { forced-color-adjust: none; }
}
@media print {
  .site-header, .button, .eclipse-wrap, .coming-sun { display: none; }
  .hero, .statement, .purpose, .coming, footer { min-height: auto; padding: 2rem; background: #fff; color: #000; }
  h1 em, h2 em { color: #000; }
}
