/* ================================================
   BENJAMIN ET SA GUITARE — style.css v2
   World-class redesign · GSAP + Lenis + ScrollTrigger
   ================================================ */

/* --- TOKENS ------------------------------------ */
:root {
  --yellow:       #F3C940;
  --yellow-deep:  #E3B021;
  --yellow-pale:  #FFF4C7;
  --green:        #1C5B54;
  --green-deep:   #0F3D38;
  --red:          #C8402F;
  --red-deep:     #9A2C1F;
  --cream:        #FFF8E3;
  --ink:          #1A1A1A;
  --ink-soft:     #3A3530;
  --muted:        #7A6E64;
  --white:        #FFFFFF;

  --font-display: 'Caveat Brush', cursive;
  --font-slab:    'Alfa Slab One', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-hand:    'Kalam', cursive;

  --nav-h:    68px;
  --container: min(1360px, 100% - 48px);

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:   cubic-bezier(0.4, 0, 0.2, 1);

  --z-loader:  100;
  --z-cursor:  90;
  --z-nav:     80;
  --z-modal:   70;
  --z-player:  60;
}

/* --- RESET ------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  cursor: none;
}
body.no-scroll { overflow: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: none; font-family: inherit; }
::selection { background: rgba(243,201,64,.35); }
::-webkit-scrollbar { display: none; }

/* --- SKIP LINK --------------------------------- */
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 999;
  background: var(--red); color: #fff;
  padding: 8px 16px; border-radius: 4px;
  transform: translateY(-200%);
  transition: transform .2s;
  font-family: var(--font-body); font-size: 14px;
}
.skip-link:focus { transform: translateY(0); }

/* --- TYPOGRAPHY -------------------------------- */
.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--muted);
}
.label--light { color: rgba(255,255,255,.55); }
.label--yellow { color: var(--green); }

.t-display {
  font-family: var(--font-slab);
  text-transform: uppercase;
  line-height: .93;
  letter-spacing: -.01em;
}
.t-cursive { font-family: var(--font-display); line-height: 1.1; }

/* --- CURSOR ------------------------------------ */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 2px solid var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease-out),
              height .35s var(--ease-out),
              background .35s var(--ease-out),
              border-color .35s var(--ease-out),
              opacity .25s;
  will-change: transform;
}
.cursor--hovering {
  width: 64px; height: 64px;
  background: rgba(200,64,47,.12);
}
.cursor--hidden { opacity: 0; }
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: calc(var(--z-cursor) + 1);
  transform: translate(-50%, -50%);
  will-change: transform;
}

/* --- LOADER ------------------------------------ */
.loader {
  position: fixed; inset: 0;
  z-index: var(--z-loader);
  background: var(--green-deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 48px;
}
.loader__logo {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 88px);
  color: var(--yellow);
  line-height: 1;
  text-align: center;
}
.loader__logo em { color: var(--white); font-style: normal; }
.loader__bar-wrap {
  width: clamp(200px, 40vw, 360px);
  height: 2px;
  background: rgba(255,255,255,.15);
  border-radius: 999px;
  overflow: hidden;
}
.loader__bar {
  height: 100%;
  width: 0%;
  background: var(--yellow);
  border-radius: 999px;
  transition: width .05s linear;
}
.loader__num {
  position: absolute; bottom: 40px;
  font-family: var(--font-slab);
  font-size: 13px; color: rgba(255,255,255,.3);
  letter-spacing: .1em;
}

