*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black:    #060810;
  --dark:     #080d18;
  --dark2:    #0d1525;
  --white:    #ffffff;
  --white60:  rgba(255,255,255,0.6);
  --white30:  rgba(255,255,255,0.3);
  --blue:     #2d80c9;
  --blue-lt:  #5aafed;
  --cyan:     #0ea5e9;
  --navy:     #1d4ed8;
  --indigo:   #5a8df8;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }

body { overflow-x: hidden; }

/* ─── IMAGE NOTE LABELS (design guide only — hidden, kept for future use) ─── */
.img-tag {
  display: none;
  position: absolute;
  bottom: 0; right: 0;
  background: rgba(45,128,201,0.9);
  color: #000;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  z-index: 10;
  pointer-events: none;
}

/* ─── TYPOGRAPHY ─── */
.eyebrow {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.display {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.92;
  letter-spacing: 2px;
}

.serif {
  font-family: 'Playfair Display', serif;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-title em { color: var(--blue); font-style: italic; }

.body-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--white60);
}

.gold-line {
  width: 48px;
  height: 2px;
  background: var(--blue);
  margin-bottom: 32px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}
.btn-gold  { background: var(--blue); color: var(--black); }
.btn-gold:hover { background: var(--blue-lt); }
.btn-ghost { border: 1px solid var(--white30); color: var(--white); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-amber { border: 1px solid rgba(14,165,233,.4); color: var(--cyan); }
.btn-amber:hover { border-color: var(--cyan); }
.btn-lav   { border: 1px solid rgba(90,141,248,.4); color: var(--indigo); }
.btn-lav:hover { border-color: var(--indigo); }

/* ─── TAGS (metadata labels, not buttons) ─── */
.tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blue);
}
.tag-amber { color: var(--cyan); }
.tag-lav   { color: var(--indigo); }


/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 60px;
  background: linear-gradient(to bottom, rgba(8,8,8,.95) 0%, transparent 100%);
}

.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 4px;
}
.nav-brand span { color: var(--blue); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white60);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }

.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-lang__btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white30);
  cursor: pointer;
  transition: color .2s;
}
.nav-lang__btn:hover { color: var(--blue-lt); }
.nav-lang__btn.is-active { color: var(--white); }
.nav-lang__sep {
  font-size: 10px;
  color: var(--white30);
  pointer-events: none;
  user-select: none;
}

/* ─── HAMBURGER (mobile only) ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}
.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform .3s ease, opacity .2s ease;
  transform-origin: center;
}
body.nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE NAV (≤768px) ─── */
@media (max-width: 768px) {
  nav {
    padding: 18px 24px;
    justify-content: center;
  }
  .nav-brand {
    font-size: 16px;
    letter-spacing: 3px;
  }
  .nav-toggle {
    display: inline-flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* Hidden by default; revealed when body.nav-open */
  .nav-links,
  .nav-lang {
    position: fixed;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: 99;
  }

  .nav-links {
    top: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    background: rgba(6, 8, 16, .98);
    padding: 80px 24px 120px;
    margin: 0;
  }
  .nav-links a {
    font-size: 14px;
    letter-spacing: 4px;
  }

  .nav-lang {
    bottom: 48px;
    justify-content: center;
    gap: 10px;
  }
  .nav-lang__btn,
  .nav-lang__sep {
    font-size: 13px;
    letter-spacing: 3px;
  }

  body.nav-open {
    overflow: hidden;
  }
  body.nav-open .nav-links,
  body.nav-open .nav-lang {
    opacity: 1;
    visibility: visible;
  }
}


/* ════════════════════════════════════════
   SECTION 1 — HERO
   Full-width, 100vh, image left + text right
════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-img-half {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-img-half img,
.hero-img-half video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
}
.hero-img-half::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,8,16,.65) 0%, rgba(6,8,16,.25) 55%, rgba(6,8,16,.6) 100%);
}

.hero-text-half {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 80px 80px 60px;
  position: relative;
  z-index: 2;
}

/* Optional: shift the hero copy to the right side over the video.
   Enable by adding class="hero--right" on #hero. Remove the class to revert. */
#hero.hero--right { justify-content: flex-end; }
#hero.hero--right .hero-text-half {
  flex: 0 1 55%;
  padding: 120px 80px 80px 60px;
}
#hero.hero--right .hero-img-half::after {
  background: linear-gradient(90deg, rgba(6,8,16,.55) 0%, rgba(6,8,16,.25) 45%, rgba(6,8,16,.75) 100%);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 148px);
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.hero-title + .eyebrow { margin-bottom: 28px; }
.hero-title .outline {
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 1.6vw, 22px);
  font-style: italic;
  color: var(--white60);
  max-width: 420px;
  line-height: 1.65;
  margin-bottom: 44px;
}

