/* ═══════════════════════════════════════════════
   LOS INSOBORNABLES — Main Stylesheet
   ═══════════════════════════════════════════════ */

/* ── Custom Fonts ────────────────────────────── */
@font-face {
  font-family: 'Fifties Movies';
  src: url('../fonts/FiftiesMovies.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── Variables ───────────────────────────────── */
:root {
  --blue-deep:    #0d2454;
  --blue-mid:     #1a3a6b;
  --blue-light:   #2255a0;
  --gold:         #e8b820;
  --gold-dark:    #b88c10;
  --gold-pale:    #f5d96a;
  --red:          #cc2020;
  --red-dark:     #991515;
  --orange:       #c85a2a;
  --teal-dark:    #0f2e28;
  --teal:         #1a4a3e;
  --teal-mid:     #236b5a;
  --green-warm:   #2a5a20;
  --cream:        #f5f0e4;
  --text-light:   #e8e4d8;
  --text-muted:   #a0a8b8;
  --font-display: 'Fifties Movies', 'Oswald', sans-serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Lato', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--blue-deep);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.7;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Typography ──────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
  color: var(--gold);
  margin-bottom: 3rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: .6rem auto 0;
  border-radius: 2px;
}
.section-title.light { color: var(--cream); }
.section-title.light::after { background: var(--gold); }

.star {
  color: var(--red);
  font-size: 1.4em;
  line-height: 0;
  vertical-align: middle;
  display: inline-block;
  text-shadow:
    -1px -1px 0 #fff,
     0   -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  0   0 #fff,
     1px  0   0 #fff,
    -1px  1px 0 #fff,
     0    1px 0 #fff,
     1px  1px 0 #fff;
}

/* Visually hidden but present in DOM for SEO & screen readers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .75rem 2rem;
  border-radius: 3px;
  transition: all .25s ease;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--blue-deep);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-pale);
  border-color: var(--gold-pale);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,184,32,.4);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}
.btn-red {
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  display: inline-flex;
  align-items: center;
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204,32,32,.4);
}
.btn-small { font-size: .82rem; padding: .55rem 1.4rem; }

/* ═══════════════════════ NAV ═══════════════════════ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
#main-nav.scrolled {
  background: rgba(13, 36, 84, .97);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
  padding: .8rem 2.5rem;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  line-height: 1;
}
.nav-los {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--cream);
  line-height: 1;
}
.nav-band {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--cream);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all .3s ease;
}

/* ═══════════════════════ HERO ═══════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero.loaded .hero-img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,36,84,.15) 0%,
    rgba(13,36,84,.4) 50%,
    rgba(13,36,84,.82) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 800px;
}
.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.5));
}
.hero-los {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--cream);
  display: block;
  margin-bottom: .1em;
}
.hero-band {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
  text-shadow: 0 2px 30px rgba(13,36,84,.6);
}
.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(.9rem, 2vw, 1.15rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(245,240,228,.85);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
  z-index: 3;
}
.hero-wave svg { display: block; width: 100%; }

.scroll-down {
  position: absolute;
  bottom: 4.5rem; /* raised above the wave */
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}
.scroll-arrow {
  width: 26px; height: 26px;
  border-right: 2px solid rgba(255,255,255,.7);
  border-bottom: 2px solid rgba(255,255,255,.7);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: .7; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ═══════════════════════ WAVE DIVIDERS ═══════════════════════ */
.wave-top, .wave-bottom {
  line-height: 0;
  overflow: hidden;
}
.wave-top { margin-bottom: -1px; }
.wave-bottom { margin-top: -1px; }
.wave-top svg, .wave-bottom svg { display: block; width: 100%; }

/* ═══════════════════════ ABOUT ═══════════════════════ */
#sobre {
  background: url('../assets/opt/bg-sobre.jpg') center center / cover no-repeat;
  padding: 0;
  position: relative;
  margin-top: -80px;
  z-index: 2;
  clip-path: polygon(
    0 55px, 5% 42px, 10% 28px, 15% 17px, 20% 10px, 25% 8px,
    30% 12px, 35% 22px, 40% 36px, 45% 50px, 50% 62px, 55% 70px,
    60% 73px, 65% 68px, 70% 56px, 75% 42px, 80% 28px, 85% 17px,
    90% 11px, 95% 11px, 100% 18px,
    100% 100%, 0 100%
  );
}
#sobre::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  pointer-events: none;
}
#sobre .container { position: relative; z-index: 1; padding-top: 7rem; padding-bottom: 4rem; }
#sobre .section-title { color: var(--cream); }
#sobre .section-title::after { background: var(--gold); }
#sobre .about-text p { color: var(--cream); }
#sobre .about-text strong { color: #fff; }

