/* ═══════════════════════════════════════════════════════════
   GETTOBABYJESUS
   Dark, minimal, club-first. Bone on soot, one red accent.
   Archivo (condensed heavy) · Space Mono (labels) · EB Garamond (press kit)
   ═══════════════════════════════════════════════════════════ */

:root {
  --black: #0a0a09;
  --bone: #efe9dc;
  --red: #e3352b;
  --ink: #17140f;
  --paper: #ded8c7;
  --gold: #c9a961;

  --bg: var(--black);
  --fg: var(--bone);
  --line: color-mix(in srgb, var(--fg) 20%, transparent);
  --line-soft: color-mix(in srgb, var(--fg) 11%, transparent);

  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono: "Archivo", Arial, sans-serif;
  --serif: "EB Garamond", Georgia, serif;

  --gutter: clamp(1.25rem, 4vw, 4rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; touch-action: manipulation; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
em { font-style: italic; }

section[id] { scroll-margin-top: 2rem; }

/* skip link — hidden until keyboard focus */
.skip {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  transform: translate(-50%, calc(-100% - 1.5rem));
  z-index: 100;
  background: var(--red);
  color: var(--bone);
  font-family: var(--sans); font-stretch: 125%;
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
  padding: 0.6rem 1.1rem;
  transition: transform 0.2s;
}
.skip:focus-visible { transform: translate(-50%, 0); }

/* ─── mono label ───────────────────────────────────────── */

.tag {
  font-family: var(--sans); font-stretch: 125%;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
}

.arr { display: inline-block; transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); }

/* ─── top chrome : logo only, centered like Hardwell ───── */

.top {
  position: fixed;
  inset: 0 0 auto 0;
  display: flex;
  justify-content: center;
  padding: 1.5rem var(--gutter);
  z-index: 40;
  pointer-events: none;
}
.top__brand { pointer-events: auto; display: block; }
.top__brand img { width: clamp(150px, 16vw, 220px); height: auto; }

/* ─── hero : the club, nothing else ────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,9,0.62) 0%, rgba(10,10,9,0.12) 26%, rgba(10,10,9,0.1) 62%, rgba(10,10,9,0.92) 100%);
  pointer-events: none;
}

.hero__down {
  position: absolute;
  left: 50%;
  bottom: 2.4rem;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-family: var(--sans); font-stretch: 125%;
  font-size: 1rem;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.hero__down:hover { background: var(--bone); color: var(--black); border-color: var(--bone); }
.hero__down-arr { display: inline-block; }

/* ─── my story : Hardwell anatomy ──────────────────────── */

.story {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(6rem, 14vh, 9rem) var(--gutter);
  overflow: hidden;
}
.story__clip {
  position: absolute;
  right: clamp(1rem, 8vw, 9rem);
  top: 50%;
  translate: 0 -50%;
  rotate: 2deg;
  width: clamp(13rem, 21vw, 18rem);
  box-shadow: 0 34px 80px -30px rgba(0, 0, 0, 0.95);
}
.story__video {
  width: 100%;
  aspect-ratio: 480 / 848;
  object-fit: cover;
}

/* sound toggle for the video players */
.sound {
  font-family: var(--sans); font-stretch: 125%;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(10, 10, 9, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.sound:hover { background: var(--bone); color: var(--black); }
.hero__sound {
  position: absolute;
  right: var(--gutter);
  bottom: 2.4rem;
  z-index: 3;
}
.story__sound {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
}
.story__body {
  position: relative;
  z-index: 2;
  max-width: 56rem;
}
.story .tag { display: block; margin-bottom: 2.2rem; }
.story__text {
  font-family: var(--sans);
  font-stretch: 66%;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.45rem, 2.9vw, 2.5rem);
  line-height: 1.3;
  letter-spacing: 0.012em;
  max-width: 34ch;
  text-wrap: pretty;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin-top: 2.6rem;
  background: none;
  border: 1px solid var(--bone);
  color: var(--bone);
  font-family: var(--sans); font-stretch: 125%;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.btn:hover { background: var(--bone); color: var(--black); }
.btn:hover .arr { transform: translateX(4px); }

.story__full {
  max-width: 58ch;
  margin-top: 2.4rem;
  overflow: hidden;
}
.story__full p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.7;
  opacity: 0.82;
}
.story__full p + p { margin-top: 1em; }

/* ─── shows : horizontal filmstrip ─────────────────────── */

.shows {
  position: relative;
  padding: clamp(6rem, 12vh, 9rem) 0 clamp(4rem, 8vh, 6rem);
  overflow: hidden;
}
.shows .tag { display: block; text-align: center; margin-bottom: clamp(2.5rem, 6vh, 4rem); }
.shows__viewport { overflow: hidden; }
.shows__track {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.6vw, 2.6rem);
  padding: 2rem var(--gutter);
  width: max-content;
}
.showimg {
  flex: none;
  rotate: calc(var(--r, 0) * 1deg);
  box-shadow: 0 34px 80px -34px rgba(0, 0, 0, 0.95);
}
.showimg img {
  height: clamp(19rem, 58vh, 32rem);
  width: auto;
}
.showimg:nth-child(1) { --r: -1.4; }
.showimg:nth-child(2) { --r: 1.1; }
.showimg:nth-child(3) { --r: -0.7; }
.showimg:nth-child(4) { --r: 1.6; }
.showimg:nth-child(5) { --r: -1.1; }
.showimg:nth-child(6) { --r: 0.8; }

@media (max-width: 899px) {
  .shows__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .shows__viewport::-webkit-scrollbar { display: none; }
  .showimg { scroll-snap-align: center; }
  .showimg img { height: clamp(15rem, 44vh, 22rem); }
}

/* ─── track list ───────────────────────────────────────── */

.tracks {
  list-style: none;
  max-width: 72rem;
  margin: clamp(3rem, 7vh, 5rem) auto clamp(5rem, 10vh, 8rem);
  border-top: 1px solid var(--line-soft);
}
.tracks a {
  display: grid;
  grid-template-columns: 3.2rem 1fr auto;
  align-items: baseline;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.1rem, 2.4vh, 1.7rem) 0.25rem;
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
  transition: padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.tracks .idx {
  font-family: var(--sans); font-stretch: 125%;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--red);
}
.tracks .name {
  font-family: var(--sans);
  font-stretch: 64%;
  font-weight: 850;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  transition: color 0.3s;
}
.tracks .dur {
  font-family: var(--sans); font-stretch: 125%;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  opacity: 0.45;
  transition: opacity 0.3s, color 0.3s;
}
.tracks a:hover { padding-left: 1rem; }
.tracks a:hover .name { color: var(--red); }
.tracks a:hover .dur { opacity: 1; color: var(--red); }

