/* ========================================
   UT Digital — Warm Luxe Acoustic Theme
   Mesmerizing Edition — Polished & Optimized
   ======================================== */

/* ---- CSS Custom Properties ---- */
:root {
    --bg-primary: #0e0a07;
    --bg-secondary: #16100a;
    --bg-card: rgba(255, 220, 150, 0.04);
    --border-warm: rgba(212, 170, 90, 0.2);
    --gold: #c9933a;
    --gold-light: #e8be6e;
    --cream: #f5ead8;
    --rust: #b84a20;
    --wood: #6b3a1f;
    --text-primary: #f2e8d5;
    --text-secondary: #a89070;
    --text-muted: #5a4a38;
    --gradient-gold: linear-gradient(135deg, #c9933a, #e8be6e);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', 'Segoe UI', sans-serif;
    --section-padding: 120px 0;
    --container-max: 1200px;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --nav-scrolled-bg: rgba(14, 10, 7, 0.88);
    --ticker-bg: rgba(14, 10, 7, 0.6);
    --card-hover-border: rgba(201, 147, 58, 0.4);
    --input-bg: transparent;
    --input-border: rgba(201, 147, 58, 0.15);
    --noise-opacity: 0.035;
}

/* ---- Light Theme ---- */
[data-theme="light"] {
    --bg-primary: #faf6f0;
    --bg-secondary: #f0e8da;
    --bg-card: rgba(180, 140, 60, 0.06);
    --border-warm: rgba(180, 130, 50, 0.2);
    --gold: #9a7028;
    --gold-light: #b8862d;
    --cream: #2a1f10;
    --rust: #a04018;
    --wood: #5a3018;
    --text-primary: #2a1f10;
    --text-secondary: #6b5a42;
    --text-muted: #a89878;
    --gradient-gold: linear-gradient(135deg, #9a7028, #c9933a);
    --nav-scrolled-bg: rgba(250, 246, 240, 0.92);
    --ticker-bg: rgba(240, 232, 218, 0.8);
    --card-hover-border: rgba(154, 112, 40, 0.5);
    --input-bg: rgba(255, 255, 255, 0.6);
    --input-border: rgba(154, 112, 40, 0.25);
    --noise-opacity: 0.015;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    background: var(--bg-primary);
    overflow-x: hidden;
    cursor: none;
    transition: background 0.4s ease, color 0.4s ease;
}

/* Noise texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: var(--noise-opacity);
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}

::selection {
    background: rgba(201, 147, 58, 0.3);
    color: var(--cream);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

/* ===================================
   PRELOADER
   =================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: preloaderPulse 1.8s ease-in-out infinite;
}

@keyframes preloaderPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.preloader-bar {
    width: 160px;
    height: 2px;
    background: rgba(201, 147, 58, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-progress {
    width: 0;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 2px;
    animation: preloaderFill 1.5s var(--ease-out-expo) forwards;
}

@keyframes preloaderFill {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* ---- Floating Musical Notes (Global) ---- */
.floating-notes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.note {
    position: absolute;
    font-size: 24px;
    color: var(--gold);
    opacity: 0;
    animation: floatNote linear infinite;
    will-change: transform, opacity;
}

.n1 {
    left: 5%;
    font-size: 18px;
    animation-duration: 18s;
    animation-delay: 0s;
}

.n2 {
    left: 12%;
    font-size: 28px;
    animation-duration: 22s;
    animation-delay: 2s;
}

.n3 {
    left: 22%;
    font-size: 20px;
    animation-duration: 20s;
    animation-delay: 4s;
}

.n4 {
    left: 35%;
    font-size: 32px;
    animation-duration: 25s;
    animation-delay: 1s;
}

.n5 {
    left: 45%;
    font-size: 16px;
    animation-duration: 19s;
    animation-delay: 6s;
}

.n6 {
    left: 55%;
    font-size: 26px;
    animation-duration: 23s;
    animation-delay: 3s;
}

.n7 {
    left: 65%;
    font-size: 22px;
    animation-duration: 21s;
    animation-delay: 5s;
}

.n8 {
    left: 75%;
    font-size: 30px;
    animation-duration: 24s;
    animation-delay: 0.5s;
}

.n9 {
    left: 82%;
    font-size: 18px;
    animation-duration: 17s;
    animation-delay: 7s;
}

.n10 {
    left: 90%;
    font-size: 24px;
    animation-duration: 20s;
    animation-delay: 2.5s;
}

.n11 {
    left: 30%;
    font-size: 20px;
    animation-duration: 26s;
    animation-delay: 8s;
}

.n12 {
    left: 60%;
    font-size: 14px;
    animation-duration: 16s;
    animation-delay: 4.5s;
}

@keyframes floatNote {
    0% {
        transform: translateY(110vh) rotate(0deg);
        opacity: 0;
    }

    5% {
        opacity: 0.06;
    }

    50% {
        opacity: 0.08;
    }

    95% {
        opacity: 0.04;
    }

    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

/* ---- Section Dividers ---- */
.section-divider {
    position: relative;
    z-index: 2;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 48px;
}

.section-divider.flip {
    transform: scaleX(-1);
}

/* ---- Custom Cursor ---- */
.cursor {
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 100000;
    transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
}

.cursor.hover {
    width: 44px;
    height: 44px;
    background: rgba(201, 147, 58, 0.12);
    border-color: var(--gold-light);
}

/* ---- Typography ---- */
h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-style: italic;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--cream);
}

h1 em,
.section-title em {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

h2,
.section-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(36px, 4vw, 56px);
    color: var(--cream);
    margin-bottom: 24px;
}

.section-title.center {
    text-align: center;
}

.section-sub {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 48px;
}

.section-sub.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

h3 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 22px;
    color: var(--cream);
    margin-bottom: 12px;
}

