* {
  box-sizing: border-box;
}

:root {
  --bg: #0a0d10;
  --bg-soft: #12171b;
  --paper: #e8e5df;
  --text: #e9ecec;
  --dark-text: #171a1c;
  --muted: #a8b0b3;
  --line: rgba(255,255,255,.14);
  --accent: #c9b28f;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(7,10,12,.76);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}

.brand {
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  letter-spacing: .14em;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  font-size: .86rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #d8dddd;
}

.nav a:hover {
  color: white;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 120px 24px 70px;
  background:
    url("assets/arc-of-rain-background.jpg")
    center center / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(3,7,10,.28), rgba(3,7,10,.18) 48%, rgba(3,7,10,.42)),
    radial-gradient(circle at center, rgba(0,0,0,.04), rgba(0,0,0,.34));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 94vw);
}

.eyebrow,
.section-kicker,
.small-label {
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  color: #d4d9d8;
  margin-bottom: 18px;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  margin: 0;
  font-size: clamp(3.1rem, 9vw, 7.8rem);
  line-height: .95;
  letter-spacing: .035em;
  text-shadow: 0 5px 35px rgba(0,0,0,.36);
}

.hero-line {
  margin: 24px auto 34px;
  max-width: 700px;
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  color: #e5e9e7;
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #111;
  text-decoration: none;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: .2s ease;
}

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

.button-outline {
  background: transparent;
  color: var(--text);
}

.section {
  padding: 110px 5vw;
  background: var(--paper);
  color: var(--dark-text);
}

.section-dark {
  background: #0c1013;
  color: var(--text);
}

.section-muted {
  background: #d8d5cf;
}

.wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.narrow {
  width: min(850px, 100%);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 70px;
}

.section-kicker {
  margin: 0 0 12px;
  font-size: .75rem;
  font-weight: 800;
  color: #70685d;
}

.section-dark .section-kicker {
  color: var(--accent);
}

h2 {
  margin: 0 0 26px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.04;
  font-weight: 600;
}

h3 {
  font-size: 1.65rem;
  margin: 6px 0 8px;
}

.body-copy p,
.section p {
  font-size: 1.05rem;
}

.music-card {
  margin-top: 46px;
  padding: 30px;
  border: 1px solid var(--line);
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.small-label {
  font-size: .68rem;
  font-weight: 800;
  color: var(--accent);
}

.note {
  color: var(--muted);
  font-size: .9rem !important;
  margin-top: 22px;
}

.media-grid {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,.14);
}

.media-grid article {
  background: #e4e1db;
  padding: 30px;
}

.contact {
  background: #090c0f;
  color: white;
  text-align: center;
}

.contact .section-kicker {
  color: var(--accent);
}

.contact-intro {
  color: #b8c0c2;
}

.email {
  display: inline-block;
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 4vw, 2.4rem);
  text-underline-offset: 7px;
  text-decoration-thickness: 1px;
}

footer {
  background: #050708;
  color: #8d9699;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 28px 5vw;
  font-size: .82rem;
}

.footer-inner {
  display: flex;
justify-content: center;
text-align: center;
  gap: 20px;
}

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

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    padding: 20px 5vw 26px;
    flex-direction: column;
    gap: 16px;
    background: rgba(7,10,12,.97);
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .nav.open {
    display: flex;
  }

  .hero {
    min-height: 92vh;
    background-position: 58% center;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .music-card {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .section {
    padding: 82px 6vw;
  }

  .footer-inner {
    flex-direction: column;
    gap: 4px;
    align-items: center;
text-align: center;
  }
}


.music-intro {
  color: #c5cbcd;
  max-width: 720px;
}

.players {
  margin-top: 42px;
  display: grid;
  gap: 18px;
}

.track-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
  padding: 26px;
}

.track-meta {
  margin-bottom: 20px;
}

.track-meta h3 {
  margin-bottom: 3px;
}

.track-meta p {
  margin: 0;
  color: #aab2b5;
  font-size: .93rem;
}

.track-card audio {
  width: 100%;
  display: block;
  accent-color: var(--accent);
}

.music-empty {
  margin-top: 42px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}

.music-empty h3 {
  margin-top: 8px;
}
.track-card .single-cover {
  display: block;
  width: 150px;
  max-width: 100%;
  height: auto;
  margin: 18px 0 22px 0;
  border-radius: 4px;
}