:root {
  color-scheme: light;
  --ink: #1f1a16;
  --muted: #6d5e42;
  --paper: #fefbf1;
  --sand: #f4e6d7;
  --clay: #853a1c;
  --steel: #314e5d;
  --gold: #d5a354;
  --line: rgba(31, 26, 22, 0.16);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

body {
  margin: 0;
}

a {
  color: inherit;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(254, 251, 241, 0.94);
}

.nav {
  width: min(100% - 32px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  text-decoration: none;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a[aria-current="page"] {
  color: var(--clay);
}

.hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(78, 13, 51, 0.2), rgba(78, 13, 51, 0.72)),
    linear-gradient(135deg, #d94f9b, #f08ab8 55%, #4e0d33);
  color: white;
}

.hero-inner,
.section-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero-inner {
  padding: 96px 0;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.94;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 1.12rem;
  line-height: 1.7;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--sand);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 48px;
  align-items: center;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.release-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.release-card a {
  text-decoration: none;
}

.release-card p,
.section p {
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.placeholder-art {
  min-height: 360px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(31, 26, 22, 0), rgba(31, 26, 22, 0.34)),
    linear-gradient(135deg, #b29276, #314e5d 52%, #240f06);
}

.site-footer {
  padding: 40px 0;
  background: #101315;
  color: white;
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 460px;
  }
}