h4 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    padding: 15px 38px;
    border-radius: 50px;
    cursor: none;
    transition: all 0.4s var(--ease-out-expo);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    box-shadow: 0 0 24px rgba(201, 147, 58, 0.3);
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 0 48px rgba(232, 190, 110, 0.5), 0 0 80px rgba(201, 147, 58, 0.2);
    transform: scale(1.04);
}

.btn-primary .btn-arrow {
    transition: transform 0.3s;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-ghost {
    background: transparent;
    color: var(--gold-light);
    border: 1px solid rgba(201, 147, 58, 0.5);
}

.btn-ghost:hover {
    background: rgba(201, 147, 58, 0.1);
    border-color: var(--gold-light);
    box-shadow: 0 0 32px rgba(201, 147, 58, 0.15);
}

/* ---- Scroll Reveal ---- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease-out-expo),
        transform 0.8s var(--ease-out-expo);
}

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

/* ---- Gold Rule ---- */
.gold-rule {
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 20px 0 28px;
    border-radius: 2px;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 20px 0;
    transition: all 0.4s;
}

.navbar.scrolled {
    background: var(--nav-scrolled-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-warm);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 300;
    font-style: italic;
    font-size: 26px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #d4aa5a, #e8be6e 40%, #c9933a 70%, #b8862d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s var(--ease-out-expo);
}

.nav-logo:hover {
    transform: scale(1.03);
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
    transition: color 0.3s;
    cursor: none;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-gold);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

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

.nav-cta {
    padding: 8px 24px !important;
    border: 1px solid rgba(201, 147, 58, 0.4) !important;
    border-radius: 50px !important;
    color: var(--gold-light) !important;
    transition: all 0.3s !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: rgba(201, 147, 58, 0.1);
    box-shadow: 0 0 20px rgba(201, 147, 58, 0.15);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
    border-radius: 2px;
}

/* ---- Theme Toggle ---- */
.theme-toggle {
    background: none;
    border: 1px solid var(--border-warm);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.3s ease;
    color: var(--gold);
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background: rgba(201, 147, 58, 0.1);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 147, 58, 0.15);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    position: absolute;
    transition: transform 0.4s var(--ease-out-expo), opacity 0.3s ease;
}

