 /* ══════════════════════════════════════════════════════
   RUTA SONORA — styles.css
   Single stylesheet for all pages.
   Fonts: Bebas Neue (display) · Barlow (body)

   SECTIONS
   01  Tokens & Reset
   02  Layout helpers
   03  Typography helpers
   04  Buttons
   05  Navigation (shared)
   06  Footer (shared) — REEMPLAZADO con diseño de segunda hoja
   07  CTA section (shared)
   08  Artist card (shared – Home + Artistas)
   09  PAGE: Home
   10  PAGE: Artistas (gallery)
   11  PAGE: Artista Perfil
   12  Responsive (ajustado, sin referencias al antiguo footer)
══════════════════════════════════════════════════════ */


/* ──────────────────────────────────────────────────────
   01  TOKENS & RESET
────────────────────────────────────────────────────── */
:root {
  --c-black:      #000000;
  --c-dark-brown: #1a0e00;
  --c-orange:     #ff6b35;
  --c-gold:       #ffa600;
  --c-crimson:    #d62828;
  --c-muted:      #99a1af;
  --c-dim:        #6a7282;
  --c-white:      #ffffff;
  --c-card-bg:    #111111;

  --font-d: 'Bebas Neue', sans-serif;
  --font-b: 'Barlow', sans-serif;

  --px: 142px;   /* page horizontal padding */
  --nav-h: 75px; /* fixed nav height        */
}

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

html { 
  scroll-behavior: smooth; 
}

body {
  background: var(--c-black);
  color: var(--c-white);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

a { 
  text-decoration: none; 
  color: inherit; 
}

ul { 
  list-style: none; 
}

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


/* ──────────────────────────────────────────────────────
   02  LAYOUT HELPERS
────────────────────────────────────────────────────── */
.container {
  max-width: calc(1280px + var(--px) * 2);
  padding-left:  var(--px);
  padding-right: var(--px);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}


/* ──────────────────────────────────────────────────────
   03  TYPOGRAPHY HELPERS
────────────────────────────────────────────────────── */
/* eyebrow labels */
.label {
  font-family: var(--font-b);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  display: block;
}
.label--orange  { color: var(--c-gold);    }
.label--red     { color: var(--c-orange);  }
.label--crimson { color: var(--c-crimson); }

/* section headings */
.heading-xl {
  font-family: var(--font-d);
  font-size: 80px;
  letter-spacing: 3px;
  line-height: 1;
}
.heading-xl--orange { color: var(--c-orange); }
.heading-xl--gold   { color: var(--c-gold);   }

/* symmetric orange gradient divider line */
.divider-orange {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0)          0%,
    rgba(255,107,53,.14)   7%,
    rgba(255,107,53,.29)  14%,
    rgba(255,107,53,.43)  21%,
    rgba(255,107,53,.57)  29%,
    rgba(255,107,53,.71)  36%,
    rgba(255,107,53,.86)  43%,
    rgb(255,107,53)       50%,
    rgba(255,107,53,.86)  57%,
    rgba(255,107,53,.71)  64%,
    rgba(255,107,53,.57)  71%,
    rgba(255,107,53,.43)  79%,
    rgba(255,107,53,.29)  86%,
    rgba(255,107,53,.14)  93%,
    rgba(0,0,0,0)        100%
  );
}
.divider-gold {
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0)          0%,
    rgba(255,166,0,.14)    7%,
    rgba(255,166,0,.29)   14%,
    rgba(255,166,0,.43)   21%,
    rgba(255,166,0,.57)   29%,
    rgba(255,166,0,.71)   36%,
    rgba(255,166,0,.86)   43%,
    rgb(255,166,0)        50%,
    rgba(255,166,0,.86)   57%,
    rgba(255,166,0,.71)   64%,
    rgba(255,166,0,.57)   71%,
    rgba(255,166,0,.43)   79%,
    rgba(255,166,0,.29)   86%,
    rgba(255,166,0,.14)   93%,
    rgba(0,0,0,0)        100%
  );
}


