:root {
  --bg: #090909;
  --surface: #121212;
  --surface-2: #181818;
  --text: #f4f2ec;
  --muted: #aaa79f;
  --line: #2d2c29;
  --accent: #d9d3c4;
  --max: 1180px;
  --radius: 2px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 5%, rgba(255,255,255,.045), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  letter-spacing: .01em;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  background: white;
  color: black;
  padding: .75rem 1rem;
}

.site-header {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  text-decoration: none;
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .19em;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .86rem;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--text);
}

.menu-button {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  padding: .55rem .75rem;
}

.section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 7rem 0;
  border-bottom: 1px solid var(--line);
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-rule {
  width: 88px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 2rem;
}

.eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  margin: 0 0 1rem;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
  margin: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(4rem, 11vw, 9rem);
}

h2 {
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.hero-copy {
  max-width: 650px;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  color: var(--accent);
  margin: 2rem 0 0;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 750;
  border: 1px solid var(--line);
}

.button-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

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

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.scripture {
  margin: auto 0 0;
  padding-top: 4rem;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: .95rem;
}

.scripture span {
  font-family: Inter, ui-sans-serif, sans-serif;
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-left: .4rem;
}

.section-heading {
  margin-bottom: 3.5rem;
}

.release-grid,
.artist-grid {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(300px, 1.1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.cover-frame,
.portrait-frame {
  border: 1px solid var(--line);
  background: var(--surface);
}

.cover-frame {
  aspect-ratio: 1;
}

.cover-frame img,
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-frame {
  aspect-ratio: 4/5;
}

.release-copy,
.artist-copy,
.about-grid,
.connect-grid {
  font-size: 1.04rem;
}

.release-artist {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.release-date {
  margin: .35rem 0 1.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .73rem;
}

.lead {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.25;
  margin-top: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 7rem);
}

.values {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.values span {
  padding: 1.25rem .8rem;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .7rem;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.link-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.link-list a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  padding: .9rem 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.link-list a::after {
  content: "↗";
}

.link-list a:hover,
.link-list a:focus {
  color: var(--text);
}

.small-copy {
  color: var(--muted);
  font-size: .84rem;
}

.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

@media (max-width: 780px) {
  .site-header {
    position: relative;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    z-index: 10;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    border: 1px solid var(--line);
    padding: 1rem;
    flex-direction: column;
  }

  .site-nav.open {
    display: flex;
  }

  .section {
    padding: 5rem 0;
  }

  .hero {
    min-height: calc(100svh - 76px);
  }

  .release-grid,
  .artist-grid,
  .about-grid,
  .connect-grid {
    grid-template-columns: 1fr;
  }

  .values {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
