/*
Theme Name:  1789 MusicTech
Theme URI:   https://1789musictech.com
Author:      1789 MusicTech
Description: Premium dark theme for 1789 MusicTech — record label, creative studio and music powerhouse. Content is managed through the 1789 MusicTech Headless plugin.
Version:     1.0.0
Requires at least: 6.0
Tested up to:      6.8
Requires PHP:      7.4
License:     GPL-2.0-or-later
Text Domain: nmt1789
Tags:        music, dark, one-column, custom-colors, custom-menu, full-width-template
*/

/* 1789 MusicTech Redesign Stylesheet */

/* NN Rektorat Font Family */
@font-face {
    font-family: 'NN Rektorat';
    src: url('assets/fonts/NNRektoratSTD-Hairline.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NN Rektorat';
    src: url('assets/fonts/NNRektoratSTD-Thin.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NN Rektorat';
    src: url('assets/fonts/NNRektoratSTD-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NN Rektorat';
    src: url('assets/fonts/NNRektoratSTD-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NN Rektorat';
    src: url('assets/fonts/NNRektoratSTD-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NN Rektorat';
    src: url('assets/fonts/NNRektoratSTD-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NN Rektorat';
    src: url('assets/fonts/NNRektoratSTD-Heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-dark: #000000;
    --bg-light: #ffffff;
    --text-primary-dark: #ffffff;
    --text-secondary-dark: rgba(255, 255, 255, 0.6);
    --text-fade-dark: rgba(255, 255, 255, 0.5);

    --text-primary-light: #000000;
    --text-secondary-light: rgba(0, 0, 0, 0.6);
    --text-fade-light: rgba(0, 0, 0, 0.5);

    --border-dark: rgba(255, 255, 255, 0.15);
    --border-light: rgba(0, 0, 0, 0.15);

    --font-heading: 'NN Rektorat', sans-serif;
    --font-body: 'NN Rektorat', sans-serif;

    --transition-premium: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.3s ease;
}


/* Global Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary-dark);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: clip;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1728px;
    margin: 0 auto;
    padding: 0 234px;
    /* Exact Figma gutter margins */
}

@media (max-width: 1600px) {
    .container {
        padding: 0 120px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* Sections */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 24px;
    width: 100%;
}

.section-title-group {
    max-width: 860px;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-primary-dark);
    margin-bottom: 16px;
    display: inline-block;
    letter-spacing: 2px;
}

.section-tag.text-black {
    color: var(--text-primary-light);
}

.section-tag-underlined.text-black {
    color: var(--text-primary-light);
}

.section-tag-underlined {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary-dark);
    margin-bottom: 16px;
    display: inline-block;
    letter-spacing: 2px;
    text-decoration: underline;
    text-underline-offset: 8px;
}

.section-title-fade {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff80;
}

.section-title-fade .text-white {
    color: #ffffff;
}

.section-title-fade.text-black {
    color: #00000080;
}

.section-title-fade.text-black .text-black {
    color: #000000;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px 32px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border-radius: 0px;
    /* Stark minimalist design */
    height: 60px;
    will-change: transform;
    white-space: nowrap !important;
}

.btn span {
    white-space: nowrap !important;
    display: inline-block;
    flex-shrink: 0;
}

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

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

.btn-primary:hover {
    background-color: transparent;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #000000;
}

.btn-arrow {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid var(--border-dark);
    min-width: 300px;
    max-width: 100%;
    width: max-content;
    padding: 0 32px;
    white-space: nowrap !important;
    height: 48px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-sizing: border-box;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-arrow span {
    white-space: nowrap !important;
    display: inline-block;
    flex-shrink: 0;
}

.btn-arrow::after {
    content: ' →';
    display: inline-block;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-arrow:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.btn-arrow:hover::after {
    transform: translateX(8px);
}

.btn-arrow-black {
    background-color: transparent;
    color: #000000;
    border: 1px solid var(--border-light);
    min-width: 300px;
    max-width: 100%;
    width: max-content;
    padding: 0 32px;
    white-space: nowrap !important;
    height: 48px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-sizing: border-box;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-arrow-black span {
    white-space: nowrap !important;
    display: inline-block;
    flex-shrink: 0;
}

.btn-arrow-black::after {
    content: ' →';
    display: inline-block;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-arrow-black:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.btn-arrow-black:hover::after {
    transform: translateX(8px);
}

/* Header Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    border-bottom: 1px solid var(--border-dark);
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.nav-hidden {
    /* animation: none is required — .nav-animate's entrance animation uses
       fill-mode: forwards, whose final keyframe otherwise overrides this
       transform forever and the navbar can never hide on scroll. */
    animation: none;
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    max-width: 1728px;
    margin: 0 auto;
    padding: 0 234px;
}

@media (max-width: 1600px) {
    .nav-container {
        padding: 0 120px;
    }
}

@media (max-width: 1200px) {
    .nav-container {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 24px;
    }
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 32px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary-dark);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 20px;
    height: 70px;
    line-height: 70px;
    transition: var(--transition-premium);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--text-primary-dark);
    transition: var(--transition-premium);
    transform: translateX(-50%);
}

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

.nav-link:hover::after {
    width: calc(100% - 40px); /* accounts for padding on the sides */
}

/* Hamburger & Mobile Nav Drawer */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.hamburger-menu span {
    width: 30px;
    height: 2px;
    background-color: var(--text-primary-dark);
    transition: var(--transition-premium);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #000000;
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    transform: translateY(-20px);
    transition: var(--transition-premium);
    pointer-events: none;
}

.mobile-nav.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-link {
    text-decoration: none;
    color: var(--text-primary-dark);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

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

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 1171px;
    padding-top: 70px;
    display: flex;
    align-items: center;
    background-color: #000000;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    background-color: #000000;
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 67.5vw;
    min-height: 120vh;
    min-width: 213.33vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
    object-fit: cover;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 80%, rgba(0, 0, 0, 1) 100%);
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 100%;
}

.hero-header-group {
    width: 100%;
}

.hero-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-title-wrapper {
    max-width: 856px;
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 70px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-title-fade {
    color: var(--text-fade-dark);
}

.hero-title-solid {
    color: #ffffff;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary-dark);
    max-width: 680px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.hero-cta-group .btn {
    width: 240px;
}

/* Featured Tracks Slider */
.hero-featured-tracks {
    width: 100%;
    margin-top: 20px;
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.slider-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 8px;
}

.slider-controls {
    display: flex;
    gap: 16px;
}

.slider-btn {
    background: transparent;
    border: 1px solid var(--border-dark);
    color: var(--text-primary-dark);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.track-list-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    padding: 20px 0;
    cursor: grab;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.track-list-wrapper::-webkit-scrollbar {
    display: none;
}

.track-list-wrapper.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.track-list-status {
    color: var(--text-secondary-dark);
    font-size: 16px;
    padding: 40px 0;
}

.track-list {
    display: flex;
    gap: 24px;
}

.track-card {
    flex: 0 0 343.2px;
    height: 458.2px;
    border: 1px solid var(--border-dark);
    background-color: rgba(255, 255, 255, 0.02);
    padding: 0;
    transition: var(--transition-premium);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.track-card:hover {
    border-color: #ffffff;
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.05);
}

.track-artwork {
    width: 343.2px;
    height: 343.2px;
    overflow: hidden;
    position: relative;
}

.track-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-premium);
}

.track-card:hover .track-artwork img {
    transform: scale(1.05);
}

.track-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.track-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 4px;
    letter-spacing: 1px;
}

.track-title .t-title {
    color: #ffffff;
}

.track-title .t-artist {
    color: var(--text-secondary-dark);
    font-weight: 500;
    font-size: 14px;
}

.track-streaming-links {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.social-icon-btn {
    color: #ffffff;
    font-size: 16px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-icon-btn:hover {
    color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

/* Playlists Section */
.playlists-section {
    background-color: #000000;
}

.playlists-section .section-header {
    border-bottom: none;
    padding-bottom: 0;
    align-items: flex-end;
    margin-bottom: 80px;
}

.section-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-playlist-solid {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    width: 260px;
    height: 48px;
    padding: 0 16px;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
}

.btn-playlist-solid:hover {
    background-color: transparent;
    color: #ffffff;
}

.btn-playlist-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    width: 260px;
    height: 48px;
    padding: 0 16px;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
}

.btn-playlist-outline:hover {
    background-color: #ffffff;
    color: #000000;
}

.btn-playlist-solid i,
.btn-playlist-outline i {
    font-size: 18px;
}

.featured-cards-grid {
    display: grid;
    grid-template-columns: 610px 1fr;
    gap: 40px;
    margin-top: 20px;
}

.playlists-section .featured-cards-grid {
    margin-top: 0;
}

.featured-card-left {
    width: 610px;
    height: 610px;
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.card-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.radio-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
}

.radio-logo-text {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 8px 16px;
    backdrop-filter: blur(5px);
}

.featured-card-right {
    width: 100%;
    height: 610px;
    border: none;
    padding: 0;
    background-color: transparent;
    display: flex;
    flex-direction: column;
}

.card-items-list {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 540px;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.card-items-list::-webkit-scrollbar {
    width: 4px;
    display: block;
}

.card-items-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.card-items-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.playlist-header-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    align-self: flex-end;
}

.playlist-cta-bottom {
    display: none;
}

@media (max-width: 900px) {
    .playlist-header-cta {
        display: none !important;
    }
    .playlist-cta-bottom {
        display: flex !important;
        flex-direction: row;
        gap: 16px;
        margin-top: 24px;
    }
}

@media (max-width: 600px) {
    .playlist-cta-bottom {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .playlist-cta-bottom .btn {
        width: 100%;
        max-width: 280px;
    }
}

.card-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 160px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 0;
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

.card-list-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.item-content-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.item-image-wrapper {
    width: 90px;
    height: 90px;
    overflow: hidden;
}

.item-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.item-details h4 span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary-dark);
    text-transform: uppercase;
}

.item-meta {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary-dark);
}

/* =====================================================
   Latest Projects — Interactive Carousel
   ===================================================== */

.projects-section {
    background-color: #000;
    overflow: hidden;
}

.projects-section .section-header {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 60px;
}

/* ---- Carousel shell ---- */
.proj-carousel {
    display: grid;
    grid-template-columns: 1fr 340px;
    grid-template-rows: 1fr;
    height: 600px;
    width: 100%;
    overflow: visible;
}

/* ---- Featured panel (left large card) ---- */
.proj-featured {
    position: relative;
    overflow: hidden;
    grid-column: 1;
    grid-row: 1;
    cursor: pointer;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
}

.proj-featured-img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.proj-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.4s ease;
    transform-origin: center;
}

.proj-featured.is-animating .proj-featured-img {
    opacity: 0;
    transform: scale(1.06);
}

/* gradient scrim so footer text pops */
.proj-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.45) 40%,
        transparent 70%
    );
    pointer-events: none;
}

/* Footer info bar */
.proj-featured-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 32px 36px;
    gap: 16px;
    z-index: 2;
}

