/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--ab-border); backdrop-filter: blur(12px); }
.site-header__bar { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.site-branding { flex: 0 0 auto; }
.site-branding img, .custom-logo { display: block; width: 46px; height: 46px; max-height: none; object-fit: contain; border-radius: .35rem; }
.site-header__actions { display: flex; align-items: center; gap: .45rem; }
.desktop-nav, .header-portal { display: none; }
.header-order { min-height: 40px; padding: .65rem .78rem; font-size: .88rem; }
.menu-toggle { width: 44px; height: 44px; border: 0; background: transparent; display: inline-grid; place-items: center; }
.menu-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.menu-toggle__icon { display: grid; gap: 4px; width: 21px; }
.menu-toggle__icon span { height: 2px; background: var(--ab-text); border-radius: 5px; transition: transform .15s ease, opacity .15s ease; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { max-height: calc(100vh - 68px); overflow-y: auto; border-top: 1px solid var(--ab-border); background: #fff; box-shadow: 0 14px 30px rgba(0,0,0,.06); }
.mobile-nav__inner { padding-block: .5rem 1.35rem; }
.mobile-nav__menu, .desktop-nav__menu, .footer-menu { margin: 0; padding: 0; list-style: none; }
.mobile-nav__menu > li { border-bottom: 1px solid var(--ab-border); }
.mobile-nav__menu > li > a,
.mobile-submenu-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .92rem 0; border: 0; background: transparent; color: var(--ab-text); text-align: left; text-decoration: none; font-weight: 750; }
.mobile-submenu-toggle__icon { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .18s ease; }
.mobile-submenu-toggle[aria-expanded="true"] .mobile-submenu-toggle__icon { transform: rotate(225deg) translate(-2px, -2px); }
.mobile-nav__menu .sub-menu { list-style: none; margin: 0; padding: 0 0 .75rem .85rem; }
.mobile-nav__menu .sub-menu[hidden] { display: none !important; }
.mobile-nav__menu .sub-menu a { display: block; padding: .55rem .65rem; border-radius: .55rem; text-decoration: none; color: var(--ab-muted); }
.mobile-nav__menu .sub-menu a:active { background: var(--ab-surface); color: var(--ab-text); }
.mobile-nav__service { display: grid; gap: .65rem; padding-top: 1.25rem; }
.mobile-nav__human { margin-top: .4rem; padding-top: .85rem; border-top: 1px solid var(--ab-border); display: grid; gap: .12rem; }
.mobile-nav__human a { font-size: 1.2rem; font-weight: 800; text-decoration: none; }
.mobile-nav__human small { color: var(--ab-muted); }

/* Article */
.article-main { padding-top: 2.1rem; }
.article-header { padding-block: 1rem 1.6rem; }
.article-kicker { color: var(--ab-accent); font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.article-title { margin: .45rem 0 1rem; max-width: 18ch; }
.article-meta { display: flex; flex-wrap: wrap; gap: .5rem; color: var(--ab-muted); font-size: .9rem; }
.article-featured { margin-bottom: 2rem; }
.article-featured img { width: 100%; border-radius: var(--ab-radius-lg); }
.article-content { padding-bottom: 1rem; }

/* Article next step */
.article-next-step { margin-top: 3.4rem; padding-top: 2rem; border-top: 1px solid var(--ab-border); }
.article-next-step__intro { max-width: 620px; margin-bottom: 1.25rem; }
.article-next-step__intro h2 { margin: 0 0 .55rem; }
.article-next-step__intro p:last-child { margin: 0; color: var(--ab-muted); }
.article-next-step__grid { display: grid; gap: .8rem; }
.next-step-card { position: relative; display: grid; gap: .35rem; min-height: 180px; padding: 1.15rem; border: 1px solid var(--ab-border); border-radius: var(--ab-radius); background: #fff; color: var(--ab-text); text-decoration: none; overflow: hidden; transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease; }
.next-step-card:hover { transform: translateY(-2px); border-color: #c9c1ba; box-shadow: var(--ab-shadow); }
.next-step-card--primary { background: var(--ab-accent); border-color: var(--ab-accent); color: #fff; }
.next-step-card--primary:hover { border-color: var(--ab-accent-hover); }
.next-step-card__number { font-size: .72rem; font-weight: 850; letter-spacing: .08em; opacity: .58; }
.next-step-card strong { margin-top: .2rem; font-size: 1.08rem; }
.next-step-card > span:not(.next-step-card__number):not(.next-step-card__link) { color: var(--ab-muted); font-size: .93rem; line-height: 1.45; }
.next-step-card--primary > span:not(.next-step-card__number):not(.next-step-card__link) { color: rgba(255,255,255,.87); }
.next-step-card__link { align-self: end; margin-top: .5rem; font-weight: 800; }

.related-posts { margin-top: 3.25rem; }
.section-heading h2 { margin: 0 0 1.1rem; }
.related-grid { display: grid; gap: 1rem; }
.related-card { overflow: hidden; border: 1px solid var(--ab-border); border-radius: var(--ab-radius); background: #fff; }
.related-card__link { height: 100%; display: flex; flex-direction: column; text-decoration: none; }
.related-card__image { aspect-ratio: 16/9; background: var(--ab-surface); overflow: hidden; }
.related-card__image img { width: 100%; height: 100%; object-fit: cover; }
.related-card__body { padding: 1rem; }
.related-card__body h3 { margin: 0 0 1rem; }
.related-card__body span { font-weight: 750; }

/* Comments */
.comments-shell { margin-top: 3.75rem; margin-bottom: 4rem; }
.comments-area { padding-top: 2.2rem; border-top: 1px solid var(--ab-border); }
.comments-header { max-width: 620px; margin-bottom: 1.5rem; }
.comments-header h2 { margin: 0 0 .5rem; }
.comments-header p:last-child { margin-bottom: 0; color: var(--ab-muted); }
.comment-form-card { margin: 1.5rem 0 2.35rem; padding: 1.15rem; border: 1px solid var(--ab-border); border-radius: var(--ab-radius); background: var(--ab-surface); }
.comment-form-card h3 { margin-top: 0; }
.comment-form label { display: block; margin-bottom: .3rem; font-size: .9rem; font-weight: 750; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { width: 100%; border: 1px solid var(--ab-border); border-radius: .7rem; background: #fff; padding: .82rem; outline: none; transition: border-color .15s ease, box-shadow .15s ease; }
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--ab-accent); box-shadow: 0 0 0 3px var(--ab-accent-soft); }
.comment-form textarea { min-height: 155px; resize: vertical; }
.comment-list, .comment-list .children { list-style: none; margin: 0; padding: 0; }
.comment-list .children { margin: .15rem 0 .25rem .55rem; padding-left: .75rem; border-left: 2px solid var(--ab-border); }
.comment-card { margin: 0 0 1rem; }
.comment-card__inner { position: relative; padding: 1rem; border: 1px solid var(--ab-border); border-radius: var(--ab-radius); background: #fff; box-shadow: 0 3px 12px rgba(20,20,18,.025); }
.comment-card--staff > .comment-card__inner { border-color: #efc4b1; background: linear-gradient(135deg, #fff 0%, var(--ab-accent-soft) 145%); }
.comment-card--staff > .comment-card__inner::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; border-radius: var(--ab-radius) 0 0 var(--ab-radius); background: var(--ab-accent); }
.comment-card__header { display: flex; justify-content: space-between; gap: .75rem; align-items: flex-start; }
.comment-card__identity { display: flex; align-items: center; gap: .72rem; min-width: 0; }
.comment-card__avatar { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; }
.comment-card__author-row { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem .5rem; }
.comment-card__author { font-weight: 820; }
.comment-card__staff-badge { display: inline-flex; align-items: center; min-height: 22px; padding: .18rem .48rem; border-radius: 999px; background: var(--ab-accent); color: #fff; font-size: .67rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.comment-card__date { color: var(--ab-muted); font-size: .8rem; text-decoration: none; }
.comment-card__actions a { display: inline-flex; padding: .25rem .5rem; border-radius: .45rem; color: var(--ab-muted); font-size: .82rem; font-weight: 750; text-decoration: none; }
.comment-card__actions a:hover { background: var(--ab-surface); color: var(--ab-text); }
.comment-card__content { margin-top: .9rem; }
.comment-card__content > :last-child { margin-bottom: 0; }
.comment-awaiting-moderation { padding: .6rem .75rem; border-left: 3px solid var(--ab-accent); background: var(--ab-surface); }
.comment-pagination { display: flex; justify-content: space-between; gap: 1rem; margin: 1rem 0 1.5rem; font-size: .9rem; font-weight: 750; }
.comment-pagination a { display: inline-flex; padding: .5rem .7rem; border: 1px solid var(--ab-border); border-radius: .6rem; text-decoration: none; }
.comment-pagination--bottom { margin-top: 1.75rem; }

/* Footer */
.site-footer { margin-top: 4rem; padding: 2rem 0 1.25rem; background: var(--ab-dark); color: #fff; }
.footer-service { display: grid; gap: 1.2rem; padding: 1.4rem; margin-bottom: 2rem; background: #292a27; border: 1px solid #3b3c37; border-radius: var(--ab-radius-lg); }
.footer-service .eyebrow, .footer-service p { color: #cecec5; }
.footer-service h2 { margin: 0 0 .7rem; }
.footer-service__actions { display: grid; gap: .65rem; align-content: center; }
.button--footer-secondary { background: transparent; border-color: #5a5b54; color: #fff; }
.button--footer-secondary:hover { background: #343531; border-color: #74756d; color: #fff; }
.footer-grid { display: grid; gap: 2rem; padding-block: .5rem 2rem; }
.footer-brand img, .site-footer .custom-logo { width: 58px; height: 58px; border-radius: .4rem; object-fit: contain; }
.footer-grid h3 { margin-top: 0; font-size: 1rem; }
.footer-grid p, .footer-muted { color: #c2c2ba; }
.footer-phone { display: inline-block; font-size: 1.35rem; font-weight: 800; text-decoration: none; }
.footer-menu li + li { margin-top: .45rem; }
.footer-menu a { color: #d6d6ce; text-decoration: none; }
.footer-bottom { display: flex; flex-direction: column; gap: .65rem; padding-top: 1rem; border-top: 1px solid #3c3d37; color: #bdbdb5; font-size: .85rem; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: .65rem 1rem; }
.footer-legal-links a { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .18em; }
.footer-legal-links a:hover { color: #fff; }
.site-footer .text-link { color: #fff; }

/* Listings / utility */
.listing-main, .error-page { padding-block: 2.5rem 4rem; }
.listing-header { margin-bottom: 2rem; }
.listing-grid { display: grid; gap: 1rem; }
.listing-card { padding: 1.25rem; border: 1px solid var(--ab-border); border-radius: var(--ab-radius); }
.listing-card h2 { margin-top: 0; }
.listing-card h2 a { text-decoration: none; }
.error-page { min-height: 65vh; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; max-width: 760px; }
.error-page__actions { display: flex; flex-wrap: wrap; gap: .65rem; margin: 1rem 0 2rem; }

@media (min-width: 700px) {
  .article-next-step__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .next-step-card { min-height: 215px; padding: 1.3rem; }
  .related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .comment-form-card { padding: 1.35rem; }
  .footer-service { grid-template-columns: minmax(0, 1.5fr) minmax(220px, .7fr); padding: 2rem; }
  .footer-grid { grid-template-columns: 1.1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
  .listing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 960px) {
  .site-header__bar { min-height: 78px; }
  .site-branding img, .custom-logo { width: 54px; height: 54px; }
  .desktop-nav { display: block; margin-left: auto; }
  .desktop-nav__menu { display: flex; align-items: center; gap: .2rem; }
  .desktop-nav__menu > li { position: relative; }
  .desktop-nav__menu > li > a { display: block; padding: .75rem .65rem; text-decoration: none; font-weight: 700; font-size: .94rem; }
  .desktop-nav__menu .sub-menu { display: none; position: absolute; left: 0; top: 100%; min-width: 220px; margin: 0; padding: .45rem; list-style: none; background: #fff; border: 1px solid var(--ab-border); border-radius: .75rem; box-shadow: var(--ab-shadow); }
  .desktop-nav__menu li:hover > .sub-menu, .desktop-nav__menu li:focus-within > .sub-menu { display: block; }
  .desktop-nav__menu .sub-menu a { display: block; padding: .65rem .7rem; text-decoration: none; border-radius: .5rem; }
  .desktop-nav__menu .sub-menu a:hover { background: var(--ab-surface); }
  .header-portal { display: inline-flex; }
  .menu-toggle { display: none; }
  .article-main { padding-top: 3.2rem; }
  .article-header { padding-bottom: 2.2rem; }
  .comment-list .children { margin-left: 1rem; padding-left: 1.1rem; }
}

/* =====================
 * Home v0.3 – service design
 * ===================== */
.home-hero { padding: 3rem 0 2.5rem; background: linear-gradient(180deg, #fff 0%, var(--ab-surface) 100%); border-bottom: 1px solid var(--ab-border); }
.home-hero__grid { display: grid; gap: 2rem; }
.home-hero__copy { max-width: 760px; }
.home-hero h1 { margin: 0 0 1rem; max-width: 12ch; }
.home-hero__lead { max-width: 660px; margin: 0; color: var(--ab-muted); font-size: clamp(1.08rem, 3.6vw, 1.35rem); line-height: 1.5; }
.home-hero__actions { display: flex; flex-direction: column; align-items: stretch; gap: .8rem; margin-top: 1.4rem; }
.home-hero__phone { display: flex; flex-direction: column; justify-content: center; gap: .08rem; min-height: 54px; padding: .65rem .9rem; border: 1px solid var(--ab-border); border-radius: .8rem; background: rgba(255,255,255,.8); text-decoration: none; }
.home-hero__phone span { color: var(--ab-muted); font-size: .78rem; }
.home-hero__phone strong { font-size: 1rem; }
.home-hero__trust { display: grid; grid-template-columns: 1fr; gap: .7rem; }
.trust-signal { position: relative; display: grid; grid-template-columns: 10px 1fr; column-gap: .7rem; padding: .9rem 1rem; border: 1px solid var(--ab-border); border-radius: .9rem; background: rgba(255,255,255,.88); }
.trust-signal__dot { width: 8px; height: 8px; margin-top: .42rem; border-radius: 50%; background: var(--ab-accent); box-shadow: 0 0 0 5px var(--ab-accent-soft); }
.trust-signal strong, .trust-signal small { grid-column: 2; }
.trust-signal small { color: var(--ab-muted); }

.home-section { padding: 3.25rem 0; }
.home-section + .home-section { border-top: 1px solid var(--ab-border); }
.home-section__heading { max-width: 760px; margin-bottom: 1.4rem; }
.home-section__heading h2 { margin: 0 0 .8rem; }
.home-section__heading p:not(.eyebrow) { margin: 0; color: var(--ab-muted); font-size: 1.02rem; }
.home-section__heading--row { display: flex; flex-direction: column; gap: .75rem; max-width: none; }

.home-router { background: #fff; }
.home-router__grid { display: grid; gap: .8rem; }
.route-card { position: relative; display: grid; gap: .35rem; min-height: 172px; padding: 1.15rem; border: 1px solid var(--ab-border); border-radius: var(--ab-radius); background: #fff; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.route-card:hover { transform: translateY(-2px); box-shadow: var(--ab-shadow); border-color: #cfc6bd; }
.route-card--primary { background: var(--ab-accent); color: #fff; border-color: var(--ab-accent); }
.route-card__index { font-size: .72rem; font-weight: 850; letter-spacing: .08em; opacity: .65; }
.route-card h3 { margin: .25rem 0 0; font-size: 1.12rem; }
.route-card p { margin: 0; color: var(--ab-muted); font-size: .92rem; line-height: 1.5; }
.route-card--primary p { color: rgba(255,255,255,.84); }
.route-card__arrow { align-self: end; justify-self: end; font-size: 1.5rem; line-height: 1; }

.home-services { background: var(--ab-surface); }
.home-service-menu { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .65rem; margin: 0; padding: 0; list-style: none; }
.home-service-menu a { display: flex; align-items: center; min-height: 64px; padding: .9rem; border: 1px solid var(--ab-border); border-radius: .85rem; background: #fff; font-weight: 760; text-decoration: none; }
.home-service-menu a::after { content: "→"; margin-left: auto; color: var(--ab-accent); }

.home-experience { background: var(--ab-dark); color: #fff; }
.home-experience .eyebrow, .home-experience__intro p { color: #c9c9c2; }
.home-experience__intro { margin-bottom: 2rem; }
.experience-steps { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid #393a36; }
.experience-step { display: grid; grid-template-columns: 46px 1fr; gap: .8rem; padding: 1.2rem 0; border-bottom: 1px solid #393a36; }
.experience-step__number { color: var(--ab-accent); font-size: .8rem; font-weight: 850; letter-spacing: .06em; }
.experience-step h3 { margin: 0 0 .35rem; font-size: 1.05rem; }
.experience-step p { margin: 0; color: #c9c9c2; line-height: 1.55; }

.home-portal { background: #fff; }
.home-portal__grid { display: grid; gap: 1.5rem; }
.home-portal__copy h2 { margin-top: 0; }
.home-portal__copy p { color: var(--ab-muted); }
.portal-feature-list { display: grid; gap: .7rem; margin: 0; padding: 0; list-style: none; }
.portal-feature-list li { display: grid; gap: .15rem; padding: 1rem; border: 1px solid var(--ab-border); border-radius: .9rem; background: var(--ab-surface); }
.portal-feature-list strong { font-size: .98rem; }
.portal-feature-list span { color: var(--ab-muted); font-size: .88rem; }

.home-audiences { background: var(--ab-surface); }
.audience-grid { display: grid; gap: .8rem; }
.audience-card { display: block; padding: 1.25rem; border: 1px solid var(--ab-border); border-radius: var(--ab-radius); background: #fff; text-decoration: none; }
.audience-card__label { display: inline-flex; margin-bottom: .8rem; padding: .25rem .52rem; border-radius: 999px; background: var(--ab-accent-soft); color: var(--ab-accent-hover); font-size: .72rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.audience-card h3 { margin: 0 0 .55rem; font-size: 1.12rem; }
.audience-card p { margin: 0 0 1rem; color: var(--ab-muted); font-size: .92rem; line-height: 1.55; }
.home-data-teaser { display: grid; gap: .75rem; margin-top: 1rem; padding: 1.25rem; border-radius: var(--ab-radius); background: #fff; border: 1px solid var(--ab-border); }
.home-data-teaser h3, .home-data-teaser p { margin: 0; }
.home-data-teaser > p { color: var(--ab-muted); }

.home-proof { background: #fff; }
.home-proof__grid { display: grid; gap: 1.5rem; align-items: center; }
.home-proof h2 { margin-top: 0; }
.home-proof p { color: var(--ab-muted); }
.review-score { display: grid; justify-items: start; gap: .25rem; padding: 1.35rem; border: 1px solid var(--ab-border); border-radius: var(--ab-radius-lg); background: var(--ab-surface); }
.review-score strong { font-size: clamp(2rem, 10vw, 3.4rem); line-height: 1; letter-spacing: -.04em; }
.review-score span { color: var(--ab-accent); letter-spacing: .1em; }
.review-score small { color: var(--ab-muted); }

.home-editorial-content { border-top: 1px solid var(--ab-border); }

@media (min-width: 620px) {
  .home-hero__actions { flex-direction: row; align-items: stretch; }
  .home-hero__actions .button { min-width: 170px; }
  .home-router__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-service-menu { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .audience-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (min-width: 860px) {
  .home-hero { padding: 5.5rem 0 4rem; }
  .home-hero__grid { grid-template-columns: minmax(0,1.35fr) minmax(320px,.65fr); align-items: center; gap: 3rem; }
  .home-section { padding: 5rem 0; }
  .home-section__heading--row { flex-direction: row; justify-content: space-between; align-items: end; }
  .home-router__grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .route-card { min-height: 220px; padding: 1.35rem; }
  .home-service-menu { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .home-experience .site-container { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: 4rem; align-items: start; }
  .home-experience__intro { position: sticky; top: 110px; margin-bottom: 0; }
  .experience-steps { margin-top: 0; }
  .home-portal__grid { grid-template-columns: minmax(0,1fr) minmax(360px,.8fr); gap: 4rem; align-items: center; }
  .portal-feature-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .home-data-teaser { grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); align-items: center; gap: 2rem; padding: 1.5rem; }
  .home-proof__grid { grid-template-columns: minmax(0,1.3fr) minmax(300px,.7fr); gap: 4rem; }
}


/* Home v0.4 – pest-first situation selector */
.home-pest-selector { background: var(--ab-surface); }
.home-pest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}
.home-pest-card {
  display: block;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--ab-border);
  border-radius: 1rem;
  background: #fff;
  color: var(--ab-text);
  text-decoration: none;
  box-shadow: 0 1px 1px rgba(22, 24, 20, .03);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.home-pest-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ecece7;
}
.home-pest-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}
.home-pest-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #f1f0eb, #e6e4dc);
}
.home-pest-card__placeholder span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--ab-accent);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
}
.home-pest-card__body {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-height: 58px;
  padding: .8rem .85rem;
}
.home-pest-card__body strong { line-height: 1.2; }
.home-pest-card__arrow {
  margin-left: auto;
  color: var(--ab-accent);
  font-size: 1.15rem;
  transition: transform .18s ease;
}
.home-pest-card--disabled { opacity: .96; }
.home-pest-card--disabled .home-pest-card__media { background: #f2f1ec; }
.home-pest-card__status {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .22rem .55rem;
  border-radius: 999px;
  background: var(--ab-accent-soft);
  color: var(--ab-accent-hover);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.home-pest-selector__footer {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  margin-top: 1.1rem;
  color: var(--ab-muted);
}
.home-pest-selector__footer p { margin: 0; }
.home-pest-selector__footer .text-link { width: fit-content; }
.home-pest-card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--ab-accent) 36%, transparent);
  outline-offset: 3px;
}
@media (hover: hover) {
  .home-pest-card:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--ab-accent) 42%, var(--ab-border));
    box-shadow: 0 10px 26px rgba(22, 24, 20, .08);
  }
  .home-pest-card:not(.home-pest-card--disabled):hover .home-pest-card__image { transform: scale(1.035); }
  .home-pest-card:not(.home-pest-card--disabled):hover .home-pest-card__arrow { transform: translateX(3px); }
}
@media (min-width: 640px) {
  .home-pest-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-pest-selector__footer { flex-direction: row; gap: .6rem; align-items: baseline; }
}
@media (min-width: 980px) {
  .home-pest-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
  .home-pest-card__body { min-height: 64px; padding: .9rem 1rem; }
}
