:root {
  --font-body: "Noto Sans JP", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #070807;
  --bg-soft: #101310;
  --bg-panel: #151a16;
  --paper: #f3f6ef;
  --paper-alt: #e8efe6;
  --ink: #f7f9f3;
  --paper-ink: #171b17;
  --muted: #a7b1a6;
  --paper-muted: #5f6a5f;
  --line: rgba(247, 249, 243, 0.14);
  --paper-line: rgba(23, 27, 23, 0.14);
  --highlight-color: #42e879;
  --accent-red: #d73c32;
  --accent-cyan: #7ad7df;
  --accent-gold: #d4b35f;
  --text-color: var(--paper-ink);
  --bg-light: var(--paper);
  --bg-dark: var(--bg);
  --accent-gradient: linear-gradient(135deg, var(--highlight-color), var(--accent-cyan));
  --glass-bg: rgba(10, 12, 10, 0.68);
  --glass-border: rgba(247, 249, 243, 0.16);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.22);
  --shadow-hover: 0 28px 80px rgba(0, 0, 0, 0.32);
  --transition-smooth: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--highlight-color);
  color: var(--bg);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3 {
  line-height: 1;
  letter-spacing: 0;
}

p {
  max-width: 68ch;
}

main {
  min-height: 70vh;
}

.floating-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 1000;
  width: min(720px, calc(100% - 188px));
  min-height: 58px;
  padding: 6px;
  background: rgba(7, 8, 7, 0.78);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.floating-nav:hover {
  background: rgba(7, 8, 7, 0.88);
}

.floating-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(247, 249, 243, 0.78);
  position: relative;
  transition: color var(--transition-smooth), background var(--transition-smooth);
  white-space: nowrap;
}

.floating-nav a:focus-visible,
.floating-nav a:hover {
  color: var(--ink);
  background: rgba(247, 249, 243, 0.1);
  outline: none;
}

.floating-nav a[href*="shop"],
.floating-nav a[href*="laylo"] {
  color: var(--bg);
  background: var(--highlight-color);
}

.floating-nav a[href*="shop"]:hover,
.floating-nav a[href*="laylo"]:hover,
.floating-nav a[href*="shop"]:focus-visible,
.floating-nav a[href*="laylo"]:focus-visible {
  color: var(--bg);
  background: #7cff9f;
}

.floating-nav i {
  font-size: 0.75rem;
}

.floating-logo {
  position: fixed;
  top: 18px;
  left: 24px;
  z-index: 1000;
}

.floating-logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 5px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: rgba(7, 8, 7, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform var(--transition-smooth), background var(--transition-smooth);
}

.floating-logo a:focus-visible,
.floating-logo a:hover {
  transform: translateY(-1px);
  background: rgba(7, 8, 7, 0.9);
  outline: none;
}

.floating-logo img {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  object-fit: cover;
}

#hero {
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 132px 24px 56px;
  background-image: linear-gradient(90deg, rgba(7, 8, 7, 0.94) 0%, rgba(7, 8, 7, 0.72) 48%, rgba(7, 8, 7, 0.22) 100%), url("../images/background.webp");
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  color: var(--ink);
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(247, 249, 243, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(247, 249, 243, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 78%);
  pointer-events: none;
}

#hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(7, 8, 7, 0), var(--bg));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(66, 232, 121, 0.32);
  border-radius: 6px;
  background: rgba(66, 232, 121, 0.1);
  color: var(--highlight-color);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

#hero h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: 6.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

#hero .tagline {
  max-width: 690px;
  color: rgba(247, 249, 243, 0.78);
  font-size: 1.15rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.hero-stat {
  min-height: 104px;
  padding: 18px;
  background: rgba(7, 8, 7, 0.72);
}

