*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; line-height: 1.7; color: #3d3229; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(45, 40, 35, 0.95); backdrop-filter: blur(12px); transition: all 0.3s; border-bottom: 1px solid rgba(184, 154, 112, 0.2); }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }
.logo-text { font-family: 'Cinzel', serif; font-size: 1.25rem; font-weight: 600; color: #d4af37; letter-spacing: 1.5px; }
.nav-menu { display: flex; list-style: none; align-items: center; gap: 32px; }
.nav-link { font-weight: 500; font-size: 0.85rem; color: #d5cec4; letter-spacing: 1px; text-transform: uppercase; transition: color 0.3s; }
.nav-link:hover { color: #d4af37; }
.nav-phone { background: #8b6914; color: #fff !important; padding: 10px 22px; border-radius: 2px; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.5px; transition: background 0.3s; }
.nav-phone:hover { background: #6b4f10; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: #d4af37; border-radius: 1px; transition: all 0.3s; }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-image { position: absolute; inset: 0; z-index: 1; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,25,20,0.5) 0%, rgba(30,25,20,0.75) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; text-align: center; color: #f5f0e8; padding: 20px; max-width: 800px; animation: fadeInUp 1.2s ease; }
.hero-badge { display: inline-block; border: 1px solid #d4af37; color: #d4af37; padding: 6px 22px; font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 25px; }
.hero-title { font-family: 'Cinzel', serif; font-size: 3.2rem; font-weight: 500; margin-bottom: 20px; line-height: 1.25; letter-spacing: 1px; }
.hero-subtitle { font-size: 1.15rem; font-weight: 300; opacity: 0.9; margin-bottom: 25px; letter-spacing: 0.5px; }
.hero-divider { width: 60px; height: 2px; background: #d4af37; margin: 0 auto 30px; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn { display: inline-block; padding: 14px 32px; border-radius: 2px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s; cursor: pointer; border: none; letter-spacing: 1px; text-transform: uppercase; }
.btn-primary { background: #8b6914; color: #fff; }
.btn-primary:hover { background: #6b4f10; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(139,105,20,0.4); }
.btn-outline { background: transparent; color: #d4af37; border: 1px solid #d4af37; }
.btn-outline:hover { background: #d4af37; color: #2d2823; }
.btn-gold { background: #d4af37; color: #2d2823; }
.btn-gold:hover { background: #b8952e; transform: translateY(-2px); }

/* Values Bar */
.values-bar { background: #2d2823; color: #d5cec4; padding: 45px 0; border-bottom: 1px solid rgba(184,154,112,0.15); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.value-number { display: block; font-family: 'Cinzel', serif; font-size: 2.2rem; color: #d4af37; margin-bottom: 6px; }
.value-icon { display: block; font-size: 1.3rem; color: #d4af37; margin-bottom: 6px; }
.value-text { font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }

/* Section styles */
.section-accent { display: inline-block; color: #8b6914; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-family: 'Cinzel', serif; font-size: 2.2rem; color: #2d2823; margin-bottom: 18px; line-height: 1.25; }
.section-title.center { text-align: center; }
.section-subtitle { color: #6b5d50; font-size: 1.05rem; margin-bottom: 45px; text-align: center; }
.section-header { text-align: center; margin-bottom: 20px; }

/* About */
.about { padding: 100px 0; background: #faf8f5; }
.about-header { text-align: center; margin-bottom: 50px; }
.about-body { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text p { margin-bottom: 18px; color: #5a4d42; font-size: 1.02rem; }
.about-text .lead { font-size: 1.15rem; color: #3d3229; font-weight: 400; }
.about-quote { margin-top: 30px; padding: 25px 30px; border-left: 3px solid #d4af37; background: #fff; }
.about-quote blockquote { font-family: 'Cinzel', serif; font-size: 1.1rem; color: #5a4d42; font-style: italic; line-height: 1.6; margin-bottom: 12px; }
.about-quote cite { color: #8b6914; font-size: 0.9rem; font-weight: 600; font-style: normal; }
.about-image { border-radius: 2px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* Services */
.services { padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 40px; }
.service-card { background: #fff; border-radius: 2px; overflow: hidden; box-shadow: 0 5px 25px rgba(0,0,0,0.07); transition: all 0.35s; border: 1px solid #ede8e0; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 45px rgba(0,0,0,0.12); }
.service-image { height: 200px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-image img { transform: scale(1.05); }
.service-content { padding: 28px; }
.service-content h3 { font-family: 'Cinzel', serif; font-size: 1.3rem; color: #2d2823; margin-bottom: 12px; }
.service-content p { color: #6b5d50; font-size: 0.95rem; margin-bottom: 15px; }
.service-content ul { list-style: none; }
.service-content ul li { padding: 4px 0; padding-left: 20px; position: relative; color: #5a4d42; font-size: 0.9rem; }
.service-content ul li::before { content: '\25C8'; position: absolute; left: 0; color: #8b6914; font-size: 0.7rem; }

/* Work */
.work { padding: 100px 0; background: #faf8f5; }
.work-grid { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 20px; margin-top: 40px; }
.work-item { position: relative; border-radius: 2px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.work-item:hover img { transform: scale(1.05); }
.work-item.large { grid-row: span 2; }
.work-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(30,25,20,0.85)); padding: 25px; color: #f5f0e8; }
.work-caption h4 { font-family: 'Cinzel', serif; font-size: 1.1rem; margin-bottom: 4px; }
.work-caption span { font-size: 0.85rem; opacity: 0.85; }

/* CTA */
.cta-section { background: linear-gradient(135deg, #2d2823 0%, #3d3229 100%); padding: 90px 0; text-align: center; }
.cta-content h2 { font-family: 'Cinzel', serif; font-size: 2rem; color: #f5f0e8; margin-bottom: 18px; }
.cta-content p { color: #b8a99a; font-size: 1.05rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Contact */
.contact { padding: 100px 0; background: #faf8f5; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info p { color: #5a4d42; margin-bottom: 30px; font-size: 1.02rem; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-block { padding-bottom: 18px; border-bottom: 1px solid #e0d8cc; }
.contact-block:last-child { border-bottom: none; }
.contact-label { display: block; font-size: 0.75rem; color: #8b6914; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-bottom: 6px; }
.contact-value { font-size: 1.05rem; color: #2d2823; font-weight: 600; }
.contact-value:hover { color: #8b6914; }
.contact-form-wrapper { background: #fff; border-radius: 2px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.07); border: 1px solid #ede8e0; }
.contact-form h3 { font-family: 'Cinzel', serif; font-size: 1.4rem; color: #2d2823; margin-bottom: 25px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; color: #5a4d42; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #d8cfc2; border-radius: 2px; font-family: inherit; font-size: 1rem; transition: all 0.3s; background: #faf8f5; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #8b6914; background: #fff; }

/* Footer */
.footer { background: #1e1914; color: #a09890; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; padding-bottom: 40px; }
.footer-logo-text { font-family: 'Cinzel', serif; color: #d4af37; font-size: 1.2rem; margin-bottom: 15px; letter-spacing: 1px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4 { color: #d5cec4; font-size: 0.9rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #a09890; font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: #d4af37; }
.footer-contact p { margin-bottom: 10px; font-size: 0.92rem; }
.footer-contact a { color: #a09890; transition: color 0.3s; }
.footer-contact a:hover { color: #d4af37; }
.footer-bottom { border-top: 1px solid #2d2823; padding: 22px 0; text-align: center; font-size: 0.85rem; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 992px) {
    .about-body, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .work-item.large { grid-row: span 1; }
    .values-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 2.6rem; }
}
@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav-menu { position: fixed; top: 60px; left: 0; right: 0; background: rgba(45,40,35,0.98); flex-direction: column; padding: 30px; gap: 18px; transform: translateX(-100%); transition: transform 0.3s; box-shadow: 0 5px 20px rgba(0,0,0,0.3); }
    .nav-menu.active { transform: translateX(0); }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .about, .services, .contact, .work, .cta-section { padding: 60px 0; }
    .section-title { font-size: 1.7rem; }
    .contact-form-wrapper { padding: 25px; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.7rem; }
    .btn { padding: 12px 24px; font-size: 0.8rem; }
    .values-grid { grid-template-columns: 1fr; }
}
