/* ═══════════════════════════════════════════════════════════
   DA RENEGADE — Official Website Styles
   Theme: Dark & Gritty | Hip-Hop / Rap
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --bg-primary:    #0a0a0a;
  --bg-secondary:  #111111;
  --bg-card:       #181818;
  --bg-card-hover: #202020;
  --accent-red:    #c0392b;
  --accent-red-dim: #8b1a10;
  --accent-gold:   #f39c12;
  --accent-gold-dim: #b07d0d;
  --text-primary:  #ffffff;
  --text-secondary: #aaaaaa;
  --text-muted:    #666666;
  --border:        rgba(255,255,255,0.08);
  --border-red:    rgba(192,57,43,0.4);

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:     6px;
  --radius-lg:  12px;
  --transition: 0.25s ease;
  --shadow:     0 4px 24px rgba(0,0,0,0.6);
  --shadow-red: 0 0 40px rgba(192,57,43,0.25);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ─── UTILITY ────────────────────────────────────────────── */
.accent-red  { color: var(--accent-red); }
.accent-gold { color: var(--accent-gold); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
  border: none;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--full  { width: 100%; justify-content: center; }

.btn--primary {
  background-color: var(--accent-red);
  color: #fff;
}
.btn--primary:hover {
  background-color: #e74c3c;
  box-shadow: 0 8px 24px rgba(192,57,43,0.4);
}

.btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--secondary:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: #fff;
}

.btn--gold {
  background-color: var(--accent-gold);
  color: #000;
}
.btn--gold:hover {
  background-color: #f5a623;
  box-shadow: 0 8px 24px rgba(243,156,18,0.4);
}

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 1.5rem;
  transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background-color: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 1.5rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}
