/* ============================================================
   Cephas — From Garden to Glory
   palette: deep night, ember gold, parchment
   ============================================================ */

:root {
  --bg:        #07080c;
  --bg-2:     #0d1019;
  --bg-3:     #14182a;
  --gold:     #d6a64a;
  --gold-2:   #f0c879;
  --ink:      #ece6d8;
  --ink-mute: #9a9484;
  --line:     rgba(214, 166, 74, 0.18);
  --shadow:   0 30px 80px -30px rgba(0, 0, 0, 0.8);

  --serif:    "Cormorant Garamond", "EB Garamond", Georgia, "Times New Roman", serif;
  --sans:     "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --max:     1180px;
  --max-narrow: 760px;
}

* { box-sizing: border-box; }

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

body {
  background: radial-gradient(ellipse at top, var(--bg-3) 0%, var(--bg) 60%);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-2); text-decoration: none; }
a:hover { color: var(--gold); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); line-height: 1.02; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 0.6em; }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1em; }

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

.section-lead {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink-mute);
  margin-bottom: 2.5em;
  max-width: 60ch;
}

.small { font-size: 0.9rem; }
.muted { color: var(--ink-mute); }

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(7, 8, 12, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-2);
}

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

.site-header nav a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.site-header nav a:hover { color: var(--gold-2); }

/* ============================================================
   Hero
   ============================================================ */

.hero {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.4fr);
  gap: 72px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 32px 120px;
}

.hero-cover img {
  border-radius: 6px;
  box-shadow: var(--shadow), 0 0 0 1px var(--line);
}

.eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.2em;
}

.byline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink-mute);
  margin-top: 0.6em;
}

.byline .artist {
  color: var(--gold-2);
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.lead {
  margin-top: 1.6em;
  max-width: 52ch;
  font-size: 1.08rem;
  color: var(--ink);
}

.hero-cta {
  margin-top: 2.2em;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform 120ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.btn-primary {
  background: var(--gold);
  color: #1a1306;
}

.btn-primary:hover {
  background: var(--gold-2);
  color: #1a1306;
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

/* ============================================================
   About
   ============================================================ */

.about {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(20, 24, 42, 0.4), transparent);
}

.about p {
  font-size: 1.08rem;
}

/* ============================================================
   Album / tracklist
   ============================================================ */

.album { padding: 110px 0; }

.tracklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.tracklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 24px;
  row-gap: 0;
  align-items: start;
  padding: 0 28px 32px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background 240ms ease;
}

.tracklist li:hover { background: rgba(214, 166, 74, 0.04); }

.tracklist .track-img {
  grid-column: 1 / -1;
  display: block;
  width: calc(100% + 56px);
  margin: 0 -28px 28px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.95);
  transition: filter 320ms ease, transform 320ms ease;
}

.tracklist li:hover .track-img {
  filter: saturate(1.05) brightness(1);
}

.tracklist .num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  min-width: 1.8em;
}

.tracklist h3 {
  font-size: 1.35rem;
  margin: 0 0 0.2em;
}

.tracklist .scripture {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-2);
  margin: 0 0 0.7em;
  letter-spacing: 0.02em;
}

.tracklist p {
  color: var(--ink-mute);
  font-size: 0.96rem;
  margin: 0 0 1em;
  line-height: 1.55;
}

.watch {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tracklist .finale {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(214, 166, 74, 0.07), transparent 70%);
  border-right: none;
}

.tracklist .finale .num { color: var(--gold-2); font-size: 2.6rem; }
.tracklist .finale h3 { font-size: 1.6rem; }

/* ============================================================
   Listen / platforms
   ============================================================ */

.listen {
  padding: 90px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  background: radial-gradient(ellipse at center, rgba(214, 166, 74, 0.06), transparent 65%);
}

.listen .section-lead { margin-inline: auto; }

.smartlink {
  margin: 28px 0 36px;
}

.smartlink .btn-primary {
  padding: 16px 36px;
  font-size: 0.96rem;
  box-shadow: 0 12px 36px -16px rgba(214, 166, 74, 0.6);
}

.platforms {
  list-style: none;
  padding: 0;
  margin: 36px 0 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.platforms a {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 180ms ease;
}

.platforms a:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  transform: translateY(-1px);
}

/* ============================================================
   Contact
   ============================================================ */

.contact {
  padding: 90px 0 110px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.email {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  margin: 0.4em 0 1em;
}

.email a {
  color: var(--gold-2);
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
}

.email a:hover { border-color: var(--gold); }

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  padding: 40px 0 56px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--ink-mute);
  font-size: 0.88rem;
}

.site-footer p { margin: 0.3em 0; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px 80px;
    text-align: center;
  }
  .hero-cover { max-width: 360px; margin: 0 auto; }
  .hero-cta { justify-content: center; }
  .lead { margin-inline: auto; }
  .byline { text-align: center; }

  .site-header { padding: 14px 20px; }
  .site-header nav { gap: 16px; }
  .site-header nav a { font-size: 0.74rem; }

  .container { padding: 0 24px; }
  .tracklist { grid-template-columns: 1fr; }
  .tracklist li { border-right: none; }

  .album, .listen, .contact { padding: 70px 0; }
}

@media (max-width: 520px) {
  .site-header nav { display: none; }
  .brand { margin: 0 auto; }
  .site-header { justify-content: center; }
}

/* ============================================================
   Web font fallback (no external request)
   ============================================================ */

@supports (font-variation-settings: normal) {
  body { font-family: var(--sans); }
}