.proj-featured-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.proj-featured-tag {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.55);
    transition: opacity 0.3s ease;
}

.proj-featured-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.proj-featured-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #fff;
    margin: 0;
    line-height: 1;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.proj-featured.is-animating .proj-featured-title {
    transform: translateY(8px);
    opacity: 0;
}

.proj-featured-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    flex-shrink: 0;
}

.proj-featured-artists {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    transition: opacity 0.3s ease;
}

.proj-featured.is-animating .proj-featured-artists,
.proj-featured.is-animating .proj-featured-tag {
    opacity: 0;
}

.proj-featured-links {
    display: flex;
    gap: 14px;
    align-items: center;
}

.proj-featured-links a {
    color: rgba(255,255,255,0.7);
    font-size: 19px;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
}

.proj-featured-links a:hover {
    color: #fff;
    transform: scale(1.15);
}

.proj-featured-arrow {
    width: 52px;
    height: 52px;
    border: 1.5px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    border-radius: 50%;
}

.proj-featured-arrow:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: scale(1.1);
}

/* Auto-advance progress bar */
.proj-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 3;
}

.proj-progress-fill {
    height: 100%;
    background: #fff;
    width: 0%;
    transition: width linear;
}

/* ---- Sidebar list (right) — always exactly 3 text-only cards ---- */
.proj-list {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

.proj-list-item {
    flex: 1;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    position: relative;
    transition: background 0.3s ease;
    min-height: 0;
    padding: 20px 24px;
    box-sizing: border-box;
}

.proj-list-item:last-child {
    border-bottom: none;
}

.proj-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    transition: background 0.3s ease;
    z-index: 1;
}

.proj-list-item.is-active::before {
    background: #fff;
}

.proj-list-item.is-active {
    background: rgba(255,255,255,0.06);
}

.proj-list-item:hover:not(.is-active) {
    background: rgba(255,255,255,0.03);
}

/* No thumbnails — text-only layout */
.proj-list-thumb {
    display: none;
}

.proj-list-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    min-width: 0;
}

.proj-list-meta {
    font-size: 10px;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.3);
    transition: color 0.3s ease;
}

.proj-list-item.is-active .proj-list-meta {
    color: rgba(255,255,255,0.55);
}

.proj-list-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.proj-list-item.is-active .proj-list-name {
    color: #ffffff;
    font-size: 16px;
}

.proj-list-artist {
    font-size: 11px;
    font-family: var(--font-body, 'Inter', sans-serif);
    color: rgba(255,255,255,0.25);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.proj-list-item.is-active .proj-list-artist {
    color: rgba(255,255,255,0.6);
}

/* Colour accent bar matching each project accentColour */
.proj-list-item[data-accent]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 3px;
    right: 0;
    height: 2px;
    background: var(--item-accent, transparent);
    opacity: 0;
    transition: opacity 0.25s;
}

.proj-list-item.is-active[data-accent]::after {
    opacity: 1;
}

/* ---- Nav controls (Section Header aligned) ---- */
.proj-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    padding: 0;
}

.proj-nav-btn {
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.proj-nav-btn:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
    transform: scale(1.1);
}

.proj-nav-btn:active {
    transform: scale(0.95);
}

.proj-counter {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    margin: 0 4px;
}

.proj-counter span {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    line-height: 1;
}

.proj-counter-sep {
    color: rgba(255,255,255,0.3) !important;
    font-size: 12px !important;
    font-weight: 400 !important;
}

.projects-cta-bottom {
    display: none;
    justify-content: flex-start;
    margin-top: 32px;
    width: 100%;
}

.projects-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.projects-header-cta {
    display: block;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .projects-header-right {
        display: contents;
    }
    .projects-header-cta {
        display: none !important;
    }
    .projects-cta-bottom {
        display: flex !important;
    }
    .proj-carousel {
        grid-template-columns: 1fr;
        grid-template-rows: 360px auto auto;
        height: auto;
    }
    .proj-featured {
        grid-column: 1;
        grid-row: 1;
        min-height: 360px;
    }
    .proj-list {
        grid-column: 1;
        grid-row: 2;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.08);
        max-height: 320px;
        overflow-y: auto;
    }
    .proj-list-item {
        flex: none;
        min-height: 72px;
    }
    .proj-nav {
        grid-column: 1;
        grid-row: 3;
        flex-direction: row;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.08);
        padding: 16px;
        justify-content: center;
    }
}










/* Meet the Artists Section — sticky pin so producers scrolls over it */
.artists-section {
    background-color: #000000;
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 60px;
    box-sizing: border-box;
}

.artists-section .container {
    flex-shrink: 0;
}

.artists-section .section-header {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 40px;
}

.testimonial-rows {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 0;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    display: flex;
}

.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

/* Infinite Marquee Keyframe Animations */
.scroll-left .marquee-track {
    animation: marquee-left 40s linear infinite;
}

.scroll-right .marquee-track {
    animation: marquee-right 40s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.artist-card-v2 {
    width: 360px;
    height: 400px;
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.artist-card-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition-premium);
}

.artist-card-v2:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.artist-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 90%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 10;
}

.artist-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-links {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    transform: translateY(15px);
    opacity: 0;
    transition: var(--transition-premium);
}

.artist-card-v2:hover .artist-links {
    transform: translateY(0);
    opacity: 1;
}

.artist-links a {
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.artist-links a:hover {
    color: var(--text-secondary-dark);
    transform: scale(1.2);
}

.gradient-overlay-left,
.gradient-overlay-right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 250px;
    z-index: 20;
    pointer-events: none;
}