/* ──────────────────────────────────────────────────────
   04  BUTTONS
────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 18px;
  letter-spacing: 2px;
  padding: 16px 32px;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  border: none;
  background: none;
}
.btn:hover { opacity: .85; transform: translateY(-1px); }

.btn--orange {
  background: var(--c-orange);
  color: var(--c-white);
  box-shadow: 0 0 10px rgba(255,107,53,.3);
}
.btn--outline-gold {
  border: 2px solid var(--c-gold);
  color: var(--c-gold);
  font-size: 16px;
  letter-spacing: 1.5px;
  padding: 12px 24px;
}
.btn--outline-gold-wide {
  border: 2px solid var(--c-gold);
  color: var(--c-gold);
  box-shadow: 0 0 15px rgba(255,166,0,.2);
  min-width: 260px;
}
.btn--gradient-red {
  background: linear-gradient(90deg, var(--c-orange) 0%, var(--c-crimson) 100%);
  color: var(--c-white);
  min-width: 268px;
}
.btn--black {
  background: var(--c-black);
  color: var(--c-gold);
  padding: 18px 33px;
}
.btn--white-outline {
  border: 2px solid var(--c-white);
  color: var(--c-white);
  padding: 16px 35px;
}
/* small outline gold (section headers) */
.btn--sm-gold {
  border: 2px solid var(--c-gold);
  color: var(--c-gold);
  font-family: var(--font-d);
  font-size: 14px;
  letter-spacing: 1.5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: opacity .2s;
  background: none;
}
.btn--sm-gold:hover { opacity: .75; }


/* ──────────────────────────────────────────────────────
   05  NAVIGATION (shared)
────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(0,0,0,.8);
  border-bottom: 1px solid rgba(255,107,53,.3);
  backdrop-filter: blur(8px);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-left: var(--px);
  padding-right: var(--px);
  margin: 0 auto;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.nav__title {
  font-family: var(--font-d);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--c-gold);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav__link {
  font-family: var(--font-b);
  font-size: 16px;
  color: var(--c-white);
  transition: color .2s;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--active { 
  color: var(--c-gold); 
}


/* ──────────────────────────────────────────────────────
   06  FOOTER (shared) — REEMPLAZADO (diseño de segunda hoja)
────────────────────────────────────────────────────── */
.rs-footer {
  background: var(--c-black);
  border-top: 1px solid rgba(255, 107, 53, 0.3);
  padding: 49px var(--px) 0;
}

 .rs-footer__cols {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;       /* <--- AGREGA ESTO: Permite saltos de línea */
  gap: 40px;             /* <--- AGREGA ESTO: Separa las columnas si se envuelven */
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 33px;
}

.rs-footer__col {
  width: 284px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rs-footer__brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rs-footer__brand-row img {
  width: 42px;
  height: 42px;
  object-fit: cover;
}

.rs-footer__brand-name {
  font-family: var(--font-d);
  color: var(--c-gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.rs-footer__tagline {
  color: var(--c-muted);
  font-size: 14px;
}

.rs-footer__heading {
  font-family: var(--font-d);
  color: var(--c-orange);
  font-size: 16px;
  letter-spacing: 1.5px;
}

.rs-footer__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rs-footer__list a,
.rs-footer__list span {
  color: var(--c-muted);
  font-size: 14px;
}

.rs-footer__list a {
  text-decoration: underline;
  cursor: pointer;
}

.rs-footer__bottom {
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  padding-top: 33px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
}

.rs-footer__copy {
  color: var(--c-dim);
  font-size: 14px;
}


/* ──────────────────────────────────────────────────────
   07  CTA SECTION (shared – Únete a la Ruta)
────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  background: linear-gradient(162deg, var(--c-orange) 0%, var(--c-crimson) 100%);
}
.cta-section__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .1;
  background: repeating-linear-gradient(
    45deg,
    rgba(0,0,0,.15) 0px,
    rgba(0,0,0,.15) 1px,
    transparent 1px,
    transparent 8px
  );
}
.cta-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.cta-section__title {
  font-family: var(--font-d);
  font-size: 100px;
  letter-spacing: 4px;
  color: var(--c-gold);
  line-height: 1;
}
.cta-section__subtitle {
  font-family: var(--font-b);
  font-size: 20px;
  color: rgba(255,255,255,.9);
  max-width: 734px;
  line-height: 1.4;
}
.cta-section__actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}


/* ──────────────────────────────────────────────────────
   08  ARTIST CARD (shared – Home + Artistas gallery)
   Portrait card: img fills the card, gradient overlay,
   text block bottom-left.
────────────────────────────────────────────────────── */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.artist-card {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1; /* si las fotos son horizontales */
  overflow: hidden;
  border: 2px solid transparent;
  background: #1a1a1a;
  cursor: pointer;
  transition: border-color .3s, transform .3s;
}
.artist-card:hover {
  border-color: rgba(255,107,53,.5);
  transform: scale(1.01);
}

/* THE KEY: img is a direct child, fills the card completely */
.artist-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .45s ease;
}
.artist-card:hover > img { transform: scale(1.05); }

.artist-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.9)   0%,
    rgba(0,0,0,.4)  40%,
    rgba(0,0,0,0)  100%
  );
  opacity: .85;
  pointer-events: none;
}

