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

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

.link-button.youtube-modal-trigger {
  cursor: pointer;
  font-family: inherit;
}

.link-button--youtube {
  background: #c01828;
  border-color: #c01828;
  color: #fff !important;
}

.link-button--youtube *,
.listen-link--youtube,
.shop-link--youtube,
.youtube-modal-trigger,
.youtube-modal-trigger *,
.listen-link--youtube::before,
.shop-link--youtube::before {
  color: #fff !important;
}

.youtube-modal {
  display: none;
  inset: 0;
  position: fixed;
  z-index: 1000;
}

.youtube-modal[aria-hidden="false"] {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 22px;
}

.youtube-modal__backdrop {
  background: rgba(7, 10, 14, 0.74);
  inset: 0;
  position: absolute;
}

.youtube-modal__dialog {
  background: #11161d;
  border: 1px solid rgba(255, 250, 238, 0.16);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  color: #fffaf0;
  max-width: 920px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: min(100%, 920px);
  z-index: 1;
}

.youtube-modal__header {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 14px 16px;
}

.youtube-modal__header h2 {
  color: #fffaf0;
  font-size: 17px;
  line-height: 1.4;
  margin: 0;
}

.youtube-modal__close {
  align-items: center;
  background: rgba(255, 250, 238, 0.1);
  border: 1px solid rgba(255, 250, 238, 0.2);
  border-radius: 999px;
  color: #fffaf0;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 22px;
  height: 38px;
  justify-content: center;
  line-height: 1;
  width: 38px;
}

.youtube-modal__close:hover,
.youtube-modal__close:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.youtube-modal__frame-wrap {
  background: #05070a;
}

.youtube-modal__frame-wrap iframe {
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  width: 100%;
}

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

.link-button--spotify {
  background: #1db954;
  border-color: #1db954;
  color: #fff !important;
}

.link-button--spotify *,
.listen-link--spotify,
.shop-link--spotify,
.spotify-modal-trigger,
.spotify-modal-trigger *,
.listen-link--spotify::before,
.shop-link--spotify::before {
  color: #fff !important;
}

.spotify-modal {
  display: none;
  inset: 0;
  position: fixed;
  z-index: 1000;
}

.spotify-modal[aria-hidden="false"] {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 22px;
}

.spotify-modal__backdrop {
  background: rgba(7, 10, 14, 0.74);
  inset: 0;
  position: absolute;
}

.spotify-modal__dialog {
  background: #11161d;
  border: 1px solid rgba(255, 250, 238, 0.16);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  color: #fffaf0;
  max-width: 640px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: min(100%, 640px);
  z-index: 1;
}

.spotify-modal__header {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 14px 16px;
}

.spotify-modal__header h2 {
  color: #fffaf0;
  font-size: 17px;
  line-height: 1.4;
  margin: 0;
}

.spotify-modal__close {
  align-items: center;
  background: rgba(255, 250, 238, 0.1);
  border: 1px solid rgba(255, 250, 238, 0.2);
  border-radius: 999px;
  color: #fffaf0;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 22px;
  height: 38px;
  justify-content: center;
  line-height: 1;
  width: 38px;
}

.spotify-modal__close:hover,
.spotify-modal__close:focus-visible {
  border-color: #1db954;
  color: #1db954;
}

.spotify-modal__frame-wrap {
  background: #05070a;
}

.spotify-modal__frame-wrap iframe {
  border: 0;
  display: block;
  width: 100%;
}

