:root {
  --cream: #f4eee5;
  --paper: #fffaf4;
  --ink: #171412;
  --black: #080808;
  --black-soft: #101010;
  --muted: #716961;
  --muted-light: rgba(255,255,255,.66);
  --coral: #f05f49;
  --line: rgba(23,20,18,.16);
  --line-light: rgba(255,255,255,.16);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  background: white;
  color: var(--black);
  padding: .7rem 1rem;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.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;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 4.5rem);
  color: white;
  background: linear-gradient(to bottom, rgba(0,0,0,.72), transparent);
  transition: background .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  background: rgba(8,8,8,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-light);
}
.brand-mark { width: 46px; height: 46px; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.site-nav { display: flex; gap: clamp(1rem, 2.5vw, 2.4rem); }
.site-nav a {
  position: relative;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.35rem;
  width: 100%;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
  grid-template-rows: 1fr 62px;
  background: var(--black);
  color: white;
  overflow: hidden;
}
.hero-photo {
  grid-column: 1;
  grid-row: 1;
  min-height: calc(100svh - 62px);
  overflow: hidden;
  background: #111;
}
.hero-photo img {
  width: 100%;
  height: calc(100svh - 62px);
  object-fit: cover;
  object-position: 44% center;
  filter: contrast(1.03) saturate(.9);
}
.hero-brand {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: calc(100svh - 62px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 9rem clamp(2.5rem, 6vw, 7rem) 5rem;
  background: var(--black);
  overflow: hidden;
}
.hero-brand::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: var(--line-light);
}
.hero-symbol {
  position: absolute;
  width: clamp(270px, 35vw, 580px);
  right: clamp(-170px, -9vw, -80px);
  top: 50%;
  transform: translateY(-50%);
  opacity: .055;
  pointer-events: none;
}
.hero-wordmark {
  position: relative;
  z-index: 1;
  width: min(100%, 570px);
}
.hero-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: clamp(2.5rem, 5vw, 5rem);
}
.hero-links a {
  padding-bottom: .3rem;
  border-bottom: 1px solid rgba(255,255,255,.55);
  font-size: .77rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease;
}
.hero-links a:hover { color: var(--coral); border-color: var(--coral); }
.hero-links span { color: var(--coral); }
.hero-footer {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  border-top: 1px solid var(--line-light);
}
.hero-socials { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.hero-socials a, .scroll-link {
  color: rgba(255,255,255,.7);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.hero-socials a:hover, .scroll-link:hover { color: white; }
.scroll-link span { color: var(--coral); }

.section-shell {
  width: min(1240px, calc(100% - 2.5rem));
  margin-inline: auto;
}
.section-label {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-label p, .eyebrow {
  margin: 0;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-label h2, .story-copy h2, .live-overlay h2, .follow-inner h2, .contact-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .94;
}
.section-label h2 { font-size: clamp(4rem, 8vw, 8rem); }
.section-label-light { color: white; }

.music-section {
  padding-block: clamp(5.5rem, 11vw, 10rem);
  background: var(--black);
  color: white;
}
.release-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3vw, 3rem); }
.cover-link {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  overflow: hidden;
  background: #030303;
  border: 1px solid var(--line-light);
}
.cover-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.cover-link:hover img { transform: scale(1.016); }
.release-copy {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(190px, 1.1fr);
  gap: .9rem 2rem;
  padding-top: 1.35rem;
}
.release-copy h3 {
  margin: .08rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
}
.release-copy p { margin: .1rem 0; color: var(--muted-light); }
.release-genre { color: var(--coral) !important; font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.text-links { grid-column: 2; display: flex; gap: 1.2rem; }
.text-links a {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-underline-offset: .3rem;
  text-decoration-color: var(--coral);
}

.photo-triptych {
  display: grid;
  grid-template-columns: 1fr .84fr 1fr;
  min-height: 72svh;
  background: var(--black);
}
.photo-triptych figure { margin: 0; overflow: hidden; min-height: 72svh; }
.photo-triptych img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.photo-triptych figure:first-child img { object-position: 50% 40%; }
.photo-triptych figure:nth-child(2) img { object-position: center 35%; }
.photo-triptych figure:last-child img { object-position: center 42%; }
.photo-triptych figure:hover img { transform: scale(1.018); }

.story-section {
  min-height: 82svh;
  display: grid;
  grid-template-columns: .72fr 1fr .86fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(5rem, 10vw, 9rem) max(1.25rem, calc((100vw - 1240px) / 2));
  background: var(--paper);
  overflow: hidden;
}
.story-mark { display: grid; place-items: center; }
.story-mark img { width: min(100%, 330px); }
.story-copy { max-width: 580px; }
.story-copy h2 { margin-top: .7rem; font-size: clamp(3.7rem, 7vw, 7rem); }
.story-lead {
  margin: 2rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  line-height: 1.17;
}
.story-copy > p:last-child { max-width: 520px; color: var(--muted); }
.story-photo { align-self: end; position: relative; }
.story-photo::after {
  content: "";
  position: absolute;
  inset: auto 8% 0 8%;
  height: 14px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 70%);
  filter: blur(10px);
  pointer-events: none;
}
.story-photo img { width: 100%; max-height: 72svh; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 18px 18px rgba(0,0,0,.08)); }