.gradient-overlay-left {
    left: 0;
    background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.gradient-overlay-right {
    right: 0;
    background: linear-gradient(-90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

/* Light / High-contrast wrapper section — overlaps pinned artists-section */
.light-section-wrapper {
    background-color: var(--bg-light);
    color: var(--text-primary-light);
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Our Producers Section (Light theme override) */
.producers-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

.producers-section .section-header {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 80px;
}

.producers-banner {
    width: 100%;
    margin-top: 0;
    overflow-x: auto;
    padding-bottom: 20px;
}

.producers-banner::-webkit-scrollbar {
    height: 6px;
}

.producers-banner::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.producers-banner::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
}

.producers-banner-content {
    display: flex;
    gap: 24px;
    width: max-content;
}

.producer-card {
    width: 360px;
    height: 400px;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.producer-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: var(--transition-premium);
}

.producer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: var(--transition-premium);
}

/* Interactive Color Theme Overlays */
.producer-sarz::before {
    background: linear-gradient(180deg, rgba(255, 196, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 90%);
}

.producer-sarz:hover::before {
    background: linear-gradient(180deg, rgba(255, 196, 0, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.producer-tempoe::before {
    background: linear-gradient(180deg, rgba(162, 0, 255, 0.1) 0%, rgba(0, 0, 0, 0.85) 90%);
}

.producer-tempoe:hover::before {
    background: linear-gradient(180deg, rgba(162, 0, 255, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.producer-telz::before {
    background: linear-gradient(180deg, rgba(0, 255, 102, 0.1) 0%, rgba(0, 0, 0, 0.85) 90%);
}

.producer-telz:hover::before {
    background: linear-gradient(180deg, rgba(0, 255, 102, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.producer-prime::before {
    background: linear-gradient(180deg, rgba(255, 77, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 90%);
}

.producer-prime:hover::before {
    background: linear-gradient(180deg, rgba(255, 77, 0, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.producer-card:hover img {
    transform: scale(1.05);
}

.producer-info {
    position: relative;
    z-index: 5;
}

.producer-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    /* Contrast on gradient base */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Upcoming Events / Contact Section — normal flow, part of the light-section-wrapper stack */
.events-section {
    background-color: var(--bg-light);
}

.contact-main-block {
    border: 1px solid var(--border-light);
    padding: 60px;
    background-color: rgba(0, 0, 0, 0.01);
}

.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 24px;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-badge {
    padding: 12px 24px;
    border: 1px solid #000000;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.contact-badge:hover {
    background-color: #000000;
    color: #ffffff;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    padding: 24px 0;
    transition: var(--transition-smooth);
}

.contact-row:hover {
    background-color: rgba(0, 0, 0, 0.02);
    padding-left: 12px;
    padding-right: 12px;
}

.contact-label {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
    width: 150px;
    flex-shrink: 0;
}

.contact-value-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-grow: 1;
}

.contact-divider {
    display: inline-block;
    width: 1px;
    height: 36px;
    background-color: var(--border-light);
}

.contact-value {
    font-size: 24px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.7);
    font-family: var(--font-heading);
}

.btn-event {
    background-color: #000000;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid #000000;
    width: 260px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: var(--transition-smooth);
}

.btn-event:hover {
    background-color: transparent;
    color: #000000;
    border-color: #000000;
}

/* Footer Section — slides over pinned events-section */
.footer {
    border-top: 1px solid var(--border-dark);
    padding: 60px 0;
    background-color: #000000;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 4px;
    background-color: #ffffff;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* Visually hide text labels but keep for accessibility */
.footer-links a span:not(.footer-icon) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer-icon {
    font-size: 20px;
    color: #000000;
}

.footer-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.footer-copyright {
    color: var(--text-secondary-dark);
    font-size: 14px;
    letter-spacing: 1px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1440px) {
    .featured-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .featured-card-left,
    .featured-card-right {
        width: 100%;
        height: auto;
    }

    .featured-card-left {
        aspect-ratio: 1;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        height: auto;
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: 54px;
    }

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

    .project-card {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        transform: none !important;
        opacity: 1 !important;
        margin-bottom: 24px;
    }

    .project-inner {
        flex-direction: column;
    }

    .project-content-left,
    .project-visual-right {
        width: 100%;
    }

    .project-visual-right {
        height: 350px;
    }

    .projects-stack-container {
        height: auto;
        flex-direction: column;
    }

    .contact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .contact-divider {
        display: none;
    }

    .contact-value-wrapper {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .section-title-fade {
        font-size: 28px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-value {
        font-size: 18px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Reveal on Scroll Utilities */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Custom directional reveal options */
.reveal-left {
    transform: translateX(-30px);
}
.reveal-right {
    transform: translateX(30px);
}
.reveal-scale {
    transform: scale(0.95);
}

.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
    transform: translate(0) scale(1);
}

/* Page Load Entry Animations (Hero elements) */
@keyframes heroFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navSlideDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

.hero-animate-title {
    animation: heroFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-animate-subtitle {
    opacity: 0;
    animation: heroFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.hero-animate-cta {
    opacity: 0;
    animation: heroFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.hero-animate-tracks {
    opacity: 0;
    animation: heroFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}

.nav-animate {
    animation: navSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Interactive Hover Enhancements for Cards and Lists */
.card-list-item {
    transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.card-list-item:hover {
    background-color: rgba(255, 255, 255, 0.03) !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.card-list-item .item-image-wrapper img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.card-list-item:hover .item-image-wrapper img {
    transform: scale(1.08) !important;
}

.contact-row {
    transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.contact-row:hover {
    background-color: rgba(0, 0, 0, 0.02) !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.contact-row:hover .btn-event {
    transform: scale(1.03) !important;
}

/* Artist Directory Page Styles */
.artists-page {
    background-color: var(--bg-dark);
}

.artists-hero {
    position: relative;
    height: 760px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 120px 40px;
    text-align: center;
}

.artists-hero .hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.artists-hero .hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%; /* Show face instead of middle of image */
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.artists-hero .hero-bg-img.active {
    opacity: 1;
    z-index: 2;
}

.artists-hero .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 3;
}

.artists-hero .hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 800px;
    padding: 0;
}

.artists-hero .hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 34px; /* Reduced from 40px */
    line-height: 1.2;
    color: var(--text-primary-dark);
    margin-bottom: 0;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.artists-hero .hero-content {
    gap: 16px;
}

@media (max-width: 768px) {
    .artists-hero {
        height: 600px;
        padding: 80px 20px;
    }
    .artists-hero .hero-title {
        font-size: 24px; /* Reduced from 28px */
    }
}

.artists-hero .scroll-down-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 auto;
    animation: arrowBounce 2s infinite ease-in-out;
}

.artists-hero .scroll-down-arrow img {
    width: 100%;
    height: 100%;
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Artists Grid */
.artists-grid-section {
    background-color: #000000;
    padding-bottom: 80px;
    padding-top: 0;
    position: relative;
    z-index: 10;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px 24px;
    width: 100%;
}

@media (max-width: 1024px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 600px) {
    .artists-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Artist Card */
.artist-card {
    position: relative;
    aspect-ratio: 360 / 400;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    background-color: #111111;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none !important;
}

.artist-card * {
    text-decoration: none !important;
}

.artist-card .card-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.artist-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 2;
    transition: background 0.5s ease;
}

.artist-card:hover .card-img {
    transform: scale(1.06);
}

.artist-card:hover .card-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
}

.artist-card-content {
    position: relative;
    z-index: 3;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none; /* Let parent anchor click bubble */
}

.artist-card-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.artist-card-links {
    display: flex;
    gap: 16px;
    align-items: center;
    pointer-events: auto; /* Re-enable pointer events for specific links */
}

.artist-card-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.artist-card-links a:hover {
    color: var(--text-primary-dark);
    transform: translateY(-2px);
}

/* ==========================================
   Project Directory Page Styles
   ========================================== */
.projects-page {
    background-color: var(--bg-dark);
}

.projects-hero {
    position: relative;
    height: 760px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 120px 40px;
    text-align: center;
    overflow: hidden;
}

.projects-hero-carousel-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.projects-hero-carousel {
    display: flex;
    height: 100%;
    width: max-content;
    gap: 16px;
    position: absolute;
    left: 0;
    top: 0;
}

.projects-hero-carousel img {
    width: 684px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.projects-hero .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 2;
}

.projects-hero .hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 800px;
    padding: 0;
}

.projects-hero .hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: var(--text-primary-dark);
    margin-bottom: 0;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.projects-hero .hero-content {
    gap: 16px;
}

@media (max-width: 768px) {
    .projects-hero {
        height: 600px;
        padding: 80px 20px;
    }
    .projects-hero .hero-title {
        font-size: 28px;
    }
}

.projects-hero .scroll-down-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 auto;
    animation: arrowBounce 2s infinite ease-in-out;
}

.projects-hero .scroll-down-arrow img {
    width: 100%;
    height: 100%;
}

.projects-grid-section {
    background-color: #000000;
    padding-bottom: 80px;
    padding-top: 0;
    position: relative;
    z-index: 10;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px 24px;
    width: 100%;
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Project Card Layout */
.project-card {
    position: relative;
    aspect-ratio: 360 / 400;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    background-color: #111111;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.project-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 130px);
    overflow: hidden;
    z-index: 1;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-img {
    transform: scale(1.04);
}

.project-card-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 130px;
    background-color: #ffffff;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    box-sizing: border-box;
}

.project-meta {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: uppercase;
}

.project-title-row {
    margin: 4px 0;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
}

.project-bullet {
    margin: 0 6px;
    color: rgba(0, 0, 0, 0.4);
}

.project-artist {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.7);
}

.project-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-links {
    display: flex;
    gap: 16px;
}

.project-links a {
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    transition: var(--transition-smooth);
}

.project-links a:hover {
    color: #000000;
    transform: translateY(-2px);
}

.project-arrow-link {
    color: #000000;
    font-size: 18px;
    transition: var(--transition-premium);
    display: inline-flex;
}

.project-card:hover .project-arrow-link {
    transform: translateX(6px);
}


/* ==========================================
   Single Artist Profile Page Styles
   ========================================== */
.artist-single-page {
    background-color: var(--bg-dark);
}

.artist-single-hero {
    position: relative;
    height: 800px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 120px;
    box-sizing: border-box;
}

.artist-single-hero .hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.artist-single-hero .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%; /* Show face instead of middle of image */
}

.artist-single-hero .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 2;
}

.artist-single-hero .hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.artist-single-hero .hero-content {
    display: flex;
    flex-direction: column; /* Stacked layout vertically */
    justify-content: flex-end;
    align-items: stretch; /* Stretch to allow elements to align themselves to left/right */
    width: 100%;
    gap: 32px; /* Space between name and details */
}

@media (max-width: 900px) {
    .artist-single-hero .hero-content {
        align-items: stretch;
        gap: 24px;
    }
}

.artist-name-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 80px; /* Reduced from 100px */
    line-height: 0.9;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -2px;
    align-self: flex-start; /* Force left alignment */
}

@media (max-width: 1200px) {
    .artist-name-title {
        font-size: 64px; /* Reduced from 80px */
    }
}

@media (max-width: 600px) {
    .artist-name-title {
        font-size: 44px; /* Reduced from 54px */
    }
}

.artist-meta-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
    align-self: flex-end; /* Force right alignment */
}

@media (max-width: 900px) {
    .artist-meta-box {
        width: 100%;
    }
}

.artist-meta-details {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 20px; /* Reduced from 24px */
    color: #ffffff;
    text-transform: uppercase;
    text-align: right;
    line-height: 1.4;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .artist-meta-details {
        text-align: right; /* Keep right aligned on mobile */
        font-size: 16px; /* Reduced from 18px */
    }
}

.artist-meta-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.artist-meta-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none; /* Remove underline from Spotify, Youtube, Instagram, Apple logos */
}

.artist-meta-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Biography Section */
.artist-bio-section {
    background-color: #000000;
    padding: 130px 0;
    border-bottom: 1px solid var(--border-dark);
}

.bio-columns-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    width: 100%;
}

@media (max-width: 900px) {
    .bio-columns-wrapper {
        flex-direction: column;
        gap: 40px;
    }
}

.bio-slideshow-col {
    width: 566px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

@media (max-width: 900px) {
    .bio-slideshow-col {
        width: 100%;
    }
}

.slideshow-container {
    width: 100%;
    aspect-ratio: 566 / 646;
    overflow: hidden;
    position: relative;
    background-color: #111111;
}

.slideshow-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.slideshow-container img.active {
    opacity: 1;
    z-index: 2;
}

.slideshow-dots {
    display: flex;
    gap: 16px;
    align-items: center;
}

.slideshow-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #818181;
    cursor: pointer;
    transition: var(--transition-premium);
}

.slideshow-dot.active {
    background-color: #ffffff;
    width: 48px;
    border-radius: 40px;
}

.bio-text-col {
    flex-grow: 1;
}

.bio-text-paragraph {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
    text-align: justify;
}

@media (max-width: 600px) {
    .bio-text-paragraph {
        font-size: 16px;
    }
}

.bio-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.btn-book {
    min-width: 280px;
    max-width: 100%;
    width: max-content;
    padding: 0 40px;
    white-space: nowrap !important;
    height: 48px;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.btn-book span {
    white-space: nowrap !important;
    display: inline-block;
    flex-shrink: 0;
}

.btn-book:hover {
    background-color: transparent;
    color: #ffffff;
}

/* Media Lists on Single Artist Profile */
.artist-media-section {
    background-color: #000000;
    padding: 80px 0;
    border-bottom: 1px solid var(--border-dark);
}

.artist-media-section:last-of-type {
    border-bottom: none;
}

.artist-section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 36px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.artist-media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

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

@media (max-width: 1024px) {
    .artist-media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .artist-media-grid.videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .artist-media-grid {
        grid-template-columns: 1fr;
    }
    .artist-media-grid.videos-grid {
        grid-template-columns: 1fr;
    }
}

/* Media Item Card Wrapper */
.media-item-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.media-card {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
    background-color: #111111;
    cursor: pointer;
}

.media-card .media-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.media-card .media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); /* Clean transparent overlay */
    z-index: 2;
    transition: background 0.3s ease;
}

.media-card:hover .media-overlay {
    background: rgba(0, 0, 0, 0.15); /* Slight dark overlay on hover */
}

.media-card:hover .media-img {
    transform: scale(1.04);
}

/* Info Below Card */
.media-info-below {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.media-title-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.media-streaming-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.stream-on-text {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.media-card-links {
    display: flex;
    gap: 14px;
    align-items: center;
}

.media-card-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.media-card-links a:hover {
    color: #ffffff;
    transform: scale(1.15);
}

.media-card-links a svg:hover {
    transform: scale(1.15);
}

/* Video Module Overlay Indicator */
.media-card.video-card::before {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    padding-left: 4px;
    z-index: 3;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.media-card.video-card:hover::before {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    background-color: #ffffff;
}

/* White Popular Release Section */
#artistPopularSection,
#producerPopularSection {
    background-color: #ffffff;
    color: #000000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#artistPopularSection .artist-section-title,
#producerPopularSection .artist-section-title {
    color: #000000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 16px;
}

#artistPopularSection .media-title-text,
#producerPopularSection .media-title-text {
    color: #000000;
}

#artistPopularSection .stream-on-text,
#producerPopularSection .stream-on-text {
    color: rgba(0, 0, 0, 0.6);
}

#artistPopularSection .media-card-links a,
#producerPopularSection .media-card-links a {
    color: rgba(0, 0, 0, 0.6);
}

#artistPopularSection .media-card-links a:hover,
#producerPopularSection .media-card-links a:hover {
    color: #000000;
}

/* ==========================================
   Producers Directory Page Styles
   ========================================== */
.producers-page {
    background-color: var(--bg-dark);
}

.producers-hero {
    position: relative;
    height: 760px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 120px 40px;
    text-align: center;
    overflow: hidden;
}

.producers-hero .hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.producers-hero .hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%; /* Focus on face / top part */
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.producers-hero .hero-bg-img.active {
    opacity: 1;
    z-index: 2;
}

.producers-hero .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 3;
}

.producers-hero .hero-container {
    position: relative;
    z-index: 3;
}

.producers-hero .hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 34px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.producers-hero .hero-content {
    gap: 16px;
}

@media (max-width: 768px) {
    .producers-hero {
        height: 600px;
        padding: 80px 20px;
    }
    .producers-hero .hero-title {
        font-size: 40px;
    }
    .producers-hero .hero-subtitle {
        font-size: 16px;
    }
}

.producers-hero .scroll-down-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 auto;
    animation: arrowBounce 2s infinite ease-in-out;
}

.producers-hero .scroll-down-arrow img {
    width: 100%;
    height: 100%;
}

.producers-grid-section {
    background-color: #000000;
    padding: 80px 0;
}

.producers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

@media (max-width: 1024px) {
    .producers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .producers-grid {
        grid-template-columns: 1fr;
    }
}

/* Producer Card */
.producer-card {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
    background-color: #111111;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.producer-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.producer-card:hover img {
    transform: scale(1.05);
}

.producer-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
    transition: background 0.3s ease;
}

.producer-card-content {
    position: relative;
    z-index: 3;
    padding: 24px;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.producer-card-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
}

.producer-card-signature {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.producer-card-specialties {
    font-family: var(--font-body);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* Play Preview Floating Button Overlay */
.producer-play-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto; /* Let click capture on play button */
    border: none;
}

.producer-card:hover .producer-play-btn {
    opacity: 1;
    transform: translateY(0);
}

.producer-play-btn:hover {
    background-color: #ffffff;
    transform: scale(1.08);
}

.producer-play-btn .pause-icon {
    display: none;
}

.producer-play-btn.playing {
    opacity: 1;
    transform: translateY(0);
    background-color: #ffffff;
}

.producer-play-btn.playing .play-icon {
    display: none;
}

.producer-play-btn.playing .pause-icon {
    display: block;
}

/* Equalizer Bars Animation */
.equalizer-bars {
    display: none;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
    width: 24px;
}

.producer-card.active-playing .equalizer-bars {
    display: flex;
}

.equalizer-bar {
    width: 3px;
    height: 100%;
    background-color: var(--text-primary-dark);
    animation: eqBounce 1s infinite ease-in-out alternate;
}

.equalizer-bar:nth-child(1) { animation-delay: 0.1s; }
.equalizer-bar:nth-child(2) { animation-delay: 0.3s; }
.equalizer-bar:nth-child(3) { animation-delay: 0.5s; }
.equalizer-bar:nth-child(4) { animation-delay: 0.2s; }

@keyframes eqBounce {
    0% { height: 15%; }
    100% { height: 100%; }
}


/* ==========================================
   Single Producer Page Styles
   ========================================== */
.producer-single-page {
    background-color: var(--bg-dark);
}

.producer-single-hero {
    position: relative;
    height: 800px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 120px;
    box-sizing: border-box;
}

.producer-single-hero .hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.producer-single-hero .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.producer-single-hero .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 2;
}

.producer-single-hero .hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.producer-single-hero .hero-content {
    display: flex;
    flex-direction: column; /* Stacked layout vertically */
    justify-content: flex-end;
    align-items: stretch;
    width: 100%;
    gap: 32px;
}

@media (max-width: 900px) {
    .producer-single-hero .hero-content {
        align-items: stretch;
        gap: 24px;
    }
}

.producer-name-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 100px;
    line-height: 0.9;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -2px;
    align-self: flex-start; /* Force left alignment */
}

@media (max-width: 1200px) {
    .producer-name-title {
        font-size: 80px;
    }
}

@media (max-width: 600px) {
    .producer-name-title {
        font-size: 54px;
    }
}

.producer-meta-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
    align-self: flex-end; /* Force right alignment */
}

@media (max-width: 900px) {
    .producer-meta-box {
        width: 100%;
    }
}

.producer-meta-details {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    text-transform: uppercase;
    text-align: right;
    line-height: 1.5;
    letter-spacing: 1px;
}

.producer-tagline {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

@media (max-width: 900px) {
    .producer-meta-details {
        text-align: right; /* Keep right aligned on mobile */
        font-size: 16px;
    }
}

.producer-meta-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.producer-meta-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none; /* Remove underline */
}

.producer-meta-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.producer-section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 36px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 16px;
}

/* Studio specs Gear section */
.producer-gear-section {
    background-color: #000000;
    padding: 80px 0;
    border-bottom: 1px solid var(--border-dark);
}

.gear-spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 900px) {
    .gear-spec-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.gear-category-card {
    background-color: #111111;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gear-category-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.gear-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gear-item {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 12px;
}

.gear-item i {
    color: var(--text-primary-dark);
    font-size: 14px;
}

/* Playlist / Audio Store Styles */
.producer-playlist-section {
    background-color: #000000;
    padding: 100px 0;
    border-bottom: 1px solid var(--border-dark);
}

.master-player-container {
    background-color: #111111;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
    .master-player-container {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 20px;
    }
}

.master-player-info {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 300px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .master-player-info {
        width: 100%;
    }
}

.player-cover {
    width: 60px;
    height: 60px;
    object-fit: cover;
    background-color: #222222;
}

.player-text {
    overflow: hidden;
}

.player-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-artist {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.master-player-controls {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 900px) {
    .master-player-controls {
        justify-content: center;
    }
}

.player-control-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-control-btn:hover {
    color: #ffffff;
}

.play-pause-main-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #000000 !important;
    font-size: 16px;
}

.play-pause-main-btn:hover {
    transform: scale(1.05);
}

.player-progress-bar-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-grow: 1;
}

.player-time {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    width: 32px;
    text-align: center;
}

.player-progress-track {
    flex-grow: 1;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
}

.player-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--text-primary-dark);
}

/* Playlist tracks listing */
.audio-playlist {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.playlist-track {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.playlist-track:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.playlist-track-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
}

.track-play-btn {
    background: none;
    border: none;
    color: var(--text-primary-dark);
    font-size: 14px;
    cursor: pointer;
}

.playlist-track.playing .track-play-btn i::before {
    content: "\f04c"; /* Pause icon font-awesome */
}

.track-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.track-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
}

.track-artist {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.playlist-track-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.track-duration {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.track-socials {
    display: flex;
    gap: 16px;
    pointer-events: auto; /* Allow social clicks on playlist */
}

.track-socials a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 15px;
    transition: var(--transition-smooth);
}

.track-socials a:hover {
    color: #ffffff;
}

.playlist-track.playing {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.playlist-track.playing .track-title {
    color: var(--text-primary-dark);
}


/* Licensing inquiry form styles */
.producer-licensing-section {
    background-color: #000000;
    padding: 100px 0;
}

.licensing-layout-wrapper {
    display: flex;
    gap: 80px;
}

@media (max-width: 1024px) {
    .licensing-layout-wrapper {
        flex-direction: column;
        gap: 60px;
    }
}

.licensing-info-col {
    flex: 1;
}

.licensing-intro {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.licensing-tiers-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tier-card {
    background-color: #111111;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tier-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
}

.tier-card .price {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary-dark);
    margin: 8px 0;
}

.tier-card .desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.licensing-form-col {
    flex: 1;
}

.licensing-form {
    background-color: #111111;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 600px) {
    .licensing-form {
        padding: 24px;
    }
}

.licensing-form .form-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.licensing-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 600px) {
    .licensing-form .form-grid {
        grid-template-columns: 1fr;
    }
}

.licensing-form label {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.licensing-form input,
.licensing-form select,
.licensing-form textarea {
    width: 100%;
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    padding: 12px 16px;
    box-sizing: border-box;
    transition: var(--transition-smooth);
}

.licensing-form input:focus,
.licensing-form select:focus,
.licensing-form textarea:focus {
    outline: none;
    border-color: #ffffff;
    background-color: #222222;
}

.licensing-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.licensing-form .full-width-field {
    grid-column: span 2;
}

@media (max-width: 600px) {
    .licensing-form .full-width-field {
        grid-column: span 1;
    }
}

.licensing-form .form-submit-row {
    margin-top: 32px;
    display: flex;
    justify-content: flex-end;
}

.btn-submit-inquiry {
    height: 48px;
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.btn-submit-inquiry:hover {
    background-color: transparent;
    color: #ffffff;
}

/* ==========================================================================
   COMPREHENSIVE MOBILE & TABLET OPTIMIZATIONS (1024px, 768px, 480px, 360px)
   ========================================================================== */

/* Global Anti-Overflow & Smooth Touch Scrolling.
   NOTE: use overflow-x: clip, NOT hidden — `overflow-x: hidden` on body creates
   a scroll container and silently disables position: sticky everywhere
   (it broke the services folder-stack pinning). `clip` prevents horizontal
   overflow without creating a scroll container. */
html, body {
    overflow-x: clip !important;
    width: 100% !important;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

img, video, iframe, canvas, svg {
    max-width: 100%;
    height: auto;
}

/* Tablet & Smaller Desktop Adjustments (1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px !important;
    }

    .section {
        padding: 80px 0 !important;
    }

    .producers-grid,
    .artists-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .shop-grid,
    .playlists-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }
}

/* Mobile Devices (768px and under) */
@media (max-width: 768px) {
    .container {
        padding: 0 16px !important;
    }

    .section {
        padding: 80px 0 !important;
    }

    /* Sleek Mobile Buttons */
    .btn,
    .btn-arrow,
    .btn-arrow-black,
    .btn-book,
    .btn-primary,
    .btn-secondary,
    .btn-event,
    .btn-submit-inquiry {
        height: 44px !important;
        font-size: 12px !important;
        letter-spacing: 1px !important;
        padding: 0 20px !important;
        min-width: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .btn span,
    .btn-arrow span,
    .btn-arrow-black span,
    .btn-book span {
        font-size: 12px !important;
        letter-spacing: 1px !important;
    }

    /* Section Headers & Compact Spacing */
    .section-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 14px !important;
        margin-bottom: 24px !important;
        padding-bottom: 14px !important;
    }

    .section-title-group {
        max-width: 100% !important;
        width: 100% !important;
    }

    .section-cta-group {
        width: 100% !important;
        margin-top: 4px !important;
    }

    .section-title-fade {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }

    .section-tag, 
    .section-tag-underlined,
    .slider-title,
    .proj-featured-tag,
    .producer-section-title,
    .artist-section-title {
        font-size: 12px !important;
        margin-bottom: 8px !important;
        letter-spacing: 1.5px !important;
    }

    /* Header Nav & Compact Mobile Drawer */
    .nav-container {
        padding: 0 16px !important;
        height: 56px !important;
    }

    .navbar {
        height: 56px !important;
    }

    .mobile-nav {
        top: 56px !important;
        height: calc(100vh - 56px) !important;
        gap: 18px !important;
        padding: 24px 16px !important;
    }

    .mobile-link {
        font-size: 16px !important;
        letter-spacing: 1.5px !important;
    }

    .logo-image {
        height: 22px !important;
    }

    /* Sleek Mobile Hero Section */
    .hero-section {
        height: auto !important;
        min-height: auto !important;
        padding-top: 136px !important;
        padding-bottom: 40px !important;
    }

    .hero-title,
    .hero-title-fade,
    .hero-title-solid {
        font-size: 40px !important;
        line-height: 1.1 !important;
        letter-spacing: -0.5px !important;
        word-break: break-word !important;
    }

    .hero-subtitle {
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin-top: 12px !important;
    }

    .hero-cta-group {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
        margin-top: 20px !important;
    }

    /* Popular Release Section Heading */
    .slider-title {
        font-size: 12px !important;
        letter-spacing: 1.5px !important;
    }

    /* Playlist Section Buttons Fill Container & Center Content */
    .section-cta-buttons {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
        margin-top: 12px !important;
    }

    .btn-playlist-solid,
    .btn-playlist-outline,
    .section-cta-buttons .btn {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
    }

    /* Playlist Section Track Items & Scroll (Mobile) */
    .card-items-list {
        max-height: 320px !important;
        overflow-y: auto !important;
        padding-right: 4px !important;
        scrollbar-width: thin !important;
    }

    .card-list-item {
        height: auto !important;
        padding: 16px 0 !important;
    }

    .item-content-wrapper {
        gap: 12px !important;
    }

    .item-image-wrapper {
        width: 48px !important;
        height: 48px !important;
        flex-shrink: 0 !important;
    }

    .item-details h4 {
        font-size: 15px !important;
    }

    .item-details h4 span {
        font-size: 12px !important;
    }

    .item-meta {
        font-size: 12px !important;
    }

    .playlist-cta-end {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
        margin-top: 16px !important;
    }

    /* Latest Projects Section Header & Nav (Mobile) */
    .projects-section-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 14px !important;
        margin-bottom: 20px !important;
        width: 100% !important;
    }

    .projects-section-header .section-title-group {
        width: 100% !important;
    }

    .proj-list {
        display: none !important;
    }

    .proj-carousel {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        height: auto !important;
    }

    .proj-featured {
        grid-column: 1 !important;
        grid-row: 1 !important;
        min-height: 360px !important;
    }

    .proj-nav {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;
        align-self: flex-end !important;
        margin-left: auto !important;
        gap: 8px !important;
        border: none !important;
        padding: 0 !important;
    }

    .proj-nav-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 11px !important;
    }

    .projects-cta-bottom {
        display: flex !important;
        width: 100% !important;
        margin-top: 24px !important;
    }

    /* Roster Heros (Producers / Artists / Projects Pages) */
    .producers-hero,
    .artists-hero,
    .projects-hero {
        height: auto !important;
        min-height: 320px !important;
        padding: 136px 16px 40px 16px !important;
    }

    .producers-hero .hero-title,
    .artists-hero .hero-title,
    .projects-hero .hero-title {
        font-size: 40px !important;
        line-height: 1.1 !important;
    }

    .producers-hero .hero-subtitle,
    .artists-hero .hero-subtitle,
    .projects-hero .hero-subtitle {
        font-size: 13px !important;
        margin-top: 10px !important;
    }

    /* Single Profile Heros (Producer / Artist Single) */
    .artist-single-hero,
    .producer-single-hero {
        height: auto !important;
        min-height: 360px !important;
        padding-top: 136px !important;
        padding-bottom: 32px !important;
    }

    .artist-name-title,
    .producer-name-title {
        font-size: clamp(20px, 6vw, 28px) !important;
        line-height: 1.1 !important;
        letter-spacing: -0.5px !important;
        word-break: break-word !important;
    }

    .artist-meta-box,
    .producer-meta-box {
        align-items: flex-start !important;
        align-self: flex-start !important;
        width: 100% !important;
        gap: 12px !important;
    }

    .artist-meta-details,
    .producer-meta-details {
        text-align: left !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    .artist-meta-links,
    .producer-meta-links {
        justify-content: flex-start !important;
        gap: 16px !important;
    }

    .producer-section-title,
    .artist-section-title {
        font-size: 18px !important;
        margin-bottom: 24px !important;
        padding-bottom: 12px !important;
    }

    /* Single Bio Layout */
    .bio-columns-wrapper {
        flex-direction: column !important;
        gap: 24px !important;
    }

    .bio-slideshow-col {
        width: 100% !important;
    }

    .bio-text-paragraph {
        font-size: 14px !important;
        line-height: 1.5 !important;
        text-align: left !important;
    }

    .bio-cta-row {
        margin-top: 24px !important;
        width: 100% !important;
    }

    /* Single Profile Media Grids */
    .artist-media-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    /* Project Card Mobile Overlay & Sizing */
    .proj-featured-footer {
        padding: 16px !important;
    }

    .proj-featured-title {
        font-size: 20px !important;
    }

    .proj-featured-artists {
        font-size: 12px !important;
    }

    /* Artist Section Mobile (2 Columns Grid View) */
    .artists-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        overflow-x: visible !important;
        scroll-snap-type: none !important;
        padding-bottom: 0 !important;
        width: 100% !important;
    }

    .artists-grid .artist-card,
    .artists-grid .artist-card-v2 {
        flex: none !important;
        min-width: 0 !important;
        max-width: 100% !important;
        scroll-snap-align: none !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        aspect-ratio: 360 / 400 !important;
    }

    .artists-grid .artist-card-content,
    .artists-grid .artist-card-overlay {
        padding: 12px 14px !important;
    }

    .artists-grid .artist-card-name {
        font-size: 13px !important;
    }

    .artists-grid .artist-card-links {
        gap: 12px !important;
    }

    .artists-grid .artist-card-links a {
        font-size: 14px !important;
    }

    .artist-name {
        font-size: 20px !important;
    }

    /* Producer Section Mobile (1.5 Cards View) */
    /* Producer Section Mobile (2 Columns Grid View) */
    .producers-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        overflow-x: visible !important;
        scroll-snap-type: none !important;
        padding-bottom: 0 !important;
        width: 100% !important;
    }

    .producers-grid .producer-card {
        flex: none !important;
        min-width: 0 !important;
        max-width: 100% !important;
        scroll-snap-align: none !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        aspect-ratio: 360 / 400 !important;
    }

    .producers-grid .producer-card-content,
    .producers-grid .card-overlay {
        padding: 12px 14px !important;
    }

    .producers-grid .producer-card-name {
        font-size: 13px !important;
    }

    .producer-card-signature {
        font-size: 10px !important;
    }

    .producer-card-specialties {
        font-size: 9px !important;
        margin-top: 1px !important;
    }

    .producer-name {
        font-size: 20px !important;
    }

    .shop-grid,
    .playlists-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Event List / Contact Rows (Mobile Sizing & Vertical Alignment) */
    .contact-main-block {
        padding: 16px !important;
    }

    .contact-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 14px !important;
        margin-bottom: 20px !important;
        padding-bottom: 16px !important;
    }

    .contact-title-group {
        width: 100% !important;
    }

    .contact-title {
        font-size: 20px !important;
    }

    .contact-badge {
        width: 100% !important;
        text-align: center !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .contact-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        padding: 16px 12px !important;
    }

    .contact-value {
        font-size: 14px !important;
    }

    .contact-form-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* Input Fields Optimization */
    .form-group input,
    .form-group select,
    .form-group textarea,
    .licensing-form input,
    .licensing-form select,
    .licensing-form textarea {
        font-size: 16px !important;
        padding: 12px 14px !important;
    }

    /* Footer Responsive */
    .footer-grid,
    .site-footer .container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 20px !important;
    }

    .footer-col {
        align-items: center !important;
        text-align: center !important;
    }

    .footer-links {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 12px !important;
        font-size: 12px !important;
    }

    /* Projects, Artists & Producers Page Mobile Responsiveness */
    .projects-hero,
    .artists-hero,
    .producers-hero {
        height: 480px !important;
        min-height: 480px !important;
        padding-top: 100px !important;
        padding-bottom: 10px !important;
    }

    .projects-hero .hero-content,
    .artists-hero .hero-content,
    .producers-hero .hero-content {
        gap: 16px !important;
    }

    .projects-hero .hero-title,
    .artists-hero .hero-title,
    .producers-hero .hero-title {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }

    .projects-hero-carousel img {
        width: calc(100vw - 48px) !important;
        max-width: 450px !important;
    }

    .desktop-only {
        display: none !important;
    }

    .project-card-footer {
        padding: 16px 18px !important;
        height: 120px !important;
    }

    .project-img-wrapper {
        height: calc(100% - 120px) !important;
    }

    .project-title {
        white-space: normal !important;
        flex-wrap: wrap;
        font-size: 14px !important;
        line-height: 1.3 !important;
    }

    .project-bullet {
        display: none !important;
    }

    .project-artist {
        display: block !important;
        width: 100%;
        margin-top: 2px;
        font-size: 11px !important;
        color: rgba(0, 0, 0, 0.6) !important;
    }
}

/* Extra Small Phones (480px and under) */
@media (max-width: 480px) {
    .container {
        padding: 0 14px !important;
    }

    .section {
        padding: 80px 0 !important;
    }

    .btn,
    .btn-arrow,
    .btn-arrow-black,
    .btn-book,
    .btn-primary,
    .btn-secondary,
    .btn-event,
    .btn-submit-inquiry {
        height: 40px !important;
        font-size: 11px !important;
        padding: 0 16px !important;
    }

    .btn span,
    .btn-arrow span,
    .btn-arrow-black span,
    .btn-book span {
        font-size: 11px !important;
    }

    .hero-title,
    .hero-title-fade,
    .hero-title-solid {
        font-size: 40px !important;
    }

    .section-title-fade,
    .contact-title {
        font-size: 20px !important;
        line-height: 1.25 !important;
    }

    .artist-media-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    /* Adjust project card for 2-column small mobile layout */
    .projects-grid .project-card {
        aspect-ratio: 360 / 500 !important;
    }

    .projects-grid .project-card-footer {
        padding: 12px 14px !important;
        height: 105px !important;
    }

    .projects-grid .project-img-wrapper {
        height: calc(100% - 105px) !important;
    }

    .projects-grid .project-title {
        font-size: 11px !important;
        line-height: 1.25 !important;
    }

    .projects-grid .project-artist {
        font-size: 9px !important;
        margin-top: 1px !important;
    }

    .projects-grid .project-links {
        gap: 10px !important;
    }

    .projects-grid .project-links a {
        font-size: 13px !important;
    }

    .projects-grid .project-arrow-link {
        font-size: 14px !important;
    }

    .licensing-form {
        padding: 16px 12px !important;
    }
}

/* ==========================================================================
   Services Page Styles
   ========================================================================== */

.services-hero {
    position: relative;
    height: 760px;
    padding-top: 70px;
    padding-bottom: 64px;
    display: flex;
    align-items: flex-end;
    background-color: #000000;
}

.services-hero .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.services-hero .hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.services-hero .hero-content {
    gap: 16px;
}

.services-hero .hero-tag {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary-dark);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0;
    display: inline-block;
}

.services-hero .hero-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -1px;
}

