/* Hero layout catalog — scaffolding only. Does not ship with the live page.
   Neutralizes the live two-column hero grid, then each .hl--NN is its own
   composition. Collage pieces still size in cqw against .collage. */

.hl {
  padding-block: var(--s-8) var(--s-14);
  overflow: hidden;
}

/* Kill the live hero's 144% / 115% collage widen so variants can set their own. */
.hl .hero__media .collage {
  width: 100%;
  margin-inline: 0;
}

.hl .hero__media { min-width: 0; }
.hl .hero__copy { min-width: 0; }

/* 00 · archived live homepage hero — production .hero / .hero__inner CSS. */
.hl--00 { overflow: visible; }

.hl__stage {
  position: relative;
  min-width: 0;
}

/* ── 01  Collage as the piece ────────────────────────────────────────────
   The required treatment: the collage is a large centered object. Copy is
   smaller, centred, and sits underneath it. */
.hl--01 .hl__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-8);
  padding-inline: var(--pad);
}
.hl--01 .hero__media {
  width: min(900px, 80vw);
}
.hl--01 .hero__copy {
  max-width: 36rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hl--01 .hero__copy .display {
  font-size: clamp(28px, 3.1vw, 44px);
  max-width: none;
  margin-bottom: var(--s-4);
}
.hl--01 .lede {
  margin-inline: auto;
  margin-bottom: var(--s-6);
}
.hl--01 .hero__actions {
  justify-content: center;
  margin-bottom: var(--s-4);
}
.hl--01 .hero__stat {
  max-width: 100%;
  display: flex;
  justify-content: center;
}
.hl--01 .statsticker { transform-origin: center; }

/* ── 02  Stacked column ──────────────────────────────────────────────────
   Copy first, full measure. Collage as a wide band beneath. */
.hl--02 .hl__stage {
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
  padding-inline: var(--pad);
  max-width: var(--wrap);
  margin-inline: auto;
}
.hl--02 .hero__copy .display {
  max-width: 16ch;
  font-size: clamp(48px, 7vw, 96px);
  margin-bottom: var(--s-6);
}
.hl--02 .hero__media { width: 100%; }
.hl--02 .hero__media .collage { width: 100%; }

/* ── 03  Type over collage ───────────────────────────────────────────────
   Full-bleed collage as the field. Headline sits on top of it. */
.hl--03 .hl__stage {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: min(78vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hl--03 .hero__media {
  position: absolute;
  inset: 0;
}
.hl--03 .hero__media .collage {
  position: absolute;
  left: 50%;
  top: 46%;
  width: min(1600px, 168%);
  transform: translate(-50%, -50%);
}
.hl--03 .hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 15, 12, .88) 0%, rgba(19, 15, 12, .42) 48%, rgba(19, 15, 12, .12) 100%),
    linear-gradient(180deg, rgba(19, 15, 12, .2) 0%, rgba(19, 15, 12, .55) 100%);
  pointer-events: none;
  z-index: 1;
}
.hl--03 .hero__copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: var(--s-20) var(--pad) var(--s-14);
}
.hl--03 .hero__copy .display {
  max-width: 13ch;
  font-size: clamp(48px, 6.2vw, 92px);
}

/* ── 04  Split reversed ──────────────────────────────────────────────────
   Live hero, mirrored: collage left, copy right. */
.hl--04 .hl__stage {
  display: grid;
  gap: var(--s-12);
  align-items: center;
  padding-inline: var(--pad);
  max-width: var(--wrap);
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .hl--04 .hl__stage { grid-template-columns: 0.95fr 1.05fr; gap: var(--s-14); }
  .hl--04 .hero__media { order: -1; }
  .hl--04 .hero__media .collage {
    width: 138%;
    margin-inline: -18% 0;
  }
}

/* ── 05  Full-bleed, copy in the corner ──────────────────────────────────
   Collage is the whole hero. Type is a small cluster in the bottom-left. */
.hl--05 .hl__stage {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: min(78vh, 760px);
  overflow: hidden;
}
.hl--05 .hero__media {
  position: absolute;
  inset: 0;
}
.hl--05 .hero__media .collage {
  position: absolute;
  left: 52%;
  top: 48%;
  width: min(1700px, 175%);
  transform: translate(-50%, -50%);
}
.hl--05 .hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 15, 12, .08) 30%, rgba(19, 15, 12, .72) 100%),
    linear-gradient(90deg, rgba(19, 15, 12, .55) 0%, rgba(19, 15, 12, .05) 55%);
  pointer-events: none;
  z-index: 1;
}
.hl--05 .hero__copy {
  position: absolute;
  z-index: 2;
  left: max(var(--pad), calc((100vw - var(--wrap)) / 2 + var(--pad)));
  bottom: var(--s-12);
  max-width: 28rem;
}
.hl--05 .hero__copy .display {
  font-size: clamp(28px, 3.4vw, 48px);
  max-width: 16ch;
  margin-bottom: var(--s-4);
}
.hl--05 .lede { margin-bottom: var(--s-5); }

