:root {
  --bg: #f4f6ff;
  --paper: #ffffff;
  --ink: #171515;
  --muted: #4a4c67;
  --line: rgba(42, 49, 120, 0.14);
  --blue: #3d58ef;
  --green: #0d8f7a;
  --mint: #b7e1dd;
  --red: #fa1c18;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Onest", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.topline,
.section-label,
.visible-links,
.album-meta {
  font-family: "IBM Plex Mono", monospace;
}

.topline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: lowercase;
}

.topline p {
  margin: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 25rem) 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}

.logo-image {
  max-width: 24rem;
  margin: 0 auto;
}

.hero-copy {
  max-width: 44rem;
}

.kicker,
.section-label {
  margin: 0 0 0.9rem;
  font-size: 0.8rem;
  color: var(--blue);
  letter-spacing: 0.03em;
  text-transform: lowercase;
}

.hero-copy h1,
.records-header h2 {
  margin: 0;
  font-size: clamp(2.9rem, 7vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.lede {
  margin: 1rem 0 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--muted);
}

.lede span {
  color: var(--ink);
}

.visible-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  margin-top: 1.7rem;
  font-size: 0.86rem;
}

.visible-links a {
  padding-bottom: 0.18rem;
  border-bottom: 1px solid var(--ink);
}

.visible-links a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.visual-section,
.records-section {
  margin-top: 2.5rem;
}

.section-header {
  display: block;
}

.records-header h2 {
  margin-top: 0.15rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.visual-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.visual-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.visual-bottom {
  display: block;
  margin-top: 1rem;
}

.visual-card {
  overflow: hidden;
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(27, 36, 93, 0.08);
}

.visual-main img,
.visual-bottom img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.visual-stack img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  height: 100%;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem 1rem;
  margin-top: 1rem;
}

.album-card {
  display: grid;
  gap: 0.6rem;
}

.album-art {
  overflow: hidden;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(27, 36, 93, 0.08);
}

.album-art img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.album-meta {
  color: var(--muted);
  font-size: 0.76rem;
}

.album-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.album-card h3 a:hover {
  color: var(--blue);
}

@media (max-width: 1080px) {
  .album-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero-grid,
  .visual-top {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 1rem;
  }

  .logo-image {
    max-width: 16rem;
  }

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

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 1rem), var(--max-width));
    padding-bottom: 2rem;
  }

  .hero-copy h1,
  .records-header h2 {
    font-size: clamp(2.1rem, 14vw, 3.8rem);
  }

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