:root {
  --bg: #100e0b;
  --ink: #efe6d4;
  --muted: #9d937f;
  --line: rgba(239, 230, 212, 0.14);
  --paper: #f2ebdb;
  --paper-ink: #1a1713;
  --lime: #d7e36b;
  --red: #e5352b;
  --display: "Archivo Black", "Arial Black", Impact, sans-serif;
  --text: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --hand: "Gochi Hand", "Comic Sans MS", cursive;
  --gutter: clamp(16px, 4vw, 56px);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  color: var(--ink);
  font: 400 16px/1.55 var(--text);
  background: var(--bg) radial-gradient(1200px 700px at 50% -10%, rgba(243, 181, 98, 0.1), transparent 70%) no-repeat;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Film grain. */
body::before {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 90;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grain 0.8s steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); } 25% { transform: translate(-3%, 2%); }
  50% { transform: translate(2%, -3%); } 75% { transform: translate(-2%, -1%); } 100% { transform: translate(0, 0); }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; text-decoration-color: rgba(239, 230, 212, 0.35); }
a:hover { color: var(--lime); text-decoration-color: var(--lime); }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }

.sr, .skip:not(:focus) { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip:focus { position: fixed; top: 10px; left: 10px; z-index: 200; background: var(--lime); color: var(--bg); padding: 8px 12px; }

/* Hide the first frame until the intro starts, so nothing flashes. */
.js .hero, .js .bar { visibility: hidden; }

/* ---------- bar ---------- */
.bar {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px var(--gutter);
  color: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
}
.bar a { pointer-events: auto; text-decoration: none; }
.wordmark { font: 20px/1 var(--display); letter-spacing: -0.01em; }
.bar nav { display: flex; gap: clamp(14px, 3vw, 32px); font-size: 13px; font-weight: 500; }
.bar nav a:hover { color: #fff; text-decoration: underline; }

/* ---------- the bathroom ---------- */
.room { position: relative; }
.room picture { display: block; overflow: hidden; }
.room img { width: 100%; }
.room::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(16, 14, 11, 0.55), transparent 16%),
    linear-gradient(to top, rgba(16, 14, 11, 0.85), transparent 24%);
}

.sticker {
  position: absolute;
  z-index: 3;
  left: 3%;
  top: 13%;
  width: clamp(84px, 12vw, 176px);
  transform: rotate(-9deg);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.5));
  pointer-events: none;
}
.sticker polygon { fill: var(--lime); stroke: #a5b33e; stroke-width: 2; }
.sticker text { font: 36px var(--hand); fill: var(--paper-ink); text-anchor: middle; }
.sticker .face { font-size: 22px; }

.spot {
  position: absolute;
  z-index: 4;
  left: var(--x);
  top: var(--y);
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.spot::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(16, 14, 11, 0.35);
  transition: transform 0.2s, background 0.2s;
}
.spot::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  border: 1.5px solid var(--paper);
  animation: ping 2.8s ease-out infinite;
}
.spot:nth-of-type(2)::before { animation-delay: 0.4s; } .spot:nth-of-type(3)::before { animation-delay: 0.8s; }
.spot:nth-of-type(4)::before { animation-delay: 1.2s; } .spot:nth-of-type(5)::before { animation-delay: 1.6s; }
.spot:nth-of-type(6)::before { animation-delay: 2s; } .spot:nth-of-type(7)::before { animation-delay: 2.4s; }
.spot:hover::after, .spot[aria-expanded="true"]::after { background: var(--lime); transform: scale(1.35); }
.spot[aria-expanded="true"]::before { animation: none; opacity: 0; }
@keyframes ping { 0% { transform: scale(0.6); opacity: 0.9; } 70%, 100% { transform: scale(1.9); opacity: 0; } }

