/* ========== CUSTOM FONTS ========== */
@font-face {
  font-family: 'CCSBjork';
  src: url('../assets/fonts/CCSBjork-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'CCSBjork';
  src: url('../assets/fonts/CCSBjork.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'CCSBjork';
  src: url('../assets/fonts/CCSBjork-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hermissoul';
  src: url('../assets/fonts/Hermissoul-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-1: #0a0a0a;
  --bg-2: #1a1a1a;
  --text: #f5f1e8;
  --accent: #d4a574;
  --accent-soft: rgba(212, 165, 116, 0.15);

  /* Strong custom easings — built-in ease/ease-out are too weak.
     UI motion needs punch to feel intentional. */
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --ease-drawer: cubic-bezier(.32, .72, 0, 1);
}

html, body { width: 100%; max-width: 100%; }
html { scroll-behavior: auto; }

body {
  font-family: 'EB Garamond', serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text);
  background: #000;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Scroll-container hardening — prevents off-screen GSAP transforms
   from creating a phantom horizontal scrollbar on iPad. */
[data-scroll-container] { overflow-x: hidden; max-width: 100vw; }

/* Scrub-word: each bio word fades up from low opacity as the user scrolls. */
.scrub-word {
  display: inline-block;
  will-change: opacity;
}


/* ========== ATMOSPHERIC BACKGROUND STACK ========== */
.bg-gradient, .bg-hue, .bg-vignette, .bg-paper, .bg-grain,
.bg-mouse-light, .bg-particles-global {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
}

.bg-gradient {
  background:
    radial-gradient(ellipse at 20% 10%, #1a1424 0%, transparent 55%),
    radial-gradient(ellipse at 80% 90%, #0e1a28 0%, transparent 55%),
    #07060a;
  background-size: 200% 200%;
  animation: bgDrift 120s ease-in-out infinite alternate;
}
@keyframes bgDrift {
  0%   { background-position:   0%   0%, 100% 100%; }
  50%  { background-position:  20%  30%,  70%  80%; }
  100% { background-position:  40%  60%,  30%  20%; }
}

.bg-hue {
  background: linear-gradient(180deg, #0d1b2a 0%, #000 100%);
  animation: hueShift 60s ease-in-out infinite;
  mix-blend-mode: soft-light;
  opacity: 0.7;
}
@keyframes hueShift {
  0%   { background: linear-gradient(180deg, #0d1b2a 0%, #000 100%); }
  50%  { background: linear-gradient(180deg, #1b0d2a 0%, #000 100%); }
  100% { background: linear-gradient(180deg, #0d1b2a 0%, #000 100%); }
}

.bg-vignette {
  background: radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(0,0,0,0.6) 100%);
}

.bg-paper {
  opacity: 0.35; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='p'><feTurbulence type='fractalNoise' baseFrequency='0.012' numOctaves='3' seed='4'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.07  0 0 0 0 0.05  0 0 0 0.8 0'/></filter><rect width='100%25' height='100%25' filter='url(%23p)'/></svg>");
  background-size: 800px 800px;
}

.bg-grain {
  opacity: 0.08; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='7'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.bg-mouse-light {
  background: radial-gradient(circle 460px at var(--mx, 50%) var(--my, 40%),
    rgba(212, 165, 116, 0.14) 0%,
    rgba(212, 165, 116, 0.05) 25%,
    transparent 60%);
  mix-blend-mode: screen;
  transition: background 0.12s linear;
}

/* Stained-glass layers — scoped to hero + streaming banner.
   Rest of the page stays calm, with only .bg-mouse-light reacting. */
.hero .bg-stained,
.hero .bg-stained-glass,
.spotify-banner .bg-stained,
.spotify-banner .bg-stained-glass {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}

.hero .bg-stained-glass,
.spotify-banner .bg-stained-glass {
  background-image: url("../images/stained-glass.jpg");
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
  opacity: 0.42;
  transition: opacity .45s ease;
  /* Less blur, more saturation = clearer cathedral glass.
     0.5px micro-blur removes JPEG artefacts without softening the colours. */
  filter: blur(0.5px) saturate(1.6) brightness(1.15) contrast(1.05);
  -webkit-mask-image: radial-gradient(circle 380px at var(--mx, 50%) var(--my, 40%),
    rgba(0,0,0,1) 0%, rgba(0,0,0,0.82) 35%, rgba(0,0,0,0.32) 70%, rgba(0,0,0,0) 95%);
          mask-image: radial-gradient(circle 380px at var(--mx, 50%) var(--my, 40%),
    rgba(0,0,0,1) 0%, rgba(0,0,0,0.82) 35%, rgba(0,0,0,0.32) 70%, rgba(0,0,0,0) 95%);
  transform: scale(1.05) translateZ(0);
  -webkit-transform: scale(1.05) translateZ(0);
  /* Hint to compositor: this layer's mask + opacity will animate. */
  will-change: mask-image, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.hero .bg-stained-glass.is-active,
.spotify-banner .bg-stained-glass.is-active { opacity: 0.7; }

/* Streaming banner: a touch calmer than the hero so it reads as a reprise */
.spotify-banner .bg-stained-glass { opacity: 0.32; filter: blur(0.8px) saturate(1.4) brightness(1.08) contrast(1.03); }
.spotify-banner .bg-stained-glass.is-active { opacity: 0.55; }

/* Mobile: smaller mask, slightly less aggressive but still clear */
@media (max-width: 700px) {
  .hero .bg-stained-glass,
  .spotify-banner .bg-stained-glass {
    -webkit-mask-image: radial-gradient(circle 260px at var(--mx, 50%) var(--my, 40%),
      rgba(0,0,0,1) 0%, rgba(0,0,0,0.78) 40%, rgba(0,0,0,0) 92%);
            mask-image: radial-gradient(circle 260px at var(--mx, 50%) var(--my, 40%),
      rgba(0,0,0,1) 0%, rgba(0,0,0,0.78) 40%, rgba(0,0,0,0) 92%);
    filter: blur(0.6px) saturate(1.5) brightness(1.12) contrast(1.04);
  }
  .hero .bg-stained-glass.is-active { opacity: 0.62; }
  .spotify-banner .bg-stained-glass.is-active { opacity: 0.5; }
}

.hero .bg-stained,
.spotify-banner .bg-stained {
  mix-blend-mode: screen;
  background:
    radial-gradient(circle 420px at var(--mx, 50%) var(--my, 40%),
      rgba(138, 88, 164, 0.32) 0%, rgba(138, 88, 164, 0) 70%),
    radial-gradient(circle 620px at calc(var(--mx, 50%) + 180px) calc(var(--my, 40%) + 80px),
      rgba(56, 96, 168, 0.28) 0%, rgba(56, 96, 168, 0) 70%),
    radial-gradient(circle 560px at calc(var(--mx, 50%) - 220px) calc(var(--my, 40%) - 60px),
      rgba(216, 78, 90, 0.22) 0%, rgba(216, 78, 90, 0) 70%),
    radial-gradient(circle 700px at calc(var(--mx, 50%) + 60px) calc(var(--my, 40%) - 180px),
      rgba(72, 148, 128, 0.22) 0%, rgba(72, 148, 128, 0) 70%),
    radial-gradient(circle 500px at calc(var(--mx, 50%) - 80px) calc(var(--my, 40%) + 220px),
      rgba(230, 178, 88, 0.26) 0%, rgba(230, 178, 88, 0) 70%);
  filter: blur(22px);
}
.hero .bg-stained { opacity: 0.8; }
.spotify-banner .bg-stained { opacity: 0.6; }

.bg-particles-global { opacity: 0.8; }

/* Ensure all content is above the background layers */
.lang-toggle, [data-scroll-container], .modal { position: relative; z-index: 1; }
.lang-toggle { position: fixed; z-index: 100; }
.modal { z-index: 1000; }

a { color: var(--text); text-decoration: none; transition: color .25s var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  a:hover { color: var(--accent); }
}

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

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* Universal press feedback — every interactive element scales down briefly
   on press. Subtle (0.97) so it feels responsive, not bouncy. */
button, a, [role="button"] {
  -webkit-tap-highlight-color: transparent;
}
button:active, a[href]:active, [role="button"]:active,
.read-more-btn:active, .lyrics-btn:active, .modal-close:active,
.lang-toggle:active, .footer-link:active, .lt-close-bottom:active,
.spotify-cta:active, .stream-cta:active, .g3-start:active,
.g3-unmute:active {
  transform: scale(0.97);
  transition: transform .12s var(--ease-out);
}

/* Font families */
h1, h2, h3, h4, .presskit-link {
  font-family: 'CCSBjork', 'Cormorant Garamond', serif;
  font-weight: 400;
}

.hero-title {
  font-family: 'CCSBjork', 'Cormorant Garamond', serif;
}
.hero-claim {
  font-family: 'Hermissoul', 'Cormorant Garamond', serif;
  font-style: normal;
}
.section-title {
  font-family: 'CCSBjork', 'Cormorant Garamond', serif;
}
.song-title {
  font-family: 'CCSBjork', 'Cormorant Garamond', serif;
}
.modal-inner h3 {
  font-family: 'CCSBjork', 'Cormorant Garamond', serif;
}

/* ========== LANGUAGE TOGGLE ========== */
.lang-toggle {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  font-family: 'Cormorant Garamond', serif;
  color: var(--text);
  opacity: 0.7;
  transition: opacity .3s ease;
  padding: .25rem .5rem;
}
.lang-toggle:hover { opacity: 1; }
.lang-toggle .active { color: var(--accent); }
.lang-toggle .lang-sep { margin: 0 .35rem; opacity: .5; }

/* ========== LANGUAGE VISIBILITY ========== */
html[lang="en"] .lang-de { display: none !important; }
html[lang="de"] .lang-en { display: none !important; }

/* old .mouse-light removed — replaced by layered .bg-* stack */

/* ========== HERO ========== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;                  /* match viewport so contain fits exactly */
  z-index: 0;
  background: #06050a;       /* theatrical letterbox behind the portrait */
}

/* ============================================================
   HERO — pure typographic composition on atmospheric layers.
   No portrait image, no animation — title + gold rule + CTA.
   ============================================================ */
.hero::before {
  background: radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(0,0,0,0.55) 95%);
}

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vh, 3rem);
  padding: 2rem 1.5rem;
}

.hero-title {
  margin: 0;
  text-align: center;
}

.hero-rule {
  width: clamp(180px, 32vw, 320px);
  height: 10px;
  opacity: 0.92;
}

.spotify-cta--hero { margin-top: 0; }

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}

/* Lantern glow follows mouse */
.lantern-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.4) 0%, rgba(212, 165, 116, 0.1) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  left: 50%; top: 60%;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: transform 0.3s ease-out, opacity 0.4s ease;
  z-index: 2;
}

#particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-title {
  font-size: clamp(2.8rem, 9vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.14em;
  opacity: 0;
  position: relative;
  display: inline-block;
  /* Stained-glass gradient fill — amber / ruby / teal / cobalt / violet */
  background-image: linear-gradient(
    110deg,
    #e6b258 0%,
    #d4a574 18%,
    #d84e5a 36%,
    #f5f1e8 50%,
    #489480 64%,
    #3860a8 82%,
    #8a58a4 100%
  );
  background-size: 300% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  filter: drop-shadow(0 0 24px rgba(212, 165, 116, 0.35))
          drop-shadow(0 0 60px rgba(56, 96, 168, 0.18));
  animation: titleReveal 2.8s cubic-bezier(.22,.61,.36,1) forwards,
             titleLight 22s ease-in-out infinite alternate 2.8s;
  animation-delay: .3s, 3.1s;
}

/* Subtle halo — a soft amber glow that breathes behind the letters */
.hero-title::before {
  content: '';
  position: absolute;
  inset: -30% -8%;
  background: radial-gradient(ellipse at center,
    rgba(212, 165, 116, 0.18) 0%,
    rgba(216, 78, 90, 0.08) 35%,
    transparent 70%);
  filter: blur(22px);
  z-index: -1;
  opacity: 0;
  animation: haloBreathe 7s ease-in-out infinite alternate 2s;
}

@keyframes titleReveal {
  from { opacity: 0; transform: translateY(30px); letter-spacing: 0.3em; }
  to   { opacity: 1; transform: translateY(0);   letter-spacing: 0.14em; }
}

@keyframes titleLight {
  0%   { background-position:   0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position:  50% 50%; }
}

@keyframes haloBreathe {
  0%   { opacity: 0.55; transform: scale(0.95); }
  100% { opacity: 0.95; transform: scale(1.08); }
}

/* When reduced motion is preferred, stop the color drift */
@media (prefers-reduced-motion: reduce) {
  .hero-title { animation: titleReveal 1s ease-out forwards; background-position: 50% 50%; }
  .hero-title::before { animation: none; opacity: 0.7; }
}

.hero-claim {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
  min-height: 1.5em;
  color: rgba(245, 241, 232, 0.9);
}

.hero-claim span::after {
  content: '';
}

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

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  opacity: 0.5;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-hint span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--text));
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .5; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: .9; }
}

/* ========== SECTIONS (shared) ========== */
section {
  position: relative;
  padding: 10rem 1.5rem;
  max-width: 100%;
}

.section-title {
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 5rem;
  letter-spacing: 0.08em;
  color: var(--text);
  text-shadow:
    0 0 18px rgba(212, 165, 116, 0.35),
    0 0 48px rgba(212, 165, 116, 0.18);
}

/* ========== STATEMENT ========== */
.statement { padding-bottom: 3rem; }
.statement-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.bio-portrait {
  width: clamp(180px, 28vw, 240px);
  aspect-ratio: 1 / 1;
  margin: 0 auto 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(212, 165, 116, 0.22),
    inset 0 0 0 1px rgba(212, 165, 116, 0.35);
  /* Initial state — JS' GSAP scrubs scale up; the io fallback flips
     the opacity. Both end at 1, so reduced-motion users still see it. */
  opacity: 0;
  transition: opacity .9s var(--ease-out);
}
.bio-portrait.is-visible { opacity: 1; }
.bio-portrait::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 60px rgba(212, 165, 116, 0.18);
}
.bio-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) brightness(0.98);
}

