/* ==========================================================================
   The Dream Chaser — site styles
   Palette: deep night-sky navy + warm gold + ivory
   ========================================================================== */

:root {
  --bg: #07091a;
  --bg-2: #0c1028;
  --bg-3: #11173a;
  --gold: #c9a876;
  --gold-soft: #e2c89a;
  --gold-deep: #8a6f44;
  --ivory: #f4eee0;
  --text: #e8e4d4;
  --text-dim: #9a96a8;
  --line: rgba(201, 168, 118, 0.25);
  --card: rgba(255, 255, 255, 0.025);
  --card-border: rgba(201, 168, 118, 0.18);
  --shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);

  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1200px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

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

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(7,9,26,0.95) 0%, rgba(7,9,26,0.7) 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
}

.brand-mark { display: inline-flex; }

.brand-name {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 17px;
  color: var(--ivory);
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  gap: 38px;
}

.nav-link {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--gold-soft); }

.nav-link.is-active { color: var(--gold); }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--gold);
}

.header-actions {
  display: flex;
  gap: 12px;
}

.icon-button {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.2s;
}

.icon-button:hover {
  border-color: var(--gold);
  background: rgba(201,168,118,0.08);
}

.icon-button--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--bg);
  border-color: transparent;
}
.icon-button--gold:hover { filter: brightness(1.1); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 720px;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(201,168,118,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(80,60,140,0.25) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 80% 60%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 30% 70%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 75% 85%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 45% 45%, rgba(255,255,255,0.3), transparent);
  background-size: 800px 600px;
  opacity: 0.8;
}

.hero-bg::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
}

.hero-portrait {
  position: absolute;
  right: 5%;
  top: 60px;
  width: 540px;
  height: 720px;
  z-index: 1;
}

.hero-portrait::before,
.hero-portrait::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.25;
  pointer-events: none;
}
.hero-portrait::before {
  inset: -40px -80px;
  border-color: rgba(201,168,118,0.3);
}
.hero-portrait::after {
  inset: -120px -160px;
  border-color: rgba(201,168,118,0.15);
}

.hero-portrait-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201,168,118,0.2) 0%, transparent 60%),
    linear-gradient(180deg, rgba(201,168,118,0.08) 0%, rgba(7,9,26,0.6) 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
  border: 1px dashed rgba(201,168,118,0.3);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin: 0 0 28px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1.05;
  margin: 0 0 32px;
  color: var(--ivory);
  letter-spacing: -0.01em;
}

.hero-title-accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  max-width: 460px;
  margin: 0 0 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--bg);
}
.btn--primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px rgba(201,168,118,0.5);
}

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- Section heading ---------- */

.section-heading {
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 56px;
  text-transform: uppercase;
}

.section-heading-rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

/* ---------- Releases ---------- */

.releases {
  padding: 100px 0;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.release-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  transition: all 0.25s;
}
.release-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.release-art {
  width: 110px;
  height: 110px;
  border-radius: 4px;
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
}

.release-art[data-art="soulwave"] {
  background:
    radial-gradient(circle at 50% 60%, rgba(201,168,118,0.4) 0%, transparent 30%),
    radial-gradient(ellipse at 50% 80%, rgba(80,60,140,0.5) 0%, transparent 70%),
    linear-gradient(180deg, #1a1f4a 0%, #0a0c1f 100%);
}
.release-art[data-art="soulwave"]::before {
  content: "";
  position: absolute;
  top: 25%; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: radial-gradient(circle, rgba(201,168,118,0.6) 0%, transparent 70%);
}

.release-art[data-art="within"] {
  background:
    linear-gradient(180deg, #2a1f5a 0%, #1a1f4a 50%, #0a0c1f 100%);
  position: relative;
}
.release-art[data-art="within"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(201,168,118,0.6) 50%, transparent 70%);
  filter: blur(2px);
}

.release-art[data-art="return"] {
  background:
    radial-gradient(circle at 70% 30%, rgba(150,140,180,0.5) 0%, transparent 30%),
    linear-gradient(180deg, #1f1a3a 0%, #2a1f4a 50%, #4a3a2f 100%);
}
.release-art[data-art="return"]::before {
  content: "";
  position: absolute;
  top: 20%; right: 25%;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,220,200,0.9) 0%, rgba(201,168,118,0.3) 60%, transparent 100%);
}