.hero-stat strong {
  display: block;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-portrait {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 74px;
  width: 196px;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.hero-portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-portrait figcaption {
  padding: 10px 12px;
  background: rgba(7, 8, 7, 0.86);
  color: rgba(247, 249, 243, 0.72);
  font-size: 0.8rem;
}

.scroll-down {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 8, 7, 0.7);
  text-decoration: none;
  color: var(--ink);
  transition: background var(--transition-smooth), color var(--transition-smooth);
}

.scroll-down:focus-visible,
.scroll-down:hover {
  background: var(--highlight-color);
  color: var(--bg);
  outline: none;
}

#about {
  background: var(--paper);
  color: var(--paper-ink);
  padding: 104px 24px;
  position: relative;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 52px;
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.about-copy {
  display: grid;
  gap: 22px;
}

.about-copy p {
  color: var(--paper-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.about-media {
  display: grid;
  gap: 14px;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
}

.about-note {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.about-note strong {
  font-size: 0.85rem;
  color: var(--paper-ink);
}

.about-note span {
  color: var(--paper-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, 100%);
  margin: 60px auto 0;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-line);
}

.process-card {
  min-height: 168px;
  padding: 22px;
  background: var(--paper);
}

.process-card i {
  color: var(--accent-red);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.process-card h3 {
  margin-bottom: 10px;
  font-size: 1.02rem;
}

.process-card p {
  color: var(--paper-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

#music {
  padding: 104px 24px;
  background: var(--bg);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

#music::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(247, 249, 243, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(247, 249, 243, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.7;
  pointer-events: none;
}

#music > * {
  position: relative;
  z-index: 1;
}

.latest-release {
  display: grid;
  grid-template-columns: minmax(240px, 370px) minmax(0, 1fr);
  gap: 1px;
  align-items: center;
  width: min(1180px, 100%);
  margin: 44px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.release-cover-link,
.release-cover-frame {
  display: block;
  background: var(--bg-soft);
}

.latest-release img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.latest-release .release-info {
  height: 100%;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  background: rgba(21, 26, 22, 0.92);
}

.latest-release .release-label {
  display: inline-block;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(66, 232, 121, 0.28);
  border-radius: 6px;
  background: rgba(66, 232, 121, 0.1);
  color: var(--highlight-color);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.latest-release h3 {
  margin-bottom: 12px;
  font-size: 3rem;
  font-weight: 900;
}

.latest-release h3 a {
  color: inherit;
  text-decoration: none;
}

.latest-release .release-date {
  color: var(--muted);
  margin-bottom: 20px;
}

.latest-release p {
  color: rgba(247, 249, 243, 0.74);
  margin-bottom: 28px;
}

.latest-release .listen-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.latest-release .listen-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(247, 249, 243, 0.08);
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.88rem;
  transition: background var(--transition-smooth), color var(--transition-smooth), border-color var(--transition-smooth);
}

.latest-release .listen-btn:focus-visible,
.latest-release .listen-btn:hover {
  background: var(--highlight-color);
  border-color: var(--highlight-color);
  color: var(--bg);
  outline: none;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: var(--highlight-color);
  text-decoration: none;
  font-weight: 700;
  transition: background var(--transition-smooth), color var(--transition-smooth);
}

.view-all-link:focus-visible,
.view-all-link:hover {
  background: var(--highlight-color);
  color: var(--bg);
  outline: none;
}

.music-actions {
  width: min(1180px, 100%);
  margin: 24px auto 0;
  display: flex;
  justify-content: flex-end;
}

.release-proof {
  width: min(1180px, 100%);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.release-proof div {
  min-height: 118px;
  padding: 20px;
  background: rgba(21, 26, 22, 0.86);
}

.release-proof strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.release-proof span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

#blog {
  padding: 104px 24px;
  background: var(--paper-alt);
  color: var(--paper-ink);
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, 100%);
  margin: 44px auto 0;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-line);
}

.blog-card {
  min-height: 236px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--paper);
  color: inherit;
  text-decoration: none;
  transition: background var(--transition-smooth), color var(--transition-smooth);
}

.blog-card:focus-visible,
.blog-card:hover {
  background: #ffffff;
  color: var(--paper-ink);
  outline: none;
}

.blog-card .date {
  color: var(--paper-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.blog-card h3 {
  margin: 18px 0 12px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.blog-card .excerpt {
  color: var(--paper-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

#blog .view-all-link-container {
  width: min(1180px, 100%);
  display: flex;
  justify-content: flex-end;
  margin: 24px auto 0;
}

#video {
  padding: 104px 24px;
  background: var(--bg);
  color: var(--ink);
}

.video-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.video-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.video-copy p {
  color: var(--muted);
}

.embed-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  background: #000;
}

.embed-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#video .video-title {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

footer {
  background: #040504;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 58px 24px 34px;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand strong {
  font-size: 2rem;
  line-height: 1;
}

.footer-brand p {
  color: var(--muted);
}

footer .socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

footer .socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(247, 249, 243, 0.04);
  color: var(--ink);
  font-size: 1.05rem;
  text-decoration: none;
  transition: background var(--transition-smooth), color var(--transition-smooth), border-color var(--transition-smooth);
}

footer .socials a:focus-visible,
footer .socials a:hover {
  background: var(--highlight-color);
  border-color: var(--highlight-color);
  color: var(--bg);
  outline: none;
}

.contact-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-footer a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-smooth);
}

.contact-footer a:focus-visible,
.contact-footer a:hover {
  color: var(--highlight-color);
  outline: none;
}

footer .copyright {
  color: var(--muted);
  font-size: 0.86rem;
}

@media (max-width: 900px) {
  .about-layout,
  .latest-release,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .release-proof,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-portrait {
    display: none;
  }

  footer .socials {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .floating-nav {
    width: min(620px, calc(100% - 108px));
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .floating-nav::-webkit-scrollbar {
    display: none;
  }

  #hero {
    min-height: 86vh;
    padding-top: 116px;
  }

  #hero h1 {
    font-size: 4.25rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading h2,
  .page-content h1,
  .page-shell h1 {
    font-size: 2.75rem;
  }

  .video-copy {
    display: grid;
  }

  .latest-release h3 {
    font-size: 2.25rem;
  }

  .page-content,
  .page-shell {
    padding-top: 110px;
  }
}

@media (max-width: 600px) {
  .floating-nav {
    top: auto;
    bottom: 14px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    min-height: 62px;
    justify-content: space-between;
    gap: 4px;
    padding: 6px;
    border-radius: 8px;
    background: rgba(7, 8, 7, 0.9);
  }

  .floating-nav a {
    min-width: 44px;
    flex: 1 0 auto;
    padding: 0;
    font-size: 0;
  }

  .floating-nav a i {
    display: none;
  }

  .floating-nav a::before {
    font-family: "Font Awesome 6 Free";
    font-size: 1.05rem;
    font-weight: 900;
  }

  .floating-nav a[href$="#hero"]::before,
  .floating-nav a[href="./#hero"]::before,
  .floating-nav a[href="../#hero"]::before,
  .floating-nav a[href$="/"]::before {
    content: "\f015";
  }

  .floating-nav a[href$="#about"]::before,
  .floating-nav a[href="./#about"]::before,
  .floating-nav a[href="../#about"]::before {
    content: "\f007";
  }

  .floating-nav a[href$="#music"]::before,
  .floating-nav a[href*="music/"]::before {
    content: "\f001";
  }

  .floating-nav a[href$="#blog"]::before,
  .floating-nav a[href*="blog/"]::before {
    content: "\f1ea";
  }

  .floating-nav a[href*="shop"]::before {
    content: "\f290";
  }

  .floating-nav a[href*="laylo"]::before {
    content: "\f0e0";
  }

  .floating-logo {
    top: 14px;
    left: 14px;
  }

  .floating-logo a {
    width: 50px;
    height: 50px;
  }

  .floating-logo img {
    width: 38px;
    height: 38px;
  }

  #hero {
    min-height: 88vh;
    padding: 96px 16px 42px;
    background-position: 63% center;
  }

  #hero h1 {
    font-size: 3.05rem;
  }

  #hero .tagline {
    font-size: 1rem;
  }

  .hero-actions,
  .page-actions,
  .listen-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  #about,
  #music,
  #blog,
  #video {
    padding: 72px 16px;
  }

  .process-grid,
  .release-proof,
  .blog-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .feature-person {
    align-items: flex-start;
    gap: 1rem;
  }

  .latest-release .release-info {
    min-height: auto;
    padding: 24px;
  }

  .about-note {
    grid-template-columns: 1fr;
  }

  .contact-footer {
    padding-bottom: 84px;
  }

  .page-content,
  .page-shell {
    padding: 96px 16px 120px;
  }

  .page-list-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .page-content h1,
  .page-shell h1 {
    font-size: 1.95rem;
    line-height: 1.04;
  }

  .album-row,
  .release-header,
  .track-page-header {
    grid-template-columns: 92px 1fr;
    gap: 14px;
  }

  .album-row img,
  .release-header img,
  .track-page-header img {
    width: 92px;
    height: 92px;
  }
}

