/* =========================================================
   gpr — general pablito radio
   rode, ruwe, speelse radio-vibe (willy-energie, maar rood)
   ========================================================= */

:root {
  --gpr-red: #ea360e;
  --gpr-red-deep: #c32a0a;
  --gpr-red-hot: #ff4a22;
  --ink: #141414;
  --ink-soft: #1c1c1c;
  --cream: #e7e6e1;
  --cream-dim: #d8d6cf;
  --white: #ffffff;
  --muted: rgba(20, 20, 20, 0.58);
  --muted-inv: rgba(231, 230, 225, 0.72);
  --radius-xl: 2.75rem;
  --radius-lg: 1.75rem;
  --radius-md: 1.15rem;
  --radius-pill: 999px;
  --nav-h: 4.5rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.18);
  --shadow-red: 0 16px 40px rgba(234, 54, 14, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  text-transform: lowercase;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  text-transform: lowercase;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: var(--gpr-red);
  color: var(--white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- noise / grain overlay ---------- */
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 4000;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- nav ---------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.2rem, 3vw, 2.5rem);
  transition: background 0.35s var(--ease-out), backdrop-filter 0.35s, box-shadow 0.35s;
}

.site-nav.is-scrolled {
  background: rgba(20, 20, 20, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.nav-logo img {
  height: 2.35rem;
  width: auto;
  transition: transform 0.35s var(--ease-spring);
}

.nav-logo:hover img {
  transform: rotate(-6deg) scale(1.06);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--cream);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease-spring);
}

.nav-link:hover {
  background: rgba(231, 230, 225, 0.12);
  transform: translateY(-1px);
}

.nav-cta {
  background: var(--gpr-red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.nav-cta:hover {
  background: var(--gpr-red-hot);
  color: var(--white);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--nav-h) + 2rem) clamp(1.2rem, 4vw, 3.5rem) 4.5rem;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: heroDrift 22s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.35) 0%, rgba(20, 20, 20, 0.15) 35%, rgba(20, 20, 20, 0.78) 100%),
    radial-gradient(ellipse 70% 55% at 15% 85%, rgba(234, 54, 14, 0.45), transparent 60%);
}

.hero-blob {
  position: absolute;
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  border-radius: 58% 42% 48% 52% / 48% 55% 45% 52%;
  background: radial-gradient(circle at 30% 30%, rgba(234, 54, 14, 0.55), transparent 65%);
  filter: blur(8px);
  z-index: -1;
  animation: blobMorph 14s ease-in-out infinite;
  pointer-events: none;
}

.hero-blob--1 { top: 12%; right: 8%; }
.hero-blob--2 {
  bottom: 18%;
  left: -6%;
  width: min(30vw, 280px);
  height: min(30vw, 280px);
  animation-delay: -5s;
  opacity: 0.7;
}

@keyframes blobMorph {
  0%, 100% { border-radius: 58% 42% 48% 52% / 48% 55% 45% 52%; transform: rotate(0deg); }
  50% { border-radius: 42% 58% 55% 45% / 55% 42% 58% 48%; transform: rotate(12deg); }
}

.hero-copy {
  max-width: min(34rem, 92vw);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease-out) 0.15s forwards;
}

.live-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--gpr-red);
  box-shadow: 0 0 0 0 rgba(234, 54, 14, 0.7);
  animation: pulseDot 1.6s ease-out infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(234, 54, 14, 0.65); }
  70% { box-shadow: 0 0 0 12px rgba(234, 54, 14, 0); }
  100% { box-shadow: 0 0 0 0 rgba(234, 54, 14, 0); }
}

.hero-brand {
  margin: 0 0 1.25rem;
  opacity: 0;
  animation: riseIn 1s var(--ease-out) 0.28s forwards;
  line-height: 0;
}

