.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background:
        linear-gradient(90deg, rgba(31,77,46,.95), rgba(31,77,46,.82)),
        url("../images/tree-service-hero.jpg");
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 86px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr;
    gap: 38px;
    align-items: center;
}

.eyebrow {
    color: var(--marine-gold);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .08em;
    font-size: .82rem;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.7rem);
    line-height: .98;
    margin: 0 0 18px;
}

.hero-lead {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.hero-content p {
    max-width: 720px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 28px 0;
}

.btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 900;
    text-align: center;
}

.btn-primary {
    background: var(--forest-green);
    color: var(--white);
    border: 2px solid var(--marine-gold);
}

.btn-secondary {
    background: var(--white);
    color: var(--forest-green);
}

.btn-emergency {
    background: var(--marine-scarlet);
    color: var(--white);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-row span {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.24);
    padding: 9px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .9rem;
}

.hero-card,
.cta-box,
.answer-box {
    background: var(--white);
    color: var(--charcoal);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(0,0,0,.18);
    border-top: 6px solid var(--marine-gold);
}

.hero-card h2,
.answer-box h3 {
    margin-top: 0;
}

.section {
    padding: 72px 0;
}

.section.alt {
    background: var(--light-bg);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading h2,
.two-column h2,
.service-area-strip h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    margin: 0 0 14px;
    color: var(--forest-green);
}

.section-heading p,
.two-column p,
.service-area-strip p {
    line-height: 1.7;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    display: block;
    text-decoration: none;
    color: var(--charcoal);
    background: var(--white);
    padding: 26px;
    border-radius: 16px;
    border: 1px solid #e4e4e4;
    border-left: 5px solid var(--forest-green);
    transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0,0,0,.10);
    border-left-color: var(--marine-gold);
}

.service-card h3 {
    margin-top: 0;
    color: var(--forest-green);
}

.service-card p {
    line-height: 1.6;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: center;
}

.service-area-strip {
    background: var(--forest-green);
    color: var(--white);
    text-align: center;
}

.service-area-strip h2 {
    color: var(--white);
}

.service-area-strip p {
    max-width: 760px;
    margin: 0 auto 24px;
}

.cta-phone {
    font-size: 2rem;
    font-weight: 900;
    color: var(--forest-green);
    margin-top: 0;
}

@media (max-width: 900px) {
    .hero {
        padding: 54px 0;
    }

    .hero-grid,
    .two-column {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.35rem;
    }

    .hero-lead {
        font-size: 1.15rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

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

    .section {
        padding: 50px 0;
    }

    .hero-card,
    .cta-box,
    .answer-box {
        padding: 22px;
    }
}
