:root {
  color-scheme: dark;
  --black: #040404;
  --near-black: #090909;
  --charcoal: #121212;
  --white: #ffffff;
  --soft-white: #f6f1e8;
  --muted: #c8c0b2;
  --muted-dark: #8b8378;
  --gold: #c9952f;
  --gold-light: #f1cf78;
  --gold-pale: #ffe7a1;
  --line: rgba(255, 255, 255, 0.13);
  --line-gold: rgba(241, 207, 120, 0.28);
  --glass: rgba(255, 255, 255, 0.055);
  --glass-strong: rgba(255, 255, 255, 0.09);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 8%, rgba(201, 149, 47, 0.12), transparent 28%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 46%, #040404 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(241, 207, 120, 0.7);
  outline-offset: 3px;
}

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

.skip-link:focus {
  z-index: 60;
  width: auto;
  height: auto;
  top: 16px;
  left: 16px;
  clip: auto;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #100b03;
  background: var(--gold-light);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 8px clamp(18px, 4.5vw, 64px);
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(4, 4, 4, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 73px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius);
  filter: drop-shadow(0 0 12px rgba(241, 207, 120, 0.2));
}

.brand-mark img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-lockup {
  display: grid;
  gap: 1px;
}

.brand-name {
  max-width: 210px;
  color: var(--white);
  line-height: 1.05;
}

.brand-album {
  color: var(--gold-light);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.site-nav a {
  position: relative;
  color: var(--soft-white);
  font-size: 0.86rem;
  font-weight: 800;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--gold-light);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(241, 207, 120, 0.32);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.28), 0 10px 28px rgba(0, 0, 0, 0.26);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(241, 207, 120, 0.72);
  background: linear-gradient(180deg, rgba(241, 207, 120, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 0 0 1px rgba(241, 207, 120, 0.18), 0 0 24px rgba(241, 207, 120, 0.16);
  transform: translateY(-1px);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 118px clamp(20px, 7vw, 96px) 96px;
}

.hero-media,
.hero-overlay,
.hero-grain,
.gold-beam {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../images/hero-strength-through-healing.png");
  background-size: cover;
  background-position: center right;
  animation: cinematicDrift 18s ease-in-out infinite alternate;
  transform: scale(1.04);
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.78) 42%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(0deg, #040404 0%, rgba(4, 4, 4, 0) 44%),
    radial-gradient(circle at 34% 70%, rgba(241, 207, 120, 0.13), transparent 30%);
}

.hero-grain {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mix-blend-mode: screen;
}

.gold-beam {
  opacity: 0.68;
  pointer-events: none;
  filter: blur(4px);
}

.gold-beam-one {
  background: linear-gradient(112deg, transparent 30%, rgba(241, 207, 120, 0.28) 48%, transparent 61%);
  animation: goldSweep 8s ease-in-out infinite;
}

.gold-beam-two {
  background: radial-gradient(ellipse at 78% 36%, rgba(241, 207, 120, 0.25), transparent 34%);
  animation: pulseGold 7s ease-in-out infinite alternate;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-album-title {
  display: inline-flex;
  align-items: flex-start;
  gap: 2px;
  text-transform: none;
}

.hero-tm {
  display: inline-block;
  margin-top: -0.05em;
  font-size: 0.31em;
  line-height: 1;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  font-size: clamp(4.2rem, 9.5vw, 9.6rem);
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

h3 {
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--soft-white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.7vw, 2.55rem);
  line-height: 1.12;
}

.hero-credit {
  margin: 18px 0 0;
  color: var(--gold-light);
  font-size: clamp(0.92rem, 1.3vw, 1.06rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #100b03;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: rgba(255, 231, 161, 0.7);
  box-shadow: 0 18px 48px rgba(201, 149, 47, 0.22);
}

.button-secondary {
  color: var(--white);
  background: rgba(0, 0, 0, 0.72);
  border-color: rgba(255, 255, 255, 0.34);
}

.button-primary::before {
  content: "";
  width: 0.78em;
  height: 0.78em;
  margin-right: 9px;
  border-radius: 2px;
  background: #100b03;
}

.button-secondary::before {
  content: "";
  width: 0.78em;
  height: 0.78em;
  margin-right: 9px;
  border: 1px solid rgba(241, 207, 120, 0.62);
  border-radius: 2px;
  background: #050505;
}

.hero-streams {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-streams a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 7px 12px 7px 8px;
  color: var(--soft-white);
  background: rgba(0, 0, 0, 0.42);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.hero-streams a:hover {
  transform: translateY(-2px);
  border-color: var(--line-gold);
  background: rgba(255, 255, 255, 0.08);
}

.hero-streams span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #100b03;
  background: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 900;
}

.hero-footer {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: 28px;
  left: clamp(20px, 5vw, 64px);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(78px, 10vw, 132px) clamp(20px, 5vw, 64px);
}

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

.section-heading {
  display: grid;
  max-width: 820px;
  gap: 18px;
  margin-bottom: clamp(34px, 5vw, 54px);
}

.section-heading p:not(.eyebrow),
.contact-copy p,
.story-copy,
.dedication-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.story-section {
  background: linear-gradient(180deg, #040404 0%, #0d0d0d 100%);
}

.story-grid,
.father-grid,
.contact-grid,
.stream-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.story-copy {
  display: grid;
  gap: 18px;
}

.story-copy p,
.dedication-card p,
.quote-panel p,
.section-heading p,
.contact-copy p,
.testimonial-card p,
.newsletter-panel p {
  margin: 0;
}

.story-copy strong {
  color: var(--white);
}

.father-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(241, 207, 120, 0.12), transparent 30%),
    #080808;
}

.father-grid {
  row-gap: clamp(22px, 4vw, 42px);
}

.dedication-card,
.quote-panel,
.track-card,
.merch-card,
.testimonial-card,
.contact-form,
.newsletter-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.dedication-card {
  min-height: 360px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.dedication-card h2 {
  max-width: 620px;
  font-size: clamp(2.6rem, 5.4vw, 5.2rem);
  line-height: 0.96;
}

.quote-panel {
  min-height: 360px;
  display: grid;
  place-items: end start;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 60% 16%, rgba(241, 207, 120, 0.22), transparent 34%),
    linear-gradient(135deg, #141414, #060606);
}

.quote-panel p {
  max-width: 530px;
  color: var(--soft-white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.timeline-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(241, 207, 120, 0.09) 0, transparent 22%, transparent 78%, rgba(241, 207, 120, 0.08) 100%),
    #050505;
}

.timeline {
  position: relative;
  display: grid;
  gap: 22px;
  padding-left: 22px;
}

.timeline::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 5px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--gold-light), transparent);
  box-shadow: 0 0 28px rgba(241, 207, 120, 0.38);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 20px;
  width: 100%;
  color: inherit;
  text-align: left;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  transform: translateX(-10px);
  opacity: 0;
  transition: opacity 520ms ease, transform 520ms ease, border-color 220ms ease;
}