.hero-brand img {
  height: clamp(4.8rem, 18vw, 9.5rem);
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

.hero-line {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  max-width: 28ch;
  color: var(--muted-inv);
  margin: 0 0 1.8rem;
  opacity: 0;
  animation: riseIn 1s var(--ease-out) 0.42s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: riseIn 1s var(--ease-out) 0.55s forwards;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.55rem;
  border-radius: var(--radius-pill);
  transition: transform 0.3s var(--ease-spring), background 0.25s, color 0.25s, box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-3px) rotate(-1deg);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background: var(--gpr-red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background: var(--gpr-red-hot);
}

.btn-ghost {
  background: rgba(231, 230, 225, 0.14);
  color: var(--cream);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(231, 230, 225, 0.22);
}

.btn-ghost:hover {
  background: rgba(231, 230, 225, 0.24);
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}

.btn-dark:hover {
  background: #000;
  color: var(--white);
}

.btn-play-icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--gpr-red);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  line-height: 1;
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--gpr-red);
  color: var(--white);
  overflow: hidden;
  border-radius: 0 0 2rem 2rem;
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-red);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  padding: 0.95rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  letter-spacing: -0.02em;
  animation: marqueeMove 28s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  white-space: nowrap;
}

.marquee-dot {
  opacity: 0.55;
}

@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- sections ---------- */
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.2rem, 4vw, 3.5rem);
  position: relative;
}

.section-head {
  max-width: 52rem;
  margin-bottom: 2.25rem;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gpr-red);
  margin-bottom: 0.65rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 0.85rem;
}

.section-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 40ch;
  margin: 0;
}

/* ---------- now on air ---------- */
.now-panel {
  position: relative;
  display: block;
  background: linear-gradient(115deg, var(--gpr-red) 0%, #c0280a 42%, #5a0f02 78%, var(--ink) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: clamp(320px, 42vw, 440px);
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}

.now-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 78% 55%, rgba(255, 255, 255, 0.12), transparent 60%),
    linear-gradient(90deg, transparent 45%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
  z-index: 0;
}

.now-copy {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 5vw, 3.4rem);
  max-width: min(34rem, 58%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(320px, 42vw, 440px);
}

.now-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(6px);
}

.now-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  margin: 0 0 0.85rem;
}

.now-sub {
  font-size: 1.15rem;
  opacity: 0.88;
  margin: 0 0 1.8rem;
  max-width: 28ch;
}

.eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
}

.eq span {
  width: 3px;
  background: var(--cream);
  border-radius: 2px;
  transform-origin: bottom center;
  animation: eqBounce 0.9s ease-in-out infinite;
}

.eq span:nth-child(1) { height: 40%; animation-delay: 0s; }
.eq span:nth-child(2) { height: 80%; animation-delay: 0.15s; }
.eq span:nth-child(3) { height: 55%; animation-delay: 0.3s; }
.eq span:nth-child(4) { height: 95%; animation-delay: 0.08s; }
.eq span:nth-child(5) { height: 35%; animation-delay: 0.22s; }

@keyframes eqBounce {
  0%, 100% { transform: scaleY(0.45); }
  50% { transform: scaleY(1); }
}

.now-person {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
  height: 120%;
  width: auto;
  max-width: 52%;
  margin-right: 50px;
  object-fit: contain;
  object-position: bottom right;
  mix-blend-mode: screen;
  filter: contrast(1.08) brightness(1.05);
  pointer-events: none;
  transition: transform 0.6s var(--ease-out);
}

.now-panel:hover .now-person {
  transform: scale(1.05) translateX(-1%);
}

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: 42% 58% 48% 52% / 52% 42% 58% 48%;
  overflow: hidden;
  aspect-ratio: 1 / 1.05;
  box-shadow: var(--shadow-soft);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.about-visual:hover img {
  transform: scale(1.04);
}

.about-stamp {
  position: absolute;
  bottom: 8%;
  right: 35%;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  padding: 0.85rem 1.3rem;
  border-radius: var(--radius-lg);
  transform: rotate(-8deg);
  box-shadow: var(--shadow-soft);
  z-index: 1;
}

.about-body p {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0 0 1.1rem;
}

