:root {
  --bg: #07100c;
  --bg-deep: #05090b;
  --panel: rgba(11, 18, 16, 0.92);
  --panel-2: rgba(16, 24, 22, 0.94);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --ink: #f5f0e6;
  --muted: #b0b7af;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(202, 145, 76, 0.36);
  --gold: #d5a55f;
  --jungle: #3f8d64;
  --jungle-soft: rgba(63, 141, 100, 0.15);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  background:
    radial-gradient(circle at 8% 10%, rgba(213, 165, 95, 0.16), transparent 18%),
    radial-gradient(circle at 88% 12%, rgba(63, 141, 100, 0.14), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(213, 165, 95, 0.06), transparent 28%),
    linear-gradient(180deg, #060b0a 0%, #09100f 34%, #060908 100%);
  overflow-x: hidden;
  padding-bottom: 102px;
}

@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255,255,255,0.02) 8% 8.15%, transparent 8.15% 100%),
    linear-gradient(0deg, transparent 0 8%, rgba(255,255,255,0.015) 8% 8.2%, transparent 8.2% 100%);
  background-size: 180px 180px;
}

.page-aura {
  position: fixed;
  width: 36vw;
  height: 36vw;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

.page-aura-left {
  top: 18vh;
  left: -12vw;
  background: radial-gradient(circle, rgba(213, 165, 95, 0.9), transparent 62%);
}

.page-aura-right {
  top: 42vh;
  right: -8vw;
  background: radial-gradient(circle, rgba(63, 141, 100, 0.85), transparent 62%);
}

img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  position: relative;
  z-index: 1;
  width: min(1340px, calc(100vw - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(4, 9, 8, 0.76);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

.brand,
.hero h1,
.section-head h2,
.catalog-card h3,
.event-card h3,
.cart-head h2,
.catalog-copy h3 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.brand {
  font-size: 1.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nav a,
.eyebrow,
.card-kicker,
.section-head span,
.event-date,
.panel-label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.56rem;
}

.nav a,
.section-copy,
.hero-copy,
.card-copy,
.meta,
.contact-card span,
.social-row,
.cart-pack-note,
.checkout-feedback {
  color: var(--muted);
}

.header-cart,
.catalog-cart-trigger,
.catalog-cta,
.event-card a,
.audio-toggle,
.artist-chip,
.release-actions a,
.cart-add,
.checkout-btn,
.contact-card,
.cart-close {
  border-radius: 999px;
}

.header-cart,
.catalog-cart-trigger,
.catalog-cta,
.event-card a,
.audio-toggle,
.release-actions a,
.cart-add,
.checkout-btn,
.cart-close {
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(213, 165, 95, 0.18), rgba(63, 141, 100, 0.08));
  color: #fff;
}

.header-cart,
.catalog-cart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-cart strong,
.catalog-cart-trigger strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 420px);
  gap: 22px;
  padding: 86px 0 36px;
}

.hero h1 {
  margin: 8px 0;
  font-size: clamp(2.9rem, 7vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 720px;
  font-size: 0.82rem;
  line-height: 1.7;
}

.hero-panel,
.hero-stats article,
.soundcloud-block,
.event-card,
.catalog-hero,
.catalog-counter-bar,
.catalog-card,
.contact-card,
.cart-drawer {
  background: linear-gradient(180deg, rgba(12, 20, 18, 0.94), rgba(7, 12, 11, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-radius: 32px;
  padding: 24px;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(213, 165, 95, 0.28);
}

.hero-panel::before {
  width: 240px;
  height: 240px;
  right: -30px;
  top: -30px;
}

.hero-panel::after {
  width: 140px;
  height: 140px;
  right: 40px;
  top: 40px;
}

.hero-panel-ring {
  position: absolute;
  inset: 16px;
  border-radius: 28px;
  border: 1px solid rgba(63, 141, 100, 0.22);
}

.hero-panel-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  align-items: center;
  gap: 18px;
}

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

.hero-panel-content strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0.06em;
}

.hero-panel-content p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.84rem;
}

.hero-panel-logo {
  position: relative;
  justify-self: end;
  width: 116px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 10px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96), rgba(237, 232, 222, 0.86));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(213, 165, 95, 0.2);
}

