:root {
    --earth-dark: #1a2e1a;
    --earth-medium: #2d4a2d;
    --earth-light: #3d5c3d;
    --cream: #faf8f5;
    --cream-dark: #f0ebe3;
    --amber: #d4a853;
    --amber-dark: #b8922e;
    --white: #ffffff;
    --text: #2c2c2c;
    --text-light: #5a5a5a;
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url(../fonts/dm-sans-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 600 800;
    font-display: swap;
    src: url(../fonts/fraunces-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--cream); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Skip link */
.skip-link {
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    background: var(--earth-dark); color: white; padding: 12px 24px;
    border-radius: 12px; z-index: 9999; transition: top 0.3s;
}
.skip-link:focus { top: 20px; }

/* Header */
header {
    position: sticky; top: 0; background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(0,0,0,0.06); z-index: 1000;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; max-width: 1200px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 200px; height: 110px; display: flex; align-items: center; justify-content: center; }
.logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.logo-text { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.1rem; line-height: 1.2; color: var(--earth-dark); }
.logo-text span { display: block; font-size: 0.75rem; font-family: 'DM Sans', sans-serif; font-weight: 500; color: var(--text-light); }

/* Navigation */
.main-nav { display: none; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
    display: flex; align-items: center; gap: 4px;
    font-weight: 500; font-size: 0.95rem; color: var(--text);
    padding: 8px 12px; border-radius: 8px; transition: all 0.3s;
}
.main-nav > ul > li > a:hover { color: var(--earth-medium); background: var(--cream); }
.main-nav > ul > li > a .nav-arrow { width: 12px; height: 12px; transition: transform 0.3s; }
.main-nav > ul > li:hover > a .nav-arrow { transform: rotate(180deg); }

/* Desktop dropdowns */
.nav-dropdown {
    display: none; position: absolute; top: 100%; left: 0; min-width: 220px;
    background: var(--white); border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 8px; z-index: 1001; border: 1px solid rgba(0,0,0,0.06);
}
.main-nav > ul > li:hover > .nav-dropdown { display: block; }
.nav-dropdown a {
    display: block; padding: 10px 14px; border-radius: 8px;
    font-size: 0.9rem; color: var(--text); transition: all 0.2s;
}
.nav-dropdown a:hover { background: var(--cream); color: var(--earth-medium); }

@media (min-width: 900px) {
    .main-nav { display: flex; align-items: center; }
}

/* Mobile menu button */
.mobile-menu-btn {
    display: flex; flex-direction: column; gap: 5px; background: none;
    border: none; cursor: pointer; padding: 8px;
}
.mobile-menu-btn span {
    display: block; width: 24px; height: 2px; background: var(--earth-dark);
    border-radius: 2px; transition: 0.3s;
}
@media (min-width: 900px) { .mobile-menu-btn { display: none; } }

/* Mobile nav */
.mobile-nav {
    display: none; position: fixed; top: 81px; left: 0; right: 0; bottom: 0;
    background: var(--white); padding: 24px; z-index: 999; overflow-y: auto;
}
.mobile-nav.active { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav > ul > li { border-bottom: 1px solid var(--cream-dark); }
.mobile-nav > ul > li > a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 0; font-weight: 500; font-size: 1.1rem; color: var(--text);
}
.mobile-nav > ul > li > a .nav-arrow { width: 16px; height: 16px; transition: transform 0.3s; }
.mobile-nav .nav-dropdown {
    display: none; padding: 0 0 12px 16px;
}
.mobile-nav .nav-dropdown.active { display: block; }
.mobile-nav .nav-dropdown a {
    display: block; padding: 10px 0; font-size: 0.95rem; color: var(--text-light);
}

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 12px; }
.phone-link {
    display: flex; align-items: center; gap: 8px; background: var(--earth-medium);
    color: white; padding: 12px 20px; border-radius: 32px;
    font-weight: 600; font-size: 0.95rem; transition: all 0.3s;
    white-space: nowrap; text-decoration: none;
}
.phone-link:hover { background: var(--earth-dark); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.phone-link svg { width: 18px; height: 18px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 16px 28px;
    border-radius: 32px; font-weight: 600; font-size: 1rem;
    transition: all 0.3s; border: none; cursor: pointer; text-decoration: none;
}
.btn-primary { background: var(--amber); color: var(--earth-dark); }
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.btn-secondary { background: rgba(255,255,255,0.25); color: white; backdrop-filter: blur(10px); }
.btn-secondary:hover { background: rgba(255,255,255,0.35); }
.btn-outline { background: transparent; color: var(--earth-dark); border: 2px solid var(--earth-dark); }
.btn-outline:hover { background: var(--earth-dark); color: white; }

/* Hero */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--earth-dark) 0%, var(--earth-medium) 50%, var(--earth-light) 100%);
    color: white; overflow: hidden;
}
.hero-content { position: relative; z-index: 1; padding: 60px 20px 80px; max-width: 1200px; margin: 0 auto; text-align: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.25); backdrop-filter: blur(10px);
    padding: 8px 16px; border-radius: 32px; font-size: 0.85rem; font-weight: 500; margin-bottom: 24px;
}
.hero-badge svg { width: 16px; height: 16px; color: var(--amber); }
.hero h1 { font-family: 'Fraunces', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; max-width: 700px; margin: 0 auto 20px; }
.hero p { font-size: 1.15rem; max-width: 550px; margin: 0 auto 32px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; justify-content: center; }
.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 24px; max-width: 600px; margin: 0 auto; }
.stat { text-align: left; }
.stat-number { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 700; color: var(--amber); }
.stat-label { font-size: 0.85rem; opacity: 0.95; }