/* --- NAV --------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  transition: background .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.nav__inner {
  width: var(--container);
  margin: 0 auto;
  height: 100%;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex; align-items: center;
  height: 44px;
  flex-shrink: 0;
}
.nav__logo img { height: 100%; width: auto; object-fit: contain; }
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
  transition: color .35s;
  white-space: nowrap;
}
.nav__logo-text em { color: var(--yellow); font-style: normal; }
.nav__links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav__link {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em;
  color: rgba(255,255,255,.75);
  padding: 8px 12px;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav__cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 999px !important;
  transition: background .2s, transform .2s !important;
}
.nav__cta:hover { background: var(--red-deep) !important; transform: translateY(-1px) !important; }

.nav--scrolled {
  background: var(--yellow);
  box-shadow: 0 2px 24px rgba(0,0,0,.12);
}
.nav--scrolled .nav__link { color: var(--ink-soft); }
.nav--scrolled .nav__link:hover { color: var(--ink); background: rgba(0,0,0,.06); }
.nav--scrolled .nav__logo-text { color: var(--green-deep); }
.nav--scrolled .nav__logo-text em { color: var(--red); }
.nav--scrolled .nav__cta { color: var(--white) !important; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 32px; padding: 4px;
  cursor: none;
}
.nav__burger span {
  display: block; height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform .35s var(--ease-out), opacity .25s, background .35s;
}
.nav--scrolled .nav__burger span { background: var(--ink); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav__overlay {
  position: fixed; inset: 0;
  background: var(--green-deep);
  z-index: calc(var(--z-nav) - 1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform .55s var(--ease-out);
}
.nav__overlay.open { transform: translateX(0); }
.nav__overlay .nav__link {
  font-size: 28px; font-weight: 700;
  color: var(--white); padding: 16px 32px;
  text-transform: uppercase;
}
.nav__overlay .nav__cta {
  margin-top: 16px;
  font-size: 18px !important;
  padding: 16px 40px !important;
}

/* --- BUTTONS ----------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  border: 2px solid transparent;
  cursor: none;
  transition: transform .25s var(--ease-out),
              box-shadow .25s var(--ease-out),
              background .2s, border-color .2s, color .2s;
  white-space: nowrap;
  user-select: none;
}
.btn:hover { transform: translateY(-3px); }
.btn--red {
  background: var(--red); color: #fff;
  box-shadow: 0 4px 20px rgba(200,64,47,.35);
}
.btn--red:hover { background: var(--red-deep); box-shadow: 0 8px 32px rgba(200,64,47,.45); }
.btn--yellow {
  background: var(--yellow); color: var(--green-deep);
  border-color: var(--yellow-deep);
}
.btn--yellow:hover { background: var(--yellow-deep); }
.btn--ghost {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--green-ghost {
  background: transparent; color: var(--green);
  border-color: var(--green);
}
.btn--green-ghost:hover { background: var(--green); color: #fff; }
.btn--lg { padding: 18px 36px; font-size: 16px; }

/* --- MARQUEE ----------------------------------- */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee__track {
  display: flex; align-items: center;
  gap: 0;
  will-change: transform;
}
.marquee__item {
  flex-shrink: 0;
  display: flex; align-items: center; gap: 24px;
  padding: 0 24px;
  font-family: var(--font-slab);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.marquee__sep { color: var(--red); font-size: 18px; }

/* --- HERO -------------------------------------- */
.hero {
  position: relative;
  height: 100dvh; min-height: 600px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('assets/hero-concert.webp') center / cover no-repeat;
  transform-origin: center;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    165deg,
    rgba(15,61,56,.78) 0%,
    rgba(15,61,56,.55) 40%,
    rgba(15,61,56,.82) 100%
  );
}
.hero__pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='%23F3C940' opacity='.09'%3E%3Cpath d='M28 18v32c-1.5-.8-3.2-1.3-5-1.3C19 48.7 16 51.7 16 56s3 7 7 7 7-3 7-7V18h-2z'/%3E%3Cpath d='M72 30v28c-1.5-.8-3.2-1.3-5-1.3-4 0-7 3-7 7s3 7 7 7 7-3 7-7V30H72z'/%3E%3Cpath d='M85 26v32h2V26h-2zm2 0h10v2H87v-2z'/%3E%3Ccircle cx='12' cy='95' r='3'/%3E%3Ccircle cx='55' cy='8' r='2.5'/%3E%3Ccircle cx='105' cy='85' r='2'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__canvas {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .6;
  will-change: contents;
}
.hero__content {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 0 max(24px, calc((100% - 1360px) / 2 + 24px));
  padding-top: calc(var(--nav-h) + 60px);
  max-width: 1100px;
}
.hero__eyebrow {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--yellow);
  display: block;
  margin-bottom: 20px;
  opacity: 0; /* animated in by GSAP */
}
.hero__title {
  font-family: var(--font-slab);
  font-size: clamp(52px, 7.9vw, 112px);
  text-transform: uppercase;
  line-height: .88;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__title .char { display: inline-block; will-change: transform, opacity; }
.hero__title .word { display: inline-block; white-space: nowrap; }
.hero__title-line { display: block; white-space: nowrap; }
.hero__title-line--accent { color: var(--yellow); }
.hero__subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,.75);
  max-width: none;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0;
}
.hero__cta {
  display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px;
  opacity: 0;
}
.hero__proof {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: auto;
}
.hero__proof-item {
  flex: 1; min-width: 120px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
  opacity: 0;
}
.hero__proof-item:last-child { border-right: none; }
.hero__proof-item b {
  font-family: var(--font-slab);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--yellow);
  display: block;
  line-height: 1;
}
.hero__proof-item span {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}
.hero__scroll {
  position: absolute; right: 40px; bottom: 100px;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  z-index: 2;
  opacity: 0;
}
.hero__scroll span {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: rgba(255,255,255,.4);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), rgba(255,255,255,.08));
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute; top: -100%;
  width: 100%; height: 100%;
  background: var(--yellow);
  animation: scroll-slide 1.8s var(--ease-io) infinite;
}
@keyframes scroll-slide {
  to { top: 100%; }
}

