/* ============================================================
   FEMME MUSIC — blocks.css
   Libraries: Lenis + GSAP + Motion One
   Font: Bebas Neue (BN Kick) for display / Archivo for body
   ============================================================ */

/* ── Google Fonts — load directly so WP doesn't block them ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Archivo:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --bg: #0C0C0A;
  --bg2: #141412;
  --bg3: #1C1C19;
  --gold: #d4993a;
  --gold-light: #E0C080;
  --text: #F4EFE6;
  --muted: #B9AD8A;
  --muted2: #5F5B54;
  --border: #463c26;
  --border2: #343430;
  --nyima-blue: #3B8FE0;
  --tala-gold: #C9A84C;
  --beat-red: #E05C3A;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease2: cubic-bezier(.34, 1.56, .64, 1);
  --ease3: cubic-bezier(.25, .46, .45, .94);
}

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

html {
  background: var(--bg);
  color: var(--text);
  font-family: 'Archivo', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input {
  font-family: inherit;
}

/* ── DISPLAY FONT: Bebas Neue ── */
.display-font,
.hero-title,
.sublabels-heading,
.feat-title,
.mov-heading,
.page-title,
.tour-big-title,
.never-miss-heading,
.about-title,
.about-cta-heading,
.vid-title,
.videos-page-title,
.upcoming-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

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

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: transparent;
  border-radius: 0;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: normal;
  opacity: 0;
}

.cursor-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background-image: var(--cursor-logo);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 0 6px rgba(212, 154, 58, .4));
}

/* Cursor ring hidden — no outer circle */
.cursor-ring {
  display: none;
}

/* ── LOGO TRAIL PARTICLES ── */
.music-trail {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 24px;
  height: 24px;
  background-image: var(--cursor-logo);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  animation: music-float 1s ease-out forwards;
  filter: drop-shadow(0 0 4px rgba(212, 154, 58, .3));
  will-change: transform, opacity;
}

@keyframes music-float {
  0% {
    opacity: 0.85;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  50% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: translate(var(--drift-x, 15px), var(--drift-y, -40px)) rotate(var(--drift-r, 30deg)) scale(0.3);
  }
}

@media (pointer: coarse) {

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
}

.cursor-dot.hover {
  width: 10px;
  height: 10px;
}

/* ── LAYOUT ── */
.wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

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

.gold-text {
  color: var(--gold);
}

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

.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section {
  padding: 80px 0;
}

/* ── GSAP ANIMATION CLASSES ── */
.gs-fade {
  opacity: 0;
}

.gs-slide-right {
  opacity: 0;
  transform: translateX(-40px);
}

.gs-slide-up {
  opacity: 0;
  transform: translateY(30px);
}

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(12, 12, 10, .85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background .4s, transform .4s var(--ease);
  will-change: transform, background;
}

.header.scrolled {
  background: rgba(12, 12, 10, .97);
}

.header-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0;
  height: 75px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.logo-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  transition: transform .9s var(--ease);
}

.logo:hover .logo-icon {
  transform: rotate(90deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-top {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
}

.logo-bottom {
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.nav-menu-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu-list>li {
  position: relative;
  display: flex;
  align-items: center;
  height: 75px;
  /* Full header height */
}

/* ── Dropdowns ── */
.nav-menu-list .sub-menu {
  position: absolute;
  top: calc(100%);
  /* Move down to create visual padding */
  left: 0;
  background: rgba(12, 12, 10, 0.95);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  z-index: 100;
}

/* Invisible bridge so mouse doesn't fall in the gap and close the menu */
.nav-menu-list .sub-menu::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent;
}

.nav-menu-list li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu-list .sub-menu li {
  padding: 0;
}

.nav-menu-list .sub-menu .nav-link {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  width: 100%;
}

.nav-menu-list .sub-menu .nav-link::after {
  left: 20px;
  bottom: 8px;
  width: 0;
}

.nav-menu-list .sub-menu .nav-link:hover::after {
  width: calc(100% - 40px);
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  transition: color .3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--text);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 25px;
}

.mobile-socials {
  display: none;
}

.social-icons a {
  color: var(--muted);
  display: flex;
  transition: color .3s, transform .3s;
}

.social-icons a:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.mobile-toggle .bar {
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transition: transform .3s var(--ease), opacity .3s;
}

/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 66px;
  overflow: hidden;
  background-color: var(--bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 1px solid #333333;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12, 12, 10, 0.95) 0%, rgba(12, 12, 10, 0.7) 40%, rgba(12, 12, 10, 0.2) 80%, transparent 100%), linear-gradient(to top, rgba(12, 12, 10, 0.9) 0%, transparent 40%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 60px 0;
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
}

.hero-title {
  font-size: clamp(42px, 8vw, 77px);
  line-height: 1;
  margin-bottom: 22px;
  color: var(--text);
  letter-spacing: 2px;
  word-spacing: 6px;
  width: 100%;
  max-width: 650px;
}

.hero-desc {
  font-size: clamp(14px, 4vw, 16px);
  line-height: 1.8;
  color: var(--muted);
  max-width: 550px;
  margin-bottom: 32px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  padding: 18px 24px;
  background: var(--text);
  border: 1px solid var(--text);
  color: var(--bg);
  transition: all .35s var(--ease);
}

.btn-outline:hover {
  background: transparent;
  color: var(--text);
}

.btn-outline:hover svg {
  transform: translateX(5px);
}

.btn-outline svg {
  transition: transform .3s;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  padding: 18px 24px;
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
  transition: all .3s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--muted);
  transition: color .3s;
}

