:root { --dark: #2C2C2C; --accent: #D4AF37; --gray-bg: #F9F9F9; --white: #FFFFFF; --text: #3E3E3E; --shadow: 0 10px 20px rgba(0,0,0,0.05); }
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--gray-bg); line-height:1.6; }
.container { max-width: 1140px; margin:0 auto; padding:0 20px; }
a { text-decoration: none; color: inherit; }
.navbar { background: var(--white); position: fixed; width:100%; top:0; z-index:1000; box-shadow:0 2px 15px rgba(0,0,0,0.08); }
.nav-container { display:flex; justify-content:space-between; align-items:center; height:70px; }
.logo { font-family: 'Playfair Display', serif; font-weight:700; font-size:1.5rem; color: var(--dark); letter-spacing:-0.5px; }
.nav-links { display:flex; gap:2rem; list-style:none; }
.nav-links a { font-weight:500; transition:0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.hamburger { display:none; flex-direction:column; gap:4px; background:none; border:none; cursor:pointer; }
.hamburger span { width:24px; height:2px; background: var(--dark); }
.hero { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.5)), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjwvc3ZnPg=='); background-size:cover; background-position:center; min-height: 85vh; display:flex; align-items:center; text-align:center; color:white; position:relative; }
.hero-overlay { position:absolute; inset:0; background:rgba(0,0,0,0.4); }
.hero-content { position:relative; z-index:2; max-width:800px; margin:0 auto; }
.hero h1 { font-family: 'Playfair Display', serif; font-size:3rem; margin:1rem 0; }
.btn { display:inline-block; padding:12px 28px; border-radius:40px; font-weight:600; transition:0.3s; cursor:pointer; border:none; }
.btn-primary { background: var(--accent); color: var(--dark); box-shadow:0 4px 12px rgba(212,175,55,0.3); }
.btn-primary:hover { background: #C5A028; transform:translateY(-2px); }
.btn-outline { background:transparent; border:2px solid white; color:white; }
.btn-outline:hover { background:white; color:var(--dark); }
.btn-outline-dark { border:2px solid var(--accent); color: var(--accent); background:transparent; }
.btn-outline-dark:hover { background: var(--accent); color:white; }
.section { padding: 80px 0; }
.section-title { font-family: 'Playfair Display', serif; font-size:2.2rem; text-align:center; margin-bottom:2.5rem; color: var(--dark); }
.intro-grid { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
.intro-text p { margin-bottom:1rem; }
.intro-image img { max-width:100%; border-radius:24px; box-shadow:var(--shadow); }
.services-preview { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:2rem; margin-top:2rem; }
.service-preview-card { background:white; padding:1.8rem; border-radius:24px; text-align:center; box-shadow:var(--shadow); transition:0.3s; }
.service-preview-card:hover { transform:translateY(-5px); }
.service-preview-card img { width:70px; margin-bottom:1rem; }
.link-arrow { color: var(--accent); font-weight:500; display:inline-block; margin-top:1rem; }
.gallery-grid-small { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1.5rem; margin-bottom:2rem; }
.gallery-item { background:white; border-radius:20px; overflow:hidden; box-shadow:var(--shadow); }
.gallery-item img { width:100%; height:180px; object-fit:cover; }
.text-center { text-align:center; }
.cta-box { background: var(--dark); color:white; text-align:center; padding:3rem; border-radius:32px; }
.cta-box .btn { margin-top:1rem; }
.footer { background: #1A1A1A; color:#aaa; padding:3rem 0 1rem; margin-top:2rem; }
.footer-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:2rem; }
.footer a { color:#ccc; transition:0.2s; }
.footer a:hover { color: var(--accent); }
.back-to-top { position:fixed; bottom:20px; right:20px; background: var(--accent); color:var(--dark); width:44px; height:44px; border-radius:50%; border:none; font-size:1.2rem; cursor:pointer; opacity:0; transition:0.3s; }
.back-to-top.show { opacity:1; }
.animate { opacity:0; transform:translateY(25px); transition:all 0.7s ease; }
.animate.visible { opacity:1; transform:translateY(0); }
.service-category { margin-top: 3rem; }
.pricing-table { background:white; border-radius:24px; overflow:hidden; box-shadow:var(--shadow); margin:1rem 0 2rem; }
.pricing-row { display:grid; grid-template-columns:2fr 1fr 2fr; padding:1rem 1.5rem; border-bottom:1px solid #eee; align-items:center; }
.pricing-row:last-child { border-bottom:none; }
.service-name { font-weight:600; }
.price { font-weight:700; color: var(--accent); }
.service-note { background: #f2f2f2; padding:1.5rem; border-radius:20px; margin:2rem 0; }
.cta-small { text-align:center; margin:2rem 0; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:2rem; }
.contact-info, .contact-form { background:white; padding:2rem; border-radius:28px; box-shadow:var(--shadow); }
.form-group { margin-bottom:1rem; }
.form-group label { display:block; font-weight:500; margin-bottom:0.4rem; }
.form-group input, .form-group select, .form-group textarea { width:100%; padding:10px 14px; border:1px solid #ddd; border-radius:12px; font-family:inherit; }
.btn-full { width:100%; }
.map-small img { max-width:100%; border-radius:16px; margin-top:1rem; }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:2rem; align-items:start; }
.about-image img { width:100%; border-radius:28px; }
.social { margin-top:1.5rem; display:flex; gap:1rem; }
.social-icon { background:#f0f0f0; padding:6px 14px; border-radius:40px; font-size:0.85rem; }
.page-header { background: var(--dark); color:white; padding:120px 0 60px; text-align:center; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size:2.5rem; }
.legal { padding:120px 20px 60px; max-width:800px; }
.legal-box { background:white; padding:2rem; border-radius:24px; }
@media (max-width:768px) { .nav-links { display:none; position:absolute; top:70px; left:0; width:100%; background:white; flex-direction:column; padding:1rem; gap:1rem; } .nav-links.active { display:flex; } .hamburger { display:flex; } .hero h1 { font-size:2rem; } .intro-grid, .contact-grid, .about-grid { grid-template-columns:1fr; } .pricing-row { grid-template-columns:1fr; text-align:center; gap:0.5rem; } .price { font-size:1.2rem; } }