/* ============================================================
   SHEA TILLY — cinematic scroll site
   ink black · red/pink accent · cream type · Anton display
   ============================================================ */

@font-face {
  font-family: 'Anton';
  src: url('https://shea-tilly.com/wp-content/uploads/shea-cinematic/assets/fonts/anton-latin.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'InterVar';
  src: url('https://shea-tilly.com/wp-content/uploads/shea-cinematic/assets/fonts/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair';
  src: url('https://shea-tilly.com/wp-content/uploads/shea-cinematic/assets/fonts/playfair-italic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #060407;
  --ink-2: #0d090e;
  --cream: #f3ead8;
  --cream-dim: rgba(243, 234, 216, 0.55);
  --red: #e8112d;
  --pink: #ff4d8d;
  --grad: linear-gradient(100deg, var(--red), var(--pink));
  --display: 'Anton', 'Arial Narrow', sans-serif;
  --body: 'InterVar', 'Helvetica Neue', sans-serif;
  --serif: 'Playfair', Georgia, serif;
}

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

html { background: var(--ink); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.pre-inner { text-align: center; }
.pre-name {
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 7rem);
  letter-spacing: 0.06em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: prePulse 1.6s ease-in-out infinite;
}
@keyframes prePulse { 0%,100% { opacity: 1; } 50% { opacity: 0.55; } }
.pre-bar {
  width: min(360px, 60vw); height: 2px; margin: 28px auto 12px;
  background: rgba(243, 234, 216, 0.12);
}
.pre-fill { width: 0%; height: 100%; background: var(--grad); transition: width 0.15s ease; }
.pre-pct { font-size: 11px; letter-spacing: 0.4em; color: var(--cream-dim); }

/* ---------- grain ---------- */
.grain { position: fixed; inset: -100%; z-index: 90; pointer-events: none; opacity: 0.07; }
.grain::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.9s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

/* ---------- scroll progress ---------- */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 95;
  background: transparent; pointer-events: none;
}
.progress-fill {
  height: 100%; width: 100%;
  background: var(--grad);
  transform-origin: left center;
  transform: scaleX(0);
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  mix-blend-mode: difference;
}
.nav-logo { display: block; text-decoration: none; }
.nav-logo img {
  display: block; height: clamp(52px, 6vw, 76px); width: auto;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.55));
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.nav-logo:hover img { transform: scale(1.06); }
.nav-links { display: flex; gap: clamp(16px, 3vw, 40px); align-items: center; }
.nav-links a {
  color: var(--cream); text-decoration: none;
  font-size: 12px; letter-spacing: 0.32em; font-weight: 600;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: var(--cream);
  transform: scaleX(0); transform-origin: right; transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { border: 1px solid var(--cream); padding: 10px 18px; }
.nav-cta::after { display: none; }

/* ---------- hero ---------- */
#hero { position: relative; }
.hero-stage { position: relative; width: 100vw; height: 100vh; overflow: hidden; }
#orbitCanvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 42%, rgba(6, 4, 7, 0.75) 100%),
    linear-gradient(to bottom, rgba(6,4,7,0.5) 0%, transparent 22%, transparent 72%, var(--ink) 100%);
}
.hero-copy {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  pointer-events: none;
}
.hero-eyebrow {
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.5em; font-weight: 600;
  color: var(--cream-dim);
  margin-bottom: clamp(14px, 2.5vh, 28px);
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(4.6rem, 17.5vw, 15.5rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--cream);
  text-shadow: 0 0 90px rgba(232, 17, 45, 0.35);
}
.ht-line { display: block; overflow: hidden; }
.ht-letter { display: inline-block; will-change: transform, opacity; }
.hero-sub {
  margin-top: clamp(18px, 3vh, 34px);
  display: flex; align-items: center; gap: 18px;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.55em; font-weight: 600;
  color: var(--cream);
}
.hero-sub-rule { display: inline-block; width: clamp(30px, 6vw, 90px); height: 1px; background: var(--grad); }
.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.5em; color: var(--cream-dim);
}
.cue-line { width: 1px; height: 46px; background: var(--cream-dim); overflow: hidden; position: relative; }
.cue-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--grad); animation: cueDrop 1.6s cubic-bezier(0.77, 0, 0.18, 1) infinite;
}
@keyframes cueDrop { 0% { top: -100%; } 60%,100% { top: 100%; } }

