:root {
  --bg: #0B0908;
  --surface: #16110E;
  --surface-line: #2A211C;
  --ember: #C84B2A;
  --ember-bright: #E8703F;
  --gold: #A88B5C;
  --text: #EDE7DE;
  --text-dim: #A89D8F;
  --text-faint: #6E655A;
  --serif: 'Source Serif 4', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

a {
  color: var(--ember-bright);
  text-decoration: none;
}
a:hover { text-decoration: underline; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ember-bright);
  outline-offset: 3px;
}

/* faint film-grain texture, fixed, decorative only */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 9, 8, 0.88);
  backdrop-filter: blur(6px);
  border-bottom: 0.5px solid var(--surface-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
}

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

.header-nav a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
}
.header-nav a:hover {
  color: var(--text);
  text-decoration: none;
}

/* hero */
.hero {
  position: relative;
  padding: 64px 0 88px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(200, 75, 42, 0.18) 0%, rgba(200, 75, 42, 0) 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7), 0 0 60px -10px rgba(200, 75, 42, 0.25);
}

.hero-sub {
  max-width: 540px;
  margin: 36px auto 0;
  font-size: 18px;
  color: var(--text-dim);
}

/* about */
.about {
  padding: 80px 0;
  border-top: 0.5px solid var(--surface-line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.about-copy--full {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.section-eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}

.about-lead {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 20px;
}

.about-copy p + p {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 16px;
}

/* music */
.music {
  padding: 80px 0;
  border-top: 0.5px solid var(--surface-line);
  background: var(--surface);
}

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 12px;
}

.music-sub {
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 40px;
}

.track-list {
  list-style: none;
  border-top: 0.5px solid var(--surface-line);
}

.track-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 0.5px solid var(--surface-line);
}

.track-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
  flex-shrink: 0;
}

.track-name {
  flex: 1;
  font-weight: 500;
  color: var(--text);
}

.track-tag {
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}

.notify-card {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.notify-card p {
  color: var(--text-dim);
  font-size: 16px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--ember);
  border-radius: 4px;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
}
.btn:hover {
  background: var(--ember);
  text-decoration: none;
}

/* contact */
.contact {
  padding: 96px 0;
  border-top: 0.5px solid var(--surface-line);
  text-align: center;
}

.contact-inner { display: flex; flex-direction: column; align-items: center; }

.contact-email {
  font-family: var(--serif);
  font-size: 28px;
  margin-top: 8px;
  color: var(--text);
}
.contact-email:hover { color: var(--ember-bright); }

.socials {
  margin-top: 28px;
  display: flex;
  gap: 24px;
}
.socials a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
}
.socials a:hover { color: var(--text); text-decoration: none; }

/* footer */
.site-footer {
  border-top: 0.5px solid var(--surface-line);
  padding: 28px 0;
}
.site-footer p {
  font-size: 13px;
  color: var(--text-faint);
  text-align: center;
}

/* motion */
@media (prefers-reduced-motion: no-preference) {
  .hero-logo, .hero-sub {
    animation: rise 0.8s ease both;
  }
  .hero-sub { animation-delay: 0.2s; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* responsive */
@media (max-width: 720px) {
  .hero { padding: 48px 0 56px; }
  .header-nav { gap: 18px; }
  .notify-card { justify-content: flex-start; }
}
