:root {
  --butter: #FFF1C4;
  --butter-2: #FFF9E6;
  --cream: #FFFBEE;
  --ink: #1F1330;
  --ink-2: #2C1D44;
  --ink-soft: #5A4A6E;
  --orange: #F7941D;
  --coral: #EE5A45;
  --pink: #E6197A;
  --lime: #9CC40F;
  --blue: #3B6CE0;
  --sky: #29C3F2;
  --grad-brand: linear-gradient(120deg, #F9A51B 0%, #F27A2A 45%, #EA5046 100%);
  --grad-rainbow: linear-gradient(90deg, var(--lime), var(--sky), var(--blue), var(--pink), var(--orange));
  --radius: 22px;
  --shadow: 0 1px 0 rgba(31,19,48,.06), 0 18px 40px -18px rgba(31,19,48,.35);
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --ease: cubic-bezier(.2,.8,.2,1);
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--butter);
  color: var(--ink);
  font: 400 1.0625rem/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1,h2,h3 { font-family: var(--font-display); line-height: 1.02; letter-spacing: -.025em; margin: 0; }
h2 { font-size: clamp(2.1rem, 4.8vw, 3.6rem); font-weight: 800; }
h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -.015em; }
p { margin: 0; }

.wrap { width: min(1180px, 100% - 32px); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; border-radius: 6px; }

.eyebrow {
  font: 700 .78rem/1 var(--font-body);
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--coral);
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--grad-rainbow); }

