:root {
    --bg: #0a0a0c;
    --surface: #121215;
    --accent: #c5a059;
    --text: #ffffff;
    --text-dim: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.03);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.gold { color: var(--accent); }
.italic { font-style: italic; font-family: 'Playfair Display', serif; }

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 8%;
    background: rgba(10, 10, 12, 0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 2px; }
.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li { margin-left: 2.5rem; }
.nav-links a { 
    text-decoration: none; color: var(--text); font-size: 0.8rem; 
    text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta { border: 1px solid var(--accent); padding: 0.5rem 1.5rem; border-radius: 2px; }

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    background: url('https://images.unsplash.com/photo-1470790376778-a9fbc86d70e2?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, #0a0a0c 30%, rgba(10, 10, 12, 0.4) 100%);
}

.hero-content { position: relative; max-width: 700px; z-index: 2; }
.subtitle { font-size: 0.8rem; color: var(--accent); letter-spacing: 4px; margin-bottom: 1rem; display: block; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 4.5rem; line-height: 1.1; margin-bottom: 2rem; }
.hero p { font-size: 1.1rem; color: var(--text-dim); margin-bottom: 2.5rem; max-width: 500px; }

.btn {
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: 0.3s;
    display: inline-block;
}
.primary { background: var(--accent); color: #000; }
.secondary { border: 1px solid #fff; color: #fff; margin-left: 1rem; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.4); }

/* Stats Bar */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 4rem 10%;
    background: var(--surface);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stat-item h2 { font-size: 2.5rem; color: var(--accent); }
.stat-item p { font-size: 0.8rem; text-transform: uppercase; color: var(--text-dim); }

/* Services */
.services { padding: 100px 10%; }
.section-header { margin-bottom: 60px; }
.line { width: 60px; height: 3px; background: var(--accent); margin-top: 15px; }

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--glass);
    padding: 3rem 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.4s;
}
.service-card i { color: var(--accent); margin-bottom: 1.5rem; width: 32px; height: 32px; }
.service-card h3 { margin-bottom: 1rem; font-size: 1.2rem; }
.service-card p { color: var(--text-dim); font-size: 0.9rem; }
.service-card:hover { background: rgba(197, 160, 89, 0.05); border-color: var(--accent); }

/* Case Study */
.cases { padding: 60px 10%; }
.case-box {
    display: flex;
    background: var(--surface);
    height: 400px;
}
.case-image { 
    flex: 1; 
    background: url('https://images.unsplash.com/photo-1557597774-9d2739f85a94?auto=format&fit=crop&q=80&w=800');
    background-size: cover;
}
.case-text { flex: 1; padding: 4rem; display: flex; flex-direction: column; justify-content: center; }
.text-link { color: var(--accent); text-decoration: none; margin-top: 20px; font-weight: 700; }

/* About */
.about { padding: 100px 10%; }
.about-content { display: flex; align-items: center; gap: 80px; }
.about-image-wrapper { flex: 1; position: relative; }
.about-image-wrapper::after {
    content: ""; position: absolute; top: 20px; left: 20px; 
    width: 100%; height: 100%; border: 2px solid var(--accent); z-index: -1;
}
.about-image-wrapper img { width: 100%; filter: grayscale(1); }
.about-text { flex: 1; }
.about-text h2 { font-size: 3rem; margin-bottom: 0.5rem; }
.signature { font-family: 'Playfair Display', serif; font-size: 2rem; margin-top: 2rem; opacity: 0.5; }

/* Contact Card */
.contact { padding: 100px 10%; background: #050505; }
.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--surface);
    padding: 4rem;
    gap: 4rem;
}
.contact-list { list-style: none; margin-top: 2rem; }
.contact-list li { margin-bottom: 1rem; color: var(--text-dim); }
.contact-form .form-group { display: flex; gap: 10px; }
input, select, textarea {
    width: 100%; padding: 1rem; background: #1a1a1e; border: 1px solid #333; color: white; margin-bottom: 1rem;
}
.full { width: 100%; }

footer { padding: 3rem; text-align: center; border-top: 1px solid #222; font-size: 0.7rem; color: #555; }

@media (max-width: 992px) {
    .service-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 3rem; }
    .about-content, .case-box, .contact-card { flex-direction: column; grid-template-columns: 1fr; }
}