/* =============================================================
   BLOODTEARS MUSIC — styles.css
   Archetype: Editorial Dark Warm (adaptado a identidad urbana)
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
@property --mesh-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  --bg:        #0c0908;
  --bg-2:      #141010;
  --bg-3:      #1e1714;
  --bg-4:      #271e19;
  --cream:     #f4ecdc;
  --cream-2:   #ddd0b8;
  --cream-3:   #8f8072;
  --accent:    #b3121e;
  --accent-2:  #8a0d17;
  --accent-soft: rgba(179, 18, 30, 0.18);
  --gold:      #d9a648;
  --gold-soft: rgba(217, 166, 72, 0.16);
  --line:      rgba(244, 236, 220, 0.12);
  --line-soft: rgba(244, 236, 220, 0.06);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
  --container: 1240px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--cream-2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; }

::selection { background: var(--accent); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1.2rem; background: var(--gold); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 700;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

@media (min-width: 720px) { .container { padding-inline: 32px; } }
@media (min-width: 1280px) { .container { padding-inline: 48px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--gold);
}

.section-pad { padding-block: clamp(64px, 10vw, 128px); }

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* =============================================================
   4. Typography
   ============================================================= */
h1, h2, h3 { font-family: var(--display); font-weight: 400; letter-spacing: 0.01em; color: var(--cream); }

h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }

.serif { font-family: var(--serif); font-style: italic; font-weight: 500; }

.section-title {
  margin-top: 10px;
}
.section-kicker { margin-bottom: 14px; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--cream-2);
  max-width: 62ch;
}

/* =============================================================
   5. Components
   ============================================================= */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--cream);
  box-shadow: 0 8px 30px -8px rgba(179,18,30,.65);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 34px -8px rgba(179,18,30,.85); }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--cream-2);
  background: rgba(244,236,220,0.03);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.btn-gold {
  background: var(--gold);
  color: #1a1310;
  box-shadow: 0 8px 30px -8px rgba(217,166,72,.55);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 34px -8px rgba(217,166,72,.75); }

.btn-sm { padding: 10px 20px; font-size: 11px; }

/* Nav ---------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background .4s var(--ease-out), border-color .4s var(--ease-out), backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(12,9,8,0.86);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.nav-brand img { height: 30px; width: auto; }
.nav-links {
  display: none;
  align-items: center; gap: 34px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-2);
  position: relative;
  padding-block: 6px;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--gold);
  transition: right .35s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.is-active::after { right: 0; }
.nav-links a.is-active { color: var(--gold); }

@media (min-width: 960px) { .nav-links { display: flex; } }

.nav-cta { display: none; }
@media (min-width: 960px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  padding: 10px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--cream); transition: transform .3s, opacity .3s; }
@media (min-width: 960px) { .nav-toggle { display: none; } }

.mobile-menu {
  position: fixed; inset: 0; z-index: 600;
  background: var(--bg);
  display: flex; flex-direction: column;
  padding: 100px 32px 40px;
  gap: 8px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease-out);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--cream);
  padding-block: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-close svg { width: 20px; height: 20px; }

/* Cards ---------------------------------------------------------- */
.card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.stat-card {
  padding: 28px 22px;
  border-radius: 16px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  text-align: left;
}
.stat-num {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-3);
}

/* Artist card ------------------------------------------------- */
.artist-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-3);
  border: 1px solid var(--line);
  cursor: pointer;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg);
  transition: transform .5s var(--ease-out), border-color .4s;
}
.artist-card:hover { border-color: rgba(217,166,72,.5); }
.artist-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  transition: transform .7s var(--ease-out), filter .5s;
}
.artist-card:hover .artist-photo { transform: scale(1.08); filter: saturate(1.2) brightness(1.05); }

.artist-photo-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--gold);
  background:
    radial-gradient(circle at 30% 20%, rgba(179,18,30,.5), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(217,166,72,.25), transparent 55%),
    var(--bg-4);
}

.artist-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,9,8,0) 40%, rgba(12,9,8,.92) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
}
.artist-card-name {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--cream);
  letter-spacing: 0.02em;
}
.artist-card-meta {
  margin-top: 4px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.artist-card-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(12,9,8,.6);
  border: 1px solid var(--line);
  color: var(--cream-3);
  backdrop-filter: blur(6px);
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 720px) { .artist-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1280px) { .artist-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

/* Compact artist card (no photo yet) ---------------------------------------------------- */
.artist-grid-compact {
  display: flex; flex-wrap: wrap;
  gap: 20px 18px;
}
.artist-compact-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  width: 108px;
  text-align: center;
  transition: transform .35s var(--ease-out);
}
.artist-compact-card:hover { transform: translateY(-4px); }
.artist-compact-avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--gold);
  background:
    radial-gradient(circle at 30% 25%, rgba(179,18,30,.45), transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(217,166,72,.22), transparent 55%),
    var(--bg-4);
  border: 1px solid var(--line);
  transition: border-color .35s;
}
.artist-compact-card:hover .artist-compact-avatar { border-color: rgba(217,166,72,.5); }
.artist-compact-name {
  font-size: 13px; font-weight: 600;
  color: var(--cream-2);
  line-height: 1.25;
}
.artist-compact-genre {
  font-size: 10.5px;
  letter-spacing: .03em;
  color: var(--cream-3);
  line-height: 1.2;
}