.timeline-item:hover,
.timeline-item.is-active {
  border-color: var(--line-gold);
  background:
    radial-gradient(circle at 18% 20%, rgba(241, 207, 120, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.07);
}

.timeline-item::before {
  position: absolute;
  top: 28px;
  left: -22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: var(--gold-light);
  box-shadow: 0 0 20px rgba(241, 207, 120, 0.8);
}

.timeline-item.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-step {
  color: var(--gold-light);
  font-weight: 900;
}

.timeline-item p {
  margin: 7px 0 0;
  color: var(--muted);
}

.album-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #040404 100%);
}

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

.track-card {
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.track-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-gold);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
}

.track-art {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at var(--art-x, 62%) var(--art-y, 28%), rgba(241, 207, 120, 0.32), transparent 28%),
    radial-gradient(circle at 50% 74%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(135deg, #050505 0%, #171717 54%, #3f2c08 100%);
}

.track-art::before,
.track-art::after {
  position: absolute;
  content: "";
}

.track-art::before {
  inset: 26px;
  border: 1px solid rgba(241, 207, 120, 0.36);
}

.track-art::after {
  inset: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(-7deg);
}

.track-art-official {
  min-height: 0;
  aspect-ratio: 1 / 1;
  background: #050505;
}

.track-art-official::before {
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(241, 207, 120, 0.34);
  box-shadow: inset 0 0 38px rgba(0, 0, 0, 0.68), inset 0 0 26px rgba(241, 207, 120, 0.14);
}

.track-art-official::after {
  inset: 0;
  z-index: 1;
  border: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28));
  transform: none;
}