.theme-toggle .icon-sun {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.theme-toggle .icon-moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="light"] .theme-toggle .icon-sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="light"] .theme-toggle .icon-moon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

/* Light theme specific overrides */
[data-theme="light"] .hero-section,
[data-theme="light"] .partners-section,
[data-theme="light"] .faq-section {
    background: var(--bg-primary);
}

[data-theme="light"] .about-section,
[data-theme="light"] .services-section,
[data-theme="light"] .contact-section {
    background: var(--bg-secondary);
}

[data-theme="light"] .vinyl-record {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .service-card {
    background: rgba(255, 255, 255, 0.6);
    border-color: var(--border-warm);
}

[data-theme="light"] .preloader {
    background: var(--bg-primary);
}

[data-theme="light"] .footer-section {
    background: #1a1510;
    color: #a89070;
}

[data-theme="light"] .footer-section .footer-logo-text,
[data-theme="light"] .footer-section h4,
[data-theme="light"] .footer-section a {
    color: #e8be6e;
}

[data-theme="light"] .section-divider svg path[fill] {
    transition: fill 0.4s ease;
}

[data-theme="light"] .address-card {
    background: rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .faq-item {
    background: rgba(255, 255, 255, 0.5);
}

/* ===================================
   HERO
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-primary);
    padding-bottom: 70px;
}

/* Particle Canvas */
.particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Aurora Blobs */
.aurora {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    will-change: transform, opacity;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold), transparent 70%);
    top: -10%;
    right: -5%;
    animation: aurora1 12s ease-in-out infinite alternate;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--rust), transparent 70%);
    bottom: -15%;
    left: 10%;
    animation: aurora2 15s ease-in-out infinite alternate;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold-light), transparent 70%);
    top: 40%;
    right: 30%;
    animation: aurora3 10s ease-in-out infinite alternate;
}

@keyframes aurora1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.10;
    }

    100% {
        transform: translate(-80px, 60px) scale(1.3);
        opacity: 0.18;
    }
}

@keyframes aurora2 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.08;
    }

    100% {
        transform: translate(60px, -40px) scale(1.2);
        opacity: 0.14;
    }
}

@keyframes aurora3 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.06;
    }

    100% {
        transform: translate(-40px, -30px) scale(1.4);
        opacity: 0.12;
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-text {
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(201, 147, 58, 0.25);
    background: rgba(201, 147, 58, 0.06);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-light);
    margin-bottom: 28px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-light);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(232, 190, 110, 0.4);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 6px rgba(232, 190, 110, 0);
    }
}

.hero-sub {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 28px 0 40px;
}

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

/* ---- Vinyl Record ---- */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
}

.vinyl-container {
    position: relative;
    width: 380px;
    height: 380px;
    will-change: transform;
}

.vinyl-record {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            #1a1410 0deg, #0e0a07 40deg, #1a1410 80deg,
            #0e0a07 120deg, #1a1410 160deg, #0e0a07 200deg,
            #1a1410 240deg, #0e0a07 280deg, #1a1410 320deg, #0e0a07 360deg);
    animation: spinVinyl 8s linear infinite;
    position: relative;
    box-shadow:
        0 0 0 3px rgba(201, 147, 58, 0.15),
        0 0 60px rgba(201, 147, 58, 0.08),
        inset 0 0 40px rgba(0, 0, 0, 0.5);
    will-change: transform;
}