.spotify-modal__fallback {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.spotify-modal__fallback[hidden],
.spotify-modal__frame-wrap[hidden] {
  display: none;
}

.spotify-modal__fallback p {
  color: rgba(255, 250, 238, 0.82);
  line-height: 1.7;
  margin: 0;
}

.spotify-modal__fallback-link {
  align-items: center;
  background: #1db954;
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  padding: 12px 16px;
  text-decoration: none;
}

/* album-review.css */
:root {
  color-scheme: dark;
  --night: #07090d;
  --panel: #171c24;
  --cream: #f5efe0;
  --muted: #aab1b2;
  --line: rgba(245, 239, 224, 0.16);
  --gold: #caa34a;
  --green: #0b7b6f;
  --rose: #b35264;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }
body {
  background: radial-gradient(circle at 82% 8%, rgba(179, 82, 100, 0.2), transparent 28%),
    radial-gradient(circle at 12% 24%, rgba(11, 123, 111, 0.18), transparent 30%),
    linear-gradient(180deg, var(--night), #10141b 52%, #090b10);
  color: var(--cream);
  margin: 0;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.site-header {
  align-items: center;
  background: rgba(7, 9, 13, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 54px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand { display: grid; gap: 3px; text-decoration: none; }
.brand span, .eyebrow, .section-kicker { color: var(--green); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.brand strong { font-size: 16px; }
.top-nav { display: flex; gap: 4px; }
.top-nav a, .button, .shop-link {
  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 12px;
  text-decoration: none;
}
.button.primary { background: var(--gold); border-color: var(--gold); color: #111; }
.shop-link {
  background: #11161d;
  border-color: #11161d;
  color: var(--cream);
}
.shop-link--spotify,
.shop-link--youtube {
  align-items: center;
  display: inline-flex;
}
.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;
}
.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;
}
.shop-link--spotify {
  background: #1db954;
  border-color: #1db954;
  color: #07120b;
}
.shop-link--spotify::before {
  background: rgba(7, 18, 11, 0.16);
  color: #07120b;
  content: "♪";
}
.shop-link--youtube {
  background: #d92525;
  border-color: #d92525;
  color: #fff;
}
.shop-link--youtube::before {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  content: "▶";
  font-size: 9px;
}
.shop-link:hover {
  transform: translateY(-1px);
}
.album-review { display: grid; gap: 40px; padding-bottom: 72px; }
.hero {
  align-items: center;
  display: grid;
  gap: clamp(30px, 4vw, 48px);
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  padding: clamp(44px, 6vw, 88px) clamp(22px, 4vw, 58px) 28px;
}

@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));
  }
}
h1, h2, h3, p { margin: 0; }
h1 { font-size: clamp(40px, 6vw, 82px); line-height: 1; }
.lead, .body-text { color: #d7dcda; line-height: 1.85; }
.hero-copy {
  display: grid;
  gap: 16px;
  padding: clamp(8px, 1.4vw, 18px) 0;
}
.hero-copy .breadcrumb-list {
  margin-bottom: 2px;
}
.hero-copy .eyebrow {
  margin-top: 4px;
}
.hero-copy .lead {
  max-width: 760px;
}
.hero-copy .button-row {
  margin-top: 2px;
}
.hero-card {
  align-self: center;
  background: rgba(245, 239, 224, 0.95);
  border-radius: 8px;
  color: #15171b;
  display: grid;
  gap: 14px;
  padding: 14px;
}

.hero-share-slot {
  justify-self: center;
  width: min(100%, 540px);
}
.hero-image { aspect-ratio: 16 / 10; border-radius: 7px; object-fit: cover; width: 100%; }
.hero-image-link { display: block; text-decoration: none; }
.hero-image-link:focus-visible { border-radius: 7px; outline: 3px solid rgba(20, 129, 112, 0.35); outline-offset: 3px; }
.album-meta-card {
  display: grid;
  gap: 10px;
  padding: 4px 2px 2px;
}
.album-meta-card span {
  color: #3d403f;
  font-size: 14px;
  line-height: 1.5;
}
.album-meta-card strong {
  color: #111316;
  font-size: 18px;
  line-height: 1.25;
}
.album-meta-card p {
  color: #2d302f;
  line-height: 1.75;
}
.content-layout {
  align-items: start;
  display: grid;
  gap: clamp(24px, 3vw, 34px);
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  padding: 0 clamp(22px, 4vw, 58px);
}
.main-column, .side-rail { display: grid; gap: 22px; }
.side-rail {
  align-content: start;
  align-self: start;
  position: sticky;
  top: 92px;
}
.section, .rail-panel {
  background: rgba(23, 28, 36, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
}
.rail-panel {
  gap: 12px;
  padding: 16px;
}
.rail-panel h3 {
  font-size: 18px;
  line-height: 1.25;
  margin: 0;
}
.rail-cta {
  background: rgba(245, 239, 224, 0.95);
  color: #15171b;
}
.ad-panel {
  background: linear-gradient(135deg, rgba(11, 123, 111, 0.18), 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: 800;
  justify-content: center;
  min-height: 120px;
}
.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%;
}
.section-header { display: grid; gap: 8px; }
.section h2 { font-size: clamp(26px, 3vw, 42px); line-height: 1.1; }
.check-list, .toc-list, .related-list { display: grid; gap: 9px; margin: 0; padding-left: 20px; }
.media-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.link-grid { display: grid; gap: 12px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.media-embed { margin: 0; }
.media-embed iframe { aspect-ratio: 16 / 9; border: 0; border-radius: 8px; width: 100%; }
.media-embed figcaption { color: var(--muted); font-size: 13px; margin-top: 6px; }
.product-box, .link-card {
  background: #fffdf7;
  border-radius: 8px;
  color: #15171b;
  display: grid;
  gap: 10px;
  padding: 14px;
  text-decoration: none;
}
.product-box {
  border-left: 5px solid var(--gold);
}
.product-box .section-kicker {
  color: var(--green);
}
#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);
}
.bottom-cta {
  background: rgba(245, 239, 224, 0.95);
  border-color: rgba(202, 163, 74, 0.5);
  color: #15171b;
}
.bottom-cta .body-text {
  color: #3a3326;
}
.button-row { display: flex; flex-wrap: wrap; gap: 8px; }
.cta-groups {
  display: grid;
  gap: 12px;
}
.action-group {
  display: grid;
  gap: 7px;
}
.action-group > span {
  color: #69716f;
  font-size: 12px;
  font-weight: 900;
}
.service-group {
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(245, 239, 224, 0.2);
  border-radius: 8px;
  padding: 12px;
}
.service-group--youtube {
  background: rgba(217, 37, 37, 0.1);
  border-color: rgba(217, 37, 37, 0.24);
}
.service-group--youtube > span {
  color: #ffb4b4;
}
.service-group--spotify {
  background: rgba(29, 185, 84, 0.12);
  border-color: rgba(29, 185, 84, 0.26);
}
.service-group--spotify > span {
  color: #79df9b;
}
@media (max-width: 980px) {
  .hero, .content-layout, .media-grid { grid-template-columns: 1fr; }
  .hero-share-slot { justify-self: stretch; width: 100%; }
  .side-rail { position: static; }
}

@media (min-width: 981px) {
  .hero-copy {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .hero-card {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    max-width: 540px;
    width: 100%;
  }

  .hero-share-slot {
    grid-column: 2;
    grid-row: 2;
    margin-top: -12px;
  }
}

@media (max-width: 720px) {
  .hero {
    gap: 18px;
    padding: 22px clamp(16px, 4vw, 20px) 24px;
  }

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

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

  .ad-panel { display: none; }
  .link-grid { grid-template-columns: 1fr; }
}