.about-body p strong {
  color: var(--ink);
  font-weight: 700;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.chip {
  background: var(--white);
  border: 1px solid var(--cream-dim);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.25s var(--ease-spring), border-color 0.2s, color 0.2s;
}

.chip:hover {
  transform: translateY(-2px) rotate(-2deg);
  border-color: var(--gpr-red);
  color: var(--gpr-red);
}

/* ---------- photo strip ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 1rem;
}

.photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
  background: var(--ink);
}

.photo-card:nth-child(2) {
  border-radius: 2.5rem 0.8rem 2.5rem 0.8rem;
  margin-top: 2rem;
}

.photo-card:nth-child(3) {
  border-radius: 0.9rem 2.8rem 0.9rem 2.8rem;
}

.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.photo-card:hover img {
  transform: scale(1.06);
}

.photo-card figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(20, 20, 20, 0.7);
  color: var(--cream);
  backdrop-filter: blur(8px);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ---------- cta band ---------- */
.cta-band {
  margin: 0 clamp(1.2rem, 4vw, 3.5rem) clamp(3rem, 6vw, 5rem);
  padding: clamp(2.2rem, 5vw, 3.5rem);
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-xl);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -60px;
  top: -80px;
  background: radial-gradient(circle, rgba(234, 54, 14, 0.55), transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 0.5rem;
  position: relative;
  z-index: 1;
}

.cta-band p {
  margin: 0;
  opacity: 0.75;
  position: relative;
  z-index: 1;
}

.cta-band .btn {
  position: relative;
  z-index: 1;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 2.5rem clamp(1.2rem, 4vw, 3.5rem) 2rem;
  border-radius: 2rem 2rem 0 0;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  height: 2.1rem;
  width: auto;
  display: block;
}

.footer-meta {
  opacity: 0.55;
  font-size: 0.92rem;
  margin-top: 1.4rem;
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   luister page
   ========================================================= */

body.listen-page {
  background: var(--ink);
  color: var(--cream);
  min-height: 100svh;
}

.listen-shell {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(240px, 300px) 1fr;
}

.listen-side {
  padding: 1.4rem 1.1rem 1.6rem;
  background: rgba(231, 230, 225, 0.04);
  border-right: 1px solid rgba(231, 230, 225, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.listen-brand {
  display: block;
  width: fit-content;
}

.listen-logo {
  height: 2.2rem;
  width: auto;
  margin: 0.4rem 0.5rem 1rem;
}

.stream-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* alleen zichtbaar op mobiel via pwa.css */
.listen-mobile-bar {
  display: none;
}

.stream-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease-spring);
}

.stream-btn img {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  object-fit: cover;
}

.stream-btn strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.stream-btn small {
  display: block;
  opacity: 0.55;
  font-size: 0.82rem;
  margin-top: 0.1rem;
}

.stream-btn:hover {
  background: rgba(231, 230, 225, 0.06);
  transform: translateX(3px);
}

.stream-btn.is-active {
  background: rgba(234, 54, 14, 0.16);
  border-color: rgba(234, 54, 14, 0.45);
}

.back-link {
  margin-top: auto;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  opacity: 0.7;
  transition: opacity 0.2s, background 0.2s;
}

.back-link:hover {
  opacity: 1;
  background: rgba(231, 230, 225, 0.08);
}

.listen-main {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
}

.listen-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(234, 54, 14, 0.28), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(234, 54, 14, 0.12), transparent 55%),
    url("../images/IMG_4740.JPG") center / cover;
  opacity: 0.22;
  filter: saturate(1.1);
  z-index: 0;
}

.listen-main > * {
  position: relative;
  z-index: 1;
}

.player-stage {
  width: min(100%, 520px);
  text-align: center;
}

.cover-wrap {
  position: relative;
  width: min(72vw, 280px);
  margin: 0 auto 1.5rem;
}

.cover-wrap::before {
  content: "";
  position: absolute;
  inset: -14%;
  border-radius: 42% 58% 50% 50% / 48% 42% 58% 52%;
  background: radial-gradient(circle, rgba(234, 54, 14, 0.45), transparent 70%);
  animation: blobMorph 10s ease-in-out infinite;
  z-index: -1;
}

.cover-art {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 28% 22% 30% 24% / 24% 28% 22% 30%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  transition: border-radius 0.8s var(--ease-out), transform 0.5s;
}

.player-stage.is-playing .cover-art {
  border-radius: 50%;
  animation: spinSlow 18s linear infinite;
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

.stream-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: -0.035em;
  margin: 0 0 0.35rem;
}