/* ── 06  Editorial magazine ──────────────────────────────────────────────
   Display line spans the page. Lede / CTAs / badge in a narrow rail; collage
   takes the rest of the row. */
.hl--06 .hl__stage {
  display: grid;
  grid-template-columns: minmax(16rem, 0.38fr) 1fr;
  column-gap: var(--s-14);
  row-gap: var(--s-8);
  padding-inline: var(--pad);
  max-width: var(--wrap);
  margin-inline: auto;
  align-items: start;
}
.hl--06 .hero__copy { display: contents; }
.hl--06 .display {
  grid-column: 1 / -1;
  max-width: 18ch;
  font-size: clamp(52px, 7.4vw, 104px);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0;
}
.hl--06 .lede { grid-column: 1; margin-bottom: 0; }
.hl--06 .hero__actions { grid-column: 1; margin-bottom: 0; }
.hl--06 .hero__stat { grid-column: 1; padding-top: 0; }
.hl--06 .hero__media {
  grid-column: 2;
  grid-row: 2 / 6;
  align-self: center;
}

/* ── 07  Asymmetric bleed ────────────────────────────────────────────────
   Slim copy rail aligned to the wrap. Collage is oversized and runs off the
   right edge of the viewport. */
.hl--07 .hl__stage {
  display: grid;
  grid-template-columns:
    max(var(--pad), calc((100vw - var(--wrap)) / 2 + var(--pad)))
    minmax(16rem, 26rem)
    1fr;
  grid-template-areas: "gutter copy media";
  align-items: center;
  min-height: min(86vh, 820px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  column-gap: var(--s-8);
}
.hl--07 .hero__copy {
  grid-area: copy;
  padding-right: var(--s-4);
}
.hl--07 .hero__copy .display {
  font-size: clamp(40px, 4.6vw, 72px);
  max-width: 12ch;
}
.hl--07 .hero__media { grid-area: media; }
.hl--07 .hero__media .collage {
  width: 148%;
  margin-left: -6%;
}

/* ── 08  Copy left, collage as a strip ───────────────────────────────────
   Text owns the column. The collage is a cropped vertical sliver, not a
   partner panel. */
.hl--08 .hl__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(300px, 28vw);
  gap: var(--s-8);
  align-items: stretch;
  padding-inline: var(--pad);
  max-width: var(--wrap);
  margin-inline: auto;
  min-height: min(78vh, 720px);
}
.hl--08 .hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: var(--s-8);
  padding-right: var(--s-6);
}
.hl--08 .hero__copy .display {
  max-width: 13ch;
  font-size: clamp(44px, 5.6vw, 84px);
}
.hl--08 .hero__media {
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--r-md);
  background: #201A16;
}
.hl--08 .hero__media .collage {
  width: 280%;
  margin-left: -92%;
  margin-top: -8%;
}

/* ── Phone: stack, don't explode ───────────────────────────────────────── */
@media (max-width: 1023px) {
  .hl--03 .hl__stage,
  .hl--04 .hl__stage,
  .hl--05 .hl__stage,
  .hl--06 .hl__stage,
  .hl--07 .hl__stage,
  .hl--08 .hl__stage {
    display: flex;
    flex-direction: column;
    width: auto;
    margin-left: 0;
    min-height: 0;
    padding-inline: var(--pad);
    grid-template-columns: none;
    grid-template-areas: none;
  }

  .hl--03 .hero__media,
  .hl--05 .hero__media {
    position: relative;
    inset: auto;
    min-height: 280px;
    order: -1;
  }
  .hl--03 .hero__media .collage,
  .hl--05 .hero__media .collage {
    position: relative;
    left: auto;
    top: auto;
    width: 120%;
    margin-inline: -10%;
    transform: none;
  }
  .hl--03 .hero__media::after,
  .hl--05 .hero__media::after { display: none; }
  .hl--03 .hero__copy,
  .hl--05 .hero__copy {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    padding: var(--s-8) 0 0;
  }

  .hl--06 .hero__copy { display: flex; flex-direction: column; gap: var(--s-5); }
  .hl--06 .display,
  .hl--06 .lede,
  .hl--06 .hero__actions,
  .hl--06 .hero__stat,
  .hl--06 .hero__media {
    grid-column: auto;
    grid-row: auto;
  }
  .hl--06 .hero__media { order: -1; }
  .hl--06 .display { font-size: clamp(40px, 10vw, 64px); }

  .hl--07 .hero__media .collage { width: 120%; margin-left: -10%; }
  .hl--07 .hero__copy { padding-right: 0; }

  .hl--08 .hero__media {
    min-height: 240px;
    order: -1;
    max-height: 280px;
  }
  .hl--08 .hero__media .collage {
    width: 160%;
    margin-left: -30%;
    margin-top: -20%;
  }
  .hl--08 .hero__copy { padding-right: 0; padding-block: var(--s-6); }
}

