/* Reset básico (inspirado en modern-reset / normalize) */
/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   Variables (tema dark)
   ========================= */
:root {
  /* Colors */
  --bg: #0f1720; /* dark background */
  --surface: #111827; /* slightly lighter */
  --muted: #6b7280;
  --text: #e6eef8;
  --accent: #7c3aed; /* violet */
  --brand-red: #c40000;
  --brand-red-dark: #a30000;
  --accent-2: #06b6d4; /* cyan */

  /* Spacing & sizing */
  --gap: 1rem;
  --radius: 10px;
  --container-max-width: 1200px;

  /* Typography */
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  --base-font-size: 16px;
  --nav-height: 72px;
}

/* =========================
   Base styles
   ========================= */
html {
  font-size: 100%; /* 16px */
}
body {
  font-family: var(--font-sans);
  font-size: var(--base-font-size);
  line-height: 1.5;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, #08101a 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--container-max-width);
}

/* Utility classes */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:focus,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* =========================
   Header & Navigation
   ========================= */
.site-header {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  /* Use fixed to ensure visibility across layouts */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* ensure consistent height for scroll offset */
  padding-top: 10px;
  padding-bottom: 10px;
  height: var(--nav-height);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  padding: 0.75rem 0;
}
.brand {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
}

.nav-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background .15s ease;
}
.nav-toggle:focus {
  outline: 3px solid rgba(124,58,237,0.25);
}
.nav-toggle:hover {
  background: rgba(255,255,255,0.02);
}

.hamburger {
  width: 22px;
  height: 2px;
  background: var(--text);
  position: relative;
  display: inline-block;
  border-radius: 2px;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .18s ease, opacity .18s ease;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* Navigation list - mobile (hidden by default) */
.primary-nav {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(180deg, rgba(17,24,39,0.98), rgba(6,8,10,0.98));
  transform-origin: top;
  transform: scaleY(0);
  transition: transform .18s ease;
  border-top: 1px solid rgba(255,255,255,0.03);
  padding: 1rem 0;
  z-index: 30;
}
.primary-nav.is-open {
  transform: scaleY(1);
}
.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: stretch;
}
.nav-list a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text);
  border-radius: 8px;
}
.nav-list a:focus,
.nav-list a:hover {
  background: rgba(255,255,255,0.03);
}

/* =========================
   Main content / hero
   ========================= */
.hero {
  padding: 4rem 0;
  text-align: center;
}
.hero-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
}
.hero-lead {
  margin: 0 0 1rem 0;
  color: var(--muted);
}

.section {
  padding: 3rem 0;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(2,6,23,0.6);
}

.grid {
  display: grid;
  gap: 1rem;
}
.grid-3 {
  grid-template-columns: 1fr;
}

/* Footer */
.site-footer {
  background: #000;
  padding: 18px 0;
}
.footer-inner {
  text-align: center;
}

.site-footer .footer-line {
  margin: 0;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.5px;
}

@media (max-width: 480px) {
  .site-footer { padding: 16px 0; }
  .site-footer .footer-line { font-size: 13px; }
}

/* =========================
   Responsive breakpoints
   Mobile-first, then tablet and desktop
   ========================= */
@media (min-width: 480px) {
  .hero-title { font-size: 1.75rem; }
  .grid { gap: 1rem; }
}