.live-feature {
  position: relative;
  min-height: 80svh;
  overflow: hidden;
  background: var(--black);
  color: white;
}
.live-feature > img { width: 100%; height: 80svh; object-fit: cover; object-position: center; opacity: .78; }
.live-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.18) 55%, rgba(0,0,0,.25));
}
.live-overlay {
  position: absolute;
  z-index: 1;
  left: max(1.25rem, calc((100vw - 1240px) / 2));
  bottom: clamp(3rem, 8vw, 7rem);
  max-width: 610px;
}
.live-overlay p { margin: 0 0 1rem; color: var(--coral); font-size: .74rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.live-overlay h2 { font-size: clamp(4rem, 8vw, 8rem); }
.live-overlay a {
  display: inline-block;
  margin-top: 2rem;
  padding-bottom: .25rem;
  border-bottom: 1px solid rgba(255,255,255,.6);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}
.live-overlay a:hover { color: var(--coral); border-color: var(--coral); }

.video-section { padding-block: clamp(5.5rem, 11vw, 10rem); background: var(--black-soft); }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.5vw, 2.4rem); }
.video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: #000;
  color: white;
  cursor: pointer;
  text-align: left;
}
.video-card img { width: 100%; height: 100%; object-fit: contain; opacity: .92; transition: transform .55s ease, opacity .3s ease; }
.video-card:hover img { transform: scale(1.015); opacity: .72; }
.video-overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  background: linear-gradient(transparent, rgba(0,0,0,.86));
}
.play-icon { width: 48px; height: 48px; border: 1px solid white; border-radius: 50%; display: grid; place-items: center; font-family: var(--sans); font-size: .8rem; padding-left: .15rem; }

.gallery-section { padding-block: clamp(5.5rem, 11vw, 10rem); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr .95fr;
  grid-template-rows: 330px 270px 360px;
  gap: clamp(.7rem, 1.7vw, 1.35rem);
}
.gallery-grid figure { margin: 0; overflow: hidden; background: #111; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.018); }
.gallery-a { grid-row: 1 / 3; }
.gallery-a img { object-position: center 35%; }
.gallery-b { grid-column: 2 / 4; }
.gallery-c { grid-row: 2 / 4; grid-column: 2; }
.gallery-c img { object-position: center 28%; }
.gallery-d { grid-column: 1; grid-row: 3; }
.gallery-e { grid-column: 3; grid-row: 2; }
.gallery-f { grid-column: 3; grid-row: 3; }
.gallery-f img { object-position: center 30%; }

.follow-section {
  position: relative;
  background: var(--black);
  color: white;
  padding-block: clamp(5rem, 10vw, 9rem);
  overflow: hidden;
}
.follow-inner { text-align: center; }
.follow-inner > img { width: clamp(85px, 10vw, 150px); margin: 0 auto 2rem; }
.follow-inner h2 { font-size: clamp(4rem, 8vw, 8rem); }
.follow-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3.5rem;
  border-top: 1px solid var(--line-light);
}
.follow-links a { display: flex; justify-content: space-between; padding: 1rem .7rem; border-bottom: 1px solid var(--line-light); text-decoration: none; font-weight: 600; }
.follow-links a:hover { background: rgba(240,95,73,.16); }
.follow-links span { color: var(--coral); }

.contact-section {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(3rem, 9vw, 10rem);
  align-items: end;
  padding-block: clamp(5.5rem, 11vw, 9rem);
}
.contact-copy h2 { margin-top: .7rem; font-size: clamp(4rem, 8vw, 8rem); }
.contact-action p { color: var(--muted); }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.2rem;
  padding: .85rem 1.4rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .2s ease;
}
.button:hover { transform: translateY(-2px); }


