:root {
  --void: #0a0a0d;
  --panel: #14141a;
  --led: #ff1f2e;
  --paper: #f5f0e0;
  --ink: #1f1a14;
  --ash: #8c8c8c;
}

* { box-sizing: border-box; }
html, body { margin: 0; background: var(--void); color: var(--paper); }
body {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  min-height: 100vh;
}

.page-wrap {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  min-height: 100vh;
}

.spine {
  position: sticky;
  top: 1.5rem;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 1.5rem 0.85rem;
  border-right: 1px solid rgba(255, 31, 46, 0.28);
}

.spine-mark {
  color: var(--led);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  font-size: 1.1rem;
}

.spine-nav {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.spine-nav a {
  color: var(--ash);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.spine-nav a:hover,
.spine-nav a.is-here { color: var(--led); }

.main-stage { min-width: 0; }

.hero-slash {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  padding: 3.5rem 8vw 3rem 2.5rem;
  overflow: hidden;
}

.slash-band {
  position: absolute;
  inset: -20% -10% auto -30%;
  height: 70%;
  background: linear-gradient(118deg, #ff1f2e 0%, #720c14 42%, transparent 43%);
  transform: skewY(-11deg);
  opacity: 0.55;
  pointer-events: none;
}

.hero-copy { position: relative; z-index: 1; }
.hero-kicker {
  margin: 0 0 0.6rem;
  color: var(--led);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.7rem;
}
.hero-slash h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 0.9;
}
.hero-line {
  margin: 0.85rem 0 0;
  color: var(--paper);
  font-size: 1.05rem;
}
.hero-tag {
  margin: 1.1rem 0 0;
  max-width: 34rem;
  color: var(--ash);
  line-height: 1.55;
}

.hero-plate {
  position: relative;
  z-index: 1;
  margin: 0;
  align-self: end;
}
.hero-plate img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(245, 240, 224, 0.12);
}

.mosaic-band {
  padding: 2.5rem 8vw 2.5rem 2.5rem;
}
.mosaic-band h2 { margin: 0 0 1.4rem; font-size: 1.35rem; }

.uneven-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.15fr;
  grid-auto-rows: minmax(8rem, auto);
  gap: 0.7rem;
}
.mosaic-cell {
  background: var(--panel);
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(255, 31, 46, 0.18);
}
.mosaic-cell h3 {
  margin: 0 0 0.55rem;
  color: var(--led);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.mosaic-cell p {
  margin: 0;
  color: var(--ash);
  line-height: 1.5;
  font-size: 0.88rem;
}
.cell-wide { grid-column: span 2; }
.cell-tall { grid-row: span 2; }
.cell-tall img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  margin: 0 0 0.8rem;
  display: block;
}

.prose-shots {
  padding: 1.5rem 8vw 2.8rem 2.5rem;
  border-top: 1px solid rgba(245, 240, 224, 0.08);
}
.centered-intro {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 1.8rem;
}
.centered-intro h2 { margin: 0 0 0.5rem; }
.centered-intro p { margin: 0; color: var(--ash); }
.prose-shots > p {
  max-width: 46rem;
  line-height: 1.7;
  color: var(--ash);
}
.shot-inline {
  display: inline-block;
  width: 7.5rem;
  height: auto;
  vertical-align: middle;
  margin: 0 0.45rem;
  border: 1px solid rgba(255, 31, 46, 0.35);
}
.shot-wide { margin: 1.6rem 0 0; max-width: 36rem; }
.shot-wide img { width: 100%; height: auto; display: block; }

.legal-expand {
  padding: 1.6rem 8vw 2rem 2.5rem;
  max-width: 46rem;
}
.legal-expand h2 {
  margin: 0 0 0.7rem;
  color: var(--led);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.legal-expand p { color: var(--ash); line-height: 1.6; }
.legal-expand details { margin-top: 0.7rem; }
.legal-expand summary {
  cursor: pointer;
  color: var(--paper);
  letter-spacing: 0.04em;
}
.mail { color: var(--led); }
.foot-copy { font-size: 0.75rem; opacity: 0.7; }

@media (max-width: 900px) {
  .page-wrap { grid-template-columns: 1fr; padding-bottom: 4.5rem; }
  .spine {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 20;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-right: 0;
    border-top: 1px solid rgba(255, 31, 46, 0.35);
    background: #0a0a0d;
    padding: 0.7rem 1rem;
  }
  .spine-nav { flex-direction: row; flex-wrap: wrap; gap: 0.65rem; }
  .hero-slash,
  .uneven-mosaic { grid-template-columns: 1fr; }
  .cell-wide, .cell-tall { grid-column: auto; grid-row: auto; }
  .hero-slash, .mosaic-band, .prose-shots, .legal-expand {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