@media (min-width: 768px) {
  .header-inner { padding: 1rem 0; }
  .nav-toggle { display: none; } /* hide hamburger on tablet+ */

  .primary-nav {
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
  }
  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
  .nav-list a {
    padding: 0.5rem 0.75rem;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero { padding: 6rem 0; text-align: left; }
  .hero-title { font-size: 2rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 2.5rem; }
  .container { padding-left: 2rem; padding-right: 2rem; }
}

/* Small helpers */
.sr-only{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  clip-path:inset(50%)!important;
  white-space:nowrap!important;
  border:0!important;
}

/* When nav is open, animate hamburger to X on mobile */
.primary-nav.is-open + .nav-toggle .hamburger,
.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* Ensure focus outlines for keyboard users */
a:focus, button:focus { outline: 2px solid rgba(124,58,237,0.18); outline-offset: 2px; }
/* =========================
   Overrides / Navigation design for Luis Meza
   ========================= */
html { scroll-behavior: smooth; }
body { background: radial-gradient(1200px 600px at 50% 0%, rgba(255,255,255,0.02), transparent 10%), #000; }
/* Make room for fixed nav when scrolling to anchors */
html { scroll-padding-top: calc(var(--nav-height) + 8px); }
body { scroll-padding-top: calc(var(--nav-height) + 8px); padding-top: calc(var(--nav-height)); }

/* Top header adjustments: padding and layout */
.site-header {
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  padding-top: 20px;
  padding-bottom: 8px;
}
.header-inner { position: relative; padding: 0; }
.brand { position: absolute; left: 16px; top: 18px; }

/* Menu button styling (as rectangular grey buttons) */
.nav-list {
  gap: 20px;
  justify-content: center;
}
.nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #424242;
  color: #f2f2f2;
  height: 46px;
  min-width: 128px;
  padding: 0 20px;
  border-radius: 2px;
  font-family: 'Oswald', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 300;
  font-size: 30px;
  letter-spacing: 0.8px;
  transition: background-color .18s ease, transform .12s ease;
  box-sizing: border-box;
}
.nav-list a:hover { background: #4a4a4a; transform: translateY(-2px); }
.nav-list a:active { background: #333333; transform: translateY(0); }
.nav-list a:focus { outline: 3px solid rgba(255,255,255,0.08); outline-offset: 3px; }

/* Ensure hero and placeholder sections occupy full viewport for visible scrolling */
.hero, .section.placeholder { min-height: 100vh; display: flex; align-items: center; }

/* Prevent horizontal scroll if images are large */
body { overflow-x: hidden; }

/* Home hero layout */
.home-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  padding-top: 18px;
}
.home-hero__left,
.home-hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-portrait {
  width: clamp(220px, 30vw, 420px);
  height: auto;
  max-height: 72vh;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.55));
  display: block;
  object-fit: contain;
}
.hero-signature {
  width: clamp(320px, 55vw, 860px);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.45));
  opacity: 0.95;
  display: block;
  object-fit: contain;
}

.home-intro {
  margin-top: 12px;
  text-align: center;
}
.home-seo-text {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(13px, 1.2vw + 11px, 16px);
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

@media (min-width: 900px) {
  .home-hero {
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
  }
  .home-hero__left { justify-content: flex-start; }
  .home-hero__right { justify-content: center; }
  .home-intro { text-align: left; }
}

/* =========================
   About section (white background)
   ========================= */
#about {
  background: #ffffff;
  color: #222;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
.about-text {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 0;
}
.about-text p {
  color: #5a5a5a;
  font-size: clamp(14px, 1.1vw + 12px, 18px);
  line-height: 1.85;
  margin: 0 0 22px;
  text-align: justify;
  /* Disable hyphenation at line breaks */
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  /* Avoid breaking words oddly */
  overflow-wrap: normal;
  word-break: normal;
  /* Reduce excessive spacing when text is justified */
  text-justify: inter-word;
}
.about-highlight {
  color: #222;
  font-weight: 700;
  letter-spacing: 0.3px;
}
@media (max-width: 520px) {
  .about-text { padding: 28px 0; }
}

/* =========================
   Videos section with SVG waves
   ========================= */
.videos-section {
  position: relative;
  background: #000;
  color: #fff;
  overflow: hidden;
}
.videos-wave { width: 100%; display: block; line-height: 0; }
.videos-wave svg { display: block; width: 100%; height: auto; max-width: 100%; }
.videos-wave--top { position: relative; transform: translateY(-1px); z-index: 3; }
.videos-content {
  padding: 40px 20px 110px;
  position: relative;
  z-index: 4;
}
.videos-title {
  margin: 0;
  color: #fff;
  font-family: "Oswald", system-ui, sans-serif;
  letter-spacing: 1px;
  font-size: clamp(18px, 2.2vw, 28px);
  text-transform: uppercase;
  padding-left: 8px;
}
.videos-waves-bottom { position: relative; z-index: 2; line-height: 0; }
.videos-wave--bottom-shadow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  z-index: 1;
}
.videos-wave--bottom {
  position: relative;
  z-index: 2;
}