.about-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.about-text p {
  font-size: 1.05rem;
  color: #1a1a2e;
  line-height: 1.8;
}
.about-text strong { font-weight: 700; }
.about-text em { font-style: italic; }

/* emblem badge */
.about-emblem { flex-shrink: 0; }
.badge-img {
  width: 220px;
  height: auto;
  display: block;
}

/* ═══════════════════════ MEMBERS ═══════════════════════ */
#integrantes {
  background: url('../assets/opt/bg-integrantes.jpg') center center / cover no-repeat;
  padding: 5rem 0;
  position: relative;
  margin-top: -80px;
  z-index: 3;
  clip-path: polygon(
    0 18px, 5% 10px, 10% 8px, 15% 12px, 20% 24px, 25% 40px,
    30% 56px, 35% 67px, 40% 73px, 45% 70px, 50% 60px, 55% 45px,
    60% 30px, 65% 17px, 70% 10px, 75% 8px, 80% 14px, 85% 28px,
    90% 46px, 95% 62px, 100% 70px,
    100% 100%, 0 100%
  );
}
#integrantes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 50, .5);
  pointer-events: none;
}
#integrantes .container { position: relative; z-index: 1; padding-top: 5rem; }
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* center the 5th card when grid has 2 cols */
@media (min-width: 700px) and (max-width: 1023px) {
  .members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .member-card:last-child {
    grid-column: 1 / -1;
    max-width: 360px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .members-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .member-card:nth-child(4) { grid-column: 1; }
  .member-card:nth-child(5) { grid-column: 2; }
}

.member-card {
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}

/* accent top bar by member color */
.member-card[data-color="blue"]  { border-top: 3px solid #2a7abf; }
.member-card[data-color="teal"]  { border-top: 3px solid var(--teal-mid); }
.member-card[data-color="red"]   { border-top: 3px solid var(--red); }
.member-card[data-color="earth"] { border-top: 3px solid var(--orange); }
.member-card[data-color="green"] { border-top: 3px solid #5a9a30; }

.member-photo-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--blue-mid);
}
.member-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s ease;
}
.member-card:hover .member-photo-wrap img { transform: scale(1.04); }

.member-info {
  padding: 1.4rem 1.4rem 1.6rem;
}
.member-info h3 {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--cream);
  margin-bottom: .25rem;
}
.instrument {
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.member-bio {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════ MUSIC ═══════════════════════ */
#musica {
  background: url('../assets/opt/bg-musica.jpg') center center / cover no-repeat;
  padding: 0 0 5rem;
  position: relative;
  margin-top: -80px;
  z-index: 4;
  clip-path: polygon(
    0 70px, 5% 60px, 10% 46px, 15% 30px, 20% 17px, 25% 10px,
    30% 9px, 35% 14px, 40% 26px, 45% 42px, 50% 58px, 55% 68px,
    60% 73px, 65% 70px, 70% 58px, 75% 42px, 80% 26px, 85% 14px,
    90% 8px, 95% 8px, 100% 14px,
    100% 100%, 0 100%
  );
}
#musica::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 5, .5);
  pointer-events: none;
}
#musica .container { position: relative; z-index: 1; padding-top: 5rem; }

