:root {
  --ink: #10131C;
  --paper: #171B27;
  --slate: #222737;
  --chalk: #F4F1E8;
  --graphite: #A9B0C2;
  --cobalt: #6E8CFF;
  --saffron: #F4C95D;
  --pad: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--chalk);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: var(--cobalt); }

.desk-stack {
  position: fixed;
  left: 16px;
  bottom: 20px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
}
.desk-stack a {
  pointer-events: auto;
  text-decoration: none;
  color: var(--ink);
  background: var(--saffron);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  width: max-content;
}
.desk-stack a:nth-child(2) { background: var(--cobalt); color: var(--chalk); }
.desk-stack a:nth-child(3) { background: #B69AF4; color: var(--ink); }
.desk-stack a:nth-child(4) { background: var(--chalk); }

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
}
.collage {
  position: absolute;
  inset: 0;
}
.collage img {
  position: absolute;
  object-fit: cover;
  border: 8px solid var(--slate);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.collage__a {
  width: 58%;
  height: 62%;
  top: 8%;
  left: 6%;
  transform: rotate(-7deg);
}
.collage__b {
  width: 42%;
  height: 48%;
  top: 18%;
  right: 4%;
  transform: rotate(9deg);
}
.collage__c {
  width: 50%;
  height: 40%;
  bottom: 12%;
  left: 28%;
  transform: rotate(-2deg);
}
.hero__copy {
  position: relative;
  z-index: 2;
  padding: var(--pad);
  padding-bottom: 96px;
  background: linear-gradient(180deg, transparent, rgba(16,19,28,0.92) 38%, var(--ink));
}
.kicker {
  margin: 0 0 8px;
  color: var(--cobalt);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  font-family: ui-sans-serif, system-ui, sans-serif;
}
h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 84px);
  font-weight: 600;
  line-height: 0.95;
}
.lede {
  margin: 10px 0 0;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--saffron);
}
.tag {
  max-width: 36rem;
  color: var(--graphite);
  font-size: 17px;
}

.flow, .shots, .legal {
  padding: 72px var(--pad) 24px;
  max-width: 920px;
}
.flow h2, .shots h2, .legal h2 {
  margin: 0 0 28px;
  text-align: left;
  font-size: clamp(28px, 4vw, 40px);
}
.intro {
  margin: -12px 0 28px;
  color: var(--graphite);
  max-width: 36rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
}
.steps__n {
  font-size: 42px;
  color: var(--cobalt);
  font-weight: 600;
  line-height: 1;
}
.steps h3 { margin: 0 0 8px; font-size: 22px; }
.steps p { margin: 0; color: var(--graphite); }

.peek {
  position: relative;
}
.peek__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: thin;
}
.peek__track figure {
  flex: 0 0 72%;
  scroll-snap-align: start;
  margin: 0;
  background: var(--paper);
  padding: 10px 10px 16px;
}
.peek__track img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}
.peek__track figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--graphite);
  font-family: ui-sans-serif, system-ui, sans-serif;
}
.peek__btn {
  position: absolute;
  top: 42%;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--cobalt);
  color: var(--chalk);
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
}
.peek__btn--prev { left: -8px; }
.peek__btn--next { right: -8px; }

.fold {
  border-top: 1px solid #343B4F;
}
.fold__head {
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--chalk);
  border: 0;
  padding: 18px 0;
  font-size: 22px;
  font-family: inherit;
  cursor: pointer;
}
.fold__body {
  padding: 0 0 22px;
  color: var(--graphite);
  max-width: 40rem;
}
.fold__body--shut { display: none; }
.fold__body a { color: var(--saffron); }

.colophon {
  padding: 40px var(--pad) 120px;
  color: var(--graphite);
  font-size: 13px;
}

@media (min-width: 900px) {
  .peek__track figure { flex-basis: 46%; }
  .hero__copy { padding-left: 8vw; }
}
@media (max-width: 640px) {
  .collage__b, .collage__c { opacity: 0.85; }
  .steps li { grid-template-columns: 40px 1fr; }
  .desk-stack { left: 10px; bottom: 12px; }
}