/* 18 pills: keep the jump-nav compact so it still scans as one bar. */
.testpage .testnav__link {
  padding: 4px 10px;
  font-size: 11px;
}

/* ═══════════════════════════════════════════════════════════════════════
   09–18  More ambitious compositions. Each one is a single idea.
   Palette: charcoal #130F0C · orange #FF4D00 · tan #E8DFCB ·
            lavender #D1D8FF · olive #0B5D3B · yellow #FFE600
   ═══════════════════════════════════════════════════════════════════════ */

/* ── 09  Pointer field ─────────────────────────────────────────────────── */
.hl--09 { padding: 0; overflow: hidden; }
.hl09 {
  position: relative;
  min-height: min(88vh, 860px);
  background: #130F0C;
  --mx: 0;
  --my: 0;
}
.hl09-pic {
  position: absolute;
  margin: 0;
  width: var(--w);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #fff;
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, .7);
  transform:
    translate3d(
      calc(var(--mx) * var(--p) * 36px),
      calc(var(--my) * var(--p) * 24px), 0)
    rotate(var(--r));
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}
.hl09-pic img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 5; }
.hl09-pic--wide img { aspect-ratio: 16 / 10; }
.hl09-note {
  position: absolute;
  width: 132px;
  padding: 14px 12px;
  background: #FFE600;
  color: #0015D2;
  font-family: "Imperial Script", var(--font-quote);
  font-size: 22px;
  line-height: 1.05;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 12px 28px -18px rgba(0, 0, 0, .55);
  transform:
    translate3d(
      calc(var(--mx) * var(--p) * 48px),
      calc(var(--my) * var(--p) * 32px), 0)
    rotate(var(--r));
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}
.hl09-copy {
  position: relative;
  z-index: 2;
  max-width: 22rem;
  margin-inline: auto;
  padding: 18vh var(--pad) var(--s-20);
}
.hl09-copy .display {
  font-size: clamp(36px, 4.4vw, 64px);
  max-width: 12ch;
  margin-bottom: var(--s-5);
}
.hl09-copy .lede { color: rgba(255, 255, 255, .62); }