.hero-cta { display: flex; gap: 14px; margin-bottom: 64px; }

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 32px;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--blue);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white30);
  margin-top: 4px;
}


/* ════════════════════════════════════════
   SECTION 2 — MANIFESTO
   Full-width dark band: image | text
════════════════════════════════════════ */
#manifesto {
  display: flex;
  min-height: 90vh;
  background: var(--dark);
}

.manifesto-visual {
  width: 48%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.manifesto-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .65;
}
.manifesto-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 50%, var(--dark) 100%);
}

.manifesto-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 80px;
}

.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 1.8vw, 24px);
  font-style: italic;
  line-height: 1.65;
  color: var(--white60);
  border-left: 2px solid var(--blue);
  padding-left: 24px;
  margin-bottom: 32px;
}


/* ════════════════════════════════════════
   SECTION 3 — SETLIST / SERVICES
   3-column card row, full width
════════════════════════════════════════ */
#setlist {
  padding: 100px 60px;
  background: var(--black);
}

.setlist-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.setlist-note {
  max-width: 360px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--white30);
}

.services-row {
  display: flex;
  gap: 20px;
}

.svc-card {
  flex: 1;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color .3s;
}
.svc-card:hover { border-color: var(--blue); }

.svc-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.svc-card:hover .svc-img img { transform: scale(1.05); }
.svc-img::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--dark2), transparent);
}

.svc-body {
  padding: 28px 28px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: rgba(45,128,201,.60);
  margin-bottom: -16px;
}
.svc-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--white);
}
.svc-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--white60);
  flex: 1;
}
.svc-tag { margin-top: 24px; align-self: flex-start; }


/* ════════════════════════════════════════
   SECTION 4 — PHILOSOPHY BAND
   Full-width centered quote on dark bg
════════════════════════════════════════ */
#philosophy {
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 60px;
  background: var(--dark2);
}

.phil-bg {
  position: absolute; inset: 0;
  background-image: url('./images/image7.jpg');
  background-size: cover;
  background-position: center;
  opacity: .12;
}
.phil-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.phil-big {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.2vw, 46px);
  font-style: italic;
  line-height: 1.45;
  margin-bottom: 28px;
}
.phil-big strong { color: var(--blue); font-style: normal; }


/* ════════════════════════════════════════
   SECTION 5 — THE MULTIVERSE
   3 brand cards full-width horizontal row
════════════════════════════════════════ */
#multiverse {
  padding: 100px 60px;
  background: var(--black);
}

.multiverse-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.brands-row {
  display: flex;
  gap: 20px;
  min-height: 420px;
}

.brand-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 48px 36px 40px;
  border: 1px solid rgba(255,255,255,.07);
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}

.bc-gold  { background: linear-gradient(160deg, #05090f, #080f1e); }
.bc-amber { background: linear-gradient(160deg, #03090e, #060d17); }
.bc-lav   { background: linear-gradient(160deg, #07080f, #090a18); }

.bc-gold:hover  { border-color: var(--blue); }
.bc-amber:hover { border-color: var(--cyan); }
.bc-lav:hover   { border-color: var(--indigo); }

.brand-logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 0 20px;
}
.brand-logo-wrap img {
  max-width: 200px;
  max-height: 160px;
  object-fit: contain;
}

.brand-info { text-align: center; }
.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 10px;
}
.brand-desc {
  font-size: 12px;
  line-height: 1.7;
  color: var(--white60);
  max-width: 220px;
  margin: 0 auto 24px;
}


/* ════════════════════════════════════════
   SECTION 6 — IMPERIUM MASTERPIECES
   Logo + text top, artist cards + album strip
════════════════════════════════════════ */
#imperium {
  padding: 100px 60px 100px;
  background: #070c1a;
}

.imp-top {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-bottom: 56px;
}
.imp-logo {
  width: 320px;
  flex-shrink: 0;
  position: relative;
}
.imp-logo img { width: 100%; object-fit: contain; }

.imp-desc { flex: 1; }
.imp-email {
  display: inline-block;
  margin-top: 24px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(15px, 1.4vw, 18px);
  font-style: italic;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(45,128,201,.3);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.imp-email:hover {
  color: var(--blue-lt);
  border-bottom-color: var(--blue-lt);
}

.artists-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.artist-card {
  flex: 1;
  background: var(--dark2);
  border: 1px solid rgba(45,128,201,.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.artist-logo {
  height: 160px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}
.artist-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.artist-body {
  padding: 18px 20px 22px;
}
.artist-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--blue);
  margin-bottom: 6px;
}
.artist-desc {
  font-size: 11px;
  line-height: 1.7;
  color: var(--white60);
}



/* ════════════════════════════════════════
   SECTION 7 — LA BARCA MUSICAL
   Image right | text left
════════════════════════════════════════ */
#labarca {
  display: flex;
  min-height: 80vh;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(14, 165, 233, 0.06) 0%, transparent 60%),
    #07111c;
}

.lbm-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 80px;
}
.lbm-logo {
  width: 100%;
  max-width: 420px;
  margin-bottom: 36px;
  position: relative;
}
.lbm-logo img { width: 100%; }

.lbm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 36px;
}
.lbm-tags .tag:not(:last-child)::after {
  content: '·';
  color: var(--white30);
  margin: 0 12px;
  display: inline-block;
}