.bio p { margin-bottom: 1.5rem; }
.bio a { border-bottom: 1px solid rgba(212, 165, 116, 0.3); }
.bio a:hover { border-color: var(--accent); }

.read-more-btn, .close-btn {
  margin-top: 2rem;
  padding: 0.6rem 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.05em;
  color: var(--text);
  border: 1px solid rgba(212, 165, 116, 0.4);
  border-radius: 2px;
  transition:
    color .25s var(--ease-out),
    border-color .25s var(--ease-out),
    box-shadow .25s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .read-more-btn:hover, .close-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
  }
}

.read-more-content {
  overflow: hidden;
  margin-top: 2rem;
  /* Match the bio above — same size, same center alignment, no sudden shift */
  font-size: 1em;
  opacity: 0.9;
  text-align: center;
}
.read-more-content p { margin-bottom: 1.5rem; }
.read-more-content[hidden] { display: none; }

/* ========== SONGS (3D GALLERY) ========== */
.songs { padding: 3rem 1rem 8rem; }
.contact-list li {
  font-size: 1.4rem;
  padding: 1.4rem 0;
}

.gallery-3d {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  /* Per-song colour world. JS overrides this via --song-accent
     when a track becomes active. Falls back to brand gold. */
  --song-accent: var(--accent);
  transition: --song-accent .5s var(--ease-out);
}
@property --song-accent {
  syntax: '<color>';
  inherits: true;
  initial-value: #d4a574;
}