/* Hero marquee bar */
.hero__marquee-bar {
  position: relative; z-index: 2;
  background: var(--yellow);
  padding: 12px 0;
}
.hero__marquee-bar .marquee__item {
  font-family: var(--font-slab);
  font-size: 13px;
  color: var(--green-deep);
}

/* --- STORY / ABOUT ----------------------------- */
.story {
  position: relative;
  background: var(--cream);
}
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
/* LEFT — chapters scroll naturally */
.story__chapters {
  padding: 80px max(48px, calc((100vw - 1360px) / 2 + 24px)) 80px max(48px, calc((100vw - 1360px) / 2 + 24px));
}
.story__chapter {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 48px 0;
}
.story__chapter + .story__chapter {
  border-top: 1px solid rgba(0,0,0,.06);
}
.story__label {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}
.story__chapter-title {
  font-family: var(--font-slab);
  font-size: clamp(36px, 4vw, 56px);
  text-transform: uppercase;
  line-height: .95;
  margin-bottom: 24px;
  color: var(--ink);
}
.story__chapter-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 480px;
}
.story__chapter-text strong { color: var(--green); }
.story__stats {
  display: flex; gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.story__stat { display: flex; flex-direction: column; gap: 4px; }
.story__stat-num {
  font-family: var(--font-slab);
  font-size: 48px;
  color: var(--red);
  line-height: 1;
}
.story__stat-label {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted);
}

/* Story visual side */
.story__image-wrap {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 48px;
}
.story__image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.story__image-behind {
  position: absolute;
  inset: 0;
  background: var(--green);
  border-radius: 20px;
  transform: translate(18px, 18px);
}
.story__image-photo {
  position: relative; z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.story__image-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.story__image-photo:hover img { transform: scale(1.04); }

/* --- SECTION SHARED ---------------------------- */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
  contain: layout;
}
.section--yellow { background: var(--yellow); }
.section--green { background: var(--green-deep); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

.section__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section__title {
  font-family: var(--font-slab);
  font-size: clamp(40px, 5.5vw, 72px);
  text-transform: uppercase;
  line-height: .92;
  margin: 12px 0 16px;
}
.section__title--light { color: var(--white); }
.section__title--yellow { color: var(--yellow); }
.section__sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}
.section__sub--light { color: rgba(255,255,255,.65); }

.container {
  width: var(--container);
  margin: 0 auto;
}