.vinyl-groove {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 147, 58, 0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.v1 {
    width: 92%;
    height: 92%;
}

.v2 {
    width: 78%;
    height: 78%;
    border-color: rgba(201, 147, 58, 0.08);
}

.v3 {
    width: 64%;
    height: 64%;
}

.v4 {
    width: 50%;
    height: 50%;
    border-color: rgba(201, 147, 58, 0.08);
}

.vinyl-label {
    position: absolute;
    width: 35%;
    height: 35%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #2a1f14, #16100a);
    border: 2px solid rgba(201, 147, 58, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: spinVinylReverse 8s linear infinite;
    will-change: transform;
}

.vinyl-logo {
    width: 60%;
    height: 60%;
    object-fit: contain;
    opacity: 0.85;
    filter: drop-shadow(0 0 8px rgba(201, 147, 58, 0.3));
}

.vinyl-shine {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg,
            transparent 40%,
            rgba(232, 190, 110, 0.06) 45%,
            transparent 50%);
    pointer-events: none;
}

@keyframes spinVinyl {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spinVinylReverse {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

/* Sound Waves from Vinyl */
.sound-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.wave {
    position: absolute;
    border: 1px solid rgba(201, 147, 58, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: expandWave 3s ease-out infinite;
    will-change: width, height, opacity;
}

.w1 {
    width: 400px;
    height: 400px;
    animation-delay: 0s;
}

.w2 {
    width: 400px;
    height: 400px;
    animation-delay: 0.75s;
}

.w3 {
    width: 400px;
    height: 400px;
    animation-delay: 1.5s;
}

.w4 {
    width: 400px;
    height: 400px;
    animation-delay: 2.25s;
}

@keyframes expandWave {
    0% {
        width: 380px;
        height: 380px;
        opacity: 0.3;
        border-color: rgba(201, 147, 58, 0.2);
    }

    100% {
        width: 600px;
        height: 600px;
        opacity: 0;
        border-color: rgba(201, 147, 58, 0);
    }
}

/* Ticker */
.hero-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    overflow: hidden;
    border-top: 1px solid var(--border-warm);
    padding: 14px 0;
    background: var(--ticker-bg);
    backdrop-filter: blur(8px);
}

.ticker-track {
    display: flex;
    gap: 24px;
    animation: ticker 40s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.ticker-track span {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-muted);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

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

/* ===================================
   ABOUT
   =================================== */
.about-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 147, 58, 0.06) 0%, transparent 70%);
    top: 50%;
    left: 15%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ---- Pulse Rings (About Visual) ---- */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pulse-rings {
    position: relative;
    width: 360px;
    height: 360px;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 147, 58, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseRing 4s ease-in-out infinite;
    will-change: transform, opacity;
}

.r1 {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.r2 {
    width: 80%;
    height: 80%;
    animation-delay: 0.3s;
    border-color: rgba(232, 190, 110, 0.12);
}

.r3 {
    width: 60%;
    height: 60%;
    animation-delay: 0.6s;
}

.r4 {
    width: 40%;
    height: 40%;
    animation-delay: 0.9s;
    border-color: rgba(232, 190, 110, 0.12);
}

.r5 {
    width: 20%;
    height: 20%;
    animation-delay: 1.2s;
}

@keyframes pulseRing {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 1;
    }
}

.ring-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(201, 147, 58, 0.4), 0 0 80px rgba(201, 147, 58, 0.15);
    animation: glowPulse 3s ease-in-out infinite;
}

.ring-icon {
    font-size: 32px;
    color: var(--bg-primary);
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 40px rgba(201, 147, 58, 0.4), 0 0 80px rgba(201, 147, 58, 0.15);
    }

    50% {
        box-shadow: 0 0 60px rgba(201, 147, 58, 0.6), 0 0 120px rgba(201, 147, 58, 0.25);
    }
}

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

/* Stats */
.stats-row {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(212, 170, 90, 0.1);
}

.stat-number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(48px, 5vw, 72px);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(36px, 4vw, 56px);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===================================
   PLATFORM PARTNERS
   =================================== */
.partners-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
    overflow: hidden;
    position: relative;
}