/* ---------- stats ---------- */
#stats {
  position: relative; z-index: 2;
  padding: clamp(90px, 16vh, 170px) clamp(20px, 6vw, 90px);
  background: var(--ink);
  border-top: 1px solid rgba(243, 234, 216, 0.07);
  border-bottom: 1px solid rgba(243, 234, 216, 0.07);
}
.stats-kicker {
  font-size: 12px; letter-spacing: 0.5em; font-weight: 600;
  color: var(--pink); margin-bottom: clamp(40px, 7vh, 80px); text-align: center;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 60px); max-width: 1300px; margin: 0 auto;
}
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after {
  content: ''; position: absolute; right: calc(-1 * clamp(15px, 2vw, 30px)); top: 15%;
  width: 1px; height: 70%; background: rgba(243, 234, 216, 0.1);
}
.stat-num {
  font-family: var(--display);
  font-size: clamp(3rem, 6.5vw, 6.4rem);
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  margin-top: 16px; font-size: 11px; letter-spacing: 0.28em;
  color: var(--cream-dim); font-weight: 600; line-height: 1.8;
}

/* ---------- shared section headers ---------- */
.section-no {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.55em; font-weight: 600;
  color: var(--pink);
  border: 1px solid rgba(255, 77, 141, 0.35);
  padding: 8px 16px 8px 20px;
  margin-bottom: 22px;
}

/* ---------- story / bio ---------- */
#story {
  position: relative;
  padding: clamp(110px, 18vh, 210px) clamp(20px, 6vw, 90px);
  background:
    radial-gradient(ellipse 60% 40% at 85% 8%, rgba(232, 17, 45, 0.08), transparent 65%),
    var(--ink);
}
.story-head { max-width: 1500px; margin: 0 auto clamp(50px, 9vh, 110px); }
.story-grid {
  display: grid; grid-template-columns: minmax(300px, 5fr) 7fr;
  gap: clamp(40px, 6vw, 110px);
  max-width: 1500px; margin: 0 auto;
  align-items: start;
}
.story-media { position: sticky; top: 12vh; }
.story-portrait { position: relative; overflow: hidden; }
.story-portrait img {
  width: 100%; display: block;
  filter: grayscale(0.2) contrast(1.05);
  transform: scale(1.12);
  will-change: transform;
}
.story-portrait-frame {
  position: absolute; inset: 14px;
  border: 1px solid rgba(243, 234, 216, 0.35);
  pointer-events: none;
}
.story-body { max-width: 640px; }
.story-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: clamp(30px, 4.5vh, 48px);
}
.story-lede em {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.story-body p:not(.story-lede) {
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.95;
  letter-spacing: 0.02em;
  color: rgba(243, 234, 216, 0.78);
  margin-bottom: 26px;
}
.story-body p strong { color: var(--cream); letter-spacing: 0.14em; font-weight: 600; }
.story-body p em { color: var(--cream); font-style: italic; }
.story-quote {
  margin-top: clamp(40px, 6vh, 64px);
  padding-top: clamp(30px, 4vh, 44px);
  border-top: 1px solid rgba(243, 234, 216, 0.14);
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  line-height: 1.35;
  color: var(--cream);
}
.story-quote b {
  font-weight: 500;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sq-mask { display: block; overflow: hidden; }
.sq-mask > span { display: inline-block; }

/* ---------- pillars ---------- */
#pillars { position: relative; }
.pillars-stage { position: relative; width: 100vw; height: 100vh; overflow: hidden; }
.bg-video {
  position: absolute; top: 50%; left: 50%;
  min-width: 100%; min-height: 100%; width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.video-tint {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--ink) 0%, rgba(6,4,7,0.25) 18%, rgba(6,4,7,0.25) 82%, var(--ink) 100%);
}
.video-tint.dark { background: linear-gradient(to bottom, var(--ink) 0%, rgba(6,4,7,0.62) 20%, rgba(6,4,7,0.62) 80%, var(--ink) 100%); }
.pillar {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 6vw;
  opacity: 0; visibility: hidden;
}
.pillar-index {
  font-size: 13px; letter-spacing: 0.6em; font-weight: 600;
  color: var(--pink); margin-bottom: 18px;
}
.pillar-title {
  font-family: var(--display);
  font-size: clamp(3.6rem, 12vw, 11rem);
  line-height: 0.9; letter-spacing: 0.02em;
  color: var(--cream);
  text-shadow: 0 10px 80px rgba(0, 0, 0, 0.8);
}
.pillar-line {
  margin-top: 26px; font-size: clamp(13px, 1.4vw, 17px);
  letter-spacing: 0.12em; color: var(--cream-dim); font-weight: 400;
  max-width: 560px;
}

/* ---------- music ---------- */
#music {
  position: relative; overflow: hidden;
  padding: clamp(110px, 18vh, 200px) clamp(20px, 5vw, 70px);
}
#music .bg-video { position: absolute; }
.music-inner { position: relative; z-index: 2; max-width: 1500px; margin: 0 auto; }
.music-head { margin-bottom: clamp(60px, 10vh, 130px); }
.section-title {
  font-family: var(--display);
  font-size: clamp(3.4rem, 10vw, 9rem);
  line-height: 0.95; color: var(--cream);
}
.st-mask { display: block; overflow: hidden; }
.st-mask > span { display: inline-block; }