/* ---- Stage ---- */
.g3-stage {
  position: relative;
  width: 100%;
  height: calc(var(--card-h, 360px) + 110px);
  perspective: 1400px;
  perspective-origin: 50% 50%;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.g3-spotlight {
  position: absolute;
  left: 50%; top: 48%;
  width: 120%;
  height: 140%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 35% 45% at 50% 50%,
      color-mix(in oklch, var(--song-accent) 35%, transparent) 0%,
      color-mix(in oklch, var(--song-accent) 12%, transparent) 30%,
      transparent 60%);
  transform: translate(-50%, -50%);
  transition:
    transform .6s var(--ease-out),
    background .5s var(--ease-out);
  z-index: 0;
  mix-blend-mode: screen;
  filter: blur(4px);
}

.g3-track {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

/* During drag, kill ALL inner transitions too (cover img filter, glow,
   sheen, reflect opacity). Otherwise cards passing through the centre
   trigger half-finished transitions — that's the flicker on iPad. */
.g3-track.is-dragging .g3-card,
.g3-track.is-dragging .g3-card *,
.g3-track.is-dragging .g3-card *::before,
.g3-track.is-dragging .g3-card *::after {
  transition: none !important;
}

/* ---- Card ---- */
.g3-card {
  position: absolute;
  left: 50%;
  top: 48%;
  margin-left: calc(var(--card-w, 300px) / -2);
  margin-top:  calc(var(--card-h, 360px) / -2);
  transform-style: preserve-3d;
  transition: transform .45s cubic-bezier(.2,.7,.25,1),
              opacity .35s ease;
  will-change: transform, opacity;
  cursor: grab;
  /* hint to compositor: keep on its own layer, don't repaint shadows */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.g3-track.is-dragging .g3-card { cursor: grabbing; }

.g3-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.g3-card-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  /* Fallback colour + cover-image set inline by JS. CSS-backgrounds are
     stable across compositor-layer re-creation on iPad Safari, so the
     viewer never sees a black frame even if <img> is briefly dropped. */
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.7),
    0 4px 12px rgba(0, 0, 0, 0.6);
  border-radius: 2px;
}
.g3-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  filter: brightness(0.78) saturate(0.92);
  transition: filter .7s ease;
  /* No transform / image-rendering tweaks here: applying transform to an
     <img> inside a transform-style: preserve-3d parent renders the image
     as a 3D plane on iPad Safari and the back face goes black. */
}
.g3-card.is-active .g3-card-cover img {
  filter: brightness(1) saturate(1.05);
}