.services-hero .hero-title-fade {
    color: rgba(255, 255, 255, 0.6);
}

.services-hero .hero-title-solid {
    color: #ffffff;
}

/* Services Grid & Stack — Folder Stack Implementation */
.folder-stack {
    --card-max-w: 1400px;
    --tab-h: 96px;
    --tab-w: 260px;
    --tab-step: 250px;
    --tab-pad: 44px;
    --radius: 12px;
    
    position: relative;
    width: 100%;
    background-color: #000000;
    padding-top: var(--tab-h);
    margin: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.folder-card {
    position: sticky;
    top: var(--tab-h);
    z-index: calc(var(--i) + 1);
    width: 100%;
    max-width: var(--card-max-w);
    margin: 0 auto;
    margin-bottom: 0;
    margin-top: 0;
    box-sizing: border-box;
}

.folder-body {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Tab Folder Style — width fits the label (never wraps, never clips).
   Horizontal position is set by layoutFolderTabs() in services.js as an
   inline left, cumulative on each previous tab's real width; the calc()
   below is only the pre-JS fallback. */
.folder-tab {
    position: absolute;
    bottom: 100%;
    height: var(--tab-h);
    width: max-content;
    margin-bottom: -1px;
    background: var(--c);
    display: flex;
    align-items: center;
    padding: 0 28px;
    white-space: nowrap;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1.5px;
    z-index: 10;
    left: calc(var(--tab-pad) + var(--i) * var(--tab-step));
    box-sizing: border-box;
}

.folder-tab::before,
.folder-tab::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 22px;
    height: 100%;
    background: inherit;
    z-index: -1;
}

.folder-tab::before {
    left: -12px;
    transform: skewX(-9deg);
    border-top-left-radius: var(--radius);
}

.folder-tab::after {
    right: -12px;
    transform: skewX(9deg);
    border-top-right-radius: var(--radius);
}


/* Card background colors by index and ID fallback */
.folder-card[style*="--i:0"], .folder-card[style*="--i: 0"], #distribution { --c: #000000; }
.folder-card[style*="--i:1"], .folder-card[style*="--i: 1"], #talent-management { --c: #8A4231; }
.folder-card[style*="--i:2"], .folder-card[style*="--i: 2"], #marketing { --c: #076228; }
.folder-card[style*="--i:3"], .folder-card[style*="--i: 3"], #recording-camps { --c: #A40003; }
.folder-card[style*="--i:4"], .folder-card[style*="--i: 4"], #label-services { --c: #350082; }

/* Apply color to card body */
.folder-card .service-card {
    background-color: var(--c) !important;
    border: none !important;
}

/* Special borders for Card 0 (Distribution) tab & body to align with body border */
.folder-card[style*="--i:0"] .folder-tab,
.folder-card[style*="--i: 0"] .folder-tab {
    border-top: 1px solid #ffffff;
}

.folder-card[style*="--i:0"] .folder-tab::before,
.folder-card[style*="--i: 0"] .folder-tab::before {
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
}

.folder-card[style*="--i:0"] .folder-tab::after,
.folder-card[style*="--i: 0"] .folder-tab::after {
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
}

.folder-card[style*="--i:0"] .service-card,
.folder-card[style*="--i: 0"] .service-card {
    border: 1px solid #ffffff !important;
}

/* Release spacer at the bottom of the stack to hold the last card */
.folder-stack__release {
    height: 70vh;
    width: 100%;
    pointer-events: none;
}

/* Card Body Styles */
.service-card {
    position: relative;
    width: 100%;
    min-height: 622px;
    border-radius: 0 24px 24px 24px;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 60px;
    box-sizing: border-box;
    z-index: 5;
}

.service-card-info {
    max-width: 700px;
}

.service-card-header {
    margin-bottom: 24px;
}

.service-card-header h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: -1px;
}

