/* SCENE 06 — THE RECORD. Four stats, two editorial columns that
   counter-parallax under scrub. The grid keeps two columns at every
   width (the counter-drift is the scene) and scales the numerals
   down instead of stacking. */

.s06 {
  padding-block: clamp(110px, 15vw, 160px);
  overflow: clip;
}

.s06-h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  max-width: 24ch;
}

.s06-grid {
  margin-top: var(--rhythm-layer);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: calc(var(--gutter) * 2);
}

.s06-col { will-change: transform; }

/* the leading column starts lower: the counter-drift reads instantly */
.s06-col--b { margin-top: clamp(72px, 10vw, 132px); }

.s06-card {
  position: relative;
  padding-top: 26px;
}
.s06-card + .s06-card { margin-top: clamp(96px, 12vw, 150px); }

.s06-rule {
  position: absolute;
  top: 0;
  left: 0;
}

.s06-value {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 340;
  font-size: clamp(2.4rem, 7.5vw, 6rem);
  line-height: 1;
  letter-spacing: -.015em;
  color: var(--ink);
  will-change: filter;
}

/* non-numeric value (a word, not a count) sits a register lower */
.s06-value--word {
  font-size: clamp(1.5rem, 4.4vw, 3.4rem);
  letter-spacing: -.005em;
  padding-block: .28em .14em;
}

.s06-label {
  margin-top: 18px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--earth);
}

.s06-sub {
  margin-top: 12px;
  font-weight: 300;
  font-size: .92rem;
  line-height: 1.65;
  max-width: 34ch;
  color: color-mix(in srgb, var(--ink) 66%, transparent);
}

@media (max-width: 599px) {
  .s06-grid { column-gap: var(--gutter); }
  .s06-label { letter-spacing: .2em; }
}
