:root {
  --paper: #f1eee7;
  --ink: #151515;
  --muted: #6e6a63;
  --accent: #ff5b35;
  --line: rgba(21, 21, 21, .2);
  --pad: clamp(22px, 4.5vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; }
::selection { background: var(--accent); color: var(--ink); }

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--pad);
  font-size: 12px;
  letter-spacing: .12em;
  border-bottom: 1px solid var(--line);
  background: rgba(241, 238, 231, .86);
  backdrop-filter: blur(12px);
}
.logo { text-decoration: none; font-weight: 800; }
.edition { color: var(--muted); }

main { width: 100%; }
section { padding-left: var(--pad); padding-right: var(--pad); }

.hero {
  min-height: 100svh;
  padding-top: 128px;
  padding-bottom: 40px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  position: relative;
}
.kicker, .label, .number, .hero-bottom, .final-top, footer {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.kicker { margin: 0; color: var(--muted); }
.hero h1 {
  align-self: center;
  margin: 8vh 0 6vh;
  font-size: clamp(76px, 15vw, 245px);
  line-height: .76;
  letter-spacing: -.075em;
  font-weight: 900;
}
.dot { color: var(--accent); }
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  border-top: 1px solid var(--ink);
  padding-top: 18px;
}
.hero-bottom p { margin: 0; line-height: 1.5; }
.hero-bottom a { text-decoration: none; }
.hero-mark {
  position: absolute;
  right: var(--pad);
  top: 18%;
  width: clamp(90px, 14vw, 200px);
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  opacity: .85;
}
.hero-mark span {
  display: block;
  width: 42%;
  height: 1px;
  background: var(--ink);
  transform: rotate(-45deg);
}

.statement {
  min-height: 90svh;
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--line);
}
.number { color: var(--muted); align-self: start; padding-top: 80px; }
.label { color: var(--accent); margin: 0 0 24px; }
.statement h2, .final h2 {
  margin: 0;
  font-size: clamp(48px, 8vw, 130px);
  line-height: .9;
  letter-spacing: -.055em;
  font-weight: 800;
}
.statement-right > div { margin-left: 12vw; }

.interlude {
  min-height: 72svh;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 32px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}
.interlude .line {
  height: 1px;
  background: rgba(241, 238, 231, .32);
  grid-column: 1 / -1;
}
.interlude p {
  margin: 0;
  max-width: 750px;
  font-size: clamp(34px, 6vw, 90px);
  line-height: .95;
  letter-spacing: -.045em;
}
.orb {
  width: clamp(110px, 18vw, 270px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
}

.final {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--line);
  padding-top: 110px;
  padding-bottom: 70px;
}
.final-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 11vh;
}
.final h2 { max-width: 1200px; }
.final > p {
  margin: 48px 0 0;
  color: var(--accent);
  font-size: clamp(22px, 3vw, 48px);
  font-weight: 700;
}
.back {
  align-self: flex-start;
  margin-top: 12vh;
  font-size: 11px;
  letter-spacing: .14em;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 18px var(--pad) 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 760px) {
  .header { padding-top: 16px; padding-bottom: 16px; }
  .hero { padding-top: 100px; }
  .hero h1 { font-size: clamp(70px, 23vw, 150px); }
  .hero-mark { top: 16%; width: 88px; }
  .hero-bottom { align-items: flex-start; flex-direction: column; gap: 18px; }
  .statement { grid-template-columns: 1fr; min-height: 75svh; padding-top: 85px; padding-bottom: 85px; }
  .number { padding-top: 0; }
  .statement-right > div { margin-left: 0; }
  .interlude { grid-template-columns: 1fr; min-height: 75svh; }
  .orb { justify-self: end; }
  .final-top { margin-bottom: 8vh; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