.contact-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.15rem;
}
.contact-instagram {
  color: var(--ink);
  text-decoration: none;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-instagram:hover { color: var(--coral); }

.site-footer {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem clamp(1.25rem, 4vw, 4.5rem);
  background: var(--black);
  color: white;
  border-top: 1px solid var(--line-light);
}
.site-footer img { width: 220px; }
.site-footer p { margin: 0; text-align: center; color: rgba(255,255,255,.62); font-size: .78rem; }
.site-footer a { font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }

.video-modal { width: min(1100px, calc(100% - 2rem)); padding: 0; border: 0; background: #000; color: white; }
.video-modal::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(4px); }
.modal-close { position: absolute; right: .5rem; top: -.15rem; z-index: 2; border: 0; background: transparent; color: white; font-size: 2.4rem; cursor: pointer; }
.video-frame { position: relative; aspect-ratio: 16/9; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 0;
    background: transparent;
  }
  .menu-toggle span { display: block; width: 24px; height: 1px; background: white; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    background: var(--black);
    border-bottom: 1px solid var(--line-light);
    transition: max-height .3s ease;
  }
  .site-nav.is-open { max-height: 360px; }
  .site-nav a { padding: 1rem 1.5rem; border-top: 1px solid rgba(255,255,255,.09); }

  .hero { grid-template-columns: 1fr; grid-template-rows: minmax(58svh, 690px) auto auto; }
  .hero-photo { grid-column: 1; grid-row: 1; min-height: 0; }
  .hero-photo img { height: 100%; object-position: 43% 38%; }
  .hero-brand { grid-column: 1; grid-row: 2; min-height: 0; padding: 3rem clamp(1.25rem, 5vw, 3rem) 3.5rem; }
  .hero-brand::before { display: none; }
  .hero-symbol { width: 320px; right: -105px; }
  .hero-wordmark { width: min(100%, 510px); }
  .hero-footer { grid-column: 1; grid-row: 3; min-height: 62px; }

  .release-copy { grid-template-columns: 1fr; }
  .text-links { grid-column: 1; }
  .story-section { grid-template-columns: .7fr 1.3fr; }
  .story-photo { grid-column: 1 / -1; max-width: 480px; justify-self: center; }
  .story-photo img { max-height: 660px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 290px 320px; }
  .gallery-a { grid-row: 1 / 3; }
  .gallery-b { grid-column: 2; }
  .gallery-c { grid-column: 2; grid-row: 2 / 4; }
  .gallery-d { grid-column: 1; grid-row: 3; }
  .gallery-e, .gallery-f { display: none; }
  .contact-section { grid-template-columns: 1fr; align-items: start; }
  
.site-footer { grid-template-columns: 1fr; justify-items: center; }
  .site-footer p { order: 3; }
}

@media (max-width: 680px) {
  .section-shell { width: min(100% - 1.5rem, 1240px); }
  .site-header { min-height: 70px; padding-inline: .9rem; }
  .brand-mark { width: 41px; height: 41px; }
  .hero { grid-template-rows: 60svh auto auto; }
  .hero-photo img { object-position: 42% 42%; }
  .hero-brand { padding-top: 2.4rem; }
  .hero-symbol { width: 250px; right: -95px; }
  .hero-links { margin-top: 2.4rem; gap: 1rem 1.4rem; }
  .hero-footer { align-items: flex-end; gap: 1rem; padding-block: .95rem; }
  .hero-socials { max-width: 270px; gap: .8rem 1rem; }
  .section-label { align-items: start; flex-direction: column; gap: .5rem; }
  .section-label h2 { font-size: clamp(4rem, 20vw, 6rem); }
  .release-grid, .video-grid { grid-template-columns: 1fr; }
  .release-grid { gap: 4rem; }
  .photo-triptych { grid-template-columns: 1fr 1fr; min-height: auto; }
  .photo-triptych figure { min-height: 55svh; }
  .photo-triptych figure:nth-child(3) { grid-column: 1 / -1; min-height: 70svh; }
  .story-section { grid-template-columns: 1fr; gap: 2.5rem; padding-inline: 1.25rem; }
  .story-mark img { width: 180px; }
  .story-copy h2 { font-size: clamp(4rem, 19vw, 6rem); }
  .story-photo { width: 100%; }
  .live-feature, .live-feature > img { min-height: 66svh; height: 66svh; }
  .live-feature > img { object-position: 63% center; }
  .live-overlay { left: 1.25rem; right: 1.25rem; bottom: 2.4rem; }
  .live-overlay h2 { font-size: clamp(4rem, 18vw, 6rem); }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-grid figure { display: block; aspect-ratio: 4 / 5; grid-column: auto; grid-row: auto; }
  .gallery-b, .gallery-d, .gallery-e { aspect-ratio: 16 / 10 !important; }
  .follow-inner h2, .contact-copy h2 { font-size: clamp(4rem, 20vw, 6rem); }
  .follow-links { grid-template-columns: 1fr 1fr; }
  .site-footer img { width: 200px; }
}