.track-art-official img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.chapter-orbit,
.chapter-line,
.chapter-number,
.chapter-title,
.chapter-label {
  position: relative;
  z-index: 1;
}

.chapter-orbit {
  position: absolute;
  inset: 38px 44px;
  z-index: 0;
  border: 1px solid rgba(241, 207, 120, 0.66);
  border-radius: 999px;
  box-shadow: inset 0 0 34px rgba(241, 207, 120, 0.08), 0 0 40px rgba(241, 207, 120, 0.14);
  transform: rotate(-11deg);
}

.chapter-number,
.chapter-title,
.chapter-label {
  display: block;
  text-align: center;
}

.chapter-number {
  margin-top: 42px;
  color: rgba(241, 207, 120, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
}

.chapter-title {
  width: min(230px, calc(100% - 48px));
  margin: 18px auto 0;
  color: var(--gold-pale);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.32rem, 2.5vw, 1.8rem);
  line-height: 1;
  text-shadow: 0 0 20px rgba(241, 207, 120, 0.18);
}

.chapter-title .tm {
  margin-top: 0;
  font-size: 0.42em;
}

.chapter-label {
  margin-top: 11px;
  color: var(--soft-white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chapter-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 207, 120, 0.82), rgba(255, 255, 255, 0.58), transparent);
}

.chapter-line-one {
  width: 72%;
  left: 14%;
  top: 35%;
  transform: rotate(-16deg);
}

.chapter-line-two {
  width: 56%;
  right: 14%;
  bottom: 24%;
  transform: rotate(13deg);
}

.track-card-body {
  padding: 20px;
}

.track-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.track-number,
.track-mood {
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.track-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.listen-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 18px;
  border: 1px solid rgba(241, 207, 120, 0.38);
  border-radius: var(--radius);
  padding: 8px 13px;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.listen-link:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 207, 120, 0.72);
  background: rgba(241, 207, 120, 0.08);
}

.listen-link-disabled,
.listen-link-disabled:hover {
  transform: none;
  cursor: not-allowed;
  opacity: 0.72;
}

.track-title {
  display: inline-flex;
  align-items: flex-start;
  gap: 2px;
  flex-wrap: wrap;
}

.tm,
.track-title .tm {
  display: inline-block;
  margin-top: 0.08em;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.52em;
  font-weight: 900;
  line-height: 1;
}

.merch-section {
  background: #050505;
}

.soca-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(16px, 3vw, 28px);
  background:
    radial-gradient(circle at 16% 28%, rgba(0, 195, 190, 0.13), transparent 28%),
    radial-gradient(circle at 84% 32%, rgba(228, 34, 139, 0.12), transparent 26%),
    radial-gradient(circle at 50% 82%, rgba(241, 207, 120, 0.17), transparent 34%),
    linear-gradient(135deg, #050505 0%, #111 48%, #050505 100%);
}

.soca-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.soca-cover {
  position: relative;
  margin: 0;
}

.soca-cover::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(135deg, rgba(0, 195, 190, 0.22), transparent 26%),
    linear-gradient(315deg, rgba(228, 34, 139, 0.2), transparent 28%),
    radial-gradient(circle, rgba(241, 207, 120, 0.26), transparent 64%);
  filter: blur(18px);
  opacity: 0.72;
}

.soca-cover img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(241, 207, 120, 0.32);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.soca-content {
  display: grid;
  gap: 18px;
}

.soca-content h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 5.1rem);
  line-height: 0.95;
}

.soca-content > p:not(.eyebrow):not(.soca-status):not(.soca-support) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.soca-listen {
  display: grid;
  justify-items: start;
  gap: 8px;
}

.soca-status {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  border: 1px solid rgba(241, 207, 120, 0.38);
  border-radius: 999px;
  padding: 9px 14px;
  color: #050505;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.soca-status:hover {
  transform: translateY(-2px);
}

