@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,400&family=Raleway:wght@200;300;400;500&display=swap');

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

:root {
  --bg:    #080808;
  --ink:   #e8e6e1;
  --gold:  #c8a84b;
  --gold2: #e8c96b;
  --dim:   #252525;
  --muted: #4a4a4a;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Raleway', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  min-height: 100vh;
}

/* ── HEADER / NAV ── */
header {
  width: 100%;
  border-bottom: 1px solid var(--dim);
  padding: 1.25rem 2rem;
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 10;
}

header nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.1rem 0.4rem;
  max-width: 900px;
  margin: 0 auto;
  color: var(--dim);
}

header nav a {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0.15rem 0;
}

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

/* ── MAIN CONTENT ── */
main {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

/* ── HEADINGS ── */
h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 2.5rem;
}

h2 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--dim);
  margin: 3rem 0 1.5rem;
}

h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--ink);
  margin-bottom: 0.6rem;
}

/* ── BODY TEXT ── */
p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(0.88rem, 1.8vw, 0.96rem);
  line-height: 1.85;
  color: #7a7a7a;
  margin-bottom: 1.1rem;
}

/* ── LINKS ── */
a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold2);
}

/* ── LISTS ── */
ul {
  list-style: none;
  margin-bottom: 1.1rem;
}

ul li {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(0.85rem, 1.7vw, 0.93rem);
  line-height: 1.85;
  color: #7a7a7a;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--dim);
}

ul li:last-child {
  border-bottom: none;
}

ul li a {
  color: #606060;
}

ul li a:hover {
  color: var(--gold);
}

ul li strong {
  color: var(--ink);
  font-weight: 400;
}

/* ── SECTION ── */
section {
  margin-bottom: 2rem;
}

/* ── ARTICLES (discography entries) ── */
article {
  border-top: 1px solid var(--dim);
  padding: 1.5rem 0;
}

article h3 {
  margin-bottom: 0.5rem;
}

article p {
  font-size: 0.88rem;
  color: #505050;
  margin-bottom: 0.5rem;
}

/* ── TABLE ── */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-family: var(--sans);
  font-size: 0.88rem;
}

th, td {
  text-align: left;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--dim);
  line-height: 1.5;
}

th {
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  width: 34%;
}

td {
  color: #7a7a7a;
  font-weight: 300;
}

/* ── FOOTER ── */
footer {
  width: 100%;
  border-top: 1px solid var(--dim);
  padding: 2rem;
  text-align: center;
}

footer p {
  font-family: var(--sans);
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  line-height: 2;
}

footer p a {
  color: var(--muted);
  transition: color 0.2s ease;
}

footer p a:hover {
  color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  header  { padding: 1rem 1.25rem; }
  main    { padding: 2.5rem 1.25rem 3.5rem; }
  h1      { margin-bottom: 1.75rem; }
  th      { width: auto; }
}