.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

.section-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.5fr);
  gap: 36px;
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  margin-bottom: 18px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: var(--highlight-color);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

#about .section-label,
#blog .section-label,
.page-content .section-label,
.page-shell .section-label {
  color: var(--accent-red);
}

.section-heading h2 {
  max-width: 760px;
  font-size: 4.25rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading p {
  color: inherit;
  opacity: 0.72;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transition: background var(--transition-smooth), border-color var(--transition-smooth), color var(--transition-smooth);
}

.btn-primary {
  background: var(--highlight-color);
  color: var(--bg);
}

.btn-outline {
  border-color: var(--line);
  background: rgba(247, 249, 243, 0.08);
  color: var(--ink);
}

.btn-dark {
  background: var(--paper-ink);
  color: var(--paper);
}

.btn-light-outline {
  border-color: var(--paper-line);
  color: var(--paper-ink);
}

.btn:focus-visible,
.btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  outline: none;
}

.btn-dark:focus-visible,
.btn-dark:hover,
.btn-light-outline:focus-visible,
.btn-light-outline:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #fff;
}

.page-content,
.page-shell {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 136px 24px 72px;
  color: var(--paper-ink);
}

body.about,
body.privacy,
body.legal,
body:has(.site-page) {
  background: var(--paper);
  color: var(--paper-ink);
}

