:root {
  --cream: #f6f2e8;
  --paper: #fffdf7;
  --forest: #173f35;
  --slate: #536d7a;
  --copper: #b85f31;
  --charcoal: #26312e;
  --mist: #dce3e1;
  --line: rgba(184, 95, 49, 0.42);
}

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

.site-header {
  width: min(1296px, calc(100% - 64px));
  height: 102px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: center;
}
.wordmark, h1, h2 {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
.wordmark { font-size: clamp(1.55rem, 2.2vw, 2.35rem); letter-spacing: -.04em; }
nav, .social-links { display: flex; gap: clamp(22px, 3vw, 48px); align-items: center; }
nav a, .social-links a { position: relative; font-size: .98rem; }
nav a::after, .social-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: width .2s ease;
}
nav a:hover::after, nav a:focus-visible::after, .social-links a:hover::after { width: 100%; }

.button {
  min-height: 52px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 650;
  transition: transform .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-copper { background: var(--copper); color: white; }
.button-green { background: var(--forest); color: white; }
.button-outline { border-color: var(--copper); color: var(--copper); background: rgba(255,255,255,.3); }

.song-hero {
  width: min(1160px, calc(100% - 64px));
  min-height: 670px;
  margin: 0 auto;
  padding: 76px 0 88px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 88px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  font-size: clamp(4.5rem, 8vw, 7.2rem);
  line-height: .88;
  letter-spacing: -.065em;
}
.copper-rule { display: block; width: 80px; height: 2px; margin: 32px 0 22px; background: var(--copper); }
.tagline { margin: 0; color: var(--slate); font-size: clamp(1.5rem, 2.4vw, 2.25rem); font-weight: 650; letter-spacing: -.035em; }
.intro { max-width: 620px; margin: 28px 0 0; color: var(--slate); font-size: 1.16rem; line-height: 1.7; }
.hero-art, .album-art {
  aspect-ratio: 1;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--copper);
  background: var(--paper);
}

.song-section, .video-section {
  width: min(1160px, calc(100% - 64px));
  margin: 0 auto;
  padding: 110px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
  border-top: 1px solid rgba(38,49,46,.13);
}
.song-section h2, .video-section h2, .booking h2 {
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 5rem);
  line-height: .98;
  letter-spacing: -.05em;
}
.lead { color: var(--slate); font-size: 1.3rem; line-height: 1.58; }
audio { width: 100%; margin: 18px 0 24px; accent-color: var(--forest); }
.download-button { width: fit-content; }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.video-frame > div, .video-frame iframe { width: 100% !important; height: 100% !important; border: 0; }

.booking {
  padding: 100px max(32px, calc((100vw - 1160px) / 2));
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 96px;
  background: var(--forest);
  color: var(--paper);
}
.booking h2 { color: var(--paper); }
.booking-details { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.booking-details p { margin-top: 0; color: var(--mist); font-size: 1.06rem; line-height: 1.8; }
.booking-details .button { margin: 14px 0 26px; }
.email-link { color: #df9a73; border-bottom: 1px solid currentColor; padding-bottom: 4px; overflow-wrap: anywhere; }

footer {
  min-height: 150px;
  padding: 42px max(32px, calc((100vw - 1160px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 38px;
}
footer p { color: var(--slate); font-size: .85rem; text-align: right; }

@media (max-width: 900px) {
  .site-header { width: min(100% - 36px, 1296px); grid-template-columns: 1fr auto; gap: 20px; }
  nav { display: none; }
  .song-hero, .song-section, .video-section {
    width: min(100% - 40px, 1160px);
    padding: 82px 0;
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero-art, .album-art { width: min(100%, 560px); }
  .alternate .album-art { order: 2; }
  .alternate .song-copy { order: 1; }
  .booking { padding: 82px 28px; grid-template-columns: 1fr; gap: 44px; }
  footer { grid-template-columns: 1fr; justify-items: start; }
  footer p { text-align: left; }
}

@media (max-width: 540px) {
  .site-header { height: 82px; }
  .header-cta { min-height: 44px; padding: 0 18px; }
  h1 { font-size: clamp(3.7rem, 19vw, 5.2rem); }
  .hero-art, .album-art, .video-frame { padding: 8px; }
  .download-button { width: 100%; }
  .social-links { flex-wrap: wrap; }
}

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

:focus-visible { outline: 3px solid var(--copper); outline-offset: 4px; }