/* ── 10  Broken type ───────────────────────────────────────────────────── */
.hl--10 { padding-block: var(--s-12) var(--s-20); }
.hl10 {
  padding-inline: var(--pad);
  max-width: var(--wrap);
  margin-inline: auto;
}
.hl10-kicker {
  font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: var(--s-6);
}
.hl10-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-12);
}
.hl10-alone,
.hl10-known {
  font-size: clamp(56px, 11vw, 168px);
  line-height: .82;
  letter-spacing: -0.05em;
  font-weight: 400;
}
.hl10-alone {
  color: rgba(255, 255, 255, .45);
  text-align: right;
}
.hl10-known { color: #fff; }
.hl10-arrow {
  width: clamp(72px, 10vw, 160px);
  height: auto;
  overflow: visible;
}
.hl10-arrow path {
  fill: none;
  stroke: #FF4D00;
  stroke-width: 5;
  stroke-linecap: square;
  stroke-linejoin: miter;
}
.hl10-row {
  display: grid;
  grid-template-columns: minmax(16rem, 28rem) 1fr;
  gap: var(--s-12);
  align-items: end;
}
.hl10-stamps {
  display: flex;
  gap: var(--s-3);
  justify-content: flex-end;
}
.hl10-stamps img {
  width: 88px;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #fff;
  transform: rotate(var(--r));
}
.hl10 .lede { margin-bottom: var(--s-6); }

/* ── 11  Filmstrip ─────────────────────────────────────────────────────── */
.hl--11 { padding-block: var(--s-12) 0; overflow: hidden; }
.hl11-copy {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
  margin-bottom: var(--s-12);
}
.hl11-copy .display {
  font-size: clamp(44px, 6vw, 88px);
  max-width: 14ch;
  margin-bottom: var(--s-5);
}
.hl11-strip {
  overflow: hidden;
  cursor: ew-resize;
  padding-block: var(--s-4) var(--s-12);
  touch-action: pan-y;
}
.hl11-track {
  display: flex;
  gap: var(--s-4);
  width: max-content;
  padding-inline: var(--pad);
  will-change: transform;
  transition: transform .18s cubic-bezier(.16, 1, .3, 1);
}
.hl11-frame {
  flex: none;
  width: min(280px, 42vw);
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #fff;
}
.hl11-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.hl11-hint {
  padding: 0 var(--pad) var(--s-8);
  font-size: var(--t-caption);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}

/* ── 12  Sticker board ─────────────────────────────────────────────────── */
.hl--12 { padding: 0; }
.hl12 {
  --fg: #130F0C;
  --bg: #C4A882;
  --rule: rgba(19, 15, 12, .2);
  --rule-strong: rgba(19, 15, 12, .4);
  color: var(--fg);
  background:
    radial-gradient(circle at 20% 30%, rgba(19, 15, 12, .06), transparent 40%),
    #C4A882;
  min-height: min(88vh, 840px);
  position: relative;
  overflow: hidden;
}
.hl12-item {
  position: absolute;
  margin: 0;
  transform: rotate(var(--r));
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}
.hl12-item:hover { transform: rotate(0deg) scale(1.04); z-index: 4; }
.hl12-polaroid {
  width: min(220px, 28vw);
  padding: 8px 8px 28px;
  background: #F6F0E2;
  box-shadow: 0 14px 32px -18px rgba(19, 15, 12, .5);
}
.hl12-polaroid img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.hl12-head {
  max-width: 16ch;
  padding: 18px 22px;
  background: #FF4D00;
  color: #fff;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  border-radius: 4px;
  box-shadow: 0 16px 36px -20px rgba(19, 15, 12, .55);
}
.hl12-lede {
  width: min(240px, 40vw);
  padding: 16px 18px 20px;
  background: #FFE600;
  color: #0015D2;
  font-family: "Imperial Script", var(--font-quote);
  font-size: 28px;
  line-height: 1.1;
  box-shadow: 0 12px 28px -16px rgba(19, 15, 12, .45);
}
.hl12-lede p {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.4;
  color: #130F0C;
  margin-top: 8px;
}
.hl12-actions {
  display: flex;
  gap: 8px;
  background: #F6F0E2;
  padding: 12px;
  border-radius: 999px;
  box-shadow: 0 12px 28px -16px rgba(19, 15, 12, .4);
}
.hl12-badge { transform: rotate(var(--r)); }

/* ── 13  Yearbook ──────────────────────────────────────────────────────── */
.hl--13 { padding: var(--s-8) var(--pad) var(--s-14); }
.hl13 {
  --fg: #130F0C;
  --bg: #E8DFCB;
  --rule: rgba(19, 15, 12, .16);
  --rule-strong: rgba(19, 15, 12, .32);
  color: var(--fg);
  background: #E8DFCB;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
  border-radius: 2px;
  box-shadow:
    inset 1px 0 0 rgba(19, 15, 12, .12),
    0 24px 60px -36px rgba(19, 15, 12, .45);
  overflow: visible;
}
.hl13-page {
  padding: var(--s-8) var(--s-8) var(--s-12);
  position: relative;
}
.hl13-page--left {
  background:
    repeating-linear-gradient(
      180deg,
      transparent 0 27px,
      rgba(19, 15, 12, .06) 27px 28px),
    #EFE6D4;
  box-shadow: inset -18px 0 28px -22px rgba(19, 15, 12, .28);
}
.hl13-page--right {
  background: #F6F0E2;
  box-shadow: inset 18px 0 28px -22px rgba(19, 15, 12, .18);
}
.hl13-folio {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(19, 15, 12, .4);
  margin-bottom: var(--s-6);
}
.hl13-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.hl13-grid figure { margin: 0; }
.hl13-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  filter: grayscale(.15);
}
.hl13-grid figcaption {
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(19, 15, 12, .45);
  margin-top: 6px;
}
.hl13-page--right .display {
  font-size: clamp(32px, 3.6vw, 52px);
  max-width: 12ch;
  margin-bottom: var(--s-5);
  color: #130F0C;
}
.hl13-page--right .lede { color: rgba(19, 15, 12, .62); }
.hl13-spread {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  margin-bottom: var(--s-6);
  border-radius: 2px;
}

