:root {
  --bg: #0f1012;
  --elevated: #17181c;
  --card: #1c1d22;
  --ink: #f3efe6;
  --muted: #a39e93;
  --faint: #6f6b64;
  --line: rgba(196, 165, 116, 0.16);
  --brass: #c4a574;
  --brass-bright: #e2c9a0;
  --spotify: #1ed760;
  --spotify-ink: #04150a;
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
  --radius: 18px;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 12% -8%, rgba(196, 165, 116, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 35% at 92% 8%, rgba(80, 100, 140, 0.1), transparent 50%);
  z-index: 0;
}

a {
  color: var(--brass-bright);
  text-underline-offset: 3px;
}
a:hover {
  color: var(--ink);
}

.wrap {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 16, 18, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}
.brand:hover {
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 18px;
  height: 26px;
  border: 1.5px solid var(--brass);
  background: linear-gradient(180deg, rgba(196, 165, 116, 0.18), transparent 70%);
}

.nav {
  display: flex;
  gap: 1.1rem;
  font-size: 0.92rem;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
}
.nav a:hover {
  color: var(--ink);
}

.hero {
  padding: 4.2rem 0 3rem;
}
.kicker {
  margin: 0 0 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}
.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--brass-bright);
}
.lede {
  max-width: 38rem;
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn-spotify {
  background: var(--spotify);
  color: var(--spotify-ink);
}
.btn-spotify:hover {
  filter: brightness(1.06);
  color: var(--spotify-ink);
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--brass);
  color: var(--ink);
  text-decoration: none;
}

.section-head {
  margin-bottom: 1.1rem;
}
.section-head h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 400;
}
.section-head p {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
}

.listen,
.albums,
.youtube,
.soundcloud,
.license {
  padding: 0 0 3.4rem;
}

.player-frame {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.player-frame iframe {
  display: block;
  width: 100%;
  border: 0;
}
.ratio-video {
  aspect-ratio: 16 / 9;
}
.ratio-video iframe {
  height: 100%;
}

.hint {
  margin: 0.7rem 0 0;
  color: var(--faint);
  font-size: 0.9rem;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1rem;
}
.album-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-decoration: none;
  color: inherit;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  padding-bottom: 0.85rem;
}
.album-card:hover {
  color: inherit;
  text-decoration: none;
  border-color: rgba(196, 165, 116, 0.4);
  transform: translateY(-2px);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.album-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.album-card strong,
.album-card span {
  padding: 0 0.8rem;
}
.album-card span {
  color: var(--faint);
  font-size: 0.82rem;
}
.tag {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: var(--spotify);
  color: var(--spotify-ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.license-card {
  background: linear-gradient(160deg, var(--elevated), var(--card));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow);
}
.license-card h2 {
  margin: 0.2rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
}
.license-card p {
  max-width: 38rem;
  color: var(--muted);
  margin: 0 0 1.2rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 5.5rem;
  position: relative;
  z-index: 1;
}
.footer-inner p {
  margin: 0.25rem 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.back-to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  height: 3.1rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: var(--brass);
  color: #1a140c;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.back-to-top:hover {
  color: #1a140c;
  text-decoration: none;
  filter: brightness(1.08);
}

@media (max-width: 700px) {
  .hero {
    padding-top: 2.6rem;
  }
  .nav {
    gap: 0.75rem;
    font-size: 0.85rem;
  }
  .album-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
