:root {
  --ink: #0b0c0f;
  --paper: #f1eee7;
  --muted: #8e8b85;
  --line: rgba(241, 238, 231, 0.2);
  --line-dark: rgba(11, 12, 15, 0.16);
  --signal: #e5ad53;
  --signal-soft: #f4c979;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 10;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.42) 0.55px, transparent 0.55px);
  background-size: 5px 5px;
  content: "";
  mix-blend-mode: soft-light;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  overflow: hidden;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(1rem, 2.5vw, 2.75rem);
  padding-inline: clamp(1.25rem, 5.5vw, 6.75rem);
}

.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.75rem clamp(1.25rem, 5.5vw, 6.75rem);
  border-bottom: 1px solid var(--line);
  color: var(--paper);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.18rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.brand-mark {
  color: var(--signal-soft);
}

.brand-slash {
  color: rgba(241, 238, 231, 0.4);
  font-weight: 400;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3.25rem);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.72;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--signal-soft);
  opacity: 1;
}

.site-nav .nav-index {
  color: var(--signal-soft);
  opacity: 1;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}

.hero-image-wrap,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero-image-wrap {
  overflow: hidden;
  background: #17181c;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
  animation: image-drift 16s ease-in-out infinite alternate;
  filter: saturate(0.78) contrast(1.08);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.96) 0%, rgba(8, 9, 12, 0.77) 32%, rgba(8, 9, 12, 0.14) 69%, rgba(8, 9, 12, 0.35) 100%),
    linear-gradient(0deg, rgba(8, 9, 12, 0.82) 0%, transparent 27%, rgba(8, 9, 12, 0.14) 100%);
}

.hero-content {
  position: relative;
  align-items: center;
  min-height: 78svh;
  padding-top: 8rem;
}

.hero-copy {
  grid-column: 1 / span 7;
  align-self: center;
  padding-top: 2rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.6rem;
  color: var(--signal-soft);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--signal-soft);
  box-shadow: 0 0 0 0.25rem rgba(229, 173, 83, 0.16);
}

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

h1,
h2,
h3 {
  font-weight: 400;
}

h1 {
  max-width: 10ch;
  margin-bottom: 1.6rem;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(3.75rem, 8.2vw, 9rem);
  letter-spacing: -0.07em;
  line-height: 0.88;
}

h1 em,
h2 em {
  color: var(--signal-soft);
  font-style: italic;
}

