/* ═══════════════════════════════════════
   JENZ — OFFICIAL WEBSITE
   style.css
═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Mono:wght@400;700&family=DM+Sans:wght@300;400;500&display=swap');

/* ════════════════════════════════════════
   ANNOUNCEMENT BAR
════════════════════════════════════════ */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9998;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--section-px);
  height: 52px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.announce-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.announce-bar__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
}

.announce-bar__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  animation: bardot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes bardot {
  0%,100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.4); }
}

.announce-bar p {
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
}

.announce-bar p strong {
  color: var(--white);
  font-weight: 700;
}

.announce-bar__cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 7px 18px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.announce-bar__cta:hover { background: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.7); }

.announce-bar__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 20px;
  cursor: pointer;
  padding: 0 0 0 20px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s;
}

.announce-bar__close:hover { color: var(--white); }

/* Nav sits at top always, bar sits below nav */
.nav { top: 0; }
.announce-bar { top: var(--nav-h); }
.announce-bar.hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.hero { padding-top: calc(var(--nav-h) + 52px); }
.hero.bar-hidden { padding-top: var(--nav-h); }

/* ── Nav Trabaye pill link ── */

/* ════════════════════════════════════════
   FEATURED MUSIC CARD (Trabaye)
════════════════════════════════════════ */
.music-card--featured { grid-column: span 2; }

.music-card__link { display: block; color: inherit; text-decoration: none; }

.music-card__art-bg--trabaye {
  background: linear-gradient(135deg, #3a0a0a 0%, #1a0505 50%, #0f0f0f 100%);
  color: rgba(192, 57, 43, 0.25);
  font-size: clamp(24px, 4vw, 40px);
  letter-spacing: 0.12em;
}

.music-card--featured .music-card__art {
  aspect-ratio: 2/1;
  border-color: rgba(192, 57, 43, 0.3);
}

.music-card--featured:hover .music-card__art { border-color: rgba(192, 57, 43, 0.7); }
.music-card--featured .music-card__title { font-size: 16px; }

.music-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 4;
}

@media (max-width: 480px) {
  .music-card--featured { grid-column: span 1; }
  .music-card--featured .music-card__art { aspect-ratio: 1; }
  .music-card__art-bg--trabaye { font-size: 24px; }
  .announce-bar p { display: none; }
  .announce-bar__inner { justify-content: flex-start; }
}

/* ── TOKENS ── */
:root {
  --red:        #C0392B;
  --red-dim:    rgba(192, 57, 43, 0.12);
  --red-glow:   rgba(192, 57, 43, 0.35);
  --silver:     #C0C0C0;
  --silver-dim: rgba(192, 192, 192, 0.12);
  --black:      #0A0A0A;
  --black-2:    #111111;
  --black-3:    #161616;
  --white:      #FFFFFF;
  --muted:      #888888;

  --font-display: 'Bebas Neue', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --font-body:    'DM Sans', sans-serif;

  --nav-h: 100px;
  --section-px: clamp(24px, 5vw, 80px);
}

/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9000;
}

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--section-px);
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(192,192,192,0.08);
  transition: top 0.4s ease, height 0.4s ease;
}

.nav.scrolled {
  height: 72px;
  background: rgba(10,10,10,1);
  border-color: rgba(192,192,192,0.12);
}

/* ── Left: Logo ── */
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: clamp(48px, 6vw, 72px);
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 14px var(--red-glow));
  transition: filter 0.3s, height 0.4s;
}

.nav.scrolled .nav__logo img { height: 42px; }
.nav__logo img:hover { filter: drop-shadow(0 0 26px rgba(192,57,43,0.8)); }

.nav__logo--text {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.1em;
  color: var(--silver);
  filter: drop-shadow(0 0 14px var(--red-glow));
  line-height: 1;
  white-space: nowrap;
}

/* ── Center: Links ── */
.nav__links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 36px);
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.nav__links li { display: flex; align-items: center; }

