/* ============================================================
   Wildlife Removal Agent — style.css
   Palette: deep forest / warm sand / copper accent
   ============================================================ */

:root {
    --forest: #14342b;
    --forest-2: #1d4a3c;
    --pine: #2e6b52;
    --sage: #eef4ef;
    --sand: #faf7f0;
    --copper: #d97b29;
    --copper-dark: #b5621c;
    --ink: #1c211e;
    --muted: #5c6862;
    --line: #e3e8e2;
    --white: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 18px 48px rgba(20, 52, 43, .14);
    --shadow-sm: 0 6px 20px rgba(20, 52, 43, .08);
    --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Fraunces', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 22px; }

/* ---------- Notice banner ---------- */
.notice-banner {
    background: #fff6e8;
    border-bottom: 1px solid #f0dfc2;
    font-size: .88rem;
    color: #5a4419;
}
.notice-banner__inner {
    max-width: 1160px; margin: 0 auto;
    display: flex; align-items: center; gap: 12px;
    padding: 9px 22px;
}
.notice-banner__icon { flex-shrink: 0; }
.notice-banner__text { flex: 1; }
.notice-banner__close {
    background: none; border: none; cursor: pointer;
    font-size: 1rem; color: #a08249; padding: 4px 8px;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 60;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 22px; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
    width: 42px; height: 42px; border-radius: 12px;
    background: var(--forest);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.logo-mark svg { width: 24px; height: 24px; }
.logo-text {
    font-family: var(--font-display);
    font-weight: 700; font-size: 1.18rem; line-height: 1.1;
    color: var(--forest);
}
.logo-text small {
    display: block; font-family: var(--font);
    font-size: .62rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--copper);
}
.header-right { display: flex; align-items: center; gap: 18px; }
.header-hours { text-align: right; font-size: .78rem; color: var(--muted); line-height: 1.35; display: none; }
.header-hours strong { color: var(--forest); font-size: .85rem; }
.header-phone {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--copper); color: #fff;
    font-weight: 800; font-size: 1.02rem;
    padding: 12px 22px; border-radius: 999px;
    text-decoration: none; white-space: nowrap;
    box-shadow: 0 8px 22px rgba(217, 123, 41, .35);
    transition: transform .15s ease, box-shadow .15s ease;
}
.header-phone:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(217, 123, 41, .45); }
.header-phone svg { width: 17px; height: 17px; }

@media (min-width: 760px) { .header-hours { display: block; } }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background:
        radial-gradient(1100px 520px at 85% -10%, rgba(217, 123, 41, .16), transparent 60%),
        radial-gradient(900px 600px at -10% 110%, rgba(46, 107, 82, .35), transparent 55%),
        linear-gradient(160deg, var(--forest) 0%, var(--forest-2) 100%);
    color: #fff;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 6l6 12 13 2-9 9 2 13-12-6-12 6 2-13-9-9 13-2z' fill='%23ffffff' fill-opacity='0.022'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-content {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr;
    gap: 44px; align-items: center;
    padding-top: 64px; padding-bottom: 72px;
}
@media (min-width: 920px) {
    .hero-content { grid-template-columns: 1.05fr .95fr; padding-top: 84px; padding-bottom: 96px; }
}
.hero-location {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px; padding: 7px 16px;
    font-size: .84rem; font-weight: 700; letter-spacing: .02em;
    margin-bottom: 20px;
}
.hero-location::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: #6ee7a8;
    box-shadow: 0 0 0 4px rgba(110, 231, 168, .25);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(110, 231, 168, .3); }
    50% { box-shadow: 0 0 0 7px rgba(110, 231, 168, .08); }
}
.hero h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.08; letter-spacing: -.01em;
    margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: #f4b06a; }