/* 2px orange bar at bottom (Figma ArtistCard accent) */
.artist-card__bar {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--c-orange);
  pointer-events: none;
  z-index: 2;
}

.artist-card__info {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1;
}
.artist-card__genre {
  font-family: var(--font-b);
  font-size: 14px;
  letter-spacing: 1.4px;
  color: var(--c-gold);
  line-height: 20px;
}
.artist-card__name {
  font-family: var(--font-d);
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--c-orange);
  line-height: 1;
}


/* ══════════════════════════════════════════════════════
   09  PAGE: HOME (index.html)
══════════════════════════════════════════════════════ */

/* Hero */
.hero {
  position: relative;
  height: 808px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  opacity: .4;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--c-black) 0%,
    rgba(0,0,0,.5) 50%,
    var(--c-black) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 976px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 20px;
}

.hero__title {
  font-family: var(--font-d);
  font-size: 140px;
  letter-spacing: 4px;
  line-height: .9;
  color: var(--c-gold);
  text-transform: uppercase;
}

.hero__subtitle {
  font-family: var(--font-b);
  font-size: 20px;
  line-height: 1.4;
  color: rgba(254,243,198,.8);
  max-width: 672px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

/* Corrección final para el botón de Scroll con SVG */
.hero__scroll {
  position: absolute;
  bottom: 35px;
  left: 50%;
  width: 32px;  
  height: 32px;
  z-index: 10;  
  cursor: pointer;
  margin-left: -16px; 
  color: var(--c-gold);
  filter: drop-shadow(0px 0px 8px rgba(255, 166, 0, 0.5));
  animation: heroBounce 2s ease-in-out infinite;
}

.hero__scroll svg { 
  width: 100%; 
  height: 100%; 
  display: block; 
}

.hero__scroll svg path {
  stroke: currentColor !important;
  stroke-width: 2.5px;
}

@keyframes heroBounce {
  0%, 100% { 
    transform: translateY(0); 
    opacity: 0.7;
  }
  50% { 
    transform: translateY(10px); 
    opacity: 1;
  }
}
 

/* Home sections wrapper */
.home-section {
  position: relative;
  padding: 96px 0;
}
.home-section--dark  { background: var(--c-black); }
.home-section--brown { background: var(--c-dark-brown); }

/* section divider line */
.home-section__divider {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
}

/* section header row */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}
.section-header--solo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 64px;
}
.section-header--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 64px;
  text-align: center;
}
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* Events grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.event-card {
  border: 2px solid rgba(255,107,53,.3);
  padding: 26px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: border-color .3s;
}
.event-card:hover { border-color: var(--c-orange); }
.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  border: 2px solid var(--c-gold);
  background: var(--c-black);
  flex-shrink: 0;
}
.event-card__day {
  font-family: var(--font-d);
  font-size: 32px;
  color: var(--c-white);
  line-height: 1;
}
.event-card__month {
  font-family: var(--font-b);
  font-size: 12px;
  letter-spacing: 1.2px;
  color: var(--c-white);
}
.event-card__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.event-card__name {
  font-family: var(--font-d);
  font-size: 28px;
  letter-spacing: 1.5px;
  color: var(--c-orange);
  line-height: 1;
}
.event-card__venue {
  font-family: var(--font-b);
  font-size: 16px;
  color: var(--c-muted);
}

.event-card__time {
  font-family: var(--font-b);
  font-size: 16px;
  color: var(--c-muted);
}
.event-card__artists {
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--c-crimson);
}