.nav__links a {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(13px, 1.4vw, 17px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

/* Trabaye pill */
.nav__link--trabaye {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  color: var(--white) !important;
  background: var(--red);
  padding: 6px 14px;
  border-radius: 2px;
  font-size: clamp(11px, 1.1vw, 14px) !important;
  letter-spacing: 0.14em !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav__link--trabaye::after { display: none !important; }
.nav__link--trabaye:hover  { background: #a93226 !important; transform: translateY(-1px); }

.trabaye-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.75);
  flex-shrink: 0;
  animation: trabayedot 1.6s ease-in-out infinite;
}

@keyframes trabayedot {
  0%,100% { opacity:0.5; transform:scale(1); }
  50%      { opacity:1;   transform:scale(1.5); }
}

/* ── Right: Socials + CTA + Hamburger ── */
.nav__right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav__socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.nav__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(192,192,192,0.45);
  transition: color 0.2s, transform 0.15s;
  width: 20px; height: 20px;
}

.nav__socials a:hover { color: var(--white); transform: translateY(-1px); }

.nav__socials svg {
  width: 17px; height: 17px;
  display: block;
}

.nav__cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(192,192,192,0.3);
  padding: 10px 20px;
  border-radius: 2px;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  text-decoration: none;
}

.nav__cta:hover {
  border-color: rgba(192,192,192,0.65);
  background: rgba(192,192,192,0.06);
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--silver);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 998;
  padding: calc(var(--nav-h) + 52px + 24px) var(--section-px) 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  border-bottom: 1px solid rgba(192,192,192,0.08);
}

.nav__drawer.open { transform: translateY(0); }

.nav__drawer a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 9vw, 52px);
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.nav__drawer a:hover { color: var(--white); }
.nav__drawer .drawer-trabaye { color: var(--red) !important; }

EBSITE
   style.css
═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Mono:wght@400;700&family=DM+Sans:wght@300;400;500&display=swap');

/* ════════════════════════════════════════
   ANNOUNCEMENT BAR
════════════════════════════════════════ */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9998;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--section-px);
  height: 52px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.announce-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.announce-bar__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
}

.announce-bar__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  animation: bardot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes bardot {
  0%,100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.4); }
}

.announce-bar p {
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
}

.announce-bar p strong {
  color: var(--white);
  font-weight: 700;
}

.announce-bar__cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 7px 18px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.announce-bar__cta:hover { background: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.7); }

.announce-bar__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 20px;
  cursor: pointer;
  padding: 0 0 0 20px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s;
}

.announce-bar__close:hover { color: var(--white); }

/* Nav sits at top always, bar sits below nav */
.nav { top: 0; }
.announce-bar { top: var(--nav-h); }
.announce-bar.hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.hero { padding-top: calc(var(--nav-h) + 52px); }
.hero.bar-hidden { padding-top: var(--nav-h); }

/* ── Nav Trabaye pill link ── */

/* ════════════════════════════════════════
   FEATURED MUSIC CARD (Trabaye)
════════════════════════════════════════ */
.music-card--featured { grid-column: span 2; }

.music-card__link { display: block; color: inherit; text-decoration: none; }

.music-card__art-bg--trabaye {
  background: linear-gradient(135deg, #3a0a0a 0%, #1a0505 50%, #0f0f0f 100%);
  color: rgba(192, 57, 43, 0.25);
  font-size: clamp(24px, 4vw, 40px);
  letter-spacing: 0.12em;
}

.music-card--featured .music-card__art {
  aspect-ratio: 2/1;
  border-color: rgba(192, 57, 43, 0.3);
}

.music-card--featured:hover .music-card__art { border-color: rgba(192, 57, 43, 0.7); }
.music-card--featured .music-card__title { font-size: 16px; }

.music-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 4;
}

@media (max-width: 480px) {
  .music-card--featured { grid-column: span 1; }
  .music-card--featured .music-card__art { aspect-ratio: 1; }
  .music-card__art-bg--trabaye { font-size: 24px; }
  .announce-bar p { display: none; }
  .announce-bar__inner { justify-content: flex-start; }
}

/* ── TOKENS ── */
:root {
  --red:        #C0392B;
  --red-dim:    rgba(192, 57, 43, 0.12);
  --red-glow:   rgba(192, 57, 43, 0.35);
  --silver:     #C0C0C0;
  --silver-dim: rgba(192, 192, 192, 0.12);
  --black:      #0A0A0A;
  --black-2:    #111111;
  --black-3:    #161616;
  --white:      #FFFFFF;
  --muted:      #888888;

  --font-display: 'Bebas Neue', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --font-body:    'DM Sans', sans-serif;

  --nav-h: 100px;
  --section-px: clamp(24px, 5vw, 80px);
}

/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9000;
}

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--section-px);
  transition: background 0.4s ease, height 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 76px;
  border-color: rgba(192, 192, 192, 0.06);
}