/* Sections */
.section { padding: 70px 20px; }
.section-light { background: var(--white); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--earth-dark); color: white; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-label {
    display: inline-block; font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--earth-medium); margin-bottom: 12px;
}
.section-dark .section-label { color: var(--amber); }
.section-title { font-family: 'Fraunces', serif; font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 700; color: var(--earth-dark); margin-bottom: 16px; }
.section-dark .section-title { color: white; }
.section-desc { font-size: 1.05rem; color: var(--text-light); }
.section-dark .section-desc { color: rgba(255,255,255,0.95); }

/* Services Grid */
.services { padding: 80px 20px; background: var(--cream); }
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px; max-width: 1200px; margin: 0 auto;
}
.service-card {
    background: var(--white); border-radius: 16px; padding: 28px;
    border: 1px solid var(--cream-dark); transition: all 0.3s; position: relative;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); border-color: var(--earth-light); }
.service-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--cream), var(--cream-dark)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 28px; }
.service-card h3 { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 700; color: var(--earth-dark); margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 16px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--earth-medium); font-size: 0.9rem; }
.service-link::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; }
.service-link svg { width: 16px; height: 16px; transition: transform 0.3s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* Reviews */
.reviews { padding: 80px 20px; background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.review-card { background: var(--cream); border-radius: 16px; padding: 24px; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.review-stars { display: flex; gap: 4px; margin-bottom: 14px; }
.review-stars svg { width: 18px; height: 18px; fill: var(--amber); color: var(--amber); }
.review-text { font-size: 0.95rem; margin-bottom: 16px; line-height: 1.7; color: var(--text); }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; background: linear-gradient(135deg, var(--earth-light), var(--earth-medium)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 600; font-size: 1.1rem; }
.review-name { font-weight: 600; color: var(--earth-dark); }
.review-source, .review-location { font-size: 0.8rem; color: var(--text-light); }

/* FAQ Accordion */
.faq { padding: 80px 20px; background: var(--cream); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); margin-bottom: 8px; border-radius: 12px; overflow: hidden; }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 18px 22px; background: none; border: none; text-align: left; cursor: pointer;
    font-family: 'Fraunces', serif; font-weight: 600; color: var(--earth-dark); font-size: 1rem;
}
.faq-question:hover { background: var(--cream); }
.faq-question svg { width: 22px; height: 22px; transition: transform 0.3s; color: var(--earth-medium); flex-shrink: 0; }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-content { padding: 0 22px 22px; color: var(--text-light); line-height: 1.7; }

/* CTA Section */
.cta-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, var(--earth-medium), var(--earth-dark));
    text-align: center; color: white;
}
.cta-section h2 { font-family: 'Fraunces', serif; font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 14px; }
.cta-section > p { font-size: 1.1rem; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-phone {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'Fraunces', serif; font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 700; color: var(--amber); margin-bottom: 20px; text-decoration: none;
}
.cta-phone:hover { color: var(--amber-dark); }
.cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-buttons .btn-primary { background: var(--amber); color: var(--earth-dark); }
.cta-buttons .btn-secondary { background: rgba(255,255,255,0.25); color: white; }

/* Content Section */
.content-section { padding: 60px 20px; background: var(--white); }
.content-wrapper { max-width: 900px; margin: 0 auto; }
.content-wrapper h2 { font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--earth-dark); margin: 24px 0 12px; }
.content-wrapper h2:first-of-type, .content-wrapper h2:first-child { margin-top: 0; }
.content-wrapper p { margin-bottom: 14px; line-height: 1.8; color: var(--text); }
.content-wrapper ul { margin: 16px 0; padding-left: 24px; }
.content-wrapper li { margin-bottom: 8px; color: var(--text); }
.content-wrapper a { color: var(--earth-medium); font-weight: 600; }