.card-underline {
    height: 1px;
    background-color: var(--border-dark);
    width: 243px;
    margin-top: 12px;
}

.service-card p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* Image Grid */
.service-images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.service-image-wrapper {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-premium);
}

.service-image-wrapper:hover img {
    transform: scale(1.08);
}

/* Booking CTA Section */
.booking-cta-section {
    background-color: #ffffff;
    color: #000000;
    padding: 120px 0;
}

.booking-cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #000000;
}

.cta-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}

.cta-right p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    max-width: 610px;
}

/* Highlight Active Navigation Link */
.nav-link.active::after {
    width: calc(100% - 40px) !important;
}

.nav-link.active {
    color: var(--text-primary-dark) !important;
}

.mobile-link.active {
    color: var(--text-secondary-dark) !important;
    border-bottom: 2px solid var(--text-primary-dark);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) and (min-width: 768px) {
    .folder-stack {
        --tab-w: 160px;
        --tab-step: 145px;
        --tab-pad: 20px;
        --tab-h: 60px;
    }
    .folder-tab {
        font-size: 12px;
        padding: 0 16px;
        gap: 8px;
    }
    .folder-tab::before,
    .folder-tab::after {
        width: 16px;
    }
    .folder-tab::before {
        left: -8px;
    }
    .folder-tab::after {
        right: -8px;
    }
}

