/* 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%;
  }
}

/* breadcrumbs.css */
.breadcrumb-nav {
  color: rgba(245, 239, 224, 0.72);
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 18px;
}

.breadcrumb-nav ol {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-nav li {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  min-width: 0;
}

.breadcrumb-nav li:not(:last-child)::after {
  color: rgba(202, 163, 74, 0.8);
  content: "/";
}

.breadcrumb-nav a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  color: #f5efe0;
}

.breadcrumb-nav [aria-current="page"] {
  color: #f5efe0;
}

.breadcrumb-adjacent {
  background: var(--panel, #151a20);
  border: 1px solid var(--line, rgba(245, 239, 224, 0.18));
  border-radius: 8px;
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding: clamp(18px, 3vw, 28px);
}

.breadcrumb-adjacent h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  margin: 4px 0 0;
}

.breadcrumb-adjacent-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.breadcrumb-adjacent-card {
  background: rgba(245, 239, 224, 0.96);
  border: 1px solid rgba(202, 163, 74, 0.38);
  border-radius: 8px;
  color: #12171d;
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 16px;
  text-decoration: none;
}

.breadcrumb-adjacent-card span {
  color: #247a6b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.breadcrumb-adjacent-card strong {
  font-size: 18px;
  line-height: 1.34;
}

.breadcrumb-adjacent-card:hover {
  border-color: rgba(202, 163, 74, 0.88);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .breadcrumb-nav {
    font-size: 12px;
  }

  .breadcrumb-adjacent-grid {
    grid-template-columns: 1fr;
  }
}

/* site-share.css */
.share-links {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-share-slot {
  display: block;
}

.hero-share-slot:empty {
  display: none;
}

.hero-share-slot .share-links {
  margin-top: 0;
}

.share-links__label {
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
  opacity: 0.68;
  padding-bottom: 10px;
  text-transform: uppercase;
}

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

.share-links__button:hover {
  background: transparent;
}

.share-links__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;
  justify-items: center;
  place-items: center;
  position: relative;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
  width: 42px;
}

.share-links__button:hover .share-links__icon {
  border-color: rgba(213, 173, 69, 0.72);
  transform: translateY(-1px);
}

.share-links__text {
  color: currentColor;
  line-height: 1;
  opacity: 0.82;
  text-align: center;
}

.share-links__button--copy .share-links__icon::before,
.share-links__button--copy .share-links__icon::after {
  border: 2px solid currentColor;
  border-radius: 3px;
  content: "";
  height: 17px;
  position: absolute;
  width: 13px;
}

.share-links__button--copy .share-links__icon::before {
  opacity: 0.62;
  transform: translate(-4px, 4px);
}

.share-links__button--copy .share-links__icon::after {
  background: rgba(255, 255, 255, 0.08);
  transform: translate(3px, -3px);
}

.share-links__button--x .share-links__icon {
  background: #07090d;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
}

.share-links__button--line .share-links__icon {
  background: #35c95a;
  color: #06250f;
}

.share-links__button--line .share-links__icon::before {
  background: #fff;
  border-radius: 999px;
  content: "";
  height: 21px;
  position: absolute;
  width: 26px;
}

.share-links__button--line .share-links__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;
}

.share-links__button.is-copied {
  color: #111;
}

.share-links__button.is-copied .share-links__icon {
  background: #d5ad45;
  border-color: #d5ad45;
  color: #111;
}

.hero-visual + .share-links,
.hero-card + .share-links {
  margin-top: 0;
}

@media (max-width: 720px) {
  .share-links {
    gap: 11px;
  }

  .share-links__button {
    min-width: 46px;
  }

  .share-links__icon {
    height: 40px;
    width: 40px;
  }
}

/* site-expandable-lead.css */
.lead-toggle {
  align-items: center;
  background: rgba(245, 239, 224, 0.08);
  border: 1px solid rgba(245, 239, 224, 0.22);
  border-radius: 999px;
  color: currentColor;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  gap: 6px;
  margin-top: 10px;
  min-height: 34px;
  padding: 7px 13px;
}

.lead-toggle:hover {
  background: rgba(213, 173, 69, 0.18);
  border-color: rgba(213, 173, 69, 0.64);
}

.lead-toggle::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 7px;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
  width: 7px;
}

.lead-toggle.is-expanded::after {
  transform: rotate(225deg) translateY(-2px);
}

.lead.lead--expandable {
  overflow: hidden;
  transition: max-height 220ms ease;
}

.lead.lead--collapsed {
  max-height: var(--lead-collapsed-height, 16.6em);
  position: relative;
}