/* ----- single blocks ----- */
.single {
  display: grid; grid-template-columns: minmax(280px, 5fr) 7fr;
  gap: clamp(36px, 5.5vw, 100px);
  align-items: center;
  padding: clamp(50px, 8vh, 90px) 0;
  border-top: 1px solid rgba(243, 234, 216, 0.1);
}
.single-flip { grid-template-columns: 7fr minmax(280px, 5fr); }
.single-flip .single-art { order: 2; }
.single-flip .single-info { order: 1; }
.single-art {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.single-art img {
  width: 100%; display: block; position: relative; z-index: 1;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.65);
}
.single-art-glow {
  position: absolute; inset: -12%;
  background: radial-gradient(circle at 50% 55%, rgba(232, 17, 45, 0.32), transparent 62%);
  filter: blur(30px); z-index: 0;
}
.single-art-glow.pink { background: radial-gradient(circle at 50% 55%, rgba(255, 77, 141, 0.3), transparent 62%); }
.single-art-fallback {
  position: relative; z-index: 1; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 77, 141, 0.28), transparent 55%),
    radial-gradient(circle at 76% 82%, rgba(232, 17, 45, 0.24), transparent 55%),
    #0a060c;
  border: 1px solid rgba(243, 234, 216, 0.12);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.65);
}
.single-art-fallback span {
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  letter-spacing: 0.2em; padding-left: 0.2em;
  text-align: center; line-height: 1.2;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.single-no {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.5em; font-weight: 600;
  color: var(--pink); margin-bottom: 18px;
}
.single-title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6.4vw, 6rem);
  line-height: 0.92; letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: clamp(20px, 3vh, 30px);
}
.single-about {
  font-size: clamp(13.5px, 1.15vw, 16px);
  line-height: 1.9; letter-spacing: 0.02em;
  color: rgba(243, 234, 216, 0.75);
  max-width: 620px;
  margin-bottom: clamp(26px, 4vh, 40px);
}
.single-about.center { margin-left: auto; margin-right: auto; }
.single-details {
  display: grid; grid-template-columns: repeat(4, auto);
  gap: clamp(20px, 3vw, 54px);
  justify-content: start;
  padding: 20px 0;
  border-top: 1px solid rgba(243, 234, 216, 0.12);
  border-bottom: 1px solid rgba(243, 234, 216, 0.12);
  margin-bottom: clamp(26px, 4vh, 40px);
}
.single-details dt {
  font-size: 9.5px; letter-spacing: 0.4em; font-weight: 600;
  color: var(--cream-dim); margin-bottom: 8px;
}
.single-details dd {
  font-family: var(--display);
  font-size: clamp(0.95rem, 1.15vw, 1.2rem);
  letter-spacing: 0.06em; color: var(--cream);
}
.single-platforms { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  display: inline-block; text-decoration: none;
  font-size: 10.5px; letter-spacing: 0.32em; font-weight: 600;
  color: var(--cream);
  border: 1px solid rgba(243, 234, 216, 0.32);
  border-radius: 999px;
  padding: 13px 26px;
  position: relative; overflow: hidden;
  transition: color 0.35s ease, border-color 0.35s ease, transform 0.3s ease, background 0.35s ease;
}
.pill:hover {
  color: var(--ink); background: var(--cream);
  border-color: var(--cream); transform: translateY(-3px);
}
.pill-solid { background: var(--grad); border-color: transparent; color: var(--cream); }
.pill-solid:hover { background: var(--cream); color: var(--ink); }