/* Mobile & Tablet General Layout Details (non-stacking elements) */
@media (max-width: 1024px) {
    .service-card {
        padding: 48px 32px;
        border-radius: 0 16px 16px 16px;
        min-height: auto;
        gap: 40px;
    }

    .service-card-header h2 {
        font-size: 32px;
    }

    .service-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .booking-cta-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .cta-left h2 {
        font-size: 40px;
    }
}

/* Mobile Responsiveness (<768px) */
@media (max-width: 767px) {
    .folder-stack {
        padding-top: 0;
        display: flex;
        flex-direction: column;
        gap: 60px;
    }
    .folder-card {
        position: static !important;
        margin-bottom: 0;
    }
    .folder-tab {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        padding: 16px 24px !important;
        margin-bottom: 0 !important;
        border-radius: 12px 12px 0 0 !important;
        font-size: 16px !important;
        display: flex !important;
        align-items: center !important;
    }
    .folder-tab::before,
    .folder-tab::after {
        display: none !important;
    }
    .folder-stack__release {
        display: none !important;
    }

    .service-card {
        padding: 32px 20px;
        border-radius: 0 12px 12px 12px;
    }

    .service-card-header h2 {
        font-size: 24px;
    }

    .service-card p {
        font-size: 14px;
    }

    .service-images-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cta-left h2 {
        font-size: 32px;
    }

    .cta-right p {
        font-size: 15px;
    }
}

/* =====================================================
   About Page Styles
   Figma: 1789-website-redesign / "About page" (622:373)
   ===================================================== */
.about-page {
    overflow-x: clip;
}

/* About Hero — Figma 634:123 (1728x760, pt 200 / pb 120, bottom aligned) */
.about-hero {
    position: relative;
    height: 760px;
    padding-top: 200px;
    padding-bottom: 120px;
    display: flex;
    align-items: flex-end;
    background-color: #000000;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    background-color: #000000;
}

/* Each wrapper reproduces a Figma bounding box (634:125 / 634:126, both
   centred on the same point) and centres its leaf inside it. */
.about-hero-glow {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* glow-1 / glow-2 render the exported Figma vectors. The leaf carries the
   design's rotate/skew/scale; the img inside is inset by the blur bleed
   baked into the export, so the artwork keeps its exact geometry. The
   exported fill is #005727 at 0.5 — brightened here toward the vivid green
   the frame renders at in Figma. */
.about-hero-glow-leaf {
    display: block;
    position: relative;
    transform: rotate(41.55deg) skewX(-15.86deg) scaleY(0.96);
}

.about-hero-glow-leaf img {
    display: block;
    position: absolute;
    max-width: none;
    filter: brightness(2.4) saturate(1.3);
}

.about-hero-glow.glow-1 {
    left: -36px;
    top: -324px;
    width: 1800px;
    height: 1359px;
}

.about-hero-glow.glow-1 .about-hero-glow-leaf {
    width: 1129.934px;
    height: 1132.681px;
}

.about-hero-glow.glow-1 .about-hero-glow-leaf img {
    top: -7.06%;
    right: -7.08%;
    bottom: -7.06%;
    left: -7.08%;
}

.about-hero-glow.glow-2 {
    left: 130px;
    top: -199px;
    width: 1468px;
    height: 1109px;
}

.about-hero-glow.glow-2 .about-hero-glow-leaf {
    width: 921.456px;
    height: 923.697px;
    opacity: 0.85;
}

.about-hero-glow.glow-2 .about-hero-glow-leaf img {
    top: -8.66%;
    right: -8.68%;
    bottom: -8.66%;
    left: -8.68%;
}

/* glow-3 is a CSS core highlight, not a Figma layer — it lifts the centre
   where the two exported blobs overlap. */
.about-hero-glow.glow-3 {
    left: 46%;
    top: -6%;
    width: 900px;
    height: 900px;
}

.about-hero-glow.glow-3::before {
    content: '';
    display: block;
    width: 620px;
    height: 700px;
    border-radius: 50%;
    opacity: 0.8;
    background: radial-gradient(closest-side,
        rgba(46, 224, 126, 1) 0%,
        rgba(31, 190, 104, 0.9) 30%,
        rgba(20, 128, 70, 0.6) 55%,
        rgba(9, 62, 34, 0.28) 76%,
        rgba(0, 0, 0, 0) 100%);
    filter: blur(110px);
    transform: rotate(41.55deg) skewX(-15.86deg) scaleY(0.96);
}

/* Diagonal slats: a hard dark edge that jumps bright, then falls away
   across each band — the shredded banding of the hero artwork. */
.about-hero-slats {
    position: absolute;
    inset: -20%;
    background-image: repeating-linear-gradient(45deg,
        rgba(0, 0, 0, 0.92) 0px,
        rgba(0, 0, 0, 0.9) 2px,
        rgba(0, 0, 0, 0.04) 5px,
        rgba(0, 0, 0, 0.16) 22px,
        rgba(0, 0, 0, 0.46) 46px,
        rgba(0, 0, 0, 0.92) 66px);
}

.about-hero-vignette {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(120% 130% at 46% 34%,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.35) 58%,
            rgba(0, 0, 0, 0.88) 100%),
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0) 30%,
            rgba(0, 0, 0, 0.55) 100%);
}

