:root {
  color-scheme: dark;
  --bg: #060504;
  --bg-2: #15100c;
  --surface: rgba(255, 246, 232, .058);
  --surface-2: rgba(255, 246, 232, .09);
  --line: rgba(218, 164, 104, .24);
  --line-soft: rgba(255, 255, 255, .1);
  --text: #f7eee4;
  --muted: #cdbba8;
  --muted-2: #9e8d7b;
  --title: #fff5e9;
  --accent: #c88a4d;
  --accent-2: #e7c19b;
  --danger: #e45d51;
  --ok: #72d39b;
  --radius: 8px;
  --max: 1180px;
  --font: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% -10%, rgba(200, 138, 77, .16), transparent 34rem),
    linear-gradient(180deg, #060504 0%, #0b0806 48%, #060504 100%);
  color: var(--text);
  font-family: var(--font);
  letter-spacing: 0;
}

body:has(.mobile-listen-bar) {
  padding-bottom: 78px;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

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

.skip-link:focus {
  z-index: 100;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #130c07;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 70px;
  padding: 10px max(14px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(6, 5, 4, .96);
}

.brand,
.admin-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img,
.admin-brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.brand strong,
.admin-brand span {
  display: block;
  color: var(--title);
  font-weight: 900;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.site-nav {
  position: fixed;
  inset: 70px 12px auto;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0a0705;
  box-shadow: 0 24px 80px rgba(0,0,0,.38);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 780;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--title);
  background: rgba(255,255,255,.06);
}

.site-nav .home-nav-link {
  display: none;
}

.home-nav-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  margin: 2px 0;
  background: var(--title);
}

.hero,
.page-hero,
.section,
.site-footer {
  width: min(calc(100% - 28px), var(--max));
  margin: 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-start;
  min-height: auto;
  padding: 58px 0 44px;
  overflow: hidden;
}

.hero-bg,
.song-hero-bg {
  position: absolute;
  inset: 0 calc((100vw - min(100vw, var(--max))) / -2);
  z-index: -2;
  background: url("../images/nefakt-alex-studio-bg.webp") center / cover no-repeat;
}

.hero::after,
.song-hero-page::after {
  content: "";
  position: absolute;
  inset: 0 calc((100vw - min(100vw, var(--max))) / -2);
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4,3,2,.9), rgba(4,3,2,.66), rgba(4,3,2,.76)),
    linear-gradient(180deg, transparent 74%, var(--bg));
}

.hero-inner {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: var(--title);
}

.hero h1,
.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(3rem, 16vw, 5rem);
  line-height: .95;
}

.hero-lead,
.page-hero p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.58;
}

.hero-actions,
.card-actions,
.stream-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-actions {
  margin-top: 22px;
}

.btn,
.stream-link,
.details-link,
.mobile-listen-bar a,
.mobile-listen-bar button {
  min-height: 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-weight: 900;
}

.btn-primary {
  color: #130c07;
  background: var(--accent);
}

.btn-ghost {
  color: var(--title);
  background: rgba(255,255,255,.06);
}

.section,
.page-hero {
  padding: 38px 0;
}

.compact-hero {
  padding-top: 56px;
}

.compact-hero h1 {
  font-size: clamp(2.35rem, 10vw, 4.1rem);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -6px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 6vw, 2.5rem);
}

.section-head .text-link {
  justify-self: end;
  align-self: center;
  white-space: nowrap;
}

.text-link,
.details-link {
  color: var(--accent-2);
  font-weight: 850;
}

.song-grid {
  display: grid;
  gap: 16px;
}

.song-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 22px 80px rgba(0,0,0,.24);
}

.song-card-cover {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: #080605;
}

.song-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.song-card-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.74));
}

.listen-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6,5,4,.78);
  color: var(--accent-2);
  font-size: .76rem;
  font-weight: 900;
}

.song-card-body {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 16px;
}

.song-card-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--muted-2);
  font-size: .75rem;
  font-weight: 820;
  text-transform: uppercase;
}

.song-card h3 {
  margin: 0;
  font-size: 1.28rem;
}

.song-card p {
  margin: 9px 0 14px;
  color: var(--muted);
  line-height: 1.5;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 820;
}

.card-actions {
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
}