/* sheen — subtle constant glass-reflection, no flashing on drag start */
.g3-card-sheen {
  position: absolute; inset: 0;
  background: linear-gradient(115deg,
    transparent 35%,
    rgba(255,255,255,0.10) 50%,
    transparent 65%);
  opacity: 0.18;
  transition: opacity .5s ease;
  pointer-events: none;
}
.g3-card.is-active .g3-card-sheen { opacity: 0.28; }
/* No is-dragging override — that abrupt 0 → 0.55 jump on every card was
   the bright flash users saw at the start of every swipe. */

/* glow ring — active only, tinted to the active song's colour world */
.g3-card-glow {
  position: absolute;
  inset: -14px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  box-shadow:
    0 0 40px 4px color-mix(in oklch, var(--song-accent) 55%, transparent),
    0 0 120px 20px color-mix(in oklch, var(--song-accent) 28%, transparent);
  transition:
    opacity .7s var(--ease-out),
    box-shadow .5s var(--ease-out);
}
.g3-card.is-active .g3-card-glow { opacity: 1; }

/* reflection under card — subtle, tilted back like water receding */
.g3-card-reflect {
  position: absolute;
  left: -4%; right: -4%;
  top: calc(100% + 2px);
  height: 52%;
  background-size: cover;
  background-position: center bottom;
  transform-origin: top center;
  transform: perspective(620px) rotateX(58deg) scaleY(-1);
  opacity: 0.14;
  filter: blur(2px) saturate(0.6) brightness(0.8);
  mask-image: linear-gradient(to bottom,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0) 92%);
  -webkit-mask-image: linear-gradient(to bottom,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0) 92%);
  pointer-events: none;
}
.g3-card.is-active .g3-card-reflect { opacity: 0.26; }