/* Tiny label on hover. */
.tip {
  position: absolute;
  left: 50%;
  bottom: 100%;
  margin-bottom: 4px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(16, 14, 11, 0.8);
  color: var(--ink);
  font: 500 12px/1 var(--text);
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, 4px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.spot:hover .tip, .spot:focus-visible .tip { opacity: 1; transform: translate(-50%, 0); }
.spot[aria-expanded="true"] .tip { opacity: 0; }

.note {
  position: absolute;
  z-index: 6;
  width: 230px;
  padding: 18px 16px 12px;
  background: var(--paper);
  color: var(--paper-ink);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5);
  transform: rotate(var(--r, -1.5deg));
}
.note::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 80px;
  height: 20px;
  margin-left: -40px;
  background: rgba(226, 216, 180, 0.85);
  transform: rotate(-4deg);
}
.note p { margin: 0 0 6px; font: 24px/1.15 var(--hand); }
.note a { font: 500 13px var(--text); color: var(--paper-ink); }

.hero-cap {
  position: absolute;
  z-index: 3;
  left: var(--gutter);
  right: var(--gutter);
  bottom: clamp(12px, 2.5vw, 28px);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  pointer-events: none;
}
.hero-cap span:last-child { font: 22px/1 var(--hand); color: var(--lime); }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; padding: clamp(28px, 5vw, 64px) 0; border-bottom: 1px solid var(--line); }
.track { display: flex; width: max-content; white-space: nowrap; will-change: transform; }
.track span, .track i {
  font: clamp(46px, 8vw, 120px)/1 var(--display);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  padding: 0 0.22em;
}
.track i { font-style: normal; color: var(--lime); }

/* ---------- sections ---------- */
section:not(.hero) { padding: clamp(90px, 13vw, 180px) var(--gutter) 0; max-width: 1440px; margin: 0 auto; }
h2 {
  margin: 0 0 clamp(28px, 4vw, 56px);
  font: clamp(50px, 9vw, 144px)/0.9 var(--display);
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
/* Room inside each word's mask for italic overhangs and descenders. */
h2 .w-mask { padding: 0 0.14em 0.16em 0.04em; margin: 0 -0.14em -0.16em -0.04em; }
h3 { margin: 0; font: clamp(20px, 2vw, 28px)/1.05 var(--display); text-transform: uppercase; }

/* the ep */
.listen-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.sleeve { position: relative; }
.sleeve img { width: 100%; transform: rotate(-2.5deg); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6); }
.sleeve::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 16%;
  width: 110px;
  height: 26px;
  background: rgba(226, 216, 180, 0.8);
  transform: rotate(-8deg);
}
.sub { margin: 0 0 28px; color: var(--muted); }
.tracks { list-style: none; margin: 0; padding: 0; counter-reset: t; }
.tracks li {
  counter-increment: t;
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: clamp(16px, 1.5vw, 19px);
}
.tracks li:last-child { border-bottom: 1px solid var(--line); }
.tracks li::before { content: counter(t, decimal-leading-zero); color: var(--muted); font-size: 13px; }
.tracks .t { flex: 1; }
.tracks em { font-style: normal; color: var(--muted); font-size: 0.8em; }
.tracks .l { color: var(--muted); font-size: 13px; }

.actions { margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--bg);
  font: 15px/1 var(--display);
  text-decoration: none;
  transition: transform 0.2s;
}
.btn:hover { color: var(--bg); transform: rotate(-3deg) scale(1.04); }
.soon { margin: 0; font: 26px/1 var(--hand); color: var(--lime); }

/* videos */
.reel { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(20px, 3vw, 40px); }
.ep { margin: 0; }
.frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
.frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); }
.frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.stamp {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 2px 12px 4px;
  font: 26px/1 var(--hand);
  color: var(--red);
  border: 2.5px solid var(--red);
  border-radius: 6px;
  transform: rotate(-8deg);
  background: rgba(16, 14, 11, 0.35);
}
.play { position: absolute; inset: 0; width: 100%; border: 0; cursor: pointer; background: transparent; }
.play::after {
  content: "play";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--bg);
  font: 15px/1 var(--display);
}
.ep figcaption { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-top: 18px; }
.ep figcaption p { margin: 0; color: var(--muted); font-size: 13px; text-align: right; }

