    /* ========== HERO SECTION ========== */
    /* Padding mirrors .page-hero: nav-height baked into top so the visible space
       above and below the content is equal. Auto height — section is as tall
       as its content. */
    .hero {
        padding: calc(var(--nav-height) + 5rem) 2rem 5rem;
        position: relative;
        background: var(--green-900);
        overflow: hidden;
    }

    .hero-bg-image {
        position: absolute;
        inset: 0;
        background: url('/assets/images/hero-wood-fence.jpg') center/cover no-repeat;
        opacity: 0.2;
    }

    .hero-bg-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(10, 46, 26, 0.92) 0%, rgba(10, 46, 26, 0.75) 50%, rgba(10, 46, 26, 0.6) 100%);
    }

    .hero-container {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .hero-content {
        max-width: 560px;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(4px);
        padding: 0.5rem 1rem;
        border-radius: var(--radius-sm);
        font-family: var(--font-heading);
        font-size: 0.9375rem;
        font-weight: 600;
        color: white;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .hero-badge-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-badge-icon svg {
        width: 18px;
        height: 18px;
        color: var(--green-200);
    }

    .hero h1 {
        font-size: clamp(2.25rem, 5vw, 3.5rem);
        color: white;
        margin-bottom: 1.5rem;
    }

    .hero h1 .accent {
        color: var(--brand-500);
    }

    .hero-text {
        font-size: 1.125rem;
        color: var(--green-100);
        margin-bottom: 2rem;
        max-width: 500px;
        line-height: 1.7;
    }

    .hero-ctas {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 3rem;
    }

    .hero-stats {
        display: flex;
        gap: 2.5rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat-number {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--brand-500);
        line-height: 1;
    }

    .stat-label {
        font-family: var(--font-heading);
        font-size: 0.875rem;
        color: var(--green-200);
        margin-top: 0.25rem;
        font-weight: 600;
        text-transform: uppercase;
    }

    .hero-visual {
        position: relative;
    }

    /* ========== AREAS BAR ========== */
    .areas-section {
        padding: 4rem 2rem;
        background: white;
        text-align: center;
        border-bottom: 1px solid var(--cream-200);
    }

    .areas-section-inner {
        max-width: 1000px;
        margin: 0 auto;
    }

    .areas-section h2 {
        color: var(--green-900);
        margin-bottom: 0.75rem;
    }

    .areas-section-desc {
        color: var(--text-medium);
        font-size: 1.0625rem;
        margin-bottom: 2rem;
    }

    .areas-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1.5rem;
    }

    .areas-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        background: var(--cream-50);
        border: 1px solid var(--cream-200);
        border-radius: var(--radius-sm);
        color: var(--green-800);
        text-decoration: none;
        font-family: var(--font-heading);
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.2s ease;
    }

    .areas-link:hover {
        background: var(--green-700);
        border-color: var(--green-700);
        color: white;
    }

    .areas-link svg {
        width: 18px;
        height: 18px;
        color: var(--green-600);
    }

    .areas-link:hover svg {
        color: white;
    }

    .areas-counties {
        color: var(--text-light);
        font-size: 0.9375rem;
    }

    /* ========== SECTIONS BASE ========== */
    .services, .gallery, .reviews, .contact {
        padding: 6rem 2rem;
    }

    .services {
        background: var(--cream-50);
    }

    .gallery {
        background: var(--cream-100);
    }

    .reviews {
        background: var(--cream-50);
    }

    .contact {
        background: linear-gradient(135deg, var(--cream-100) 0%, var(--cream-50) 100%);
    }

    /* ========== SERVICES GRID ========== */
    .services-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .service-card {
        background: white;
        border-radius: var(--radius-sm);
        overflow: hidden;
        transition: box-shadow 0.2s ease;
        box-shadow: var(--shadow-sm);
        text-decoration: none;
        display: flex;
        flex-direction: column;
    }

    @media (hover: hover) and (pointer: fine) {
        .service-card:hover {
            box-shadow: var(--shadow-md);
        }
    }

    .service-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .service-content {
        padding: 1.25rem 1.5rem 1.5rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .service-card p { flex: 1; }

    .service-card h3 {
        font-size: 1.375rem;
        color: var(--green-800);
        margin-bottom: 0.5rem;
    }

    .service-card p {
        font-size: 0.9375rem;
        color: var(--text-medium);
        line-height: 1.6;
    }

    .service-link {
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        font-family: var(--font-heading);
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--green-700);
        text-transform: uppercase;
        margin-top: 1rem;
        transition: gap 0.2s ease;
    }

    .service-link svg {
        width: 16px;
        height: 16px;
    }

    .service-card:hover .service-link {
        gap: 0.625rem;
    }

    /* ========== GALLERY GRID ========== */
    .gallery-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .gallery-item {
        position: relative;
        border-radius: var(--radius-sm);
        overflow: hidden;
        cursor: pointer;
        aspect-ratio: 4 / 3;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    @media (hover: hover) and (pointer: fine) {
        .gallery-item:hover img {
            transform: scale(1.05);
        }
    }

    .gallery-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 50%, rgba(10, 46, 26, 0.85) 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 1rem;
    }

    .gallery-overlay h4 {
        font-size: 1rem;
        color: white;
        margin-bottom: 0.125rem;
    }

    .gallery-overlay span {
        font-size: 0.8125rem;
        color: white;
        display: flex;
        align-items: center;
        gap: 0.375rem;
    }

    .gallery-overlay span svg {
        width: 14px;
        height: 14px;
    }

    /* GLightbox caption styling */
    .glightbox-clean .gslide-description {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        max-width: 900px;
        width: 100%;
        background: linear-gradient(180deg, transparent 0%, rgba(10, 46, 26, 0.9) 100%);
        padding: 3rem 1.5rem 1.5rem;
    }

    .glightbox-clean .gslide-title {
        font-family: var(--font-heading);
        font-size: 1.25rem;
        color: white;
        margin-bottom: 0.25rem;
    }

    .glightbox-clean .gslide-desc {
        font-size: 0.875rem;
        color: var(--green-200);
    }

    .gallery-toggle {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }

    .gallery-toggle .btn {
        cursor: pointer;
    }

    /* ========== TRUST SECTION ========== */
    .trust {
        padding: 6rem 2rem;
        background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
        position: relative;
        overflow: hidden;
    }

    .trust::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('/assets/images/hero-wood-fence.jpg') center/cover no-repeat;
        opacity: 0.08;
        pointer-events: none;
    }

    .trust::after {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 80% 50% at 20% 80%, rgba(174, 219, 91, 0.06) 0%, transparent 70%),
            radial-gradient(ellipse 60% 40% at 85% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
        pointer-events: none;
    }

    .trust-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .trust-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .trust-header .section-title {
        color: white;
    }

    .trust-header .section-subtitle {
        color: var(--green-200);
    }

    .trust-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .trust-card {
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .trust-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .trust-icon svg {
        width: 32px;
        height: 32px;
        color: var(--brand-400);
    }

    .trust-card h3 {
        font-size: 1.25rem;
        color: white;
        margin-bottom: 0.375rem;
    }

    .trust-card p {
        font-size: 0.9375rem;
        color: var(--green-200);
        line-height: 1.5;
    }

    /* Reviews component styles in global.css */
    .reviews-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* ========== INSTANT ESTIMATE CALCULATOR ========== */
    .estimator {
        padding: 5rem 2rem;
        background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
    }

    .estimator-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .estimator-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .estimator-header h2 {
        color: white;
        margin-bottom: 0.75rem;
    }

    .estimator-header p {
        color: var(--green-200);
        font-size: 1.125rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .estimator-card {
        background: white;
        border-radius: var(--radius-sm);
        padding: 2.5rem;
        box-shadow: var(--shadow-lg);
    }

    .estimator-form {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    @media (max-width: 1024px) and (min-width: 769px) {
        .estimator-form {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .estimator-field label {
        display: block;
        font-family: var(--font-heading);
        font-weight: 600;
        color: var(--green-800);
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        font-size: 0.875rem;
    }

    .estimator-field select,
    .estimator-field input {
        width: 100%;
        padding: 1rem;
        border: 2px solid var(--cream-300);
        border-radius: var(--radius-sm);
        font-size: 1.125rem;
        font-family: var(--font-body);
        transition: border-color 0.2s ease;
    }

    .estimator-field select:focus,
    .estimator-field input:focus {
        outline: none;
        border-color: var(--green-600);
    }

    .estimate-result {
        text-align: center;
        padding: 2rem;
        background: var(--cream-100);
        border-radius: var(--radius-sm);
        display: none;
    }

    .estimate-result.visible {
        display: block;
    }

    .estimate-label {
        font-family: var(--font-heading);
        font-size: 1rem;
        color: var(--text-medium);
        text-transform: uppercase;
        margin-bottom: 0.5rem;
    }

    .estimate-range {
        font-family: var(--font-heading);
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 700;
        color: var(--green-700);
        margin-bottom: 0.5rem;
    }

    .estimate-note {
        font-size: 0.9375rem;
        color: var(--text-light);
        margin-bottom: 1.5rem;
    }

    .estimate-cta {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* ========== STICKY MOBILE CTA ========== */
    .sticky-cta {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 0.625rem 1rem calc(0.625rem + env(safe-area-inset-bottom, 0px));
        box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
        z-index: 999;
        gap: 0.75rem;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .sticky-cta a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.875rem 1rem;
        border-radius: var(--radius-sm);
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 0.9375rem;
        text-transform: uppercase;
        text-decoration: none;
    }

    .sticky-cta-call {
        background: var(--green-700);
        color: white;
    }

    .sticky-cta-quote {
        background: var(--cream-100);
        color: var(--green-800);
        border: 2px solid var(--green-200);
    }

    .sticky-cta svg {
        width: 18px;
        height: 18px;
    }

    /* ========== TRUST BADGES ========== */
    .trust-badges {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--cream-200);
    }

    .trust-badge {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8125rem;
        color: var(--text-medium);
    }

    .trust-badge svg {
        width: 18px;
        height: 18px;
        color: var(--green-600);
    }

    /* ========== SOCIAL PROOF COUNTER ========== */
    .social-proof {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: var(--cream-100);
        padding: 0.75rem 1.25rem;
        border-radius: var(--radius-full);
        font-size: 0.875rem;
        color: var(--green-800);
        margin-bottom: 1.5rem;
    }

    .social-proof svg {
        width: 16px;
        height: 16px;
        color: var(--green-600);
    }

    .social-proof strong {
        color: var(--green-700);
    }

    /* ========== RESPONSE TIME BADGE ========== */
    .response-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--green-700);
        color: white;
        padding: 0.625rem 1rem;
        border-radius: var(--radius-sm);
        font-family: var(--font-heading);
        font-size: 0.8125rem;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

    .response-badge svg {
        width: 16px;
        height: 16px;
    }

    /* ========== CONTACT SECTION ========== */
    .contact-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 4rem;
        align-items: start;
    }

    .contact-info h2 {
        font-size: clamp(2rem, 4vw, 2.75rem);
        color: var(--green-900);
        margin-bottom: 1rem;
    }

    .contact-info > p {
        font-size: 1.0625rem;
        color: var(--text-medium);
        margin-bottom: 2.5rem;
        max-width: 420px;
        line-height: 1.6;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .contact-item-icon {
        width: 44px;
        height: 44px;
        background: var(--green-700);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .contact-item-icon svg {
        width: 20px;
        height: 20px;
        color: white;
    }

    .contact-item-text h4 {
        font-size: 1rem;
        color: var(--green-800);
        margin-bottom: 0.125rem;
    }

    .contact-item-text p {
        font-size: 0.9375rem;
        color: var(--text-medium);
        line-height: 1.5;
    }

    .contact-form-wrapper {
        background: white;
        padding: 2.5rem;
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-md);
    }

    .contact-form-wrapper h3 {
        font-size: 1.75rem;
        color: var(--green-800);
        margin-bottom: 0.5rem;
    }

    .contact-form-wrapper > p {
        color: var(--text-medium);
        margin-bottom: 2rem;
        font-size: 0.9375rem;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        display: block;
        font-family: var(--font-heading);
        font-weight: 600;
        color: var(--green-800);
        margin-bottom: 0.375rem;
        font-size: 0.9375rem;
        text-transform: uppercase;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 0.875rem 1rem;
        border: 1px solid var(--cream-400);
        border-radius: var(--radius-sm);
        font-size: 1rem;
        font-family: var(--font-body);
        transition: border-color 0.2s ease;
        background: white;
        color: var(--text-dark);
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: none;
        border-color: var(--green-600);
    }

    .form-group textarea {
        min-height: 110px;
        resize: vertical;
    }

    .form-submit {
        width: 100%;
        padding: 1rem 2rem;
        background: var(--green-700);
        color: white;
        border: none;
        border-radius: var(--radius-sm);
        font-family: var(--font-heading);
        font-size: 1.125rem;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        text-transform: uppercase;
    }

    .form-submit:hover {
        background: var(--green-800);
    }

    .form-submit svg {
        width: 18px;
        height: 18px;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
        .hero-container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 3rem;
        }

        .hero-content {
            max-width: 100%;
        }

        .hero-text {
            max-width: 100%;
            margin: 0 auto 2rem;
        }

        .hero-ctas {
            justify-content: center;
        }

        .hero-stats {
            justify-content: center;
        }

        .hero-visual {
            max-width: 560px;
            margin: 0 auto;
        }

        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .trust-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .contact-container {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .hero {
            padding: calc(var(--nav-height) + 3rem) 1.5rem 3rem;
        }

        .hero-image-main {
            height: 360px;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .gallery-grid {
            grid-template-columns: 1fr;
        }

        .trust-grid {
            grid-template-columns: 1fr;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .contact-form-wrapper {
            padding: 1.5rem;
        }

        /* Estimator responsive */
        .estimator-form {
            grid-template-columns: 1fr;
        }

        /* Show sticky CTA on mobile */
        .sticky-cta {
            display: flex;
        }

        /* Add padding to body for sticky CTA */
        body {
            padding-bottom: 80px;
        }

        /* Trust badges stack */
        .trust-badges {
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }

        /* Tighter hero stats on mobile */
        .hero-stats {
            gap: 1.25rem;
        }

        /* Areas link pills — comfortable tap area */
        .areas-link {
            min-height: 44px;
            padding-top: 0.875rem;
            padding-bottom: 0.875rem;
        }
    }

    @media (max-width: 480px) {
        .estimate-cta {
            flex-direction: column;
        }

        .estimate-cta .btn {
            width: 100%;
        }

        /* Smaller stat number on small screens */
        .stat-number {
            font-size: 1.875rem;
        }
    }