/* Artist modal ---------------------------------------------------- */
.artist-modal-backdrop {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(8,6,5,0.86);
  backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease-out);
  display: flex; align-items: flex-start; justify-content: center;
  overflow-y: auto;
  padding: 0;
}
.artist-modal-backdrop.is-open { opacity: 1; pointer-events: auto; }

.artist-modal {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 0;
  min-height: 100dvh;
  transform: translateY(24px);
  transition: transform .5s var(--ease-out);
  position: relative;
}
.artist-modal-backdrop.is-open .artist-modal { transform: translateY(0); }

@media (min-width: 720px) {
  .artist-modal-backdrop { padding: 60px 24px; align-items: flex-start; }
  .artist-modal { border-radius: 22px; min-height: auto; }
}

.artist-modal-close {
  position: sticky; top: 16px; float: right; margin: 16px 16px 0 0;
  z-index: 5;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(12,9,8,.7);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.artist-modal-close svg { width: 18px; height: 18px; }

.artist-modal-hero {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.artist-modal-hero img { width: 100%; height: 100%; object-fit: cover; }
.artist-modal-hero .artist-photo-fallback { font-size: 5rem; }
.artist-modal-hero-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,9,8,0) 30%, var(--bg-2) 100%);
}

.artist-modal-body { padding: 32px 24px 48px; }
@media (min-width: 720px) { .artist-modal-body { padding: 40px 48px 56px; } }

.artist-modal-name { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.artist-modal-meta {
  margin-top: 10px;
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  font-size: 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.artist-modal-desc {
  margin-top: 20px;
  font-size: 17px;
  color: var(--cream-2);
}
.artist-modal-bio {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.artist-modal-bio p { margin-top: 14px; color: var(--cream-3); font-size: 15px; line-height: 1.8; }
.artist-modal-bio p:first-of-type { margin-top: 0; }

.artist-modal-empty {
  margin-top: 28px; padding: 20px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--cream-3);
  font-size: 14px;
}

.achv-list { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line); }
.achv-item {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 16px;
  padding-block: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.achv-item:last-child { border-bottom: 0; }
.achv-year { font-family: var(--display); color: var(--gold); font-size: 15px; }
.achv-logro { font-size: 14px; color: var(--cream-2); }

.social-row {
  margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 10px;
}
.social-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cream-2);
  transition: border-color .3s, color .3s, transform .3s;
}
.social-pill:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* Forms ---------------------------------------------------------- */
.field { margin-bottom: 18px; }
.field label {
  display: block; margin-bottom: 8px;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--cream-3);
}
.field input, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color .3s;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); outline: none; }
.field textarea { min-height: 130px; resize: vertical; }

