/* ===========================================================
   Elvezio "Elvis" Fortunato — EPK
   =========================================================== */

:root {
  --bg: #0b0710;
  --bg-alt: #120b1c;
  --surface: #1a1024;
  --surface-2: #221530;
  --text: #f4f1f8;
  --text-dim: #b9aec8;
  --accent: #b967ff;
  --accent-2: #ff5fa2;
  --accent-grad: linear-gradient(135deg, #b967ff 0%, #ff5fa2 100%);
  --border: rgba(255,255,255,0.08);
  --header-h: 72px;
  --max-w: 1180px;
  --radius: 14px;
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 500;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(11,7,16,0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 900;
  letter-spacing: .03em;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.brand span { color: var(--accent); }

.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.nav-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: color .2s ease;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--accent-grad);
  border-radius: 2px;
}
.nav-cta {
  padding: 8px 16px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--text) !important;
}
.nav-cta:hover { background: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,7,16,.68) 0%, rgba(11,7,16,.38) 28%, rgba(11,7,16,.05) 52%, rgba(11,7,16,.28) 100%),
    linear-gradient(90deg, rgba(11,7,16,.48) 0%, rgba(11,7,16,.05) 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 48px) 24px 0;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 12px;
  color: var(--accent-2);
  font-weight: 700;
  margin: 0 0 14px;
}
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1.02;
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -.01em;
}
.hero h1 span { color: var(--accent); }
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-dim);
  margin: 0 0 28px;
  max-width: 46ch;
}

.social-row {
  display: flex;
  gap: 14px;
}
.social-row a {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  transition: background .2s ease, transform .2s ease;
}
.social-row a:hover { background: var(--accent); transform: translateY(-2px); }
.social-row svg { width: 19px; height: 19px; fill: var(--text); }
.social-row-dark { margin-top: 30px; justify-content: center; }

.scroll-cue {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 30px; height: 46px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  display: none;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--text);
  border-radius: 2px;
  animation: scrollcue 1.6s ease infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ---------- Sections ---------- */

.section { padding: 96px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 12px;
  color: var(--accent-2);
  font-weight: 700;
  margin: 0 0 10px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 0 0 36px;
  font-weight: 900;
  letter-spacing: -.01em;
}
.section-lead {
  color: var(--text-dim);
  max-width: 60ch;
  margin: -20px 0 36px;
}

.bio-section { background: var(--bg-alt); }

.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.bio-text p {
  color: var(--text-dim);
  margin: 0 0 18px;
}
.bio-text p:first-child {
  color: var(--text);
  font-size: 1.1rem;
}
.bio-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bio-photo figure { margin: 0; }
.bio-photo figcaption {
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 10px;
}
.bio-photo-main img { aspect-ratio: 16/9; }
.bio-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.bio-photo-row img { aspect-ratio: 3/4; }
.bio-photo-row figcaption { font-size: 11px; }
.bio-cta { margin-top: 44px; }

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .03em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 10px 30px rgba(185,103,255,0.35);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline {
  border: 1px solid var(--accent);
  color: var(--text);
}
.btn-outline:hover { background: var(--accent); }

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 48px;
}
.video-card { background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video-embed { position: relative; padding-top: 56.25%; background: #000; }
.video-embed iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.video-card h3 {
  margin: 0;
  padding: 16px 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-dim);
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.photo-strip figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  background: var(--surface);
}
.photo-strip img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .35s ease;
}
.photo-strip figure:hover img { transform: scale(1.06); }
.photo-strip figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,.75), transparent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
}

/* Discography */
.discography-section { background: var(--bg-alt); }
.discography-list {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.discography-list li {
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 15px;
}
.discography-list li em { color: var(--text); font-style: normal; font-weight: 600; }

.cover-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.cover-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.cover-track img {
  height: 140px;
  width: 140px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .cover-track { animation: none; overflow-x: auto; }
}

/* Backstage badges */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
}
.badge-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 10px;
  cursor: zoom-in;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  transition: transform .25s ease;
}
.badge-grid img:hover { transform: translateY(-4px); }

/* Contact */
.contact-section {
  text-align: center;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(185,103,255,0.18), transparent 70%),
    var(--bg);
}
.contact-inner { max-width: 640px; }
.contact-section .section-lead { margin-left: auto; margin-right: auto; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  color: var(--text-dim);
  font-size: 13px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-inner a { color: var(--text-dim); text-decoration: none; }
.footer-inner a:hover { color: var(--text); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6,4,10,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
}
.lightbox[hidden] {
  display: none;
}
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

/* ---------- Responsive ---------- */

@media (min-width: 640px) {
  .scroll-cue { display: block; }
}

@media (min-width: 860px) {
  .bio-grid { grid-template-columns: 1.5fr 1fr; align-items: start; }
  .bio-photo { position: sticky; top: calc(var(--header-h) + 24px); }
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .discography-list { grid-template-columns: 1fr 1fr; column-gap: 32px; }
}

@media (max-width: 860px) {
  .primary-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    bottom: 0;
    background: rgba(11,7,16,0.98);
    backdrop-filter: blur(10px);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    overflow-y: auto;
  }
  .primary-nav.open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .primary-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 20px 24px 40px;
  }
  .primary-nav li { border-bottom: 1px solid var(--border); }
  .nav-link {
    display: block;
    padding: 18px 4px;
    font-size: 17px;
  }
  .nav-cta {
    display: inline-block;
    margin-top: 18px;
    border-radius: 999px;
    text-align: center;
  }
  .nav-toggle { display: flex; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero-content { padding-bottom: 56px; }
}
