@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@100..900&family=Syncopate:wght@400;700&family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #FF6B35;
    --primary-dim: #D94D1A;
    --primary-glow: rgba(255, 107, 53, 0.4);
    --bg-dark: #080808;
    --bg-gunmetal: #121212;
    --text-pure: #FFFFFF;
    --text-dim: #888888;
    --text-accent: #666666;
    --glass: rgba(255, 255, 255, 0.02);
    --border: rgba(255, 255, 255, 0.05);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (pointer: fine) {
    * {
        cursor: none !important;
    }
}

@media (pointer: coarse),
(hover: none) {
    * {
        cursor: auto !important;
    }

    .cursor-dot,
    .cursor-outline {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

body {
    background-color: var(--bg-dark);
    color: var(--text-pure);
    font-family: 'Outfit', sans-serif;
    line-height: 1.4;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Base Grain/Noise Texture */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

/* Typography Overhaul */
h1,
h2,
h3,
.impact-text {
    font-family: 'Big Shoulders Display', cursive;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.accent-text {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle.active {
    opacity: 0;
    pointer-events: none;
}

.menu-close {
    display: none;
    position: absolute;
    top: 30px;
    right: 5%;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-close span {
    display: block;
    width: 30px;
    height: 2px;
    background: white;
    margin-bottom: -2px;
}

.menu-close span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-close span:nth-child(2) {
    transform: rotate(-45deg);
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, opacity 0.3s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s, background 0.3s;
}

.cursor-active .cursor-outline {
    width: 80px;
    height: 80px;
    background: var(--primary-glow);
    border: none;
}

/* Marquee Section */
.marquee-container {
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    white-space: nowrap;
    background: var(--bg-gunmetal);
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-family: 'Big Shoulders Display', cursive;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    margin-right: 50px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Ultra-Premium Hero */
.hero-luxury {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 120px 10% 80px;
    background: linear-gradient(90deg, var(--bg-dark) 40%, transparent 100%), url('images/hero.png');
    background-size: cover;
    background-position: center;
}

.hero-luxury h1 {
    font-size: clamp(3.5rem, 12vw, 13vw);
    font-weight: 900;
    z-index: 2;
    margin-bottom: 20px;
    line-height: 0.9;
}

.hero-luxury .hero-sub {
    max-width: 600px;
    z-index: 2;
    margin-bottom: 40px;
}

/* Vertical Text */
.vertical-title {
    position: absolute;
    left: 2%;
    top: 50%;
    transform: rotate(-90deg) translateY(-50%);
    opacity: 0.1;
    font-family: 'Syncopate', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1em;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

/* Asymmetric Sections */
.asymmetric-section {
    padding: 100px 10%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    position: relative;
}

.asymmetric-image {
    grid-column: 1 / 8;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 10% 90%);
    transition: var(--transition);
}

.asymmetric-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.asymmetric-content {
    grid-column: 7 / 13;
    background: var(--bg-gunmetal);
    padding: 60px;
    margin-top: 100px;
    z-index: 2;
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
}

/* Animated Button */
.btn-bespoke {
    padding: 15px 30px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-family: 'Syncopate', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-bespoke::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: var(--transition);
    z-index: -1;
}

.btn-bespoke:hover {
    color: var(--bg-dark);
}

.btn-bespoke:hover::before {
    left: 0;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .menu-close {
        display: block !important;
    }

    .hero-luxury h1 {
        font-size: 15vw;
    }

    .asymmetric-image {
        grid-column: 1 / 13;
        height: 40vh;
    }

    .asymmetric-content {
        grid-column: 1 / 13;
        margin-top: -30px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .hero-luxury {
        padding: 120px 5% 40px;
    }

    .hero-luxury h1 {
        font-size: clamp(3rem, 18vw, 20vw);
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px !important;
        margin-top: 40px !important;
    }

    h2 {
        font-size: 4rem !important;
    }

    .vertical-title {
        display: none;
    }
}