/* ── 14  Notecard fan ──────────────────────────────────────────────────── */
.hl--14 {
  padding-block: var(--s-20);
  background: #0B5D3B;
  overflow: visible;
}
.hl14 {
  position: relative;
  height: min(72vh, 640px);
  max-width: 720px;
  margin-inline: auto;
}
.hl14-card {
  position: absolute;
  inset: 12% 12% auto;
  min-height: 340px;
  padding: var(--s-8);
  border-radius: 4px;
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, .55);
  transform-origin: 50% 100%;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
  color: #130F0C;
}
.hl14-card:nth-child(1) { background: #FFE600; z-index: 4; transform: rotate(-1.2deg); }
.hl14-card:nth-child(2) { background: #D1D8FF; z-index: 3; transform: translate(8px, 10px) rotate(1.4deg); }
.hl14-card:nth-child(3) { background: #E8DFCB; z-index: 2; transform: translate(16px, 18px) rotate(-0.8deg); }
.hl14-card:nth-child(4) { background: #FF4D00; color: #fff; z-index: 1; transform: translate(24px, 26px) rotate(2deg); }
.hl14:hover .hl14-card:nth-child(1),
.hl14:focus-within .hl14-card:nth-child(1) { transform: translate(-42%, 6%) rotate(-16deg); }
.hl14:hover .hl14-card:nth-child(2),
.hl14:focus-within .hl14-card:nth-child(2) { transform: translate(-14%, -4%) rotate(-6deg); }
.hl14:hover .hl14-card:nth-child(3),
.hl14:focus-within .hl14-card:nth-child(3) { transform: translate(16%, -2%) rotate(7deg); }
.hl14:hover .hl14-card:nth-child(4),
.hl14:focus-within .hl14-card:nth-child(4) { transform: translate(44%, 8%) rotate(15deg); }
.hl14-card .display {
  font-size: clamp(28px, 3vw, 40px);
  max-width: 12ch;
  color: inherit;
}
.hl14-card .lede { color: inherit; opacity: .8; }
.hl14-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
.hl14-hint {
  text-align: center;
  margin-top: var(--s-6);
  font-size: var(--t-caption);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

/* ── 15  School marquee ────────────────────────────────────────────────── */
.hl--15 { padding-block: var(--s-6) var(--s-14); }
.hl15-band {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, .16);
  padding-block: 10px;
}
.hl15-band--bot { margin-top: var(--s-8); }
.hl15-track {
  display: flex;
  width: max-content;
  animation: hl15roll 32s linear infinite;
}
.hl15-band--bot .hl15-track { animation-direction: reverse; animation-duration: 38s; }
.hl15-track span {
  padding-inline: 1.4em;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .48);
  white-space: nowrap;
}
@keyframes hl15roll { to { transform: translateX(-50%); } }
.hl15-core {
  display: grid;
  grid-template-columns: 1fr minmax(16rem, 28rem);
  gap: var(--s-12);
  align-items: center;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: var(--s-12) var(--pad) 0;
}
.hl15-core .display {
  font-size: clamp(44px, 5.8vw, 84px);
  max-width: 12ch;
  margin-bottom: var(--s-5);
}
.hl15-peek {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}
.hl15-peek img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #fff;
}

/* ── 16  Orbiting known ────────────────────────────────────────────────── */
.hl--16 { padding-block: var(--s-8) var(--s-14); }
.hl16 {
  position: relative;
  height: min(70vh, 640px);
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.hl16-ring {
  position: absolute;
  inset: 8%;
  --yaw: 0deg;
  --pitch: 0deg;
  transform: rotateX(var(--pitch)) rotateY(var(--yaw));
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}
.hl16-sat {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(160px, 18vw);
  margin: 0;
  animation: hl16orbit 36s linear infinite;
  animation-delay: var(--delay);
  pointer-events: auto;
}
.hl16-sat img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #fff;
  box-shadow: 0 16px 32px -20px rgba(0, 0, 0, .6);
}
@keyframes hl16orbit {
  from { transform: translate(-50%, -50%) rotate(var(--a)) translate(min(34vw, 300px)) rotate(calc(-1 * var(--a))); }
  to   { transform: translate(-50%, -50%) rotate(calc(var(--a) + 360deg)) translate(min(34vw, 300px)) rotate(calc(-1 * (var(--a) + 360deg))); }
}
.hl16-word {
  position: relative;
  z-index: 2;
  font-size: clamp(64px, 12vw, 180px);
  line-height: .85;
  letter-spacing: -0.06em;
  margin: 0;
  text-align: center;
  color: #fff;
}
.hl16-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 28rem;
  margin: var(--s-8) auto 0;
}
.hl16-copy .lede { margin-inline: auto; }
.hl16-copy .hero__actions { justify-content: center; }
.hl16-copy .hero__stat { display: flex; justify-content: center; }
.hl16-kicker {
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: var(--s-3);
}

/* ── 17  Cut letters ───────────────────────────────────────────────────── */
.hl--17 { padding-block: var(--s-20) var(--s-14); }
.hl17 {
  padding-inline: var(--pad);
  max-width: var(--wrap);
  margin-inline: auto;
}
.hl17-lead {
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: var(--s-4);
}
.hl17-cut {
  font-size: clamp(72px, 18vw, 240px);
  line-height: .78;
  letter-spacing: -0.07em;
  font-weight: 400;
  background-image: url("../assets/collage/banner.webp");
  background-size: cover;
  background-position: center 40%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin: 0 0 var(--s-12);
  filter: contrast(1.05);
}
.hl17-meta {
  display: grid;
  grid-template-columns: minmax(16rem, 32rem) auto;
  gap: var(--s-12);
  align-items: start;
}
.hl17-meta .lede { margin-bottom: var(--s-6); }
.hl17-side {
  width: min(180px, 22vw);
  border-radius: 10px;
  border: 1px solid #fff;
  overflow: hidden;
}
.hl17-side img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }

/* ── 18  Text thread ───────────────────────────────────────────────────── */
.hl--18 { padding-block: var(--s-12) var(--s-14); }
.hl18 {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: var(--s-12);
  align-items: center;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.hl18-phone {
  background: #1A1613;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  padding: 18px 16px 22px;
  box-shadow: 0 28px 60px -32px rgba(0, 0, 0, .7);
}
.hl18-notch {
  width: 88px;
  height: 18px;
  margin: 0 auto 16px;
  background: #0A0807;
  border-radius: 999px;
}
.hl18-thread { display: grid; gap: 8px; min-height: 360px; align-content: start; }
.hl18-bubble {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
}
.hl18-bubble--them {
  justify-self: start;
  background: #2A2420;
  color: #F6F0E2;
  border-bottom-left-radius: 4px;
}
.hl18-bubble--us {
  justify-self: end;
  background: #FF4D00;
  color: #fff;
  border-bottom-right-radius: 4px;
}
.hl18-bubble--us.hl18-head {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.hl18-dots { letter-spacing: .35em; color: rgba(246, 240, 226, .55); }
.hl18-thread.is-live .hl18-bubble:nth-child(1) { animation: hl18in .4s cubic-bezier(.16, 1, .3, 1) .1s forwards; }
.hl18-thread.is-live .hl18-bubble:nth-child(2) { animation: hl18in .4s cubic-bezier(.16, 1, .3, 1) .7s forwards; }
.hl18-thread.is-live .hl18-bubble:nth-child(3) { animation: hl18in .45s cubic-bezier(.16, 1, .3, 1) 1.6s forwards; }
.hl18-thread.is-live .hl18-bubble:nth-child(4) { animation: hl18in .45s cubic-bezier(.16, 1, .3, 1) 2.2s forwards; }
.hl18-thread.is-live .hl18-actions { animation: hl18in .4s cubic-bezier(.16, 1, .3, 1) 2.8s forwards; }
.hl18-thread.is-live .hl18-react { animation: hl18in .4s cubic-bezier(.16, 1, .3, 1) 3.3s forwards; }
@keyframes hl18in {
  to { opacity: 1; transform: none; }
}
.hl18-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-self: end;
  opacity: 0;
  transform: translateY(10px);
}
.hl18-actions .btn { min-height: 36px; font-size: 14px; }
.hl18-react {
  justify-self: start;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  opacity: 0;
}
.hl18-aside img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #fff;
  display: block;
}
.hl18-aside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
  align-content: center;
}

/* ── 19  Full collage orbit ────────────────────────────────────────────── */
.hl--19 {
  padding-block: var(--s-4) var(--s-20);
  overflow: visible;
}
.hl19-stage {
  position: relative;
  width: min(100%, 1440px);
  margin-inline: auto;
  height: calc(min(28.8vw, 368px) * 2 + 260px);
  display: grid;
  place-items: center;
  perspective: 1400px;
  overflow: visible;
  isolation: isolate;
}
.hl19-ring {
  position: absolute;
  inset: 0;
  --yaw: 0deg;
  --pitch: 0deg;
  transform: rotateX(var(--pitch)) rotateY(var(--yaw));
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}
.hl19-sat {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  animation: hl19orbit 48s linear infinite;
  pointer-events: auto;
}
.hl19-ring--mid .hl19-sat { animation-duration: 44s; }
.hl19-ring--in .hl19-sat { animation-duration: 40s; }
.hl19-sat--out { --rad: min(28.8vw, 368px); }
.hl19-sat--mid { --rad: min(22.8vw, 298px); }
.hl19-sat--in  { --rad: min(16vw, 206px); }

