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

:root {
  --bg: #f7f7f7;
  --bg-alt: #ececec;
  --fg: #0d0d0d;
  --fg-soft: rgba(13,13,13,0.66);
  --silver: #5a5a5a;
  --silver-bright: #1a1a1a;
  --line: rgba(0,0,0,0.13);
  --card: #ffffff;

  --fz-display: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
  --fz-body: 'Inter', -apple-system, sans-serif;
  --max: 1140px;
}

:root[data-theme="dark"] {
  --bg: #070707;
  --bg-alt: #111111;
  --fg: #f2f2f2;
  --fg-soft: rgba(242,242,242,0.65);
  --silver: #b9b9b9;
  --silver-bright: #ffffff;
  --line: rgba(255,255,255,0.13);
  --card: #121212;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--fz-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.25s ease, color 0.25s ease;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--silver-bright); color: var(--bg); }
:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; border-radius: 2px; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

.eyebrow { display: flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--silver); margin-bottom: 18px; }
.eyebrow::before { content: ''; width: 22px; height: 1px; background: currentColor; opacity: 0.7; }

h1, h2, h3 { font-family: var(--fz-display); font-weight: 700; text-wrap: balance; letter-spacing: -0.01em; }
h1 { font-size: clamp(38px, 6vw, 68px); line-height: 1.05; }
h2 { font-size: clamp(28px, 4vw, 38px); line-height: 1.15; }
h3 { font-size: 20px; line-height: 1.3; font-weight: 700; }
p.lead { font-size: 18px; color: var(--fg-soft); max-width: 46ch; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: var(--bg); border-bottom: 1px solid var(--line); }
.nav-in { max-width: var(--max); margin: 0 auto; padding: 0 28px; height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { font-family: var(--fz-display); font-weight: 700; font-size: 17px; display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 30px; height: 30px; object-fit: contain; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 12.5px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--fg-soft); transition: color 0.2s; }
.nav-links a:hover { color: var(--fg); }
.nav-tools { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.lang-switch button { background: none; border: none; font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; color: var(--fg-soft); padding: 6px 12px; cursor: pointer; }
.lang-switch button.active { background: var(--fg); color: var(--bg); }
.theme-toggle { background: none; border: 1px solid var(--line); border-radius: 50%; width: 34px; height: 34px; color: var(--fg); font-size: 15px; cursor: pointer; line-height: 1; }
.nav-toggle { display: none; background: none; border: none; color: var(--fg); font-size: 22px; line-height: 1; padding: 10px; margin: -10px; cursor: pointer; }

/* HERO */
.hero { padding: 100px 0 96px; overflow: hidden; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero .lead { margin: 22px 0 0; }
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; padding: 14px 26px; border-radius: 9px; border: 1px solid transparent; cursor: pointer; transition: opacity 0.2s, transform 0.2s, border-color 0.2s; }
.btn-accent { background: var(--fg); color: var(--bg); }
.btn-accent:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--fg); }
.btn-outline:hover { border-color: var(--fg); }

/* SECTIONS */
section { position: relative; }
.sec-pad { padding: 96px 0; }
.on-ink { background: var(--bg-alt); }
.sec-head { max-width: 640px; margin-bottom: 44px; }

/* ARTISTAS */
.roster-layout { display: grid; grid-template-columns: 200px 1fr; gap: 36px; align-items: start; }
.roster-names { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 96px; }
.roster-names button { text-align: left; background: none; border: none; font-family: var(--fz-display); font-weight: 700; font-size: 19px; color: var(--fg-soft); cursor: pointer; padding: 2px 0; transition: color 0.2s; }
.roster-names button:hover, .roster-names button.active { color: var(--fg); }
.artist-grid { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x proximity; padding-bottom: 10px; }
.artist-card { flex: 0 0 260px; scroll-snap-align: start; background: var(--card); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; cursor: pointer; transition: border-color 0.2s; }
.artist-card:hover { border-color: var(--silver); }
.artist-photo { aspect-ratio: 1; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; font-family: var(--fz-display); font-size: 40px; font-weight: 700; color: var(--silver); letter-spacing: 0.02em; }
.artist-body { padding: 22px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.artist-meta { font-size: 12.5px; color: var(--fg-soft); }
.artist-tag { font-size: 11.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--silver); margin: 8px 0 4px; }
.artist-body p { font-size: 14.5px; color: var(--fg-soft); flex: 1; margin: 4px 0 14px; }
.artist-links { display: flex; gap: 14px; flex-wrap: wrap; padding-top: 12px; border-top: 1px solid var(--line); }
.artist-links a { font-size: 12.5px; font-weight: 600; color: var(--fg); border-bottom: 1px solid var(--silver); padding-bottom: 2px; }
.artist-links a:hover { opacity: 0.7; }

