:root {
    --primary: #0a0a0b;
    --gold: #b2945e;
    --gold-light: #dfc692;
    --white: #ffffff;
    --gray-100: #f4f4f6;
    --gray-800: #1a1a1c;
    --glass: rgba(255, 255, 255, 0.03);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(178, 148, 94, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(178, 148, 94, 0.05) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

.topbar {
    background: var(--gold);
    color: var(--primary);
    padding: 8px 10%;
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .topbar {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

header {
    padding: 30px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(178, 148, 94, 0.1);
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(178, 148, 94, 0.3);
}

nav a {
    text-decoration: none;
    color: var(--white);
    margin-left: 40px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    opacity: 0.7;
}

nav a:hover {
    opacity: 1;
    color: var(--gold);
}

.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10%;
    background: linear-gradient(rgba(10,10,11,0.7), rgba(10,10,11,0.7)), 
                url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=2070') center/cover no-repeat;
    position: relative;
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 1.5s ease;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 20px;
    line-height: 1;
    background: linear-gradient(to bottom, #fff 30%, var(--gold) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 40px;
}

button {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 20px 50px;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

button:hover {
    background: var(--gold);
    color: var(--primary);
    box-shadow: 0 0 50px rgba(178, 148, 94, 0.4);
}

.section {
    padding: 120px 10%;
}

.title {
    text-align: center;
    margin-bottom: 100px;
}

.title h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    letter-spacing: 5px;
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service {
    background: var(--glass);
    padding: 60px 40px;
    border: 1px solid rgba(178, 148, 94, 0.1);
    transition: var(--transition);
    text-align: left;
}

.service:hover {
    background: rgba(178, 148, 94, 0.05);
    border-color: var(--gold);
    transform: translateY(-15px);
}

.service h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 20px;
}

.step {
    flex: 1;
    padding: 0 20px;
    text-align: center;
}

.step .number {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    color: rgba(178, 148, 94, 0.1);
    margin-bottom: -30px;
    display: block;
}

.step h4 {
    color: var(--gold);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.trust {
    background: var(--gray-800);
    padding: 100px 10%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--gold);
    text-align: center;
}

.trust-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: var(--gold);
}

.trust-item p {
    letter-spacing: 3px;
    font-size: 0.8rem;
    opacity: 0.6;
}

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

form input,
form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(178, 148, 94, 0.3);
    padding: 20px 0;
    color: white;
    margin-bottom: 30px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

form textarea {
    resize: vertical;
    min-height: 100px;
}

footer {
    padding: 100px 10%;
    background: #050505;
    text-align: center;
    border-top: 1px solid rgba(178, 148, 94, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
    margin-bottom: 60px;
    gap: 40px;
}

.footer-grid nav a {
    display: inline-block;
    margin: 5px 0;
    padding: 0;
    opacity: 0.6;
}

.footer-grid nav a:hover {
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .services,
    .trust,
    .contact,
    .timeline,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .service {
        margin-bottom: 20px;
    }
    
    nav {
        display: none;
    }
    
    .section {
        padding: 60px 5%;
    }
    
    .contact {
        gap: 50px;
    }
    
    .title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    button {
        padding: 15px 30px;
        font-size: 0.7rem;
    }
    
    .trust-item h3 {
        font-size: 2.5rem;
    }
}