/* ─── music ────────────────────────────────────────────── */

.music-x {
  position: relative;
  padding: clamp(7rem, 16vh, 11rem) var(--gutter);
}
.music-x .tag { display: block; text-align: center; margin-bottom: clamp(3rem, 8vh, 5rem); }

.music-x__stage {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
}
.music-x__player {
  position: relative;
  z-index: 2;
  max-width: 44rem;
  margin: 0 auto;
}
.music-x__player iframe { display: block; }

.shot {
  position: absolute;
  z-index: 1;
  rotate: calc(var(--rot, 0) * 1deg);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.9);
}
.shot img { width: 100%; height: auto; }
.shot--a { left: -2%; top: -10%; width: clamp(11rem, 20vw, 17rem); --rot: -3; }
.shot--b { right: -3%; bottom: -12%; width: clamp(12rem, 22vw, 19rem); --rot: 2.2; }
.shot--video { width: clamp(9rem, 15vw, 13rem); }
.shot--video video { width: 100%; height: auto; aspect-ratio: 480 / 848; object-fit: cover; }

/* ─── follow ───────────────────────────────────────────── */

.connect {
  padding: clamp(7rem, 18vh, 12rem) var(--gutter);
  text-align: center;
}
.connect__handle {
  display: inline-block;
  font-family: var(--sans);
  font-stretch: 64%;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 8.4vw, 7.2rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.3s;
  overflow-wrap: anywhere;
}
.connect__at { color: var(--red); }
.connect__handle:hover { color: var(--red); }
.connect__handle:hover .connect__at { color: var(--bone); }
.connect__arrow {
  display: inline-block;
  font-size: 0.4em;
  vertical-align: super;
  margin-left: 0.2em;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.connect__handle:hover .connect__arrow { transform: translate(6px, -6px); }

.connect__links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 4rem);
  margin-top: 3rem;
}
.connect__links a {
  font-family: var(--sans); font-stretch: 125%;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.25s, color 0.25s;
}
.connect__links a:hover { opacity: 1; color: var(--red); }