/* ----- space teaser ----- */
.space-teaser {
  margin-top: clamp(50px, 8vh, 90px);
  border: 1px solid rgba(243, 234, 216, 0.14);
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 77, 141, 0.16), transparent 55%),
    radial-gradient(circle at 80% 85%, rgba(232, 17, 45, 0.14), transparent 55%),
    rgba(13, 9, 14, 0.66);
  backdrop-filter: blur(8px);
  text-align: center;
  padding: clamp(50px, 9vh, 100px) clamp(22px, 5vw, 70px);
  will-change: transform;
}
.space-title {
  font-family: var(--display);
  font-size: clamp(3.4rem, 9vw, 8rem);
  letter-spacing: 0.3em; padding-left: 0.3em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: clamp(18px, 3vh, 28px);
}
.space-inner .single-about { max-width: 520px; }

/* ---------- lyric videos ---------- */
#videos {
  position: relative;
  padding: clamp(110px, 18vh, 200px) clamp(20px, 6vw, 90px);
  background:
    radial-gradient(ellipse 55% 38% at 12% 12%, rgba(255, 77, 141, 0.07), transparent 60%),
    var(--ink);
}
.videos-head { max-width: 1500px; margin: 0 auto clamp(50px, 9vh, 110px); }
.videos-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3.5vw, 54px);
  max-width: 1500px; margin: 0 auto;
}
.yt-card { margin: 0; }
.yt-frame {
  position: relative; aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(243, 234, 216, 0.14);
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s ease;
}
.yt-card:hover .yt-frame {
  border-color: var(--pink);
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(232, 17, 45, 0.16);
}
.yt-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-card figcaption {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 14px; padding-top: 18px;
}
.yt-tag { font-size: 10px; letter-spacing: 0.4em; font-weight: 600; color: var(--cream-dim); }
.yt-title {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  letter-spacing: 0.05em; color: var(--cream);
}