/* water-ripple overlay: very subtle horizontal bands drifting slowly */
.g3-card-reflect::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg,
      rgba(8, 24, 48, 0) 0px,
      rgba(8, 24, 48, 0.18) 2px,
      rgba(8, 24, 48, 0) 5px,
      rgba(180, 210, 240, 0.05) 7px,
      rgba(8, 24, 48, 0) 11px);
  /* No mix-blend-mode — known iPad Safari flicker source on 3D-rotated
     parents. The bumped alpha values above keep the visual present. */
  animation: g3WaterDrift 8s linear infinite;
}
/* freeze the ripple while dragging — saves a continuous repaint
   on each non-active card during the most performance-sensitive phase */
.g3-track.is-dragging .g3-card-reflect::after {
  animation-play-state: paused;
}

@keyframes g3WaterDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 0 14px; }
}

/* ---- Nav arrows ---- */
.g3-nav {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(212, 165, 116, 0.4);
  color: rgba(245, 241, 232, 0.85);
  display: flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition:
    background .2s var(--ease-out),
    border-color .2s var(--ease-out),
    transform .2s var(--ease-out);
}
.g3-nav svg { width: 26px; height: 26px; display: block; }
@media (hover: hover) and (pointer: fine) {
  .g3-nav:hover {
    background: rgba(212, 165, 116, 0.2);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.05);
  }
}
.g3-nav:active { transform: translateY(-50%) scale(0.95); }
.g3-nav-prev { left: 0.5rem; }
.g3-nav-next { right: 0.5rem; }

/* ---- Swipe hint ---- */
.g3-hint {
  position: absolute;
  left: 50%;
  top: 0.8rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: rgba(245, 241, 232, 0.7);
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  z-index: 15;
  pointer-events: none;
  transition: opacity .7s ease, transform .7s ease;
}
.g3-hint.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(-4px);
}
.g3-hint-text { opacity: 0.9; }
.g3-hint-arrow {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.85;
}
.g3-hint-arrow-l { animation: g3HintArrowL 1.8s ease-in-out infinite; }
.g3-hint-arrow-r { animation: g3HintArrowR 1.8s ease-in-out infinite; animation-delay: 0.9s; }

