:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --primary-accent: #d4af37;
    /* Metallic Gold */
    --secondary-accent: #f0f0f0;
    --surface-dark: #111111;
    --surface-light: #1a1a1a;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor for custom one */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.7;
}

html {
    scroll-behavior: smooth;
}

/* Custom Cursor */
.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-accent);
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9998;
    pointer-events: none;
    transition: width 0.2s, height 0.2s;
}

a:hover~.cursor-outline,
button:hover~.cursor-outline {
    width: 50px;
    height: 50px;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
}

h1 {
    font-size: 5rem;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

p.lead {
    font-size: 1.25rem;
    color: #aaaaaa;
    margin-bottom: 30px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

header.sticky {
    padding: 15px 0;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: #fff;
    text-transform: uppercase;
}

.logo-accent {
    font-weight: 600;
    color: var(--primary-accent);
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-accent);
    transition: width 0.3s;
}

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

.btn-nav {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
}

.btn-nav:hover {
    background: #fff;
    color: #000;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 18px 45px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-primary {
    background: var(--primary-accent);
    color: #000;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fff;
    z-index: -1;
    transition: width 0.3s;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    margin-left: 20px;
}

.btn-secondary:hover {
    background: var(--text-color);
    color: #000;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 70%);
    z-index: -2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    z-index: -1;
}

.hero-label {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary-accent);
    margin-bottom: 20px;
    opacity: 0.8;
}

.gradient-text {
    background: linear-gradient(to right, #cfc09f, #ffecb3, #c4a747);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 26px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: #fff;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 150px 0;
}

.section-label {
    font-size: 0.8rem;
    color: var(--primary-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
}

/* Philosophy */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-card {
    height: 500px;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop') center/cover;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.glass-overlay {
    position: absolute;
    bottom: 40px;
    right: -40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 30px 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.glass-overlay h3 {
    font-size: 3rem;
    color: var(--primary-accent);
    margin: 0;
}

.glass-overlay p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

/* Expertise / Services */
.dark-section {
    background-color: var(--surface-dark);
}

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

.service-card {
    background: var(--surface-light);
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.4s, border-color 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-accent);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--primary-accent);
    transition: height 0.4s;
}

.service-card:hover::after {
    height: 100%;
}

.icon-box {
    font-size: 3rem;
    color: var(--primary-accent);
    margin-bottom: 30px;
}

.service-card p {
    color: #888;
    font-size: 0.95rem;
}

/* Contact */
.contact-wrapper {
    text-align: center;
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    padding: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-glow {
    margin-top: 40px;
    padding: 20px 60px;
    background: #000;
    border: 1px solid var(--primary-accent);
    color: var(--primary-accent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    background: var(--primary-accent);
    color: #000;
}

/* Footer */
footer {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-left p {
    color: #666;
    margin-top: 10px;
    font-size: 0.8rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* Scroll Animation Classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

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

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 900px) {
    h1 {
        font-size: 3.5rem;
    }

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

    .image-card {
        height: 300px;
    }

    .glass-overlay {
        position: static;
        margin-top: -50px;
        margin-left: auto;
        width: 80%;
    }

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

    .contact-wrapper {
        padding: 50px 20px;
    }

    * {
        cursor: auto !important;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}