.soca-support {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.soca-platforms {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.soca-platforms button {
  min-height: 44px;
  border: 1px solid rgba(241, 207, 120, 0.34);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--gold-light);
  background:
    linear-gradient(135deg, rgba(0, 195, 190, 0.12), transparent 32%),
    linear-gradient(315deg, rgba(228, 34, 139, 0.1), transparent 34%),
    rgba(0, 0, 0, 0.28);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0.76;
  cursor: not-allowed;
}

.soca-actions,
.soca-signup {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.soca-signup {
  align-items: center;
}

.soca-signup input {
  flex: 1 1 280px;
}

.soca-artwork-section {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding-top: clamp(20px, 4vw, 36px);
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 195, 190, 0.12), transparent 30%),
    radial-gradient(circle at 88% 24%, rgba(228, 34, 139, 0.1), transparent 28%),
    linear-gradient(180deg, #050505 0%, #0f0f0f 54%, #050505 100%);
}

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

.soca-track-card {
  background:
    linear-gradient(135deg, rgba(0, 195, 190, 0.08), transparent 36%),
    linear-gradient(315deg, rgba(228, 34, 139, 0.07), transparent 32%),
    rgba(255, 255, 255, 0.045);
}

.soca-track-card:hover {
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.42), 0 0 32px rgba(241, 207, 120, 0.14);
}

.soca-track-card .track-title {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.rootslock-artwork-section {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 120, 52, 0.14), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(182, 22, 28, 0.13), transparent 28%),
    radial-gradient(circle at 52% 84%, rgba(241, 207, 120, 0.13), transparent 34%),
    linear-gradient(180deg, #050505 0%, #0f0d08 54%, #050505 100%);
}

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

.rootslock-track-card {
  background:
    linear-gradient(135deg, rgba(182, 22, 28, 0.1), transparent 36%),
    linear-gradient(315deg, rgba(0, 120, 52, 0.11), transparent 34%),
    rgba(255, 255, 255, 0.045);
}

.rootslock-track-card:hover {
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.42), 0 0 32px rgba(241, 207, 120, 0.14);
}

.rootslock-track-card .track-art {
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 0;
  margin: 0;
  line-height: 0;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #050505;
}

.rootslock-track-card .track-art::before,
.rootslock-track-card .track-art::after {
  display: none;
}

.rootslock-track-card .track-art-official img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: cover;
  object-position: center;
  background: transparent;
  transform: scale(1.01);
}

.rootslock-track-card .track-title {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.socalock-mockups-section {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 14%, rgba(241, 207, 120, 0.12), transparent 30%),
    radial-gradient(circle at 86% 34%, rgba(0, 195, 190, 0.1), transparent 26%),
    linear-gradient(180deg, #060606 0%, #101010 52%, #050505 100%);
}

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

.socalock-mockup-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(241, 207, 120, 0.22);
  border-radius: var(--radius);
  padding: 0;
  background:
    linear-gradient(145deg, rgba(241, 207, 120, 0.1), transparent 38%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.socalock-mockup-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 30%);
  opacity: 0.5;
}

.socalock-mockup-card:hover {
  border-color: rgba(241, 207, 120, 0.55);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.46), 0 0 34px rgba(241, 207, 120, 0.12);
  transform: translateY(-4px);
}

.socalock-mockup-art {
  position: relative;
  z-index: 1;
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: start center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: clamp(10px, 2vw, 18px);
  background:
    radial-gradient(circle at 50% 16%, rgba(241, 207, 120, 0.14), transparent 32%),
    linear-gradient(145deg, rgba(0, 0, 0, 0.32), rgba(255, 255, 255, 0.035));
}

.socalock-mockup-card img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius) - 2px);
  object-fit: contain;
  object-position: center top;
  background: rgba(255, 255, 255, 0.04);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.3));
}

.socalock-mockup-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.socalock-mockup-content h3 {
  margin: 0;
}

.socalock-mockup-content p {
  margin: 8px 0 18px;
  color: var(--muted);
}

.socalock-mockup-content .merch-meta {
  gap: 10px;
}

.socalock-mockup-card figcaption {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.rootslock-section {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 120, 52, 0.18), transparent 28%),
    radial-gradient(circle at 86% 30%, rgba(182, 22, 28, 0.18), transparent 27%),
    radial-gradient(circle at 50% 82%, rgba(241, 207, 120, 0.16), transparent 34%),
    linear-gradient(180deg, #050505 0%, #0d0b05 48%, #050505 100%);
}