.lead.lead--collapsed::after {
  background: linear-gradient(180deg, rgba(7, 9, 13, 0), rgba(7, 9, 13, 0.88));
  bottom: 0;
  content: "";
  height: 3.6em;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

@media (max-width: 720px) {
  .lead.lead--collapsed {
    max-height: var(--lead-collapsed-height-mobile, 18.8em);
  }
}

/* album-list.css */
:root {
  color-scheme: light;
  --ink: #16181d;
  --paper: #f3f0e8;
  --panel: #fffdf6;
  --panel-soft: #ebe6d8;
  --muted: #6d706d;
  --line: #d7d0bf;
  --night: #10141b;
  --night-2: #162235;
  --cream: #fbf6e8;
  --green: #0c766a;
  --gold: #c9a24b;
  --rose: #b64f61;
  --blue: #225c8f;
  --shadow: 0 18px 48px rgba(15, 20, 27, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(201, 162, 75, 0.16), transparent 28%),
    linear-gradient(180deg, var(--night) 0%, var(--night-2) 42%, var(--paper) 42%, var(--paper) 100%);
  color: var(--ink);
}

a {
  color: inherit;
}

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

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

.brand {
  display: grid;
  gap: 2px;
  text-decoration: none;
}

.brand span,
.eyebrow,
.section-kicker,
.meta-label {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  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: #c9d0d3;
  font-size: 14px;
  font-weight: 800;
  padding: 8px 12px;
  text-decoration: none;
}

.top-nav a:hover {
  background: rgba(251, 246, 232, 0.08);
  color: var(--cream);
}

.loading-view,
.error-view {
  color: var(--cream);
  padding: 42px clamp(18px, 4vw, 52px);
}

.album-page {
  display: grid;
  gap: 28px;
}

.hero {
  align-items: center;
  color: var(--cream);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  padding: clamp(36px, 5vw, 70px) clamp(18px, 4vw, 52px) 34px;
}

@media (min-width: 1100px) {
  .hero {
    gap: clamp(48px, 6vw, 110px);
    grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
    padding-inline: max(clamp(72px, 7vw, 120px), calc((100vw - 1500px) / 2));
  }
}

.hero-copy {
  align-content: center;
  display: grid;
  gap: 18px;
  max-width: 850px;
}

.hero-share-slot {
  justify-self: center;
  width: min(100%, 540px);
}

.hero-aside-stack {
  display: contents;
}

.breadcrumb {
  color: #b9c1c6;
  font-size: 13px;
  margin: 0;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: 0;
  line-height: 1.06;
}

.lead {
  color: #dbe0df;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.86;
  max-width: 780px;
}

.hero-actions,
.button-row,
.listen-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.album-actions,
.cta-groups,
.listen-service-groups {
  display: grid;
  gap: 12px;
  margin-top: 2px;
}

.action-group {
  display: grid;
  gap: 7px;
}

.action-group > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.service-group {
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.service-group--youtube {
  background: #fff4f4;
  border-color: rgba(217, 37, 37, 0.22);
}

.service-group--youtube > span {
  color: #b91c1c;
}

.service-group--spotify {
  background: #effaf3;
  border-color: rgba(29, 185, 84, 0.24);
}

.service-group--spotify > span {
  color: #137c3d;
}

.youtube-preview-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 16px 0 14px;
}

.youtube-preview-card {
  background: #111820;
  border: 1px solid rgba(217, 37, 37, 0.2);
  border-radius: 8px;
  color: #fffaf0;
  display: grid;
  gap: 10px;
  overflow: hidden;
  padding: 10px;
  text-decoration: none;
}

.youtube-preview-card strong {
  font-size: 15px;
  line-height: 1.45;
}

.youtube-preview-thumb {
  aspect-ratio: 16 / 9;
  background: #0b1016;
  border-radius: 6px;
  display: block;
  overflow: hidden;
  position: relative;
}

.youtube-preview-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.youtube-preview-thumb::after {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28));
  content: "";
  inset: 0;
  position: absolute;
}

.youtube-play-mark {
  background: #e21d24;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  height: 42px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  z-index: 1;
}

.youtube-play-mark::before {
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  content: "";
  left: 23px;
  position: absolute;
  top: 11px;
}

.button,
.shop-link,
.listen-link {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  justify-content: center;
  min-height: 40px;
  padding: 9px 13px;
  text-decoration: none;
}

.listen-link::before,
.shop-link--spotify::before,
.shop-link--youtube::before {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 10px;
  font-weight: 900;
  height: 18px;
  justify-content: center;
  margin-right: 7px;
  width: 18px;
}

.button.primary,
.shop-link {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--night);
}

.button.secondary {
  background: rgba(251, 246, 232, 0.08);
  border-color: rgba(251, 246, 232, 0.25);
  color: var(--cream);
}