/* Original collage photos — framed prints, not stickers. */
.hl19-photo { width: min(118px, 10.5vw); }
.hl19-photo--wide { width: min(156px, 14vw); }
.hl19-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  border: 1px solid #fff;
  outline: 0;
  box-shadow: none;
}
.hl19-photo--wide img { aspect-ratio: 16 / 10; }
@keyframes hl19orbit {
  from {
    transform:
      translate(-50%, -50%)
      rotate(var(--a))
      translate(var(--rad))
      rotate(calc(-1 * var(--a)))
      rotate(var(--tilt, 0deg));
  }
  to {
    transform:
      translate(-50%, -50%)
      rotate(calc(var(--a) + 360deg))
      translate(var(--rad))
      rotate(calc(-1 * (var(--a) + 360deg)))
      rotate(var(--tilt, 0deg));
  }
}

/* Real sticker files — native aspect, alpha-shaped shadow, no CSS mockups. */
.hl19-sticker {
  border: 0;
  outline: 0;
  background: none;
  overflow: visible;
}
.hl19-sticker img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border: 0;
  outline: 0;
  border-radius: 0;
  box-shadow: none;
  background: none;
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, .38));
}
.hl19-sticker--card img {
  filter: none;
}
.hl19-sticker--hand img {
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, .45));
}
.hl19-sticker--ygt        { width: min(108px, 10vw); }
.hl19-sticker--listen     { width: min(148px, 13.5vw); }
.hl19-sticker--note       { width: min(168px, 15.5vw); }
.hl19-sticker--how        { width: min(156px, 14.5vw); }
.hl19-sticker--bread      { width: min(112px, 10.5vw); }
.hl19-sticker--yellow     { width: min(148px, 13.5vw); }
.hl19-sticker--phone      { width: min(128px, 12vw); }
.hl19-sticker--holo       { width: min(118px, 11vw); }
.hl19-sticker--substance  { width: min(156px, 14.5vw); }
.hl19-sticker--card       { width: min(86px, 8vw); }
.hl19-sticker--hand       { width: min(396px, 36vw); }

.hl19-core {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  pointer-events: none;
  padding: 2.6rem 1.2rem 2.4rem;
  text-align: center;
}
.hl19-title {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  text-align: center;
  font-weight: 400;
  color: #fff;
  pointer-events: none;
}
.hl19-lead {
  display: block;
  width: 100%;
  white-space: nowrap;
  text-align: center;
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, .88);
  text-shadow:
    0 0 1px rgba(0, 0, 0, .85),
    0 1px 0 rgba(0, 0, 0, .55),
    1px 0 0 rgba(0, 0, 0, .35),
    -1px 0 0 rgba(0, 0, 0, .35),
    0 -1px 0 rgba(0, 0, 0, .35),
    0 2px 10px rgba(0, 0, 0, .45),
    0 0 22px rgba(0, 0, 0, .4);
}
.hl19-pair {
  display: block;
  width: 100%;
  margin-top: .06em;
  margin-inline: auto;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(112px, 13.2vw, 192px);
  line-height: .92;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow:
    0 0 1px rgba(0, 0, 0, .85),
    0 1px 0 rgba(0, 0, 0, .55),
    1px 0 0 rgba(0, 0, 0, .35),
    -1px 0 0 rgba(0, 0, 0, .35),
    0 -1px 0 rgba(0, 0, 0, .35),
    0 2px 10px rgba(0, 0, 0, .45),
    0 0 22px rgba(0, 0, 0, .4);
}
.hl19-pair .arrow {
  width: 0.76em;
  height: 0.72em;
  margin-inline: 0.04em 0.06em;
  vertical-align: 0;
  color: inherit;
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, .55))
    drop-shadow(0 0 8px rgba(0, 0, 0, .45));
}

/* “alone”: outline at rest; chrome broken-heart fill + overlay on hover.
   “known”: glossy filled-heart fill + overlay on hover. Art from Figma 15:6. */
.hl19-alone,
.hl19-known {
  position: relative;
  display: inline-block;
  pointer-events: auto;
  isolation: isolate;
}
.hl19-alone { --hl19-heart: url("../assets/hero/alone-heart.png"); }
.hl19-known { --hl19-heart: url("../assets/hero/known-heart.png"); }
.hl19-alone::before,
.hl19-known::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.12em;
  height: 1.12em;
  background: var(--hl19-heart) center / contain no-repeat;
  transform: translate(-50%, -52%) scale(.84);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .48));
  transition:
    opacity .28s ease,
    transform .42s cubic-bezier(.22, 1.28, .38, 1);
}
.hl19-alone:hover::before,
.hl19-alone.is-lit::before,
.hl19-known:hover::before,
.hl19-known.is-lit::before {
  opacity: 1;
  transform: translate(-50%, -52%) scale(1);
}
.hl19-alone__solid {
  position: relative;
  z-index: 1;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}