/* Prevent thin seams between SVG waves and following white background (subpixel anti-aliasing) */
.videos-section,
.videos-waves-bottom,
.videos-wave,
.videos-wave--bottom,
.videos-wave--bottom-shadow {
  line-height: 0;
}
.videos-wave--bottom svg,
.videos-wave--bottom-shadow svg {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(1px); /* nudge to hide seam */
  -webkit-transform: translateY(1px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

/* Ensure artist section has no accidental border or shadow at the top */
.artist-section {
  border-top: none !important;
  box-shadow: none !important;
}

@media (min-width: 900px) {
  .videos-content { padding: 48px 48px 140px; }
  .videos-title { font-size: 28px; }
}

/* Scoped line-height fixes for #videos to restore compact typography */
#videos {
  line-height: normal; /* neutralize inherited line-height */
}
#videos .video-title {
  line-height: 1.15;
  margin: 2px 0 6px;
}
#videos .video-artist,
#videos .video-year {
  line-height: 1.25;
}
#videos .video-meta p {
  margin: 0;
}

/* =========================
   Music section (same visual as videos)
   ========================= */
.music-section {
  position: relative;
  background: #000;
  color: #fff;
  overflow: hidden;
}
.music-wave { width: 100%; display: block; line-height: 0; }
.music-wave svg { display: block; width: 100%; height: auto; max-width: 100%; }
.music-wave--top { position: relative; transform: translateY(-1px); z-index: 3; }
.music-content {
  padding: 40px 20px 110px;
  position: relative;
  z-index: 4;
}
.music-title {
  margin: 0;
  color: #fff;
  font-family: "Oswald", system-ui, sans-serif;
  letter-spacing: 1px;
  font-size: clamp(18px, 2.2vw, 28px);
  text-transform: uppercase;
  padding-left: 8px;
}
.music-waves-bottom { position: relative; z-index: 2; line-height: 0; }
.music-wave--bottom-shadow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  z-index: 1;
}
.music-wave--bottom {
  position: relative;
  z-index: 2;
  transform: translateY(1px);
}
.music-wave--bottom svg,
.music-wave--bottom-shadow svg { display: block; width: 100%; height: auto; transform: translateY(1px); backface-visibility: hidden; -webkit-backface-visibility: hidden; }

/* =========================
   Events section (top wave only)
   ========================= */
.events-section {
  position: relative;
  background: #000;
  color: #fff;
  overflow: visible;
  margin-top: -60px;
  z-index: 10;
}

.events-wave-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  line-height: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.events-wave-svg {
  display: block;
  width: 100%;
  height: 160px;
}

.events-content {
  position: relative;
  z-index: 12;
  padding-top: 10px;
  padding-bottom: 220px;
}

.events-title {
  margin: 0;
  color: #fff;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-left: 8px;
}

#events .events-gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

#events .events-item--hero {
  grid-column: 1 / -1;
}

#events .events-item {
  margin: 0;
  background: #000;
  overflow: hidden;
}

#events .events-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

#events .events-item--hero img {
  aspect-ratio: 16 / 7;
}

#events .events-item:not(.events-item--hero) img {
  aspect-ratio: 3 / 4;
}

@media (max-width: 640px) {
  #events .events-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  #events .events-item--hero {
    grid-column: auto;
  }
  #events .events-item--hero img {
    aspect-ratio: 16 / 9;
  }
}

@media (hover: hover) {
  #events .events-item img {
    transition: transform 220ms ease;
  }
  #events .events-item:hover img {
    transform: scale(1.03);
  }
}

.social-strip {
  background: #000;
  padding: 18px 0 38px;
}

.social-strip-inner {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
}

.social-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-icon i {
  font-size: 18px;
  line-height: 1;
}

.social-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
}

@media (max-width: 480px) {
  .social-strip-inner { gap: 12px; }
  .social-icon { width: 32px; height: 32px; }
  .social-icon i { font-size: 17px; }
}

@media (min-width: 900px) {
  .music-content { padding: 48px 48px 140px; }
  .music-title { font-size: 28px; }
}