.hero-visual {
  align-self: start;
  background: rgba(251, 246, 232, 0.96);
  border: 1px solid rgba(251, 246, 232, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 16px;
  padding: 18px;
}

.hero-image {
  aspect-ratio: 16 / 9;
  border-radius: 7px;
  object-fit: cover;
  width: 100%;
}

.hero-image.is-hidden {
  display: none;
}

.record-stack {
  align-items: center;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1c2027, #2d2431);
  border-radius: 7px;
  display: grid;
  justify-items: center;
  overflow: hidden;
  position: relative;
}

.record-stack[hidden] {
  display: none;
}

.record-stack::before,
.record-stack::after {
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  position: absolute;
}

.record-stack::before {
  background:
    radial-gradient(circle, var(--gold) 0 8%, #111 8% 16%, #20242a 16% 42%, #111 42% 43%, #2c3138 43% 100%);
  box-shadow: 24px 14px 0 rgba(12, 118, 106, 0.55);
  width: 180px;
}

.record-stack::after {
  background: rgba(251, 246, 232, 0.08);
  inset: 0;
}

.hero-stats {
  display: grid;
  gap: 10px;
}

.hero-stat {
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding-top: 10px;
}

.hero-stat span {
  color: var(--muted);
}

.content-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  padding: 0 clamp(18px, 4vw, 52px) 58px;
}

.main-column {
  display: grid;
  gap: 26px;
  min-width: 0;
}

.side-rail {
  align-content: start;
  align-self: start;
  display: grid;
  gap: 16px;
  position: sticky;
  top: 86px;
}

.section,
.rail-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(15, 20, 27, 0.06);
}

.section {
  padding: clamp(20px, 3vw, 30px);
}

.section-header {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(24px, 3vw, 35px);
  line-height: 1.2;
}

.section-intro,
.body-text {
  color: #444844;
  line-height: 1.82;
}

.point-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 16px;
}

.point-card {
  background: var(--panel-soft);
  border: 1px solid #d5cdbb;
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 15px;
}

.point-card span {
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
}

.album-list {
  display: grid;
  gap: 18px;
}

.album-card {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: 160px minmax(0, 1fr);
  padding: 18px;
  scroll-margin-top: 92px;
}