@keyframes g3HintArrowL {
  0%, 100% { transform: translateX(0); opacity: 0.55; }
  50%      { transform: translateX(-8px); opacity: 1; }
}
@keyframes g3HintArrowR {
  0%, 100% { transform: translateX(0); opacity: 0.55; }
  50%      { transform: translateX(8px); opacity: 1; }
}

/* ---- Panel ---- */
.g3-panel {
  max-width: 720px;
  margin: 0 auto;
  padding: 0.25rem 1.5rem 1rem;
  text-align: center;
  animation: g3PanelFade .9s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes g3PanelFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.g3-panel-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.3rem;
}
.g3-panel-num {
  font-family: 'EB Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--accent);
  opacity: 0.7;
  text-transform: uppercase;
}
.g3-panel-badge {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212, 165, 116, 0.4);
  padding: 0.15rem 0.6rem;
  border-radius: 2px;
}
.g3-panel-badge[hidden] { display: none; }

.g3-panel-title {
  font-family: 'CCSBjork', 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 1rem 0;
  text-shadow:
    0 0 14px rgba(245, 241, 232, 0.28),
    0 0 36px color-mix(in oklch, var(--song-accent) 55%, transparent),
    0 0 80px color-mix(in oklch, var(--song-accent) 28%, transparent);
  animation: g3TitleGlow 4.5s ease-in-out infinite;
  transition: text-shadow .5s var(--ease-out);
}

@keyframes g3TitleGlow {
  0%, 100% {
    text-shadow:
      0 0 12px rgba(245, 241, 232, 0.22),
      0 0 32px color-mix(in oklch, var(--song-accent) 50%, transparent),
      0 0 72px color-mix(in oklch, var(--song-accent) 22%, transparent);
  }
  50% {
    text-shadow:
      0 0 18px rgba(245, 241, 232, 0.38),
      0 0 44px color-mix(in oklch, var(--song-accent) 70%, transparent),
      0 0 96px color-mix(in oklch, var(--song-accent) 38%, transparent);
  }
}

/* ---- Player ---- */
.g3-player-wrap {
  position: relative;
  max-width: 640px;
  margin: 0 auto 2rem;
  aspect-ratio: 16/9;
  background: #0a0a0a;
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(212, 165, 116, 0.12);
}
.g3-player-host {
  position: absolute;
  inset: 0;
}
.g3-player-host iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.g3-start {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(212, 165, 116, 0.5);
  color: var(--text);
  display: flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.g3-start svg { width: 44px; height: 44px; margin-left: 4px; color: var(--accent); }
.g3-start .g3-start-label {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: rgba(245, 241, 232, 0.8);
}
@media (hover: hover) and (pointer: fine) {
  .g3-start:hover {
    background: rgba(212, 165, 116, 0.2);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 165, 116, 0.5);
  }
}
.g3-player-host.is-loaded ~ .g3-start { display: none; }

.g3-unmute {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(212, 165, 116, 0.5);
  border-radius: 999px;
  color: var(--text);
  font-family: 'EB Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  z-index: 6;
  backdrop-filter: blur(6px);
  transition: background .3s ease, border-color .3s ease;
  animation: g3UnmutePulse 2.4s ease-in-out infinite;
}
.g3-unmute:hover {
  background: rgba(212, 165, 116, 0.25);
  border-color: var(--accent);
}
.g3-unmute svg { width: 16px; height: 16px; color: var(--accent); }
.g3-unmute[hidden] { display: none; }

@keyframes g3UnmutePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 165, 116, 0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(212, 165, 116, 0); }
}

/* ---- Lyrics inline ---- */
.g3-panel-lyrics-wrap {
  margin: 0 auto 2rem;
  max-width: 48ch;
  text-align: center;
}
.g3-panel-lyrics-wrap[hidden] { display: none; }

.g3-panel-lyrics-label {
  font-family: 'EB Garamond', serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--accent);
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.g3-panel-lyrics {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(245, 241, 232, 0.85);
  text-wrap: balance;
}
.g3-line { display: block; }
.g3-line-break { display: block; height: 0.85em; }

.g3-panel-credits {
  margin-top: 2.5rem;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(245, 241, 232, 0.45);
  text-wrap: balance;
}

/* ========== ABOUT — fullbleed cinematic portrait ========== */
.about {
  padding: 0;            /* breakout — no section padding */
  position: relative;
}

/* Stage = full-viewport portrait with overlay typography */
.about-stage {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw); /* break out of any container */
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;     /* heading sits at the bottom */
  justify-content: center;
  padding-bottom: 6vh;
}

/* About portrait — always show the WHOLE square image on every device.
   Contain preserves the full composition; the dark letterbox reads as frame. */