.nav__logo img {
  height: clamp(56px, 7vw, 80px);
  object-fit: contain;
  filter: drop-shadow(0 0 16px var(--red-glow));
  transition: filter 0.3s, height 0.4s;
}

.nav.scrolled .nav__logo img {
  height: 48px;
}

.nav__logo img:hover {
  filter: drop-shadow(0 0 28px rgba(192, 57, 43, 0.75));
}

.nav__logo--text {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 64px);
  letter-spacing: 0.1em;
  color: var(--silver);
  filter: drop-shadow(0 0 16px var(--red-glow));
  transition: font-size 0.4s;
  line-height: 1;
}

.nav.scrolled .nav__logo--text { font-size: 36px; }

.nav__links {
  display: flex;
  gap: clamp(20px, 2.5vw, 40px);
}

.nav__links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(192, 192, 192, 0.5);
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

/* Trabaye nav link — pill style, stands out */
.nav__link--trabaye {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white) !important;
  background: var(--red);
  padding: 6px 14px;
  border-radius: 2px;
  letter-spacing: 0.15em !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav__link--trabaye::after { display: none !important; }
.nav__link--trabaye:hover { background: #a93226 !important; transform: translateY(-1px); color: var(--white) !important; }

.nav__link--trabaye .trabaye-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  animation: trabayedot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes trabayedot {
  0%,100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.4); }
}

.nav__cta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(192,192,192,0.25);
  padding: 10px 22px;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.nav__cta:hover { border-color: rgba(192,192,192,0.6); background: rgba(192,192,192,0.06); transform: translateY(-1px); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--silver);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  z-index: 998;
  padding: calc(var(--nav-h) + 24px) var(--section-px) 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(192, 192, 192, 0.08);
}

.nav__drawer.open { transform: translateY(0); }

.nav__drawer a {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 48px);
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.nav__drawer a:hover { color: var(--white); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: clamp(80px, 12vh, 140px);
  overflow: hidden;
}

/* ── Background photo ── */
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero__photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1a0505 0%, #0f0f0f 60%);
}

/* ── Dark overlay — top half ── */
.hero__overlay-dark {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.2) 40%,
    rgba(10,10,10,0) 65%,
    rgba(10,10,10,0) 100%
  );
}

/* ── Red gradient — bottom bleeds into next section ── */
.hero__overlay-red {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  height: 55%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(192,57,43,0.15) 30%,
    rgba(192,57,43,0.55) 65%,
    rgba(192,57,43,0.9) 85%,
    #C0392B 100%
  );
}

/* ── Content ── */
.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vh, 36px);
  animation: fadeUp 0.9s ease both;
}

/* ── JENZ wordmark ── */
.hero__name {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__name img {
  width: clamp(260px, 42vw, 520px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 40px rgba(0,0,0,0.7));
}

.hero__name--text {
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 180px);
  letter-spacing: 0.08em;
  color: var(--silver);
  line-height: 0.9;
  filter: drop-shadow(0 4px 40px rgba(0,0,0,0.7));
}

/* ── CTAs ── */
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn--glass {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.3) !important;
  backdrop-filter: blur(8px);
}

.btn--glass:hover {
  background: rgba(255,255,255,0.16) !important;
  border-color: rgba(255,255,255,0.6) !important;
}

/* ── Scroll hint ── */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.hero__scroll span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollline 2s ease-in-out infinite;
}

@keyframes scrollline {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ════════════════════════════════════════
   SHARED SECTION STYLES
════════════════════════════════════════ */
.section {
  padding: clamp(72px, 10vh, 120px) var(--section-px);
  max-width: 1280px;
  margin: 0 auto;
}

.section--center { text-align: center; max-width: 680px; }

.section__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: 0.04em;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: clamp(36px, 5vw, 60px);
}

.divider {
  height: 1px;
  background: rgba(192, 192, 192, 0.05);
  margin: 0 var(--section-px);
}


/* ════════════════════════════════════════
   STICKY VIDEO EXPAND
════════════════════════════════════════ */
.sticky-scene {
  height: 280vh;
  position: relative;
}

.sticky-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Starts red (matching hero bottom), fades to black as video expands */
  background: #C0392B;
  transition: background 0.1s linear;
}

.sticky-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0A0A0A;
  opacity: 0;
  transition: opacity 0.05s linear;
  pointer-events: none;
}