.rootslock-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.rootslock-artwork {
  position: relative;
  isolation: isolate;
  display: grid;
  aspect-ratio: 1 / 1;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(241, 207, 120, 0.34);
  border-radius: var(--radius);
  padding: clamp(8px, 1.6vw, 14px);
  background: #050505;
  box-shadow: var(--shadow), 0 0 42px rgba(0, 120, 52, 0.12);
}

.rootslock-artwork::before,
.rootslock-artwork::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.rootslock-artwork::before {
  inset: 18px;
  border: 1px solid rgba(241, 207, 120, 0.28);
  border-radius: calc(var(--radius) - 2px);
}

.rootslock-artwork::after {
  display: none;
}

.rootslock-album-cover {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: calc(var(--radius) - 2px);
  background: #050505;
}

.rootslock-artwork .rootslock-kicker,
.rootslock-artwork h2,
.rootslock-artwork > p,
.rootslock-coming-soon {
  position: relative;
  z-index: 1;
}

.rootslock-artwork .rootslock-kicker {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.rootslock-artwork h2 {
  margin: 0;
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.9rem);
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(241, 207, 120, 0.28);
}

.rootslock-artwork > p:not(.rootslock-kicker) {
  margin: 12px 0 0;
  color: var(--soft-white);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rootslock-coming-soon {
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
  border: 1px solid rgba(241, 207, 120, 0.46);
  border-radius: 999px;
  padding: 8px 13px;
  color: #050505;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rootslock-content {
  display: grid;
  gap: 16px;
}

.rootslock-content h2 {
  margin: 0;
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 0.9;
}

.rootslock-subtitle {
  margin: 0;
  color: var(--soft-white);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rootslock-content p:not(.eyebrow),
.rootslock-story p {
  margin: 0;
  color: var(--muted);
}

.rootslock-message {
  color: var(--gold-light) !important;
  font-weight: 900;
}

.rootslock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.rootslock-actions a,
.rootslock-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(241, 207, 120, 0.34);
  border-radius: var(--radius);
  padding: 10px 13px;
  color: var(--gold-light);
  background:
    linear-gradient(135deg, rgba(182, 22, 28, 0.14), transparent 38%),
    linear-gradient(315deg, rgba(0, 120, 52, 0.16), transparent 40%),
    rgba(0, 0, 0, 0.34);
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.rootslock-actions a {
  cursor: pointer;
}

.rootslock-actions a:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 207, 120, 0.72);
  background:
    linear-gradient(135deg, rgba(182, 22, 28, 0.2), transparent 38%),
    linear-gradient(315deg, rgba(0, 120, 52, 0.22), transparent 40%),
    rgba(241, 207, 120, 0.08);
}

.rootslock-actions button {
  cursor: not-allowed;
  opacity: 0.82;
}

.rootslock-actions span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rootslock-story {
  display: block;
  padding-top: 0;
}

.rootslock-story-copy {
  width: min(780px, 100%);
}

.rootslock-story h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1;
}

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

.rootslock-tracklist li {
  counter-increment: rootsTrack;
  position: relative;
  border: 1px solid rgba(241, 207, 120, 0.18);
  border-radius: var(--radius);
  padding: 13px 14px 13px 48px;
  color: var(--muted);
  background:
    linear-gradient(90deg, rgba(182, 22, 28, 0.1), transparent 38%),
    rgba(255, 255, 255, 0.045);
  font-size: 0.9rem;
}

.rootslock-tracklist li::before {
  content: counter(rootsTrack, decimal-leading-zero);
  position: absolute;
  top: 14px;
  left: 14px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 900;
}

.rootslock-tracklist span {
  display: block;
  color: var(--white);
  font-weight: 900;
}

.rootslock-merch-section {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 120, 52, 0.18), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(182, 22, 28, 0.16), transparent 30%),
    linear-gradient(180deg, #050505 0%, #0d0b05 48%, #050505 100%);
}

.rootslock-product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.rootslock-product-tabs button {
  min-height: 42px;
  border: 1px solid rgba(241, 207, 120, 0.26);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--soft-white);
  background:
    linear-gradient(90deg, rgba(0, 120, 52, 0.12), rgba(182, 22, 28, 0.1)),
    rgba(255, 255, 255, 0.045);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.rootslock-product-tabs button:hover,