/* ─── footer ───────────────────────────────────────────── */

.foot {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--line-soft);
  padding: 2rem var(--gutter) 2.4rem;
}
.foot p {
  font-family: var(--sans); font-stretch: 125%;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.45;
}

/* ═══ press kit — EPK: one warm maroon world ═════════════ */

body.epk {
  --bg: #3a0d08;
  --fg: #f4e9d8;
  --line: color-mix(in srgb, var(--fg) 24%, transparent);
  --line-soft: color-mix(in srgb, var(--fg) 13%, transparent);
  background:
    radial-gradient(120% 90% at 50% 0%, #7c2212 0%, #57130a 45%, #360b06 100%)
    fixed var(--bg);
  color: var(--fg);
}
body.epk .top__brand img { filter: sepia(0.3) brightness(1.05); }

/* duotone treatment — photos graded into the red world */
.duo {
  filter: sepia(1) saturate(1.9) hue-rotate(-22deg) brightness(0.82) contrast(1.05);
}

.pcover {
  position: relative;
  height: 92vh;
  height: 92svh;
  overflow: hidden;
}
.pcover__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: sepia(1) saturate(2.1) hue-rotate(-20deg) brightness(0.9) contrast(1.02);
}
.pcover__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(58,13,8,0.5) 0%, rgba(58,13,8,0) 35%, rgba(54,11,6,0.96) 100%);
}
.pcover__bar {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 2.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

/* "ELECTRONIC PRESS KIT ——— DJ / OPEN FORMAT" strip */
.epkstrip {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-family: var(--sans);
  font-stretch: 125%;
  font-weight: 700;
  font-size: clamp(0.7rem, 1.1vw, 0.95rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  white-space: nowrap;
}
.epkstrip i { flex: 1; border-top: 2px solid var(--fg); }
.pcover__bar .btn { margin-top: 0; text-decoration: none; border-color: var(--fg); color: var(--fg); background: rgba(58,13,8,0.4); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.pcover__bar .btn:hover { background: var(--fg); color: #57130a; }

.press { max-width: 74rem; margin: 0 auto; padding: 0 var(--gutter); }
.press .psec:first-child { padding-top: clamp(5rem, 10vh, 8rem); }
.psec { margin-bottom: clamp(5rem, 11vh, 8rem); }
.psec > .tag, .psec .press > .tag { display: block; margin-bottom: 2.6rem; }

body.epk .tag { color: var(--fg); opacity: 0.9; }

/* facts */
.pfgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2.2rem, 5vh, 3.4rem) clamp(2rem, 4vw, 4rem);
}
.pf dt {
  font-family: var(--sans);
  font-stretch: 125%;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 0.7rem;
}
.pf dd {
  font-family: var(--sans);
  font-stretch: 116%;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
}
.pf dd a { text-decoration: none; transition: opacity 0.25s; }
.pf dd a:hover { opacity: 0.6; }
.pf--wide { grid-column: span 2; }

/* bio — serif voice, like the reference */
.pbio-lead {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.45;
  max-width: 46ch;
  margin-bottom: 2.2rem;
  text-wrap: pretty;
}
.pbio { max-width: 60ch; }
.pbio p {
  font-family: "Lora", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.9;
}
.pbio p + p { margin-top: 1em; }
.pbio strong { font-weight: 600; }

/* venues — extended rows */
.psec--full { margin-bottom: clamp(5rem, 11vh, 8rem); }
.prows { list-style: none; border-top: 1px solid var(--line-soft); }
.prows li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 2rem;
  padding: clamp(0.9rem, 2vh, 1.3rem) var(--gutter);
  border-bottom: 1px solid var(--line-soft);
  transition: background-color 0.3s;
}
.prows li:hover { background: rgba(244, 233, 216, 0.05); }
.prows .v {
  font-family: var(--sans);
  font-stretch: 122%;
  font-weight: 850;
  text-transform: uppercase;
  font-size: clamp(1.15rem, 2.9vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.prows .c {
  font-family: var(--sans);
  font-stretch: 125%;
  font-weight: 700;
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.55;
}
.prows__more .v { font-size: clamp(0.9rem, 1.5vw, 1.15rem); opacity: 0.65; }

/* photos — polaroid collage, true colors for downloads */
.pnote {
  font-family: var(--sans);
  font-stretch: 125%;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.5;
  margin: -1.4rem 0 2.6rem;
}
.pgallery {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1.2rem, 2.4vw, 2.2rem);
}
.pgallery li {
  display: flex;
  flex-direction: column;
  background: #f6f1e6;
  padding: 0.55rem 0.55rem 0.9rem;
  rotate: calc(var(--pr, 0) * 1deg);
  box-shadow: 0 26px 60px -26px rgba(20, 4, 2, 0.85);
  transition: rotate 0.4s cubic-bezier(0.22, 1, 0.36, 1), scale 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pgallery li:hover { rotate: 0deg; scale: 1.02; }
.pgallery li:nth-child(odd) { --pr: -1.6; }
.pgallery li:nth-child(even) { --pr: 1.4; }
.pgallery a { position: relative; display: block; overflow: hidden; flex: 1; min-height: 0; }
.pgallery img { width: 100%; height: 100%; object-fit: cover; }
.g-a { grid-column: span 2; grid-row: span 2; }
.g-b { grid-column: span 4; grid-row: span 2; }
.g-c { grid-column: span 2; }
.g-d { grid-column: span 2; }
.g-e { grid-column: span 2; }
.g-f { grid-column: span 3; }
.g-g { grid-column: span 3; }
.g-h { grid-column: span 6; }
.g-h img { aspect-ratio: 21 / 9; }
.dlov {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(58, 13, 8, 0.6);
  opacity: 0;
  transition: opacity 0.35s;
}
.dlov span {
  font-family: var(--sans);
  font-stretch: 125%;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f4e9d8;
  border: 1px solid #f4e9d8;
  border-radius: 99px;
  padding: 0.7rem 1.2rem;
}
.pgallery a:hover .dlov, .pgallery a:focus-visible .dlov { opacity: 1; }

.pvideo { width: 100%; }

/* booking finale — outline wordmarks as texture */
.pbook {
  position: relative;
  padding: clamp(9rem, 20vh, 14rem) var(--gutter);
  text-align: center;
  overflow: hidden;
}
.pbook__echo {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
}
.pbook__echo span {
  font-family: var(--sans);
  font-stretch: 125%;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(3rem, 9.5vw, 8.5rem);
  line-height: 0.95;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 233, 216, 0.22);
  text-align: center;
}
.pbook .tag, .pbook .pmail { position: relative; z-index: 2; }
.pbook .tag { display: block; margin-bottom: 2.4rem; }
.pmail {
  display: inline-block;
  font-family: var(--sans);
  font-stretch: 116%;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: opacity 0.3s;
  overflow-wrap: anywhere;
}
.pmail .at { opacity: 0.55; }
.pmail:hover { opacity: 0.7; }

body.epk .foot { border-top-color: var(--line-soft); }

@media (max-width: 900px) {
  .pfgrid { grid-template-columns: 1fr 1fr; }
  .pf--wide { grid-column: span 2; }
  .pgallery { grid-template-columns: repeat(2, 1fr); }
  .g-a, .g-b, .g-c, .g-d, .g-e, .g-f, .g-g, .g-h { grid-column: span 1; grid-row: auto; }
  .g-b, .g-h { grid-column: span 2; }
  .g-h img { aspect-ratio: 16 / 9; }
  .pcover__bar { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
  .epkstrip { width: 100%; }
}


/* bio with portrait right */
.pbio-wrap {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.pbio-photo {
  background: #f6f1e6;
  padding: 0.6rem 0.6rem 1rem;
  rotate: 1.8deg;
  box-shadow: 0 30px 70px -28px rgba(20, 4, 2, 0.9);
}
.pbio-photo img { width: 100%; display: block; }
.pbio-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2.2rem;
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-soft);
}
.pbio-meta a {
  font-family: var(--sans);
  font-stretch: 125%;
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.25s;
}
.pbio-meta a:hover { opacity: 1; }

/* film grain over the whole world */
body.epk::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}

/* video in a cream frame, like the polaroids */
.pframe {
  background: #f6f1e6;
  padding: 0.6rem 0.6rem 1rem;
  rotate: -0.6deg;
  box-shadow: 0 30px 70px -28px rgba(20, 4, 2, 0.9);
  max-width: 66rem;
}
.pframe .pvideo { display: block; width: 100%; }
.pvideos {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: flex-start;
  flex-wrap: wrap;
}
.pvideos .pframe { flex: 1 1 34rem; max-width: none; }
.pvideos .pframe--tall {
  flex: 0 1 clamp(13rem, 22vw, 17rem);
  rotate: 1.2deg;
}
.pframe--tall .pvideo { aspect-ratio: 480 / 848; object-fit: cover; }
.pframe--player { max-width: 46rem; rotate: 0.5deg; padding: 0.6rem; }
.pspotify { background: #0a0a09; }
.pspotify iframe { display: block; }

@media (max-width: 900px) {
  .pbio-wrap { grid-template-columns: 1fr; }
  .pbio-photo { max-width: 26rem; margin: 0 auto; }
}

/* ─── ambient motion ───────────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
  .shot--a { animation: float-a 8s ease-in-out infinite alternate; }
  .shot--b { animation: float-b 10s ease-in-out infinite alternate; }
  .hero__down-arr { animation: dip 2.2s ease-in-out infinite; }
}
@keyframes float-a { from { translate: 0 -6px; } to { translate: 0 6px; } }
@keyframes float-b { from { translate: 0 7px; } to { translate: 0 -7px; } }
@keyframes dip { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(3px); } }

/* ─── responsive ───────────────────────────────────────── */

@media (max-width: 900px) {
  .story { flex-direction: column; align-items: flex-start; justify-content: center; gap: 3rem; }
  .story__clip {
    position: relative;
    right: auto;
    top: auto;
    translate: none;
    margin: 0 auto;
    order: 2;
    width: clamp(12rem, 52vw, 15rem);
  }
  .story__text { max-width: 100%; }
  .shot--a { left: 0; top: -8%; width: 34vw; }
  .shot--b { right: 0; bottom: -9%; width: 36vw; }
  .pk__venues { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .facts--wide div { grid-template-columns: 1fr; gap: 0.15rem; }
}

/* reduced motion: everything visible, no choreography */
@media (prefers-reduced-motion: reduce) {
  .hero__down-arr, .shot--a, .shot--b { animation: none; }
}