.hero-lead {
    font-size: 1.1rem; color: rgba(255, 255, 255, .84);
    max-width: 520px; margin-bottom: 30px;
}
.hero-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-bottom: 26px; }
.btn-call {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--copper); color: #fff;
    font-weight: 800; font-size: 1.22rem;
    padding: 18px 34px; border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(217, 123, 41, .4);
    transition: transform .15s ease, box-shadow .15s ease;
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(217, 123, 41, .5); }
.btn-call svg { width: 21px; height: 21px; }
.btn-call small { display: block; font-size: .72rem; font-weight: 600; opacity: .9; letter-spacing: .05em; text-transform: uppercase; }
.hero-note { font-size: .86rem; color: rgba(255, 255, 255, .68); }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: .9rem; color: rgba(255,255,255,.88); }
.hero-points span { display: inline-flex; align-items: center; gap: 7px; }
.hero-points svg { width: 15px; height: 15px; color: #6ee7a8; }

/* Hero card */
.hero-card {
    background: #fff; color: var(--ink);
    border-radius: 20px; padding: 30px 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .3);
}
.hero-card h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--forest); margin-bottom: 4px; }
.hero-card > p { font-size: .88rem; color: var(--muted); margin-bottom: 18px; }
.dispatch-list { list-style: none; display: grid; gap: 12px; margin-bottom: 20px; }
.dispatch-list li {
    display: flex; gap: 12px; align-items: flex-start;
    background: var(--sage); border-radius: var(--radius-sm);
    padding: 12px 14px; font-size: .9rem;
}
.dispatch-list .d-icon {
    width: 34px; height: 34px; flex-shrink: 0;
    border-radius: 9px; background: var(--forest);
    display: flex; align-items: center; justify-content: center;
}
.dispatch-list .d-icon svg { width: 17px; height: 17px; color: #fff; }
.dispatch-list strong { display: block; color: var(--forest); font-size: .92rem; }
.dispatch-list span:last-child { color: var(--muted); font-size: .82rem; }
.hero-card .btn-block {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--forest); color: #fff;
    font-weight: 800; font-size: 1.05rem;
    padding: 15px; border-radius: 12px; text-decoration: none;
    transition: background .15s ease;
}
.hero-card .btn-block:hover { background: var(--forest-2); }
.hero-card .btn-block svg { width: 18px; height: 18px; }
.hero-card .card-fine { text-align: center; font-size: .74rem; color: var(--muted); margin-top: 10px; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--sand); border-bottom: 1px solid var(--line); }
.trust-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 22px; padding: 30px 22px;
}
@media (min-width: 820px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item .t-icon {
    width: 46px; height: 46px; flex-shrink: 0;
    border-radius: 13px; background: #fff;
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm);
}
.trust-item .t-icon svg { width: 22px; height: 22px; color: var(--pine); }
.trust-item strong { display: block; font-size: .95rem; color: var(--forest); }
.trust-item span { font-size: .8rem; color: var(--muted); }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-eyebrow {
    display: inline-block;
    font-size: .74rem; font-weight: 800; letter-spacing: .16em;
    text-transform: uppercase; color: var(--copper);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    line-height: 1.15; color: var(--forest);
    margin-bottom: 14px;
}
.section-sub { color: var(--muted); max-width: 640px; font-size: 1.02rem; }
.section-head { margin-bottom: 46px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* ---------- Animals ---------- */
.animals { background: var(--white); }
.animal-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (min-width: 640px) { .animal-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 940px) { .animal-grid { grid-template-columns: repeat(6, 1fr); } }
.animal-item {
    background: var(--sand); border: 1px solid var(--line);
    border-radius: var(--radius-sm); padding: 16px 12px;
    text-align: center; font-weight: 700; font-size: .9rem;
    color: var(--forest);
    transition: transform .15s ease, box-shadow .15s ease;
}
.animal-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.animal-item .a-emoji { display: block; font-size: 1.5rem; margin-bottom: 6px; }
.animal-more { text-align: center; margin-top: 22px; font-size: .92rem; color: var(--muted); }
.animal-more a { color: var(--copper-dark); font-weight: 700; }

/* ---------- Services ---------- */
.services { background: var(--forest); color: #fff; }
.services .section-title { color: #fff; }
.services .section-sub { color: rgba(255, 255, 255, .72); }
.service-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 700px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius); padding: 26px 24px;
    transition: background .2s ease, transform .15s ease;
}
.service-card:hover { background: rgba(255, 255, 255, .1); transform: translateY(-3px); }
.service-card .s-icon {
    width: 48px; height: 48px; border-radius: 13px;
    background: var(--copper);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.service-card .s-icon svg { width: 23px; height: 23px; color: #fff; }
.service-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.service-card p { font-size: .9rem; color: rgba(255, 255, 255, .72); }

/* ---------- Why us ---------- */
.why { background: var(--sand); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 700px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 28px 26px;
    display: flex; gap: 18px; align-items: flex-start;
    box-shadow: var(--shadow-sm);
}
.why-card .w-icon {
    width: 50px; height: 50px; flex-shrink: 0;
    border-radius: 14px; background: var(--sage);
    display: flex; align-items: center; justify-content: center;
}
.why-card .w-icon svg { width: 24px; height: 24px; color: var(--pine); }
.why-card h3 { font-size: 1.06rem; color: var(--forest); margin-bottom: 6px; }
.why-card p { font-size: .92rem; color: var(--muted); }

/* ---------- Steps ---------- */
.steps-section { background: #fff; }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 22px; counter-reset: step; }
@media (min-width: 820px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step {
    position: relative;
    background: var(--sand); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 30px 26px 26px;
}
.step-num {
    position: absolute; top: -18px; left: 24px;
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--copper); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1rem;
    box-shadow: 0 6px 16px rgba(217, 123, 41, .4);
}
.step h3 { font-size: 1.05rem; color: var(--forest); margin: 8px 0 8px; }
.step p { font-size: .92rem; color: var(--muted); }
.steps-cta { text-align: center; margin-top: 44px; }

/* ---------- Stats ---------- */
.stats { background: var(--forest-2); color: #fff; padding: 60px 0; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; text-align: center; }
@media (min-width: 760px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item .num {
    font-family: var(--font-display);
    font-size: 2.3rem; font-weight: 600; color: #f4b06a;
    line-height: 1.1;
}
.stat-item .label { font-size: .86rem; color: rgba(255, 255, 255, .72); margin-top: 4px; }

/* ---------- Reviews ---------- */
.reviews { background: var(--sand); }
.review-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 820px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 26px 24px;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; gap: 14px;
}
.testimonial-card .stars { color: #eba832; font-size: .95rem; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: .94rem; color: var(--ink); flex: 1; }
.testimonial-card figcaption { display: flex; align-items: center; gap: 11px; }
.testimonial-card .avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--forest); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: .88rem;
}
.testimonial-card .who strong { display: block; font-size: .9rem; color: var(--forest); }
.testimonial-card .who span { font-size: .78rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { background: #fff; }
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
    border: 1px solid var(--line); border-radius: var(--radius-sm);
    background: var(--sand); overflow: hidden;
}
.faq-item summary {
    cursor: pointer; list-style: none;
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    padding: 18px 22px;
    font-weight: 700; font-size: .98rem; color: var(--forest);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; font-size: 1.3rem; color: var(--copper);
    transition: transform .2s ease; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 22px 20px; font-size: .92rem; color: var(--muted); }

/* ---------- Service area ---------- */
.area { background: var(--sand); }
.area-inner {
    display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center;
}
@media (min-width: 880px) { .area-inner { grid-template-columns: 1fr 1fr; } }
.area-map {
    background: var(--forest);
    border-radius: 20px; padding: 40px 34px;
    color: #fff; text-align: center;
    box-shadow: var(--shadow);
}
.area-map .pin {
    width: 64px; height: 64px; margin: 0 auto 18px;
    border-radius: 50%; background: rgba(255, 255, 255, .12);
    display: flex; align-items: center; justify-content: center;
}
.area-map .pin svg { width: 30px; height: 30px; color: #f4b06a; }
.area-map h3 { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 8px; }
.area-map p { font-size: .9rem; color: rgba(255, 255, 255, .72); margin-bottom: 20px; }
.area-map .btn-call { font-size: 1.05rem; padding: 14px 26px; }

/* ---------- Final CTA ---------- */
.final-cta {
    background:
        radial-gradient(800px 400px at 20% 0%, rgba(217, 123, 41, .25), transparent 55%),
        linear-gradient(160deg, var(--forest) 0%, var(--forest-2) 100%);
    color: #fff; text-align: center;
}
.final-cta .section-title { color: #fff; }
.final-cta p { color: rgba(255, 255, 255, .78); max-width: 560px; margin: 0 auto 30px; }
.final-cta .hours-line { font-size: .88rem; margin-top: 18px; color: rgba(255,255,255,.65); }

/* ---------- Footer ---------- */
.site-footer { background: #0e211b; color: #a9bab1; font-size: .88rem; }
.footer-top {
    display: grid; grid-template-columns: 1fr; gap: 36px;
    padding: 56px 22px 40px;
}
@media (min-width: 820px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; } }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { margin-top: 14px; font-size: .84rem; line-height: 1.65; }
.footer-col h4 {
    color: #fff; font-size: .8rem; font-weight: 800;
    letter-spacing: .12em; text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { text-decoration: none; transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-phone-big {
    display: inline-flex; align-items: center; gap: 9px;
    color: #fff; font-weight: 800; font-size: 1.15rem;
    text-decoration: none; margin-bottom: 10px;
}
.footer-phone-big svg { width: 18px; height: 18px; color: var(--copper); }
.footer-col .hours { font-size: .82rem; line-height: 1.7; }
.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, .09);
    padding: 24px 22px 30px;
    font-size: .76rem; color: #7d8f86; line-height: 1.7;
}
.footer-legal a { color: #a9bab1; }
.footer-legal .copyright { margin-top: 12px; }

/* ---------- Legal pages ---------- */
.legal-hero {
    background: var(--forest); color: #fff;
    padding: 56px 0 48px;
}
.legal-hero h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem, 4vw, 2.5rem); }
.legal-hero p { color: rgba(255, 255, 255, .7); margin-top: 8px; font-size: .92rem; }
.legal-body { padding: 56px 0 80px; }
.legal-body .container { max-width: 820px; }
.legal-body h2 {
    font-family: var(--font-display); font-weight: 600;
    color: var(--forest); font-size: 1.35rem;
    margin: 38px 0 12px;
}
.legal-body h3 { color: var(--forest); font-size: 1.05rem; margin: 26px 0 8px; }
.legal-body p, .legal-body li { color: #3d4742; font-size: .95rem; margin-bottom: 12px; }
.legal-body ul { padding-left: 22px; margin-bottom: 16px; }
.legal-body li { margin-bottom: 8px; }
.legal-body strong { color: var(--forest); }
.legal-updated { font-size: .8rem; color: var(--muted); margin-bottom: 26px; }
.legal-callout {
    background: var(--sage); border: 1px solid var(--line);
    border-radius: var(--radius-sm); padding: 18px 20px;
    margin: 24px 0;
}

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 34px; }
@media (min-width: 720px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-card {
    background: var(--sand); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 28px 26px;
}
.contact-card .c-icon {
    width: 48px; height: 48px; border-radius: 13px;
    background: var(--forest);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.contact-card .c-icon svg { width: 22px; height: 22px; color: #fff; }
.contact-card h3 { color: var(--forest); font-size: 1.05rem; margin-bottom: 6px; }
.contact-card p { font-size: .9rem; color: var(--muted); margin-bottom: 12px; }
.contact-card a.big { color: var(--copper-dark); font-weight: 800; font-size: 1.12rem; text-decoration: none; }

/* ---------- Mobile sticky call bar ---------- */
.sticky-call {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--copper); color: #fff;
    font-weight: 800; font-size: 1.08rem;
    padding: 15px; text-decoration: none;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, .18);
}
.sticky-call svg { width: 19px; height: 19px; }
@media (min-width: 760px) { .sticky-call { display: none; } }
@media (max-width: 759px) { body { padding-bottom: 58px; } }

/* ---------- Animations ---------- */
.animate-in { opacity: 1 !important; transform: none !important; }