.release-body {
  min-width: 0;
}

.release-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  color: var(--ivory);
  letter-spacing: 0.01em;
}

.release-artist {
  font-size: 12px;
  color: var(--text-dim);
  margin: 2px 0 12px;
  letter-spacing: 0.05em;
}

.waveform {
  display: flex;
  align-items: end;
  gap: 2px;
  height: 22px;
  margin-bottom: 10px;
}
.waveform span {
  display: block;
  width: 2px;
  background: var(--gold);
  opacity: 0.65;
  border-radius: 1px;
}
.waveform span:nth-child(3n)   { height: 50%; }
.waveform span:nth-child(3n+1) { height: 80%; }
.waveform span:nth-child(3n+2) { height: 30%; }
.waveform span:nth-child(5n)   { height: 100%; opacity: 0.9; }
.waveform span:nth-child(7n)   { height: 65%; }

.release-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.play-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
  transition: all 0.2s;
}
.play-circle:hover {
  background: var(--gold);
  color: var(--bg);
}

.duration {
  font-size: 13px;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}

/* ---------- About ---------- */

.about {
  padding: 80px 0 120px;
}

.about-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

.about-portrait {
  position: relative;
  aspect-ratio: 1 / 1.6;
}

.about-portrait::before {
  content: "";
  position: absolute;
  inset: -10%;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.2;
  pointer-events: none;
}

.about-portrait-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201,168,118,0.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(201,168,118,0.06) 0%, rgba(7,9,26,0.6) 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
  border: 1px dashed rgba(201,168,118,0.25);
}

.about-content .eyebrow { margin-bottom: 12px; }

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 500;
  margin: 0 0 28px;
  color: var(--ivory);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  display: inline-block;
  padding-right: 60px;
}

.about-lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 56px;
  max-width: 480px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature {
  padding: 0 28px;
  border-left: 1px solid var(--line);
  text-align: center;
}
.feature:first-child { border-left: 0; padding-left: 0; }
.feature:last-child  { padding-right: 0; }

.feature-icon {
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}

.feature h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--ivory);
  letter-spacing: 0.02em;
}

.feature p {
  font-size: 12px;
  color: var(--text-dim);
  margin: 0;
  letter-spacing: 0.03em;
}

/* ---------- Subscribe ---------- */

.subscribe {
  padding: 0 0 100px;
}

.subscribe-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.subscribe-text h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--gold);
}

.subscribe-text p {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
}

.subscribe-form {
  display: flex;
  gap: 12px;
}

.subscribe-form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.subscribe-form input::placeholder { color: var(--text-dim); }
.subscribe-form input:focus { border-color: var(--gold); }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.footer-nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
  color: var(--text-dim);
}
.footer-nav a:hover { color: var(--gold); }

.social-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 18px;
  justify-content: end;
}

.social-list a {
  color: var(--gold);
  display: inline-flex;
  transition: color 0.2s;
}
.social-list a:hover { color: var(--gold-soft); }

.copyright {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin: 24px 0 0;
  letter-spacing: 0.05em;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .hero-portrait {
    width: 380px;
    height: 540px;
    right: -40px;
    opacity: 0.6;
  }
  .release-grid { grid-template-columns: 1fr; }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-portrait { max-width: 320px; margin: 0 auto; }
  .features { grid-template-columns: 1fr; gap: 24px; }
  .feature { border-left: 0; border-top: 1px solid var(--line); padding: 24px 0 0; }
  .feature:first-child { border-top: 0; padding-top: 0; }
  .subscribe-card { grid-template-columns: 1fr; padding: 32px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .social-list { justify-content: center; }
  .footer-nav { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 14px 20px; gap: 16px; }
  .primary-nav { display: none; }
  .hero { padding: 80px 0 60px; min-height: auto; }
  .hero-portrait { display: none; }
  .hero-title { font-size: 48px; }
  .hero-subtitle { font-size: 15px; }
  .releases, .about { padding: 64px 0; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form .btn { justify-content: center; }
}