#music .music-content {
  padding-bottom: 50px;
}

#music .music-waves-bottom {
  margin-top: -18px;
  line-height: 0;
}

#music .music-wave--bottom-shadow {
  bottom: -10px;
}

#music .music-wave--bottom svg,
#music .music-wave--bottom-shadow svg {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(1px);
}

/* Music playlists (red cards) */
.music-playlists { display: grid; gap: 26px; margin-top: 20px; }
.playlist {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  background: #7a0000;
  border-radius: 22px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.playlist::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.playlist__cover, .playlist__body { position: relative; z-index: 1; }
.playlist__cover {
  display: flex;
  align-items: stretch;
}
.playlist__cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  background: rgba(0,0,0,0.25);
}
.playlist__title { margin: 0 0 10px; text-align: center; font-family: "Oswald", system-ui, sans-serif; letter-spacing: 0.8px; color: rgba(255,255,255,0.95); font-size: clamp(14px, 1.6vw, 18px); }
.tracklist { list-style: decimal; padding-left: 22px; margin:0; display: grid; gap:6px; }
.track { width:100%; display:grid; grid-template-columns: 1fr 64px; gap:12px; align-items:center; background:transparent; border:0; padding:6px 8px; color: rgba(255,255,255,0.9); cursor:pointer; text-align:left; }
.track__time { text-align:right; color: rgba(255,255,255,0.75); font-variant-numeric: tabular-nums; }
.track:hover { background: rgba(0,0,0,0.12); border-radius: 8px; }
.track:focus-visible { outline: 3px solid rgba(255,255,255,0.35); border-radius: 8px; }
.track.is-active { background: rgba(0,0,0,0.22); border-radius: 8px; color:#fff; }
.track.is-active .track__time { color: rgba(255,255,255,0.9); }

/* Equalizer animado (3 barras) solo en track que está sonando */
.eq {
  display: inline-flex;
  gap: 3px;
  margin-right: 8px;
  vertical-align: middle;
}
.eq span {
  width: 3px;
  height: 10px;
  background: rgba(255,255,255,0.95);
  border-radius: 2px;
  transform-origin: bottom;
  animation: eqMove 900ms infinite ease-in-out;
}
.eq span:nth-child(2) { animation-delay: 150ms; height: 14px; }
.eq span:nth-child(3) { animation-delay: 300ms; height: 8px; }

@keyframes eqMove {
  0%, 100% { transform: scaleY(0.35); opacity: 0.7; }
  50% { transform: scaleY(1); opacity: 1; }
}

.track.is-playing .eq { display: inline-flex; }
.track:not(.is-playing) .eq { display: none; }

@media (max-width: 640px) {
  .playlist { grid-template-columns: 1fr; }
  .playlist__title { text-align: left; }
}

/* =========================
   Artist section
   ========================= */
.artist-section {
  background: #ffffff;
  color: #222;
  padding: 70px 0;
}
.artist-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.artist-media { display:flex; justify-content:center; }
.artist-image {
  width: clamp(260px, 40vw, 520px);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.18));
}
.artist-copy { text-align: left; }
.artist-name { margin: 0 0 18px; line-height: 0.95; }
.artist-name__first {
  display:block;
  font-family: "Oswald", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(52px, 7vw, 92px);
  color: #b8b8b8;
}
.artist-name__last {
  display:block;
  font-family: "Oswald", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(64px, 8vw, 108px);
  color: #111;
}
.artist-desc {
  max-width: 640px;
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(14px, 1.1vw + 12px, 18px);
  line-height: 1.7;
  color: #6a6a6a;
  text-align: justify;
  /* disable hyphenation and avoid awkward breaks */
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  text-justify: inter-word;
}
/* Ensure artist name elements explicitly use Oswald */
.artist-name,
.artist-name__first,
.artist-name__last {
  font-family: "Oswald", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
@media (min-width: 900px) {
  .artist-layout { grid-template-columns: 1fr 1fr; gap: 48px; }
  .artist-media { justify-content: flex-start; }
}

/* =========================
   Artist quote section (after #music)
   ========================= */
.artist-quote-section {
  background: #fff;
  color: #222;
  padding-top: 0px;
  padding-bottom: 60px;
  overflow: visible;
  position: relative;
  margin-top: -95px;
  z-index: 5;
}

.artist-quote-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 0;
  padding-top: 0;
  position: relative;
  z-index: 20;
}