.text-link:hover {
  color: var(--text);
}

.text-link svg {
  transition: transform .3s;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.tour-bar {
  margin-top: 10px;
  padding-top: 24px;
  /* border-top: 1px solid var(--border); */
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 30px;
  align-items: start;
}

.tour-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tour-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.tour-sub {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--muted);
}

.tour-cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 15px;
}

.tour-city-item {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--muted);
}


/* ── SECTION HEADERS ── */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 3px;
}

.view-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .3s;
}

.view-link:hover {
  color: var(--text);
}

.view-link svg {
  transition: transform .3s;
}

.view-link:hover svg {
  transform: translateX(5px);
}

/* ── ARTISTS ── */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.artist-card {
  position: relative;
  aspect-ratio: .75/1;
  overflow: hidden;
  border: 1px solid #1e1e1b;
  background: var(--bg2);
  cursor: pointer;
  transition: border-color .4s;
  will-change: transform;
}

.artist-card:hover {
  border-color: var(--gold);
}

.artist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(85%);
  transition: transform .8s var(--ease), filter .5s;
}

.artist-card:hover .artist-img {
  transform: scale(1.06);
  filter: saturate(110%);
}

.artist-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 10, 80%) 0%, rgba(12, 12, 10, .1) 55%, transparent 100%);
}

.artist-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
}

.artist-info h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.artist-info span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
  margin-top: 4px;
  display: block;
}

.next-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg2);
  border: 1px solid var(--border);
}

.next-btn {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all .3s var(--ease);
}

.next-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 154, 58, .08);
  transform: scale(1.06);
}

/* ── RELEASES ── */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.releases-grid.wide-grid {
  grid-template-columns: repeat(5, 1fr);
}

.release-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  text-transform: uppercase;
}

.rel-thumb-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg2);
}

.rel-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.release-card:hover .rel-thumb {
  transform: scale(1.04);
}

.rel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 10, .5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity .3s;
}

.release-card:hover .rel-overlay,
.release-card.playing .rel-overlay {
  opacity: 1;
}

.play-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  transform: scale(.85);
  transition: transform .35s var(--ease2), background .3s;
}

.play-btn:hover {
  transform: scale(1);
  background: var(--text);
}

.play-ico,
.pause-ico {
  width: 16px;
  height: 16px;
}

.play-ico {
  margin-left: 2px;
}

.music-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
  opacity: 0;
}

.release-card.playing .music-bars {
  opacity: 1;
}

.eq-bar {
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  animation: eq .7s ease-in-out infinite alternate;
}

.eq-bar:nth-child(1) {
  height: 50%;
}

.eq-bar:nth-child(2) {
  height: 100%;
  animation-delay: .15s;
  animation-duration: .5s;
}

.eq-bar:nth-child(3) {
  height: 70%;
  animation-delay: .3s;
  animation-duration: .9s;
}

.eq-bar:nth-child(4) {
  height: 40%;
  animation-delay: .45s;
  animation-duration: .6s;
}

@keyframes eq {
  0% {
    transform: scaleY(.2)
  }

  100% {
    transform: scaleY(1)
  }
}

.rel-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
}

.rel-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.rel-meta h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text);
}

.rel-artist {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 1.8px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.rel-type {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-top: 2px;
}

.rel-play-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 10px;
  cursor: pointer;
  transition: opacity .3s, transform .3s;
}

.rel-play-icon:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.sublabels-section {
  padding-top: 0;
}