.hero-panel-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stats article {
  border-radius: 26px;
  padding: 18px;
}

.hero-stats strong {
  display: block;
  font-size: 1.6rem;
}

.hero-stats span {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.section {
  position: relative;
  z-index: 1;
  padding: 30px 0;
}

.section-head {
  display: flex;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid var(--line);
  color: var(--gold);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.section-copy {
  max-width: 860px;
  font-size: 0.8rem;
  line-height: 1.75;
}

.subhead h3 {
  margin: 6px 0 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: 1.55rem;
}

.soundcloud-block {
  border-radius: 30px;
  margin-top: 18px;
  padding: 18px;
}

.soundcloud-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 22px;
}

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

.event-card {
  border-radius: 28px;
  padding: 20px;
}

.event-card h3 {
  margin: 8px 0 6px;
  font-size: 1.55rem;
  line-height: 0.94;
  text-transform: uppercase;
}

.event-card p {
  font-size: 0.76rem;
  line-height: 1.7;
}

.event-venue {
  color: var(--gold);
}

.event-card a,
.catalog-cta,
.release-actions a,
.cart-add,
.checkout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) auto;
  gap: 18px;
  align-items: center;
  border-radius: 32px;
  padding: 22px;
  margin-bottom: 14px;
}

.catalog-copy h3 {
  margin: 6px 0 10px;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.catalog-copy p:last-child {
  max-width: 760px;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--muted);
}

.catalog-tools {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.catalog-counter-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border-radius: 24px;
  padding: 14px;
  margin-bottom: 14px;
}

.counter-chip {
  min-width: 0;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
}

.counter-chip > span {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.counter-chip strong {
  display: block;
  margin-top: 8px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.counter-chip strong span {
  display: inline;
}

.carousel-shell {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  gap: 14px;
  align-items: center;
}

.carousel-btn {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.45rem;
  cursor: pointer;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  padding-bottom: 4px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.slide {
  scroll-snap-align: start;
  flex: 0 0 clamp(188px, 16vw, 214px);
  align-self: flex-start;
}

.catalog-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 12px 12px 8px;
  min-height: auto;
  display: flex;
  flex-direction: column;
}

.catalog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(213, 165, 95, 0.1), transparent 24%),
    radial-gradient(circle at 14% 90%, rgba(63, 141, 100, 0.08), transparent 24%);
  pointer-events: none;
}

.catalog-cover {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 10px;
}

.catalog-cover img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #0a0f0e;
}

.catalog-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 9, 0.02), rgba(6, 10, 9, 0.34));
  pointer-events: none;
}

.catalog-meta-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.catalog-meta-top span {
  color: var(--muted);
  font-size: 0.68rem;
}

.catalog-card h3 {
  position: relative;
  z-index: 1;
  margin: 8px 0 6px;
  font-size: 1.5rem;
  line-height: 0.94;
  text-transform: uppercase;
}

.meta,
.card-copy {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.artist-line {
  min-height: 2.9em;
}

.artist-chip-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.artist-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.6rem;
}

.cover-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(213, 165, 95, 0.45);
  background: linear-gradient(180deg, rgba(18, 27, 24, 0.92), rgba(10, 16, 14, 0.9));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.cover-play:hover {
  transform: translateY(-1px) scale(1.03);
  border-color: rgba(213, 165, 95, 0.72);
}

.cover-play.is-playing {
  background: linear-gradient(180deg, rgba(63, 141, 100, 0.3), rgba(213, 165, 95, 0.22));
  border-color: rgba(213, 165, 95, 0.86);
}

.compact-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 14px;
  padding-top: 6px;
  align-items: stretch;
}

