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

:root {
  --navy:       #1a2d4e;
  --navy-dark:  #111e35;
  --navy-mid:   #243660;
  --gold:       #c8a96e;
  --gold-light: #e0c99a;
  --white:      #ffffff;
  --off-white:  #f5f3ee;
  --gray-100:   #ece9e3;
  --gray-400:   #8a8880;
  --gray-600:   #4a4845;
  --text-body:  #2a2825;

  --serif:  'Libre Baskerville', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
  --mono:   'DM Mono', monospace;

  --max-w: 1180px;
  --pad:   clamp(1.5rem, 5vw, 4rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--off-white);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(200,169,110,0.25);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }

/* ── HAMBURGER (mobile) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  background: var(--navy-dark);
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 79px,
    rgba(255,255,255,0.025) 79px,
    rgba(255,255,255,0.025) 80px
  );
  pointer-events: none;
}
.hero-image-col {
  position: relative;
  overflow: hidden;
}
.hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.05);
  opacity: 0.85;
  display: block;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--navy-dark) 100%);
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 7rem) var(--pad) clamp(3rem, 8vw, 7rem) 3rem;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-name {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.hero-name em {
  font-style: normal;
  color: var(--gold-light);
}
.hero-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 2rem 0;
}
.hero-descriptor {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
}
.hero-bio {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 3rem;
}
.hero-bio strong {
  color: var(--white);
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-secondary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.2s;
}
.btn-secondary:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

/* ── GOLD BAND ── */
.gold-band {
  background: var(--gold);
  height: 6px;
}

/* ── SECTION SHELLS ── */
section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
}
.section-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.section-rule {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2.5rem;
}

/* ── ABOUT / BIO ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.about-sidebar {
  position: sticky;
  top: 88px;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
}
.about-photo + .about-photo {
  margin-top: 1rem;
}
.about-photo-caption {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-top: 0.75rem;
}
.about-body p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}
.about-body p strong {
  color: var(--text-body);
  font-weight: 500;
}
.about-credits {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-100);
}
.credits-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1rem;
}
.credits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}
.credit-name {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--navy);
}

/* ── FEATURED MUSIC ── */
.music-section { background: var(--navy); }
.music-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
}
.music-section .section-title { color: var(--white); }
.music-section .section-label { color: var(--gold); }
.music-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.music-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.75rem;
  transition: background 0.2s;
}
.music-card:hover { background: rgba(255,255,255,0.09); }
.music-card-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.music-embed-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.play-icon {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(200,169,110,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-icon svg { margin-left: 3px; }
.music-card-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.music-card-meta {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
}
.music-cta {
  margin-top: 3rem;
  text-align: center;
}

/* ── DISCOGRAPHY ── */
.disco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.album-art {
  width: 100%;
  aspect-ratio: 1;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.album-art-placeholder {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  letter-spacing: -0.05em;
  text-align: center;
  padding: 1rem;
  line-height: 1;
  user-select: none;
}
.album-art-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy-mid);
  opacity: 0;
  transition: opacity 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.album-card:hover .album-art-overlay { opacity: 1; }
.album-year {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.album-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.25rem;
}
.album-detail {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--gray-400);
}

/* ── SHEET MUSIC ── */
.sheets-section { background: var(--navy-dark); }
.sheets-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
}
.sheets-inner .section-title { color: var(--white); }
.sheets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 2.5rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.sheet-item {
  background: var(--navy-dark);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: background 0.2s;
  text-decoration: none;
}
.sheet-item:hover { background: var(--navy-mid); }
.sheet-icon {
  width: 36px;
  height: 44px;
  border: 1px solid rgba(200,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sheet-icon svg { opacity: 0.6; }
.sheet-title {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.sheet-meta {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

/* ── PHOTOS STRIP ── */
.photos-strip {
  background: var(--gray-100);
  padding: clamp(3rem, 5vw, 5rem) 0;
  overflow: hidden;
}
.photos-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  margin-bottom: 2rem;
}
.photos-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 var(--pad);
  scroll-snap-type: x mandatory;
}
.photos-row::-webkit-scrollbar { display: none; }
.photo-thumb {
  flex: 0 0 280px;
  aspect-ratio: 3/4;
  background: var(--navy);
  filter: grayscale(100%);
  scroll-snap-align: start;
}
.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
}

/* ── CONTACT ── */
.contact-band {
  background: var(--navy);
  border-top: 3px solid var(--gold);
}
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.contact-copy .section-label { margin-bottom: 0.5rem; }
.contact-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
}
.contact-copy p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-top: 0.5rem;
}
.contact-email {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold-light);
  text-decoration: none;
}
.contact-email:hover { color: var(--white); }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem var(--pad);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
}
.footer-copy {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
}

/* ── DIVIDER ── */
.full-rule {
  border: none;
  border-top: 1px solid var(--gray-100);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-col { height: 50vw; max-height: 400px; }
  .hero-image-overlay { background: linear-gradient(180deg, transparent 40%, var(--navy-dark) 100%); }
  .hero-content { padding: 2.5rem var(--pad); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-sidebar { position: static; }
  .music-grid { grid-template-columns: 1fr; }
  .disco-grid { grid-template-columns: repeat(2, 1fr); }
  .sheets-grid { grid-template-columns: 1fr; }
  .contact-inner { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 1.5rem var(--pad);
    gap: 1.25rem;
    border-bottom: 1px solid rgba(200,169,110,0.15);
  }
}
@media (max-width: 580px) {
  .disco-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
