* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: var(--link);
}

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

a:focus-visible {
  outline: 2px solid var(--link);
  outline-offset: 3px;
}

.page {
  width: min(1200px, 95vw);
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 2rem 0 3rem;
}

.brand-banner {
  width: min(100%, 700px);
  height: clamp(110px, 16vw, 180px);
  background: #000 url("DL LogoV2.png") center center / auto 175% no-repeat;
  border: 1px solid var(--line-strong);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-size: 0.8rem;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-head);
}

h1 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
}

h2 {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
}

.intro {
  margin: 0;
  max-width: 70ch;
  color: var(--muted);
}

.jump {
  display: inline-block;
  width: fit-content;
  margin-top: 0.6rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.35rem;
  text-decoration: none;
  font-weight: 600;
}

.sheet {
  border: 1px solid var(--line-strong);
  background: var(--sheet-bg);
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 0.5rem 0.65rem;
  text-align: left;
  vertical-align: top;
  word-wrap: break-word;
}

th {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  border-bottom: 1px solid var(--line-strong);
  font-weight: 700;
}

tbody tr:hover {
  background: var(--hover);
}

.artist,
.labelcredits,
.largeartist {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
}

font {
  color: inherit;
}

.cell-id {
  width: 2.6rem;
  color: var(--muted);
}

.col-artist {
  width: 24%;
}

.col-project {
  width: 44%;
}

.col-label {
  width: 16%;
}

.col-credit {
  width: 16%;
}

.section {
  padding: 1.5rem 0 2.2rem;
}

.section-head {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.section-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.divider {
  border: 0;
  border-top: 1px solid var(--line-strong);
  margin: 0;
}

.footer {
  padding: 1.2rem 0 2.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .page {
    width: min(1220px, 98vw);
  }

  .sheet {
    overflow-x: visible;
  }

  table {
    min-width: 0;
    table-layout: auto;
  }

  th,
  td {
    padding: 0.55rem;
  }

  th:first-child,
  td:first-child {
    display: none;
  }

  .col-artist,
  .col-project,
  .col-label,
  .col-credit {
    width: auto;
  }
}
