/* CSS Variables */
:root {
  --dark-charcoal: #1f1f1f;
  --warm-brown: #6b3f24;
  --sand-tan: #d7b98e;
  --accent-gold: #d99022;
  --light-bg: #f8f5ef;
  --white: #ffffff;
  --text-color: #333333;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); color: var(--text-color); background-color: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--dark-charcoal); margin-bottom: 1rem; }
h1 { font-size: 3rem; font-weight: 700; line-height: 1.2; }
h2 { font-size: 2.5rem; text-align: center; }
p { margin-bottom: 1rem; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-light { background-color: var(--light-bg); }
.bg-dark { background-color: var(--dark-charcoal); color: var(--white); }
.bg-dark h2, .bg-dark h3 { color: var(--white); }

/* Buttons */
.btn { display: inline-block; padding: 12px 24px; border-radius: 4px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-align: center; border: 2px solid transparent; }
.btn-primary { background-color: var(--accent-gold); color: var(--white); }
.btn-primary:hover { background-color: #be7e1d; }
.btn-outline { background-color: transparent; border-color: var(--accent-gold); color: var(--accent-gold); }
.btn-outline:hover { background-color: var(--accent-gold); color: var(--white); }

/* Header */
header { background-color: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { display: flex; align-items: center; flex: 0 0 auto; }
.logo a { display: flex; align-items: center; }
.site-logo { display: block; width: clamp(190px, 22vw, 310px); max-height: 58px; object-fit: contain; }
.nav-menu { display: flex; gap: 30px; align-items: center; }
.nav-menu a { font-weight: 500; transition: color 0.3s; }
.nav-menu a:hover { color: var(--accent-gold); }
.header-right { display: flex; align-items: center; gap: 20px; }
.phone-link { font-weight: 600; color: var(--warm-brown); display: flex; align-items: center; gap: 8px; }
.mobile-menu-btn { display: none; font-size: 1.5rem; cursor: pointer; background: none; border: none; }

/* Hero */
.hero { position: relative; height: 80vh; min-height: 600px; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); background-size: cover; background-position: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(31, 31, 31, 0.6); }
.hero-content { position: relative; z-index: 1; max-width: 800px; padding: 0 20px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p { font-size: 1.25rem; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 15px; justify-content: center; }

/* Grid System */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Services */
.service-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: transform 0.3s; }
.service-card:hover { transform: translateY(-5px); }
.service-img { height: 240px; background-size: cover; background-position: center; }
.service-content { padding: 25px; text-align: center; }
.service-content h3 { margin-bottom: 10px; }
.service-content p { color: #666; margin-bottom: 20px; }

/* About Preview */
.about-preview { display: flex; align-items: center; gap: 50px; }
.about-img { flex: 1; border-radius: 8px; overflow: hidden; }
.about-img img { width: 100%; max-height: 520px; object-fit: cover; }
.about-content { flex: 1; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 15px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item .overlay { position: absolute; inset: 0; background: rgba(107, 63, 36, 0.8); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: var(--white); font-weight: 600; font-size: 1.2rem; transform: translateY(20px); transition: transform 0.3s; }
.gallery-item:hover .overlay span { transform: translateY(0); }

/* Testimonials */
.testimonial-card { background: var(--white); padding: 30px; border-radius: 8px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.stars { color: var(--accent-gold); font-size: 1.2rem; margin-bottom: 15px; }
.testimonial-card p { font-style: italic; color: #555; margin-bottom: 20px; }

/* Features List */
.features-list { list-style: none; margin-top: 20px; }
.features-list li { padding-left: 30px; position: relative; margin-bottom: 15px; font-weight: 500; }
.features-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-gold); font-weight: bold; }

/* CTA Banner */
.cta-banner { text-align: center; padding: 60px 20px; background-color: var(--warm-brown); color: var(--white); }
.cta-banner h2 { color: var(--white); margin-bottom: 20px; }

/* Footer */
footer { background-color: var(--dark-charcoal); color: #ccc; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: var(--white); margin-bottom: 20px; font-size: 1.2rem; }
.footer-logo { display: inline-flex; align-items: center; margin-bottom: 20px; }
.footer-logo img { display: block; width: min(100%, 260px); max-height: 48px; object-fit: contain; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { transition: color 0.3s; }
.footer-col a:hover { color: var(--accent-gold); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }

/* Service Page specific */
.service-header { height: 40vh; min-height: 300px; display: flex; align-items: center; justify-content: center; background-color: var(--dark-charcoal); color: var(--white); text-align: center; }
.service-header h1 { color: var(--white); margin: 0; }
.service-header[style*="background-image"] { background-position: center; }
.section .grid-2 > div > img { width: 100%; max-height: 520px; object-fit: cover; }

/* Contact Form */
.contact-form { background: var(--white); padding: 40px; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-control { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; font-size: 1rem; }
.form-control:focus { outline: none; border-color: var(--accent-gold); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-message { padding: 15px; border-radius: 4px; margin-top: 20px; display: none; }
.form-message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-message.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.map-embed { height: 300px; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.05); background: #e0e0e0; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Responsive */
@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .about-preview { flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-right .btn, .header-right .phone-link { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; box-shadow: 0 10px 10px rgba(0,0,0,0.1); }
  .nav-menu.active { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 2rem; }
  .hero-btns { flex-direction: column; }
}
@media (max-width: 480px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