/* the band */
.polaroids { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 3vw, 44px); }
.polaroid {
  margin: 0;
  padding: 12px 12px 16px;
  background: #f5efe2;
  color: var(--paper-ink);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  transform: rotate(var(--r, -2deg));
  transition: transform 0.35s;
}
.polaroid:nth-child(2) { --r: 1.5deg; }
.polaroid:nth-child(3) { --r: -1deg; }
.polaroid:hover { transform: rotate(0deg) translateY(-6px); }
.polaroid img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.polaroid figcaption { display: flex; align-items: baseline; gap: 10px; padding: 12px 4px 0; }
.polaroid strong { font: 34px/1 var(--hand); font-weight: 400; }
.polaroid span { font-size: 12.5px; color: #5d5446; }

.door { max-width: 520px; margin: clamp(60px, 8vw, 110px) auto 0; text-align: center; }
.door-label { margin: 0; font-size: 12.5px; color: var(--muted); }
.door blockquote { margin: 12px 0 20px; font: clamp(26px, 3.6vw, 46px)/1.05 var(--display); text-transform: uppercase; letter-spacing: -0.01em; }
.knock {
  font: 500 13px var(--text);
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.knock:hover { border-color: var(--lime); color: var(--lime); }

/* the mirror */
.strip { overflow-x: auto; scrollbar-width: none; margin: 0 calc(var(--gutter) * -1); padding: 10px var(--gutter) 30px; }
.strip::-webkit-scrollbar { display: none; }
.strip-track { display: flex; gap: clamp(14px, 2vw, 26px); width: max-content; }
.strip img {
  width: clamp(210px, 22vw, 320px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
  transform: rotate(-1deg);
}
.strip img:nth-child(even) { transform: rotate(1.3deg) translateY(14px); }

/* press */
.press-grid { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); gap: clamp(28px, 6vw, 96px); }
.bio { margin: 0; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.7; max-width: 36em; }
.kit ul { list-style: none; margin: 0 0 22px; padding: 0; }
.kit li a { display: flex; justify-content: space-between; padding: 14px 0; border-top: 1px solid var(--line); text-decoration: none; }
.kit li:last-child a { border-bottom: 1px solid var(--line); }
.kit li span { color: var(--muted); font-size: 12px; }

/* footer */
.foot { padding: clamp(110px, 14vw, 200px) var(--gutter) 60px; text-align: center; }
.socials { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px; }
.credit { max-width: 34em; margin: 30px auto 6px; color: var(--muted); font-size: 12.5px; }
.label { margin: 0; color: var(--muted); font-size: 12px; }
.label .p { font-family: ui-sans-serif, -apple-system, Arial, sans-serif; }
.plug {
  margin: 44px auto 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  font: 26px/1 var(--hand);
  cursor: pointer;
}
.plug svg { width: 30px; height: 52px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; transform-origin: 50% 0; }
.plug:hover { color: var(--lime); }
.plug:hover svg { animation: swing 0.9s ease-in-out infinite alternate; }
@keyframes swing { from { transform: rotate(-8deg); } to { transform: rotate(8deg); } }

.drained { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; pointer-events: none; }
.drained p { margin: 0; padding: 0 20px; font: clamp(40px, 7vw, 88px)/1 var(--hand); text-align: center; color: var(--ink); }

/* ---------- small screens ---------- */
@media (max-width: 900px) {
  .listen-grid, .press-grid { grid-template-columns: 1fr; }
  .sleeve { max-width: 420px; }
  .reel { grid-template-columns: 1fr; }
  .polaroids { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}
@media (max-width: 700px) {
  .bar { padding-top: 14px; }
  .bar nav { gap: 10px; font-size: 11px; }
  .wordmark { font-size: 20px; }
  .spot[data-note="ceiling"] { top: 21%; }
  /* Crop the photo to 4:3 on phones so the room is bigger; the dots follow the crop. */
  .room img { aspect-ratio: 4 / 3; object-fit: cover; }
  .spot { left: calc((var(--x) - 12.78%) * 1.3435); }
  .sticker { left: 3%; top: 17%; width: 76px; }
  .note { position: fixed; left: 12px !important; right: 12px; bottom: 12px; top: auto !important; width: auto; transform: none; }
  .hero-cap span:first-child { font-size: 12px; }
  .ep figcaption { display: block; }
  .ep figcaption p { text-align: left; margin-top: 6px; }
}
@media (prefers-reduced-motion: reduce) {
  body::before, .spot::before, .plug:hover svg { animation: none; }
  .polaroid, .btn { transition: none; }
}