/* Discografía completa */
.discography-section {
  position: relative;
  padding-block: clamp(5.5rem, 11vw, 10rem);
  background: var(--paper);
  overflow: hidden;
}
.discography-section::before {
  content: "GH";
  position: absolute;
  right: -2vw;
  top: 1.2rem;
  color: rgba(23,20,18,.025);
  font-family: var(--serif);
  font-size: clamp(13rem, 30vw, 35rem);
  line-height: .7;
  pointer-events: none;
}
.discography-list {
  position: relative;
  border-top: 1px solid var(--line);
}
.discography-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  min-height: 132px;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-inline .25s ease, background .25s ease;
}
.discography-row:hover {
  padding-inline: 1.2rem;
  background: rgba(240,95,73,.07);
}
.discography-number {
  color: var(--coral);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
}
.discography-copy p {
  margin: 0 0 .15rem;
  color: var(--muted);
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.discography-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: .98;
}
.discography-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .7rem;
}
.discography-links a {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-height: 43px;
  padding: .7rem .9rem;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.discography-links a:hover {
  background: var(--ink);
  color: white;
}
.discography-links span { color: var(--coral); }

/* The original black-and-white portrait benefits from a centered crop. */
.hero-photo img { object-position: 50% 38%; filter: contrast(1.06) grayscale(1); }
.story-copy > p:last-child { line-height: 1.75; }
.live-overlay { max-width: 760px; }
.live-overlay h2 { font-size: clamp(3.6rem, 7vw, 7rem); }

@media (max-width: 980px) {
  .discography-row { grid-template-columns: 55px minmax(0, 1fr); }
  .discography-links { grid-column: 2; justify-content: flex-start; }
  .hero-photo img { object-position: 50% 36%; }
}

@media (max-width: 680px) {
  .discography-row {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: .8rem;
    min-height: 0;
    padding: 1.45rem 0;
  }
  .discography-row:hover { padding-inline: 0; background: transparent; }
  .discography-copy h3 { font-size: clamp(2.35rem, 13vw, 4rem); }
  .discography-links { grid-column: 1 / -1; padding-left: 42px; justify-content: flex-start; }
  .discography-links a { min-height: 40px; padding: .62rem .72rem; font-size: .64rem; }
  .hero-photo img { object-position: 50% 34%; }
  .live-overlay h2 { font-size: clamp(3rem, 14vw, 5rem); }
}

/* Ajustes de navegación, reproductores y galería ampliada */
section[id] { scroll-margin-top: 76px; }
.hero[id] { scroll-margin-top: 0; }

.spotify-preview {
  grid-column: 1 / -1;
  margin-top: 1.1rem;
}
.spotify-preview > p {
  margin: 0 0 .55rem;
  color: var(--muted-light);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.spotify-preview iframe {
  display: block;
  width: 100%;
  min-height: 152px;
  border: 0;
  border-radius: 12px;
}

.gallery-item {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}
.gallery-item:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: -3px;
}
.gallery-item img { pointer-events: none; }

.gallery-modal {
  width: min(1180px, calc(100% - 2rem));
  max-width: none;
  height: min(88svh, 900px);
  max-height: none;
  padding: 0;
  border: 0;
  background: #050505;
  color: white;
  overflow: hidden;
}
.gallery-modal::backdrop {
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(7px);
}
.gallery-stage {
  width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  place-items: center;
  padding: 2.4rem 4.7rem 1.1rem;
}
.gallery-stage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}
.gallery-close,
.gallery-arrow {
  position: absolute;
  z-index: 2;
  border: 0;
  background: rgba(0,0,0,.38);
  color: white;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.gallery-close:hover,
.gallery-arrow:hover { color: var(--coral); background: rgba(0,0,0,.72); }
.gallery-close {
  top: .55rem;
  right: .75rem;
  width: 48px;
  height: 48px;
  font-size: 2.35rem;
  line-height: 1;
}
.gallery-arrow {
  top: 50%;
  width: 54px;
  height: 76px;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 3.7rem;
  line-height: .7;
}
.gallery-prev { left: .35rem; }
.gallery-next { right: .35rem; }

@media (max-width: 680px) {
  .gallery-modal {
    width: 100%;
    height: 100svh;
    margin: 0;
  }
  .gallery-stage { padding: 4rem .55rem 1rem; }
  .gallery-arrow {
    top: auto;
    bottom: .7rem;
    width: 58px;
    height: 54px;
    transform: none;
    background: rgba(0,0,0,.64);
  }
  .gallery-prev { left: .7rem; }
  .gallery-next { right: .7rem; }
}
