:root {
  --black: #080808;
  --black-soft: #111;
  --panel: #171717;
  --panel-strong: #202020;
  --yellow: #f1c232;
  --yellow-bright: #ffd95a;
  --ink: #f8f2e7;
  --muted: #beb6a6;
  --line: rgba(241, 194, 50, .26);
  --line-soft: rgba(255, 255, 255, .11);
  --shadow: 0 24px 70px rgba(0, 0, 0, .5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .45;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.skip-link,
.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;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--yellow);
  color: #111;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 14px clamp(16px, 5vw, 54px);
  background: rgba(8, 8, 8, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--yellow);
  color: #111;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--yellow-bright);
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--yellow);
  color: #111;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 10px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--yellow);
  margin: 5px 0;
}

main {
  overflow: hidden;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: end;
  gap: 30px;
  padding: 132px clamp(18px, 6vw, 72px) 72px;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .98) 0%, rgba(8, 8, 8, .78) 35%, rgba(8, 8, 8, .22) 62%, rgba(8, 8, 8, .02) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, .02) 0%, rgba(8, 8, 8, .08) 52%, rgba(8, 8, 8, .46) 100%),
    url("assets/enhanced/juancmic-hero-real.jpg") center center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow-bright);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: clamp(68px, 15vw, 188px);
  line-height: .78;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5.5vw, 78px);
  line-height: .92;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

p {
  color: var(--muted);
  line-height: 1.55;
}

.hero-lede {
  max-width: 660px;
  color: var(--ink);
  font-size: clamp(21px, 3vw, 34px);
  line-height: 1.12;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.button-primary {
  background: var(--yellow);
  color: #111;
}

.button-secondary {
  background: rgba(0, 0, 0, .48);
  color: var(--ink);
}

.hero-card {
  position: relative;
  z-index: 3;
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  justify-self: end;
  max-width: 340px;
  padding: 24px;
  background: rgba(10, 10, 10, .82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card p,
.hero-card span {
  margin: 0;
  color: var(--muted);
}

.hero-card strong {
  display: block;
  margin: 6px 0 8px;
  color: var(--yellow);
  font-size: 38px;
  line-height: .95;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--yellow);
  color: #111;
}

.proof-strip div {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px clamp(16px, 3vw, 32px);
  border-right: 1px solid rgba(0, 0, 0, .22);
}

.proof-strip span {
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-strip strong {
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1;
}

.section {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 6vw, 72px);
  background: #0d0d0d;
}

.section-dark {
  background: #080808;
}

.hero.section-dark {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .98) 0%, rgba(8, 8, 8, .78) 35%, rgba(8, 8, 8, .22) 62%, rgba(8, 8, 8, .02) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, .02) 0%, rgba(8, 8, 8, .08) 52%, rgba(8, 8, 8, .46) 100%),
    url("assets/enhanced/juancmic-hero-real.jpg") center center / cover no-repeat;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.section-copy {
  max-width: 780px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.format-grid article,
.release-card,
.epk-grid article,
.contact-card,
.social-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 20px;
}

.format-grid article p,
.release-card p {
  margin-bottom: 0;
}

.validation-note {
  margin-top: 18px;
  color: var(--yellow-bright);
  font-size: 14px;
}

.media-frame,
.portrait-frame {
  margin: 0;
  border: 1px solid var(--line);
  background: #111;
  box-shadow: var(--shadow);
}

.media-frame img,
.portrait-frame img,
.image-stack img,
.epk-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame {
  aspect-ratio: 4 / 3;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.music-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.release-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.release-card.featured {
  background:
    linear-gradient(150deg, rgba(241, 194, 50, .2), rgba(0, 0, 0, .1)),
    var(--panel-strong);
}

.release-card span {
  color: var(--yellow-bright);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.release-card a {
  color: var(--yellow);
  font-weight: 900;
  text-decoration: none;
}

.gallery-band {
  background: #101010;
}

.timeline-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline article {
  padding: 18px 0 18px 22px;
  border-left: 3px solid var(--yellow);
  border-bottom: 1px solid var(--line-soft);
}

.timeline span {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow-bright);
  font-weight: 900;
}

.timeline p {
  margin-bottom: 0;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.image-stack img {
  min-height: 430px;
  border: 1px solid var(--line);
}

.image-stack img:nth-child(2) {
  margin-top: 58px;
}

.bio-section {
  background:
    linear-gradient(180deg, rgba(241, 194, 50, .08), rgba(0, 0, 0, 0)),
    #0b0b0b;
}

.portrait-frame {
  aspect-ratio: 4 / 5;
}

.influences {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.influences span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  color: var(--yellow-bright);
  font-size: 13px;
  font-weight: 800;
}

.epk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(320px, .9fr);
  gap: 14px;
  align-items: stretch;
}

.epk-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.epk-image {
  padding: 0;
  overflow: hidden;
}

.fans-section {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: 32px;
  align-items: center;
}

.social-panel {
  display: grid;
  gap: 10px;
}

.social-panel a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border: 1px solid var(--line-soft);
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}

.social-panel a::after {
  content: "↗";
  color: var(--yellow);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: 32px;
  align-items: center;
  padding: clamp(56px, 8vw, 112px) clamp(18px, 6vw, 72px);
  background: var(--yellow);
  color: #111;
}

.contact-section p,
.contact-section .eyebrow {
  color: #241e0b;
}

.contact-section h2 {
  color: #111;
}

.contact-card {
  background: #111;
  color: var(--ink);
  border-color: #111;
}

.contact-card p {
  color: var(--yellow-bright);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.contact-card a {
  display: block;
  margin-top: 10px;
  color: var(--yellow);
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 6vw, 72px);
  border-top: 1px solid var(--line);
  background: #050505;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--yellow);
  font-weight: 900;
  text-decoration: none;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9;
  min-height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--yellow);
  color: #111;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .4);
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .hero,
  .split-section,
  .timeline-layout,
  .fans-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 420px;
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }

  .release-grid,
  .epk-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .format-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 18px;
    background: rgba(8, 8, 8, .97);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav .nav-cta {
    margin: 0;
    border: 1px solid var(--line-soft);
  }

  .hero {
    min-height: 92vh;
    padding-top: 112px;
    background:
      linear-gradient(180deg, rgba(8, 8, 8, .35), rgba(8, 8, 8, .86) 58%, #080808 100%),
      url("assets/enhanced/juancmic-hero-real.jpg") 55% center / cover no-repeat;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }

  .release-grid,
  .epk-grid,
  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:nth-child(2) {
    min-height: auto;
    aspect-ratio: 4 / 3;
    margin-top: 0;
  }

  .floating-cta {
    display: inline-flex;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .contact-card a {
    font-size: 18px;
  }
}