/* ── SUB-LABELS ── */
.sublabels-layout {
  max-width: 1380px;
  margin: 0 auto;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.sublabels-intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sublabels-heading {
  font-size: clamp(50px, 6vw, 88px);
  line-height: 1.0;
  color: var(--text);
  margin-top: 12px;
}

.sublabels-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sublabel-card {
  background: transparent;
  border: 1px solid var(--border);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sl-svg {
  width: 100%;
  max-width: 180px;
  height: auto;
}

.sl-logo-img {
  max-height: 60px;
  width: 100%;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
}

.sl-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 25px;
  margin-bottom: 30px;
}

.sl-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  text-decoration: none;
  transition: opacity 0.3s;
}

.sl-link:hover {
  opacity: 0.8;
}

/* ── SUB-LABEL PAGE SHARED ── */
.sublabel-page {
  background: var(--bg);
}

.sublabel-hero {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: 66px;
}

.sublabel-hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sublabel-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* ── NYIMA HERO ── */
.nyima-hero {
  background: #1a1a12;
}

.slpage-logo {
  max-width: 500px;
  height: auto;
}

/* ══ UNIFIED SUB-LABEL ALBUM BLOCK ══ */
.sl-album-block {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 50px;
  align-items: start;
  margin: 60px 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .sl-album-block {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {
  .sl-album-block {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .sl-album-block {
    gap: 30px;
  }

  .releases-grid {
    grid-template-columns: 1fr;
  }
}


.sl-album-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sl-album-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sl-album-art {
  line-height: 0;
  border: 1px solid var(--border2);
  overflow: hidden;
}

.sl-art-link {
  display: block;
  overflow: hidden;
}

.sl-art-link:hover .sl-art-img {
  transform: scale(1.04);
}

.sl-art-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s var(--ease);
}

.album-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.album-pill {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text);
  display: block;
}

.alb-artist {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-top: 6px;
}

.alb-date {
  font-size: 11px;
  color: var(--muted);
  margin-top: 7px;
  font-weight: 600;
}

.alb-right-meta {
  text-align: right;
  padding-top: 13px;
}

.alb-count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
  display: block;
}

.alb-tags {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  justify-content: flex-end;
}

.alb-tags span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  padding: 3px 7px;
}

/* ── UNIFIED TRACKLIST ── */
.sl-tracklist {
  width: 100%;
}

/* Apple Music Embed */
.apple-music-embed {
  width: 100%;
  display: flex;
  align-items: flex-start;
}

.apple-music-iframe {
  width: 100%;
  max-width: 100%;
  height: 600px;
  border-radius: 12px;
  border: none;
  overflow: hidden;
}


.sc-art-inner {
  position: relative;
  z-index: 1;
}

.sc-art-header {
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.sc-art-header span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(60, 40, 0, .7);
  text-transform: uppercase;
}

.sc-art-col-hdr {
  display: grid;
  grid-template-columns: 1fr 36px 36px 24px 24px;
  gap: 4px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.sc-art-col-hdr span {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(60, 40, 0, .6);
}

.sc-art-row {
  display: grid;
  grid-template-columns: 1fr 36px 36px 24px 24px;
  gap: 4px;
  padding: 3px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.sc-art-row span {
  font-size: 8.5px;
  color: rgba(40, 30, 10, .85);
  font-family: 'Courier New', monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-art-total {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-top: 2px solid rgba(0, 0, 0, .3);
  margin-top: 4px;
}

.sc-art-total span {
  font-size: 10px;
  font-weight: 700;
  color: rgba(60, 40, 0, .9);
  letter-spacing: 1px;
}

.stream-btn {
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 14px;
  text-align: center;
  transition: all .3s;
  width: 100%;
}

.stream-btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* Tracklist */
.tracklist-right {
  flex: 1;
}

.tl-header {
  display: grid;
  grid-template-columns: 36px 1fr 1fr 80px;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

.tl-header span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--muted2);
}

.tl-row {
  display: grid;
  grid-template-columns: 36px 1fr 1fr 80px;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: background .2s, padding-left .25s var(--ease);
  cursor: default;
}

.tl-row:hover {
  background: rgba(212, 154, 58, .04);
  padding-left: 8px;
}

.tl-row span {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tn {
  color: var(--muted2) !important;
  font-weight: 700;
  font-size: 11px !important;
}

.tala-row:hover {
  background: rgba(201, 168, 76, .04);
}

/* ── SISTER BAR ── */
.sister-bar {
  padding: 22px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}

.nyima-sbar {
  background: var(--bg2);
}

.tala-sbar {
  background: var(--bg2);
}

.beat34-sbar {
  background: #DBCA6F;
}

.sister-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--muted);
}

.sister-links {
  display: flex;
  gap: 28px;
}

.sister-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text);
  transition: color .3s;
}