.marquee-container {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.marquee-row {
    overflow: hidden;
}

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

.marquee-left .marquee-track {
    animation: marquee-scroll-left 50s linear infinite;
}

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

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

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

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

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

.partner-pill {
    padding: 12px 28px;
    border-radius: 50px;
    background: rgba(255, 220, 150, 0.04);
    border: 1px solid rgba(212, 170, 90, 0.15);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--text-secondary);
    white-space: nowrap;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}

.partner-pill:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(255, 220, 150, 0.08);
    box-shadow: 0 0 20px rgba(201, 147, 58, 0.1);
}

/* ===================================
   SERVICES
   =================================== */
.services-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px;
}

.service-card {
    background: rgba(255, 220, 150, 0.03);
    border: 1px solid rgba(212, 170, 90, 0.12);
    border-radius: 20px;
    padding: 44px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: all 0.5s var(--ease-out-expo);
}

.service-card:hover {
    border-color: rgba(212, 170, 90, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 147, 58, 0.06);
}

/* Card hover glow */
.card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 147, 58, 0.08), transparent 70%);
    top: -40px;
    right: -40px;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 1;
}

/* Card Icon */
.card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    position: relative;
    color: var(--gold);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.icon-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(201, 147, 58, 0.15);
    opacity: 0;
    animation: iconPulse 2.5s ease-in-out infinite;
}

.service-card:hover .icon-pulse {
    opacity: 1;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

.service-card h3 {
    margin-top: 4px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===================================
   FAQ
   =================================== */
.faq-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

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

/* ---- Animated Equalizer ---- */
.faq-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 120px;
    min-height: 400px;
}

.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 280px;
    padding: 0 20px;
}

.eq-bar {
    width: 14px;
    border-radius: 8px 8px 4px 4px;
    background: var(--gradient-gold);
    opacity: 0.7;
    animation: eqBounce calc(0.8s + var(--i) * 0.12s) ease-in-out infinite alternate;
    box-shadow: 0 0 12px rgba(201, 147, 58, 0.2);
    will-change: height, opacity;
}

@keyframes eqBounce {
    0% {
        height: 20px;
        opacity: 0.4;
    }

    20% {
        height: calc(40px + var(--i) * 12px);
    }

    40% {
        height: calc(30px + var(--i) * 8px);
        opacity: 0.6;
    }

    60% {
        height: calc(60px + var(--i) * 10px);
    }

    80% {
        height: calc(25px + var(--i) * 15px);
        opacity: 0.9;
    }

    100% {
        height: calc(80px + var(--i) * 6px);
        opacity: 0.7;
    }
}

.faq-content {
    padding-top: 20px;
}

.faq-list {
    margin-top: 32px;
}

.faq-item {
    border-bottom: 1px solid rgba(242, 232, 213, 0.08);
}

.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 0;
    cursor: none;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--text-primary);
    transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--gold-light);
}

.faq-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(201, 147, 58, 0.08);
    border: 1px solid rgba(201, 147, 58, 0.15);
    font-size: 16px;
    color: var(--gold);
    transition: all 0.4s var(--ease-out-expo);
    flex-shrink: 0;
}

.faq-item[open] .faq-note {
    transform: rotate(45deg);
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border-color: transparent;
    box-shadow: 0 0 16px rgba(201, 147, 58, 0.3);
}

.faq-answer {
    padding: 0 0 24px 48px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    animation: faqSlide 0.4s var(--ease-out-expo);
}

.faq-answer ol,
.faq-answer ul {
    padding-left: 20px;
    margin-top: 12px;
}

.faq-answer li {
    margin-bottom: 6px;
}

@keyframes faqSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   CONTACT
   =================================== */