.rootslock-product-tabs button:focus-visible,
.rootslock-product-tabs button.is-active {
  border-color: rgba(241, 207, 120, 0.72);
  color: #050505;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
}

.rootslock-product-stage {
  display: grid;
}

.rootslock-product-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(241, 207, 120, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(241, 207, 120, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(0, 120, 52, 0.13), transparent 36%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow), 0 0 42px rgba(0, 120, 52, 0.1);
}

.rootslock-product-card[hidden] {
  display: none;
}

.rootslock-product-art {
  display: grid;
  place-items: center;
  margin: 0;
  padding: clamp(14px, 2.4vw, 24px);
  background:
    radial-gradient(circle at 50% 18%, rgba(241, 207, 120, 0.14), transparent 38%),
    #050505;
}

.rootslock-product-art img {
  display: block;
  width: 100%;
  max-height: 620px;
  border-radius: calc(var(--radius) - 2px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.34));
}

.rootslock-product-content {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(22px, 4vw, 42px);
}

.rootslock-product-label {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rootslock-product-content h3 {
  margin: 0;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.rootslock-product-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.rootslock-product-details div,
.rootslock-price-options span {
  border: 1px solid rgba(241, 207, 120, 0.18);
  border-radius: var(--radius);
  padding: 12px;
  background:
    linear-gradient(90deg, rgba(182, 22, 28, 0.09), transparent 42%),
    rgba(0, 0, 0, 0.22);
}

.rootslock-product-details dt {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rootslock-product-details dd {
  margin: 5px 0 0;
  color: var(--soft-white);
}

.rootslock-price-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.rootslock-price-options span {
  color: var(--gold-light);
  font-weight: 900;
}

.rootslock-order-controls {
  display: grid;
  grid-template-columns: minmax(120px, 0.6fr) minmax(120px, 0.4fr);
  gap: 12px;
}

.rootslock-order-controls label {
  display: grid;
  gap: 7px;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rootslock-order-controls select,
.rootslock-order-controls input {
  min-height: 46px;
  border: 1px solid rgba(241, 207, 120, 0.28);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.44);
  font: inherit;
}

.rootslock-shop-button {
  width: fit-content;
}

.rootslock-payment-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.rootslock-coming-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.rootslock-coming-row span {
  border: 1px solid rgba(241, 207, 120, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--soft-white);
  background:
    linear-gradient(90deg, rgba(0, 120, 52, 0.12), rgba(182, 22, 28, 0.1)),
    rgba(255, 255, 255, 0.045);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.music-experiences-section {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 10%, rgba(241, 207, 120, 0.12), transparent 32%),
    linear-gradient(180deg, #050505 0%, #0c0c0c 100%);
}

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

.music-experience-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(241, 207, 120, 0.24);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
  background:
    radial-gradient(circle at 18% 12%, rgba(241, 207, 120, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.music-experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 35%);
}

.music-experience-card span,
.music-experience-card h3,
.music-experience-card p {
  position: relative;
  z-index: 1;
}

.music-experience-card span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.music-experience-card h3 {
  margin: 10px 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
}

.music-experience-card p {
  margin: 0;
  color: var(--muted);
}

.music-experience-card-soca {
  background:
    linear-gradient(135deg, rgba(0, 195, 190, 0.12), transparent 36%),
    linear-gradient(315deg, rgba(228, 34, 139, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.045);
}

.music-experience-card-roots {
  background:
    linear-gradient(135deg, rgba(182, 22, 28, 0.14), transparent 38%),
    linear-gradient(315deg, rgba(0, 120, 52, 0.15), transparent 40%),
    rgba(255, 255, 255, 0.045);
}

.merch-pricing {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.merch-pricing article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.merch-pricing span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.merch-pricing strong {
  display: block;
  margin-top: 7px;
  color: var(--white);
}

.merch-pricing p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.merch-pricing .payment-policy {
  grid-column: 1 / -1;
}

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

.merch-card {
  overflow: hidden;
}

.merch-art {
  position: relative;
  display: grid;
  min-height: 250px;
  align-content: center;
  justify-items: center;
  gap: 14px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 26%, rgba(241, 207, 120, 0.24), transparent 32%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(145deg, #050505 0%, #101010 48%, #3a2708 100%);
}

.merch-art::before,
.merch-art::after {
  position: absolute;
  content: "";
}

.merch-art::before {
  inset: 24px;
  border: 1px solid rgba(241, 207, 120, 0.34);
}

.merch-art::after {
  width: 72%;
  height: 1px;
  left: 14%;
  top: 44%;
  background: linear-gradient(90deg, transparent, rgba(241, 207, 120, 0.86), rgba(255, 255, 255, 0.5), transparent);
  transform: rotate(-14deg);
}

.merch-art-product {
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: clamp(10px, 2vw, 18px);
  background:
    radial-gradient(circle at 50% 28%, rgba(241, 207, 120, 0.16), transparent 35%),
    linear-gradient(145deg, #050505 0%, #0f0f0f 52%, #211604 100%);
}

.merch-art-product::before {
  inset: 12px;
  z-index: 1;
  border-color: rgba(241, 207, 120, 0.3);
  pointer-events: none;
}

.merch-art-product::after {
  inset: 0;
  z-index: 1;
  width: auto;
  height: auto;
  left: 0;
  top: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.16)),
    radial-gradient(circle at 50% 96%, rgba(241, 207, 120, 0.14), transparent 32%);
  pointer-events: none;
  transform: none;
}

.merch-art-product img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.32));
}

.merch-edition,
.merch-title-art,
.merch-art-label,
.merch-shine {
  position: relative;
  z-index: 1;
}

.merch-edition {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(241, 207, 120, 0.56);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.72);
  font-weight: 900;
}

.merch-shine {
  width: min(160px, 56%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  box-shadow: 0 0 20px rgba(241, 207, 120, 0.52);
}

.merch-title-art {
  width: min(250px, calc(100% - 44px));
  color: var(--gold-pale);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.28rem, 2.5vw, 1.84rem);
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 22px rgba(241, 207, 120, 0.18);
}

.merch-title-art .tm {
  margin-top: 0;
  font-size: 0.42em;
}

.merch-art-label {
  color: var(--soft-white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
}

.merch-card-content {
  padding: 20px;
}

.merch-card-content p {
  margin: 8px 0 18px;
  color: var(--muted);
}

.merch-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--gold-light);
  font-weight: 900;
}

.shop-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241, 207, 120, 0.38);
  border-radius: var(--radius);
  padding: 9px 14px;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.shop-link:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 207, 120, 0.72);
  background: rgba(241, 207, 120, 0.08);
}