.details-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  padding: 0 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 64%, transparent);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  text-align: center;
}

.stream-links {
  align-items: center;
}

.stream-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid color-mix(in srgb, var(--accent) 66%, transparent);
  border-radius: var(--radius);
  color: var(--accent-2);
  background: linear-gradient(180deg, rgba(255,230,193,.11), rgba(122,82,55,.13));
  font-weight: 850;
}

.stream-link svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.stream-links--compact {
  flex-wrap: nowrap;
}

.stream-links--compact .stream-link {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  padding: 0;
}

.stream-links--compact .stream-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.stream-link.is-disabled {
  opacity: .58;
  cursor: not-allowed;
}

.split-section {
  display: grid;
  gap: 22px;
}

.prose {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.prose p:first-child {
  margin-top: 0;
}

.author-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.author-labels span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-2);
  background: rgba(255,255,255,.045);
  font-size: .76rem;
  font-weight: 880;
}

.about-intro {
  max-width: 900px;
  color: var(--title);
  font-size: clamp(1.18rem, 4vw, 1.72rem);
  font-weight: 780;
  line-height: 1.52;
}

.about-intro p {
  margin: 0;
}

.about-hero {
  max-width: var(--max);
}

.about-hero h1,
.about-hero > p {
  max-width: 760px;
}

.author-quote-section {
  padding-block: 20px 28px;
}

.author-quote {
  position: relative;
  margin: 0;
  padding: 4px 0 4px clamp(60px, 12vw, 128px);
}

.author-quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -.18em;
  color: rgba(200,138,77,.62);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 18vw, 10rem);
  line-height: 1;
}

.author-quote p {
  max-width: 850px;
  margin: 0;
  color: var(--title);
  font-size: clamp(1.42rem, 5vw, 2.65rem);
  font-weight: 850;
  line-height: 1.2;
}

.author-quote cite {
  display: block;
  margin-top: 16px;
  color: var(--accent-2);
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-story-section {
  padding-top: 30px;
}

.about-story-head {
  align-items: start;
}

.about-feature-list {
  display: grid;
  gap: 24px;
}

.about-feature {
  display: grid;
  gap: 18px;
  align-items: center;
}

.about-feature-media {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0a0705;
  box-shadow: 0 22px 84px rgba(0,0,0,.24);
}

.about-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 52%, rgba(0,0,0,.28)),
    linear-gradient(90deg, rgba(200,138,77,.12), transparent 34%);
  pointer-events: none;
}

.about-feature-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.about-feature-copy {
  min-width: 0;
}

.about-feature-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 5vw, 2.45rem);
  line-height: 1.06;
}

.about-feature-copy .prose p:last-child {
  margin-bottom: 0;
}

.spiritual-project-section {
  padding-top: 10px;
  padding-bottom: 62px;
}

.spiritual-project {
  position: relative;
  display: grid;
  gap: 22px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(200,138,77,.25);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 8%, rgba(243,213,164,.14), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(200,138,77,.075) 52%, rgba(10,7,5,.7));
  box-shadow: 0 28px 90px rgba(0,0,0,.24);
}

.spiritual-project::before {
  content: "";
  position: absolute;
  inset: 24px auto 24px 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
}

.spiritual-project-copy {
  position: relative;
  max-width: 880px;
}

.spiritual-project-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 6vw, 2.8rem);
  line-height: 1.02;
}

.spiritual-project-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.spiritual-project-copy p:not(.eyebrow) + p {
  margin-top: 12px;
}

.spiritual-project-link {
  position: relative;
  justify-self: start;
}

.work-list,
.review-list,
.service-list,
.social-video-links {
  display: grid;
  gap: 12px;
}

.work-item,
.review-list blockquote,
.credits-box,
.related-box,
.side-box {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  height: fit-content;
}

.work-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.work-cover {
  position: relative;
  display: grid;
  place-items: center;
  width: 82px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0d0906;
}

.work-cover > img:not(.work-logo) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-cover-placeholder {
  background:
    radial-gradient(circle at 50% 45%, rgba(200,138,77,.22), transparent 52%),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(0,0,0,.2)),
    #0d0906;
}

.work-cover-placeholder::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(231,193,155,.28);
  border-radius: 50%;
}