.sister-links a:hover {
  color: var(--gold);
}

.dark-links a {
  color: #2e2e1a !important;
}

.dark-links a:hover {
  color: #6b5a1a !important;
}

/* ── TALA ROOT HERO (textured paper/watercolor from Figma) ── */
.tala-hero {
  background: #e8dfc0;
  position: relative;
  min-height: 280px;
}

.tala-texture-bg {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E"),
    radial-gradient(ellipse at 20% 30%, rgba(180, 200, 140, .5) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(200, 180, 100, .4) 0%, transparent 50%),
    linear-gradient(135deg, #d4c99a 0%, #e8dfc0 30%, #c8be94 60%, #d8cfa8 100%);
  pointer-events: none;
  z-index: 0;
}

.tala-hero-inner {
  position: relative;
  z-index: 1;
}

.tala-slpage-logo {
  height: 120px;
  width: auto;
  max-width: 580px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .15));
}


.tala-genres span {
  color: rgba(60, 40, 10, .8) !important;
  font-size: 13px;
}

.tala-genres .arrow,
.tala-genres .dot {
  color: rgba(60, 40, 10, .5) !important;
}

/* Tala album block */
.tala-album-block {
  margin: 60px 0;
}

.tala-album-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.tala-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.tala-album-art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--border2);
  background: var(--bg2);
}

.tala-art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(20%) saturate(90%);
  transition: transform .6s var(--ease);
}

.tala-album-art:hover .tala-art-img {
  transform: scale(1.04);
}

.tala-art-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  background: linear-gradient(to top, rgba(20, 20, 13, .8) 0%, transparent 100%);
}

.tala-art-label-logo {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--tala-gold);
}

/* ── 34 BEAT ── */
.beat34-hero {
  background: linear-gradient(135deg, #1a1210 0%, #2e1a14 60%, #1a1210 100%);
}

.beat34-genres span {
  color: rgba(224, 92, 58, .9) !important;
}

.beat34-genres .dot {
  color: rgba(224, 92, 58, .5) !important;
}

/* ── FULL RELEASES ── */
.releases-main {
  padding-top: 66px;
}

.releases-wrap {
  padding-top: 60px;
  padding-bottom: 100px;
}

.releases-page-top {
  display: flex;
  /* grid-template-columns: auto 1fr; */
  /* gap: 80px; */
  align-items: end;
  margin-bottom: 56px;
  justify-content: space-between;
}

.page-title {
  font-size: clamp(50px, 7vw, 100px);
  color: var(--text);
  margin-top: 8px;
  line-height: 1;
}

.releases-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 460px;
  margin-right: 120px;
}

.releases-page-top label {
  color: var(--tala-gold);
}

.featured-release {
  display: grid;
  grid-template-columns: 550px 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.feat-art {
  position: relative;
  background: var(--bg3);
  border: 1px solid var(--border2);
}

.feat-art-img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1;
}

.out-now {
  position: absolute;
  top: -16px;
  left: -18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  background: var(--gold);
  padding: 8px 15px;
  border: 1px solid rgba(212, 154, 58, .3);
  z-index: 2;
  color: var(--bg);
}

.scorecard {
  font-size: 11px;
}

.sc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

.sc-header span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--muted2);
  text-transform: uppercase;
}

.sc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(46, 44, 29, .5);
}

.sc-row span {
  font-size: 10px;
  color: var(--muted);
}

.feat-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.feat-title {
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 1.0;
  color: var(--text);
}

.feat-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.feat-meta span {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.feat-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 480px;
}

.feat-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  border: 1px solid var(--border);
  margin-bottom: 36px;
  width: fit-content;
}

.ftab {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--muted);
  padding: 10px 20px;
  border-right: 1px solid var(--border);
  transition: all .3s;
}

.ftab:last-child {
  border-right: none;
}

.ftab.active {
  background: var(--gold);
  color: var(--bg);
}

.ftab:hover:not(.active) {
  color: var(--text);
  background: var(--bg2);
}

/* New catalogue filter bar */
.cat-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.cat-filter-tabs {
  display: flex;
  gap: 8px;
}

.cftab {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--muted);
  padding: 9px 18px;
  border: 1px solid var(--border);
  transition: all .3s;
}