@media (min-width: 900px) {
  .artist-quote-layout {
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
  }
}

.artist-quote-media {
  display: flex;
  justify-content: center;
  margin-top: 0;
}
@media (min-width: 900px) {
  .artist-quote-media {
    justify-content: flex-start;
  }
}

.artist-quote-image {
  width: clamp(260px, 46vw, 620px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(0,0,0,0.12));
  position: relative;
  z-index: 20;
}

.artist-quote-copy {
  display: flex;
  justify-content: center;
  margin-top: 0;
}
@media (min-width: 900px) {
  .artist-quote-copy {
    justify-content: flex-start;
  }
}

.artist-quote-text {
  max-width: 520px;
  margin: 0;
  margin-top: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(14px, 1.1vw + 12px, 18px);
  line-height: 1.75;
  color: #5f5f5f;
  text-align: justify;
  text-justify: inter-word;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

#artist-quote .artist-quote-text {
  margin-top: 0;
}

#artist-quote .container {
  padding-top: 0;
}

#music .music-waves-bottom { position: relative; z-index: 1; }
#music .music-content { position: relative; z-index: 2; }
#music .music-wave--bottom { z-index: 1; }
#music .music-wave--bottom-shadow { z-index: 0; }

.artist-quote-text strong {
  color: #111;
  font-weight: 700;
}

/* Videos grid and items */
.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px 60px;
  margin-top: 22px;
}
@media (min-width: 900px) {
  .videos-grid { grid-template-columns: 1fr 1fr; }
}
.video-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.video-thumb { background: transparent; border: 0; padding: 0; cursor: pointer; display: block; }
.video-thumb img { width: 140px; height: 140px; object-fit: cover; display: block; border-radius: 4px; }
.video-meta { color: rgba(255,255,255,0.95); }
.video-title { color: #fff; font-weight: 700; margin: 2px 0 6px; font-size: clamp(16px, 1.6vw, 20px); }
.video-artist, .video-year { margin: 0; color: rgba(255,255,255,0.82); font-size: 14px; }
.video-actions { display:flex; align-items:center; gap:12px; margin-top:10px; }
.video-play {
  width:34px; height:34px;
  border-radius:999px;
  background: transparent;
  border: 3px solid #e00000;
  color: #e00000;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  padding:0;
}
.video-play svg { width:16px; height:16px; display:block; color: #e00000; }
.video-line { height:3px; width:120px; background:#e00000; display:inline-block; border-radius:2px; }

@media (max-width: 520px) {
  .video-item { grid-template-columns: 1fr; }
  .video-thumb img { width: 100%; height: auto; aspect-ratio: 1/1; }
  .video-line { width: 55vw; max-width: 220px; }
}

/* Modal */
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
}
.video-modal.is-open { display: block; }
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1;
}
.video-modal__panel {
  position: relative;
  z-index: 3;
  width: min(920px, calc(100% - 32px));
  margin: 80px auto;
  background: #111;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.video-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 50;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-modal__close:hover { background: rgba(0,0,0,0.75); }
.video-modal__close:focus-visible { outline: 3px solid rgba(255,255,255,0.6); outline-offset: 3px; }
.video-modal__ratio { position: relative; width:100%; aspect-ratio: 16/9; }
.video-modal__ratio { position: relative; z-index: 2; width:100%; aspect-ratio: 16/9; }
.video-modal__ratio iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 2; }
.video-modal__backdrop,[data-close] { cursor: pointer; }
body.modal-open { overflow: hidden; }

/* Ensure anchor targets are not hidden behind the sticky nav */
#home, #videos, #music, #events, #about {
  scroll-margin-top: calc(var(--nav-height) + 8px);
}