.shop-link-payment {
  flex: 1 1 220px;
}

.shop-link-inquiry,
.merch-pricing-link {
  background: rgba(241, 207, 120, 0.08);
}

.merch-pricing-link {
  margin-top: 10px;
}

.tracklock-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 28%, rgba(241, 207, 120, 0.16), transparent 34%),
    linear-gradient(135deg, #050505 0%, #111 50%, #050505 100%);
}

.tracklock-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.tracklock-copy h2 {
  margin: 10px 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.tracklock-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.02rem;
}

.tracklock-note {
  margin: 18px 0 24px;
  color: var(--gold-light) !important;
  font-weight: 900;
}

.tracklock-feature {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(241, 207, 120, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.tracklock-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(241, 207, 120, 0.08));
}

.tracklock-feature img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.closing-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 20%, rgba(241, 207, 120, 0.14), transparent 32%),
    linear-gradient(180deg, #050505 0%, #111 50%, #050505 100%);
}

.closing-panel {
  display: grid;
  justify-items: center;
  gap: clamp(22px, 4vw, 38px);
  text-align: center;
}

.closing-panel h2 {
  max-width: 860px;
  font-size: clamp(2.8rem, 6vw, 6.4rem);
}

.closing-copy {
  display: grid;
  gap: 18px;
  width: min(780px, 100%);
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.closing-copy p,
.closing-signature p,
.closing-tagline {
  margin: 0;
}

.closing-signature {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 4px;
}

.closing-signature span {
  display: block;
  width: min(220px, 56vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  box-shadow: 0 0 18px rgba(241, 207, 120, 0.28);
}

.closing-signature p {
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.closing-logo {
  width: clamp(96px, 13vw, 152px);
  height: auto;
  margin-top: 6px;
  filter: drop-shadow(0 0 22px rgba(241, 207, 120, 0.2));
}

.closing-tagline {
  display: grid;
  gap: 7px;
  color: var(--soft-white);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.closing-tagline span:first-child {
  color: var(--gold-light);
}

.testimonials-section {
  background: linear-gradient(180deg, #080808 0%, #111 100%);
}

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

.testimonial-card {
  padding: 24px;
}

.testimonial-card p {
  color: var(--soft-white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.14;
}

.testimonial-card span {
  display: block;
  margin-top: 20px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(241, 207, 120, 0.1), transparent 30%),
    linear-gradient(180deg, #101010 0%, #050505 100%);
}

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

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.contact-links a {
  color: var(--gold-light);
  font-weight: 900;
}

.contact-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.contact-paths article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.contact-paths span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
}

.contact-paths strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
}

.contact-paths p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
}

.order-note {
  margin: 0;
  border-left: 2px solid var(--gold);
  padding: 2px 0 2px 14px;
  color: var(--soft-white);
}

.tally-inquiry-card p {
  margin: 0;
  color: var(--soft-white);
}

.tally-inquiry-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tally-inquiry-list li {
  border: 1px solid rgba(241, 207, 120, 0.18);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

.tally-inquiry-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(241, 207, 120, 0.5);
  vertical-align: middle;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--soft-white);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.newsletter-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(0, 0, 0, 0.38);
  padding: 13px 14px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.newsletter-form input:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(241, 207, 120, 0.16);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold-light);
  font-weight: 800;
}

.newsletter-section {
  padding: 0 clamp(20px, 5vw, 64px) clamp(76px, 9vw, 118px);
  background: #050505;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
}

.newsletter-panel h2 {
  font-size: clamp(2rem, 3.8vw, 3.8rem);
}

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

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px clamp(20px, 5vw, 64px);
  background: #030303;
}