.music-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.album-card {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  overflow: hidden;
  padding: 1.8rem;
  transition: transform .3s, box-shadow .3s;
}
.album-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,0,0,.45);
}

.album-art {
  width: 360px; height: 360px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  flex-shrink: 0;
}
.album-art-homenaje {
  background: #f0ece4;
  border: none;
  box-shadow: 0 6px 24px rgba(0,0,0,.4);
  padding: 0;
  overflow: hidden;
}
.album-art-homenaje img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.album-art-upcoming {
  background: linear-gradient(135deg, #1a3a6b, #2a7a6a 60%, #0d2454);
  border: 2px solid rgba(232,184,32,.3);
  box-shadow: 0 4px 20px rgba(26,74,62,.3);
}
.album-art-inner { text-align: center; }
.album-star {
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  text-shadow: 0 0 20px rgba(232,184,32,.6);
}
.album-art-title {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(245,240,228,.7);
  margin-top: .5rem;
  text-align: center;
  line-height: 1.4;
}

.album-details h3 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--cream);
  margin-bottom: .3rem;
}
.album-year {
  font-size: .83rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.album-details p {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.badge-coming {
  display: inline-block;
  background: var(--teal-mid);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 20px;
}

.spotify-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.spotify-cta p {
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.spotify-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #1db954;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .75rem 2rem;
  border-radius: 50px;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.spotify-btn:hover {
  background: #1ed760;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29,185,84,.4);
}

/* ═══════════════════════ VIDEOS ═══════════════════════ */
#videos {
  background: url('../assets/opt/bg-videos.jpg') center center / cover no-repeat;
  padding: 5rem 0;
  position: relative;
  margin-top: -80px;
  z-index: 5;
  clip-path: polygon(
    0 14px, 5% 8px, 10% 8px, 15% 16px, 20% 30px, 25% 48px,
    30% 62px, 35% 70px, 40% 73px, 45% 68px, 50% 55px, 55% 38px,
    60% 24px, 65% 13px, 70% 8px, 75% 9px, 80% 17px, 85% 32px,
    90% 50px, 95% 64px, 100% 70px,
    100% 100%, 0 100%
  );
}
#videos::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 24, .55);
  pointer-events: none;
}
#videos .container { position: relative; z-index: 1; padding-top: 5rem; }
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.video-thumb {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 2px solid rgba(255,255,255,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.video-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,.6);
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .3s ease;
}
.video-thumb:hover img { opacity: .85; }

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.25);
  transition: background .3s ease;
}
.play-btn svg {
  width: 56px; height: 56px;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.6));
  transition: transform .3s ease;
}
.video-thumb:hover .play-btn { background: rgba(204,32,32,.45); }
.video-thumb:hover .play-btn svg { transform: scale(1.15); }

.yt-more {
  text-align: center;
  margin-top: 2rem;
}