.expand-video {
  position: absolute;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(192, 192, 192, 0.14);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
  will-change: width, height, border-radius;
}

.expand-video video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.expand-video__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #180808, #0f0f0f);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-ring {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(192, 57, 43, 0.45);
  display: flex; align-items: center; justify-content: center;
  animation: ringpulse 2.4s ease-in-out infinite;
}

.play-ring svg {
  width: 16px; height: 16px;
  fill: var(--red);
  margin-left: 3px;
}

@keyframes ringpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.3); }
  50%       { box-shadow: 0 0 0 14px rgba(192, 57, 43, 0); }
}

.expand-caption {
  position: absolute;
  bottom: clamp(32px, 5vh, 60px);
  left: clamp(28px, 5vw, 64px);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.expand-caption.show { opacity: 1; transform: translateY(0); }

.expand-caption h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 92px);
  letter-spacing: 0.04em;
  line-height: 0.92;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.8);
}

.expand-caption h2 em {
  color: var(--red);
  font-style: normal;
}



/* ════════════════════════════════════════
   FAN CAPTURE FORM
════════════════════════════════════════ */
.fan-capture {
  margin-top: clamp(48px, 7vh, 80px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.fan-capture__inner {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.fan-capture__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1;
}

.fan-capture__body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.fan-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.fan-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fan-form__field label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.fan-form__field input {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.fan-form__field input::placeholder { color: rgba(255,255,255,0.3); }
.fan-form__field input:focus { border-color: rgba(255,255,255,0.6); }

.fan-form__submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  cursor: pointer;
}

.fan-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.fan-form__note {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 12px;
}

.fan-success {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
}

.fan-success__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.fan-success p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  letter-spacing: 0.06em;
  color: var(--white);
}

/* Responsive */
@media (max-width: 900px) {
  .fan-capture__inner {
    grid-template-columns: 1fr;
  }
  .fan-form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .fan-form__row {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════
   SECTION TRANSITION BRIDGES
════════════════════════════════════════ */
.section-bridge {
  height: clamp(80px, 12vw, 160px);
  display: block;
  pointer-events: none;
}

.section-bridge--red-to-dark {
  background: linear-gradient(
    to bottom,
    #C0392B 0%,
    #0A0A0A 100%
  );
}


/* ════════════════════════════════════════
   MUSIC SECTION — Spotify layout
════════════════════════════════════════ */
.section--red {
  background: #C0392B;
  max-width: 100%;
  padding-left: var(--section-px);
  padding-right: var(--section-px);
}

.music-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.music-section__text .section__label { color: rgba(255,255,255,0.6); }
.music-section__text .section__title { color: var(--white); margin-bottom: 20px; }

.music-section__body {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
}

.music-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* White filled button for red backgrounds */
.btn--white {
  background: var(--white) !important;
  color: var(--red) !important;
  border-color: var(--white) !important;
  font-weight: 700;
}

.btn--white:hover {
  background: rgba(255,255,255,0.88) !important;
  transform: translateY(-2px);
}

/* Spotify player wrapper */
.spotify-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 860px) {
  .music-section__inner {
    grid-template-columns: 1fr;
  }
}



/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  border: 1px solid transparent;
  padding: 13px 28px;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover { background: #a93226; border-color: #a93226; transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--silver);
  border-color: rgba(192, 192, 192, 0.22);
}
.btn--outline:hover { border-color: rgba(192, 192, 192, 0.55); color: var(--white); transform: translateY(-2px); }

/* Stream pills */
.stream-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.stream-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid rgba(192, 192, 192, 0.16);
  padding: 9px 16px;
  border-radius: 2px;
  transition: all 0.2s;
}
.stream-pill:hover { border-color: var(--red); color: var(--white); background: var(--red-dim); }

/* ════════════════════════════════════════
   MUSIC SECTION
════════════════════════════════════════ */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(180px, 100%), 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  margin-bottom: clamp(32px, 4vw, 52px);
}

.music-card { cursor: pointer; }

.music-card__art {
  width: 100%;
  aspect-ratio: 1;
  background: var(--black-3);
  border-radius: 3px;
  border: 1px solid rgba(192, 192, 192, 0.07);
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}

.music-card:hover .music-card__art { border-color: rgba(192, 57, 43, 0.4); }