.footer-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--gold-light);
  font-weight: 900;
}

.social-links a {
  align-items: center;
  display: inline-flex;
  padding: 9px 0;
  min-height: 44px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-credit {
  flex: 1 0 100%;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  text-align: center;
}

.site-footer .brand-mark {
  width: 48px;
  height: 72px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cinematicDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(1.2%, -1.2%, 0);
  }
}

@keyframes goldSweep {
  0%,
  100% {
    transform: translateX(-16%);
    opacity: 0.18;
  }
  50% {
    transform: translateX(18%);
    opacity: 0.52;
  }
}

@keyframes pulseGold {
  from {
    opacity: 0.25;
    transform: scale(0.96);
  }
  to {
    opacity: 0.7;
    transform: scale(1.04);
  }
}

@media (max-width: 1040px) {
  .track-grid,
  .merch-grid,
  .soca-artwork-grid,
  .rootslock-artwork-grid,
  .socalock-mockup-grid,
  .rootslock-tracklist,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 78px 16px auto;
    display: grid;
    gap: 0;
    max-height: calc(100svh - 96px);
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 5, 5, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .story-grid,
  .father-grid,
  .contact-grid,
  .stream-grid,
  .soca-panel,
  .tracklock-panel,
  .rootslock-panel,
  .rootslock-product-card,
  .rootslock-story,
  .music-experience-grid,
  .merch-pricing,
  .newsletter-panel {
    grid-template-columns: 1fr;
  }

  .soca-cover {
    width: min(620px, 100%);
    justify-self: center;
  }

  .tracklock-feature {
    order: -1;
  }

  .hero-footer {
    display: none;
  }
}

@media (max-width: 680px) {
  .brand-name {
    max-width: 142px;
    font-size: 0.9rem;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 59px;
  }

  .brand-album {
    display: none;
  }

  .hero {
    padding-top: 108px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.78) 100%),
      linear-gradient(0deg, #040404 0%, rgba(4, 4, 4, 0) 46%);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .track-grid,
  .merch-grid,
  .soca-artwork-grid,
  .rootslock-artwork-grid,
  .socalock-mockup-grid,
  .rootslock-tracklist,
  .rootslock-product-details,
  .rootslock-price-options,
  .rootslock-order-controls,
  .music-experience-grid,
  .merch-pricing,
  .soca-platforms,
  .testimonial-grid,
  .stream-buttons,
  .form-row,
  .contact-paths {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .timeline-item {
    opacity: 1;
    transform: none;
  }
}
