:root {
    --gold: #D4AF37;
    --gold-bright: #FFD700;
    --black: #050505;
    --dark-grey: #121212;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(212, 175, 55, 0.2);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Glassmorphism Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.logo {
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 1.4rem;
    color: #fff;
}

.logo span {
    color: var(--gold);
    font-weight: 300;
}

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

.nav-links li { margin-left: 2.5rem; }

.nav-links a {
    text-decoration: none;
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
}

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

.nav-cta {
    border: 1px solid var(--gold);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    color: var(--gold) !important;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--black) !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    background: radial-gradient(circle at 80% 20%, #1a1500 0%, #050505 50%);
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.gold-text {
    background: linear-gradient(to right, #D4AF37, #FFF5D1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.btn {
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    display: inline-block;
    transition: var(--transition);
}

.primary {
    background: var(--gold);
    color: var(--black);
    margin-right: 1.5rem;
}

.primary:hover {
    background: #fff;
    transform: translateY(-5px);
}

.secondary {
    border: 1px solid #444;
    color: #fff;
}

.secondary:hover { border-color: var(--gold); }

/* Services Section */
.services {
    padding: 150px 10%;
    background: #080808;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--dark-grey);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #1a1a1a;
    transition: var(--transition);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.service-card:hover {
    border-color: var(--gold);
    background: #0f0f0f;
    transform: translateY(-10px);
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #1a1a1a;
    color: #444;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { text-align: center; justify-content: center; }
}