.music-card__art-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a0808, #0f0f0f);
  font-family: var(--font-display);
  font-size: 52px;
  color: rgba(192, 57, 43, 0.15);
}

.music-card__art-hover {
  position: absolute; inset: 0;
  background: rgba(192, 57, 43, 0.1);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.music-card:hover .music-card__art-hover { opacity: 1; }

.music-card__art-hover svg {
  width: 36px; height: 36px;
  fill: var(--white);
  filter: drop-shadow(0 0 8px rgba(192, 57, 43, 0.7));
}

.music-card__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.music-card__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.about__photo {
  aspect-ratio: 3/4;
  background: var(--black-3);
  border-radius: 3px;
  border: 1px solid rgba(192, 192, 192, 0.07);
  overflow: hidden;
  position: relative;
}

.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about__photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #1a0808, #0f0f0f);
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(192, 57, 43, 0.07);
}

.about__photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 32%;
  background: linear-gradient(to top, var(--black), transparent);
}

.about__red-bar {
  position: absolute;
  top: 28px; right: 28px;
  width: 3px; height: 54px;
  background: var(--red);
  border-radius: 2px;
}

.about__body p {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 22px;
}

.about__body strong { color: var(--white); font-weight: 500; }

.about__stats {
  display: flex;
  gap: clamp(28px, 4vw, 48px);
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid rgba(192, 192, 192, 0.07);
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 40px);
  color: var(--red);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════ */
.contact-section {
  padding: clamp(72px, 10vh, 120px) var(--section-px);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.contact-section p {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: clamp(32px, 4vw, 48px);
}

.contact-section .stream-row { justify-content: center; }
.contact-section .btn { margin-top: 28px; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  padding: clamp(40px, 6vh, 60px) var(--section-px) clamp(28px, 4vh, 44px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid rgba(192, 192, 192, 0.05);
  gap: 20px;
}

.footer__logo img {
  height: 24px;
  object-fit: contain;
  opacity: 0.5;
  filter: drop-shadow(0 0 4px rgba(192, 57, 43, 0.2));
}

.footer__logo--text {
  font-family: var(--font-display);
  font-size: 18px;
  color: rgba(192, 192, 192, 0.5);
  letter-spacing: 0.15em;
}

.footer__nav {
  display: flex;
  gap: clamp(20px, 3vw, 36px);
  justify-content: center;
  flex-wrap: wrap;
}

.footer__nav a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.footer__nav a:hover { color: var(--white); }

.footer__copy {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(192, 192, 192, 0.17);
  letter-spacing: 0.1em;
  text-align: right;
}

/* ════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about__photo {
    aspect-ratio: 4/3;
    max-height: 380px;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .footer__copy { text-align: center; }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --nav-h: 72px; }

  .announce-bar { height: 44px; top: var(--nav-h); }
  .announce-bar p { font-size: 13px; }
  .hero { padding-top: calc(var(--nav-h) + 44px); }

  .nav__links,
  .nav__socials,
  .nav__cta { display: none; }

  .nav__hamburger { display: flex; }

  .hero__video-box {
    width: min(92vw, 420px);
    height: calc(min(92vw, 420px) * 0.565);
  }

  .music-grid { grid-template-columns: repeat(2, 1fr); }
  .stream-row { gap: 8px; }
  .hero__ctas { gap: 12px; }
  .btn { padding: 12px 22px; font-size: 9px; }
}

/* Very small */
@media (max-width: 380px) {
  .music-grid { grid-template-columns: 1fr; }
  .hero__name img { width: 80vw; }
}

/* ════════════════════════════════════════
   ENTRY SCREEN
════════════════════════════════════════ */
#entryScreen {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A0A0A;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

#entryScreen.visible {
  opacity: 1;
  pointer-events: all;
}

#entryScreen.exit {
  opacity: 0;
  pointer-events: none;
}

.entry__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(192,57,43,0.12) 0%, transparent 70%),
    #0A0A0A;
}

.entry__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.entry__particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(192,57,43,0.4);
  animation: floatParticle var(--dur) ease-in-out infinite;
  animation-delay: var(--delay);
}

@keyframes floatParticle {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50%      { transform: translateY(-40px) scale(1.2); opacity: 0.7; }
}

.entry__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vh, 40px);
  animation: fadeUp 0.8s 0.3s ease both;
}

.entry__logo {
  width: clamp(200px, 35vw, 400px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(192,57,43,0.4));
  animation: entryLogoFloat 4s ease-in-out infinite;
}