.compact-actions a,
.audio-toggle,
.compact-actions .action-ghost,
.cart-add {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.compact-actions .action-ghost {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.audio-toggle {
  min-height: 42px;
  cursor: pointer;
}

.audio-toggle.is-playing {
  background: linear-gradient(180deg, rgba(63, 141, 100, 0.28), rgba(213, 165, 95, 0.12));
}

.cart-add {
  min-height: 42px;
  cursor: pointer;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.contact-card {
  display: block;
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-card span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
}

.contact-card strong {
  display: block;
  margin-top: 8px;
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  font-size: 0.72rem;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(213, 165, 95, 0.14), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(63, 141, 100, 0.12), transparent 32%),
    rgba(2, 6, 5, 0.72);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 40;
}

.cart-drawer {
  position: fixed;
  top: 16px;
  right: 16px;
  bottom: 16px;
  width: min(468px, calc(100vw - 24px));
  z-index: 41;
  overflow: hidden;
  border-radius: 34px;
  padding: 20px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 16px;
  background:
    radial-gradient(circle at 88% 8%, rgba(213, 165, 95, 0.14), transparent 24%),
    radial-gradient(circle at 8% 92%, rgba(63, 141, 100, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(13, 22, 19, 0.98), rgba(6, 11, 10, 0.98));
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateX(calc(100% + 20px));
  transition: transform 0.24s ease;
}

.cart-drawer::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.cart-drawer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), transparent 14%),
    linear-gradient(90deg, transparent 0 8%, rgba(255,255,255,0.012) 8% 8.15%, transparent 8.15% 100%),
    linear-gradient(0deg, transparent 0 8%, rgba(255,255,255,0.01) 8% 8.2%, transparent 8.2% 100%);
  background-size: auto, 160px 160px, 160px 160px;
  pointer-events: none;
  opacity: 0.46;
}

.cart-head,
.cart-summary,
.cart-pack-note,
.cart-pack-grid,
.cart-items,
.cart-form,
.payment-grid {
  position: relative;
  z-index: 1;
}

body.cart-open .cart-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.cart-head h2 {
  margin: 4px 0 0;
  font-size: 1.56rem;
  line-height: 0.94;
  text-transform: uppercase;
}

.cart-close {
  width: 42px;
  height: 42px;
  padding: 0;
  font-size: 1.2rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
}

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

.cart-summary article {
  padding: 14px 15px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cart-summary span {
  display: block;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.cart-summary strong {
  display: block;
  margin-top: 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.34rem;
  line-height: 1;
}

.cart-summary article:last-child {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(213, 165, 95, 0.18), rgba(63, 141, 100, 0.08));
}

.cart-pack-note {
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(63, 141, 100, 0.26);
  background:
    linear-gradient(180deg, rgba(63, 141, 100, 0.14), rgba(10, 16, 15, 0.72));
  font-size: 0.7rem;
  line-height: 1.6;
}

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

.pack-card {
  padding: 13px 14px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  min-height: 84px;
}

.pack-card.is-active {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(213, 165, 95, 0.2), rgba(63, 141, 100, 0.12));
  transform: translateY(-1px);
}

.pack-card span {
  display: block;
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.pack-card strong {
  display: block;
  margin-top: 6px;
  font-size: 0.74rem;
  line-height: 1.45;
}

.pack-card:last-child {
  grid-column: 1 / -1;
}

.cart-items {
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 10px;
  padding-right: 4px;
  max-height: 228px;
}

.cart-items::-webkit-scrollbar {
  width: 8px;
}

.cart-items::-webkit-scrollbar-thumb {
  background: rgba(213, 165, 95, 0.28);
  border-radius: 999px;
}

.cart-empty {
  margin: 0;
  padding: 16px;
  border-radius: 20px;
  border: 1px dashed var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.03);
}

.cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 11px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.cart-item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
}

.cart-item strong,
.cart-item span {
  display: block;
  overflow-wrap: anywhere;
}

.cart-item strong {
  font-size: 0.78rem;
}

.cart-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.45;
}

.cart-item button {
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}

.cart-form {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018));
}

.cart-form label span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.cart-form input,
.cart-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(5, 10, 9, 0.74);
  color: var(--ink);
  padding: 11px 12px;
  font-size: 0.78rem;
}

.cart-form input:focus,
.cart-form textarea:focus {
  outline: none;
  border-color: var(--line-strong);
  box-shadow: 0 0 0 1px rgba(213, 165, 95, 0.18);
}

.checkout-btn {
  min-height: 40px;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(213, 165, 95, 0.26), rgba(63, 141, 100, 0.13));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.checkout-feedback {
  margin: 0;
  font-size: 0.68rem;
  min-height: 1.4em;
}

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