/* ---------- finale ---------- */
#finale {
  position: relative; overflow: hidden;
  padding: clamp(120px, 20vh, 220px) 0 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% 62%, rgba(232, 17, 45, 0.16), transparent 70%),
    var(--ink);
  text-align: center;
}
.marquee { overflow: hidden; white-space: nowrap; opacity: 0.16; margin-bottom: clamp(40px, 8vh, 90px); }
.marquee-track { display: inline-flex; animation: marquee 26s linear infinite; }
.marquee-track span {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing: 0.06em;
  color: transparent;
  -webkit-text-stroke: 1px var(--cream);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.listen-title {
  font-family: var(--display);
  font-size: clamp(4.4rem, 16vw, 14.5rem);
  line-height: 0.9; letter-spacing: 0.02em;
  color: var(--cream);
}
.lt-word { display: inline-block; will-change: transform; }
.lt-accent {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.finale-btns {
  margin: clamp(44px, 7vh, 80px) auto 0;
  display: flex; gap: clamp(14px, 2vw, 28px); justify-content: center; flex-wrap: wrap;
  padding: 0 20px;
}
.btn {
  position: relative; overflow: hidden;
  display: inline-block; text-decoration: none;
  font-family: var(--display); font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  letter-spacing: 0.14em; color: var(--cream);
  padding: clamp(18px, 2.2vh, 24px) clamp(40px, 5vw, 72px);
  border: 1px solid rgba(243, 234, 216, 0.4);
  transition: color 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn:hover { transform: translateY(-4px); border-color: transparent; color: var(--ink); }
.btn-fill {
  position: absolute; inset: 0; background: var(--grad);
  transform: translateY(101%); transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
}
.btn:hover .btn-fill { transform: translateY(0); }
.btn-text { position: relative; z-index: 1; }
.btn-youtube .btn-fill { background: var(--cream); }

/* ---------- footer ---------- */
.footer {
  margin-top: clamp(90px, 15vh, 170px);
  padding: 50px clamp(20px, 5vw, 70px) 46px;
  border-top: 1px solid rgba(243, 234, 216, 0.08);
  display: flex; flex-direction: column; align-items: center; gap: 26px;
}
.footer-name {
  font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: 0.1em;
}
.footer-links { display: flex; gap: clamp(20px, 4vw, 46px); flex-wrap: wrap; justify-content: center; }
.footer-links a {
  color: var(--cream-dim); text-decoration: none;
  font-size: 11px; letter-spacing: 0.34em; font-weight: 600;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--pink); }
.footer-fine { font-size: 10px; letter-spacing: 0.3em; color: rgba(243, 234, 216, 0.3); }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-media { position: relative; top: 0; max-width: 440px; }
  .single, .single-flip { grid-template-columns: 1fr; gap: 40px; }
  .single-flip .single-art { order: 0; }
  .single-flip .single-info { order: 1; }
  .single-art { max-width: 440px; }
  .videos-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: 1fr; max-width: 420px; }
  .stat::after { display: none !important; }
  .single-details { grid-template-columns: repeat(2, auto); row-gap: 22px; }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat::after { display: none !important; }
  .nav-links a:not(.nav-cta) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .grain::before, .marquee-track, .cue-line::after, .pre-name { animation: none; }
}

/* ============================================================
   WORDPRESS / ELEMENTOR KIT OVERRIDE
   Elementor global kit (.elementor-kit-*) forces Play/Orbitron
   fonts + fixed heading sizes onto <body>/<h1..h3> with class
   specificity. Re-assert the cinematic type system. Scoped to
   this page only (this stylesheet loads only on the experience).
   ============================================================ */
body {
  font-family: var(--body) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
}
/* body / UI copy → Inter */
.hero-eyebrow, .hero-sub, .stat-label, .stats-kicker, .section-no,
.story-body, .story-body p, .single-no, .single-about, .single-details dt,
.pill, .card-tag, .yt-tag, .nav-links a, .nav-cta, .footer-links a, .footer-fine,
.scroll-cue, .pillar-index, .pillar-line, .pre-pct, .card-cta, .marquee-track span {
  font-family: var(--body) !important;
}
/* display type → Anton */
.pre-name, .hero-title, h1.hero-title, .ht-letter,
.section-title, h2.section-title, .st-mask > span,
.pillar-title, h2.pillar-title,
.single-title, h3.single-title, .space-title, h3.space-title, .card-meta h3,
.stat-num, .single-details dd, .listen-title, .lt-word, .footer-name, .yt-title, .nav-logo {
  font-family: var(--display) !important;
  font-weight: 400 !important;
}
/* serif accents → Playfair */
.story-lede, .story-quote { font-family: var(--serif) !important; }
/* restore responsive display sizes the kit clobbered with fixed px */
.hero-title { font-size: clamp(4.6rem, 17.5vw, 15.5rem) !important; line-height: 0.88 !important; }
.section-title { font-size: clamp(3.4rem, 10vw, 9rem) !important; line-height: 0.95 !important; }
.pillar-title { font-size: clamp(3.6rem, 12vw, 11rem) !important; line-height: 0.9 !important; }
.single-title { font-size: clamp(2.8rem, 6.4vw, 6rem) !important; line-height: 0.92 !important; }
.space-title { font-size: clamp(3.4rem, 9vw, 8rem) !important; }
.card-meta h3 { font-size: clamp(1.8rem, 2.6vw, 2.6rem) !important; }
.listen-title { font-size: clamp(4.4rem, 16vw, 14.5rem) !important; line-height: 0.9 !important; }
.story-lede { font-size: clamp(1.7rem, 3vw, 2.7rem) !important; line-height: 1.25 !important; }
.pre-name { font-size: clamp(3rem, 9vw, 7rem) !important; }