.form-status {
  margin-top: 16px; padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 14px;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success { border-color: rgba(217,166,72,.5); color: var(--gold); }

/* WhatsApp float ---------------------------------------------------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 400;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(37,211,102,.6);
  transition: transform .4s var(--ease-bounce);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* =============================================================
   6. Sections
   ============================================================= */

/* Hero ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  padding-bottom: 90px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(179,18,30,.28), transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 90%, rgba(217,166,72,.14), transparent 60%),
    var(--bg);
}
.hero-mesh {
  position: absolute; inset: -20%;
  background: conic-gradient(from var(--mesh-angle), rgba(179,18,30,.22), transparent 30%, rgba(217,166,72,.14) 55%, transparent 80%, rgba(179,18,30,.22));
  filter: blur(90px);
  animation: meshRotate 26s linear infinite;
  opacity: .8;
}
@keyframes meshRotate { to { --mesh-angle: 360deg; } }

.hero-grain {
  position: absolute; inset: 0;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner { position: relative; z-index: 2; padding-block: 60px; }

.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 24px; } }

.hero-visual { position: relative; height: 380px; display: none; }
@media (min-width: 960px) { .hero-visual { display: block; height: 460px; } }

.hero-visual-glow {
  position: absolute; inset: -15%;
  background:
    radial-gradient(circle at 35% 30%, rgba(179,18,30,.4), transparent 60%),
    radial-gradient(circle at 75% 70%, rgba(217,166,72,.28), transparent 55%);
  filter: blur(50px);
  z-index: 0;
}

.hero-vinyl {
  position: absolute;
  width: 280px; height: 280px;
  right: -20px; top: 30px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(244,236,220,.05) 0 2px, transparent 2px 7px),
    radial-gradient(circle at 38% 35%, rgba(217,166,72,.55), rgba(12,9,8,.92) 68%);
  border: 1px solid rgba(244,236,220,.12);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7);
  animation: heroVinylSpin 22s linear infinite;
  z-index: 1;
}
.hero-vinyl::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 22px; height: 22px;
  background: var(--bg);
  border: 1px solid rgba(244,236,220,.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
@keyframes heroVinylSpin { to { transform: rotate(360deg); } }

.hero-photo {
  position: absolute;
  width: 190px;
  aspect-ratio: 3/4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(244,236,220,.15);
  box-shadow: 0 30px 60px -22px rgba(0,0,0,.75);
  z-index: 2;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-photo-1 { top: 0; left: 4%; transform: rotate(-7deg); animation: heroFloat1 6.5s ease-in-out infinite; }
.hero-photo-2 { top: 150px; right: 6%; width: 165px; transform: rotate(6deg); animation: heroFloat2 7.5s ease-in-out infinite; z-index: 3; }
.hero-photo-3 { bottom: -6px; left: 26%; width: 140px; opacity: .92; transform: rotate(4deg); animation: heroFloat3 8.5s ease-in-out infinite; }

@keyframes heroFloat1 { 0%,100% { transform: rotate(-7deg) translateY(0); } 50% { transform: rotate(-7deg) translateY(-14px); } }
@keyframes heroFloat2 { 0%,100% { transform: rotate(6deg) translateY(0); } 50% { transform: rotate(6deg) translateY(-18px); } }
@keyframes heroFloat3 { 0%,100% { transform: rotate(4deg) translateY(0); } 50% { transform: rotate(4deg) translateY(-10px); } }

.hero-waveform {
  position: absolute; bottom: 8px; left: 8px;
  display: flex; align-items: flex-end; gap: 4px;
  height: 40px; z-index: 3;
}
.hero-waveform span {
  width: 4px; border-radius: 2px;
  background: var(--gold);
  animation: heroWave 1.2s ease-in-out infinite;
}
.hero-waveform span:nth-child(1) { height: 40%; animation-delay: 0s; }
.hero-waveform span:nth-child(2) { height: 70%; animation-delay: .1s; }
.hero-waveform span:nth-child(3) { height: 100%; animation-delay: .2s; }
.hero-waveform span:nth-child(4) { height: 55%; animation-delay: .3s; }
.hero-waveform span:nth-child(5) { height: 85%; animation-delay: .4s; }
.hero-waveform span:nth-child(6) { height: 45%; animation-delay: .5s; }
.hero-waveform span:nth-child(7) { height: 65%; animation-delay: .6s; }
@keyframes heroWave { 0%,100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }

.hero-meta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: 26px;
}
.hero-meta .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 12px 2px rgba(217,166,72,.7);
}

.hero-glyph {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--accent);
  margin-bottom: 6px;
}

.hero-title {
  max-width: 15ch;
}
.hero-title em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  margin-top: 26px;
  max-width: 46ch;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--cream-2);
}

.hero-actions {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; gap: 16px;
}

.stats-strip {
  position: relative;
  padding-block: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.hero-stats {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 14px;
}
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(4,1fr); } }

.hero-scroll-cue {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream-3);
  z-index: 2;
}
.hero-scroll-cue .line {
  width: 1px; height: 40px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollcue 2.2s var(--ease-soft) infinite;
}
@keyframes scrollcue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Manifesto / Bio section ---------------------------------------------------- */
.manifesto {
  display: grid; gap: 40px;
}
@media (min-width: 960px) {
  .manifesto { grid-template-columns: 0.7fr 1.3fr; gap: 80px; align-items: start; }
}
.manifesto-num {
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 7rem);
  color: transparent;
  -webkit-text-stroke: 1px var(--line);
  line-height: .8;
}
.manifesto-body p {
  color: var(--cream-2);
  font-size: 16px;
  margin-top: 20px;
}
.manifesto-body p:first-child { margin-top: 0; }
.manifesto-body p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 4.4rem;
  float: left;
  line-height: .78;
  padding-right: 14px; padding-top: 6px;
  color: var(--gold);
}

