/* site-footer.css */
.site-footer {
  background:
    linear-gradient(135deg, rgba(7, 9, 13, 0.98), rgba(18, 23, 29, 0.98)),
    #07090d;
  border-top: 1px solid rgba(245, 239, 224, 0.14);
  color: #f5efe0;
  margin-top: clamp(34px, 6vw, 76px);
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px) clamp(18px, 4vw, 54px);
  width: 100%;
}

.site-footer__inner {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.65fr) minmax(240px, 0.8fr);
  margin: 0 auto;
  max-width: 1180px;
}

.site-footer__brand {
  display: grid;
  gap: 14px;
}

.site-footer__brand span,
.site-footer__block span {
  color: #2a9a89;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer__brand strong {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.02;
  text-transform: uppercase;
}

.site-footer__brand p,
.site-footer__profile p {
  color: #c9cfcb;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.site-footer__block {
  display: grid;
  gap: 12px;
  align-content: start;
}

.site-footer__block h2 {
  color: #f5efe0;
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
}

.site-footer__links {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links a {
  color: #d9dfdc;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.site-footer__links a:hover {
  color: #caa34a;
}

.site-footer__profile {
  background: rgba(245, 239, 224, 0.06);
  border: 1px solid rgba(245, 239, 224, 0.14);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.site-footer__profile h2 {
  font-size: 18px;
  margin: 0;
}

.site-footer__profile strong {
  color: #f5efe0;
}

.site-footer__bottom {
  color: #9ea6a3;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 10px;
  justify-content: space-between;
  margin: clamp(24px, 4vw, 42px) auto 0;
  max-width: 1180px;
  position: relative;
  padding-top: 16px;
}

.site-footer__bottom::before {
  border-top: 1px solid rgba(245, 239, 224, 0.12);
  content: "";
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
}

.site-scroll-top {
  align-items: center;
  background: rgba(15, 19, 24, 0.86);
  border: 1px solid rgba(245, 239, 224, 0.2);
  border-radius: 999px;
  bottom: clamp(18px, 3vw, 28px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
  color: #f5efe0;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 22px;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  transform: translateY(10px) scale(0.96);
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  width: 46px;
  z-index: 80;
}

.site-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.site-scroll-top:hover,
.site-scroll-top:focus-visible {
  background: rgba(202, 163, 74, 0.92);
  border-color: rgba(245, 239, 224, 0.34);
  color: #11161b;
  outline: none;
}

.site-scroll-top span {
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* site-menu.css */
.site-menu-open {
  overflow: hidden;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.site-menu-toggle {
  align-items: center;
  background: rgba(245, 239, 224, 0.08);
  border: 1px solid rgba(245, 239, 224, 0.22);
  border-radius: 8px;
  color: #f7f2e8;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  text-transform: uppercase;
}

.site-header .top-nav,
.home-header .home-nav,
.category-header nav {
  margin-left: auto;
}

.site-header .brand,
.home-header .brand,
.category-header .brand {
  flex-shrink: 0;
}

.site-menu-toggle:hover,
.site-menu-toggle:focus-visible {
  background: rgba(245, 239, 224, 0.14);
  border-color: rgba(213, 173, 69, 0.72);
  outline: none;
}

.site-menu-toggle--floating {
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 80;
}

.site-menu-toggle__icon {
  display: grid;
  gap: 4px;
  width: 18px;
}

.site-menu-toggle__icon span {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
}

.site-menu-backdrop {
  background: rgba(4, 7, 9, 0.66);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.18s ease;
  z-index: 90;
}

.site-menu-panel {
  align-content: start;
  background: #10151b;
  border-left: 1px solid rgba(245, 239, 224, 0.16);
  box-sizing: border-box;
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.42);
  color: #f7f2e8;
  display: grid;
  gap: 18px;
  height: 100dvh;
  max-width: min(430px, 100vw);
  opacity: 0;
  overflow-y: auto;
  padding: 22px;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(18px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  width: 100%;
  z-index: 100;
}

.site-menu-open .site-menu-backdrop,
.site-menu-open .site-menu-panel {
  opacity: 1;
  pointer-events: auto;
}

.site-menu-open .site-menu-panel {
  transform: translateX(0);
}

.site-menu-panel__head {
  align-items: start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-width: 0;
}

.site-menu-panel__brand span,
.site-menu-section-label {
  color: #2d8c7c;
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-menu-panel__brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.12;
  margin-top: 4px;
}

.site-menu-close {
  align-items: center;
  background: rgba(245, 239, 224, 0.08);
  border: 1px solid rgba(245, 239, 224, 0.16);
  border-radius: 999px;
  color: #f7f2e8;
  cursor: pointer;
  display: inline-flex;
  font-size: 24px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

.site-menu-list {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.site-menu-link {
  align-items: center;
  border: 1px solid rgba(245, 239, 224, 0.13);
  border-radius: 8px;
  color: inherit;
  display: flex;
  justify-content: space-between;
  min-height: 46px;
  padding: 10px 14px;
  text-decoration: none;
}

.site-menu-link:hover,
.site-menu-link:focus-visible {
  background: rgba(245, 239, 224, 0.08);
  border-color: rgba(213, 173, 69, 0.58);
  outline: none;
}

.site-menu-link--primary {
  background: rgba(213, 173, 69, 0.16);
  border-color: rgba(213, 173, 69, 0.58);
  color: #f7f2e8;
  font-weight: 900;
}

.site-menu-link small {
  color: #aeb8b5;
  font-size: 12px;
  font-weight: 800;
}

.site-menu-link--primary small {
  color: #d8c98c;
}

.site-menu-sublist {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.site-menu-sublist .site-menu-link {
  min-height: 42px;
}

.site-menu-share {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.site-menu-share__buttons {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-left: 0;
}

.site-menu-share__button {
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: inline-grid;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  gap: 6px;
  justify-items: center;
  min-width: 48px;
  padding: 0;
  text-decoration: none;
}

.site-menu-share__icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: inline-grid;
  height: 42px;
  place-items: center;
  position: relative;
  width: 42px;
}

.site-menu-share__button:hover .site-menu-share__icon {
  border-color: rgba(213, 173, 69, 0.72);
}

.site-menu-share__button--copy .site-menu-share__icon::before,
.site-menu-share__button--copy .site-menu-share__icon::after {
  border: 2px solid currentColor;
  border-radius: 3px;
  content: "";
  height: 17px;
  position: absolute;
  width: 13px;
}

.site-menu-share__button--copy .site-menu-share__icon::before {
  opacity: 0.62;
  transform: translate(-4px, 4px);
}

.site-menu-share__button--copy .site-menu-share__icon::after {
  background: rgba(255, 255, 255, 0.08);
  transform: translate(3px, -3px);
}

.site-menu-share__button--x .site-menu-share__icon {
  background: #07090d;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
}

.site-menu-share__button--line .site-menu-share__icon {
  background: #35c95a;
  color: #06250f;
}

.site-menu-share__button--line .site-menu-share__icon::before {
  background: #fff;
  border-radius: 999px;
  content: "";
  height: 21px;
  position: absolute;
  width: 26px;
}

.site-menu-share__button--line .site-menu-share__icon::after {
  border-left: 6px solid #fff;
  border-top: 6px solid transparent;
  bottom: 10px;
  content: "";
  height: 0;
  position: absolute;
  right: 11px;
  transform: rotate(14deg);
  width: 0;
}

.site-menu-share__button.is-copied {
  color: #d5ad45;
}

@media (max-width: 720px) {
  :root {
    --mobile-fixed-header-offset: max(128px, calc(118px + env(safe-area-inset-top)));
  }

  body .site-header,
  body .home-header,
  body .category-header {
    left: 0;
    min-height: var(--mobile-fixed-header-offset);
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 85;
  }

  .site-shell,
  .home-shell,
  body > .site-header + main,
  body > .home-header + main,
  body > .category-header + main {
    padding-top: var(--mobile-fixed-header-offset);
  }

  body .site-header .top-nav,
  body .home-header .home-nav,
  body .category-header nav {
    max-width: 100%;
    overflow-x: auto;
    padding-right: 48px;
    scrollbar-width: none;
    width: 100%;
  }

  body .site-header .top-nav::-webkit-scrollbar,
  body .home-header .home-nav::-webkit-scrollbar,
  body .category-header nav::-webkit-scrollbar {
    display: none;
  }

  .site-menu-toggle {
    position: fixed;
    right: max(16px, env(safe-area-inset-right));
    top: max(14px, env(safe-area-inset-top));
    z-index: 80;
    min-height: 38px;
    padding-inline: 10px;
  }

  .site-menu-toggle__text {
    display: none;
  }

  .site-menu-panel {
    border-left: 0;
    gap: 12px;
    max-width: 100vw;
    padding: 20px 18px 24px;
    width: 100vw;
  }

  .site-menu-panel__head {
    margin-bottom: 4px;
  }

  .site-menu-panel__brand strong {
    font-size: 18px;
    max-width: calc(100vw - 96px);
  }

  .site-menu-list {
    gap: 8px;
  }

  .site-menu-sublist {
    margin: 0;
    padding: 0;
  }

  .site-menu-section-label,
  .site-menu-link,
  .site-menu-share {
    width: 100%;
  }
}

/* artist-page.css */
:root {
  color-scheme: light;
  --ink: #17191d;
  --paper: #f1eee6;
  --panel: #fffdf8;
  --muted: #686d69;
  --line: #d5cebd;
  --night: #10151a;
  --night-soft: #182129;
  --cream: #fbf6e8;
  --green: #147b6d;
  --gold: #c7a24c;
  --red: #b83a30;
  --spotify: #1db954;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); }
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }

.site-header {
  align-items: center;
  background: rgba(16, 21, 26, 0.96);
  border-bottom: 1px solid rgba(251, 246, 232, 0.14);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 52px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand { display: grid; gap: 2px; text-decoration: none; }
.brand span, .eyebrow, .section-kicker {
  color: #48a99a;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}
.brand strong { color: var(--cream); font-size: 17px; }
.top-nav { display: flex; gap: 4px; }
.top-nav a {
  border-radius: 6px;
  color: #cad2d2;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 10px;
  text-decoration: none;
}
.top-nav a:hover { background: rgba(255,255,255,.08); color: white; }

.draft-notice {
  background: #e8ba43;
  color: #19150c;
  font-size: 13px;
  font-weight: 900;
  padding: 9px clamp(18px, 4vw, 52px);
  text-align: center;
}

.artist-hero {
  background: var(--night);
  color: var(--cream);
  display: grid;
  gap: clamp(30px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  min-height: min(720px, calc(100vh - 72px));
  padding: clamp(48px, 7vw, 96px) max(clamp(24px, 6vw, 96px), calc((100vw - 1500px) / 2));
}

.hero-copy { align-content: center; display: grid; gap: 20px; }
.breadcrumb { color: #aeb9b9; font-size: 13px; }
.breadcrumb a { color: var(--gold); font-weight: 800; text-decoration: none; }
.artist-hero h1 {
  font-size: clamp(48px, 8vw, 104px);
  letter-spacing: 0;
  line-height: .94;
  max-width: 850px;
  overflow-wrap: anywhere;
}
.hero-lead { color: #dce2df; font-size: clamp(16px, 2vw, 20px); line-height: 1.85; max-width: 780px; }
.term-groups { display: grid; gap: 12px; }
.term-group { align-items: flex-start; display: flex; gap: 12px; }
.term-group > strong { color: #9da8a7; flex: 0 0 64px; font-size: 11px; padding-top: 7px; text-transform: uppercase; }
.term-list { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; margin: 0; padding: 0; }
.term-list li { border: 1px solid #425059; border-radius: 999px; color: #f6f0df; font-size: 12px; font-weight: 800; padding: 6px 10px; }

.featured-track {
  align-self: center;
  background: #151d23;
  border: 1px solid #34434a;
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(0,0,0,.34);
  display: grid;
  overflow: hidden;
}
.featured-track__heading { align-items: end; display: flex; justify-content: space-between; padding: 18px 20px 15px; }
.featured-track__heading h2 { font-size: 17px; line-height: 1; }
.featured-track__video { aspect-ratio: 16 / 9; background: #060809; }
.featured-track__video iframe { border: 0; height: 100%; width: 100%; }
.featured-track__copy { display: grid; gap: 8px; padding: 18px 20px 22px; }
.featured-track__meta { color: #45a797; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.featured-track__copy h3 { font-size: clamp(25px, 3vw, 36px); line-height: 1.05; }
.featured-track__copy > p:not(.featured-track__meta) { color: #bdc7c4; font-size: 13px; line-height: 1.72; }
.featured-track__copy a { color: var(--gold); font-size: 13px; font-weight: 850; width: fit-content; }

.artist-content { background: var(--paper); }
.content-section { padding: clamp(54px, 7vw, 92px) max(clamp(22px, 6vw, 96px), calc((100vw - 1320px) / 2)); }
.content-section + .content-section { border-top: 1px solid var(--line); }
#introduction {
  background-color: var(--paper);
  background-image:
    linear-gradient(90deg, rgba(245, 241, 232, .76) 0%, rgba(245, 241, 232, .56) 54%, rgba(245, 241, 232, .16) 100%),
    url('/assets/artist-introduction-wave.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-heading { display: grid; gap: 9px; margin-bottom: 28px; max-width: 880px; }
.section-heading h2 { font-size: clamp(30px, 5vw, 52px); letter-spacing: 0; line-height: 1.04; }
.section-heading p { color: var(--muted); line-height: 1.7; }
.intro-copy { display: grid; gap: 20px; max-width: 920px; }
.intro-copy p { color: #3f4541; font-size: 17px; line-height: 1.95; }
.taxonomy-groups { display: grid; gap: 24px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.taxonomy-groups > div { border-top: 3px solid var(--ink); padding-top: 18px; }
.taxonomy-groups h3 { font-size: 15px; margin-bottom: 14px; text-transform: uppercase; }
.large-term-list { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; margin: 0; padding: 0; }
.large-term-list li { font-size: 14px; font-weight: 850; }
.large-term-list a,
.large-term-list span { background: #e2ddd0; border: 1px solid #cfc7b4; border-radius: 999px; display: block; padding: 9px 13px; text-decoration: none; }
.large-term-list a:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.large-term-list a:focus-visible { outline: 3px solid rgba(20, 123, 109, .34); outline-offset: 3px; }

.feature-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-card {
  background: var(--night-soft);
  border: 1px solid #303d45;
  border-radius: 8px;
  color: var(--cream);
  display: grid;
  grid-template-columns: minmax(190px, .85fr) minmax(0, 1.15fr);
  overflow: hidden;
  text-decoration: none;
}
.feature-card img { height: 100%; min-height: 260px; object-fit: cover; width: 100%; }
.feature-copy { align-content: center; display: grid; gap: 12px; padding: 24px; }
.feature-copy span { color: #49a898; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.feature-copy h3 { font-size: 22px; line-height: 1.35; }
.feature-copy p { color: #bcc5c3; display: -webkit-box; line-height: 1.75; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }
.feature-card:hover { border-color: var(--gold); }

.album-grid { display: grid; gap: 18px; }
.album-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  column-gap: 22px;
  grid-template-columns: 220px minmax(0, 1fr);
  padding: 18px;
  row-gap: 14px;
}
.album-card > .album-cover-wrap,
.album-card > .album-design-cover { grid-column: 1; grid-row: 1 / 4; }
.album-cover-wrap { align-self: start; background: #e7e1d4; border-radius: 6px; overflow: hidden; }
.album-cover-wrap img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.album-design-cover {
  align-self: start;
  aspect-ratio: 1;
  background: var(--cover-bg);
  border-radius: 6px;
  color: var(--cover-ink);
  display: grid;
  overflow: hidden;
  padding: 16px;
  position: relative;
}
.album-design-cover::before {
  border: 1px solid var(--cover-accent);
  content: "";
  inset: 12px;
  opacity: .5;
  pointer-events: none;
  position: absolute;
}
.design-index { color: var(--cover-accent); font-size: 9px; font-weight: 950; position: relative; z-index: 2; }
.design-disc {
  background: #101418;
  border: 9px solid var(--cover-accent);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #101418, inset 0 0 0 5px var(--cover-accent), inset 0 0 0 7px #101418;
  height: 116px;
  opacity: .92;
  position: absolute;
  right: -24px;
  top: 34px;
  width: 116px;
}
.design-disc::after { background: var(--cover-bg); border-radius: 50%; content: ""; height: 16px; left: 41px; position: absolute; top: 41px; width: 16px; }
.design-title { align-self: end; display: grid; gap: 7px; max-width: 80%; position: relative; z-index: 2; }
.design-title strong { font-size: clamp(17px, 2vw, 25px); line-height: 1.02; overflow-wrap: anywhere; }
.design-title small { color: var(--cover-accent); font-size: 9px; font-weight: 850; line-height: 1.3; }
.album-copy { align-content: center; display: grid; gap: 14px; grid-column: 2; grid-row: 1; }
.album-meta { color: var(--green); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.album-copy h3 { font-size: clamp(24px, 3vw, 34px); line-height: 1.15; }
.album-copy > p { color: #484d49; line-height: 1.82; max-width: 840px; }
.album-actions, .artist-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.album-card-actions {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  grid-column: 2;
  grid-row: 2;
}
.album-card-action-group { display: grid; gap: 7px; }
.album-card-action-group--find {
  border-left: 1px solid #c8cbc3;
  padding-left: 20px;
}
.album-card-action-label {
  color: #747a76;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.3;
}
.album-detail-link {
  align-items: center;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 6px;
  color: white;
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  justify-content: center;
  min-height: 42px;
  padding: 11px 15px;
  text-decoration: none;
}
.album-copy h3 a { text-decoration-thickness: 1px; text-underline-offset: 4px; }
.action-link {
  border: 1px solid #29323b;
  border-radius: 6px;
  color: white;
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  justify-content: center;
  min-height: 42px;
  padding: 11px 15px;
  text-decoration: none;
}
.action-link--spotify { background: var(--spotify); border-color: var(--spotify); color: #07150d; }
.action-link--youtube { background: #d52929; border-color: #d52929; }
.action-link--amazon { background: #252c39; border-color: #252c39; }
.action-link--official { background: var(--green); border-color: var(--green); }
.action-link:hover { filter: brightness(1.08); transform: translateY(-1px); }
.album-detail-status { color: #777c77; font-size: 12px; font-weight: 800; grid-column: 2; grid-row: 3; }

.related-grid { display: grid; gap: 12px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.related-item { border-left: 4px solid var(--gold); background: #e7e2d6; padding: 20px; }
.related-item h3 { font-size: 19px; margin-bottom: 8px; }
.related-item p { color: #595e5a; font-size: 14px; line-height: 1.7; }

.commerce-section { background: var(--night); color: var(--cream); }
.commerce-section .section-heading p { color: #bfc8c5; }
.artist-next-steps { border-top: 1px solid #354047; display: grid; }
.artist-next-step {
  align-items: start;
  border-bottom: 1px solid #354047;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(250px, .75fr) minmax(0, 1.25fr);
  padding: 26px 0;
}
.artist-next-step__heading { display: grid; gap: 12px; grid-template-columns: 28px minmax(0, 1fr); }
.artist-next-step__number { color: var(--gold); font-size: 11px; font-weight: 900; line-height: 1.7; }
.artist-next-step__heading h3 { font-size: 19px; line-height: 1.35; }
.artist-next-step__heading div > p { color: #98a3a0; font-size: 12px; line-height: 1.65; margin-top: 5px; }
.album-guide-links { display: flex; flex-wrap: wrap; gap: 10px; }
.album-guide-link {
  align-items: baseline;
  border: 1px solid #4a565c;
  border-radius: 6px;
  color: var(--cream);
  display: grid;
  gap: 3px 12px;
  grid-template-columns: 1fr auto;
  min-width: min(100%, 280px);
  padding: 11px 14px;
  text-decoration: none;
}
.album-guide-link span { color: #63b7a8; font-size: 9px; font-weight: 900; grid-column: 1 / -1; text-transform: uppercase; }
.album-guide-link strong { font-size: 14px; line-height: 1.4; }
.album-guide-link small { color: #aeb9b6; font-size: 11px; }
.album-guide-link:hover { background: #1b252b; border-color: var(--gold); }
.commerce-note { color: #9aa4a1; font-size: 12px; line-height: 1.7; margin-top: 14px; }
.source-list { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.source-list a { color: #b9c4c1; font-size: 12px; }

@media (max-width: 980px) {
  .artist-hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 110px; }
  .featured-track { max-width: 700px; width: 100%; }
  .feature-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .site-header { position: relative; }
  .top-nav { display: none; }
  .artist-hero { padding-bottom: 94px; }
  .artist-hero h1 { font-size: clamp(46px, 16vw, 72px); }
  #introduction {
    background-image:
      linear-gradient(rgba(245, 241, 232, .78), rgba(245, 241, 232, .78)),
      url('/assets/artist-introduction-wave.webp');
    background-position: 65% center;
  }
  .term-group { display: grid; gap: 5px; }
  .album-card { grid-template-columns: 108px minmax(0, 1fr); gap: 14px; padding: 12px; }
  .album-card > .album-cover-wrap,
  .album-card > .album-design-cover { grid-column: 1; grid-row: 1; }
  .album-copy { grid-column: 2; grid-row: 1; }
  .album-card-actions {
    align-items: stretch;
    display: grid;
    gap: 0;
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .album-card-action-group { padding-top: 2px; }
  .album-card-action-group + .album-card-action-group { border-top: 1px solid var(--line); margin-top: 13px; padding-top: 13px; }
  .album-card-action-group--find { border-left: 0; padding-left: 0; }
  .album-card-action-label { margin-bottom: 7px; }
  .album-card-actions .album-actions { width: 100%; }
  .album-card-actions .action-link,
  .album-card-actions .album-detail-link { flex: 1 1 150px; }
  .album-detail-status { grid-column: 1 / -1; grid-row: 3; }
  .album-design-cover { padding: 10px; }
  .album-design-cover::before { inset: 7px; }
  .design-disc { border-width: 5px; height: 68px; right: -18px; top: 24px; width: 68px; }
  .design-disc::after { height: 10px; left: 24px; top: 24px; width: 10px; }
  .design-title { max-width: 90%; }
  .design-title strong { font-size: 13px; }
  .design-title small { display: none; }
  .album-copy h3 { font-size: 22px; }
  .album-copy > p { grid-column: 1 / -1; }
  .album-actions { grid-column: 1 / -1; }
  .feature-card { grid-template-columns: 120px minmax(0, 1fr); }
  .feature-card img { min-height: 230px; }
  .feature-copy { padding: 17px; }
  .feature-copy h3 { font-size: 18px; }
  .feature-copy p { font-size: 13px; -webkit-line-clamp: 5; }
  .artist-next-step { gap: 18px; grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .album-card { grid-template-columns: 1fr; }
  .album-card > .album-cover-wrap,
  .album-card > .album-design-cover { grid-column: 1; grid-row: 1; }
  .album-copy { grid-column: 1; grid-row: 2; }
  .album-cover-wrap, .album-design-cover { max-width: 190px; width: 100%; }
  .album-card-actions { grid-column: 1; grid-row: 3; }
  .album-card-action-group { width: 100%; }
  .album-detail-status { grid-column: 1; grid-row: 4; }
  .album-design-cover { padding: 14px; }
  .album-design-cover::before { inset: 10px; }
  .design-disc { border-width: 8px; height: 108px; right: -22px; top: 32px; width: 108px; }
  .design-disc::after { height: 14px; left: 39px; top: 39px; width: 14px; }
  .design-title strong { font-size: 19px; }
  .design-title small { display: block; }
  .album-copy > p, .album-actions { grid-column: auto; }
  .related-grid { grid-template-columns: 1fr; }
  .taxonomy-groups { grid-template-columns: 1fr; }
  .action-link { flex: 1 1 150px; }
}

/* album-page.css */
.album-page {
  --album-accent: #efc75d;
  --album-bg: #a84034;
  --album-disc: #102b2d;
  --album-ink: #fff7df;
}

.album-hero {
  align-items: center;
  background: var(--night);
  color: var(--cream);
  display: grid;
  gap: clamp(30px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  min-height: min(760px, calc(100vh - 68px));
  padding: clamp(48px, 7vw, 96px) max(clamp(24px, 6vw, 96px), calc((100vw - 1450px) / 2));
}

.album-hero__copy {
  align-content: center;
  display: grid;
  gap: 18px;
}

.album-breadcrumb {
  color: #aeb9b9;
  font-size: 13px;
}

.album-breadcrumb a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.album-hero h1 {
  font-size: 92px;
  line-height: .9;
  max-width: 900px;
  overflow-wrap: anywhere;
}

.album-byline {
  color: var(--album-accent);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.album-byline a { text-decoration-thickness: 1px; text-underline-offset: 4px; }
.album-hero__lead { color: #dce2df; font-size: 18px; line-height: 1.85; max-width: 760px; }
.album-hero .featured-track {
  align-self: center;
  background: #151d23;
  border: 1px solid #34434a;
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(0,0,0,.34);
  display: grid;
  overflow: hidden;
}
.album-hero .featured-track__heading { align-items: end; display: flex; justify-content: space-between; padding: 18px 20px 15px; }
.album-hero .featured-track__heading h2 { font-size: 17px; line-height: 1; }
.album-hero .featured-track__video { aspect-ratio: 16 / 9; background: #060809; }
.album-hero .featured-track__video iframe { border: 0; display: block; height: 100%; width: 100%; }
.album-hero .featured-track__copy { display: grid; gap: 8px; padding: 18px 20px 22px; }
.album-hero .featured-track__meta { color: #45a797; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.album-hero .featured-track__copy h3 { font-size: clamp(25px, 3vw, 36px); line-height: 1.05; }
.album-hero .featured-track__copy > p:not(.featured-track__meta) { color: #bdc7c4; font-size: 13px; line-height: 1.72; }
.album-hero .featured-track__copy a { color: var(--gold); font-size: 13px; font-weight: 850; width: fit-content; }
.album-content { background: var(--paper); }

.album-page #overview {
  background-color: var(--paper);
  background-image:
    linear-gradient(90deg, rgba(245, 241, 232, .76) 0%, rgba(245, 241, 232, .56) 54%, rgba(245, 241, 232, .16) 100%),
    url('/assets/artist-introduction-wave.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.album-overview-grid {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
}

.album-facts {
  border-top: 3px solid var(--ink);
  display: grid;
  margin: 0;
}

.album-facts div {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(110px, .7fr) minmax(0, 1.3fr);
  padding: 13px 0;
}

.album-facts dt { color: var(--muted); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.album-facts dd { font-size: 14px; font-weight: 800; margin: 0; }

.tracklist {
  counter-reset: track;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 38px 0 0;
  padding: 0;
}

.tracklist li {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  padding: 13px 12px 13px 0;
}

.tracklist li:nth-child(odd) { margin-right: 18px; }
.track-position { color: var(--green); font-size: 11px; font-weight: 900; }
.track-title { font-size: 14px; font-weight: 800; }
.track-duration { color: var(--muted); font-size: 12px; }
.tracklist li.is-essential .track-title::after { color: #9a6920; content: "Essential"; display: block; font-size: 9px; margin-top: 3px; text-transform: uppercase; }

.artist-reference {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-top: 3px solid var(--ink);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(180px, .45fr) minmax(0, 1.55fr) auto;
  padding: 28px 0;
}

.artist-reference__name { font-size: 42px; line-height: 1; }
.artist-reference p { color: var(--muted); line-height: 1.8; }
.artist-reference__link { background: var(--ink); border-radius: 6px; color: var(--cream); font-size: 13px; font-weight: 850; padding: 12px 16px; text-decoration: none; }

.album-related-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.album-related-item { align-items: stretch; background: var(--panel); border: 1px solid var(--line); display: grid; grid-template-columns: 150px minmax(0, 1fr); overflow: hidden; }
.album-related-cover { aspect-ratio: 1; background: var(--related-bg); color: var(--related-ink); display: grid; min-width: 0; overflow: hidden; padding: 14px; position: relative; width: 100%; }
.album-related-cover::after { background: var(--related-accent); border-radius: 50%; content: ""; height: 76px; opacity: .9; position: absolute; right: -15px; top: 31px; width: 76px; }
.album-related-cover strong { align-self: end; font-size: 18px; line-height: 1; max-width: 84%; overflow-wrap: anywhere; position: relative; z-index: 1; }
.album-related-copy { align-content: center; background: var(--panel); display: grid; gap: 10px; min-width: 0; padding: 20px; position: relative; z-index: 1; }
.album-related-copy span { color: var(--green); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.album-related-copy h3 { font-size: 23px; line-height: 1.15; }
.album-related-copy p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.album-related-copy small { color: #777c77; font-size: 11px; font-weight: 800; }

.album-listen-grid { align-items: start; display: grid; gap: 28px; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); }
.album-listen-embed { background: #050708; min-height: 352px; }
.album-listen-embed iframe { border: 0; display: block; height: 352px; width: 100%; }
.album-listen-copy { display: grid; gap: 14px; }
.album-listen-copy h3 { font-size: 30px; line-height: 1.05; }
.album-listen-copy > p { color: #bdc7c4; line-height: 1.75; }
.album-action-groups { display: grid; gap: 16px; margin-top: 3px; }
.album-action-group { display: grid; gap: 8px; }
.album-action-group--find { border-top: 1px solid #354047; padding-top: 15px; }
.album-action-label {
  color: #93a09d;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.3;
}
.album-action-note {
  color: #899592;
  font-size: 10px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 980px) {
  .album-hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 110px; }
  .album-hero .featured-track { max-width: 700px; width: 100%; }
  .album-hero h1 { font-size: 60px; }
  .album-overview-grid, .album-listen-grid { grid-template-columns: 1fr; }
  .album-related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .album-hero { padding-bottom: 94px; }
  .album-hero h1 { font-size: 54px; }
  .album-page #overview {
    background-image:
      linear-gradient(rgba(245, 241, 232, .78), rgba(245, 241, 232, .78)),
      url('/assets/artist-introduction-wave.webp');
    background-position: 65% center;
  }
  .tracklist { grid-template-columns: 1fr; }
  .tracklist li:nth-child(odd) { margin-right: 0; }
  .artist-reference { align-items: start; grid-template-columns: 1fr; }
  .artist-reference__name { font-size: 34px; }
  .artist-reference__link { justify-self: start; }
  .album-related-item { grid-template-columns: 130px minmax(0, 1fr); }
  .album-related-cover::after { height: 64px; right: -12px; top: 27px; width: 64px; }
  .album-related-copy { padding: 16px; }
}

@media (max-width: 520px) {
  .album-hero { padding-left: 18px; padding-right: 18px; }
  .album-hero h1 { font-size: 44px; }
  .album-related-item { grid-template-columns: 110px minmax(0, 1fr); }
  .album-related-cover::after { height: 54px; right: -10px; top: 24px; width: 54px; }
  .album-related-copy { padding: 14px; }
  .album-related-copy h3 { font-size: 19px; }
  .album-related-copy p { display: none; }
}