/* --- Elementor kit forces a{color:#fff}/a:hover{#0567F3} + body{color:#fff;bg:#0E0837}. Restore design colors. --- */
body { color: var(--cream) !important; background-color: var(--ink) !important; }
.btn { color: var(--cream) !important; text-decoration: none !important; }
.btn:hover { color: var(--ink) !important; }
.btn-spotify:hover, .btn-youtube:hover { color: var(--ink) !important; }
.nav-links a, .nav-cta { color: var(--cream) !important; }
.footer-links a { color: var(--cream-dim) !important; }
.footer-links a:hover { color: var(--pink) !important; }
.card { color: var(--cream) !important; }
.card-cta { color: var(--cream) !important; }
.card:hover .card-cta { color: var(--pink) !important; }
.pill { color: var(--cream) !important; }
.pill:hover, .pill-solid:hover { color: var(--ink) !important; }
.pill-solid { color: var(--cream) !important; }
.single-platforms a, .single-platforms a:hover { text-decoration: none !important; }

/* ============================================================
   NATIVE ELEMENTOR — MUSIC SECTION BRIDGE
   Elementor applies widget CSS-classes but not section/column
   ones, so layout hooks target Elementor's native structure.
   ============================================================ */
#music { position: relative; overflow: hidden; }
.music-inner-col { position: relative; z-index: 2; }
#music .music-head { max-width: 1500px; margin: 0 auto clamp(50px,9vh,110px) !important; }
/* each single = an inner section */
#music .elementor-inner-section { padding: clamp(40px,7vh,80px) 0 !important; border-top: 1px solid rgba(243,234,216,0.1); }
#music .elementor-inner-section > .elementor-container { max-width: 1500px !important; margin: 0 auto; align-items: center; }
/* cover art + glow (image widget carries .single-art) */
#music .single-art { position: relative; display: block; }
#music .single-art::before { content:''; position:absolute; inset:-10%; z-index:0; filter: blur(34px); background: radial-gradient(circle at 50% 55%, rgba(232,17,45,0.30), transparent 62%); }
#music .single-art img { box-shadow: 0 40px 90px rgba(0,0,0,0.65); position: relative; z-index: 1; display: block; }
/* track label */
#music .single-no .elementor-heading-title { font-family: var(--body) !important; font-size: 11px !important; letter-spacing: 0.5em; font-weight: 600; color: var(--pink); margin: 0; }
#music .single-no { margin-bottom: 14px; }
/* single title */
#music .single-title .elementor-heading-title { font-family: var(--display) !important; font-size: clamp(2.8rem,6.4vw,6rem) !important; line-height: 0.92 !important; letter-spacing: 0.02em; color: var(--cream); font-weight: 400 !important; margin: 0; }
#music .single-title { margin-bottom: clamp(16px,3vh,26px); }
/* about */
#music .single-about, #music .single-about p { font-family: var(--body) !important; font-size: clamp(13.5px,1.15vw,16px) !important; line-height: 1.9; letter-spacing: 0.02em; color: rgba(243,234,216,0.75); }
#music .single-about { margin-bottom: clamp(20px,3.5vh,32px); max-width: 620px; }
/* details */
#music .single-details { margin: 0 0 clamp(22px,4vh,34px) !important; }
/* streaming pills (native Elementor buttons; !important beats kit blue) */
#music .elementor-widget-button { width: auto !important; flex: 0 0 auto !important; margin: 0 12px 12px 0 !important; }
#music .elementor-button { background: transparent !important; border: 1px solid rgba(243,234,216,0.32) !important; border-radius: 999px !important; color: var(--cream) !important; font-family: var(--body) !important; font-size: 10.5px !important; letter-spacing: 0.3em !important; font-weight: 600 !important; line-height: 1 !important; padding: 13px 24px !important; min-height: 0 !important; box-shadow: none !important; text-shadow: none !important; fill: var(--cream); transition: color .35s, background .35s, border-color .35s, transform .3s; }
#music .elementor-button:hover { background: var(--cream) !important; color: var(--ink) !important; border-color: var(--cream) !important; transform: translateY(-3px); }
#music .elementor-button .elementor-button-text { font-size: inherit !important; letter-spacing: inherit !important; color: inherit !important; font-family: inherit !important; }