.lbm-visual {
  width: 44%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.lbm-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
}
.lbm-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, #07111c 0%, transparent 40%);
  z-index: 1;
}


/* ════════════════════════════════════════
   SECTION 8 — ESCUELA DEL OIDO
   Logo+desc left, 3 program cards right
════════════════════════════════════════ */
#escuela {
  display: flex;
  min-height: 80vh;
  background: #07080f;
}

.esc-left {
  width: 34%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 60px;
  border-right: 1px solid rgba(255,255,255,.05);
  position: relative;
}
.esc-logo {
  width: 100%;
  margin-bottom: 36px;
  position: relative;
}
.esc-logo img { width: 100%; }

.esc-bottom-imgs {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  height: 100px;
}
.esc-thumb {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.esc-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .4;
}

.esc-programs {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 100px 60px;
}

.prog-row {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.prog-row:first-child { border-top: 1px solid rgba(255,255,255,.06); }

.prog-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: rgba(90,141,248,.22);
  flex-shrink: 0;
  width: 48px;
}
.prog-content { flex: 1; }
.prog-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}
.prog-name em { color: var(--indigo); font-style: italic; }
.prog-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--white60);
}
.prog-tag { margin-top: 14px; }


/* ════════════════════════════════════════
   SECTION 9 — CONTACT / FOOTER
   Full-width centered CTA
════════════════════════════════════════ */
#contact {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 60px;
  background: var(--black);
}

.contact-bg {
  position: absolute; inset: 0;
  background-image: url('./images/image13.jpg');
  background-size: cover;
  background-position: center;
  opacity: .1;
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.contact-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.88;
  letter-spacing: 2px;
  margin-bottom: 28px;
}
.contact-heading .outline {
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

.contact-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-style: italic;
  color: var(--white60);
  margin-bottom: 16px;
}

.contact-email {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--blue);
  letter-spacing: 1px;
  margin-bottom: 44px;
}

.contact-cta { display: flex; justify-content: center; gap: 14px; margin-bottom: 56px; }

.social-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}
.social-pill {
  padding: 9px 22px;
  border: 1px solid rgba(255,255,255,.15);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white60);
  cursor: pointer;
  transition: all .2s;
}
.social-pill:hover { border-color: var(--blue); color: var(--blue); }

.footer-copy {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.18);
}

/* ─── SECTION REVEAL ON SCROLL ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 900ms cubic-bezier(.22,.61,.36,1),
    transform 900ms cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ════════════════════════════════════════
   ARTIST CARDS — clickable trigger for modal
════════════════════════════════════════ */
.artist-card[data-artist-id] {
  cursor: pointer;
  transition: transform .3s ease, border-color .3s ease;
}
.artist-card[data-artist-id]:hover,
.artist-card[data-artist-id]:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(45,128,201,.45);
  outline: none;
}

.artist-cta {
  display: inline-block;
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white30);
  transition: color .3s ease, transform .3s ease;
}
.artist-card[data-artist-id]:hover .artist-cta,
.artist-card[data-artist-id]:focus-visible .artist-cta {
  color: var(--blue);
  transform: translateX(3px);
}