.work-logo {
  position: relative;
  z-index: 1;
  width: 58%;
  height: 58%;
  object-fit: contain;
  opacity: .72;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

.work-content {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.work-status {
  justify-self: start;
  min-height: 26px;
  padding: 6px 9px;
  border: 1px solid rgba(200,138,77,.34);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(200,138,77,.09);
  font-size: .68rem;
  font-weight: 920;
  line-height: 1;
  text-transform: uppercase;
}

.work-item h3,
.review-list p {
  margin: 8px 0 0;
}

.work-item h3 {
  margin: 0;
  color: var(--title);
  font-size: 1.05rem;
  line-height: 1.22;
}

.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.work-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  max-width: 100%;
  padding: 5px 8px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.035);
  font-size: .74rem;
  font-weight: 800;
}

.work-meta strong {
  color: var(--accent-2);
  font-size: .68rem;
  text-transform: uppercase;
}

.work-item p {
  margin: 0;
}

.work-item p,
.review-list p {
  color: var(--muted);
  line-height: 1.55;
}

.review-list cite {
  display: block;
  margin-top: 12px;
  color: var(--accent-2);
  font-style: normal;
  font-weight: 850;
}

.review-carousel {
  position: relative;
  overflow: hidden;
}

.review-carousel::before,
.review-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 8px;
  z-index: 2;
  width: 34px;
  pointer-events: none;
}

.review-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.review-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.review-carousel .review-list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 1px 2px 10px;
}

.review-carousel .review-list::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 min(84vw, 360px);
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
}

.section-lead {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.copyright-hero .hero-actions {
  margin-top: 22px;
}

.copyright-section {
  scroll-margin-top: 92px;
}

.official-platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 10px;
}

.official-platform-link,
.release-link-list a,
.copy-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid rgba(200,138,77,.35);
  border-radius: var(--radius);
  color: var(--accent-2);
  background: rgba(200,138,77,.08);
  font-size: .86rem;
  font-weight: 860;
  line-height: 1.2;
}

.official-platform-link:hover,
.release-link-list a:hover,
.copy-mini:hover {
  color: var(--title);
  background: rgba(200,138,77,.16);
}

.release-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,246,232,.045);
}

.release-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.release-table th,
.release-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
}

.release-table th {
  color: var(--accent-2);
  background: rgba(200,138,77,.08);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.release-table tr:last-child td {
  border-bottom: 0;
}

.release-table td:first-child {
  min-width: 190px;
  color: var(--title);
}

.release-table th:nth-child(3),
.release-table td:nth-child(3) {
  min-width: 180px;
}

.release-table th:nth-child(4),
.release-table td:nth-child(4) {
  min-width: 150px;
}

.release-id {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.release-id code {
  color: var(--text);
  font-size: .83rem;
  white-space: nowrap;
}

.copy-mini {
  width: 24px;
  min-width: 24px;
  min-height: 24px;
  padding: 0;
  cursor: pointer;
}

.copy-mini svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.copy-mini.is-copied {
  color: var(--ok);
  border-color: rgba(114,211,155,.45);
  background: rgba(114,211,155,.1);
}

.release-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rights-statement,
.copyright-contact {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(200,138,77,.12), rgba(255,255,255,.035)),
    var(--surface);
}

.rights-statement h2,
.copyright-contact h2 {
  margin-top: 0;
}

.rights-statement blockquote {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.copyright-contact {
  display: grid;
  gap: 18px;
}

.copyright-contact p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.65;
}

.copyright-contact dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.copyright-contact dl div {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
}

.copyright-contact dt {
  color: var(--muted-2);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.copyright-contact dd {
  margin: 0;
  color: var(--text);
  font-weight: 760;
}

.cta-section {
  margin-bottom: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(200,138,77,.14), rgba(255,255,255,.04)),
    var(--surface);
}

.cta-section h2,
.cta-section p {
  max-width: 760px;
}

.cta-section p {
  color: var(--muted);
  line-height: 1.6;
}

.catalog-filter,
.contact-form {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--text);
  background: rgba(255,255,255,.055);
}

select {
  color-scheme: dark;
  background-color: #100c09;
}