.about-portrait {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #07060a;
  filter: brightness(0.95) contrast(1.05) saturate(1.05);
  animation: kenburns 28s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  0%   { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, -1.5%); }
}

.about-portrait-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.55) 80%, rgba(0,0,0,0.85) 100%),
    linear-gradient(180deg, rgba(7,6,10,0.35) 0%, transparent 25%, transparent 75%, rgba(7,6,10,0.85) 100%);
  pointer-events: none;
}
.about-portrait-grain {
  position: absolute; inset: 0;
  opacity: 0.12; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='9'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  pointer-events: none;
}

.about-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}
.about-eyebrow {
  font-family: 'EB Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
  margin-bottom: 2rem;
}
.about-eyebrow::before,
.about-eyebrow::after {
  content: '';
  display: inline-block;
  width: 38px; height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin: 0 1.2rem;
  opacity: 0.6;
}
.about-heading {
  font-family: 'CCSBjork', 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(4.5rem, 12vw, 9rem);
  letter-spacing: 0.06em;
  line-height: 0.95;
  color: var(--text);
  text-shadow: 0 8px 40px rgba(0,0,0,0.6),
               0 0 60px rgba(212, 165, 116, 0.18);
  margin: 0;
}
.about-hairline {
  width: 1px; height: 80px;
  margin: 2.5rem auto 0;
  background: linear-gradient(to bottom, rgba(212,165,116,0.5), transparent);
}

.about-bio {
  max-width: 620px;
  margin: 0 auto;
  padding: 8rem 2rem 10rem;
  font-size: 1.2rem;
  line-height: 1.85;
  text-align: center;
}
.about-bio p { margin-bottom: 1.6rem; }
.about-bio p:last-of-type { margin-bottom: 2.5rem; }

.presskit-link {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.06em;
  border: 1px solid rgba(212, 165, 116, 0.4);
  border-radius: 2px;
  opacity: 0.8;
  cursor: not-allowed;
}

@media (max-width: 700px) {
  .about-stage { min-height: 560px; }
  /* contain-fit keeps the whole portrait visible; no position tweak needed */
}