/* ════════════════════════════════════════
   MODAL — artist detail dialog
════════════════════════════════════════ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
body.modal-open { overflow: hidden; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 12, .85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: none;
  cursor: pointer;
}

.modal__card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: var(--dark2);
  border: 1px solid rgba(45,128,201,.18);
  transform: translateY(20px);
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
.modal.is-open .modal__card { transform: translateY(0); }

.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  color: var(--white60);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s;
}
.modal__close:hover { color: var(--white); }

.modal__image {
  width: 100%;
  height: 260px;
  background: #050505;
  overflow: hidden;
}
.modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
}

.modal__body {
  padding: 32px 36px 40px;
}
.modal__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}
.modal__desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--white60);
  margin-bottom: 32px;
}

.modal__albums-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.modal__albums-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.modal__album {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal__album img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.modal__album-caption {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--white60);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .modal { padding: 20px 16px; }
  .modal__image { height: 200px; }
  .modal__body { padding: 24px 20px 32px; }
  .modal__albums-list { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* 1. Hero */
  .hero-text-half { padding: 100px 40px 60px 40px; }

  /* 2. Manifesto */
  .manifesto-copy { padding: 80px 40px; }

  /* 3. Setlist / Services */
  #setlist { padding: 80px 40px; }
  .setlist-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .svc-img { height: 180px; }

  /* 4. Philosophy */
  #philosophy { padding: 80px 40px; }

  /* 5. Multiverse */
  #multiverse { padding: 80px 40px; }
  .multiverse-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .brands-row { min-height: auto; }

  /* 6. Imperium — artists & albums reflow to 2x2 */
  #imperium { padding: 80px 40px 0; }
  .imp-top { gap: 36px; }
  .imp-logo { width: 240px; }
  .artists-row {
    flex-wrap: wrap;
    gap: 12px;
  }
  .artist-card { flex: 1 1 calc(50% - 6px); }

  /* 7. La Barca */
  .lbm-copy { padding: 80px 40px; }
  .lbm-logo {
    width: 100%;
    margin-bottom: 28px;
  }

  /* 8. Escuela */
  .esc-left {
    width: 38%;
    padding: 80px 32px;
  }
  .esc-logo { width: 100%; }
  .esc-programs { padding: 80px 40px; }
  .prog-row {
    gap: 20px;
    padding: 24px 0;
  }
  .prog-num {
    width: 40px;
    font-size: 44px;
  }

  /* 9. Contact / Footer */
  #contact { padding: 80px 40px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
════════════════════════════════════════ */
@media (max-width: 768px) {
  /* 1. Hero — stack image above text */
  .hero-text-half {
    padding: 100px 24px 64px;
  }
  .hero-cta {
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero-stats { gap: 32px; }

  /* 2. Manifesto — stack image above text */
  #manifesto {
    flex-direction: column;
    min-height: auto;
  }
  .manifesto-visual {
    width: 100%;
    height: 50vh;
  }
  .manifesto-copy {
    width: 100%;
    padding: 56px 24px 72px;
  }

  /* 3. Setlist / Services — cards stack to 1 column */
  #setlist { padding: 60px 24px; }
  .services-row {
    flex-direction: column;
    gap: 16px;
  }
  .svc-img { height: 200px; }

  /* 4. Philosophy — padding only; content already max-width capped & uses clamp() */
  #philosophy { padding: 60px 24px; }

  /* 5. Multiverse — brand cards stack to 1 column */
  #multiverse { padding: 60px 24px; }
  .brands-row {
    flex-direction: column;
    gap: 16px;
  }
  .brand-card { padding: 36px 28px; }

  /* 6. Imperium — top stacks, artists & albums become 1 column */
  #imperium { padding: 56px 24px 0; }
  .imp-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .imp-logo { width: 100%; }
  .artists-row {
    flex-direction: column;
    gap: 12px;
  }
  .artist-card { flex: 1 1 auto; }
  .artist-logo { height: 200px; }

  /* 7. La Barca — image rises above text via column-reverse (text is DOM-first) */
  #labarca {
    flex-direction: column-reverse;
    min-height: auto;
  }
  .lbm-copy {
    width: 100%;
    padding: 56px 24px 72px;
  }
  .lbm-visual {
    width: 100%;
    height: 50vh;
  }
  .lbm-logo { width: 100%; }

  /* 8. Escuela — left column stacks above programs; border moves to bottom-edge */
  #escuela {
    flex-direction: column;
    min-height: auto;
  }
  .esc-left {
    width: 100%;
    padding: 56px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  .esc-logo { width: 100%; }
  .esc-bottom-imgs { height: 120px; }
  .esc-programs { padding: 56px 24px; }
  .prog-row {
    gap: 16px;
    padding: 20px 0;
  }
  .prog-num {
    width: 36px;
    font-size: 36px;
  }

  /* 9. Contact / Footer — CTAs stack, social pills wrap */
  #contact { padding: 56px 24px; }
  .contact-cta {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    max-width: 280px;
    margin: 0 auto 48px;
  }
  .social-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  /* ─── Mobile text centering across all sections ─── */
  .hero-text-half,
  .manifesto-copy,
  .svc-body,
  .imp-desc,
  .artist-body,
  .lbm-copy,
  .esc-left {
    text-align: center;
    align-items: center;
  }
  .setlist-header,
  .multiverse-header {
    align-items: center;
    text-align: center;
  }
  .hero-cta,
  .hero-stats,
  .lbm-tags {
    justify-content: center;
  }
  .gold-line {
    margin-left: auto;
    margin-right: auto;
  }
  .manifesto-quote {
    border-left: none;
    padding-left: 0;
  }
  .svc-tag { align-self: center; }
  .imp-desc .body-text {
    margin-left: auto;
    margin-right: auto;
  }
}