/* Releases grid */
.glow-blob {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: var(--c-orange);
  filter: blur(64px);
  opacity: .05;
  left: 50%; top: 110px;
  transform: translateX(-50%);
  pointer-events: none;
}
.releases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.release-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: transform .3s;
}
.release-card:hover { transform: translateY(-4px); }
.release-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color .3s;
}
.release-card:hover .release-card__img-wrap { border-color: rgba(255,107,53,.3); }
.release-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.release-card:hover .release-card__img-wrap img { transform: scale(1.04); }
.release-card__tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--c-crimson);
  color: var(--c-white);
  font-family: var(--font-b);
  font-size: 12px;
  letter-spacing: 1.2px;
  padding: 4px 12px;
}
.release-card__title {
  font-family: var(--font-d);
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--c-orange);
}
.release-card__artist {
  font-family: var(--font-b);
  font-size: 16px;
  color: var(--c-muted);
}


/* ══════════════════════════════════════════════════════
   10  PAGE: ARTISTAS (artistas.html)
══════════════════════════════════════════════════════ */

/* Page header block (DESCUBRE / ARTISTAS) */
.page-header {
  background: var(--c-black);
  padding-top: var(--nav-h);
  overflow: hidden;
}
.page-header__inner {
  padding-top: 96px;
  padding-bottom: 96px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-header__eyebrow {
  font-family: var(--font-b);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1.8px;
  color: var(--c-gold);
}
.page-header__title {
  font-family: var(--font-d);
  font-size: 80px;
  letter-spacing: 3px;
  line-height: 1;
  color: var(--c-orange);
}

/* Genre filter bar */
.filter-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  height: 70px;
  background: rgba(0,0,0,.95);
  border-bottom: 1px solid rgba(255,107,53,.2);
}
.filter-bar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.filter-bar__inner::-webkit-scrollbar { display: none; }

.filter-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 37px;
  padding: 0 16px;
  background: transparent;
  border: 2px solid rgba(255,107,53,.3);
  font-family: var(--font-d);
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--c-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .2s, color .2s, background .2s;
}
.filter-btn:hover {
  border-color: var(--c-orange);
  color: var(--c-white);
}
.filter-btn--active,
.filter-btn--active:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-black);
}

/* Gallery body */
.gallery-section {
  background: var(--c-black);
  padding-top: 64px;
  padding-bottom: 96px;
}
.gallery-count {
  font-family: var(--font-b);
  font-size: 14px;
  letter-spacing: 1.4px;
  color: var(--c-muted);
  margin-bottom: 32px;
  display: block;
}
.gallery-empty {
  font-family: var(--font-b);
  font-size: 16px;
  color: var(--c-muted);
  text-align: center;
  padding: 64px 0;
}


/* ══════════════════════════════════════════════════════
   11  PAGE: ARTISTA PERFIL (artista-perfil.html)
══════════════════════════════════════════════════════ */

/* Hero / band photo */
.profile-hero {
  position: relative;
  height: 560px;
  background: var(--c-card-bg);
  overflow: hidden;
  margin-top: var(--nav-h);
}

.profile-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
   background: #111;
  object-position: center 25%; /* mueve el foco un poco hacia arriba */
  display: block;
  opacity: .86;
}

.profile-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.09) 0%,
    rgba(0,0,0,.04) 40%,
    rgba(0,0,0,.01) 100%
  );
  pointer-events: none;
}

.profile-hero__back {
  position: absolute;
  top: 32px;
  left: var(--px);
  z-index: 1;
  font-family: var(--font-b);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--c-muted);
  transition: color .2s;
}
.profile-hero__back:hover { color: var(--c-gold); }

.profile-hero__bar {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--c-orange);
}

/* Identity block (band name + genre pill) */
.profile-identity {
  background: var(--c-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px var(--px) 40px;
  text-align: center;
}
.profile-identity__name {
  font-family: var(--font-d);
  font-size: 96px;
  letter-spacing: 4px;
  color: var(--c-white);
  line-height: 1;
}
.profile-identity__genre {
  display: inline-block;
  background: var(--c-orange);
  color: var(--c-white);
  font-family: var(--font-b);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.4px;
  padding: 6px 20px;
}

/* Body: main column + sidebar */
.profile-body {
  background: var(--c-black);
  padding: 64px var(--px) 80px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.profile-main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  min-width: 0;
}

/* Section label (4px bar + title + rule) */
.profile-section { display: flex; flex-direction: column; gap: 24px; }
.profile-section__label {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.profile-section__heading-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.profile-section__bar {
  width: 4px; height: 28px;
  background: var(--c-orange);
  flex-shrink: 0;
}
.profile-section__title {
  font-family: var(--font-d);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--c-white);
  line-height: 1;
}
.profile-section__rule {
  width: 100%; height: 1px;
  background: rgba(255,107,53,.2);
}
.profile-section__body {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-muted);
  text-align: justify;
}

