:root {
    --bg-color: #0a0a0a;
    --primary-accent: #6B21A8;
    --secondary-accent: #7C3AED;
    --highlight: #C9A84C;
    --text-primary: #f5f5f5;
    --text-muted: #a0a0a0;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;

    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(107, 33, 168, 0.2);
    --glass-glow: rgba(107, 33, 168, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor for custom cursor */
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--highlight);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    will-change: transform, width, height, background-color;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 10px var(--glass-glow);
    will-change: transform, width, height, border-color, box-shadow;
}

.cursor.hover {
    background-color: transparent;
}

/* Keep standard hover base */
.artist-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid var(--highlight);
    margin: 0 auto 2rem;
    background-color: var(--bg-color);
    box-shadow: 0 0 30px rgba(107, 33, 168, 0.2);
    position: relative;
}

.artist-avatar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(107, 33, 168, 0.3) 0%, rgba(10, 10, 10, 0.5) 100%);
    pointer-events: none;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--highlight);
    background-color: rgba(201, 168, 76, 0.05);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.brand,
.serif {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Button Base */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-primary {
    background-color: var(--primary-accent);
    color: white;
    border: 1px solid var(--primary-accent);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--highlight);
    color: var(--highlight);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
}

/* Navbar Placeholder */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 4rem;
    border-bottom: 1px solid var(--glass-border);
}

.brand {
    font-size: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--highlight);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--highlight);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section Placeholder */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    text-transform: capitalize;
    background: linear-gradient(to right, #fff, var(--highlight));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.hero-btns {
    pointer-events: auto;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Preloader Placeholder */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.preloader-text {
    font-family: var(--font-serif);
    font-size: 3rem;
    letter-spacing: 10px;
    color: var(--text-primary);
    margin-bottom: 2rem;
    overflow: hidden;
}

.preloader-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.preloader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--primary-accent);
    box-shadow: 0 0 10px var(--primary-accent);
}

/* Base Sections */
section {
    padding: 8rem 4rem;
    position: relative;
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
    position: relative;
    padding: 2rem;
    will-change: transform, box-shadow, border-color;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(107, 33, 168, 0.15), transparent 40%);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--glass-glow);
    border-color: rgba(124, 58, 237, 0.4);
}

/* Page Transition Overlay */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 99990;
    pointer-events: none;
    transform: scaleY(0);
    transform-origin: bottom;
}

/* Footer */
.footer {
    padding: 6rem 4rem 2rem;
    background: #050505;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer .brand {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--highlight);
    opacity: 0.8;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Title utilities */
.title-large {
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1.1;
}

/* Split Text Utility */
.split-text {
    opacity: 0;
    /* Hidden before JS */
}

.split-line {
    overflow: hidden;
    vertical-align: top;
}

.split-line span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
}

/* Image Tint Overlay */
.image-tint::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.1) 0%, rgba(10, 10, 10, 0.6) 100%);
    border-radius: inherit;
    pointer-events: none;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    section {
        padding: 4rem 1.5rem;
    }

    .hero-content h1,
    .title-large {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .navbar {
        padding: 1.5rem 1.5rem;
    }

    .navbar.scrolled {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 99;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: none;
        z-index: 100;
        position: relative;
    }

    .mobile-menu-btn span {
        width: 100%;
        height: 2px;
        background-color: var(--text-primary);
        transition: all 0.3s ease;
        pointer-events: none;
        transform-origin: left center;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    /* Keep booking button in navbar if it's there */
    .navbar>.btn-primary {
        display: none;
    }

    .glass-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(15, 15, 15, 0.95);
    }

    .stats {
        gap: 2rem;
        padding: 2rem 0;
        margin-bottom: 4rem;
        flex-direction: column;
    }

    .stat-item .number {
        font-size: 4rem;
    }

    .footer {
        padding: 4rem 1.5rem 2rem;
    }

    .footer .brand {
        font-size: 2.5rem;
    }

    .services-strip {
        padding-bottom: 1rem;
    }

    .service-card {
        min-width: 300px;
        height: 400px;
        padding: 2rem;
    }

    .service-card h3 {
        font-size: 1.8rem;
    }
}

@media (min-width: 901px) {
    .mobile-menu-btn {
        display: none;
    }
}