.payment-card {
  padding: 13px 14px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.payment-card.wide {
  grid-column: 1 / -1;
  background: linear-gradient(180deg, rgba(213, 165, 95, 0.1), rgba(63, 141, 100, 0.07));
}

.payment-card span {
  display: block;
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.payment-card strong {
  display: block;
  margin-top: 6px;
  font-size: 0.74rem;
}

.payment-card p {
  margin: 8px 0 0;
  font-size: 0.68rem;
  line-height: 1.5;
  color: var(--muted);
  white-space: pre-line;
  overflow-wrap: anywhere;
}

.select-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 10, 9, 0.72);
  color: #fff;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.catalog-card.is-selected {
  border-color: var(--line-strong);
}

.catalog-card.is-selected .select-pill {
  background: linear-gradient(180deg, rgba(213, 165, 95, 0.28), rgba(63, 141, 100, 0.18));
}

.audio-player-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 24px;
  min-height: 78px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(13, 21, 19, 0.96), rgba(5, 9, 8, 0.99));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 -16px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.audio-player-dock.is-ready {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.audio-player-dock::before {
  display: none;
}

.audio-player-cover {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.audio-player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audio-player-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(160px, 280px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 24px;
  row-gap: 4px;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.audio-player-copy {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audio-player-copy .card-kicker {
  display: none;
}

.audio-player-copy h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
}

.audio-player-artists {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audio-player-hint {
  display: none;
}

.audio-player-progress-shell {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 720px;
  justify-self: center;
}

.audio-player-progress-track {
  position: relative;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: height 0.15s ease;
}

.audio-player-progress-track:hover {
  height: 6px;
}

.audio-player-progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(63, 141, 100, 0.92), rgba(213, 165, 95, 0.98));
}

.audio-player-times {
  display: contents;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.audio-player-times span {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  min-width: 36px;
}

.audio-player-times span:first-child {
  text-align: right;
}

.audio-player-controls {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  justify-self: center;
}

.audio-player-control {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.audio-player-control:hover {
  color: #fff;
  transform: scale(1.08);
}

.audio-player-control.is-active {
  color: var(--accent, #d5a55f);
}

.audio-player-control-main {
  background: #fff;
  color: #0b0f0e;
  flex-basis: 38px;
  width: 38px;
  height: 38px;
  font-size: 0.95rem;
}

.audio-player-control-main:hover {
  color: #0b0f0e;
  background: #f1f1f1;
  transform: scale(1.06);
}

.audio-player-control:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

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

  .hero-panel-content {
    grid-template-columns: 1fr;
  }

  .hero-panel-logo {
    justify-self: start;
    width: 96px;
  }

  .events-grid,
  .contact-grid,
  .hero-stats,
  .catalog-counter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100vw - 24px, 1340px);
  }

  .brand {
    font-size: 1.34rem;
  }

  .nav-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 12px;
    min-height: auto;
    padding: 10px 0 8px;
  }

  .nav {
    grid-column: 1 / -1;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    padding: 0 0 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

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

  .nav a {
    white-space: nowrap;
    font-size: 0.54rem;
  }

  .header-cart {
    justify-self: end;
    padding: 7px 12px;
  }

  .hero {
    gap: 16px;
    padding: 74px 0 24px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 14vw, 3.6rem);
  }

  .hero-copy {
    max-width: none;
    font-size: 0.76rem;
    line-height: 1.6;
  }

  .hero-panel {
    min-height: 176px;
    border-radius: 26px;
    padding: 18px;
  }

  .hero-panel-content strong {
    font-size: 2.1rem;
  }

  .hero-panel-content p {
    max-width: none;
    font-size: 0.76rem;
  }

  .hero-stats article {
    padding: 14px;
    border-radius: 22px;
  }

  .hero-stats strong {
    font-size: 1.3rem;
  }

  .hero-stats span {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
  }

  .section {
    padding: 24px 0;
  }

  .section-head {
    gap: 12px;
    margin-bottom: 14px;
  }

  .section-head span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .section-copy {
    font-size: 0.75rem;
    line-height: 1.62;
  }

  .subhead h3 {
    font-size: 1.36rem;
  }

  .soundcloud-block {
    padding: 14px;
    border-radius: 24px;
  }

  .soundcloud-frame {
    min-height: 240px;
    border-radius: 18px;
  }

  .event-card {
    border-radius: 24px;
    padding: 16px;
  }

  .event-card h3 {
    font-size: 1.32rem;
  }

  .event-card p {
    font-size: 0.72rem;
  }

  .catalog-hero {
    padding: 18px;
    border-radius: 28px;
    gap: 14px;
  }

  .catalog-copy h3 {
    font-size: 1.38rem;
  }

  .catalog-copy p:last-child {
    font-size: 0.74rem;
  }

  .catalog-counter-bar {
    gap: 8px;
    padding: 10px;
    border-radius: 20px;
  }

  .counter-chip {
    padding: 10px 12px;
    border-radius: 16px;
  }

  .counter-chip strong {
    font-size: 1.12rem;
  }

  .carousel-viewport {
    margin-right: -6px;
  }

  .carousel-track {
    gap: 12px;
    padding: 0 6px 2px 0;
  }

  .hero-stats,
  .events-grid,
  .contact-grid,
  .catalog-counter-bar,
  .cart-summary {
    grid-template-columns: 1fr;
  }

  .carousel-shell {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

  .slide {
    flex-basis: 70%;
  }

  .catalog-card {
    border-radius: 24px;
    padding: 9px 9px 6px;
  }

  .catalog-cover {
    border-radius: 18px;
    margin-bottom: 6px;
  }

  .cover-play {
    right: 10px;
    bottom: 10px;
    width: 38px;
    height: 38px;
  }

  .catalog-meta-top span,
  .meta,
  .card-copy {
    font-size: 0.62rem;
  }

  .catalog-card h3 {
    margin: 6px 0 4px;
    font-size: 1.14rem;
  }

  .artist-line {
    min-height: 2.15em;
  }

  .artist-chip-row {
    gap: 6px;
    margin-top: 8px;
  }

  .artist-chip {
    padding: 5px 8px;
    font-size: 0.54rem;
  }

  .compact-actions {
    gap: 5px;
    margin-top: 8px;
    padding-top: 2px;
  }

  .release-actions a,
  .audio-toggle,
  .compact-actions .action-ghost,
  .cart-add,
  .catalog-cta,
  .catalog-cart-trigger {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }

  .catalog-tools {
    justify-items: stretch;
  }

  .catalog-tools > * {
    width: 100%;
  }

  .audio-player-dock {
    padding: 10px 12px;
    gap: 10px;
    min-height: 64px;
  }

  .audio-player-cover {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 6px;
  }

  .audio-player-body {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto;
    column-gap: 10px;
  }

  .audio-player-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .audio-player-copy h3 {
    font-size: 0.85rem;
  }

  .audio-player-artists {
    font-size: 0.65rem;
  }

  .audio-player-controls {
    grid-column: 2;
    grid-row: 1;
    gap: 4px;
  }

  .audio-player-progress-shell {
    display: none;
  }

  .audio-player-control {
    width: 32px;
    height: 32px;
  }

  .audio-player-control[data-player-control="shuffle"],
  .audio-player-control[data-player-control="repeat"] {
    display: none;
  }

  .audio-player-control-main {
    width: 36px;
    height: 36px;
  }

  .section-head h2 {
    font-size: 2.3rem;
  }

  .contact-card {
    border-radius: 20px;
    padding: 14px;
  }

  .social-row {
    gap: 12px;
    font-size: 0.68rem;
  }

  .cart-drawer {
    top: auto;
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
    max-height: calc(100vh - 24px);
    padding: 16px;
    gap: 12px;
    border-radius: 26px;
  }

  .cart-pack-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .pack-card:last-child,
  .payment-card.wide {
    grid-column: auto;
  }

  .cart-summary article,
  .pack-card,
  .payment-card {
    padding: 10px 12px;
  }

  .cart-head h2 {
    font-size: 1.28rem;
  }

  .cart-close {
    width: 38px;
    height: 38px;
  }
}