.page-content h1,
.page-shell h1 {
  margin-bottom: 14px;
  color: var(--paper-ink);
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.page-content .tagline,
.page-kicker,
.effective-date {
  color: var(--paper-muted);
  font-size: 1rem;
  font-weight: 700;
}

.page-content h2,
.page-shell h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  color: var(--paper-ink);
  font-size: 1.55rem;
  line-height: 1.2;
}

.page-content p,
.page-content li,
.page-shell p,
.page-shell li {
  color: var(--paper-muted);
  line-height: 1.82;
}

.page-content p,
.page-shell p {
  margin-bottom: 18px;
}

.page-content ul,
.page-shell ul,
.page-content ol,
.page-shell ol {
  padding-left: 1.25rem;
  margin-bottom: 22px;
}

.page-content hr,
.page-shell hr {
  width: 72px;
  margin: 18px 0 26px;
  border: 0;
  border-top: 3px solid var(--accent-red);
}

.page-content a,
.page-shell a,
.post-body a {
  color: var(--accent-red);
  font-weight: 700;
  text-decoration: none;
}

.page-content a:hover,
.page-content a:focus-visible,
.page-shell a:hover,
.page-shell a:focus-visible,
.post-body a:hover,
.post-body a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.intro-section {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 48px;
}

.artist-photo {
  width: 180px;
  height: 180px;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  object-fit: cover;
}

.site-page {
  background: var(--paper);
  color: var(--paper-ink);
}

.page-shell {
  width: min(1080px, 100%);
}

.page-list-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.page-list-heading > div {
  min-width: 0;
}

.back-link {
  margin-bottom: 28px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-count {
  color: var(--paper-muted);
  font-weight: 700;
}

.album-grid,
.blog-index-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-line);
}