/* Buttons */
.btn {
  --h: 54px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: var(--h); padding: 0 26px; border-radius: 999px;
  font: 700 1rem/1 var(--font-body); text-decoration: none; white-space: nowrap;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.btn svg { width: 22px; height: 22px; fill: currentColor; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--sm { --h: 44px; padding: 0 18px; font-size: .92rem; }
.btn--sm svg { width: 19px; height: 19px; }
.btn--brand { background: var(--grad-brand) border-box; border: 0; color: #fff; box-shadow: 0 14px 30px -12px rgba(234,80,70,.7); }
.btn--brand:hover { box-shadow: 0 20px 36px -12px rgba(234,80,70,.8); }
.btn--ink { background: var(--ink); color: var(--butter); }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--butter); }
.btn--light { background: #fff; color: var(--ink); box-shadow: 0 14px 30px -14px rgba(0,0,0,.5); }
.btn--light svg { fill: #FF0033; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.is-scrolled { background: rgba(255,241,196,.85); backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3); box-shadow: 0 1px 0 rgba(31,19,48,.08); }
.nav__inner { display: flex; align-items: center; gap: 24px; height: 76px; }
.nav__brand img { height: 40px; width: auto; }
.nav nav { margin-left: auto; }
.nav__links { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav__links a { display: block; padding: 10px 14px; border-radius: 999px; font-weight: 500; text-decoration: none; transition: background .2s; }
.nav__links a:hover { background: rgba(31,19,48,.07); }

/* Hero */
.hero { position: relative; padding: clamp(28px, 6vw, 72px) 0 0; isolation: isolate; overflow-x: clip; }
.hero__blobs { position: absolute; inset: -80px 0 0; z-index: -1; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; animation: float 18s ease-in-out infinite; }
.blob--a { width: 460px; height: 460px; background: #FFB347; right: -80px; top: 0; }
.blob--b { width: 360px; height: 360px; background: #FF7A8A; right: 22%; top: 280px; animation-delay: -6s; opacity: .35; }
.blob--c { width: 320px; height: 320px; background: #B6E35A; left: -120px; top: 120px; animation-delay: -12s; opacity: .35; }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-40px) scale(1.08); } }

.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; padding-bottom: clamp(48px, 8vw, 96px); }
.hero__title { font-size: clamp(2.5rem, 6.2vw, 5.4rem); font-weight: 800; letter-spacing: -.04em; margin-bottom: 26px; }
.rotator { display: inline-block; position: relative; }
.rotator__word {
  display: inline-block; white-space: nowrap;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-bottom: .08em;
  transition: opacity .35s var(--ease), transform .35s var(--ease), filter .35s;
}
.rotator__word.is-out { opacity: 0; transform: translateY(.3em); filter: blur(6px); }
.hero__lede { font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 36ch; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__art { position: relative; display: grid; place-items: center; }
.disc {
  position: relative; width: min(420px, 80vw); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #2a1c3e 0 30%, #1a1027 31% 100%);
  box-shadow: 0 40px 80px -30px rgba(31,19,48,.65), inset 0 0 0 10px #140b20;
  display: grid; place-items: center;
  animation: spin 14s linear infinite;
}
.disc__grooves {
  position: absolute; inset: 0; border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(255,255,255,.05) 0 1px, transparent 1px 5px),
    conic-gradient(from 30deg, transparent 0 20%, rgba(255,255,255,.14) 25%, transparent 32% 70%, rgba(255,255,255,.1) 75%, transparent 82%);
}
.disc__logo { position: relative; width: 44%; filter: drop-shadow(0 6px 14px rgba(0,0,0,.4)); }
@keyframes spin { to { transform: rotate(360deg); } }

.eq { position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); display: flex; align-items: flex-end; gap: 6px; height: 72px; padding: 12px 18px; border-radius: 18px; background: rgba(255,251,238,.75); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: var(--shadow); }
.eq i { width: 7px; border-radius: 4px; height: 20%; background: var(--grad-brand); animation: eq 1.1s ease-in-out infinite alternate; }
.eq i:nth-child(3n+1) { background: linear-gradient(var(--lime), var(--sky)); }
.eq i:nth-child(3n+2) { background: linear-gradient(var(--pink), var(--orange)); }
.eq i:nth-child(1){animation-delay:-.2s}.eq i:nth-child(2){animation-delay:-.7s}.eq i:nth-child(3){animation-delay:-.4s}.eq i:nth-child(4){animation-delay:-1s}.eq i:nth-child(5){animation-delay:-.1s}.eq i:nth-child(6){animation-delay:-.55s}.eq i:nth-child(7){animation-delay:-.85s}.eq i:nth-child(8){animation-delay:-.3s}.eq i:nth-child(9){animation-delay:-.65s}.eq i:nth-child(10){animation-delay:-.05s}.eq i:nth-child(11){animation-delay:-.9s}.eq i:nth-child(12){animation-delay:-.45s}
@keyframes eq { 0% { height: 14%; } 100% { height: 100%; } }

.marquee { background: var(--ink); color: var(--butter); overflow: hidden; padding: 18px 0; transform: rotate(-1.2deg); margin: 0 -20px; }
.marquee__track { display: flex; width: max-content; animation: marquee 60s linear infinite; will-change: transform; }
.marquee__group { display: flex; align-items: center; gap: 28px; padding-right: 28px; flex: none; }
.marquee span { font: 800 clamp(1.4rem, 3vw, 2.2rem)/1 var(--font-display); letter-spacing: -.02em; text-transform: uppercase; }
.marquee b { color: var(--orange); font-size: 1.2rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Sections */
.section { padding: clamp(80px, 11vw, 140px) 0; }
.section__head { margin-bottom: clamp(36px, 5vw, 60px); max-width: 720px; }
.section__head--row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; max-width: none; }
.link-arrow { font-weight: 700; text-decoration: none; display: inline-flex; gap: 8px; padding: 10px 0; border-bottom: 2px solid currentColor; }
.link-arrow span { transition: transform .25s var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }

/* Moods */
.moods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.mood {
  position: relative; overflow: hidden;
  background: var(--cream); border-radius: var(--radius); padding: 28px 24px 26px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 12px; min-height: 300px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.mood::after { content: ""; position: absolute; inset: auto -40% -60% auto; width: 220px; height: 220px; border-radius: 50%; background: var(--c); opacity: .14; transition: transform .5s var(--ease), opacity .5s; }
.mood:hover { transform: translateY(-6px) rotate(-.4deg); box-shadow: 0 28px 50px -22px rgba(31,19,48,.45); }
.mood:hover::after { transform: scale(1.5); opacity: .22; }
.mood p { color: var(--ink-soft); font-size: .98rem; }
.mood__icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--c); margin-bottom: 18px; }
.mood__icon svg { width: 28px; height: 28px; fill: #fff; stroke: #fff; }
.mood__tag { margin-top: auto; font: 700 .75rem/1 var(--font-body); letter-spacing: .08em; text-transform: uppercase; color: var(--ink); opacity: .6; }
.mood--energy { --c: linear-gradient(135deg, var(--coral), var(--pink)); }
.mood--pop { --c: linear-gradient(135deg, #FFC21A, var(--orange)); }
.mood--calm { --c: linear-gradient(135deg, var(--sky), var(--blue)); }
.mood--soul { --c: linear-gradient(135deg, var(--lime), #2FB36B); }

/* Releases (dark) */
.section--ink { background: var(--ink); color: var(--cream); border-radius: 40px 40px 0 0; position: relative; }
.section--ink .eyebrow { color: var(--orange); }
.player { display: grid; grid-template-columns: 1.6fr 1fr; gap: 36px; align-items: end; margin-bottom: 48px; }
.player__poster, .player iframe {
  position: relative; width: 100%; aspect-ratio: 16/9; border: 0; padding: 0; border-radius: var(--radius);
  overflow: hidden; background: var(--ink-2); cursor: pointer; display: block;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.8);
}
.player__poster img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .4s; }
.player__poster:hover img { transform: scale(1.03); filter: brightness(.85); }
.player__play { position: absolute; inset: 0; margin: auto; width: 88px; height: 88px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; box-shadow: 0 0 0 10px rgba(255,255,255,.18); transition: transform .3s var(--ease), box-shadow .3s; }
.player__poster:hover .player__play { transform: scale(1.08); box-shadow: 0 0 0 16px rgba(255,255,255,.15); }
.player__play svg { width: 38px; fill: #fff; margin-left: 5px; }
.player__date { color: var(--orange); font-weight: 700; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.player__title { font-size: clamp(1.5rem, 2.6vw, 2.2rem); font-weight: 800; line-height: 1.1; }

.grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card { background: none; border: 0; padding: 0; text-align: left; color: inherit; font: inherit; cursor: pointer; width: 100%; display: block; }
.card__thumb { position: relative; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; background: var(--ink-2); margin-bottom: 12px; }
.card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card__thumb::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 0 var(--orange); transition: box-shadow .25s; }
.card:hover .card__thumb img { transform: scale(1.06); }
.card:hover .card__thumb::after, .card.is-active .card__thumb::after { box-shadow: inset 0 0 0 3px var(--orange); }
.card__title { font-weight: 500; font-size: .96rem; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card__date { font-size: .8rem; opacity: .55; margin-top: 4px; }
.skeleton { aspect-ratio: 16/9; border-radius: 16px; background: linear-gradient(90deg, var(--ink-2) 0, #3a2a55 50%, var(--ink-2) 100%); background-size: 200% 100%; animation: shimmer 1.4s linear infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* About */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.about__logo { background: var(--butter-2); border-radius: 32px; padding: clamp(40px, 7vw, 80px); box-shadow: var(--shadow); position: relative; }
.about__logo::before { content: ""; position: absolute; inset: 14px; border-radius: 22px; border: 2px dashed rgba(31,19,48,.12); }
.about__copy h2 { margin-bottom: 24px; }
.about__copy p { color: var(--ink-soft); font-size: 1.1rem; }
.about__copy p + p { margin-top: 16px; }

/* CTA */
.cta { padding: 0 0 clamp(80px, 10vw, 120px); }
.cta__inner {
  background: var(--grad-brand); color: #fff; border-radius: 36px;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 6vw, 80px);
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(234,80,70,.9);
}
.cta__inner::before, .cta__inner::after { content: ""; position: absolute; border-radius: 50%; border: 2px solid rgba(255,255,255,.25); }
.cta__inner::before { width: 420px; height: 420px; left: -140px; top: -200px; }
.cta__inner::after { width: 300px; height: 300px; right: -90px; bottom: -150px; border-width: 40px; border-color: rgba(255,255,255,.1); }
.cta h2 { font-size: clamp(2.2rem, 5.6vw, 4.2rem); margin-bottom: 14px; position: relative; }
.cta p { font-size: 1.15rem; opacity: .92; margin-bottom: 32px; position: relative; }
.cta .btn { position: relative; }

/* Footer */
.footer { background: var(--ink); color: var(--cream); padding: 36px 0; }
.footer__inner { display: flex; align-items: center; gap: 24px; justify-content: space-between; flex-wrap: wrap; }
.footer__logo { height: 64px; width: auto; }
.footer p { opacity: .7; font-size: .92rem; }
.footer a { text-decoration: none; }
.footer__yt { font-weight: 700; color: var(--orange); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1000px) {
  .moods { grid-template-columns: repeat(2, 1fr); }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .player { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; margin-bottom: 24px; }
  .disc { width: min(240px, 62vw); box-shadow: 0 24px 40px -24px rgba(31,19,48,.55), inset 0 0 0 8px #140b20; }
  .hero__blobs { inset: -40px 0 auto; height: 560px; }
  .blob { filter: blur(50px); }
  .blob--a { width: 240px; height: 240px; right: -40px; top: 40px; opacity: .45; }
  .blob--b { width: 180px; height: 180px; right: auto; left: 30%; top: 150px; opacity: .25; }
  .blob--c { width: 180px; height: 180px; left: -80px; top: 60px; opacity: .3; }
  .eq { height: 56px; padding: 10px 14px; }
  .about { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav .btn { margin-left: auto; }
}
@media (max-width: 560px) {
  .moods, .grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .mood { min-height: 0; padding: 22px 18px; }
  .mood h3 { font-size: 1.15rem; }
  .mood p { font-size: .9rem; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
  .nav__brand img { height: 32px; }
  .hero__cta .btn { width: 100%; }
  .footer__inner { flex-direction: column; text-align: center; }
  .section--ink { border-radius: 28px 28px 0 0; }
}
@media (max-width: 380px) {
  .moods { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .eq i { height: 60%; }
}

/* Parent organisation */
.about__org {
  margin-top: 32px; display: inline-flex; flex-direction: column; gap: 4px;
  padding: 16px 22px 16px 20px; border-radius: 16px;
  background: var(--cream); box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}
.about__org-label { font: 700 .72rem/1 var(--font-body); letter-spacing: .14em; text-transform: uppercase; color: var(--coral); }
.about__org-name { font: 800 1.35rem/1.2 var(--font-display); letter-spacing: -.015em; color: var(--ink); }