select option {
  color: var(--text);
  background: #100c09;
}

textarea {
  resize: vertical;
  line-height: 1.55;
}

.hp {
  display: none;
}

.empty-state,
.flash {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
}

.flash.ok {
  border-color: rgba(114, 211, 155, .35);
}

.flash.error {
  border-color: rgba(228, 93, 81, .45);
}

.song-hero-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.song-hero-inner {
  position: relative;
  display: grid;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 28px), var(--max));
  margin: 0 auto;
  padding: 24px 0 30px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted-2);
  font-size: .82rem;
  font-weight: 760;
}

.breadcrumbs a {
  color: var(--muted);
}

.song-hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(2.6rem, 13vw, 5rem);
  line-height: .95;
}

.song-hero-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.song-hero-copy .tag-list {
  margin: 0 0 16px;
}

.song-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin: 16px 0;
}

.listen-counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.052);
}

.listen-counter strong {
  color: var(--accent);
  font-size: 1.18rem;
}

.listen-counter span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.duration-counter,
.release-counter {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.052);
  color: var(--muted);
}

.duration-counter strong,
.release-counter strong {
  color: var(--accent);
  font-size: 1.05rem;
}

.duration-counter span,
.release-counter span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.song-cover-large {
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  justify-self: center;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,.38);
}

.song-cover-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.song-layout {
  display: grid;
  gap: 24px;
}

.main-column,
.side-column {
  display: grid;
  gap: 24px;
  min-width: 0;
  align-content: start;
}

.youtube-preview {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--title);
  background-position: center;
  background-size: cover;
}

.listen-section .youtube-preview {
  margin-bottom: 16px;
}

.youtube-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080604;
}

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

.youtube-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.72));
}

.youtube-preview span {
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: 900;
}

.play-circle {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--accent);
  color: #130c07;
}

.lyrics-block {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 7, 5, .76);
}

.lyrics-block p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.82;
}

.lyrics-block p:last-child {
  margin-bottom: 0;
}

.credits-box h2,
.related-box h2,
.side-box h2 {
  margin: 0 0 12px;
}

.credits-box dl,
.credits-box div {
  display: grid;
  gap: 8px;
}

.credits-box dl {
  margin: 0;
}

.credits-box div {
  grid-template-columns: 95px 1fr;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}

.credits-box div:last-child {
  border-bottom: 0;
}

.credits-box dt {
  color: var(--muted-2);
  font-weight: 850;
}

.credits-box dd {
  margin: 0;
  color: var(--text);
}

.related-link {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto 42px;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text);
  font-weight: 850;
}

.related-link:last-child {
  border-bottom: 0;
}

.related-link img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  object-fit: cover;
}

.player-track {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.player-track strong,
.player-track small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-track strong {
  color: var(--title);
  font-size: .96rem;
}

.player-track small {
  color: var(--muted-2);
  font-size: .72rem;
  font-weight: 800;
}

.player-duration {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
}

.player-play {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #130c07;
  background: var(--accent);
  font-size: .78rem;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}

.mobile-listen-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(6,5,4,.92);
  backdrop-filter: blur(16px);
}

.mobile-listen-bar a,
.mobile-listen-bar button {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  color: var(--title);
  background: rgba(255,255,255,.075);
  font-size: .72rem;
  font-weight: 900;
}

.service-list {
  align-content: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.service-list span {
  min-height: 42px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-weight: 850;
  font-size: .9rem;
  line-height: 1.25;
  display: flex;
  align-items: center;
}

.section-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

.social-video-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-video-links a,
.social-video-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--accent-2);
  background: var(--surface);
  font-weight: 880;
  text-align: center;
}

.social-video-links span {
  color: var(--muted-2);
  opacity: .68;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--title);
  font-size: 1.1rem;
}

.footer-brand span,
.copyright {
  color: var(--muted);
}

.footer-links,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-weight: 780;
}

.narrow {
  max-width: 820px;
}

.admin-body {
  background: #090806;
}

.admin-shell {
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  gap: 14px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(6,5,4,.96);
}

.admin-sidebar nav {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 3px;
}

.admin-sidebar nav a,
.admin-sidebar button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 11px;
  color: var(--muted);
  background: transparent;
  font-weight: 820;
}