.hero-lede {
  max-width: 30rem;
  margin-bottom: 2.35rem;
  color: rgba(241, 238, 231, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 12.5rem;
  padding: 0.9rem 1.05rem 0.9rem 1.2rem;
  border: 1px solid transparent;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button span {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 0.7;
  transition: transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button:hover span,
.button:focus-visible span {
  transform: translate(3px, -3px);
}

.button-primary {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--signal-soft);
  background: var(--signal-soft);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.button-dark:hover,
.button-dark:focus-visible {
  border-color: var(--signal);
  background: transparent;
  color: var(--ink);
}

.hero-aside {
  grid-column: 10 / span 3;
  align-self: center;
  justify-self: end;
  max-width: 11rem;
}

.vertical-label {
  display: block;
  color: rgba(241, 238, 231, 0.55);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

.hero-aside-note {
  display: flex;
  gap: 0.85rem;
  margin-top: 5rem;
}

.aside-rule {
  width: 1px;
  min-height: 4.8rem;
  background: var(--signal);
}

.hero-aside-note p {
  max-width: 8rem;
  margin: 0;
  color: rgba(241, 238, 231, 0.62);
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 1.25;
}

.hero-bottom {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  padding-bottom: 1.7rem;
  color: rgba(241, 238, 231, 0.54);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-bottom span:last-child {
  text-align: right;
}

.scroll-cue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.scroll-line {
  display: inline-block;
  width: 3.5rem;
  height: 1px;
  background: var(--signal);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  right: -7vw;
  bottom: -34vw;
  width: 64vw;
  height: 64vw;
  border: 1px solid rgba(229, 173, 83, 0.25);
  border-radius: 50%;
  transform: rotate(-18deg);
  pointer-events: none;
}

.hero-orbit::after {
  position: absolute;
  top: 15%;
  left: 16%;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--signal-soft);
  box-shadow: 0 0 1.4rem rgba(244, 201, 121, 0.85);
  content: "";
}

.hero-orbit-two {
  right: -15vw;
  bottom: -42vw;
  width: 80vw;
  height: 80vw;
  border-color: rgba(241, 238, 231, 0.08);
  transform: rotate(25deg);
}

.section {
  position: relative;
  padding-block: clamp(6.5rem, 13vw, 13rem);
}

.section-label {
  grid-column: 1 / span 2;
  align-self: start;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-label span {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--signal);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

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

.intro-content {
  grid-column: 4 / span 8;
}

.intro h2,
.deployment h2 {
  max-width: 13ch;
  margin-bottom: 3.8rem;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 6.6rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.intro h2 em {
  color: #9b6d29;
}

.intro-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
}

.section-lede {
  max-width: 25rem;
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.65;
}

.pull-quote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--line-dark);
}

.quote-mark {
  color: var(--signal);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 0.8;
}

.pull-quote p {
  max-width: 16rem;
  margin: 0.2rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.archive {
  background: #16171b;
}

.archive-header {
  align-items: start;
}

.archive-header > div:last-child {
  grid-column: 4 / span 8;
}

.archive h2 {
  max-width: 11ch;
  margin-bottom: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.8vw, 6rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.archive-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(1.5rem, 5vw, 5.5rem);
  align-items: end;
  margin-top: clamp(4rem, 8vw, 8rem);
}

.archive-figure {
  margin: 0;
}

.archive-figure-tall {
  padding-top: clamp(3rem, 12vw, 10rem);
}

.archive-image-wrap {
  overflow: hidden;
  background: #0b0c0f;
}

.archive-figure-wide .archive-image-wrap {
  aspect-ratio: 4 / 3;
}

.archive-figure-tall .archive-image-wrap {
  aspect-ratio: 3 / 4;
}

.archive-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.archive-figure:hover .archive-image {
  transform: scale(1.045);
  filter: saturate(0.92) contrast(1.08);
}

.archive-figure figcaption {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.archive-figure figcaption span:first-child {
  color: var(--signal-soft);
}

.archive-figure figcaption span:last-child {
  text-align: right;
}

.sequence {
  background: var(--ink);
}

.sequence-header {
  align-items: start;
}

.sequence-header > div:last-child {
  grid-column: 4 / span 8;
}

.eyebrow-dark {
  color: var(--muted);
}

.sequence h2 {
  max-width: 11ch;
  margin-bottom: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.8vw, 6rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.timeline {
  display: block;
  margin-top: clamp(4rem, 8vw, 8rem);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr 3.5fr 1.2fr;
  gap: 1.25rem;
  align-items: center;
  padding-block: 1.7rem;
  border-top: 1px solid var(--line);
  transition: padding-left 250ms ease, background 250ms ease;
}

.timeline-item:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline-item:hover {
  padding-left: 1rem;
  background: linear-gradient(90deg, rgba(229, 173, 83, 0.08), transparent 60%);
}

.timeline-index {
  color: var(--signal-soft);
  font-family: var(--serif);
  font-size: 2.1rem;
  letter-spacing: -0.04em;
}

.timeline-time,
.timeline-status {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.timeline-copy h3 {
  margin-bottom: 0.25rem;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.timeline-copy p {
  max-width: 25rem;
  margin: 0;
  color: rgba(241, 238, 231, 0.56);
  font-size: 0.88rem;
  line-height: 1.5;
}

.timeline-status {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
}

.timeline-status span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0.25rem rgba(229, 173, 83, 0.12);
}

.deployment {
  min-height: 75vh;
  align-items: center;
  background: var(--signal);
  color: var(--ink);
}

.deployment-stamp {
  position: relative;
  grid-column: 1 / span 4;
  display: flex;
  width: min(22rem, 100%);
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11, 12, 15, 0.48);
  border-radius: 50%;
  transform: rotate(-12deg);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1.8;
  text-transform: uppercase;
}

.deployment-stamp::before,
.deployment-stamp::after {
  position: absolute;
  border: 1px solid rgba(11, 12, 15, 0.28);
  border-radius: 50%;
  content: "";
}

.deployment-stamp::before {
  inset: 0.7rem;
}

.deployment-stamp::after {
  inset: 1.5rem;
}

.deployment-stamp strong {
  margin-block: -0.3rem;
  font-family: var(--serif);
  font-size: clamp(5.5rem, 11vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.11em;
  line-height: 0.9;
}

.deployment-copy {
  grid-column: 7 / span 6;
}

.deployment .section-label {
  color: rgba(11, 12, 15, 0.62);
}

.deployment .section-label span {
  color: var(--ink);
}

.deployment h2 {
  max-width: 9ch;
  margin-bottom: 1.7rem;
}

.deployment .section-lede {
  max-width: 27rem;
  margin-bottom: 2.2rem;
}

.site-footer {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-block: 1.5rem;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer span:nth-child(2) {
  text-align: center;
}

.site-footer span:last-child {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-one {
  transition-delay: 100ms;
}

.reveal-delay-two {
  transition-delay: 180ms;
}

.reveal-delay-three {
  transition-delay: 280ms;
}

.reveal-delay-four {
  transition-delay: 380ms;
}

@keyframes image-drift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.2%, 0.8%, 0);
  }
}

@media (max-width: 800px) {
  .site-header {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .site-nav {
    gap: 1rem;
  }

  .site-nav a:not(.nav-index) {
    display: none;
  }

  .hero-content {
    min-height: 82svh;
  }

  .hero-copy {
    grid-column: 1 / span 10;
    padding-top: 2rem;
  }

  h1 {
    font-size: clamp(3.6rem, 16vw, 6.5rem);
  }

  .hero-aside {
    display: none;
  }

  .hero-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .hero-bottom span:nth-child(2) {
    justify-content: flex-end;
  }

  .hero-bottom span:last-child {
    display: none;
  }

  .section-label,
  .intro-content,
  .archive-header > div:last-child,
  .sequence-header > div:last-child,
  .deployment-copy {
    grid-column: 1 / -1;
  }

  .section-label {
    margin-bottom: 3rem;
  }

  .intro h2,
  .archive h2,
  .sequence h2,
  .deployment h2 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .intro-columns {
    gap: 3rem;
  }

  .archive-grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 1rem;
  }

  .timeline-item {
    grid-template-columns: 0.8fr 1.7fr 3fr;
  }

  .timeline-status {
    display: none;
  }

  .deployment {
    row-gap: 4rem;
  }

  .deployment-stamp {
    grid-column: 1 / span 5;
    width: min(15rem, 100%);
  }

  .deployment-copy {
    grid-row: 1;
  }

  .deployment-stamp {
    grid-row: 2;
  }
}

@media (max-width: 560px) {
  .page-grid {
    column-gap: 1rem;
  }

  .hero-content {
    min-height: 78svh;
    padding-top: 6.75rem;
  }

  .hero-copy {
    grid-column: 1 / -1;
  }

  .hero-lede {
    max-width: 20rem;
    font-size: 0.96rem;
  }

  .hero-bottom {
    padding-bottom: 1.15rem;
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }

  .scroll-line {
    width: 1.8rem;
  }

  .intro-columns {
    grid-template-columns: 1fr;
  }

  .archive-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    margin-top: 0;
  }

  .archive-figure-tall {
    width: 78%;
    justify-self: end;
    padding-top: 0;
  }

  .archive-figure figcaption {
    grid-template-columns: auto 1fr;
  }

  .archive-figure figcaption span:last-child {
    grid-column: 2;
    text-align: left;
  }

  .timeline-item {
    grid-template-columns: 2.2rem 1fr;
    gap: 0.4rem 1rem;
    padding-block: 1.4rem;
  }

  .timeline-index {
    grid-row: span 2;
    font-size: 1.6rem;
  }

  .timeline-time {
    align-self: end;
  }

  .timeline-copy {
    grid-column: 2;
  }

  .timeline-copy h3 {
    font-size: 2.25rem;
  }

  .deployment-stamp {
    grid-column: 1 / span 6;
    width: 11rem;
  }

  .deployment-stamp strong {
    font-size: 5rem;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    row-gap: 0.8rem;
    font-size: 0.5rem;
  }

  .site-footer span:nth-child(2) {
    text-align: right;
  }

  .site-footer span:last-child {
    grid-column: 1 / -1;
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