.stream-kicker {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: -0.035em;
  margin: 0 0 0.35rem;
}

.now-playing {
  color: var(--gpr-red-hot);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  min-height: 1.6em;
  margin: 0 0 1.6rem;
}

.player-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.play-btn {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--gpr-red);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-red);
  transition: transform 0.3s var(--ease-spring), background 0.2s;
}

.play-btn:hover {
  transform: scale(1.07);
  background: var(--gpr-red-hot);
}

.play-btn svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.play-btn[data-state="playing"] .icon-play { display: none; }
.play-btn[data-state="paused"] .icon-pause,
.play-btn[data-state="idle"] .icon-pause { display: none; }

.volume-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(231, 230, 225, 0.08);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  width: min(100%, 260px);
}

.volume-row input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: rgba(231, 230, 225, 0.25);
  border-radius: 4px;
  outline: none;
}

.volume-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gpr-red);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(234, 54, 14, 0.2);
}

.status-line {
  margin-top: 1.1rem;
  opacity: 0.65;
  font-size: 0.95rem;
}

.status-line.is-error {
  color: #ffb4a4;
  opacity: 1;
}

.proxy-hint {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(234, 54, 14, 0.12);
  border: 1px solid rgba(234, 54, 14, 0.28);
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.45;
  display: none;
}

.proxy-hint.is-visible {
  display: block;
}

.proxy-hint code {
  font-family: ui-monospace, monospace;
  font-size: 0.8em;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.1rem 0.35rem;
  border-radius: 0.35rem;
}

.viz {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 36px;
  margin-top: 1.25rem;
  opacity: 0.35;
}

.player-stage.is-playing .viz {
  opacity: 1;
}

.viz i {
  display: block;
  width: 5px;
  border-radius: 4px;
  background: var(--gpr-red);
  height: 30%;
  animation: none;
}

.player-stage.is-playing .viz i {
  animation: eqBounce 0.85s ease-in-out infinite;
}

.player-stage.is-playing .viz i:nth-child(1) { animation-delay: 0.05s; }
.player-stage.is-playing .viz i:nth-child(2) { animation-delay: 0.18s; height: 70%; }
.player-stage.is-playing .viz i:nth-child(3) { animation-delay: 0.02s; height: 100%; }
.player-stage.is-playing .viz i:nth-child(4) { animation-delay: 0.22s; height: 55%; }
.player-stage.is-playing .viz i:nth-child(5) { animation-delay: 0.12s; height: 80%; }
.player-stage.is-playing .viz i:nth-child(6) { animation-delay: 0.28s; height: 40%; }
.player-stage.is-playing .viz i:nth-child(7) { animation-delay: 0.08s; height: 65%; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .about-grid,
  .photo-strip {
    grid-template-columns: 1fr;
  }

  .now-copy {
    max-width: 100%;
    min-height: auto;
    padding-bottom: 12rem;
  }

  .now-person {
    max-width: 70%;
    height: 70%;
    top: auto;
    opacity: 0.95;
  }

  .photo-card {
    aspect-ratio: 16 / 10;
    min-height: 220px;
  }

  .photo-card:nth-child(2) {
    margin-top: 0;
  }

  .listen-shell {
    grid-template-columns: 1fr;
  }

  .listen-side {
    border-right: none;
    border-bottom: 1px solid rgba(231, 230, 225, 0.08);
  }

  .stream-btn {
    width: 100%;
  }

  .back-link {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .site-nav {
    height: auto;
    min-height: var(--nav-h);
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .nav-link:not(.nav-cta) {
    display: none;
  }

  .hero {
    align-items: flex-end;
    text-align: left;
    padding-bottom: 5rem;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-brand img {
    height: clamp(3.8rem, 22vw, 5.5rem);
  }

  .now-copy {
    padding-bottom: 10.5rem;
  }

  .now-person {
    max-width: 85%;
    height: 58%;
  }

  .about-stamp {
    right: 4%;
    bottom: 6%;
  }

  .marquee {
    border-radius: 0 0 1.25rem 1.25rem;
  }

  .cta-band {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-media img {
    transform: none;
  }
}