.about-hero .hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.about-hero .hero-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1000px;
}

.about-hero .hero-tag {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary-dark);
    display: inline-block;
}

.about-hero .hero-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
    text-transform: capitalize;
    margin-bottom: 0;
}

.about-hero .hero-title-fade {
    color: rgba(255, 255, 255, 0.7);
}

.about-hero .hero-title-solid {
    color: #ffffff;
}

/* Shared section chrome on the About page — the Figma section headers have
   no divider rule and sit 80px above their content. */
.about-page .section-header {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 80px;
    align-items: flex-end;
    gap: 40px;
}

.about-page .section-title-group {
    max-width: 980px;
}

.about-page .section-title-fade {
    font-size: 40px;
    line-height: 1.22;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.7);
}

/* cta-arrow (Figma 623:277 / 624:277): 240px wide, solid white hairline */
.about-page .section-cta-group .btn-arrow {
    min-width: 240px;
    height: 48px;
    font-size: 16px;
    border-color: #ffffff;
}

/* About Story — Figma 623:271 */
.about-story-section {
    padding: 200px 0 0;
}

.story-content-grid {
    display: grid;
    grid-template-columns: 602fr 617fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 0;
}

/* The 1789 wordmark sits low in its column: 76px of clearance below it,
   height locked to the Figma 602.591 x 241.029 ratio. */
.story-image-wrap {
    display: flex;
    align-items: flex-end;
    padding-bottom: 76px;
}

.story-mark {
    width: 100%;
    aspect-ratio: 602.591 / 241.029;
    object-fit: contain;
    display: block;
}

.story-copy-text {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.story-para {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.story-para.story-para-lead {
    color: rgba(255, 255, 255, 0.85);
}

/* About Numbers — Figma 623:285 */
.about-stats-section {
    padding: 120px 0 0;
}

.stats-border-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 48px;
}

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

.stat-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    color: #ffffff;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(255, 255, 255, 0.6);
}

/* About Values — Figma 623:300 */
.about-values-section {
    padding: 200px 0 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
}

.value-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 274px;
    padding: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.35);
    background-color: rgba(255, 255, 255, 0.02);
}

.value-num {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1cb862;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
    color: #ffffff;
    margin: 0;
}