.cftab.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.cftab:hover:not(.active) {
  color: var(--text);
  border-color: var(--muted2);
}

.cat-count-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--muted);
}

.cat-count-label strong {
  color: var(--text);
  font-weight: 700;
}

/* Large 3-column album grid */
.cat-large-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.cat-large-item {
  cursor: pointer;
}

.cat-large-thumb-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg2);
}

.cat-large-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.cat-large-item:hover .cat-large-thumb {
  transform: scale(1.04);
}

.cat-large-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0 28px;
}

.cat-large-title {
  font-size: clamp(18px, 2.5vw, 32px);
  color: var(--text);
  line-height: 1.1;
  margin: 4px 0;
}

.cat-large-artist {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--muted);
}

/* Singles section */
.singles-section {
  margin-top: 20px;
}

.singles-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 28px;
}

.singles-grid {
  grid-template-columns: repeat(5, 1fr);
}


.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.cat-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: opacity .3s;
}

.cat-item .rel-thumb-wrap {
  aspect-ratio: 1;
}

.cat-lbl {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  margin-top: 5px;
}

.cat-t {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.cat-a {
  font-size: 10px;
  color: var(--muted);
}

.cat-d {
  font-size: 11px;
  color: var(--muted);
  margin-top: 5px;
}

.cat-item.hidden {
  display: none;
}

/* ── MOVEMENT ── */
.movement-section {
  padding-top: 0;
  background: var(--bg);
}

.movement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 0px 0;
}

.mov-heading {
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.12;
}

.mov-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}

.mov-newsletter-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin: 12px 0 16px;
}

.nl-row {
  display: flex;
  border: 1px solid var(--border2);
}

.nl-input {
  background: transparent;
  border: none;
  padding: 12px 16px;
  color: var(--text);
  font-size: 13px;
  flex: 1;
  outline: none;
}

.nl-input::placeholder {
  color: var(--muted2);
}

.nl-btn {
  background: var(--gold);
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  transition: background .3s;
  flex-shrink: 0;
}

.nl-btn:hover {
  background: var(--gold-light);
}

.nl-success {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  margin-top: 12px;
}

/* ── ABOUT ── */
.about-section {
  background: var(--bg);
}

.about-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.about-title {
  font-size: clamp(44px, 6.5vw, 90px);
  color: var(--text);
  line-height: 1;
}

.about-header-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  padding-top: 20px;
}

.about-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--muted2);
}

.about-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pill {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--muted);
  border: 1px solid var(--border2);
  padding: 4px 10px;
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.about-text p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--muted);
}

.about-text p+p {
  margin-top: 18px;
}

.hww-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.hww-list {
  display: flex;
  flex-direction: column;
}

.hww-item {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.hww-n {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted2);
  flex-shrink: 0;
  padding-top: 3px;
}

.hww-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.hww-item p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

.founder-block {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
}

.founder-card {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 16px;
}

.founder-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.founder-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.founder-role {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted);
  margin-top: 2px;
}

.founder-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 44px;
}

.founder-right blockquote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 18px;
}

.founder-right p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
}

.about-cta-heading {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--text);
}

.about-cta-right {
  max-width: 600px;
  margin-top: 18px;
}

.about-cta-right p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 14px;
}

.about-cta-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

/* ── EVENTS ── */
.events-section {
  background: var(--bg);
}

.tour-feature {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 56px;
  margin: 44px 0 56px;
  align-items: start;
}

.tour-poster {
  position: relative;
}

.tour-poster-img {
  width: 100%;
  display: block;
  border: 1px solid var(--border);
}

.tour-poster-inner {
  background: linear-gradient(145deg, #1a1510, #2e2018);
  border: 1px solid var(--border2);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.see-all-dates {
  background-color: var(--text);
  color: var(--bg);
}

.poster-agency {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
}

.poster-brandname {
  font-size: 24px;
  font-weight: 800;
  color: white;
  letter-spacing: 2px;
}

.poster-star {
  color: var(--gold);
}

.poster-date-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 4px;
}

.poster-time-text {
  font-size: 10px;
  color: rgba(255, 255, 255, .55);
}

.poster-lineup {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.poster-act {
  display: flex;
  align-items: center;
  gap: 10px;
}

.poster-act-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .15);
}