.admin-content {
  width: min(calc(100% - 24px), 1180px);
  margin: 0 auto;
  padding: 22px 0 48px;
}

.admin-login {
  width: min(calc(100% - 28px), 430px);
  margin: 8vh auto 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.admin-login img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
}

.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-head h1 {
  margin: 0;
}

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

.admin-stats article,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.admin-stats article {
  padding: 16px;
}

.admin-stats strong {
  display: block;
  color: var(--accent);
  font-size: 2rem;
}

.admin-stats span,
.admin-note {
  color: var(--muted);
}

.admin-panel {
  margin-top: 16px;
  padding: 16px;
}

.compact-panel {
  padding: 14px;
}

.admin-panel h2 {
  margin: 0 0 14px;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--accent-2);
  font-weight: 850;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 10px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
}

.tiny-cover {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  object-fit: cover;
}

.table-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.table-actions button,
.table-actions a {
  border: 0;
  color: var(--accent-2);
  background: none;
  font-weight: 850;
}

.admin-form {
  display: grid;
  gap: 14px;
}

.wide-form {
  padding-bottom: 82px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}

.checkbox-row input {
  width: 20px;
  min-height: 20px;
}

.checkbox-row span {
  margin: 0;
}

.sticky-admin-actions {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 70;
  display: flex;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(6,5,4,.94);
}

@media (min-width: 700px) {
  .site-header {
    background: rgba(6, 5, 4, .86);
    backdrop-filter: blur(18px);
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero {
    align-items: center;
    min-height: calc(100svh - 70px);
    padding: 46px 0 34px;
  }

  .site-nav a {
    padding: 0 10px;
  }

  .site-nav .home-nav-link {
    display: flex;
    width: 44px;
    justify-content: center;
    padding-inline: 0;
    color: var(--accent-2);
  }

  .menu-toggle {
    display: none;
  }

  .song-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-filter {
    grid-template-columns: 1fr 220px auto;
    align-items: end;
  }

  .split-section,
  .song-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(270px, .9fr);
  }

  .about-feature {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 28px;
  }

  .about-feature.is-reverse .about-feature-media {
    order: 2;
  }

  .about-feature-media img {
    min-height: 390px;
  }

  .spiritual-project {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    padding: 34px;
  }

  .spiritual-project-link {
    align-self: end;
    white-space: nowrap;
  }

  .song-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  }

  .song-hero-inner .breadcrumbs {
    grid-column: 1 / -1;
  }

  .song-cover-large {
    align-self: center;
    justify-self: end;
  }

  .work-list,
  .review-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-card {
    flex-basis: calc((100% - 12px) / 2);
  }

  .copyright-contact {
    grid-template-columns: minmax(0, 1fr) minmax(270px, .75fr);
    align-items: start;
  }

  .copyright-contact .btn {
    justify-self: start;
  }

  .work-list {
    align-items: stretch;
  }

  .work-list .work-item {
    height: auto;
  }

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

  .service-list span {
    min-height: 48px;
    padding: 13px 14px;
    font-size: 1rem;
  }

  .main-column .social-video-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .site-header {
    padding-inline: max(28px, calc((100vw - var(--max)) / 2));
  }

  .hero,
  .page-hero,
  .section,
  .site-footer,
  .song-hero-inner {
    width: min(calc(100% - 56px), var(--max));
  }

  .hero h1 {
    font-size: 6.4rem;
  }

  .song-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-card {
    flex-basis: calc((100% - 24px) / 3);
  }

  .mobile-listen-bar {
    display: none;
  }

  .side-column {
    position: sticky;
    top: 94px;
    align-self: start;
    height: fit-content;
  }

  body:has(.mobile-listen-bar) {
    padding-bottom: 0;
  }

  .admin-shell {
    display: grid;
    grid-template-columns: 250px 1fr;
  }

  .admin-sidebar {
    min-height: 100vh;
    align-content: start;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .admin-sidebar nav {
    display: grid;
    overflow: visible;
  }

  .admin-content {
    width: min(calc(100% - 48px), 1160px);
    padding: 28px 0 60px;
  }

  .sticky-admin-actions {
    left: calc(250px + 24px);
    right: 24px;
  }
}
