
:root {
  --ink: #101418;
  --paper: #f5f1e9;
  --cream: #ece3d4;
  --gold: #dfa22d;
  --blue: #173d5a;
  --muted: #77716a;
  --line: rgba(16,20,24,.16);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.site-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  min-height: 72px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: rgba(10,13,16,.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.wordmark {
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  white-space: nowrap;
}

.wordmark span {
  opacity: .55;
  font-weight: 500;
}

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

.site-nav nav a {
  text-decoration: none;
  font-size: 13px;
}

.nav-book {
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 92vh;
  max-height: 940px;
  overflow: hidden;
  color: #fff;
}

.hero-art {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(1.04);
  animation: heroZoom 9s cubic-bezier(.2,.7,.2,1) both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,8,10,.92) 0%, rgba(5,8,10,.67) 33%, rgba(5,8,10,.12) 68%, rgba(5,8,10,.24) 100%),
    linear-gradient(0deg, rgba(5,8,10,.62), transparent 48%);
}

.hero-copy {
  position: absolute;
  z-index: 3;
  left: 7vw;
  bottom: 9vh;
  width: min(700px, 86vw);
}

.kicker,
.section-label {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
}

.kicker { color: #f0b956; }

.hero h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.05em;
}

.hero h1 {
  margin: 14px 0 30px;
  font-size: clamp(80px, 10vw, 150px);
  line-height: .79;
}

.hero-buttons {
  display: flex;
  gap: 12px;
}

.button {
  display: inline-block;
  padding: 13px 21px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }

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

.secondary {
  color: #fff;
  border: 1px solid rgba(255,255,255,.58);
  background: rgba(255,255,255,.02);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 5vh;
  opacity: .65;
  font-size: 10px;
  letter-spacing: .17em;
}

.hero-in {
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn .72s cubic-bezier(.2,.7,.2,1) forwards;
}

.delay-1 { animation-delay: .16s; }
.delay-2 { animation-delay: .28s; }
.delay-3 { animation-delay: .46s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroZoom {
  from { transform: scale(1.055); }
  to { transform: scale(1); }
}

.music-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}

.dark {
  background: var(--ink);
  color: #fff;
}

.light-section {
  background: var(--cream);
  color: var(--ink);
}

.music-image {
  min-height: 720px;
  overflow: hidden;
}

.music-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
}

.music-section:hover .music-image img {
  transform: scale(1.015);
}

.full-band-image img {
  object-position: 72% center;
}

.music-copy {
  padding: 78px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label {
  color: var(--muted);
  margin-bottom: 18px;
}

.section-label.light {
  color: rgba(255,255,255,.58);
}

h2 {
  margin: 0 0 34px;
  font-size: clamp(52px, 6vw, 88px);
  line-height: .93;
}

.tracks {
  border-top: 1px solid rgba(255,255,255,.18);
}

.light-section .tracks {
  border-top-color: var(--line);
}

.track {
  padding: 19px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  transition: padding-left .2s ease;
}

.light-section .track {
  border-bottom-color: var(--line);
}

.track:hover {
  padding-left: 8px;
}

.track-title {
  display: flex;
  gap: 18px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 11px;
}

.track-title span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.track-title small {
  max-width: 48%;
  text-align: right;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  opacity: .45;
}

audio {
  display: block;
  width: 100%;
  height: 38px;
}

.about,
.booking {
  display: grid;
  grid-template-columns: .26fr 1fr;
  gap: 60px;
  padding: 100px 7vw;
}

.about {
  background: var(--paper);
}

.about-copy {
  max-width: 950px;
}

.about-eyebrow {
  margin: 0 0 17px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.about-copy p {
  margin: 27px 0 0;
  max-width: 930px;
  color: #484744;
  font-size: 19px;
  line-height: 1.72;
}

.about-copy .bio-lead {
  color: #22272a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.8vw, 39px);
  line-height: 1.34;
}

.booking {
  align-items: end;
  color: #fff;
  background: var(--blue);
}

.booking h2 {
  margin-bottom: 0;
}

.booking-copy {
  max-width: 660px;
}

.booking-copy p {
  margin: 0 0 28px;
  color: rgba(255,255,255,.84);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.45;
}

.booking-placeholder {
  display: inline-block;
  padding: 13px 20px;
  color: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  font-size: 13px;
}

footer {
  padding: 28px 7vw;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #7e858a;
  background: #0b0f12;
  font-size: 12px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2,.7,.2,1);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .site-nav { padding: 0 5vw; }
  .site-nav nav a:not(.nav-book) { display: none; }

  .hero {
    min-height: 720px;
    height: 88vh;
  }

  .hero-art { object-position: 57% center; }

  .hero-shade {
    background: linear-gradient(0deg, rgba(5,8,10,.94) 0%, rgba(5,8,10,.58) 48%, rgba(5,8,10,.14) 100%);
  }

  .hero-copy {
    left: 6vw;
    bottom: 8vh;
  }

  .hero h1 {
    font-size: clamp(72px, 20vw, 110px);
  }

  .scroll-cue { display: none; }

  .music-section {
    grid-template-columns: 1fr;
  }

  .music-image {
    min-height: 430px;
  }

  .music-copy {
    padding: 68px 6vw;
  }

  #quintet .music-copy { order: 2; }
  #quintet .music-image { order: 1; }

  .full-band-image img {
    object-position: 72% center;
  }

  .track-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .track-title small {
    max-width: none;
    text-align: left;
  }

  .about,
  .booking {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 72px 6vw;
  }

  footer {
    flex-direction: column;
    gap: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

.booking-email {
  display: inline-block;
  padding: 13px 20px;
  color: #111;
  background: var(--gold);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

.booking-email:hover {
  transform: translateY(-2px);
  background: #edb346;
}


/* Final photo treatment: show the complete quintet performance image */
.full-band-image {
  background: #11161b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.full-band-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #11161b;
}

@media (max-width: 860px) {
  .full-band-image {
    padding: 14px;
  }
  .full-band-image img {
    object-fit: contain;
    object-position: center center;
  }
}