/* PERFIL DE ARTISTA (overlay) */
.artist-overlay { position: fixed; inset: 0; background: var(--bg); z-index: 200; display: none; overflow-y: auto; }
.artist-overlay.open { display: block; }
.overlay-close { position: fixed; top: 22px; left: 24px; background: none; border: none; color: var(--fg); font-size: 30px; line-height: 1; cursor: pointer; z-index: 1; }
.overlay-nav { position: fixed; top: 22px; right: 24px; display: flex; gap: 10px; z-index: 1; }
.overlay-nav button { background: none; border: 1px solid var(--line); border-radius: 50%; width: 38px; height: 38px; color: var(--fg); cursor: pointer; font-size: 16px; }
.overlay-nav button:hover { border-color: var(--fg); }
.overlay-body { max-width: 620px; margin: 0 auto; padding: 110px 28px 90px; text-align: center; }
.overlay-photo { width: 200px; height: 200px; margin: 0 auto 26px; border-radius: 16px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; font-family: var(--fz-display); font-size: 58px; font-weight: 700; color: var(--silver); }
.overlay-body #overlayMeta { display: block; margin: 6px 0 14px; }
.overlay-body .artist-tag { display: inline-block; margin-bottom: 20px; }
.overlay-body #overlayBio { color: var(--fg-soft); font-size: 16px; max-width: 52ch; margin: 0 auto; }
.overlay-body .artist-links { justify-content: center; margin: 26px 0 0; border-top: none; padding-top: 0; }
.overlay-discog { font-size: 13px; color: var(--fg-soft); margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.about-copy p { color: var(--fg-soft); margin-bottom: 18px; max-width: 62ch; }
.about-founders { display: flex; flex-direction: column; gap: 24px; }
.founder-item { border-top: 1px solid var(--line); padding-top: 16px; }
.founder-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--silver); margin-bottom: 6px; }
.about-email { display: inline-block; font-size: 15px; font-weight: 600; color: var(--fg); border-bottom: 1px solid var(--silver); padding-bottom: 2px; }
.about-email:hover { opacity: 0.7; }

/* NEWSLETTER */
.newsletter-sec .lead { margin: 14px 0 30px; }
.newsletter-form { display: flex; gap: 12px; max-width: 460px; flex-wrap: wrap; }
.newsletter-form input { flex: 1; min-width: 200px; background: var(--card); border: 1px solid var(--line); border-radius: 8px; color: var(--fg); font-size: 14.5px; font-family: var(--fz-body); padding: 13px 16px; }
.newsletter-form input:disabled { opacity: 0.6; cursor: not-allowed; }
.newsletter-form button { background: var(--bg-alt); color: var(--fg-soft); border: 1px solid var(--line); border-radius: 8px; padding: 13px 22px; font-weight: 600; font-size: 14px; cursor: not-allowed; }

/* FOOTER */
.site-footer { border-top: 1px solid var(--line); padding: 40px 0; }
.footer-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12.5px; font-weight: 600; color: var(--fg-soft); }
.footer-links a:hover { color: var(--fg); }
.footer-copy { font-size: 12.5px; color: var(--fg-soft); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .roster-layout { grid-template-columns: 1fr; }
  .roster-names { position: static; flex-direction: row; flex-wrap: wrap; gap: 8px 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }

  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: 4px 28px 18px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); text-transform: none; font-size: 15px; letter-spacing: normal; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .sec-pad { padding: 64px 0; }
  .hero { padding: 64px 0 56px; }
  .artist-card { flex-basis: 220px; }
  .overlay-body { padding-top: 90px; }
  .footer-in { flex-direction: column; align-items: flex-start; }
}