/* ========== CONTACT ========== */
.contact { text-align: center; }
.contact-list { list-style: none; max-width: 480px; margin: 0 auto; }
.contact-list li {
  padding: 1rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

/* ========== FOOTER ========== */
.footer {
  text-align: center;
  padding: 3rem 1.5rem;
  font-size: 0.85rem;
  opacity: 0.5;
  border-top: 1px solid rgba(245, 241, 232, 0.08);
}
.footer p + p { margin-top: 0.5rem; }
.footer-link {
  font-size: inherit;
  opacity: 1;
  border-bottom: 1px solid transparent;
  transition:
    color .25s var(--ease-out),
    border-color .25s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .footer-link:hover { color: var(--accent); border-color: var(--accent); }
}

/* ========== MODALS ========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  opacity: 0;
  animation: modalFade .4s ease forwards;
  overflow-y: auto;
}
@keyframes modalFade { to { opacity: 1; } }
.modal[hidden] { display: none; }
.modal-inner {
  background: var(--bg-2);
  border: 1px solid rgba(212, 165, 116, 0.2);
  padding: 3rem 2.5rem;
  max-width: 600px;
  width: 100%;
  position: relative;
  border-radius: 3px;
  max-height: 85vh;
  overflow-y: auto;
}
.modal-inner h3 { font-size: 1.6rem; margin-bottom: 1.5rem; }
.modal-inner h4 { font-size: 1.1rem; margin: 1.5rem 0 .5rem; color: var(--accent); }
.modal-inner p { font-size: 0.95rem; margin-bottom: 1rem; line-height: 1.7; }
.modal-inner a { color: var(--accent); border-bottom: 1px solid rgba(212, 165, 116, 0.4); }
.modal-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  font-size: 1.8rem;
  line-height: 1;
  opacity: 0.6;
  transition:
    opacity .2s var(--ease-out),
    color .2s var(--ease-out),
    transform .15s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .modal-close:hover { opacity: 1; color: var(--accent); transform: scale(1.1); }
}

/* ========== SCROLL-TRIGGER ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .7s var(--ease-out),
    transform .7s var(--ease-out);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger groups — siblings fade in with a small per-item delay,
   creating a natural cascade instead of a single block-fade. */
.bio > p.fade-in.is-visible:nth-child(1) { transition-delay: 0ms; }
.bio > p.fade-in.is-visible:nth-child(2) { transition-delay: 80ms; }
.bio > p.fade-in.is-visible:nth-child(3) { transition-delay: 160ms; }
.bio > p.fade-in.is-visible:nth-child(4) { transition-delay: 240ms; }

.contact-list.fade-in.is-visible li:nth-child(1) { transition-delay: 0ms; }
.contact-list.fade-in.is-visible li:nth-child(2) { transition-delay: 70ms; }

/* ========== RESPONSIVE ========== */
/* Tablet — iPad portrait (768px) up to small laptop (1024px).
   Sits between mobile and desktop and deserves its own dial-in. */
@media (min-width: 701px) and (max-width: 1024px) {
  section { padding: 7rem 1.75rem; }
  .g3-panel-title { font-size: clamp(2.4rem, 5vw, 3.6rem); }
  .g3-panel { max-width: 600px; }
  .stream-links { gap: 2rem 3rem; }
}

@media (max-width: 900px) {
  section { padding: 6rem 1.25rem; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-title { letter-spacing: 0.08em; }
  .g3-nav { width: 44px; height: 44px; }
  .g3-nav svg { width: 22px; height: 22px; }
}

@media (max-width: 600px) {
  .mouse-light { display: none; }
  /* particles stay on — they're part of the hero atmosphere */
  section { padding: 5rem 1rem; }
  .g3-nav-prev { left: 0.1rem; }
  .g3-nav-next { right: 0.1rem; }
  .g3-hint { font-size: 0.85rem; gap: 0.7rem; letter-spacing: 0.1em; }
  .g3-hint-arrow { font-size: 1.3rem; }
  .g3-panel { padding: 1.5rem 1rem 1rem; }
  .g3-start { width: 76px; height: 76px; }
  .g3-start svg { width: 32px; height: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  /* Particles are slow drifting motes, not aggressive motion — keep them.
     Mouse-driven cursor light is fine too; only the auto-animated
     ambient backgrounds get hidden. */
  .bg-stained, .bg-gradient { animation: none; }
}

/* ============================================================
   SPOTIFY — CTA buttons + dedicated banner section
   ============================================================ */
.spotify-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(212, 165, 116, 0.4);
  border-radius: 2px;
  background: rgba(7, 6, 10, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    color .25s var(--ease-out),
    border-color .25s var(--ease-out),
    box-shadow .25s var(--ease-out),
    transform .2s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .spotify-cta:hover {
    color: #1ed760;                      /* Spotify green — only on hover */
    border-color: #1ed760;
    box-shadow: 0 0 30px rgba(30, 215, 96, 0.25);
    transform: translateY(-2px);
  }
}
.spotify-icon { width: 18px; height: 18px; }
.spotify-icon--large { width: 24px; height: 24px; }

/* Hero CTA — compact, sits below the claim */
.spotify-cta--hero {
  margin-top: 2.5rem;
  opacity: 0;
  animation: heroFadeIn 1.5s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: 2.8s;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 0.92; transform: translateY(0); }
}

/* Dedicated banner between Songs and About — full-width, golden frame */
.spotify-banner {
  position: relative;
  padding: 10rem 1.5rem;
  text-align: center;
  overflow: hidden;
}
.spotify-banner__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 2rem;
  border-top: 1px solid rgba(212, 165, 116, 0.25);
  border-bottom: 1px solid rgba(212, 165, 116, 0.25);
  z-index: 2;
}

.spotify-banner__label {
  font-family: 'EB Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0.9;
}
.stream-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem 4rem;
  margin-top: 1.5rem;
}

.stream-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  color: rgba(245, 241, 232, 0.88);
  text-decoration: none;
  transition: transform .35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .stream-cta:hover { transform: translateY(-3px); }
}

.stream-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  color: inherit;
  transition: color .35s ease, filter .35s ease;
}

.stream-cta--spotify:hover .stream-icon {
  color: #1ed760;
  filter: drop-shadow(0 0 22px rgba(30, 215, 96, 0.55));
}
.stream-cta--apple:hover .stream-icon {
  color: #fa243c;
  filter: drop-shadow(0 0 22px rgba(250, 36, 60, 0.6));
}

.spotify-banner__sub {
  margin-top: 2rem;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(245, 241, 232, 0.6);
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

@media (max-width: 700px) {
  .spotify-banner { padding: 6rem 1rem; }
  .spotify-banner__inner { padding: 3rem 1.5rem; }
  .stream-cta { padding: 0.5rem; }
  .stream-icon { width: 44px; height: 44px; }
}
