:root {
    --gold: #d4af37;
    --dark-gold: #b59430;
    --black: #1a1a1a;
    --grey: #555;
    --light-grey: #f9f9f9;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--black); line-height: 1.6; background-color: var(--white); }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }

/* Navbar */
.luxury-nav { background: var(--white); padding: 25px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
.flex-nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Cinzel', serif; font-size: 1.8rem; text-decoration: none; color: var(--black); font-weight: 700; }
.logo span { color: var(--gold); }

.nav-menu { list-style: none; display: flex; align-items: center; }
.nav-menu li { margin-left: 30px; }
.nav-menu a { text-decoration: none; color: var(--grey); font-size: 0.9rem; font-weight: 500; transition: 0.3s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }

.btn-gold { border: 1px solid var(--gold); padding: 10px 20px; color: var(--gold) !important; border-radius: 2px; }
.btn-gold:hover { background: var(--gold); color: white !important; }

/* Hero */
.hero { 
    height: 90vh; 
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.pexels.com/photos/323780/pexels-photo-323780.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover; background-position: center;
    display: flex; align-items: center; color: white; text-align: left;
}
.top-tag { display: block; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.hero h1 { font-family: 'Cinzel', serif; font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 1.2rem; max-width: 600px; margin-bottom: 40px; font-weight: 300; }

.btn-main { background: var(--gold); color: white; padding: 15px 40px; text-decoration: none; font-weight: 600; display: inline-block; transition: 0.3s; }
.btn-outline { border: 1px solid white; color: white; padding: 14px 40px; text-decoration: none; margin-left: 20px; display: inline-block; transition: 0.3s; }
.btn-main:hover { background: var(--dark-gold); }

/* Luxury Grid */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: 'Cinzel', serif; font-size: 2.5rem; }
.gold-line { width: 80px; height: 3px; background: var(--gold); margin: 15px auto; }

.luxury-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.l-card { padding: 50px 30px; border: 1px solid #f0f0f0; text-align: center; transition: 0.5s; background: var(--white); }
.l-card:hover { border-color: var(--gold); box-shadow: 0 20px 40px rgba(0,0,0,0.05); transform: translateY(-10px); }
.l-icon { font-size: 3rem; margin-bottom: 20px; display: block; }

/* Sub Header */
.sub-header { background: var(--light-grey); padding: 80px 0; text-align: center; border-bottom: 1px solid #eee; }
.sub-header h1 { font-family: 'Cinzel', serif; font-size: 2.5rem; }

/* Form */
.contact-box { display: flex; gap: 50px; background: var(--light-grey); padding: 50px; border-radius: 4px; }
.c-info, .l-form { flex: 1; }
.l-form input, .l-form textarea { width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #ddd; font-family: inherit; }

/* Testimonials */
.testimonials-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.t-block { border-left: 4px solid var(--gold); padding: 30px; background: var(--light-grey); font-style: italic; }
.client-info { margin-top: 15px; font-weight: 600; font-style: normal; color: var(--gold); }

/* Footer */
.luxury-footer { background: var(--black); color: white; padding: 80px 0 0; }
.footer-content { display: flex; justify-content: space-between; padding-bottom: 50px; }
.footer-links a { color: #aaa; margin-left: 30px; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { background: #111; padding: 25px 0; text-align: center; font-size: 0.8rem; color: #666; }

.menu-icon { display: none; font-size: 2rem; cursor: pointer; }

@media (max-width: 900px) {
    .luxury-grid, .contact-box, .testimonials-wrap, .footer-content { flex-direction: column; grid-template-columns: 1fr; }
    .nav-menu { display: none; }
    .menu-icon { display: block; }
    .hero h1 { font-size: 2.2rem; }
    .btn-outline { margin-left: 0; margin-top: 15px; }
}