/* Members grid */
.members-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.member-card {
  width: 280px;
  background: rgba(255,107,53,.04);
  border: 1px solid rgba(255,107,53,.15);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .2s;
}
.member-card:hover { border-color: rgba(255,107,53,.35); }
.member-card__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,107,53,.15);
  border: 2px solid rgba(255,107,53,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 19px;
  letter-spacing: 1px;
  color: var(--c-orange);
  margin-bottom: 8px;
}
.member-card__name {
  font-family: var(--font-b);
  font-weight: 500;
  font-size: 14px;
  color: var(--c-white);
}
.member-card__role {
  font-family: var(--font-b);
  font-size: 13px;
  color: var(--c-muted);
}
.member-card__handle {
  font-family: var(--font-b);
  font-size: 13px;
  color: var(--c-orange);
  transition: color .2s;
}
.member-card__handle:hover { color: var(--c-gold); }

/* Sidebar cards */
.profile-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.sidebar-card {
  background: var(--c-card-bg);
  border: 2px solid rgba(255,107,53,.3);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sidebar-card__title {
  font-family: var(--font-d);
  font-size: 22px;
  letter-spacing: 1.5px;
  color: var(--c-gold);
  margin-bottom: 12px;
}
.sidebar-card__rule {
  width: 100%; height: 1px;
  background: rgba(255,107,53,.2);
  margin-bottom: 4px;
}

/* Discography list */
.disco-list { display: flex; flex-direction: column; }
.disco-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 10px;
  transition: background .15s;
}
.disco-row:hover { background: rgba(255,107,53,.04); }
.disco-row__left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.disco-row__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-orange);
  flex-shrink: 0;
}
.disco-row__dot--gold { background: var(--c-gold); }
.disco-row__name {
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--c-muted);
  white-space: normal;
}
.disco-row--latest .disco-row__name { color: var(--c-white); }
.disco-row__year {
  font-family: var(--font-b);
  font-size: 13px;
  color: rgba(153,161,175,.7);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Contact list */
.contact-list { display: flex; flex-direction: column; gap: 16px; margin-top: 4px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item__icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,107,53,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-orange);
}
.contact-item__icon svg { width: 18px; height: 18px; stroke: currentColor; }
.contact-item__info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.contact-item__label {
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--c-muted);
  display: block;
}
.contact-item__value {
  font-family: var(--font-b);
  font-size: 13px;
  color: var(--c-white);
  word-break: break-all;
  transition: color .2s;
}
.contact-item__value:hover { color: var(--c-gold); }

/* Platform pills row */
.platforms-section {
  background: var(--c-black);
  padding: 56px var(--px) 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.platforms-label {
  font-family: var(--font-b);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--c-muted);
}
.platforms-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255,107,53,.25);
  font-family: var(--font-b);
  font-size: 13px;
  color: var(--c-muted);
  transition: border-color .2s, color .2s, background .2s;
  white-space: nowrap;
}
.platform-pill:hover {
  border-color: var(--c-orange);
  color: var(--c-white);
  background: rgba(255,107,53,.06);
}
.platform-pill__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-orange);
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════
   12  RESPONSIVE — ajustado (sin referencias al antiguo footer)