/* ═══════════════════════ CONTACT ═══════════════════════ */
#contacto {
  background: url('../assets/opt/bg-contacto.jpg') center center / cover no-repeat;
  padding: 0 0 5rem;
  position: relative;
  margin-top: -80px;
  z-index: 6;
  clip-path: polygon(
    0 62px, 5% 50px, 10% 34px, 15% 20px, 20% 10px, 25% 7px,
    30% 10px, 35% 20px, 40% 36px, 45% 52px, 50% 64px, 55% 71px,
    60% 73px, 65% 68px, 70% 56px, 75% 40px, 80% 24px, 85% 13px,
    90% 8px, 95% 9px, 100% 16px,
    100% 100%, 0 100%
  );
}
#contacto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  pointer-events: none;
}
#contacto .container { position: relative; z-index: 1; padding-top: 5rem; }
.contact-wave { background: var(--teal-dark); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-mgmt {
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.contact-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.4rem;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: color .2s;
}
.contact-link svg { flex-shrink: 0; color: var(--gold); }
.contact-link:hover { color: var(--cream); }

.social-label {
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.social-links { display: flex; flex-direction: column; gap: .9rem; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .65rem 1.5rem;
  border-radius: 4px;
  width: fit-content;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.social-btn:hover { transform: translateX(5px); }
.facebook  { background: #1877f2; color: #fff; }
.facebook:hover  { background: #1665d8; box-shadow: 0 4px 16px rgba(24,119,242,.4); }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.instagram:hover { box-shadow: 0 4px 16px rgba(220,39,67,.4); }
.spotify   { background: #1db954; color: #fff; }
.spotify:hover   { background: #1ed760; box-shadow: 0 4px 16px rgba(29,185,84,.4); }

/* ═══════════════════════ FOOTER ═══════════════════════ */
#footer {
  background: #060d1a;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  margin-top: -80px;
  z-index: 7;
  clip-path: polygon(
    0 50px, 10% 28px, 20% 12px, 30% 6px, 40% 10px, 50% 26px,
    60% 46px, 70% 62px, 80% 70px, 90% 65px, 100% 48px,
    100% 100%, 0 100%
  );
  padding-top: 5rem;
}
.footer-logo {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .35rem;
  margin-bottom: .8rem;
}
.footer-los {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: rgba(245,240,228,.6);
}
.footer-band {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(245,240,228,.6);
}
.footer-copy {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,240,228,.3);
}
.footer-credit {
  font-size: .75rem;
  color: rgba(245,240,228,.2);
  margin-top: .4rem;
}
.footer-credit-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-credit-link:hover { color: rgba(245,240,228,.5); }

/* ═══════════════════════ SCROLL REVEAL ═══════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-emblem { display: flex; justify-content: center; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13,36,84,.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .nav-toggle { display: flex; z-index: 1001; }
  .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); }

  #main-nav { padding: 1rem 1.5rem; }

  /* Hero: full viewport, content overlaid, image zoomed to face */
  #hero {
    height: 100vh;
    min-height: 500px;
  }
  .hero-img {
    background-position: center 20%;
    transform: none !important;
  }
  #hero.loaded .hero-img { transform: none; }
  .scroll-down { display: none; }

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

  .hero-actions { flex-direction: column; align-items: center; }

  .members-grid { grid-template-columns: 1fr; }
  .member-card:last-child { grid-column: unset; max-width: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .music-layout { grid-template-columns: 1fr; }
  .album-art { width: 180px; height: 180px; }
}

/* ═══════════════════════ MEMBER EXPAND BADGE ═══════════════════════ */
.member-card {
  cursor: pointer;
  position: relative;
}
.member-expand {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--blue-deep);
  font-size: 1.3rem;
  line-height: 28px;
  text-align: center;
  font-weight: 700;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
  z-index: 2;
}
.member-card:hover .member-expand,
.member-card:focus .member-expand {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 700px) {
  .member-expand { opacity: 1; transform: scale(1); }
}

/* ═══════════════════════ MEMBER MODAL ═══════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,10,25,.82);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity .25s;
}
.modal-overlay:not([hidden]) { opacity: 1; }
.modal-overlay[hidden] { display: none; }

.modal-box {
  background: var(--cream);
  border-radius: 12px;
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  transform: translateY(20px);
  transition: transform .25s;
}
.modal-overlay:not([hidden]) .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: .8rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--blue-deep);
  cursor: pointer;
  opacity: .5;
  transition: opacity .15s;
  z-index: 2;
}
.modal-close:hover { opacity: 1; }

.modal-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
}
.modal-photo-col {
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  background: var(--blue-deep);
}
.modal-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.modal-text-col {
  padding: 2.5rem 2rem 2rem;
}
.modal-instrument {
  font-family: var(--font-display);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .4rem;
}
.modal-text-col h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--blue-deep);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.modal-bio p {
  font-size: .95rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: .8rem;
}
.modal-bio p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
  .modal-inner { grid-template-columns: 1fr; }
  .modal-photo-col {
    border-radius: 12px 12px 0 0;
    max-height: 260px;
  }
  .modal-text-col { padding: 1.5rem 1.2rem; }
  .modal-text-col h2 { font-size: 1.2rem; }
}