.album-mark {
  align-content: center;
  background: linear-gradient(145deg, #171b22, #2a2230);
  border-radius: 8px;
  color: var(--cream);
  display: grid;
  gap: 10px;
  min-height: 160px;
  overflow: hidden;
  padding: 18px;
  position: relative;
}

.album-mark::after {
  aspect-ratio: 1;
  background:
    radial-gradient(circle, var(--gold) 0 8%, #10141b 8% 17%, #242832 17% 58%, #10141b 58% 60%, #313744 60% 100%);
  border-radius: 50%;
  bottom: -42px;
  content: "";
  opacity: 0.9;
  position: absolute;
  right: -36px;
  width: 128px;
}

.album-media {
  align-items: center;
  background: linear-gradient(145deg, #fffefa, #f4efe3);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  min-height: 160px;
  overflow: hidden;
  padding: 14px;
  position: relative;
}

.album-cover {
  display: block;
  height: 100%;
  max-height: 210px;
  object-fit: contain;
  width: 100%;
}

.album-cover-link {
  display: block;
  height: 100%;
  max-height: 210px;
  width: 100%;
}

.album-cover-link:focus-visible {
  border-radius: 6px;
  outline: 3px solid rgba(20, 129, 112, 0.35);
  outline-offset: 3px;
}

.album-index--image {
  background: rgba(15, 18, 24, 0.88);
  border-radius: 999px;
  left: 12px;
  padding: 5px 8px;
  position: absolute;
  top: 12px;
}

.album-index {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.album-role {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  max-width: 110px;
  position: relative;
  z-index: 1;
}

.album-copy {
  display: grid;
  gap: 12px;
}

.album-title-row {
  align-items: start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.album-title-row h3 {
  font-size: 24px;
  line-height: 1.3;
}

.album-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.stars {
  color: var(--gold);
  white-space: nowrap;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tag-list li {
  background: #edf2ed;
  border-radius: 999px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  padding: 6px 9px;
}

.shop-link {
  box-shadow: 0 8px 18px rgba(16, 20, 27, 0.12);
  color: #111;
}

.shop-link--amazon {
  background: #252c3a;
  border-color: #252c3a;
  color: #fff;
}

.shop-link--rakuten {
  background: #b71f14;
  border-color: #b71f14;
  color: #fff;
}

.shop-link--yahoo {
  background: #f17732;
  border-color: #f17732;
  color: #fff;
}

.listen-link--spotify,
.shop-link--spotify {
  background: #1db954;
  border-color: #1db954;
  color: #07120b;
}

.listen-link--spotify::before,
.shop-link--spotify::before {
  background: rgba(7, 18, 11, 0.16);
  color: #07120b;
  content: "♪";
}

.listen-link--youtube,
.shop-link--youtube {
  background: #d92525;
  border-color: #d92525;
  color: #fff;
}

.listen-link--youtube::before,
.shop-link--youtube::before {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  content: "▶";
  font-size: 9px;
}

.shop-link:hover,
.listen-link:hover,
.detail-link:hover {
  transform: translateY(-1px);
}

.listen-link {
  background: #171b22;
  border-color: #171b22;
  color: var(--cream);
}

.listen-link.listen-link--spotify {
  background: #1db954;
  border-color: #1db954;
  color: #07120b;
}

.listen-link.listen-link--youtube {
  background: #d92525;
  border-color: #d92525;
  color: #fff;
}

.detail-link {
  background: #fffefa;
  border-color: var(--line);
  color: var(--green);
  font-weight: 850;
  text-decoration: none;
}

.rail-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.rail-panel h3 {
  font-size: 16px;
  margin: 0;
}

.rail-cta {
  background: rgba(245, 239, 224, 0.95);
  color: #15171b;
}

.ad-panel {
  background: linear-gradient(135deg, rgba(11, 123, 111, 0.16), rgba(202, 163, 74, 0.12));
}

.ad-box {
  align-items: center;
  border: 1px dashed rgba(245, 239, 224, 0.32);
  border-radius: 8px;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  font-weight: 850;
  justify-content: center;
  min-height: 112px;
}

.ad-box--display {
  align-items: stretch;
  background: rgba(255, 255, 255, 0.04);
  border-style: solid;
  color: inherit;
  display: block;
  min-height: 250px;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.ad-box--display .adsbygoogle {
  display: block;
  min-height: 250px;
  width: 100%;
}

.toc-list,
.related-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-list a,
.related-list a {
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.5;
  text-decoration: none;
}

.link-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.link-card {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 16px;
  text-decoration: none;
}

.link-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.link-card strong {
  color: var(--green);
  line-height: 1.45;
}

#links .link-card.has-image {
  background:
    linear-gradient(180deg, rgba(12, 14, 18, 0.16), rgba(9, 10, 13, 0.68)),
    linear-gradient(90deg, rgba(12, 16, 19, 0.42), rgba(12, 16, 19, 0.12)),
    var(--card-image) center / cover;
  border-color: rgba(255, 250, 238, 0.18);
  box-shadow: 0 18px 36px rgba(10, 12, 16, 0.18);
  min-height: 176px;
  overflow: hidden;
  position: relative;
}

#links .link-card.has-image::after {
  background:
    linear-gradient(135deg, rgba(202, 162, 75, 0.12), transparent 48%),
    linear-gradient(90deg, rgba(21, 91, 82, 0.1), transparent 62%),
    linear-gradient(0deg, rgba(255, 250, 238, 0.04), transparent 54%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

#links .link-card.has-image span,
#links .link-card.has-image strong,
#links .link-card.has-image small {
  position: relative;
  z-index: 1;
}

#links .link-card.has-image span,
#links .link-card.has-image small {
  color: rgba(255, 250, 238, 0.84);
}

#links .link-card.has-image strong {
  color: #fffaf0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.58);
}

@media (max-width: 1040px) {
  .hero,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .hero-share-slot {
    justify-self: stretch;
    width: 100%;
  }

  .side-rail {
    position: static;
  }
}

@media (min-width: 1041px) {
  .hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-aside-stack {
    align-self: center;
    display: grid;
    gap: 14px;
    grid-column: 2;
    grid-row: 1;
    justify-items: center;
    justify-self: center;
    width: min(100%, 540px);
  }

  .hero-aside-stack .hero-visual {
    align-self: center;
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
    max-width: 540px;
    order: 1;
    width: 100%;
  }

  .hero-aside-stack .hero-share-slot {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
    margin-top: 0;
    order: 2;
    width: 100%;
  }

  .hero-aside-stack .share-links {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: start;
    flex-direction: column;
  }

  .top-nav {
    overflow-x: auto;
    width: 100%;
  }

  .hero {
    gap: 18px;
    padding: 22px clamp(16px, 4vw, 20px) 24px;
  }

  .hero-visual {
    gap: 12px;
    justify-self: center;
    max-width: 380px;
    padding: 14px;
    width: 100%;
  }

  .hero-image,
  .record-stack {
    aspect-ratio: auto;
    height: clamp(168px, 46vw, 224px);
    object-fit: cover;
  }

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

  .album-mark {
    min-height: 128px;
  }

  .album-media {
    min-height: 220px;
  }

  .ad-panel {
    display: none;
  }

  .album-title-row {
    display: grid;
  }

  .point-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }
}