.poster-act span {
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.tour-detail {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.tour-detail label {
  color: var(--beat-red);
  margin-top: 30px;
}

.hero-mobile-backdrop {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(12, 12, 10, 0.1) 0%, rgba(12, 12, 10, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-section {
  position: relative;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-spotify-embed {
  position: absolute;
  top: 120px;
  right: 4%;
  z-index: 10;
  width: 620px;
  max-width: 45vw;
  height: 418px;
  pointer-events: auto;
  background: rgba(12, 12, 10, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease, box-shadow 0.4s ease;
}

.hero-spotify-embed:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 154, 58, 0.4);
  box-shadow: 0 20px 45px rgba(212, 154, 58, 0.12), 0 10px 20px rgba(0, 0, 0, 0.5);
}

.hero-spotify-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

@media (max-width: 1100px) {
  .hero-spotify-embed {
    position: relative;
    top: 0;
    right: 0;
    margin: 40px auto 0;
    width: 100%;
    max-width: 620px;
    height: 418px;
    backdrop-filter: none;
    background: rgba(12, 12, 10, 0.8);
  }
}

@media (max-width: 600px) {
  .hero-inner {
    padding-bottom: 0;
  }

  .hero-spotify-embed {
    width: 100%;
    height: 380px;
    padding: 6px;
  }
}

.tour-big-title {
  font-size: clamp(42px, 6vw, 90px);
  line-height: 0.95;
  color: var(--gold);
  margin: 4px 0 8px;
}

.tour-meta-row {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.tour-meta-row span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
}

.tour-meta-row span.dot {
  color: var(--gold-light);
  font-size: 30px;
}

.tour-detail p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 480px;
}

.tour-cities-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid var(--muted2);
  border-bottom: 1px solid var(--muted2);
  padding: 15px 0;
}

.tour-cities-row span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted);
}

.tour-action-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 4px;
}

.upcoming-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.upcoming-title {
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--text);
  letter-spacing: 1px;
}

.show-tabs {
  display: flex;
}

.stab {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--muted);
  padding: 12px 15px;
  border: 1px solid var(--border);
  transition: all .3s;
  margin-right: 10px;
}

.stab:last-child {
  margin-right: 0;
  border-right: 1px solid var(--border);
}

.stab.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.stab:hover:not(.active) {
  color: var(--text);
}

.shows-list {
  display: flex;
  flex-direction: column;
}

.show-item {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  align-items: center;
}

/* .show-item:last-child {
  border-bottom: 1px solid var(--border);
} */

.show-date-block {
  display: flex;
  flex-direction: column;
  padding-right: 5px;
  border-right: 1px solid var(--gold-light);
}

.show-info {
  padding-left: 40px;
}

.show-day-num {
  font-size: clamp(56px, 7vw, 60px);
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  font-family: 'Archivo', sans-serif;
}

.show-mo {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--muted);
  margin-top: 2px;
}

.show-wd {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--muted2);
  padding-top: 4px;
}

.show-tags-row {
  display: flex;
  gap: 8px;
  margin-bottom: 7px;
}

.stag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
}

.show-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(17px, 2.5vw, 24px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: .3px;
  margin-bottom: 6px;
  text-transform: uppercase;
  line-height: 1.15;
}

.show-venue {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--muted);
}

.show-lineup-text {
  font-size: 14x;
  color: var(--text);
  margin-top: 8px;
  font-weight: 300;
  line-height: 20px;
}

.show-tix {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.show-time {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--muted);
  white-space: nowrap;
}

.tix-btn {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 10px 15px;
  background: var(--gold);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .3s;
}

.tix-btn:hover {
  background: var(--gold-light);
}

.never-miss-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.never-miss-heading {
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.95;
  color: var(--text);
}

.never-miss-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.never-miss-right p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

.events-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

/* ── VIDEOS (matching Figma) ── */
.videos-section {
  background: var(--bg);
}

/* ── VIDEOS PAGE ── */
.videos-main {
  padding-top: 66px;
}

.videos-wrap {
  padding-top: 56px;
  padding-bottom: 100px;
}

.videos-page-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 90px;
  letter-spacing: 2px;
  color: var(--text);
  line-height: 1;
  margin: 20px 0 20px;
}

.videos-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 60px;
}

/* ── EVENTS PAGE ── */
.events-main {
  padding-top: 66px;
}

.events-wrap {
  padding-top: 56px;
  padding-bottom: 100px;
}

.events-divider-top {
  margin: 16px 0 40px;
}

.events-divider-mid {
  margin: 16px 0;
}

.events-divider-bot {
  margin-bottom: 50px;
}

.poster-logo-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0;
}

.poster-logo-text {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
}