/* Pattern overlay on yellow sections */
.section--yellow::before,
.section--yellow .pattern-overlay {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cg fill='%23E3B021' opacity='.4'%3E%3Cpath d='M22 14v26c-1.2-.6-2.6-1-4-1-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6V14h-2z'/%3E%3Cpath d='M60 24v22c-1.2-.6-2.6-1-4-1-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6V24H60z'/%3E%3Ccircle cx='80' cy='14' r='2.5'/%3E%3Ccircle cx='8' cy='80' r='2'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.section--yellow { position: relative; }
.section--yellow .container { position: relative; z-index: 1; }

/* --- SERVICES ---------------------------------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transform-style: preserve-3d;
  transition: box-shadow .35s var(--ease-out);
  will-change: transform;
}
.service-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,.14); }
.service-card__top {
  padding: 40px 36px 32px;
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}
.service-card__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 0;
}
.service-card__icon--concerts { background: var(--green); }
.service-card__icon--ateliers { background: var(--red); }
.service-card__icon--anniv    { background: var(--green-deep); }
.service-card__icon svg { width: 28px; height: 28px; }
.service-card__body { padding: 28px 36px 36px; }
.service-card__title {
  font-family: var(--font-slab);
  font-size: 22px;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 12px;
  line-height: 1.1;
}
.service-card__meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.service-card__pill {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--yellow-pale);
  color: var(--green-deep);
}
.service-card__text {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 24px;
}
.service-card__link {
  font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--red);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.service-card__link:hover { gap: 10px; }

/* --- ALBUM ------------------------------------- */
.album { position: relative; }
.album__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.album__visual { position: relative; }
.album__vinyl-wrap {
  position: relative;
  width: 100%; max-width: 420px;
  margin: 0 auto;
}
.album__vinyl-behind {
  position: absolute; inset: 0;
  background: var(--red);
  border-radius: 24px;
  transform: translate(20px, 20px);
  opacity: .6;
}
.album__cover {
  position: relative; z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
}
.album__cover-placeholder {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
  color: var(--green-deep);
  opacity: .5;
}
.album__cover-placeholder svg { width: 64px; height: 64px; }
.album__cover-placeholder span { font-family: var(--font-display); font-size: 22px; }
.album__vinyl-disc {
  position: absolute;
  width: 62%; height: 62%;
  right: -20%; top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    #222 0%, #333 30%, #111 31%,
    #1a1a1a 40%, #292929 41%,
    #111 55%, #1a1a1a 56%,
    #222 100%
  );
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}
.album__vinyl-disc::after {
  content: '';
  position: absolute; inset: 42%;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255,255,255,.1);
}
.album__vinyl-disc.spinning {
  animation: spin-vinyl 3s linear infinite;
}
@keyframes spin-vinyl {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* Album content */
.album__label { margin-bottom: 12px; }
.album__title { margin-bottom: 20px; }
.album__desc {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 28px;
}
.album__genres {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 32px;
}
.genre-pill {
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 18px;
  border: 2px solid rgba(243,201,64,.4);
  color: var(--yellow);
  transition: background .2s, border-color .2s;
  cursor: none;
}
.genre-pill:hover, .genre-pill.active {
  background: rgba(243,201,64,.15);
  border-color: var(--yellow);
}

/* Player */
.album__player {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 32px;
}
.player__track-info {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.player__track-name {
  font-family: var(--font-slab);
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase;
}
.player__track-time { font-size: 12px; color: rgba(255,255,255,.4); }
.player__waveform {
  display: flex; align-items: flex-end;
  gap: 3px;
  height: 48px;
  margin-bottom: 20px;
}
.player__bar {
  flex: 1;
  background: rgba(243,201,64,.3);
  border-radius: 2px;
  transition: background .2s;
  animation: wave-idle 2s ease-in-out infinite alternate;
}
.player__bar.active { background: var(--yellow); }
@keyframes wave-idle {
  from { transform: scaleY(1); }
  to   { transform: scaleY(.35); }
}
.player__bar:nth-child(odd)  { animation-duration: 1.8s; animation-delay: -.3s; }
.player__bar:nth-child(3n)   { animation-duration: 2.2s; animation-delay: -.6s; }
.player__bar:nth-child(4n)   { animation-duration: 1.6s; animation-delay: -.9s; }
.player__bar:nth-child(5n)   { animation-duration: 2.4s; animation-delay: -1.2s; }
.player--playing .player__bar { animation-name: wave-play; }
@keyframes wave-play {
  from { transform: scaleY(1); }
  to   { transform: scaleY(.2); }
}
.player__controls {
  display: flex; align-items: center; gap: 16px;
}
.player__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, background .2s;
  cursor: none;
}
.player__btn:hover { transform: scale(1.1); background: var(--yellow-deep); }
.player__btn svg { width: 20px; height: 20px; }
.player__tracks { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.player__track-item {
  display: flex; justify-content: space-between;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: none;
  transition: background .15s;
}
.player__track-item:hover { background: rgba(255,255,255,.06); }
.player__track-item.playing { background: rgba(243,201,64,.12); }
.player__track-item span {
  font-size: 13px; color: rgba(255,255,255,.6);
}
.player__track-item span:first-child { color: rgba(255,255,255,.85); font-weight: 600; }

.album__stats {
  display: flex; gap: 24px; flex-wrap: wrap;
}
.album__stat {
  flex: 1; min-width: 120px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}
.album__stat b {
  font-family: var(--font-slab);
  font-size: 32px;
  color: var(--yellow);
  display: block;
}
.album__stat span {
  font-size: 12px; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .07em;
}

/* --- HITS / YOUTUBE ---------------------------- */
.hits { background: var(--cream); }
.hits__marquee-wrap {
  overflow: hidden;
  cursor: none;
}
.hits__track {
  display: flex; gap: 20px;
  will-change: transform;
  padding: 20px 0;
}
.hit-card {
  flex-shrink: 0;
  width: 300px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  cursor: none;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  will-change: transform;
}
.hit-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 16px 48px rgba(0,0,0,.14); }
.hit-card__thumb {
  aspect-ratio: 16/9;
  background: var(--green);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hit-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.hit-card:hover .hit-card__thumb img { transform: scale(1.08); }
.hit-card__thumb-placeholder {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: rgba(255,255,255,.6);
}
.hit-card__thumb-placeholder svg { width: 40px; height: 40px; }
.hit-card__play {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}
.hit-card__play svg { width: 48px; height: 48px; color: #fff; }
.hit-card:hover .hit-card__play { opacity: 1; }
.hit-card__views {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,.7);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 8px; border-radius: 4px;
  letter-spacing: .04em;
}
.hit-card__info { padding: 16px 18px 20px; }
.hit-card__title {
  font-family: var(--font-slab);
  font-size: 15px;
  color: var(--green-deep);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 6px;
}
.hit-card__genre {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--red);
}
.hits__cta { text-align: center; margin-top: 48px; }

/* --- AGENDA ------------------------------------ */
.agenda { background: var(--yellow); position: relative; }
.agenda__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: start;
}
.agenda__featured {
  background: var(--green-deep);
  border-radius: 24px;
  overflow: hidden;
  position: sticky; top: calc(var(--nav-h) + 24px);
}
.agenda__featured-poster {
  aspect-ratio: 1;
  overflow: hidden;
}
.agenda__featured-poster img { width: 100%; height: 100%; object-fit: cover; }
.agenda__featured-info { padding: 28px 28px 32px; }
.agenda__featured-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 4px 12px; border-radius: 999px;
  margin-bottom: 12px;
}
.agenda__featured-title {
  font-family: var(--font-slab);
  font-size: 26px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.agenda__featured-date {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--yellow);
  margin-bottom: 16px;
}
.agenda__featured-text { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.6; }
.agenda__countdown {
  display: flex; gap: 16px;
  margin: 20px 0 24px;
}
.countdown-unit {
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  min-width: 60px;
}
.countdown-unit b {
  font-family: var(--font-slab);
  font-size: 28px;
  color: var(--yellow);
  display: block;
}
.countdown-unit span { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); }

