:root {
  --bg: #100d0a;
  --bg-soft: #19150f;
  --bg-softer: #211c15;
  --ink: #efe9df;
  --ink-mute: rgba(239, 233, 223, 0.58);
  --ink-faint: rgba(239, 233, 223, 0.34);
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.16);
  --accent: #c8a24b;
  --accent-soft: rgba(200, 162, 75, 0.14);
  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Inter Tight', -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

::selection { background: var(--accent-soft); color: var(--ink); }

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

/* ---------- NAV ---------- */
.navbar {
  background: rgba(16, 13, 10, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--line);
  padding: 1rem 0;
}
.navbar-brand {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink) !important;
}
.nav-link {
  font-size: 0.74rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute) !important;
  padding: 0.5rem 0 !important;
  margin: 0 0.85rem;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link:focus { color: var(--accent) !important; }
.navbar-toggler {
  border: 0.5px solid var(--line-soft);
  padding: 0.35rem 0.55rem;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(239,233,223,0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(200, 162, 75, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(120, 80, 40, 0.14) 0%, transparent 55%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(3rem, 11vw, 7rem);
  line-height: 0.96;
  letter-spacing: -0.01em;
  margin: 1.2rem 0 1.6rem;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-mute);
  max-width: 34rem;
  margin-bottom: 2.4rem;
}
.hero-tag {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--ink);
  letter-spacing: 0.01em;
}

/* ---------- BUTTONS ---------- */
.btn-solid {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: #1a1408;
  border: none;
  border-radius: 2px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-solid:hover { opacity: 0.9; color: #1a1408; transform: translateY(-1px); }
.btn-line {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--ink);
  border: 0.5px solid var(--line-soft);
  border-radius: 2px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.btn-line:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- SECTIONS ---------- */
section { padding: 5rem 0; border-bottom: 0.5px solid var(--line); }
.section-label { margin-bottom: 2.5rem; }
h2.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.005em;
  margin-bottom: 1.3rem;
}

/* ---------- SONGS GRID ---------- */
.song-card {
  background: var(--bg-soft);
  border: 0.5px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  height: 100%;
}
.song-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.song-cover {
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cover-1 { background: linear-gradient(135deg, #2a1d0c, #4a3415); }
.cover-2 { background: linear-gradient(135deg, #281403, #45260c); }
.cover-3 { background: linear-gradient(135deg, #1d1407, #3a2c12); }
.cover-4 { background: linear-gradient(135deg, #221806, #40300f); }
.play-circle {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s;
}
.song-card:hover .play-circle { opacity: 1; }
.play-tri {
  width: 0; height: 0;
  border-style: solid;
  border-width: 0.45rem 0 0.45rem 0.75rem;
  border-color: transparent transparent transparent #1a1408;
  margin-left: 0.15rem;
}
.chart-badge {
  position: absolute;
  top: 0.7rem; left: 0.7rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(16,13,10,0.7);
  border: 0.5px solid var(--line-soft);
  color: var(--accent);
  padding: 0.25rem 0.55rem;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}
.song-body { padding: 1rem 1.1rem 1.2rem; }
.song-title { font-weight: 600; font-size: 1rem; margin-bottom: 0.2rem; }
.song-meta { font-size: 0.78rem; color: var(--ink-faint); letter-spacing: 0.04em; }

/* ---------- STREAM ---------- */
.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.4rem;
  border: 0.5px solid var(--line-soft);
  border-radius: 2px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s;
}
.stream-btn:hover { background: var(--accent-soft); border-color: var(--accent); }
.stream-btn svg { width: 1.15rem; height: 1.15rem; fill: currentColor; }

/* ---------- EMBED ---------- */
.embed-card {
  background: var(--bg-soft);
  border: 0.5px solid var(--line);
  border-radius: 5px;
  padding: 1.5rem;
  max-width: 38rem;
}
.spotify-embed iframe { border-radius: 12px; display: block; }

/* ---------- VIDEO ---------- */
.video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  border: 0.5px solid var(--line);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- ABOUT ---------- */
.about-photo {
  aspect-ratio: 3/4;
  background: var(--bg-softer);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(239,233,223,0.15);
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.about-text p { color: var(--ink-mute); margin-bottom: 1.1rem; }
.about-text p strong { color: var(--ink); font-weight: 500; }

/* ---------- COMMITMENTS ---------- */
.commit {
  border-left: 2px solid var(--accent);
  padding: 0.2rem 0 0.2rem 1.3rem;
  margin-bottom: 1.6rem;
}
.commit .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--accent);
  line-height: 1;
}
.commit p { color: var(--ink-mute); margin: 0.4rem 0 0; }

/* ---------- MOTTO ---------- */
.motto {
  text-align: center;
  padding: 5.5rem 0;
  border-bottom: 0.5px solid var(--line);
}
.motto blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.25;
  max-width: 40rem;
  margin: 0 auto;
}
.motto cite {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--body);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- NEWS ---------- */
.news-item {
  display: block;
  padding: 1.4rem 0;
  border-bottom: 0.5px solid var(--line);
  transition: padding-left 0.2s;
}
.news-item:hover { padding-left: 0.5rem; }
.news-date { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.news-head { font-family: var(--display); font-size: 1.35rem; font-weight: 500; margin: 0.3rem 0; }
.news-body { color: var(--ink-mute); font-size: 0.95rem; margin: 0; }

/* ---------- CONTACT ---------- */
.contact-center { text-align: center; }
.contact-center .socials { justify-content: center; }
.contact-email { display: inline-block; margin-top: 1.4rem; font-size: 1.3rem; color: rgba(239,233,223,0.8); font-family: var(--display); }
.socials { display: flex; gap: 0.9rem; margin-top: 1.8rem; }
.social-link {
  width: 2.6rem; height: 2.6rem;
  display: flex; align-items: center; justify-content: center;
  border: 0.5px solid var(--line-soft);
  border-radius: 2px;
  color: var(--ink-mute);
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }
.social-link svg { width: 1.2rem; height: 1.2rem; fill: currentColor; }

/* ---------- FOOTER ---------- */
footer { padding: 2.2rem 0; background: #0b0907; }
.footer-brand { font-family: var(--display); font-size: 1.05rem; color: rgba(239,233,223,0.35); }
.footer-copy { font-size: 0.78rem; color: rgba(239,233,223,0.22); }

/* ---------- REVEAL ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

@media (max-width: 575.98px) {
  .hero { min-height: 88vh; padding-top: 6rem; }
  .stream-btn { font-size: 0.8rem; padding: 0.7rem 1.1rem; }
  section { padding: 3.8rem 0; }
}