.nav__logo-text {
  background: linear-gradient(135deg, #fff 60%, var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav__link:hover { color: var(--text-primary); }
.nav__link--cta {
  padding: 0.55rem 1.25rem;
  background-color: var(--accent-red);
  color: #fff !important;
  border-radius: var(--radius);
  font-size: 0.8rem;
}
.nav__link--cta:hover { background-color: #e74c3c; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(192,57,43,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(243,156,18,0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* CSS-only noise texture */
.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 1.5rem;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  transition-delay: 0.1s;
}

.hero__title {
  font-family: var(--font-display);
  line-height: 0.9;
  margin-bottom: 1.5rem;
  transition-delay: 0.2s;
}
.hero__title-da {
  display: block;
  font-size: clamp(5rem, 14vw, 10rem);
  color: var(--text-secondary);
  letter-spacing: 0.06em;
}
.hero__title-renegade {
  display: block;
  font-size: clamp(5.5rem, 20vw, 16rem);
  background: linear-gradient(135deg, #fff 0%, var(--accent-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
}

/* Glitch effect */
.glitch {
  position: relative;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #fff 0%, var(--accent-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glitch::before {
  animation: glitch-1 4s infinite linear;
  clip-path: polygon(0 15%, 100% 15%, 100% 35%, 0 35%);
  left: -2px;
  opacity: 0.6;
}
.glitch::after {
  animation: glitch-2 4s infinite linear;
  clip-path: polygon(0 65%, 100% 65%, 100% 85%, 0 85%);
  left: 2px;
  opacity: 0.6;
}
@keyframes glitch-1 {
  0%,94%,100% { transform: none; }
  95% { transform: skewX(-3deg) translateX(-3px); }
  97% { transform: skewX(2deg) translateX(3px); }
}
@keyframes glitch-2 {
  0%,92%,100% { transform: none; }
  93% { transform: skewX(3deg) translateX(3px); }
  96% { transform: skewX(-2deg) translateX(-3px); }
}

.hero__tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  transition-delay: 0.35s;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  transition-delay: 0.45s;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── SECTION BASE ───────────────────────────────────────── */
.section {
  padding: 6rem 1.5rem;
}
.section__container {
  max-width: 1200px;
  margin: 0 auto;
}
.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.section__desc {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ─── MUSIC / PLATFORMS ──────────────────────────────────── */
.music { background-color: var(--bg-secondary); }

.platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  transition-delay: 0.15s;
}

.platform {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}
.platform:hover {
  transform: translateY(-4px);
  background-color: var(--bg-card-hover);
}

.platform__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.platform__icon svg { width: 100%; height: 100%; }

.platform__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.platform__name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.platform__action {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition), color var(--transition);
}
.platform:hover .platform__action {
  gap: 0.65rem;
  color: var(--text-primary);
}

.platform--spotify  { --p-color: #1DB954; }
.platform--apple    { --p-color: #fc3c44; }
.platform--soundcloud { --p-color: #ff5500; }
.platform--youtube  { --p-color: #FF0000; }

.platform--spotify:hover   { border-color: #1DB954; box-shadow: 0 0 24px rgba(29,185,84,0.15); }
.platform--apple:hover     { border-color: #fc3c44; box-shadow: 0 0 24px rgba(252,60,68,0.15); }
.platform--soundcloud:hover{ border-color: #ff5500; box-shadow: 0 0 24px rgba(255,85,0,0.15); }
.platform--youtube:hover   { border-color: #FF0000; box-shadow: 0 0 24px rgba(255,0,0,0.15); }

.platform--spotify   .platform__icon { color: #1DB954; }
.platform--apple     .platform__icon { color: #fc3c44; }
.platform--soundcloud .platform__icon { color: #ff5500; }
.platform--youtube   .platform__icon { color: #FF0000; }

/* ─── LATEST RELEASE BANNER ──────────────────────────────── */
.release {
  background: linear-gradient(135deg, var(--accent-red-dim) 0%, #1a0a08 100%);
  border-top: 1px solid var(--border-red);
  border-bottom: 1px solid var(--border-red);
  padding: 3.5rem 1.5rem;
}
.release__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.release__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--accent-gold);
  margin-bottom: 0.4rem;
}
.release__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.release__desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  max-width: 420px;
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about { background-color: var(--bg-primary); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/6;
  background-color: var(--bg-card);
}
.about__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.about__image-wrapper--placeholder::after {
  content: '📸 Add your photo here';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  background-color: var(--bg-card);
  text-align: center;
  padding: 1rem;
}
.about__image-accent {
  position: absolute;
  bottom: -2px;
  left: -2px;
  right: -2px;
  height: 40%;
  background: linear-gradient(to top, var(--accent-red-dim) 0%, transparent 100%);
  pointer-events: none;
}
.about__image { transition-delay: 0.1s; }
.about__image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--border-red);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}

.about__content { transition-delay: 0.25s; }
.about__content .section__label { display: block; margin-bottom: 0.5rem; }
.about__content .section__title { text-align: left; margin-bottom: 1.5rem; }

.about__bio {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.8;
  font-size: 1rem;
}

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { text-align: center; }
.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact { background-color: var(--bg-secondary); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
  transition-delay: 0.15s;
}
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact__icon {
  font-size: 1.25rem;
  color: var(--accent-red);
  margin-top: 0.1rem;
}
.contact__item strong { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.3rem; }
.contact__link { color: var(--text-primary); font-weight: 600; transition: color var(--transition); }
.contact__link:hover { color: var(--accent-gold); }

.contact__socials-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition);
}
.social:hover {
  transform: translateY(-3px);
  border-color: var(--accent-red);
  background-color: rgba(192,57,43,0.15);
}

/* Platform-specific hover colors */
.social--spotify:hover  { border-color: #1DB954; background-color: rgba(29,185,84,0.15); }
.social--youtube:hover  { border-color: #FF0000; background-color: rgba(255,0,0,0.15); }
.social--soundcloud:hover{ border-color: #ff5500; background-color: rgba(255,85,0,0.15); }
.social--instagram:hover { border-color: #E1306C; background-color: rgba(225,48,108,0.15); }
.social--twitter:hover  { border-color: #fff; background-color: rgba(255,255,255,0.1); }
.social--apple:hover    { border-color: #fc3c44; background-color: rgba(252,60,68,0.15); }

/* Form */
.form__group { margin-bottom: 1.25rem; }
.form__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.45rem;
}
.form__input {
  width: 100%;
  padding: 0.85rem 1rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form__input:focus {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.15);
}
.form__input::placeholder { color: var(--text-muted); }
.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form__select option { background-color: #1a1a1a; }
.form__textarea { resize: vertical; min-height: 130px; }
.form__note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}
.form__note a { color: var(--accent-gold); text-decoration: underline; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background-color: #060606;
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 2rem;
}
.footer__container { max-width: 1200px; margin: 0 auto; }
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #fff 60%, var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.socials--footer .social { width: 38px; height: 38px; font-size: 0.95rem; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy { color: var(--text-muted); font-size: 0.82rem; }
.footer__nav { display: flex; gap: 1.5rem; }
.footer__nav-link { font-size: 0.82rem; color: var(--text-muted); transition: color var(--transition); }
.footer__nav-link:hover { color: var(--text-primary); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about__image {
    max-width: 400px;
    margin: 0 auto;
  }
  .about__content .section__title { text-align: center; }
  .about__content .section__label { text-align: center; }
  .about__stats { justify-content: center; }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .release__container {
    flex-direction: column;
    text-align: center;
  }
  .release__desc { max-width: none; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(280px, 80vw);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background-color: #0d0d0d;
    border-left: 1px solid var(--border);
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 99;
  }
  .nav__links.open { right: 0; }
  .nav__link { font-size: 1.1rem; color: var(--text-primary); }
  .nav__link--cta { text-align: center; }
  .nav__toggle { display: flex; z-index: 101; }

  .section { padding: 4rem 1.25rem; }

  .platforms { grid-template-columns: 1fr; }

  .hero__ctas { flex-direction: column; align-items: center; }
  .btn { justify-content: center; }

  .footer__top { justify-content: center; text-align: center; }
  .footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .hero__title-da       { font-size: 4.5rem; }
  .hero__title-renegade { font-size: 4.5rem; }
  .about__stats { gap: 1.5rem; }
}

/* ─── HERO SUBTAGLINE ────────────────────────────────────── */
.hero__subtagline {
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-top: -1rem;
  margin-bottom: 2rem;
  font-weight: 400;
  transition-delay: 0.4s;
}

/* ─── RELEASE ALBUM ART ──────────────────────────────────── */
.release__album {
  flex-shrink: 0;
}
.release__album img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery { background-color: var(--bg-secondary); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 0.75rem;
  transition-delay: 0.15s;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
  cursor: zoom-in;
  background-color: var(--bg-card);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
  aspect-ratio: 1;
}
.gallery__item:hover img { transform: scale(1.05); }

.gallery__item--featured {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery__item--featured img { aspect-ratio: 1; }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(192,57,43,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition), background-color var(--transition);
}
.gallery__item:hover .gallery__overlay {
  opacity: 1;
  background: rgba(192,57,43,0.3);
}

/* ─── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__img-wrap {
  max-width: min(90vw, 900px);
  max-height: 90vh;
}
.lightbox__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color var(--transition);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(192,57,43,0.6); }
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ─── VIDEOS ─────────────────────────────────────────────── */
.videos { background-color: var(--bg-primary); }

.videos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  transition-delay: 0.15s;
}
.video__card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.video__card:hover {
  border-color: var(--accent-red);
  box-shadow: 0 0 24px rgba(192,57,43,0.15);
}
.video__embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video__embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.videos__cta { text-align: center; }

/* ─── GALLERY RESPONSIVE ─────────────────────────────────── */
@media (max-width: 720px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery__item--featured {
    grid-column: span 2;
    grid-row: span 1;
  }
  .release__album { display: none; }
}

/* ─── REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