.poster-logo-star {
  color: #f0b030;
  font-size: 22px;
}

.poster-img-wrap {
  margin-top: 12px;
}

.poster-img-border {
  width: 100%;
  border: 1px solid rgba(255, 200, 50, .2);
}

.poster-tags-wrap {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  opacity: .6;
}

.poster-tag {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #f0b030;
  border: 1px solid rgba(240, 176, 48, .4);
  padding: 3px 7px;
}

.tour-headline-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
  background: var(--beat-red);
  padding: 13px 15px;
  margin-bottom: 0;
  position: absolute;
  left: -23px;
  top: -18px;
}

.upcoming-shows-section {
  margin-top: 60px;
}

.tix-btn-soldout {
  background: var(--muted2) !important;
  cursor: default;
}

.never-miss-section {
  margin-top: 80px;
}

.events-links-wrap {
  margin-top: 16px;
}

.video-item {
  display: grid;
  grid-template-columns: 52% 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}

.vid-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg2);
}

.vid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(75%) brightness(0.9);
  transition: transform .7s var(--ease), filter .5s;
}

.video-item:hover .vid-img {
  transform: scale(1.04);
  filter: saturate(100%) brightness(1);
}

.vid-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 13, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s;
}

.video-item:hover .vid-overlay {
  opacity: 1;
}

.vid-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beat-red);
  transition: transform .35s var(--ease2);
}

.vid-play-btn:hover {
  transform: scale(1.08);
}

.watch-btn {
  background: var(--text);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
  align-self: flex-start;
  margin-top: 24px;
}

.watch-btn:hover {
  opacity: 0.85;
}

.vid-play-btn svg {
  margin-left: 3px;
}

.vid-label-text {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

.vid-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vid-title {
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: 1px;
}

.vid-title.gold {
  color: var(--gold);
}

.vid-artists {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vid-artists span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text);
}

.vid-artists span.dot-gold {
  color: var(--gold);
}

.watch-btn {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  padding: 20px 24px;
  border: 1px solid var(--border2);
  color: var(--bg2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s;
  margin-top: 4px;
  width: fit-content;
}

.watch-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--bg);
}

/* ── FOOTER ── */
.footer {
  background: var(--bg);
}

.footer-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  transition: color .3s;
}

.footer-logo:hover {
  color: var(--text);
}

.copyright {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--muted2);
  text-align: right;
  line-height: 1.7;
  text-transform: uppercase;
}

/* ── VIDEO MODAL ── */
.vid-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vid-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 8, .92);
  backdrop-filter: blur(10px);
}

.vid-modal-box {
  position: relative;
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16/9;
  z-index: 1;
}

.vid-modal-close {
  position: absolute;
  top: -42px;
  right: 0;
  color: var(--text);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .3s;
}

.vid-modal-close:hover {
  color: var(--gold);
}

#vid-modal-frame {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── ABOUT PAGE GENERAL ── */
.about-main {
  padding-top: 66px;
}

.about-wrap {
  padding-top: 52px;
  padding-bottom: 100px;
}

.about-hero-img-wrap {
  width: 100%;
  height: 680px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  margin-top: 24px;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  filter: brightness(0.85);
}

.about-tags-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-top: 30px;
  align-items: start;
}

.about-tags-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-tags-row {
  display: flex;
  gap: 20px;
}

.about-tag-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--text);
}

.about-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

.about-text p+p {
  margin-top: 18px;
}

.about-section {
  margin: 70px 0;
}

.about-section .divider {
  margin-bottom: 28px;
}

.wwd-title {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  color: var(--text);
}

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.wwd-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wwd-num {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  padding-bottom: 10px;
}

.wwd-item-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.5px;
}

.wwd-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.team-section-title {
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1;
  color: var(--text);
  margin-bottom: 44px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-img-wrap {
  aspect-ratio: 0.85/1;
  overflow: hidden;
  border: 1px solid var(--border);
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(75%);
  transition: filter 0.5s, transform 0.6s;
}

.team-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.3px;
}

.team-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-top: -6px;
}

.connect-divider {
  margin-bottom: 50px;
}

.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.connect-title {
  font-size: clamp(50px, 7vw, 96px);
  color: var(--gold);
  line-height: 1;
}

.connect-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
}

.connect-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

.connect-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ── ABOUT PAGE FOUNDERS ── */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.founder-card {
  position: relative;
  width: 100%;
  aspect-ratio: 0.8/1;
  overflow: hidden;
  border: 1px solid var(--border);
}

.founder-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.85) sepia(10%);
}

