﻿:root {
  --bg: #0b0b0c;
  --panel: #151517;
  --text: #f7f1e8;
  --muted: #b8b0a6;
  --line: rgba(247, 241, 232, 0.16);
  --amber: #e7a543;
  --teal: #51c4c0;
  --crimson: #bd3d54;
  --moss: #6f8b35;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header { min-height: 100svh; position: relative; }
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(11, 11, 12, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.25rem);
}
.nav-links { display: flex; align-items: center; gap: clamp(14px, 2.5vw, 32px); }
.nav-links a { color: var(--muted); font-weight: 600; font-size: 0.94rem; }
.nav-links a:hover { color: var(--text); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; color: var(--text); border-radius: 6px; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: currentColor; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 6vw, 80px) 74px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(11,11,12,0.94) 0%, rgba(11,11,12,0.68) 45%, rgba(11,11,12,0.22) 100%), url("assets/juano-live.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-content { position: relative; z-index: 1; width: min(760px, 100%); }
.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}
h1, h2, h3 { font-family: "Space Grotesk", Inter, sans-serif; margin: 0; line-height: 1.02; letter-spacing: 0; }
h1 { font-size: clamp(3.2rem, 9vw, 8.4rem); max-width: 980px; }
h2 { font-size: clamp(2rem, 5vw, 4.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.8rem); }
.hero-copy { max-width: 660px; margin: 22px 0 0; color: var(--muted); font-size: clamp(1rem, 2vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-weight: 800;
  background: rgba(247, 241, 232, 0.08);
}
.button.primary { background: var(--amber); color: #111; border-color: var(--amber); }
.button:hover, .menu-card:hover { transform: translateY(-2px); }
.scroll-cue { position: absolute; z-index: 2; right: clamp(20px, 5vw, 64px); bottom: 34px; color: var(--muted); font-size: 1.6rem; }

.section { padding: clamp(68px, 10vw, 130px) clamp(20px, 6vw, 80px); border-top: 1px solid var(--line); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 34px; }
.section-heading.compact { margin-bottom: 22px; }
.menu-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.menu-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #151517;
  transition: transform 180ms ease, border-color 180ms ease;
}
.menu-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95) contrast(1.05); }
.menu-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.82)); }
.menu-card span { position: absolute; z-index: 1; left: 18px; right: 18px; bottom: 18px; font-family: "Space Grotesk", Inter, sans-serif; font-size: 1.35rem; font-weight: 800; }
.menu-card:hover { border-color: rgba(231, 165, 67, 0.7); }

.release-feature {
  display: grid;
  grid-template-columns: minmax(260px, 560px) 1fr;
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
}
.release-cover, .songs-photo, .contact-photo { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); box-shadow: var(--shadow); }
.release-cover { aspect-ratio: 16 / 10; }
.release-cover img, .songs-photo img, .contact-photo img, .story-card img { width: 100%; height: 100%; object-fit: cover; }
.release-info p { color: var(--muted); max-width: 680px; }
.release-date { color: var(--amber) !important; font-weight: 800; }
.platforms, .social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.platforms a, .social-links a, .song-row a {
  border-bottom: 2px solid var(--crimson);
  color: var(--text);
  font-weight: 800;
}
.songs-layout { display: grid; grid-template-columns: minmax(260px, 0.8fr) 1.2fr; gap: clamp(24px, 5vw, 58px); align-items: center; }
.songs-photo { aspect-ratio: 16 / 9; }
.song-list { border-top: 1px solid var(--line); }
.song-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.track-number { color: var(--amber); font-weight: 800; }
.song-row p, .story-card p, .contact-panel p { color: var(--muted); margin: 7px 0 0; }
.story-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.story-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(247,241,232,0.07), rgba(247,241,232,0.03));
}
.story-card.with-image img { aspect-ratio: 16 / 9; }
.story-card div { padding: clamp(20px, 3vw, 30px); }
.story-date { color: var(--teal) !important; font-weight: 800; margin-bottom: 12px !important; }
.contact-panel {
  display: grid;
  grid-template-columns: minmax(220px, 380px) 1fr;
  gap: clamp(24px, 5vw, 46px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #121214;
}
.contact-photo { aspect-ratio: 4 / 5; }
.email-link { display: inline-block; margin-top: 14px; color: var(--amber); font-weight: 800; font-size: clamp(1.1rem, 2vw, 1.45rem); }
.footer { padding: 28px clamp(20px, 6vw, 80px); color: var(--muted); border-top: 1px solid var(--line); }

@media (max-width: 980px) {
  .menu-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .release-feature, .songs-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    background: rgba(11, 11, 12, 0.96);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 0; }
  .hero { padding-top: 110px; }
  .hero-media { background-image: linear-gradient(180deg, rgba(11,11,12,0.52), rgba(11,11,12,0.98) 78%), url("assets/juano-live.jpg"); background-position: 68% center; }
  .section-heading { display: block; }
  .menu-card-grid, .contact-panel, .story-grid { grid-template-columns: 1fr; }
  .menu-card { min-height: 230px; }
  .song-row { grid-template-columns: 42px 1fr; }
  .song-row a { grid-column: 2; justify-self: start; margin-bottom: 18px; }
}
