/* Quiet Earth — site styles */

:root {
  --bg: #0a0a0b;
  --bg-alt: #121214;
  --gold: #c9a53b;
  --gold-soft: #e3c874;
  --cream: #e9e4d8;
  --muted: #9b968b;
  --line: rgba(233, 228, 216, 0.12);
  --maxw: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 0 0.5em;
}

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

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

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 0.9em;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Nav */
header.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(10,10,11,0.92), rgba(10,10,11,0));
  padding: 18px 0;
  transition: background 0.3s ease;
}
header.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: 0.3em;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--cream);
}
.brand img { height: 34px; width: 34px; }
nav.links {
  display: flex;
  gap: 30px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
nav.links a { color: var(--cream); opacity: 0.85; }
nav.links a:hover { color: var(--gold-soft); opacity: 1; }
.nav-toggle { display: none; background: none; border: none; color: var(--cream); font-size: 1.6rem; cursor: pointer; }

@media (max-width: 760px) {
  nav.links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: var(--bg-alt);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 26px;
    transition: right 0.35s ease;
    border-left: 1px solid var(--line);
  }
  nav.links.open { right: 0; }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/img/band-photo.jpg');
  background-size: cover;
  background-position: center 20%;
  opacity: 0.55;
  filter: grayscale(15%);
}
.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 5%, rgba(10,10,11,0.35) 45%, rgba(10,10,11,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 90px;
  width: 100%;
}
.hero-logo {
  width: 108px;
  margin-bottom: 26px;
  opacity: 0.95;
}
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25em;
}
.hero p.tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 1.6em;
  font-style: italic;
}
.hero-ctas { display: flex; gap: 18px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 30px;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  border-radius: 2px;
  transition: all 0.25s ease;
}
.btn:hover { background: var(--gold); color: #0a0a0b; }
.btn.solid {
  background: var(--gold);
  color: #0a0a0b;
}
.btn.solid:hover { background: var(--gold-soft); border-color: var(--gold-soft); }

/* Sections */
section { padding: 110px 0; border-bottom: 1px solid var(--line); }
section:last-of-type { border-bottom: none; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.section-head p { color: var(--muted); }

/* Releases */
.release-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 860px) {
  .release-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
.release-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
}
.release-card .cover { position: relative; overflow: hidden; }
.release-card .cover img { transition: transform 0.6s ease; }
.release-card:hover .cover img { transform: scale(1.04); }
.release-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(10,10,11,0.75);
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.release-info { padding: 26px 24px 30px; }
.release-info .type { color: var(--gold); text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.2em; margin-bottom: 6px; }
.release-info h3 { font-size: 1.5rem; margin-bottom: 4px; }
.release-info .date { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }

/* About / Album */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
.about-grid img { border: 1px solid var(--line); }
.about-text p { margin-bottom: 1.2em; color: #d8d3c6; }
.tracklist { margin-top: 30px; border-top: 1px solid var(--line); }
.tracklist .track {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
.tracklist .track .num { color: var(--gold); width: 28px; }
.tracklist .track .name { flex: 1; padding: 0 14px; }
.tracklist .track .len { color: var(--muted); font-variant-numeric: tabular-nums; }
.track-note { margin-top: 14px; font-size: 0.85rem; color: var(--muted); font-style: italic; }

/* Band */
.band-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .band-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .band-grid { grid-template-columns: repeat(2, 1fr); } }
.band-member { text-align: center; }
.band-member .photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 12px;
  background: var(--bg-alt);
}
.band-member .photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.band-member .name { font-family: 'Cormorant Garamond', Georgia, serif; letter-spacing: 0.04em; font-size: 1rem; line-height: 1.25; }
.band-member .role { color: var(--gold); text-transform: uppercase; font-size: 0.65rem; letter-spacing: 0.1em; margin-top: 4px; }
.band-credits {
  text-align: center;
  max-width: 720px;
  margin: 50px auto 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.7;
}

/* Order */
.order-box {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 60px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.order-box p { color: var(--muted); margin-bottom: 26px; }

/* Contact / Footer */
.contact-wrap { text-align: center; }
.contact-wrap .email { font-size: 1.4rem; font-family: 'Cormorant Garamond', Georgia, serif; }
.social-row { display: flex; justify-content: center; gap: 22px; margin-top: 26px; }
.social-row a {
  border: 1px solid var(--line);
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--cream);
}
.social-row a:hover { border-color: var(--gold); color: var(--gold-soft); }

footer {
  padding: 40px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
}
footer img { height: 26px; margin-bottom: 14px; opacity: 0.7; }