/* Neighborhoods */
.neighborhoods-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; max-width: 800px; margin: 0 auto; }
.neighborhood-tag { padding: 14px; background: var(--cream); border-radius: 12px; font-weight: 500; text-align: center; color: var(--earth-dark); }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; max-width: 1000px; margin: 0 auto; }
.benefit { text-align: center; padding: 24px; }
.benefit-icon { width: 64px; height: 64px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 26px; }
.benefit h3 { font-family: 'Fraunces', serif; margin-bottom: 8px; color: white; font-size: 1.2rem; }
.benefit p { font-size: 0.9rem; color: rgba(255,255,255,0.95); }

/* Other Areas */
.other-areas { padding: 50px 20px; background: var(--cream); }
.other-areas .section-header { margin-bottom: 30px; }
.other-areas .section-title { color: var(--earth-dark); }
.areas-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.area-link, .area-tag {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 20px; background: var(--white); border-radius: 12px;
    font-weight: 500; color: var(--earth-dark); transition: all 0.3s;
}
.area-link:hover, .area-link.current, .area-tag:hover { background: var(--earth-medium); color: white; }
.area-tag svg { width: 16px; height: 16px; }

/* Breadcrumb */
.breadcrumb { background: var(--cream-dark, #f0ebe3); padding: 12px 20px; font-size: 0.85rem; }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; }
.breadcrumb a { color: var(--earth-medium, #2d4a2d); text-decoration: underline; }
.breadcrumb span { color: var(--text-light, #5a5a5a); margin: 0 4px; }

/* Footer */
footer { background: var(--earth-dark); color: white; padding: 60px 20px 30px; }
.footer-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px; max-width: 1200px; margin: 0 auto 40px;
}
.footer-col h4 { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; color: var(--amber); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { opacity: 0.95; transition: opacity 0.3s; font-size: 0.95rem; }
.footer-col a:hover { opacity: 1; }
.footer-address { font-style: normal; opacity: 0.95; font-size: 0.95rem; line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; font-size: 0.85rem; opacity: 0.85; max-width: 1200px; margin: 0 auto; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 20px; }
.footer-links a { opacity: 0.95; }
.footer-links a:hover { opacity: 1; }
footer a { color: var(--amber); }

/* Pricing Cards */
.pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; }
.pricing-card { background: var(--white); border-radius: 16px; padding: 28px; text-align: center; border: 2px solid var(--cream-dark); }
.pricing-card.featured { border-color: var(--earth-medium); }
.pricing-label { font-size: 0.85rem; color: var(--text-light); margin-bottom: 8px; }
.pricing-size { font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--earth-dark); margin-bottom: 12px; }
.pricing-amount { font-family: 'Fraunces', serif; font-size: 2rem; color: var(--earth-medium); margin-bottom: 8px; }
.pricing-note { font-size: 0.85rem; color: var(--text-light); }

/* Pricing Table */
.pricing-table { width: 100%; border-collapse: collapse; margin: 24px 0; background: var(--white); border-radius: 12px; overflow: hidden; }
.pricing-table th, .pricing-table td { padding: 16px; text-align: left; border-bottom: 1px solid var(--cream); }
.pricing-table th { background: var(--earth-dark); color: white; font-weight: 600; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover { background: var(--cream); }

/* CTA Box */
.cta-box { background: var(--earth-medium); color: white; padding: 32px; border-radius: 16px; text-align: center; margin: 40px 0; }
.cta-box h3 { font-family: 'Fraunces', serif; font-size: 1.5rem; margin-bottom: 12px; }
.cta-box p { margin-bottom: 20px; opacity: 1; }
.cta-box a { display: inline-block; background: var(--amber); color: var(--earth-dark); padding: 14px 28px; border-radius: 32px; font-weight: 600; text-decoration: none; }
.cta-box a:hover { background: var(--amber-dark); }

/* Tip Box */
.tip-box { background: #fffbeb; border-left: 4px solid var(--amber); padding: 20px; margin: 24px 0; border-radius: 0 8px 8px 0; }
.tip-box strong { color: var(--earth-dark); }

/* TL;DR Box */
.tldr-box { background: var(--cream-dark); border-left: 4px solid var(--amber); padding: 20px; margin: 0 auto; max-width: 900px; border-radius: 0 8px 8px 0; }
.tldr-box p { margin: 0; color: var(--text); }
.tldr-box a { color: var(--earth-medium); font-weight: 600; }

/* Blog Cards */
.blog-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: all 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }

/* Photo Cards */
.photo-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.photo-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.photo-card .photo-wrap { overflow: hidden; aspect-ratio: 4 / 3; background: var(--cream-dark); }
.photo-card .photo-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.photo-card:hover .photo-wrap img { transform: scale(1.05); }
.photo-card .photo-caption { padding: 16px 20px; }
.photo-card .photo-caption p { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }
.photo-card .photo-caption .location-tag { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; color: var(--earth-medium); margin-bottom: 4px; }

/* Gallery Cards */
.gallery-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid #e8e3db; transition: opacity 0.3s, transform 0.3s; }
.gallery-card.hidden { display: none; }

/* Area Cards */
.area-card { display: block; padding: 24px; background: var(--cream); border-radius: 12px; text-align: center; font-weight: 600; color: var(--earth-dark); transition: all 0.3s; }
.area-card:hover { background: var(--earth-medium); color: white; transform: translateY(-4px); }

/* Response Cards */
.response-card { background: var(--cream); border-radius: 16px; padding: 28px; text-align: center; }
.response-icon { font-size: 3rem; margin-bottom: 16px; }
.response-card h3 { font-family: 'Fraunces', serif; color: var(--earth-dark); margin-bottom: 10px; }
.response-card p { color: var(--text-light); font-size: 0.95rem; }

/* Contact Cards */
.contact-card { background: var(--cream); border-radius: 16px; padding: 32px; text-align: center; }
.contact-icon { font-size: 3rem; margin-bottom: 16px; }
.contact-card h2 { font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--earth-dark); margin-bottom: 12px; }
.contact-card p { color: var(--text-light); margin-bottom: 16px; }
.contact-card a { display: inline-block; background: var(--earth-medium); color: #fff; padding: 12px 24px; border-radius: 32px; font-weight: 600; }
.contact-card a:hover { background: var(--earth-dark); }

/* Calculator Card */
.calculator-card { background: var(--white); border: 2px solid #e0dbd3; border-radius: 16px; padding: 32px; margin: 32px 0; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.calculator-card h2 { font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--earth-dark); margin: 0 0 8px 0; text-align: center; }
.calc-subtitle { text-align: center; color: var(--text-light); font-size: 0.9rem; margin-bottom: 28px; }
.calc-section { margin-bottom: 24px; }
.calc-section label { display: block; font-weight: 700; color: var(--earth-dark); margin-bottom: 10px; font-size: 1rem; }
.calc-section .label-hint { font-weight: 400; color: var(--text-light); font-size: 0.85rem; display: block; margin-top: 2px; }
.btn-group { display: flex; flex-wrap: wrap; gap: 8px; }
.btn-group .calc-btn { flex: 1 1 auto; min-width: 80px; padding: 12px 16px; border: 2px solid var(--earth-medium); border-radius: 10px; background: var(--white); color: var(--earth-medium); font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.2s ease; text-align: center; }
.btn-group .calc-btn:hover { background: #e8f0e8; }
.btn-group .calc-btn.selected { background: var(--earth-medium); color: var(--white); border-color: var(--earth-medium); }
.btn-group .calc-btn .btn-sub { display: block; font-size: 0.75rem; font-weight: 400; opacity: 0.95; margin-top: 2px; }
.btn-group .calc-btn.selected .btn-sub { opacity: 1; }
.custom-stump-input { display: none; margin-top: 10px; }
.custom-stump-input.visible { display: block; }
.custom-stump-input input { width: 100px; padding: 10px 14px; border: 2px solid var(--earth-medium); border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--earth-dark); text-align: center; }
.custom-stump-input input:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(212,168,83,0.2); }
.custom-stump-input span { margin-left: 8px; color: var(--text-light); font-size: 0.9rem; }
.calc-progress { display: flex; gap: 6px; justify-content: center; margin-bottom: 24px; }
.calc-progress .progress-dot { width: 10px; height: 10px; border-radius: 50%; background: #e0dbd3; transition: background 0.3s ease; }
.calc-progress .progress-dot.filled { background: var(--earth-medium); }

/* Results Card */
.results-card { background: var(--earth-dark); color: var(--white); border-radius: 16px; padding: 32px; margin: 32px 0; text-align: center; opacity: 0; transform: translateY(16px); transition: opacity 0.4s ease, transform 0.4s ease; display: none; }
.results-card.visible { display: block; opacity: 1; transform: translateY(0); }
.results-label { font-size: 0.9rem; opacity: 0.95; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.results-range { font-family: 'Fraunces', serif; font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 700; color: var(--amber); margin-bottom: 16px; line-height: 1.2; }
.results-details { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin: 20px 0; }
.results-detail-item { background: rgba(255,255,255,0.1); border-radius: 10px; padding: 14px 20px; min-width: 160px; flex: 1; max-width: 250px; }
.results-detail-item .detail-label { font-size: 0.8rem; opacity: 0.9; margin-bottom: 4px; }
.results-detail-item .detail-value { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 700; color: var(--amber); }
.results-savings { background: rgba(212,168,83,0.15); border: 1px solid rgba(212,168,83,0.3); border-radius: 10px; padding: 16px 20px; margin: 20px auto; max-width: 480px; display: none; }
.results-savings.visible { display: block; }
.results-savings .savings-label { font-size: 0.85rem; opacity: 1; margin-bottom: 4px; }
.results-savings .savings-value { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 700; color: var(--amber); }
.results-disclaimer { font-size: 0.85rem; opacity: 0.9; margin: 20px 0 24px; line-height: 1.5; }
.results-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 20px; }
.results-cta a { display: inline-block; padding: 14px 28px; border-radius: 32px; font-weight: 600; text-decoration: none; font-size: 1rem; transition: transform 0.2s ease; }
.results-cta a:hover { transform: translateY(-2px); }
.results-cta .cta-primary { background: var(--amber); color: var(--earth-dark); }
.results-cta .cta-secondary { background: rgba(255,255,255,0.25); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }

/* Contain paint below fold */
.content-section, .cta-section { contain: layout style paint; }

/* Mobile */
@media (max-width: 600px) {
    .hero-content { padding: 40px 20px 60px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .phone-link span { display: none; }
    .phone-link { padding: 12px; }
    .section { padding: 50px 20px; }
    .services, .reviews, .faq, .cta-section, .content-section { padding: 60px 20px; }
    .calculator-card { padding: 20px 16px; }
    .btn-group .calc-btn { min-width: 70px; padding: 10px 12px; font-size: 0.85rem; }
    .results-card { padding: 24px 16px; }
    .results-detail-item { min-width: 130px; }
    .results-cta a { width: 100%; text-align: center; }
}

@media print {
    header, .trust-bar, .cta-section, footer { display: none; }
    body { font-size: 12pt; color: black; background: white; }
}