.album-row {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  background: #fff;
  color: var(--paper-ink);
  text-decoration: none;
  transition: background var(--transition-smooth);
}

.album-row:hover,
.album-row:focus-visible {
  background: var(--paper);
  outline: none;
}

.album-row img {
  width: 124px;
  height: 124px;
  border-radius: 6px;
  object-fit: cover;
}

.album-type,
.work-type {
  color: var(--accent-red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.album-title,
.blog-index-title {
  margin-top: 6px;
  color: var(--paper-ink);
  font-size: 1.18rem;
  font-weight: 900;
}

.album-meta,
.blog-index-meta {
  color: var(--paper-muted);
  font-size: 0.9rem;
}

.album-count {
  color: var(--paper-muted);
  font-weight: 800;
}

.release-header,
.track-page-header {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 32px;
}

.release-header img,
.track-page-header img {
  width: 220px;
  height: 220px;
  border-radius: 8px;
  object-fit: cover;
}

.stream-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.stream-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--paper-line);
  border-radius: 6px;
  color: var(--paper-ink);
  font-size: 0.9rem;
}

.track-list {
  list-style: none;
  padding: 0;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  overflow: hidden;
}

.track-list li + li {
  border-top: 1px solid var(--paper-line);
}

.track-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  color: var(--paper-ink);
  text-decoration: none;
}

.track-list a:hover,
.track-list a:focus-visible {
  background: #fff;
  outline: none;
}

.track-duration,
.duration {
  color: var(--paper-muted);
  white-space: nowrap;
}

.track-header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}

.track-header h1 {
  margin-bottom: 0;
}

.video-wrapper {
  position: relative;
  height: 0;
  margin: 28px 0;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.content-panel {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--paper-line);
}

.credits-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
}

.credits-label {
  color: var(--paper-muted);
  font-weight: 700;
}

.blog-index-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  padding: 18px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: background var(--transition-smooth);
}

.blog-index-item:hover,
.blog-index-item:focus-visible {
  background: var(--paper);
  outline: none;
}

.post-body {
  max-width: 760px;
}

.post-body p {
  margin: 0 0 1.4em;
  max-width: 100%;
}

.post-body h1,
.post-body h2,
.post-body h3 {
  margin: 1.8em 0 0.6em;
  color: var(--paper-ink);
  line-height: 1.15;
}

.post-body hr {
  border: none;
  border-top: 1px solid var(--paper-line);
  margin: 2em 0;
}

.post-body ul,
.post-body ol {
  padding-left: 1.4em;
  margin-bottom: 1.4em;
}

.post-body li {
  margin-bottom: 0.3em;
}

.post-body blockquote {
  border-left: 3px solid var(--accent-red);
  margin: 1.6em 0;
  padding: 0.2em 0 0.2em 1.2em;
  color: var(--paper-muted);
  font-style: italic;
}

.post-body pre {
  padding: 1.2em;
  margin-bottom: 1.4em;
  border-radius: 6px;
  background: #101310;
  color: var(--ink);
  overflow-x: auto;
}

.post-body code {
  padding: 0.15em 0.4em;
  border-radius: 3px;
  background: rgba(23, 27, 23, 0.08);
  font-size: 0.88em;
}

.post-body pre code {
  padding: 0;
  background: none;
}

.post-body img {
  max-width: 100%;
  margin: 1.4em 0;
  border-radius: 8px;
}

.feature-person {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
  padding: 1rem;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  background: #fff;
}

.feature-person--compact {
  gap: 1.25rem;
  margin: 1.25rem 0 1.5rem;
}

.feature-person__image {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  margin: 0;
  border-radius: 50%;
  object-fit: cover;
}

.feature-person--compact .feature-person__image {
  width: 72px;
  height: 72px;
}

.feature-person__name {
  color: var(--paper-ink);
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.2;
}

.feature-person--compact .feature-person__name {
  font-size: 1rem;
}

.feature-person__meta {
  margin-top: 0.25rem;
  color: var(--paper-muted);
  font-size: 0.9rem;
}

