* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background-color: #0d0e10; color: #d1d1d1; line-height: 1.6; }

/* Nav */
nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 8%; background: rgba(13, 14, 16, 0.98); position: fixed; width: 100%; z-index: 1000; border-bottom: 1px solid #1e2124; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: #fff; }
.logo span { color: #c5a059; }
nav ul { display: flex; list-style: none; align-items: center; }
nav ul li { margin-left: 25px; }
nav a { text-decoration: none; color: #fff; font-size: 0.9rem; transition: 0.3s; }
nav a:hover { color: #c5a059; }
.btn-small { background: #c5a059; padding: 8px 20px; color: #000; font-weight: 600; border-radius: 2px; }

/* Hero */
.hero { height: 80vh; background: url('https://images.unsplash.com/photo-1512690118275-393e247f9679?auto=format&fit=crop&q=80&w=2000') center/cover; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); }
.hero-content { position: relative; z-index: 1; padding: 0 20px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 4.5rem); color: #fff; margin-bottom: 15px; }
.btn-main { display: inline-block; padding: 15px 45px; background: #c5a059; color: #000; text-decoration: none; font-weight: 600; margin-top: 25px; transition: 0.3s; }
.btn-main:hover { background: #fff; transform: translateY(-3px); }

/* Services */
.services { padding: 100px 8%; background: #0d0e10; }
.services h2 { text-align: center; font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 50px; color: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card { background: #16181b; text-align: center; border-bottom: 3px solid transparent; transition: 0.3s; overflow: hidden; }
.service-card img { width: 100%; height: 200px; object-fit: cover; opacity: 0.7; }
.service-card h3 { margin: 20px 0 10px; color: #fff; }
.service-card p { padding: 0 20px; font-size: 0.9rem; }
.service-card .price { display: block; padding: 20px; color: #c5a059; font-weight: 700; font-size: 1.2rem; }
.service-card:hover { border-color: #c5a059; transform: translateY(-5px); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); height: 300px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(50%); transition: 0.5s; }
.gallery-item img:hover { filter: grayscale(0%); }

/* About */
.about { padding: 100px 8%; background: #111316; }
.about-container { display: flex; align-items: center; gap: 50px; max-width: 1100px; margin: 0 auto; }
.about-image img { width: 100%; border: 1px solid #c5a059; padding: 10px; }
.about-content h2 { font-family: 'Playfair Display', serif; color: #fff; margin-bottom: 20px; font-size: 2.2rem; }

/* Contact */
.contact { padding: 80px 8%; background: #0d0e10; border-top: 1px solid #1e2124; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; text-align: center; }
.info-box h3 { color: #c5a059; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }

footer { padding: 40px; text-align: center; font-size: 0.8rem; color: #555; background: #0a0b0d; }

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); height: auto; }
    .about-container { flex-direction: column; text-align: center; }
    nav ul { display: none; }
}