/* ============================================================
   STLDW — raw pass
   ============================================================ */

:root {
  --bg: #ffffff;
  --ink: #000000;
  --pink: #ff2d95;
  --gap: clamp(12px, 1.6vw, 20px);
  --pad: clamp(16px, 3vw, 40px);
  --nav-h: clamp(48px, 6vh, 64px);
  --sans: -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, "Courier New", monospace;
  --serif: "Times New Roman", Times, serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html { scroll-behavior: smooth; }

::selection { background: var(--pink); color: #fff; }

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a:hover { color: var(--pink); text-decoration-color: var(--pink); }

img, video { max-width: 100%; display: block; }

hr {
  border: 0;
  border-top: 1px solid var(--ink);
  margin: 0;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 var(--pad);
  background: var(--bg);
  border-bottom: 1px solid var(--ink);
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 700;
  letter-spacing: 0;
}
.brand { text-decoration: none; }
.brand:hover { color: var(--pink); }
.links { display: flex; gap: clamp(12px, 1.4vw, 22px); }
.links a { text-decoration: none; }
.links a:hover { color: var(--pink); }

/* ============================================================
   HERO — full-bleed video stage, no frame
   ============================================================ */
.hero { padding: 0; }
.hero__stage {
  position: relative;
  width: 100%;
  height: calc(90vh - var(--nav-h));
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--ink);
}
@media (hover: hover) and (pointer: fine) {
  .hero__stage { cursor: none; }
}
.hero__stage:focus-visible { outline: 2px solid var(--pink); outline-offset: -2px; }
.hero__v {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 800ms ease;
  pointer-events: none;
}
.hero__v.is-active { opacity: 1; }

@media (max-width: 720px) {
  .hero__stage {
    aspect-ratio: auto;
    height: calc(100svh - var(--nav-h));
    max-height: none;
  }
}

/* cursor peek — black circle with an arrow */
.hero__peek {
  position: absolute;
  top: 0; left: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 150ms ease;
  z-index: 5;
  background: #000;
  color: #fff;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transform: translate3d(-9999px, -9999px, 0);
  will-change: transform;
}
.hero__stage:hover .hero__peek { opacity: 1; }
.hero__stage.is-tray-open .hero__peek { opacity: 0; }
.hero__stage.is-tray-open { cursor: auto; }
@media (hover: none) { .hero__peek { display: none; } }

/* ============================================================
   HEADLINE — serif drop, small meta, stacked left
   ============================================================ */
.headline {
  padding: clamp(24px, 4vh, 56px) var(--pad) clamp(40px, 8vh, 100px);
  display: grid;
  gap: clamp(32px, 5vh, 64px);
  border-bottom: 1px solid var(--ink);
}
.headline__h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  max-width: 14ch;
}
.headline__body {
  max-width: 62ch;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.5;
  font-weight: 400;
}
.headline__body p { margin: 0 0 1em 0; }
.headline__body p:last-child { margin-bottom: 0; }
.headline__meta {
  padding-top: 1em;
  font-family: var(--mono);
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: var(--ink);
  font-weight: 400;
}

/* ============================================================
   BLOCK — general section
   ============================================================ */
.block {
  padding: clamp(56px, 8vw, 120px) var(--pad);
  border-bottom: 1px solid var(--ink);
}
.block--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 860px) {
  .block--split { grid-template-columns: 1fr; }
}

/* label: [ 01 / the week ] — raw monospace tag */
.block__label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  font-weight: 400;
  margin: 0 0 32px;
  color: var(--ink);
}
.block__label::before { content: "[ "; }
.block__label::after  { content: " ]"; }
.block__label--invert { color: #fff; }

.block__lede {
  max-width: 22ch;
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 0 0 32px;
}
.block__lede p { margin: 0 0 0.25em; }
.block__lede p:nth-child(n+2) {
  font-family: var(--sans);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
  max-width: 60ch;
  margin-top: 0.8em;
}

.block__small {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  max-width: 60ch;
  margin: 0 0 28px;
}

.block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  align-items: baseline;
  margin-top: 16px;
}

.block__media {
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border: 1px solid var(--ink);
}
.block__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   THINGS — the 3-item list: show up / pitch in / chip in
   ============================================================ */