.feature-person__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.work-card,
.mini-release {
  color: inherit;
  text-decoration: none;
}

.work-card__inner {
  overflow: hidden;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  background: #fff;
  transition: border-color var(--transition-smooth), transform var(--transition-smooth), background var(--transition-smooth);
}

.work-card:hover .work-card__inner,
.work-card:focus-visible .work-card__inner {
  border-color: rgba(166, 61, 47, 0.35);
  background: #fff9f7;
  transform: translateY(-3px);
}

.work-card:focus-visible,
.mini-release:focus-visible {
  outline: 2px solid var(--accent-red);
  outline-offset: 4px;
}

.work-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
}

.work-card__body {
  padding: 0.75rem;
}

.work-card__title,
.mini-release__title {
  color: var(--paper-ink);
  font-weight: 800;
}

.work-card__meta,
.mini-release__meta {
  margin-top: 0.2rem;
  color: var(--paper-muted);
  font-size: 0.82rem;
}

.mini-release {
  display: block;
  margin: 1.25rem 0;
}

.mini-release__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  background: #fff;
  transition: border-color var(--transition-smooth), background var(--transition-smooth);
}

.mini-release:hover .mini-release__inner,
.mini-release:focus-visible .mini-release__inner {
  border-color: rgba(166, 61, 47, 0.35);
  background: #fff9f7;
}

.mini-release__image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
}

.lyrics {
  max-width: 760px;
  white-space: pre-wrap;
  line-height: 2.2;
  font-size: 1.1rem;
  text-align: left;
}

.lyrics p {
  margin: 0 0 1em;
}

.copyright-page .post-body {
  max-width: 820px;
}

.copyright-heading {
  align-items: start;
}

.copyright-heading .page-count {
  max-width: 280px;
  text-align: right;
}

.copyright-subheading {
  align-items: center;
  margin-bottom: 16px;
}

.copyright-subheading h2 {
  margin: 0;
}

.copyright-list {
  list-style: none;
  padding: 0;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  overflow: hidden;
}

.copyright-list-item + .copyright-list-item {
  border-top: 1px solid var(--paper-line);
}

.copyright-list-link {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  background: #fff;
  color: var(--paper-ink);
  font-size: 1rem;
  text-decoration: none;
  transition: background var(--transition-smooth);
}

.copyright-list-link:hover,
.copyright-list-link:focus-visible {
  background: var(--paper);
  outline: none;
}

.copyright-list-meta,
.copyright-image-type,
.copyright-image-meta {
  color: var(--paper-muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.copyright-list-meta {
  white-space: nowrap;
}

.copyright-intro {
  margin-bottom: 28px;
}

.copyright-image-list {
  display: grid;
  gap: 16px;
}

.copyright-image-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  background: #fff;
}

.copyright-image-card img {
  width: 120px;
  height: 120px;
  border-radius: 6px;
  object-fit: cover;
}

.copyright-image-type {
  display: inline-block;
  text-transform: uppercase;
}

.copyright-image-title {
  margin: 4px 0;
  color: var(--paper-ink);
  font-size: 1.1rem;
  font-weight: 800;
}

.copyright-image-title a {
  color: inherit;
}

.copyright-image-figure {
  margin: 2rem 0;
}

.copyright-image-figure img {
  width: min(100%, 760px);
  height: auto;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
}

.copyright-image-figure figcaption {
  margin-top: 12px;
  color: var(--paper-muted);
}

.copyright-meta-list {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 9px 16px;
  margin-top: 16px;
}

.copyright-meta-list dt {
  color: var(--paper-muted);
  font-weight: 700;
}

.copyright-meta-list dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 600px) {
  .copyright-heading,
  .copyright-subheading {
    align-items: start;
  }

  .copyright-heading .page-count {
    max-width: none;
    text-align: left;
  }

  .copyright-list-link {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .copyright-image-card {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
  }

  .copyright-image-card img {
    width: 82px;
    height: 82px;
  }

  .copyright-meta-list {
    grid-template-columns: 1fr;
  }
}