.value-desc {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

/* Partner logo strip — Figma 637:398 */
.about-partners {
    background-color: #000000;
    padding: 30px 0 20px;
}

/* Set by about.js when a partner logo file is not present yet */
.about-partners.assets-missing {
    display: none;
}

.about-partners-row {
    width: 100%;
    max-width: 1581px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
}

.about-partner {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-partner img {
    display: block;
    width: 240px;
    height: 85px;
    max-width: 100%;
    object-fit: contain;
}

/* About What We Do — Figma 624:271 */
.about-services-section {
    padding: 200px 0;
}

.about-services-list {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-service-row {
    display: grid;
    grid-template-columns: 60px 400px 1fr;
    gap: 40px;
    align-items: center;
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    text-decoration: none;
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-service-row:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.as-num {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1cb862;
}

.as-name {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
    color: #ffffff;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-service-row:hover .as-name {
    transform: translateX(8px);
}

.as-desc {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

/* Booking CTA — Figma 622:437 (py 150, 64px headline, 2px button rule) */
.about-page .booking-cta-section {
    padding: 150px 0;
}

.about-page .booking-cta-container {
    align-items: flex-start;
    gap: 40px;
}

.about-page .cta-left h2 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
}

.about-page .cta-right p {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
    color: #8d8d8d;
}

.about-page .cta-right .btn-arrow-black {
    min-width: 0;
    height: auto;
    padding: 20px 60px;
    border-width: 2px;
    border-color: #000000;
    font-size: 18px;
    font-weight: 700;
}

/* Responsive Breakpoints for About Page */
@media (max-width: 1600px) {
    .about-hero {
        padding-top: 160px;
    }
}

@media (max-width: 1200px) {
    .about-hero {
        height: auto;
        min-height: 600px;
        padding-top: 200px;
        padding-bottom: 100px;
    }
    .about-page .section-header {
        margin-bottom: 56px;
    }
    .about-story-section,
    .about-values-section {
        padding-top: 140px;
    }
    .about-services-section {
        padding: 140px 0;
    }
    .about-page .booking-cta-section {
        padding: 110px 0;
    }
    .about-page .cta-left h2 {
        font-size: 48px;
    }
    .stat-number {
        font-size: 52px;
    }
    .story-image-wrap {
        padding-bottom: 40px;
    }
    .about-service-row {
        grid-template-columns: 60px 300px 1fr;
        gap: 28px;
    }
    .as-name {
        font-size: 24px;
    }
}

@media (max-width: 900px) {
    .about-hero {
        min-height: 520px;
        padding-top: 170px;
        padding-bottom: 72px;
    }
    /* !important is required to beat the site-wide mobile hero rules
       (`.hero-title, .hero-title-fade, .hero-title-solid` at <=768px and
       <=480px); scoping to .about-page keeps other heroes untouched. */
    .about-page .about-hero .hero-title,
    .about-page .about-hero .hero-title-fade,
    .about-page .about-hero .hero-title-solid {
        font-size: 32px !important;
        line-height: 1.3 !important;
        letter-spacing: 0 !important;
    }
    .about-page .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        margin-bottom: 48px;
    }
    .about-page .section-title-fade {
        font-size: 32px;
    }
    .story-content-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .story-image-wrap {
        padding-bottom: 0;
        max-width: 480px;
    }
    .story-para {
        font-size: 18px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .value-card {
        min-height: 0;
        padding: 32px;
    }
    .about-partners-row {
        gap: 24px;
    }
    .about-partner img {
        width: 180px;
        height: 64px;
    }
    .about-service-row {
        grid-template-columns: 60px 1fr;
        gap: 8px 20px;
        padding: 28px 0;
    }
    .as-desc {
        grid-column: 2;
    }
    .about-service-row:hover .as-name {
        transform: none;
    }
    .about-page .booking-cta-container {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .about-hero {
        min-height: 460px;
        padding-top: 150px;
        padding-bottom: 56px;
    }
    .about-hero .hero-tag {
        font-size: 16px;
    }
    .about-page .about-hero .hero-title,
    .about-page .about-hero .hero-title-fade,
    .about-page .about-hero .hero-title-solid {
        font-size: 24px !important;
        line-height: 1.35 !important;
    }
    .about-page .section-title-fade {
        font-size: 26px;
    }
    .about-story-section,
    .about-values-section {
        padding-top: 96px;
    }
    .about-services-section {
        padding: 96px 0;
    }
    .about-stats-section {
        padding-top: 96px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .stats-border-line {
        margin-bottom: 40px;
    }
    .stat-number {
        font-size: 44px;
    }
    .about-partners-row {
        flex-direction: column;
        gap: 20px;
    }
    .about-service-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .as-desc {
        grid-column: 1;
        font-size: 15px;
    }
    .as-name {
        font-size: 22px;
    }
    .about-page .cta-left h2 {
        font-size: 34px;
    }
    .about-page .cta-right p {
        font-size: 16px;
    }
    .about-page .cta-right .btn-arrow-black {
        padding: 18px 40px;
        font-size: 16px;
    }
}

/* =====================================================
   Blog Page Styles
   ===================================================== */
.blog-page {
    background-color: #000000;
}

/* Featured Hero Section */
.blog-featured-hero {
    position: relative;
    height: 760px;
    background-color: #000000;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.featured-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.featured-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.blog-featured-hero .featured-container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-bottom: 90px;
}

.featured-content-box {
    background-color: #ffffff;
    padding: 60px 48px;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.featured-dot {
    width: 8.5px;
    height: 8.5px;
    background-color: #1cb862;
    border-radius: 50%;
    display: inline-block;
}

.featured-tag {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1cb862;
}

.featured-headline {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #2c2f1f;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.featured-excerpt {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
    margin-bottom: 32px;
}

.btn-read-article {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid #2c2f1f;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #2c2f1f;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-read-article:hover {
    background-color: #2c2f1f;
    color: #ffffff;
}

/* Scroll Divider Arrow */
.blog-scroll-divider {
    height: 80px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-scroll-divider .scroll-arrow {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.blog-scroll-divider:hover .scroll-arrow {
    transform: translateY(5px);
}

/* Blog Grid Section */
.blog-grid-section {
    background-color: #000000;
    padding: 120px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 32px;
}

/* Blog Card */
.blog-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    cursor: pointer;
}

.blog-card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-card-cat {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #1cb862;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-divider {
    width: 1px;
    height: 12px;
    background-color: #8d8d8d;
}

.blog-card-date {
    font-family: var(--font-body);
    font-size: 14px;
    color: #8d8d8d;
}

.blog-card-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
}

.blog-card-excerpt {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #bcbcbc;
    font-weight: 300;
}

.blog-card-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #1cb862;
    text-transform: uppercase;
}

.blog-arrow-right {
    width: 16px;
    height: 16px;
    transform: rotate(-90deg);
    filter: invert(53%) sepia(87%) saturate(417%) hue-rotate(94deg) brightness(97%) contrast(92%);
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-arrow-right {
    transform: rotate(-90deg) translateX(-4px);
}

/* Load More */
.blog-load-more {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 20px 60px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Blog Media Queries */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 24px;
    }
}

@media (max-width: 900px) {
    .blog-featured-hero .featured-container {
        padding-bottom: 40px;
    }
    .featured-content-box {
        margin: 0 40px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .blog-featured-hero {
        height: auto;
        min-height: 500px;
        padding-top: 120px;
        align-items: center;
    }
    .blog-featured-hero .featured-container {
        padding-bottom: 0;
        display: flex;
        justify-content: center;
    }
    .featured-content-box {
        margin: 0;
        padding: 30px 24px;
        max-width: 90%;
    }
    .featured-headline {
        font-size: 24px;
    }
    .featured-excerpt {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .blog-grid-section {
        padding: 60px 0;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .blog-card-title {
        font-size: 24px;
    }
    .blog-load-more {
        margin-top: 48px;
    }
    .btn-outline-white {
        padding: 16px 40px;
        font-size: 16px;
    }
}

/* =====================================================
   Blog Single (Article) Page Styles
   Extends the blog design language: green #1cb862 accents,
   white content box on a dark full-bleed hero.
   ===================================================== */
.blog-single-page {
    background-color: #000000;
}

/* Reading Progress Indicator */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.08);
    z-index: 1001;
    pointer-events: none;
}

.reading-progress-bar {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #1cb862;
    transform: scaleX(0);
    transform-origin: left center;
}

/* Article Hero — mirrors .blog-featured-hero */
.blog-single-hero {
    position: relative;
    height: 760px;
    background-color: #000000;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.blog-single-hero .featured-container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-bottom: 90px;
}

.article-headline-box {
    max-width: 780px;
}

.article-headline {
    font-size: clamp(28px, 4.2vw, 48px);
    margin-bottom: 24px;
}

.article-byline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
}

.article-byline-sep {
    width: 1px;
    height: 12px;
    background-color: #8d8d8d;
}

/* Article Layout */
.article-section {
    background-color: #000000;
    padding: 120px 0;
}

.article-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 80px;
    align-items: start;
}

/* Sticky Rail */
.article-rail {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.article-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1cb862;
    text-decoration: none;
    transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-back-link:hover {
    gap: 16px;
}

.article-back-arrow {
    width: 16px;
    height: 16px;
    transform: rotate(90deg);
    filter: invert(53%) sepia(87%) saturate(417%) hue-rotate(94deg) brightness(97%) contrast(92%);
}

.article-share {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-share-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.article-share-links {
    display: flex;
    gap: 12px;
}

.article-share-btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background-color: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-share-btn svg {
    width: 15px;
    height: 15px;
}

.article-share-btn:hover {
    color: #1cb862;
    border-color: #1cb862;
    transform: translateY(-2px);
}

.article-share-status {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1cb862;
    min-height: 14px;
}

/* Prose */
.article-body {
    max-width: 780px;
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.article-body > *:first-child {
    margin-top: 0;
}

.article-body p {
    margin-bottom: 28px;
}

.article-body > p:first-of-type {
    color: rgba(255, 255, 255, 0.85);
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 64px;
    margin-bottom: 20px;
}

.article-body h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-top: 44px;
    margin-bottom: 16px;
}

.article-body a {
    color: #1cb862;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.article-body a:hover {
    color: #ffffff;
}

.article-body strong {
    color: #ffffff;
    font-weight: 700;
}

.article-body ul,
.article-body ol {
    margin: 0 0 28px 24px;
}

.article-body li {
    margin-bottom: 12px;
}

.article-body li::marker {
    color: #1cb862;
}

.article-body blockquote {
    margin: 48px 0;
    padding: 8px 0 8px 32px;
    border-left: 2px solid #1cb862;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    color: #ffffff;
}

.article-body img {
    display: block;
    width: 100%;
    height: auto;
    margin: 48px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.article-body figure {
    margin: 48px 0;
}

.article-body figure img {
    margin: 0 0 12px;
}

.article-body figcaption {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
}

.article-body hr {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.18);
    margin: 56px 0;
}

/* Related Posts — reuses .blog-grid / .blog-card */
.blog-single-page .blog-grid-section {
    padding-top: 0;
}

/* Article Media Queries */
@media (max-width: 1200px) {
    .article-layout {
        gap: 56px;
    }
    .article-section {
        padding: 96px 0;
    }
}

@media (max-width: 900px) {
    .blog-single-hero .featured-container {
        padding-bottom: 40px;
    }
    .article-headline-box {
        margin: 0 40px;
        padding: 40px;
    }
    .article-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .article-rail {
        position: static;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 24px;
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }
    .article-share {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    .article-share-status {
        min-height: 0;
    }
    .article-body {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .blog-single-hero {
        height: auto;
        min-height: 560px;
        padding-top: 140px;
        align-items: center;
    }
    .blog-single-hero .featured-container {
        padding-bottom: 0;
        display: flex;
        justify-content: center;
    }
    .article-headline-box {
        margin: 0;
        padding: 32px 24px;
        max-width: 100%;
    }
    .article-section {
        padding: 64px 0;
    }
    .article-body h2 {
        font-size: 22px;
        margin-top: 48px;
    }
    .article-body blockquote {
        margin: 36px 0;
        padding-left: 20px;
        font-size: 19px;
    }
}

@media (max-width: 600px) {
    .article-body {
        font-size: 17px;
    }
    .article-rail {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   Single Music Page Styles (music-single.html)
   ========================================================================== */
.music-single-page {
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.music-single-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 24px 60px 24px;
    box-sizing: border-box;
}

.music-single-hero .hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.music-single-hero .hero-video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    overflow: hidden;
}

.music-single-hero .hero-video-wrapper iframe,
.music-single-hero .hero-video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.music-single-hero .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.music-single-hero .hero-container {
    position: relative;
    z-index: 3;
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.music-header-block {
    text-transform: uppercase;
    margin-bottom: 8px;
}

.music-single-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0 0 8px 0;
    color: #ffffff;
    line-height: 1.1;
}

.music-single-artist {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    letter-spacing: 1px;
}

.music-single-layout {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.music-artwork-wrapper {
    flex: 0 0 452px;
    width: 452px;
    height: 452px;
    border: 1px solid #ffffff;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #111111;
    border-radius: 0 !important;
}

.music-artwork-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 !important;
}

.music-platforms-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 286px;
    width: 100%;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border: 1px solid #ffffff;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    width: 100%;
    border-radius: 0 !important;
}

.platform-btn svg,
.platform-btn i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    border-radius: 0 !important;
}

.platform-btn:hover {
    background: #ffffff;
    color: #000000;
}

.platform-btn:hover svg,
.platform-btn:hover i {
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .music-single-hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }
    .music-single-layout {
        flex-direction: column;
        gap: 36px;
        align-items: center;
        text-align: center;
    }
    .music-container {
        align-items: center;
    }
    .music-header-block {
        text-align: center;
        width: 100%;
    }
    .music-platforms-wrapper {
        max-width: 452px;
    }
}

@media (max-width: 500px) {
    .music-artwork-wrapper {
        flex: 0 0 100%;
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 1/1;
    }
    .music-single-title {
        font-size: 32px;
    }
    .music-single-artist {
        font-size: 15px;
    }
}

.music-page .footer-links a,
.music-single-page .footer-links a {
    border-radius: 0 !important;
}

/* ==========================================================================
   Booking Pages Styles (book-artist.html & book-producer.html)
   ========================================================================== */
.booking-page {
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.booking-form-section {
    padding: 180px 24px 120px 24px;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.booking-form-container {
    max-width: 900px;
    width: 100%;
    position: relative;
}

.booking-header {
    margin-bottom: 60px;
    text-align: left;
}

.booking-subtitle {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-bottom: 12px;
}

.booking-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    color: #8d8d8d;
    margin: 0;
    text-transform: capitalize;
}

.booking-title span {
    color: #ffffff;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    width: 100%;
}

.booking-field-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.booking-field-group.full-width {
    grid-column: span 2;
}

.booking-field-group label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #bcbcbc;
}

.booking-field-group input,
.booking-field-group select,
.booking-field-group textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid #292929;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    padding: 18px 20px;
    box-sizing: border-box;
    transition: var(--transition-smooth);
    border-radius: 0 !important;
}

.booking-field-group input::placeholder,
.booking-field-group textarea::placeholder {
    color: #6b6b6b;
}

.booking-field-group input:focus,
.booking-field-group select:focus,
.booking-field-group textarea:focus {
    outline: none;
    border-color: #ffffff;
}

/* Custom Dropdown Styling */
.booking-field-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%236b6b6b' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 48px;
}

.booking-field-group select:focus {
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
}

.booking-field-group select option {
    background-color: #111111;
    color: #ffffff;
}

/* Custom Date Calendar Wrapper styling */
.date-input-wrapper {
    position: relative;
    width: 100%;
}

.date-input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.5);
    cursor: pointer;
    transition: filter 0.3s ease;
}

.date-input-wrapper input[type="date"]:focus::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

/* Submit Row */
.booking-submit-row {
    grid-column: span 2;
    margin-top: 12px;
}

.booking-submit-btn {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    padding: 14px 40px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    width: 240px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 !important;
}

.booking-submit-btn:hover {
    background-color: transparent;
    color: #ffffff;
}

.booking-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Field Error Border highlighting */
.booking-field-group .field-error {
    border-color: #ff3b30 !important;
}

/* Submit Shake Animation */
@keyframes submitShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

.booking-submit-btn.shake-anim {
    animation: submitShake 0.4s ease-in-out;
}

/* Success Overlay Panel styling */
.success-overlay-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 24px;
    box-sizing: border-box;
}

.success-overlay-panel.visible {
    opacity: 1;
    pointer-events: auto;
}

.success-message-card {
    background-color: #111111;
    border: 1px solid #292929;
    padding: 48px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    border-radius: 0 !important;
}

.success-overlay-panel.visible .success-message-card {
    transform: translateY(0);
}

.success-icon {
    font-size: 56px;
    color: #34c759;
    margin-bottom: 24px;
}

.success-message-card h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 16px 0;
    color: #ffffff;
}

.success-message-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.success-close-btn {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    padding: 12px 36px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0 !important;
}

.success-close-btn:hover {
    background-color: transparent;
    color: #ffffff;
}

/* Enforce border radius 0 for booking footer links */
.book-artist-page .footer-links a,
.book-producer-page .footer-links a {
    border-radius: 0 !important;
}

@media (max-width: 900px) {
    .booking-form-section {
        padding-top: 140px;
        padding-bottom: 80px;
    }
    .booking-form-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .booking-field-group.full-width {
        grid-column: span 1;
    }
    .booking-submit-row {
        grid-column: span 1;
    }
    .booking-submit-btn {
        width: 100%;
    }
}