.things {
  padding: clamp(48px, 8vw, 120px) var(--pad);
  border-bottom: 1px solid var(--ink);
}
.things__list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: thing;
  display: grid;
  gap: clamp(40px, 5vw, 64px);
}
.thing {
  counter-increment: thing;
  display: grid;
  grid-template-columns: 4ch 1fr;
  column-gap: clamp(16px, 2vw, 32px);
  padding-top: clamp(24px, 3vw, 40px);
  border-top: 1px solid var(--ink);
}
.thing:first-child { border-top: 0; padding-top: 0; }
.thing::before {
  content: counter(thing, decimal-leading-zero);
  grid-column: 1;
  grid-row: 1;
  font-family: var(--mono);
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.04em;
  font-weight: 400;
  align-self: start;
  padding-top: 1.1em;
}
.thing > * { grid-column: 2; }
.thing__h {
  grid-row: 1;
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.thing p {
  margin: 0 0 20px;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.5;
  max-width: 56ch;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  padding: clamp(56px, 8vw, 120px) var(--pad);
  border-bottom: 1px solid var(--ink);
}
.newsletter__h {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ============================================================
   BUTTONS / LINKS — no pills. just text.
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 0 0 3px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  border-radius: 0;
}
.btn:hover {
  color: var(--pink);
  text-decoration-color: var(--pink);
}
.btn--invert { color: #fff; }
.btn--invert:hover { color: var(--pink); }

.link {
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.link:hover { color: var(--pink); }

/* ============================================================
   BAND — full-bleed video w/ solid black caption bar
   ============================================================ */
.band {
  position: relative;
  height: clamp(480px, 78vh, 760px);
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--ink);
}
.band__media { position: absolute; inset: 0; }
.band__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.band__inner {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(32px, 4vw, 56px) var(--pad);
  background: #000;
  color: #fff;
  border-top: 1px solid #fff;
}
.band__h {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  max-width: 14ch;
  color: #fff;
}
.band__body {
  max-width: 60ch;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
  margin-bottom: 24px;
}
.band__body p { margin: 0; }

/* ============================================================
   SCENES — grid, raw labels, no pill backgrounds
   ============================================================ */
.scenes {
  border-bottom: 1px solid var(--ink);
  background: var(--bg);
}
.scenes__head {
  padding: clamp(40px, 6vw, 88px) var(--pad) clamp(24px, 3vw, 40px);
}
.scenes__h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 18ch;
}
.scenes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
}
.scenes__grid > * {
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.scenes__grid > *:nth-child(3n) { border-right: 0; }
@media (max-width: 860px) {
  .scenes__grid { grid-template-columns: repeat(2, 1fr); }
  .scenes__grid > * { border-right: 1px solid var(--ink); }
  .scenes__grid > *:nth-child(3n) { border-right: 1px solid var(--ink); }
  .scenes__grid > *:nth-child(2n) { border-right: 0; }
}
@media (max-width: 540px) {
  .scenes__grid { grid-template-columns: 1fr; }
  .scenes__grid > * { border-right: 0; }
}
.scene {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  margin: 0;
}
.scene video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.scene::after {
  content: attr(data-label);
  position: absolute;
  top: 12px; left: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: #fff;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

/* ============================================================
   SPONSORS — monospace marquee, no frames
   ============================================================ */
.sponsors {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  max-width: 80ch;
}
.sponsor {
  padding: 0;
  background: none;
  color: var(--ink);
  font-weight: 400;
}
.sponsor::after { content: " ·"; color: var(--ink); }
.sponsor:last-child::after { content: ""; }
.sponsor:hover { color: var(--pink); }

/* ============================================================
   NEWSLETTER — naked input, baseline underline
   ============================================================ */
.news {
  display: flex;
  gap: 12px;
  align-items: baseline;
  max-width: 640px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.news input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 8px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-size: 18px;
  font-family: var(--sans);
  font-weight: 400;
  outline: none;
  border-radius: 0;
}
.news input[type="email"]:focus { border-bottom-color: var(--pink); }
.news input[type="email"]::placeholder { color: #888; font-weight: 400; }
.news__fineprint {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink);
  margin-top: 16px;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

/* ============================================================
   TRAY — slide-out location index inside the hero
   ============================================================ */
.tray__trigger {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 7;
  background: #000;
  color: #fff;
  border: 0;
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border-radius: 0;
}
.tray__trigger:hover { color: var(--pink); }

.tray {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 88%);
  background: #000;
  color: #fff;
  padding: 32px 28px 72px;
  overflow-y: auto;
  z-index: 6;
  transform: translateX(100%);
  transition: transform 320ms ease;
  cursor: auto;
  border-left: 1px solid #fff;
}
.tray.is-open { transform: translateX(0); }

.tray__label {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.tray__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.9;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.tray__list li { margin: 0; }
.tray__list a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  cursor: pointer;
}
.tray__list a:hover {
  color: var(--pink);
  text-decoration-color: var(--pink);
}

/* ============================================================
   FOOTER — monospace, left-aligned, no gentleness
   ============================================================ */
.foot {
  border-top: 0;
  padding: clamp(40px, 5vw, 72px) var(--pad) clamp(24px, 3vw, 40px);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  line-height: 1.6;
}
.foot strong { font-weight: 700; text-transform: none; font-family: var(--sans); font-size: 16px; letter-spacing: 0; }
.foot__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.foot__row > div:last-child { text-align: right; }
@media (max-width: 700px) {
  .foot__row { grid-template-columns: 1fr; gap: 24px; }
  .foot__row > div:last-child { text-align: left; }
}
.foot__links { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
@media (max-width: 700px) { .foot__links { align-items: flex-start; } }
.foot__links a { text-decoration: underline; text-underline-offset: 3px; }
.foot__links a:hover { color: var(--pink); }
.foot__tag {
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: 20px;
  border-top: 1px solid var(--ink);
  text-align: left;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--ink);
  font-weight: 400;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  .nav { font-size: 12px; }
  .brand { font-size: 12px; }
  .links { gap: 12px; font-size: 12px; }
}

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