@keyframes entryLogoFloat {
  0%,100% { transform: translateY(0); filter: drop-shadow(0 0 40px rgba(192,57,43,0.4)); }
  50%      { transform: translateY(-10px); filter: drop-shadow(0 0 60px rgba(192,57,43,0.7)); }
}

.entry__logo--text {
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 160px);
  letter-spacing: 0.1em;
  color: var(--silver);
  filter: drop-shadow(0 0 40px rgba(192,57,43,0.4));
  animation: entryLogoFloat 4s ease-in-out infinite;
}

.entry__tagline {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.5vw, 13px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(192,192,192,0.45);
}

.entry__btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.entry__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  padding: 15px 36px;
}

/* Primary — Enter Site (no music) */
.entry__btn--primary {
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  padding: 16px 48px;
  font-size: 12px;
  letter-spacing: 0.2em;
}

.entry__btn--primary:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-2px);
}

/* Secondary — Enter with Music */
.entry__btn--sound {
  background: transparent;
  color: rgba(192,192,192,0.6);
  border: 1px solid rgba(192,192,192,0.2);
  font-size: 10px;
  gap: 8px;
}

.entry__btn--sound:hover {
  color: var(--white);
  border-color: rgba(192,57,43,0.6);
  background: rgba(192,57,43,0.1);
  transform: translateY(-1px);
}

.entry__hint {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(192,192,192,0.25);
  margin-top: -8px;
}

/* ── Floating sound toggle ── */
.sound-toggle {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9000;
}

.sound-toggle button {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(192,192,192,0.2);
  color: rgba(192,192,192,0.6);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(10px);
}

.sound-toggle button:hover {
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 0 16px rgba(192,57,43,0.3);
}

/* ════════════════════════════════════════
   ANIMATIONS — Hero
════════════════════════════════════════ */

/* Parallax hero photo */
.hero__photo img {
  will-change: transform;
}

/* Hero name float */
.hero__name img,
.hero__name--text {
  animation: heroNameFloat 6s ease-in-out infinite;
}

@keyframes heroNameFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ════════════════════════════════════════
   ANIMATIONS — Stagger text reveals
════════════════════════════════════════ */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.visible > *:nth-child(1) { opacity:1; transform:translateY(0); transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:0.1s; }
.reveal-stagger.visible > *:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:0.2s; }
.reveal-stagger.visible > *:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:0.3s; }
.reveal-stagger.visible > *:nth-child(5) { opacity:1; transform:translateY(0); transition-delay:0.4s; }

/* ════════════════════════════════════════
   ANIMATIONS — Cursor glow
════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear;
  will-change: transform;
}

/* ════════════════════════════════════════
   ANIMATIONS — Floating particles (hero)
════════════════════════════════════════ */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(192,57,43,0.35);
  animation: heroParticle var(--dur) ease-in-out infinite;
  animation-delay: var(--delay);
  will-change: transform, opacity;
}

@keyframes heroParticle {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity:0; }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  100% { transform: translateY(-120px) translateX(var(--drift)) scale(0.5); opacity:0; }
}

/* ════════════════════════════════════════
   ANIMATIONS — Section entrance
════════════════════════════════════════ */
.reveal-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-slide-left.visible,
.reveal-slide-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* ════════════════════════════════════════
   ANIMATIONS — Nav link hover underline
════════════════════════════════════════ */
.nav__links a {
  overflow: hidden;
}

/* ════════════════════════════════════════
   ANIMATIONS — Button pulse on hover
════════════════════════════════════════ */
.btn--primary:hover {
  animation: btnPulse 0.4s ease;
}

@keyframes btnPulse {
  0%   { box-shadow: 0 0 0 0 rgba(192,57,43,0.5); }
  100% { box-shadow: 0 0 0 16px rgba(192,57,43,0); }
}

/* ════════════════════════════════════════
   ANIMATIONS — Music section cards
════════════════════════════════════════ */
.spotify-wrap {
  animation: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spotify-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

/* ════════════════════════════════════════
   ANIMATIONS — Form inputs
════════════════════════════════════════ */
.fan-form__field input {
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.fan-form__field input:focus {
  transform: translateY(-1px);
}

/* ════════════════════════════════════════
   ANIMATIONS — Scroll progress bar
════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--red);
  z-index: 99999;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(192,57,43,0.6);
}