[Enter code here]* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --primary: #000; --secondary: #fff; --accent: #D4C5B9; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #333; background: #fff; line-height: 1.6; }
h1,h2,h3 { font-family: 'Playfair Display', serif; font-weight: 700; }
a { color: #000; text-decoration: none; transition: 0.3s; }
a:hover { color: #D4C5B9; }
.navbar { position: fixed; top: 0; width: 100%; background: #fff; z-index: 1000; border-bottom: 1px solid #f5f5f5; padding: 1.5rem 2rem; }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; font-family: 'Playfair Display'; }
.nav-list { list-style: none; display: flex; gap: 3rem; }
.nav-link { font-size: 1rem; font-weight: 500; position: relative; }
.nav-link:hover { color: #D4C5B9; }
.hamburger { display: none; flex-direction: column; cursor: pointer; }
.hero { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; min-height: 100vh; padding: 120px 2rem 4rem; align-items: center; }
.hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
.hero p { font-size: 1.25rem; color: #666; margin-bottom: 2rem; }
.btn { display: inline-block; padding: 1rem 2.5rem; background: #000; color: #fff; border: none; border-radius: 4px; cursor: pointer; font-weight: 600; transition: 0.3s; }
.btn:hover { background: #D4C5B9; color: #000; }
section { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; }
.about { background: #f5f5f5; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.portfolio { text-align: center; }
.portfolio h2 { margin-bottom: 3rem; }
.portfolio-filters { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-btn { padding: 0.75rem 1.5rem; border: 2px solid #000; background: transparent; color: #000; cursor: pointer; border-radius: 4px; transition: 0.3s; }
.filter-btn.active, .filter-btn:hover { background: #000; color: #fff; }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.portfolio-item { position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 1; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
.portfolio-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; color: #fff; }
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.services { background: #f5f5f5; text-align: center; }
.services h2 { margin-bottom: 3rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.service-card { background: #fff; padding: 2rem; border-radius: 8px; transition: 0.3s; border-top: 3px solid #D4C5B9; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.service-icon { font-size: 3rem; margin-bottom: 1rem; }
.testimonials { background: #000; color: #fff; text-align: center; }
.testimonials h2 { color: #fff; margin-bottom: 3rem; }
.testimonials-slider { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial-card { background: rgba(255,255,255,0.1); padding: 2rem; border-radius: 8px; }
.testimonial-card .stars { color: #D4C5B9; }
.contact { background: #f5f5f5; }
.contact h2 { text-align: center; margin-bottom: 3rem; }
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-form input, .contact-form textarea { padding: 1rem; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #D4C5B9; }
.footer { background: #000; color: #fff; text-align: center; padding: 2rem; }
.footer a { color: #D4C5B9; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.6s ease-out; }
@media (max-width: 768px) { .nav-list { display: none; } .hamburger { display: flex; } h1 { font-size: 2rem; } h2 { font-size: 1.8rem; } .hero { grid-template-columns: 1fr; padding: 100px 1rem 2rem; } .about-content, .contact-content { grid-template-columns: 1fr; } section { padding: 4rem 1rem; } .portfolio-grid, .services-grid { grid-template-columns: 1fr; } }