/* Genre pillars ---------------------------------------------------------- */
.pillars {
  margin-top: 56px;
  display: grid; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 720px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  background: var(--bg-2);
  padding: 30px 26px;
}
.pillar-icon { color: var(--accent); font-family: var(--display); font-size: 2rem; }
.pillar h4 { font-family: var(--sans); font-weight: 700; font-size: 15px; color: var(--cream); margin-top: 14px; letter-spacing: .02em; }
.pillar p { margin-top: 8px; font-size: 14px; color: var(--cream-3); }

/* Roster preview strip ---------------------------------------------------------- */
.roster-strip { overflow: hidden; }
.roster-track {
  display: flex; gap: 16px;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.roster-strip:hover .roster-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.roster-chip {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px 12px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-3);
}
.roster-chip-photo {
  width: 40px; height: 40px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  background: var(--bg-4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); color: var(--gold); font-size: 15px;
}
.roster-chip-photo img { width: 100%; height: 100%; object-fit: cover; }
.roster-chip span { font-size: 14px; color: var(--cream-2); white-space: nowrap; }

/* Section header ---------------------------------------------------------- */
.section-header {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

/* Music / platforms ---------------------------------------------------------- */
.platform-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 14px;
  margin-top: 48px;
}
@media (min-width: 720px) { .platform-grid { grid-template-columns: repeat(4,1fr); } }
.platform-card {
  padding: 26px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-3);
  transition: transform .4s var(--ease-out), border-color .4s;
}
.platform-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.platform-card svg { width: 26px; height: 26px; color: var(--gold); }
.platform-card h4 { margin-top: 14px; font-family: var(--sans); font-size: 14px; font-weight: 700; color: var(--cream); }
.platform-card p { margin-top: 6px; font-size: 12px; color: var(--cream-3); }

/* Events ---------------------------------------------------------------- */
.events-empty {
  padding: 48px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  text-align: center;
  color: var(--cream-3);
}
.events-empty strong { display: block; color: var(--cream); font-family: var(--display); font-size: 1.4rem; margin-bottom: 10px; }

/* Press ---------------------------------------------------------------- */
.press-empty { padding: 48px; border: 1px dashed var(--line); border-radius: 18px; text-align: center; color: var(--cream-3); }

/* CTA band ---------------------------------------------------------------- */
.cta-band {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 6vw, 64px);
  text-align: center;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
}
.cta-band::before {
  content: '';
  position: absolute; inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(179,18,30,.35), transparent 55%), radial-gradient(circle at 80% 80%, rgba(217,166,72,.2), transparent 55%);
  filter: blur(60px);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band .lead { margin-inline: auto; }
.cta-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* Contact page ---------------------------------------------------------------- */
.contact-grid {
  display: grid; gap: 48px;
}
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }

.contact-info-item {
  display: flex; gap: 18px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--accent); }
.contact-info-item h4 { font-family: var(--sans); font-size: 14px; font-weight: 700; color: var(--cream); letter-spacing: .02em; }
.contact-info-item p, .contact-info-item a { margin-top: 4px; font-size: 15px; color: var(--cream-2); }
.contact-info-item a:hover { color: var(--gold); }

/* Footer ---------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  padding-block: 56px 32px;
}
.footer-top {
  display: grid; gap: 40px;
}
@media (min-width: 720px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand { font-family: var(--display); font-size: 1.8rem; color: var(--cream); }
.footer-tagline { margin-top: 14px; font-size: 14px; color: var(--cream-3); max-width: 34ch; }
.footer-col h5 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-3); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: var(--cream-2); margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: 12px; color: var(--cream-3);
}

/* Page hero (subpages) ---------------------------------------------------------- */
.page-hero {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(179,18,30,.22), transparent 65%), var(--bg);
}
.page-hero-inner { position: relative; z-index: 1; }

/* =============================================================
   7. Effects
   ============================================================= */
.tilt-target { transform-style: preserve-3d; will-change: transform; }

.cursor {
  position: fixed; top: 0; left: 0; z-index: 900;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s var(--ease-out);
  mix-blend-mode: difference;
}
.cursor.is-ready { opacity: 1; }
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 901;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cream);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.cursor-dot.is-ready { opacity: 1; }
.cursor-ring {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--cream);
  transition: width .25s var(--ease-out), height .25s var(--ease-out);
}
.cursor-ring.is-hover { width: 56px; height: 56px; }

@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-dot { display: none; }
}

/* =============================================================
   8. Responsive helpers
   ============================================================= */
@media (min-width: 720px)  { .hide-mobile { display: initial; } }
@media (max-width: 719px)  { .hide-desktop-only { display: none; } }

/* =============================================================
   9. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .roster-track { animation: none; }
  .hero-scroll-cue .line { animation: none; }
  .hero-vinyl { animation: none; }
  .hero-photo-1, .hero-photo-2, .hero-photo-3 { animation: none; }
}