.hl19-alone__stroke {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #fff;
  paint-order: stroke fill;
  text-shadow: none;
  pointer-events: none;
  opacity: 1;
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, .55))
    drop-shadow(0 0 8px rgba(0, 0, 0, .45));
}
/* Broken-heart art is hollow — keep the 1px outline so “alone” stays readable. */
.hl19-alone:hover .hl19-alone__stroke,
.hl19-alone.is-lit .hl19-alone__stroke {
  opacity: 1;
}

.hl19-known {
  z-index: 1;
}
.hl19-known:hover,
.hl19-known.is-lit {
  background: var(--hl19-heart) 50% 40% / 150% auto no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, .55))
    drop-shadow(0 0 8px rgba(0, 0, 0, .45));
}
.hl19-known__spray {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 0;
  height: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 4;
}
.hl19-below {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-6);
  text-align: center;
  max-width: 36rem;
  margin: var(--s-4) auto 0;
  padding-inline: var(--pad);
  padding-bottom: var(--s-14);
  position: relative;
  z-index: 3;
}
.hl19-below .lede { margin: 0; color: rgba(255, 255, 255, .62); }
.hl19-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  .hl09-pic, .hl09-note, .hl11-track, .hl14-card, .hl16-ring, .hl19-ring { transition: none; }
  .hl16-sat, .hl15-track { animation: none; }
  .hl19-sat {
    animation: none;
    transform:
      translate(-50%, -50%)
      rotate(var(--a))
      translate(var(--rad))
      rotate(calc(-1 * var(--a)))
      rotate(var(--tilt, 0deg));
  }
  .hl18-bubble, .hl18-actions, .hl18-react { opacity: 1; transform: none; animation: none; }
  .hl19-alone::before,
  .hl19-known::before { transition: none; }
}

@media (max-width: 1023px) {
  .hl09 { min-height: 0; padding-bottom: var(--s-12); }
  .hl09-pic { width: 22vw; }
  .hl09-copy { padding-top: var(--s-12); }

  .hl10-pair { grid-template-columns: 1fr; gap: var(--s-2); text-align: left; }
  .hl10-alone, .hl10-known { text-align: left; font-size: clamp(48px, 16vw, 96px); }
  .hl10-row { grid-template-columns: 1fr; }
  .hl10-stamps { justify-content: flex-start; }

  .hl12-item { position: relative; left: auto !important; top: auto !important; margin: var(--s-3); display: inline-block; }
  .hl12 { min-height: 0; padding: var(--s-8) var(--pad); }

  .hl13 { grid-template-columns: 1fr; }
  .hl13-page--left { display: none; }

  .hl14 { height: auto; min-height: 420px; }
  .hl14-card { inset: 8% 6% auto; min-height: 260px; }

  .hl15-core { grid-template-columns: 1fr; }
  .hl15-peek { order: -1; }

  .hl16 { height: min(52vh, 420px); }
  .hl16-sat { width: 22vw; }

  .hl17-cut { font-size: clamp(56px, 22vw, 120px); }
  .hl17-meta { grid-template-columns: 1fr; }
  .hl17-side { display: none; }

  .hl18 { grid-template-columns: 1fr; }
  .hl18-aside { order: -1; max-width: 280px; }

  .hl19-stage { height: clamp(560px, 140vw, 720px); }
  .hl19-sat--out { --rad: min(35.2vw, 208px); }
  .hl19-sat--mid { --rad: min(28.8vw, 168px); }
  .hl19-sat--in { --rad: min(20.8vw, 120px); }
  .hl19-photo { width: 88px; }
  .hl19-photo--wide { width: 112px; }
  .hl19-sticker--ygt        { width: 82px; }
  .hl19-sticker--listen     { width: 108px; }
  .hl19-sticker--note       { width: 122px; }
  .hl19-sticker--how        { width: 114px; }
  .hl19-sticker--bread      { width: 86px; }
  .hl19-sticker--yellow     { width: 108px; }
  .hl19-sticker--phone      { width: 96px; }
  .hl19-sticker--holo       { width: 88px; }
  .hl19-sticker--substance  { width: 114px; }
  .hl19-sticker--card       { width: 64px; }
  .hl19-sticker--hand       { width: min(276px, 72vw); }
  .hl19-core {
    width: 100%;
    padding: 1rem 12px 1.15rem;
    justify-items: center;
    justify-content: center;
    text-align: center;
  }
  .hl19-title {
    width: 100%;
    text-align: center;
  }
  .hl19-lead {
    width: 100%;
    text-align: center;
    font-size: clamp(20px, 5.6vw, 26px);
  }
  .hl19-pair {
    display: block;
    width: 100%;
    margin-inline: auto;
    text-align: center;
    font-size: clamp(44px, 13.2vw, 68px);
    letter-spacing: -0.045em;
  }
}
