:root {
  --paper: #f1ede6;
  --ink: #0b0b0c;
  --red: #ef3d24;
  --blue: #2d5cff;
  --soft-blue: #d8e2ff;
  --line: rgba(11,11,12,.18);
  --white-line: rgba(255,255,255,.24);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; }
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-content: center;
  gap: 16px;
  background: var(--ink);
  color: var(--paper);
  transition: opacity .55s ease, visibility .55s ease;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-number {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  font-weight: 900;
}
.loading-line {
  width: 240px;
  height: 2px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
}
.loading-line span {
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--blue));
  animation: loading 1.3s ease-in-out infinite;
}
@keyframes loading { from { transform: translateX(-120%); } to { transform: translateX(230%); } }
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 250;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 2px solid var(--red);
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: difference;
}
.topbar {
  position: fixed;
  top: 4px;
  left: 0;
  right: 0;
  z-index: 200;
  height: 78px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  background: rgba(241,237,230,.9);
  border-bottom: 1px solid rgba(11,11,12,.16);
  backdrop-filter: blur(16px);
}
.wordmark {
  display: grid;
  line-height: .84;
  text-transform: uppercase;
  letter-spacing: -.04em;
  font-size: 21px;
  font-weight: 950;
}
.main-nav {
  justify-self: center;
  display: flex;
  gap: 28px;
}
.main-nav a,
.mobile-menu a {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 900;
}
.topbar-actions { display: flex; gap: 12px; align-items: center; }
.outline-link,
.menu-button {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 900;
}
.menu-button { display: none; color: var(--ink); }
.mobile-menu {
  position: fixed;
  top: 82px;
  left: 0;
  right: 0;
  z-index: 195;
  display: none;
  gap: 18px;
  padding: 22px 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.mobile-menu.open { display: grid; }
.poster-grid {
  min-height: 100vh;
  padding: 112px 4vw 46px;
  display: grid;
  grid-template-columns: 58px minmax(0, .86fr) minmax(420px, 1.14fr) 42px;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.hero-index {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
  font-weight: 900;
  border-right: 1px solid var(--line);
}
.hero-type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0 30px;
}
.kicker,
.section-label {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 900;
}
.section-label.blue { color: var(--blue); }
.section-label.inverse { color: var(--paper); }
.hero h1 {
  margin: 0;
  display: grid;
  line-height: .76;
  text-transform: uppercase;
  letter-spacing: -.085em;
  font-size: clamp(70px, 10vw, 160px);
}
.hero h1 span { display: block; }
.hero .line-two { color: var(--red); }
.hero .line-three { color: var(--blue); }
.hero-copy {
  max-width: 640px;
  margin: 34px 0 0;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.5;
  font-weight: 700;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.solid-button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 900;
}
.solid-button.light { background: var(--paper); color: var(--ink); }
.text-button {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 900;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.hero-collage {
  position: relative;
  min-height: 700px;
  align-self: center;
}
.hero-collage > div:not(.collage-tag) {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
}
.hero-collage img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collage-main {
  inset: 2% 12% 18% 18%;
  clip-path: polygon(0 0, 100% 8%, 92% 100%, 5% 92%);
}
.collage-live {
  width: 48%;
  height: 28%;
  left: 0;
  bottom: 0;
  transform: rotate(-4deg);
}
.collage-cover {
  width: 35%;
  aspect-ratio: 1;
  right: 0;
  bottom: 7%;
  transform: rotate(5deg);
  box-shadow: 14px 14px 0 var(--red);
}
.collage-cover img { object-fit: contain; }
.collage-main img { object-position: center top; }
.collage-tag {
  position: absolute;
  top: 3%;
  right: 2%;
  padding: 10px 12px;
  border: 1px solid var(--ink);
  background: var(--paper);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  font-weight: 900;
  transform: rotate(4deg);
}
.hero-side-copy {
  writing-mode: vertical-rl;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
  font-weight: 900;
  border-left: 1px solid var(--line);
}
.headline-tape {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}
.headline-tape > div {
  display: flex;
  width: max-content;
  gap: 40px;
  padding: 15px 0;
  animation: tape 24s linear infinite;
}
.headline-tape span {
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 11px;
  font-weight: 900;
}
@keyframes tape { to { transform: translateX(-50%); } }
.release-spread {
  min-height: 880px;
  display: grid;
  grid-template-columns: 110px minmax(360px, .9fr) minmax(0, 1.1fr) 90px;
  gap: 30px;
  align-items: center;
  padding: 90px 4vw;
  background: var(--red);
  color: var(--paper);
}
.spread-number {
  align-self: start;
  font-size: 84px;
  font-weight: 950;
  line-height: .8;
}
.spread-art img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  background: #27100c;
  box-shadow: 20px 20px 0 rgba(11,11,12,.9);
}
.spread-copy h2,
.single-copy h2,
.statement-intro h2,
.archive-header h2,
.live-content h2,
.listen-head h2 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -.07em;
  line-height: .86;
  font-size: clamp(56px, 8vw, 122px);
}
.spread-copy > p:last-of-type,
.single-copy > p:last-of-type,
.live-content > p:last-of-type {
  max-width: 700px;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 700;
}
.spread-note {
  align-self: end;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  font-weight: 900;
}
.icon-row { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.icon-row a {
  height: 58px;
  min-width: 58px;
  padding: 0 14px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  background: rgba(0,0,0,.08);
}
.icon-row img { width: 30px; height: 30px; object-fit: contain; display: block; }
.icon-row .amazon-link { min-width: 128px; background: #101010; }
.icon-row .amazon-link img { width: 96px; height: 28px; }
.single-spread {
  min-height: 880px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  gap: 60px;
  align-items: center;
  padding: 90px 7vw;
  background: var(--soft-blue);
}
.single-image-wrap {
  background: var(--ink);
  padding: 22px;
  transform: rotate(2deg);
  box-shadow: -20px 20px 0 var(--blue);
}
.single-image-wrap img { width: 100%; aspect-ratio: 1; object-fit: contain; display: block; }
.single-caption {
  margin-top: 18px;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  font-weight: 900;
}
.statement {
  padding: 100px 4vw;
  background: var(--paper);
}
.statement-intro {
  display: grid;
  grid-template-columns: .35fr 1.65fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 58px;
}
.statement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--ink);
}
.statement-card {
  min-height: 420px;
  padding: 32px;
  border-right: 1px solid var(--ink);
}
.statement-card:last-child { border-right: 0; }
.statement-card.red { background: var(--red); color: var(--paper); }
.statement-card.black { background: var(--ink); color: var(--paper); }
.statement-card.blue { background: var(--blue); color: var(--paper); }
.statement-card span {
  display: block;
  margin-bottom: 50px;
  font-size: 12px;
  letter-spacing: .16em;
  font-weight: 900;
}
.statement-card h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -.05em;
  font-size: 48px;
}
.statement-card p { margin-top: 20px; font-size: 17px; line-height: 1.55; font-weight: 700; }
.archive {
  padding: 100px 4vw;
  background: #d8d2c8;
}
.archive-header {
  display: grid;
  grid-template-columns: .25fr 1fr .6fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 52px;
}
.archive-header p:last-child {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 900;
  text-align: right;
}
.archive-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.photo-block {
  position: relative;
  padding: 0;
  border: 1px solid var(--ink);
  background: var(--ink);
  overflow: hidden;
  cursor: pointer;
}
.photo-block img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.photo-block:hover img { transform: scale(1.025); }
.photo-block span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  background: var(--paper);
  border: 1px solid var(--ink);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 9px;
  font-weight: 900;
}
.photo-a { grid-column: span 8; min-height: 520px; }
.photo-b { grid-column: span 4; min-height: 520px; }
.photo-c { grid-column: span 5; min-height: 430px; }
.photo-d { grid-column: span 3; min-height: 430px; }
.photo-e { grid-column: span 4; min-height: 430px; }
.photo-f { grid-column: span 12; min-height: 560px; }
.photo-a img,
.photo-f img { object-fit: contain; }
.live-section {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
}
.live-image,
.live-overlay { position: absolute; inset: 0; }
.live-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.live-overlay { background: linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.34), rgba(0,0,0,.78)); }
.live-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 86vw);
}
.live-content > p:last-of-type { max-width: 720px; }
.live-eq {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 54px;
  height: 120px;
  display: flex;
  gap: 8px;
  align-items: end;
}
.live-eq span {
  width: 8px;
  height: var(--h);
  background: var(--red);
  animation: eq 1.2s ease-in-out infinite alternate;
}
.live-eq span:nth-child(2n) { background: var(--blue); animation-delay: .2s; }
@keyframes eq { to { transform: scaleY(.55); } }
.listen {
  padding: 100px 4vw;
  background: var(--paper);
}
.listen-head {
  display: grid;
  grid-template-columns: .3fr 1.7fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 50px;
}
.platform-list { border-top: 1px solid var(--ink); }
.platform-list a {
  min-height: 86px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  transition: padding .2s ease, background .2s ease;
}
.platform-list a:hover { padding-left: 18px; padding-right: 18px; background: rgba(11,11,12,.04); }
.platform-list span {
  text-transform: uppercase;
  letter-spacing: -.03em;
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 950;
}
.platform-list img { width: 34px; height: 34px; object-fit: contain; }
.platform-list .amazon-row img { width: 116px; height: auto; }
.platform-list .linkme-row img { width: 34px; height: 34px; }
.footer {
  padding: 70px 4vw 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  background: var(--ink);
  color: var(--paper);
}
.footer-wordmark {
  text-transform: uppercase;
  letter-spacing: -.08em;
  line-height: .78;
  font-size: clamp(72px, 13vw, 210px);
  font-weight: 950;
}
.footer-meta {
  display: grid;
  gap: 10px;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
  font-weight: 900;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(0,0,0,.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox figure { margin: 0; max-width: min(1200px, 92vw); max-height: 88vh; }
.lightbox img { max-width: 100%; max-height: 80vh; width: auto; height: auto; display: block; }
.lightbox figcaption { margin-top: 12px; color: var(--paper); text-align: center; text-transform: uppercase; letter-spacing: .14em; font-size: 10px; font-weight: 900; }
.lightbox-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--paper);
  background: transparent;
  color: var(--paper);
  font-size: 28px;
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
@media (max-width: 1100px) {
  .main-nav,
  .outline-link { display: none; }
  .menu-button { display: inline-flex; }
  .topbar { grid-template-columns: auto 1fr auto; padding: 0 20px; }
  .poster-grid { grid-template-columns: 38px 1fr; padding: 110px 24px 44px; }
  .hero-collage { grid-column: 2; min-height: 620px; }
  .hero-side-copy { display: none; }
  .release-spread { grid-template-columns: 80px 1fr; }
  .spread-copy { grid-column: 2; }
  .spread-note { display: none; }
  .single-spread,
  .statement-intro,
  .archive-header,
  .listen-head { grid-template-columns: 1fr; }
  .statement-grid { grid-template-columns: 1fr; }
  .statement-card { border-right: 0; border-bottom: 1px solid var(--paper); }
  .archive-header p:last-child { text-align: left; }
}
@media (max-width: 760px) {
  .wordmark { font-size: 16px; }
  .poster-grid { grid-template-columns: 1fr; padding: 110px 20px 40px; }
  .hero-index { display: none; }
  .hero-collage { grid-column: 1; min-height: 520px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .solid-button { width: 100%; }
  .release-spread { grid-template-columns: 1fr; padding: 70px 20px; }
  .spread-number { font-size: 58px; }
  .spread-copy { grid-column: 1; }
  .single-spread,
  .statement,
  .archive,
  .listen { padding: 70px 20px; }
  .statement-card { min-height: 320px; }
  .archive-layout { grid-template-columns: 1fr; }
  .photo-a,.photo-b,.photo-c,.photo-d,.photo-e,.photo-f { grid-column: 1; min-height: auto; }
  .photo-block img { height: auto; object-fit: contain; }
  .live-content { width: calc(100% - 40px); }
  .live-eq { display: none; }
  .platform-list span { font-size: 26px; }
  .platform-list .amazon-row img { width: 96px; }
  .footer { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
  .cursor-dot { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
