:root {
    --primary-color: #fafaf9;
    --secondary-color: #794718;
    --text-color: #1c1917;
    --text-muted: #57534e;
    --accent-hover: #92400e;
    --card-bg: rgba(255, 255, 255, 0.95);
    --border-color: rgba(121, 71, 24, 0.15);
    --transition-speed: 0.3s;
    --font-heading: 'Lora', serif;
    --font-body: 'Karla', sans-serif;
    --hero-bg-url: url('https://img1.wsimg.com/isteam/ip/6c392556-738e-4a40-8158-da7d835afd04/IMG_2843.jpg');
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--primary-color); color: var(--text-color); }

.navbar {
    display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; background-color: rgba(255, 255, 255, 0.95); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(10px);
}
.logo { font-size: 1.35rem; font-weight: 700; font-family: var(--font-heading); color: #794718; }
.nav-links a { color: var(--text-color); text-decoration: none; margin: 0 18px; font-size: 0.95rem; font-weight: 600; }
.nav-links a:hover { color: var(--secondary-color); }
.cta-button-nav {
    background-color: var(--secondary-color); color: #fff; text-decoration: none; padding: 10px 22px; border-radius: 30px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
}

.hero-section {
    position: relative; height: 85vh; min-height: 550px; display: flex; justify-content: center; align-items: center; text-align: center; overflow: hidden; padding: 0 20px;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: var(--hero-bg-url); background-size: cover; background-position: center; z-index: 1;
}
.hero-bg-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.6) 100%); z-index: 2;
}
.hero-content { position: relative; z-index: 3; max-width: 800px; color: #ffffff; }
.hero-content h1 { font-size: 3.2rem; font-family: var(--font-heading); margin-bottom: 24px; line-height: 1.15; }
.hero-content p { font-size: 1.25rem; line-height: 1.6; margin-bottom: 40px; color: rgba(255,255,255,0.9); }

.btn { text-decoration: none; padding: 14px 30px; border-radius: 30px; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; display: inline-block; }
.btn-primary { background-color: #ea580c; color: #fff; margin-right: 15px; }
.btn-secondary { background: transparent; border: 2px solid #ea580c; color: #ea580c; }
.award-pill { border: 1px solid #ea580c; color: #ea580c; font-size: 0.75rem; text-transform: uppercase; padding: 6px 12px; border-radius: 30px; margin-bottom: 20px; display: inline-block; font-weight: 600; background: rgba(0,0,0,0.4); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.about-section, .services-section, .contact-section { padding: 100px 0; }
h2 { font-size: 2.3rem; font-family: var(--font-heading); text-align: center; margin-bottom: 50px; color: #794718; }
.about-lead { font-size: 1.25rem; line-height: 1.8; }
.hours-box { max-width: 600px; padding: 35px; background-color: var(--card-bg); border: 1px solid var(--border-color); border-left: 4px solid #794718; border-radius: 12px; }
.hours-box p { margin-bottom: 14px; font-size: 1.05rem; }

.service-card { padding: 40px 30px; background-color: var(--card-bg); border: 1px solid var(--border-color); border-radius: 12px; }
.service-card h3 { font-size: 1.4rem; font-family: var(--font-heading); margin-bottom: 16px; }
.service-card p { line-height: 1.65; }
.service-icon { font-size: 2rem; margin-bottom: 12px; }

.contact-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.contact-card { text-align: center; padding: 45px 35px; background-color: var(--card-bg); border: 1px solid var(--border-color); border-radius: 12px; }
.contact-phone { font-size: 1.5rem; font-weight: 700; text-decoration: none; }

footer { padding: 50px 0; text-align: center; border-top: 1px solid var(--border-color); color: var(--text-muted); font-size: 0.9rem; }