.contact-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.waveform-canvas {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-form-wrap {
    background: rgba(255, 220, 150, 0.03);
    border: 1px solid rgba(212, 170, 90, 0.12);
    border-radius: 20px;
    padding: 48px;
    backdrop-filter: blur(16px);
}

.contact-form {
    margin-top: 32px;
}

.form-group {
    position: relative;
    margin-bottom: 32px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(212, 170, 90, 0.2);
    padding: 12px 0;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    color: var(--cream);
    outline: none;
    cursor: none;
    transition: border-color 0.3s;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: transparent;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.4s var(--ease-out-expo);
}

.form-group input:focus~.input-line,
.form-group textarea:focus~.input-line {
    width: 100%;
}

.form-group label {
    position: absolute;
    left: 0;
    top: 12px;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15px;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s var(--ease-out-expo);
}

.form-group input:focus+label,
.form-group input:valid+label,
.form-group textarea:focus+label,
.form-group textarea:valid+label {
    top: -18px;
    font-size: 12px;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 60px;
}

.address-card {
    background: rgba(255, 220, 150, 0.03);
    border: 1px solid rgba(212, 170, 90, 0.12);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(12px);
    transition: all 0.4s;
}

.address-card:hover {
    border-color: rgba(212, 170, 90, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.address-pin {
    font-size: 28px;
    margin-bottom: 12px;
}

.address-card h3 {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 32px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 8px;
}

.address-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.address-card a {
    color: var(--gold);
    font-weight: 400;
    transition: color 0.3s;
}

.address-card a:hover {
    color: var(--gold-light);
}

/* ===================================
   FOOTER
   =================================== */
.footer-section {
    background: #080604;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 170, 90, 0.12);
}

.footer-notes-bg {
    position: absolute;
    inset: 0;
    font-size: 80px;
    color: var(--cream);
    opacity: 0.035;
    line-height: 1.2;
    word-wrap: break-word;
    pointer-events: none;
    overflow: hidden;
    font-family: serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
    padding-bottom: 48px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    transition: transform 0.3s var(--ease-out-expo);
}

.footer-logo-link:hover {
    transform: scale(1.02);
}

.footer-logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-weight: 300;
    font-style: italic;
    font-size: 32px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #d4aa5a, #e8be6e 40%, #c9933a 70%, #b8862d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15px;
    color: var(--text-secondary);
    cursor: none;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(201, 147, 58, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    cursor: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: rgba(201, 147, 58, 0.15);
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 147, 58, 0.15);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 170, 90, 0.08);
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 13px;
    color: var(--text-muted);
}

/* ===================================
   RESPONSIVE — MOBILE (≤768px)
   =================================== */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }

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

    .container {
        padding: 0 24px;
    }

    :root {
        --section-padding: 80px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(14, 10, 7, 0.96);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 60px 40px;
        transition: right 0.4s var(--ease-out-expo);
        border-left: 1px solid rgba(212, 170, 90, 0.1);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 14px;
        letter-spacing: 2px;
    }

    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
    }

    h1 {
        font-size: 48px;
    }

    .hero-visual {
        padding-top: 20px;
    }

    .vinyl-container {
        width: 260px;
        height: 260px;
    }

    .hero-buttons {
        flex-direction: column;
        max-width: 260px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pulse-rings {
        width: 260px;
        height: 260px;
    }

    .stats-row {
        gap: 24px;
        flex-wrap: wrap;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-visual {
        position: relative;
        top: 0;
        min-height: 200px;
    }

    .equalizer {
        height: 160px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrap {
        padding: 32px 24px;
    }

    .contact-info {
        padding-top: 0;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-divider svg {
        height: 32px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 38px;
    }

    .section-title {
        font-size: 32px;
    }

    .stat-number {
        font-size: 42px;
    }

    .vinyl-container {
        width: 220px;
        height: 220px;
    }

    .eq-bar {
        width: 10px;
    }

    .section-divider svg {
        height: 24px;
    }
}

/* ===================================
   PERFORMANCE — Reduce motion
   =================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .floating-notes {
        display: none;
    }
}