.agenda__list { display: flex; flex-direction: column; gap: 16px; }
.event-card {
  background: var(--white);
  border-radius: 18px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 24px;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.event-card:hover { transform: translateX(6px); box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.event-card__date {
  text-align: center;
}
.event-card__day {
  font-family: var(--font-slab);
  font-size: 36px;
  color: var(--red);
  line-height: 1;
  display: block;
}
.event-card__month {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted);
}
.event-card__title {
  font-family: var(--font-slab);
  font-size: 18px;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.event-card__where {
  font-size: 13px;
  color: var(--muted);
  display: flex; align-items: center; gap: 4px;
}
.event-card__where svg { width: 12px; height: 12px; flex-shrink: 0; }

/* --- TESTIMONIALS ------------------------------ */
.testimonials { background: var(--cream); }
.testimonials__track-wrap {
  overflow: hidden;
  margin: 0 calc(-1 * max(24px, (100% - var(--container)) / 2 + 24px));
  padding: 0 max(24px, calc((100% - var(--container)) / 2 + 24px));
}
.testimonials__track {
  display: flex; gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.testimonials__track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex-shrink: 0;
  width: clamp(280px, 35vw, 420px);
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  scroll-snap-align: start;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.testimonial-card__stars {
  color: var(--yellow-deep);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card__text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card__author { font-weight: 700; font-size: 14px; color: var(--green); }
.testimonial-card__meta { font-size: 12px; color: var(--muted); }

/* --- CONTACT ----------------------------------- */
.contact { background: var(--green-deep); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact__info-title {
  font-family: var(--font-slab);
  font-size: clamp(40px, 5vw, 64px);
  text-transform: uppercase;
  color: var(--white);
  line-height: .92;
  margin-bottom: 24px;
}
.contact__info-title em { font-style: normal; color: var(--yellow); }
.contact__info-text { font-size: 17px; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 40px; }
.contact__details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.contact__detail {
  display: flex; align-items: center; gap: 14px;
  font-size: 16px; color: rgba(255,255,255,.8);
}
.contact__detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
}
.contact__detail-icon svg { width: 20px; height: 20px; }
.contact__socials { display: flex; gap: 12px; }
.contact__social {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s, transform .2s;
  cursor: none;
}
.contact__social:hover { background: var(--yellow); color: var(--green-deep); transform: translateY(-3px); }
.contact__social svg { width: 20px; height: 20px; }

/* Form */
.contact__form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 40px;
}
.form__group { position: relative; margin-bottom: 24px; }
.form__label {
  position: absolute; left: 20px; top: 18px;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em;
  color: rgba(255,255,255,.4);
  transition: top .2s var(--ease-out), font-size .2s, color .2s;
  pointer-events: none;
}
.form__input {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 2px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 28px 20px 12px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  outline: none;
  transition: border-color .2s, background .2s;
  resize: none;
}
.form__input::placeholder { color: transparent; }
.form__input:focus { border-color: var(--yellow); background: rgba(255,255,255,.1); }
.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label {
  top: 8px; font-size: 10px; color: var(--yellow);
}
.form__select {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 2px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 20px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
  cursor: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form__select:focus { border-color: var(--yellow); }
.form__select option { background: var(--green-deep); color: var(--white); }
.form__submit {
  width: 100%;
  padding: 18px;
  background: var(--yellow);
  color: var(--green-deep);
  font-family: var(--font-body);
  font-size: 16px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  border-radius: 14px;
  cursor: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  border: none;
  position: relative; overflow: hidden;
}
.form__submit:hover { background: var(--yellow-deep); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(243,201,64,.35); }
.form__submit:active { transform: translateY(0); }
.form__success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 28px;
}

/* --- MINI PLAYER ------------------------------ */
.mini-player {
  position: fixed;
  bottom: -100px;
  left: 50%; transform: translateX(-50%);
  z-index: var(--z-player);
  background: var(--green-deep);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 12px 20px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 8px 48px rgba(0,0,0,.35);
  transition: bottom .5s var(--ease-out);
  white-space: nowrap;
}
.mini-player.visible { bottom: 24px; }
.mini-player__btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  flex-shrink: 0;
}
.mini-player__btn svg { width: 16px; height: 16px; }
.mini-player__info { display: flex; flex-direction: column; gap: 2px; }
.mini-player__name { font-size: 13px; font-weight: 700; color: var(--white); }
.mini-player__genre { font-size: 11px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .06em; }
.mini-player__bars {
  display: flex; gap: 2px; align-items: flex-end; height: 20px;
}
.mini-player__bar {
  width: 3px; border-radius: 1px;
  background: var(--yellow);
  animation: mini-wave 1.2s ease-in-out infinite alternate;
}
.mini-player__bar:nth-child(2) { animation-delay: -.3s; }
.mini-player__bar:nth-child(3) { animation-delay: -.6s; }
@keyframes mini-wave {
  from { height: 4px; }
  to   { height: 18px; }
}
.mini-player__close {
  color: rgba(255,255,255,.35);
  padding: 4px;
  cursor: none;
  transition: color .2s;
  flex-shrink: 0;
}
.mini-player__close:hover { color: var(--white); }
.mini-player__close svg { width: 16px; height: 16px; }

/* --- MODAL ------------------------------------- */
.modal {
  position: fixed; inset: 0;
  z-index: var(--z-modal);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.modal.open { opacity: 1; pointer-events: all; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(15,61,56,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.modal__box {
  position: relative; z-index: 1;
  width: 100%; max-width: 900px;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  transform: scale(.9);
  transition: transform .45s var(--ease-out);
}
.modal.open .modal__box { transform: scale(1); }
.modal__box iframe { width: 100%; height: 100%; border: none; }
.modal__close {
  position: absolute; top: -20px; right: -20px;
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: background .2s, transform .2s;
  z-index: 2;
  color: var(--ink);
}
.modal__close:hover { background: var(--red); color: #fff; transform: scale(1.1); }
.modal__close svg { width: 20px; height: 20px; }

/* --- FOOTER ------------------------------------ */
.footer {
  background: var(--green-deep);
  padding: 80px 0 40px;
  position: relative; overflow: hidden;
}
.footer__wordmark {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 160px);
  color: rgba(255,255,255,.06);
  white-space: nowrap;
  text-align: center;
  letter-spacing: -.02em;
  line-height: .9;
  margin-bottom: 60px;
  pointer-events: none;
  user-select: none;
}
.footer__wordmark em { color: rgba(243,201,64,.1); font-style: normal; }
.footer__grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-logo img { height: 48px; width: auto; margin-bottom: 16px; }
.footer__tagline { font-family: var(--font-display); font-size: 20px; color: rgba(255,255,255,.45); }
.footer__heading {
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__link {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer__link:hover { color: var(--yellow); }
.footer__bottom {
  width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.3);
}

/* --- REVEAL UTILITIES -------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left  { transform: translateX(-48px); }
.reveal--right { transform: translateX(48px); }
.reveal--left.revealed, .reveal--right.revealed { transform: translateX(0); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
.reveal[data-delay="5"] { transition-delay: .5s; }

/* --- CONFETTI CANVAS --------------------------- */
#confetti-canvas {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  :root { --container: min(1200px, 100% - 32px); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .album__grid { grid-template-columns: 1fr; gap: 48px; }
  .album__vinyl-wrap { max-width: 320px; }
  .album__vinyl-disc { right: -12%; }
  .agenda__grid { grid-template-columns: 1fr; }
  .agenda__featured { position: static; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .story__inner { grid-template-columns: 1fr; }
  .story__image-wrap { display: none; }
  .story__chapters { padding: 80px max(24px, calc((100% - 680px) / 2)); }
  .story__chapter { min-height: auto; padding: 48px 0; }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
    --container: min(100%, 100% - 32px);
  }
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
  button { cursor: pointer; }
  a { cursor: pointer; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(44px, 12vw, 80px); }
  .hero__proof-item { min-width: 80px; padding: 16px 8px; }
  .hero__proof-item b { font-size: clamp(24px, 6vw, 36px); }
  .hero__scroll { display: none; }
  .album__grid { text-align: center; }
  .album__genres { justify-content: center; }
  .album__stats { justify-content: center; }
  .hit-card { width: 260px; }
  .event-card { grid-template-columns: 60px 1fr auto; gap: 16px; padding: 18px 20px; }
  .contact__form { padding: 28px 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__wordmark { font-size: clamp(48px, 16vw, 100px); }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .mini-player { width: calc(100% - 32px); border-radius: 16px; }
  .modal__box { aspect-ratio: 16/10; }
}

@media (max-width: 480px) {
  .hero__cta .btn { justify-content: center; }
  .album__player { padding: 16px; }
  .album__vinyl-disc { display: none; }
  .story__stats { gap: 20px; }
  .story__stat-num { font-size: 36px; }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero__canvas { display: none; }
  .reveal { opacity: 1; transform: none; }
}