══════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  :root { 
    --px: 40px;
  }

  .hero__title         { font-size: 90px; }
  .page-header__title  { font-size: 64px; }
  .cta-section__title  { font-size: 72px; }

  .artists-grid        { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .releases-grid       { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .profile-body        { grid-template-columns: 1fr; gap: 40px; }
  .profile-sidebar     { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  
  .nav__inner {
    padding-left: var(--px);
    padding-right: var(--px);
  }
}

@media (max-width: 768px) {
  :root { 
    --px: 16px;
  }

  /* NAV MÓVIL CORREGIDO */
  .nav {
    height: auto;
    overflow: hidden;
    padding: 12px 0;
  }

  .nav__inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-left: var(--px);
    padding-right: var(--px);
    height: auto;
  }

  .nav__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

  .nav__logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .nav__title {
    font-size: 22px;
    white-space: nowrap;
  }

  .nav__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    width: 100%;
    padding: 0;
  }

  .nav__link {
    font-size: 14px;
    padding: 4px 0;
    white-space: nowrap;
  }

  /* HERO */
  .hero {
    height: 100vh;
    min-height: 580px;
    padding-top: 110px;   /* <--- se reemplaza var(--nav-h) */
    padding-bottom: 40px;
    overflow: hidden;
  }

  .hero__title { 
    font-size: 42px;
    line-height: 1.1;
    word-break: break-word;
  }

  .hero__subtitle {
    font-size: 15px;
    max-width: 90%;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    gap: 12px;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  /* GLOW BLOB - CORREGIDO */
  .glow-blob {
    width: 300px;
    height: 300px;
    top: 50px;
    opacity: 0.08;
  }

  /* SECCIONES */
  .home-section {
    padding: 60px 0;
    overflow: hidden; /* Evita desbordes */
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
  }

  .heading-xl {
    font-size: 42px;
  }

  /* GRILLAS */
  .artists-grid,
  .releases-grid,
  .events-grid { 
    grid-template-columns: 1fr; 
    gap: 28px;
  }

  .event-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .event-card__date {
    margin: 0 auto;
  }

  /* PROFILE SIDEBAR */
  .profile-sidebar {
    grid-template-columns: 1fr;
    position: static;
  }

  .profile-identity__name {
    font-size: 48px;
  }

  .profile-body {
    padding: 40px var(--px) 60px;
  }

  .platforms-section {
    padding: 40px var(--px) 60px;
  }

  /* CTA */
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-section__title {
    font-size: 48px;
  }
  
  .cta-section__subtitle {
    font-size: 16px;
    padding: 0 20px;
  }
  
  .cta-section__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 280px;
  }
  
  .cta-section__actions .btn {
    width: 100%;
    text-align: center;
  }

  /* FILTER BAR */
  .filter-bar {
    height: 56px;
    top: 110px;  /* <--- se reemplaza var(--nav-h) + 10 */
  }
  
  .filter-btn {
    font-size: 12px;
    height: 32px;
    padding: 0 12px;
  }

  /* CONTENEDOR - asegurar que no se desborde */
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    max-width: 100% !important;
  }

  /* ===== FOOTER - CORRECCIÓN DESBORDE ===== */
  .rs-footer {
    padding: 49px 16px 0;   /* fuerza padding lateral fijo */
    overflow: hidden;       /* evita cualquier scroll horizontal */
  }

  .rs-footer__cols {
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }

  .rs-footer__col {
    width: 100%;
    min-width: 0;           /* evita que el contenido fuerce un ancho mayor */
    box-sizing: border-box;
  }

  .rs-footer__brand-row {
    display: flex;
    flex-wrap: wrap;        /* permite que el texto baje si es necesario */
    align-items: center;
    gap: 8px;
  }

  .rs-footer__brand-row img {
    width: 36px;            /* reduce un poco en móvil */
    height: 36px;
    flex-shrink: 0;
  }

  .rs-footer__brand-name {
    font-size: 18px;
    white-space: normal;    /* permite que el texto se rompa */
    word-break: break-word;
  }

  .rs-footer__tagline {
    font-size: 14px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .rs-footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__title { 
    font-size: 32px; 
  }
  
  .heading-xl {
    font-size: 32px;
  }
  
  .nav__title {
    font-size: 18px;
  }
  
  .nav__logo {
    width: 30px;
    height: 30px;
  }
  
  .nav__links {
    gap: 8px 14px;
  }
  
  .nav__link {
    font-size: 12px;
  }
  
  .profile-identity__name {
    font-size: 36px;
  }
  
  .profile-hero {
    height: 250px;
  }
  
  .cta-section__title {
    font-size: 36px;
  }
}

/* Ajuste extra para pantallas muy pequeñas */
@media (max-width: 400px) {
  .hero__title {
    font-size: 28px;
  }
  .glow-blob {
    width: 200px;
    height: 200px;
    top: 30px;
    opacity: 0.06;
  }
}