/* ============================================================
   NATIVE ELEMENTOR — STATS / STORY / VIDEOS BRIDGES
   ============================================================ */
/* ---- STATS ---- */
#stats .stats-kicker .elementor-heading-title { font-family: var(--body) !important; font-size: 12px !important; letter-spacing: 0.5em; font-weight: 600; color: var(--pink); margin: 0; }
#stats .stats-kicker { text-align: center; margin-bottom: clamp(40px,7vh,80px); }
#stats .elementor-inner-section > .elementor-container { max-width: 1300px; margin: 0 auto; }
#stats .elementor-inner-section .elementor-column { position: relative; text-align: center; }
#stats .elementor-inner-section .elementor-column:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 15%; width: 1px; height: 70%; background: rgba(243,234,216,0.1); }
#stats .stat-num .elementor-heading-title { font-family: var(--display) !important; font-size: clamp(3rem,6.5vw,6.4rem) !important; line-height: 1 !important; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin: 0; font-weight: 400 !important; }
#stats .stat-label .elementor-heading-title { font-family: var(--body) !important; font-size: 11px !important; letter-spacing: 0.28em; color: var(--cream-dim); font-weight: 600; line-height: 1.8; margin: 16px 0 0; }
/* ---- STORY ---- */
#story .elementor-inner-section > .elementor-container { max-width: 1500px; margin: 0 auto; align-items: flex-start; }
#story .story-media { position: sticky; top: 12vh; }
#story .story-lede .elementor-widget-container > p, #story .story-lede p { font-family: var(--serif) !important; font-style: italic; font-size: clamp(1.7rem,3vw,2.7rem) !important; line-height: 1.25; color: var(--cream); margin: 0; }
#story .story-lede em { font-style: italic; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
#story .story-lede { margin-bottom: clamp(30px,4.5vh,48px); }
#story .story-body p { font-family: var(--body) !important; font-size: clamp(14px,1.25vw,17px) !important; line-height: 1.95; letter-spacing: 0.02em; color: rgba(243,234,216,0.78); margin-bottom: 26px; }
#story .story-body p strong { color: var(--cream); letter-spacing: 0.14em; font-weight: 600; }
#story .story-body p em { color: var(--cream); font-style: italic; }
/* ---- VIDEOS ---- */
#videos .elementor-inner-section > .elementor-container { max-width: 1500px; margin: 0 auto; }
#videos .yt-frame { border: 1px solid rgba(243,234,216,0.14); overflow: hidden; transition: border-color .4s, transform .5s cubic-bezier(.19,1,.22,1), box-shadow .5s; }
#videos .yt-frame:hover { border-color: var(--pink); transform: translateY(-6px); box-shadow: 0 30px 70px rgba(232,17,45,0.16); }
#videos .yt-cap { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding-top: 18px; }
#videos .yt-tag { font-size: 10px; letter-spacing: 0.4em; font-weight: 600; color: var(--cream-dim); }
#videos .yt-title { font-family: var(--display); font-size: clamp(1.3rem,2vw,1.9rem); letter-spacing: 0.05em; color: var(--cream); }

/* MUSIC: separation between cover and info columns + 2-line titles */
#music .single-title .elementor-heading-title { line-height: 0.9 !important; }
@media (max-width: 1000px) { #music .single > .elementor-container { column-gap: 0; } }