.founder-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px;
  background: linear-gradient(to top, rgba(12, 12, 10, 0.9) 0%, transparent 100%);
}

.founder-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.founder-card-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold);
}

.founder-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding-right: 20px;
}

.founder-eyebrow {
  color: var(--gold);
}

.founder-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: 1px;
}

.founder-attr {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
  text-transform: uppercase;
}

.founder-attr-role {
  color: var(--muted);
}

.founder-bio {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 10px;
}

/* ── CONTACT PAGE ── */
.contact-wrap {
  padding-top: 180px;
  padding-bottom: 120px;
}

.contact-page-top {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  text-align: center;
}

.contact-role {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  font-weight: 500;
}

.contact-name {
  font-size: 1.75rem;
  margin-bottom: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.contact-email {
  font-size: 1.1rem;
  color: var(--muted);
  text-transform: lowercase;
}

/* ── RESPONSIVE ── */
@media(max-width:1200px) {

  .section,
  .hero-section,
  .about-main,
  .videos-main,
  .events-main,
  .releases-main,
  .sublabel-main,
  .footer-inner,
  .contact-main {
    padding: 60px 20px;
  }

  .releases-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .catalogue-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .artists-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .album-block {
    grid-template-columns: 320px 1fr;
  }

  .tala-album-block {
    grid-template-columns: 300px 1fr;
  }

  .featured-release {
    grid-template-columns: 1fr;
  }

  .feat-art {
    max-width: 420px;
  }

  .tour-feature {
    grid-template-columns: 1fr;
  }
}

@media(max-width:960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .sublabel-hero-img {
    height: auto;
  }

  .tour-bar {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .tour-cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sublabels-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sublabels-cards {
    grid-template-columns: 1fr;
  }

  .movement-grid {
    grid-template-columns: 1fr;
  }

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

  .upcoming-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .show-tabs {
    flex-wrap: wrap;
    gap: 10px;
  }

  .stab {
    margin-right: 0 !important;
    border-right: 1px solid var(--border) !important;
  }

  .show-item {
    grid-template-columns: 90px 1fr;
    row-gap: 15px;
  }

  .show-info {
    padding-left: 15px;
  }

  .show-tix {
    grid-column: 2;
    align-items: flex-start;
    margin-top: 5px;
  }

  .never-miss-grid {
    grid-template-columns: 1fr;
  }

  .releases-page-top {
    flex-wrap: wrap;
    gap: 16px;
  }

  .featured-release {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cat-large-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

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

  .founder-block {
    grid-template-columns: 1fr;
  }

  /* About Page Grids */
  .about-tags-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .founder-grid {
    grid-template-columns: 1fr;
  }

  .connect-grid {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100vh - 75px);
    background: var(--bg);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 20px;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s var(--ease);
    display: flex;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
  }

  .nav-menu-list>li {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-menu-list .sub-menu {
    position: relative;
    top: auto;
    left: auto;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    min-width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    padding-left: 15px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .nav-menu-list .sub-menu::before {
    display: none;
  }

  .desktop-socials {
    display: none;
  }

  .mobile-socials {
    display: flex;
    margin-top: 40px;
    padding-bottom: 30px;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .album-block {
    grid-template-columns: 1fr;
  }

  .tala-album-block {
    grid-template-columns: 1fr;
  }

  .tracklist-right {
    display: none;
  }

}

@media(max-width:640px) {
  .tour-cities-grid {
    grid-template-columns: 1fr;
  }

  .releases-grid,
  .releases-grid.wide-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .sublabels-cards {
    grid-template-columns: 1fr;
  }

  /* About Page Grids (Mobile) */
  .wwd-grid {
    grid-template-columns: 1fr;
  }

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

  .about-hero-img-wrap {
    height: 320px;
  }

  .section,
  .hero-section,
  .about-main,
  .videos-main,
  .events-main,
  .releases-main,
  .sublabel-main,
  .footer-inner,
  .contact-main {
    padding: 60px 20px;
  }

  .header {
    padding: 0px 20px;
  }

  .page-title,
  .hero-title,
  .videos-page-title,
  .about-title {
    font-size: 52px !important;
  }

  .releases-page-top {
    flex-wrap: wrap;
  }

  .cat-filter-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cat-filter-tabs {
    flex-wrap: wrap;
  }

  .cat-large-grid {
    grid-template-columns: 1fr;
  }

  .releases-page-top .releases-desc {
    margin-right: 0;
  }

  .hero-mobile-backdrop {
    display: block;
  }
}