/* Follow / social icons inside ABOUT */
.follow {
  text-align: center;
  padding: 10px 0 60px;
}
.follow__title {
  color: var(--brand-red);
  font-weight: 800;
  letter-spacing: 1px;
  margin: 28px 0 18px;
  font-size: clamp(22px, 3vw, 34px);
  font-family: "Oswald", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
.follow__icons {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.follow__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px dotted #9a9a9a;
  border-radius: 999px;
  color: #000; /* icons should be black */
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
}
.follow__icon svg { width: 26px; height: 26px; display: block; }
.follow__icon:hover { transform: scale(1.06); border-color: var(--brand-red); color: var(--brand-red); }
.follow__icon:active { transform: scale(1.02); border-color: var(--brand-red-dark); color: var(--brand-red-dark); }
.follow__icon:focus-visible { outline: 3px solid rgba(196,0,0,.35); outline-offset: 4px; }
/* Font Awesome icon sizing */
.follow__icon i {
  font-size: 26px;
  line-height: 1;
  display: block;
}

/* Force social icons color to black inside ABOUT and avoid brand color on hover */
#about .follow__icon {
  color: #111 !important;
  border: 2px dotted #9a9a9a;
}
#about .follow__icon i {
  color: #111 !important;
}
#about .follow__icon:hover {
  border-color: #666 !important;
  transform: scale(1.06);
  color: #111 !important;
}
#about .follow__icon:hover i {
  color: #111 !important;
}
#about .follow__icon:focus-visible {
  outline: 3px solid rgba(0,0,0,.25);
  outline-offset: 4px;
}

/* Responsive: show full menu from 521px and hide hamburger */
@media (min-width: 521px) {
  .nav-toggle { display: none; }
  .primary-nav { position: static; transform: none; background: transparent; padding: 0; display: flex; justify-content: center; width: 100%; }
  .nav-list { flex-direction: row; }
}

/* Mobile: keep hamburger visible under 521px; ensure nav expands full width when open */
@media (max-width: 520px) {
  .primary-nav { left: 0; right: 0; width: 100%; }
  .nav-list a { width: auto; min-width: 0; font-size: 20px; height: 44px; padding: 0 16px; }
}

/* =========================
   Now Playing mini panel (fixed bottom)
   ========================= */
.now-playing {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2500;
  display: none;
}
.now-playing.is-visible { display: block; }

.now-playing__inner {
  background: rgba(15,15,15,0.92);
  color: #fff;
  border-radius: 16px;
  padding: 12px 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 12px;
  align-items: center;
}

.now-playing__close {
  justify-self: end;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
}

.now-playing__meta {
  grid-column: 1 / -1;
}
.now-playing__track {
  font-family: "Oswald", system-ui, sans-serif;
  letter-spacing: 0.5px;
  font-size: 16px;
  line-height: 1.1;
}
.now-playing__album {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.now-playing__controls {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.np-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}
.np-btn--main {
  width: 48px;
  height: 48px;
  background: rgba(224,0,0,0.85);
}
.np-btn:hover,
.now-playing__close:hover { background: rgba(255,255,255,0.14); }
.np-btn--main:hover { background: rgba(224,0,0,1); }

.now-playing__progress {
  grid-column: 1 / -1;
}

.np-seek {
  width: 100%;
  accent-color: #e00000;
}

.np-times {
  display: flex;
  justify-content: space-between;
  font-variant-numeric: tabular-nums;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  margin-top: 6px;
}

.now-playing__volume {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.np-vol-icon {
  width: 28px;
  text-align: center;
  opacity: 0.85;
}

.np-volume {
  width: 100%;
  accent-color: #e00000;
}

.np-volume:focus-visible {
  outline: 3px solid rgba(224,0,0,0.35);
  outline-offset: 3px;
  border-radius: 10px;
}

.now-playing__inner button:focus-visible,
.now-playing__inner input:focus-visible {
  outline: 3px solid rgba(224,0,0,0.35);
  outline-offset: 3px;
}

@media (min-width: 720px) {
  .now-playing__inner {
    grid-template-columns: 1fr auto auto;
    gap: 10px 14px;
  }
  .now-playing__meta { grid-column: 1 / 2; }
  .now-playing__controls { grid-column: 2 / 3; }
  .now-playing__progress { grid-column: 1 / -1; }
  .now-playing__close { grid-column: 3 / 4; grid-row: 1 / 2; }
  .now-playing__volume {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}
