@font-face {
    font-family: "Benz Grotesk Heavy";
    src: url("../fonts/benz-grotesk-heavy.ttf") format("truetype"),
         local("Benz Grotesk Heavy"),
         local("BenzGrotesk-Heavy");
    font-style: normal;
    font-weight: 900;
    font-display: swap;
}

@font-face {
    font-family: "Insaniburger with Cheese";
    src: url("../fonts/insaniburger-with-cheese.ttf") format("truetype"),
         local("Insaniburger with Cheese"),
         local("InsaniburgerWithCheese"),
         local("InsaniburgerwithCheese");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Coolvetica Regular";
    src: url("../fonts/coolvetica-regular.otf") format("opentype"),
         local("Coolvetica Regular"),
         local("CoolveticaRg-Regular"),
         local("Coolvetica");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

:root {
    --lime: #44d62c;
    --lime-light: #c9ffbd;
    --lime-wash: #e9ffe4;
    --forest: #00361d;
    --forest-mid: #1a5615;
    --forest-soft: #0a4a2c;
    --yellow: #f7e215;
    --ink: #07130d;
    --ink-soft: #35453b;
    --muted: #657169;
    --paper: #f4f5ef;
    --warm: #ede8e8;
    --white: #ffffff;
    --line: rgba(7, 19, 13, 0.14);
    --shadow: 0 24px 70px rgba(0, 54, 29, 0.12);
    --radius-sm: 14px;
    --radius: 24px;
    --radius-lg: 42px;
    --container: 1220px;
    --header-height: 86px;
    --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
    --font-title: "Benz Grotesk Heavy", "Arial Black", "Open Sans", Arial, sans-serif;
    --font-subtitle: "Insaniburger with Cheese", "Trebuchet MS", "Open Sans", Arial, sans-serif;
    --font-body: "Coolvetica Regular", Coolvetica, "Open Sans", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
summary {
    cursor: pointer;
}

p,
h1,
h2,
h3,
ul,
ol,
blockquote {
    margin-top: 0;
}

h1 { font-family: var(--font-title); font-weight: 900; }

h2,
h3 {
    font-family: var(--font-subtitle);
    font-weight: 400;
}

strong,
b { font-weight: 700; }

h1,
h2,
h3 {
    line-height: 1.08;
    letter-spacing: -0.045em;
}

h1 {
    font-size: clamp(3.25rem, 6.4vw, 6.15rem);
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2.35rem, 4.4vw, 4.5rem);
}

h3 {
    font-size: clamp(1.35rem, 2.2vw, 2rem);
}

::selection {
    color: var(--forest);
    background: var(--lime);
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 130px 0;
}

.section--paper {
    background: var(--paper);
}

.section--white {
    background: var(--white);
}

.section-heading {
    max-width: 780px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center > p:last-child {
    max-width: 660px;
    margin-inline: auto;
}

.large-copy {
    color: var(--ink);
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.5;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--lime);
    font-size: 0.74rem;
    font-family: var(--font-subtitle);
    font-weight: 400;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow > span:first-child {
    width: 24px;
    height: 2px;
    background: currentColor;
}

.eyebrow--dark {
    color: var(--forest);
}

.eyebrow--light {
    color: var(--lime-light);
}

.icon {
    flex: 0 0 auto;
    width: 1.2em;
    height: 1.2em;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--forest);
    border-radius: 8px;
    font-weight: 700;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.button {
    display: inline-flex;
    min-height: 58px;
    padding: 0 25px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
    transition: color 250ms var(--ease), background 250ms var(--ease), border-color 250ms var(--ease), transform 250ms var(--ease), box-shadow 250ms var(--ease);
}

.button .icon {
    transition: transform 250ms var(--ease);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button:hover .icon,
.button:focus-visible .icon {
    transform: translateX(4px);
}

.button--small {
    min-height: 46px;
    padding-inline: 20px;
    font-size: 0.8rem;
}

.button--lime {
    color: var(--forest);
    background: var(--lime);
    box-shadow: 0 14px 34px rgba(68, 214, 44, 0.2);
}

.button--lime:hover,
.button--lime:focus-visible {
    background: #59e641;
    box-shadow: 0 18px 40px rgba(68, 214, 44, 0.28);
}

.button--dark {
    color: var(--white);
    background: var(--forest);
}

.button--dark:hover,
.button--dark:focus-visible {
    background: #075030;
}

.button--outline {
    color: var(--forest);
    background: transparent;
    border-color: var(--forest);
}

.button--outline:hover,
.button--outline:focus-visible {
    color: var(--white);
    background: var(--forest);
}

.button--ghost-light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.28);
}

.button--ghost-light:hover,
.button--ghost-light:focus-visible {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.5);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
    color: var(--forest);
    border-bottom: 1px solid currentColor;
    font-size: 0.85rem;
    font-weight: 700;
}

.text-link .icon {
    transition: transform 250ms var(--ease);
}

.text-link:hover .icon,
.text-link:focus-visible .icon {
    transform: translateX(5px);
}

.text-link--light {
    color: var(--white);
}

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: var(--header-height);
    color: var(--white);
    transition: height 300ms var(--ease), background 300ms var(--ease), box-shadow 300ms var(--ease), color 300ms var(--ease);
}

.site-header::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
    content: "";
}

.site-header.is-scrolled {
    height: 74px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 54, 29, 0.08);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled::after {
    background: var(--line);
}

.site-header__inner {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 26px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.brand__mark {
    display: grid;
    position: relative;
    width: 48px;
    height: 48px;
    overflow: hidden;
    place-items: center;
    background: var(--lime);
    border-radius: 14px;
}

.brand__mark img {
    width: 75px;
    max-width: none;
}

.brand__type {
    display: grid;
    gap: 5px;
}

.brand__type strong {
    font-size: 0.95rem;
    letter-spacing: -0.02em;
}

.brand__type small {
    color: currentColor;
    font-size: 0.59rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    opacity: 0.64;
    text-transform: uppercase;
}

.main-nav {
    margin-left: auto;
}

.main-nav ul {
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.main-nav a {
    display: block;
    position: relative;
    padding: 12px 9px;
    font-size: clamp(0.66rem, 0.82vw, 0.78rem);
    font-weight: 700;
    white-space: nowrap;
}

.main-nav a::after {
    position: absolute;
    right: 9px;
    bottom: 7px;
    left: 9px;
    height: 2px;
    background: var(--lime);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 250ms var(--ease);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-quote {
    flex: 0 0 auto;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    margin: 6px auto;
    background: currentColor;
    transition: transform 250ms var(--ease);
}

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--forest);
}

.hero--home {
    min-height: 850px;
    padding: calc(var(--header-height) + 70px) 0 42px;
}

.hero__wash {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 24%, rgba(68, 214, 44, 0.2), transparent 26%),
        linear-gradient(122deg, transparent 64%, rgba(68, 214, 44, 0.06) 64%);
}

.hero__wash::before {
    position: absolute;
    width: 480px;
    height: 480px;
    right: -230px;
    bottom: -220px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.02), 0 0 0 160px rgba(255, 255, 255, 0.02);
    content: "";
}

.hero__grid {
    display: grid;
    position: relative;
    min-height: 645px;
    align-items: center;
    grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
    gap: 42px;
}

.hero__copy {
    position: relative;
    z-index: 3;
    max-width: 750px;
}

.hero__copy h1 {
    max-width: 730px;
    margin-bottom: 30px;
}

.hero__copy h1 em {
    display: block;
    position: relative;
    color: var(--lime);
    font-style: normal;
}

.hero__copy h1 em::after {
    position: absolute;
    right: 3%;
    bottom: -2px;
    width: 54%;
    height: 7px;
    background: var(--yellow);
    border-radius: 999px;
    content: "";
    transform: rotate(-1.5deg);
}

.hero__lead {
    max-width: 640px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.08rem, 1.5vw, 1.28rem);
    line-height: 1.65;
}

.hero__actions,
.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero__points {
    display: flex;
    padding: 0;
    margin: 35px 0 0;
    flex-wrap: wrap;
    gap: 14px 24px;
    list-style: none;
}

.hero__points li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8rem;
    font-weight: 700;
}

.hero__points .icon {
    width: 17px;
    height: 17px;
    padding: 2px;
    color: var(--forest);
    background: var(--lime);
    border-radius: 50%;
}

.hero__visual {
    position: relative;
    min-height: 610px;
}

.hero__photo {
    position: absolute;
    width: 78%;
    height: 76%;
    right: 2%;
    bottom: 3%;
    overflow: hidden;
    background: linear-gradient(rgba(0, 54, 29, 0.3), rgba(0, 54, 29, 0.45)), url("../img/garden-sprayer.jpg") center / cover;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 190px 190px 32px 32px;
}

.hero__photo::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 54, 29, 0.55));
    content: "";
}

.hero__lime-orbit {
    position: absolute;
    width: 360px;
    height: 360px;
    right: -14px;
    bottom: 15px;
    background: var(--lime);
    border-radius: 50%;
    opacity: 0.88;
}

.hero__lime-orbit::before,
.hero__lime-orbit::after {
    position: absolute;
    inset: -24px;
    border: 1px solid rgba(68, 214, 44, 0.5);
    border-radius: 50%;
    content: "";
}

.hero__lime-orbit::after {
    inset: -62px;
    border-color: rgba(68, 214, 44, 0.22);
}

.hero__technician {
    position: absolute;
    z-index: 2;
    width: 440px;
    max-width: none;
    right: 3%;
    bottom: -16px;
    filter: drop-shadow(0 28px 26px rgba(0, 0, 0, 0.34));
}

.hero__status {
    display: flex;
    position: absolute;
    z-index: 5;
    min-width: 218px;
    padding: 14px 16px;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px);
}

.hero__status--top {
    top: 90px;
    left: 2%;
}

.hero__status--bottom {
    right: 0;
    bottom: 65px;
}

.hero__status .icon {
    width: 35px;
    height: 35px;
    padding: 8px;
    color: var(--forest);
    background: var(--lime-light);
    border-radius: 10px;
}

.hero__status small,
.hero__status strong {
    display: block;
    line-height: 1.25;
}

.hero__status small {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 0.65rem;
}

.hero__status strong {
    font-size: 0.78rem;
}

.status-dot {
    width: 14px;
    height: 14px;
    background: var(--lime);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(68, 214, 44, 0.2);
}

.hero__stamp {
    position: absolute;
    z-index: 4;
    top: 44px;
    right: 1%;
    width: 86px;
    height: 86px;
    overflow: hidden;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.hero__stamp img {
    width: 116px;
    max-width: none;
    margin: -22px 0 0 -15px;
}

.hero__footnote {
    display: none;
    position: relative;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__footnote p {
    margin: 0;
}

.hero__footnote > span:first-child {
    color: var(--lime);
}

.hero__footnote-line {
    width: 70px;
    height: 1px;
    margin-inline: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.signal-strip {
    display: none;
    overflow: hidden;
    color: var(--forest);
    background: var(--lime);
    border-top: 1px solid rgba(0, 54, 29, 0.2);
    border-bottom: 1px solid rgba(0, 54, 29, 0.2);
}

.signal-strip__track {
    display: flex;
    width: max-content;
    padding: 18px 0;
    align-items: center;
    animation: ticker 26s linear infinite;
}

.signal-strip span {
    padding: 0 28px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.signal-strip i {
    width: 7px;
    height: 7px;
    background: var(--forest);
    border-radius: 50%;
}

@keyframes ticker {
    to { transform: translateX(-50%); }
}

.intro__grid {
    display: grid;
    margin-bottom: 70px;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 80px;
}

.intro__body {
    padding-top: 45px;
}

.intro__body p:last-child {
    color: var(--muted);
}

.service-chooser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.service-card {
    position: relative;
    min-height: 610px;
    padding: 46px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.service-card--business {
    color: var(--white);
    background: var(--forest);
}

.service-card--home {
    color: var(--ink);
    background: var(--lime);
}

.service-card::before {
    position: absolute;
    width: 300px;
    height: 300px;
    right: -70px;
    bottom: -80px;
    border: 1px solid currentColor;
    border-radius: 50%;
    content: "";
    opacity: 0.14;
}

.service-card__number {
    position: absolute;
    top: 34px;
    right: 38px;
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0.5;
}

.service-card__icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin-bottom: 55px;
    place-items: center;
    color: var(--forest);
    background: var(--lime);
    border-radius: 18px;
}

.service-card--home .service-card__icon {
    color: var(--white);
    background: var(--forest);
}

.service-card__icon .icon {
    width: 29px;
    height: 29px;
}

.service-card h3 {
    position: relative;
    z-index: 2;
    max-width: 430px;
    margin-bottom: 20px;
    font-size: clamp(2.15rem, 3.4vw, 3.4rem);
}

.service-card > p:not(.eyebrow) {
    position: relative;
    z-index: 2;
    max-width: 440px;
    opacity: 0.75;
}

.check-list {
    padding: 0;
    margin: 28px 0 34px;
    list-style: none;
}

.check-list li {
    display: flex;
    margin-bottom: 11px;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.check-list .icon {
    width: 19px;
    height: 19px;
    margin-top: 5px;
    padding: 3px;
    color: var(--forest);
    background: var(--lime);
    border-radius: 50%;
}

.check-list--compact {
    position: relative;
    z-index: 2;
    max-width: 310px;
    margin: 24px 0;
}

.check-list--light .icon {
    color: var(--forest);
    background: var(--white);
}

.service-card .text-link {
    position: relative;
    z-index: 3;
    margin-top: 12px;
}

.service-card__image {
    position: absolute;
    z-index: 1;
    filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.24));
    pointer-events: none;
}

.service-card__image--business-tech {
    width: 255px;
    max-width: none;
    right: -10px;
    bottom: -35px;
}

.service-card__image--tech {
    width: 270px;
    max-width: none;
    right: -15px;
    bottom: -30px;
}

.pests-section__grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1.28fr);
    gap: 90px;
}

.pests-section__copy > p:not(.eyebrow) {
    margin-bottom: 32px;
    color: var(--muted);
}

.pest-cloud {
    display: flex;
    padding: 40px;
    flex-wrap: wrap;
    align-content: center;
    gap: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.pest-chip {
    display: inline-flex;
    min-height: 58px;
    padding: 0 19px;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.93rem;
    font-weight: 700;
}

.pest-chip b {
    font-size: 0.58rem;
    opacity: 0.45;
}

.pest-chip--dark {
    color: var(--white);
    background: var(--forest);
    border-color: var(--forest);
}

.pest-chip--lime {
    color: var(--forest);
    background: var(--lime);
    border-color: var(--lime);
}

.pest-cloud__note {
    width: 100%;
    padding: 24px 5px 0;
    margin: 15px 0 0;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 0.78rem;
}

.method-section {
    overflow: hidden;
    color: var(--white);
    background: var(--forest);
}

.method-section__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: radial-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px);
    background-size: 23px 23px;
    mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
}

.method-section::after {
    position: absolute;
    width: 520px;
    height: 520px;
    right: -190px;
    top: -200px;
    border: 100px solid rgba(68, 214, 44, 0.08);
    border-radius: 50%;
    content: "";
}

.method-section__head {
    display: grid;
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
    align-items: end;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
    gap: 80px;
}

.method-section__head h2 {
    margin-bottom: 0;
}

.method-section__head > p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.67);
}

.method-grid {
    display: grid;
    position: relative;
    z-index: 2;
    padding: 0;
    margin: 0;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    list-style: none;
}

.method-step {
    position: relative;
    min-height: 340px;
    padding: 31px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    transition: background 250ms var(--ease), transform 250ms var(--ease);
}

.method-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.method-step__number {
    position: absolute;
    top: 26px;
    right: 26px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.65rem;
    font-weight: 700;
}

.method-step__icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 75px;
    place-items: center;
    color: var(--forest);
    background: var(--lime);
    border-radius: 17px;
}

.method-step__icon .icon {
    width: 27px;
    height: 27px;
}

.method-step h3 {
    margin-bottom: 14px;
    font-size: 1.55rem;
}

.method-step p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.85rem;
}

.coverage-card {
    display: grid;
    min-height: 510px;
    overflow: hidden;
    color: var(--ink);
    background: var(--lime);
    border-radius: var(--radius-lg);
    grid-template-columns: 1fr 0.9fr;
}

.coverage-card__map {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 60%, rgba(255, 255, 255, 0.35), transparent 23%),
        linear-gradient(140deg, rgba(0, 54, 29, 0.11), transparent 60%);
}

.coverage-card__map::before {
    position: absolute;
    width: 450px;
    height: 450px;
    left: -80px;
    top: 40px;
    border: 1px solid rgba(0, 54, 29, 0.2);
    border-radius: 48% 52% 57% 43%;
    box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.07), 0 0 0 84px rgba(255, 255, 255, 0.05);
    content: "";
    transform: rotate(-18deg);
}

.map-line {
    position: absolute;
    height: 2px;
    background: var(--forest);
    transform-origin: left;
}

.map-line--one {
    width: 235px;
    left: 170px;
    top: 250px;
    transform: rotate(-24deg);
}

.map-line--two {
    width: 100px;
    left: 330px;
    top: 156px;
    opacity: 0.3;
    transform: rotate(65deg);
}

.map-dot {
    display: flex;
    position: absolute;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.map-dot i {
    width: 17px;
    height: 17px;
    background: var(--forest);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(0, 54, 29, 0.13);
}

.map-dot--one {
    left: 145px;
    top: 252px;
}

.map-dot--two {
    left: 365px;
    top: 135px;
}

.coverage-card__copy {
    display: flex;
    padding: 65px 65px 65px 25px;
    flex-direction: column;
    justify-content: center;
}

.coverage-card__copy h2 {
    font-size: clamp(2.4rem, 4vw, 4rem);
}

.coverage-card__copy > p:not(.eyebrow) {
    margin-bottom: 30px;
    opacity: 0.73;
}

.coverage-card__copy .text-link {
    align-self: flex-start;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--delay,
.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 180ms; }
.reveal--delay-3 { transition-delay: 260ms; }

/* Inner page heroes */
.page-hero {
    min-height: 720px;
    padding: calc(var(--header-height) + 76px) 0 70px;
}

.page-hero__grid {
    display: grid;
    min-height: 555px;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
    gap: 70px;
}

.page-hero__copy {
    position: relative;
    z-index: 3;
}

.page-hero__copy h1 {
    margin-bottom: 28px;
    font-size: clamp(3.2rem, 5.6vw, 5.6rem);
}

.page-hero__copy > p:not(.eyebrow) {
    max-width: 650px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.page-hero__art {
    position: relative;
    min-height: 520px;
}

.page-hero::before {
    position: absolute;
    width: 540px;
    height: 540px;
    right: -210px;
    top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.02), 0 0 0 140px rgba(255, 255, 255, 0.02);
    content: "";
}

.page-hero--about {
    background:
        radial-gradient(circle at 78% 40%, rgba(68, 214, 44, 0.17), transparent 29%),
        var(--forest);
}

.page-hero__art--about {
    display: grid;
    place-items: center;
}

.about-logo-plate {
    display: grid;
    position: relative;
    width: 430px;
    height: 430px;
    place-items: center;
    background: var(--forest-soft);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    box-shadow: inset 0 0 0 40px rgba(255, 255, 255, 0.02);
}

.about-logo-plate::before {
    position: absolute;
    inset: 38px;
    border: 1px dashed rgba(68, 214, 44, 0.38);
    border-radius: 50%;
    content: "";
}

.about-logo-plate img {
    width: 330px;
}

.about-art__line {
    display: flex;
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-art__line i {
    width: 4px;
    height: 4px;
    background: var(--lime);
    border-radius: 50%;
}

.story-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(400px, 0.9fr) minmax(0, 1fr);
    gap: 100px;
}

.story-grid__visual {
    position: relative;
    min-height: 620px;
}

.story-photo {
    position: absolute;
    width: 86%;
    height: 78%;
    top: 0;
    left: 0;
    overflow: hidden;
    background: var(--forest);
    border-radius: 190px 30px 30px 30px;
}

.story-photo::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 54, 29, 0.6));
    content: "";
}

.story-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-logo {
    display: grid;
    position: absolute;
    width: 230px;
    height: 230px;
    right: 0;
    bottom: 30px;
    overflow: hidden;
    place-items: center;
    background: var(--lime);
    border: 12px solid var(--paper);
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.story-logo img {
    width: 250px;
    max-width: none;
    margin-top: -4px;
}

.story-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.6;
    text-transform: uppercase;
}

.story-caption span {
    display: block;
    color: var(--forest);
}

.story-grid__copy > p:not(.eyebrow) {
    color: var(--muted);
}

.story-grid__copy .large-copy {
    color: var(--ink);
}

.story-grid blockquote {
    display: grid;
    position: relative;
    padding: 28px 32px;
    margin: 40px 0 0;
    background: var(--white);
    border-left: 4px solid var(--lime);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    grid-template-columns: 40px 1fr;
}

.story-grid blockquote span {
    color: var(--lime);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.story-grid blockquote p {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
}

.split-heading {
    display: grid;
    margin-bottom: 70px;
    align-items: end;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.45fr);
    gap: 90px;
}

.split-heading h2 {
    margin-bottom: 0;
}

.split-heading > p {
    margin-bottom: 8px;
    color: var(--muted);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.value-card {
    position: relative;
    min-height: 350px;
    padding: 30px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform 250ms var(--ease), background 250ms var(--ease);
}

.value-card:hover {
    background: var(--lime-wash);
    transform: translateY(-5px);
}

.value-card > span {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 700;
}

.value-card__icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 28px 0 80px;
    place-items: center;
    color: var(--white);
    background: var(--forest);
    border-radius: 16px;
}

.value-card__icon .icon {
    width: 26px;
    height: 26px;
}

.value-card h3 {
    margin-bottom: 13px;
    font-size: 1.55rem;
}

.value-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.83rem;
}

.manifesto-section {
    overflow: hidden;
    color: var(--white);
    background: var(--forest);
}

.manifesto-grid {
    display: grid;
    position: relative;
    z-index: 2;
    align-items: start;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
    gap: 110px;
}

.manifesto-grid__title h2 {
    margin-bottom: 0;
}

.manifesto-grid__body > p {
    color: rgba(255, 255, 255, 0.69);
}

.manifesto-grid__body .button {
    margin-top: 25px;
}

.manifesto-word {
    position: absolute;
    right: -60px;
    bottom: -120px;
    color: transparent;
    font-size: 24vw;
    font-weight: 700;
    letter-spacing: -0.1em;
    line-height: 0.8;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
}

/* Business */
.page-hero--business {
    background: linear-gradient(118deg, var(--forest) 0 62%, #0d4c2e 62%);
}

.page-hero__art--business > img {
    position: absolute;
    z-index: 2;
    width: 365px;
    max-width: none;
    right: 4%;
    bottom: -35px;
    filter: drop-shadow(0 30px 35px rgba(0, 0, 0, 0.28));
}

.business-orbit {
    position: absolute;
    width: 390px;
    height: 390px;
    right: 0;
    bottom: 25px;
    background: var(--lime);
    border-radius: 50% 50% 32px 50%;
}

.business-orbit::before {
    position: absolute;
    inset: -28px;
    border: 1px solid rgba(68, 214, 44, 0.38);
    border-radius: 50%;
    content: "";
}

.business-badge {
    display: flex;
    position: absolute;
    z-index: 4;
    min-width: 165px;
    padding: 14px;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.17);
}

.business-badge .icon {
    width: 34px;
    height: 34px;
    padding: 8px;
    color: var(--forest);
    background: var(--lime-wash);
    border-radius: 10px;
}

.business-badge span {
    font-size: 0.62rem;
    line-height: 1.35;
}

.business-badge strong {
    font-size: 0.75rem;
}

.business-badge--one {
    top: 80px;
    left: -15px;
}

.business-badge--two {
    right: -10px;
    bottom: 45px;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.sector-card {
    position: relative;
    min-height: 380px;
    padding: 30px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.sector-card__number {
    position: absolute;
    top: 23px;
    right: 24px;
    color: var(--muted);
    font-size: 0.62rem;
    font-weight: 700;
}

.sector-card__icon {
    display: grid;
    width: 60px;
    height: 60px;
    margin: 42px 0 70px;
    place-items: center;
    color: var(--forest);
    background: var(--lime);
    border-radius: 18px;
}

.sector-card__icon .icon {
    width: 28px;
    height: 28px;
}

.sector-card h3 {
    min-height: 64px;
    margin-bottom: 14px;
    font-size: 1.5rem;
}

.sector-card p {
    color: var(--muted);
    font-size: 0.8rem;
}

.sector-card small {
    display: block;
    padding-top: 16px;
    color: var(--forest);
    border-top: 1px solid var(--line);
    font-size: 0.65rem;
    font-weight: 700;
}

.package-grid {
    display: grid;
    margin-top: 65px;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.package-card {
    position: relative;
    min-height: 420px;
    padding: 38px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.package-card--featured {
    color: var(--white);
    background: var(--forest);
    border-color: var(--forest);
}

.package-card__label {
    position: absolute;
    top: 20px;
    right: 22px;
    padding: 7px 10px;
    color: var(--forest);
    background: var(--lime);
    border-radius: 999px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.package-card__top {
    display: flex;
    margin-bottom: 60px;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.package-card--featured .package-card__top {
    color: rgba(255, 255, 255, 0.54);
}

.package-card__top span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: var(--forest);
    background: var(--lime);
    border-radius: 50%;
}

.package-card h3 {
    margin-bottom: 15px;
    font-size: 2.25rem;
}

.package-card > p {
    max-width: 470px;
    color: var(--muted);
}

.package-card--featured > p,
.package-card--featured .check-list {
    color: rgba(255, 255, 255, 0.7);
}

.package-note {
    max-width: 820px;
    padding: 18px 22px;
    margin: 32px auto 0;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 0.72rem;
    text-align: center;
}

.business-process {
    color: var(--white);
    background: var(--forest);
}

.business-process__grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 0.85fr) minmax(450px, 1fr);
    gap: 100px;
}

.business-process__copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.65);
}

.business-process__copy .button {
    margin-top: 25px;
}

.business-process__steps {
    padding: 0;
    margin: 0;
    list-style: none;
}

.business-process__steps li {
    display: grid;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    grid-template-columns: 60px 1fr;
    gap: 18px;
}

.business-process__steps li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.business-process__steps li > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--forest);
    background: var(--lime);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
}

.business-process__steps strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.02rem;
}

.business-process__steps p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
}

/* Residential */
.page-hero--residential {
    color: var(--forest);
    background: var(--lime);
}

.page-hero--residential .eyebrow {
    color: var(--forest);
}

.page-hero--residential .page-hero__copy > p:not(.eyebrow) {
    color: rgba(0, 54, 29, 0.72);
}

.page-hero__art--residential {
    min-height: 540px;
}

.residential-photo {
    position: absolute;
    width: 90%;
    height: 82%;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 54, 29, 0.28), rgba(0, 54, 29, 0.36)), url("../img/garden-sprayer.jpg") center / cover;
    border-radius: 180px 180px 30px 30px;
}

.page-hero__art--residential > img {
    position: absolute;
    z-index: 2;
    width: 345px;
    max-width: none;
    right: 8%;
    bottom: -22px;
    filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.27));
}

.residential-badge {
    display: flex;
    position: absolute;
    z-index: 4;
    left: -20px;
    bottom: 65px;
    padding: 15px 18px;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.residential-badge .icon {
    width: 39px;
    height: 39px;
    padding: 9px;
    color: var(--forest);
    background: var(--lime-wash);
    border-radius: 11px;
}

.residential-badge span {
    font-size: 0.65rem;
    line-height: 1.35;
}

.residential-badge strong {
    font-size: 0.78rem;
}

.residential-intro__grid {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
    gap: 100px;
}

.diagnostic-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.diagnostic-list li {
    display: grid;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 58px 1fr;
    gap: 16px;
}

.diagnostic-list li:first-child {
    border-top: 1px solid var(--line);
}

.diagnostic-list span {
    color: var(--lime);
    font-size: 0.7rem;
    font-weight: 700;
}

.diagnostic-list p {
    display: grid;
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    grid-template-columns: 190px 1fr;
    gap: 12px;
}

.diagnostic-list strong {
    color: var(--ink);
}

.residential-plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.residential-plan {
    min-height: 560px;
    padding: 45px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.residential-plan--plus {
    color: var(--white);
    background: var(--forest);
    border-color: var(--forest);
}

.residential-plan__head {
    display: flex;
    margin-bottom: 100px;
    align-items: center;
    justify-content: space-between;
}

.residential-plan__head > span {
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 700;
}

.residential-plan--plus .residential-plan__head > span {
    color: rgba(255, 255, 255, 0.5);
}

.residential-plan__icon {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    color: var(--forest);
    background: var(--lime);
    border-radius: 18px;
}

.residential-plan__icon .icon {
    width: 29px;
    height: 29px;
}

.residential-plan h3 {
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 3vw, 3rem);
}

.residential-plan > p:not(.eyebrow),
.residential-plan > small {
    color: var(--muted);
}

.residential-plan--plus > p:not(.eyebrow),
.residential-plan--plus > small {
    color: rgba(255, 255, 255, 0.62);
}

.residential-plan > small {
    display: block;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 0.68rem;
}

.residential-plan--plus > small {
    border-color: rgba(255, 255, 255, 0.14);
}

.care-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(400px, 0.9fr) minmax(0, 1fr);
    gap: 100px;
}

.care-grid__photo {
    position: relative;
    height: 610px;
}

.care-grid__photo::before {
    position: absolute;
    inset: 0 30px 30px 0;
    background: var(--lime);
    border-radius: 220px 30px 30px 30px;
    content: "";
    transform: translate(26px, 26px);
}

.care-grid__photo img {
    position: relative;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    object-fit: cover;
    border-radius: 220px 30px 30px 30px;
}

.care-grid__tag {
    display: flex;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 13px 18px;
    align-items: center;
    gap: 9px;
    color: var(--white);
    background: var(--forest);
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 700;
}

.care-grid__copy > p:not(.eyebrow) {
    color: var(--muted);
}

.care-notes {
    margin: 35px 0;
}

.care-notes > div {
    display: grid;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 46px 1fr;
    gap: 15px;
}

.care-notes .icon {
    width: 40px;
    height: 40px;
    padding: 10px;
    color: var(--forest);
    background: var(--lime-wash);
    border-radius: 11px;
}

.care-notes p,
.care-notes strong {
    display: block;
    margin: 0;
}

.care-notes p {
    color: var(--muted);
    font-size: 0.76rem;
}

.care-notes strong {
    color: var(--ink);
    font-size: 0.9rem;
}

.home-cta-section {
    color: var(--white);
    background: var(--forest);
}

.home-cta {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 60px;
}

.home-cta > div {
    max-width: 720px;
}

.home-cta h2 {
    margin-bottom: 16px;
}

.home-cta > div > p:last-child {
    color: rgba(255, 255, 255, 0.65);
}

.home-cta .button {
    flex: 0 0 auto;
}

/* FAQs */
.page-hero--faqs {
    background:
        radial-gradient(circle at 78% 45%, rgba(68, 214, 44, 0.18), transparent 26%),
        var(--forest);
}

.page-hero__art--faqs {
    display: grid;
    place-items: center;
}

.question-mark {
    display: grid;
    width: 370px;
    height: 370px;
    place-items: center;
    color: var(--forest);
    background: var(--lime);
    border-radius: 50%;
    font-size: 14rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 0 0 30px rgba(68, 214, 44, 0.08), 0 0 0 60px rgba(68, 214, 44, 0.05);
}

.faq-orbit {
    position: absolute;
    padding: 10px 14px;
    color: var(--ink);
    background: var(--white);
    border-radius: 999px;
    box-shadow: var(--shadow);
    font-size: 0.65rem;
    font-weight: 700;
}

.faq-orbit--one { top: 55px; left: -10px; }
.faq-orbit--two { right: -5px; bottom: 105px; }
.faq-orbit--three { bottom: 15px; left: 20px; }

.faq-layout {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1fr);
    gap: 100px;
}

.faq-aside {
    position: sticky;
    top: 120px;
}

.faq-aside > p:not(.eyebrow) {
    color: var(--muted);
}

.faq-aside .button {
    margin-top: 20px;
}

.faq-aside__note {
    display: grid;
    padding: 20px;
    margin-top: 42px;
    background: var(--lime-wash);
    border: 1px solid rgba(68, 214, 44, 0.28);
    border-radius: var(--radius-sm);
    grid-template-columns: 42px 1fr;
    gap: 12px;
}

.faq-aside__note .icon {
    width: 38px;
    height: 38px;
    padding: 9px;
    color: var(--forest);
    background: var(--lime);
    border-radius: 11px;
}

.faq-aside__note p,
.faq-aside__note strong {
    display: block;
    margin: 0;
}

.faq-aside__note p {
    color: var(--muted);
    font-size: 0.72rem;
}

.faq-aside__note strong {
    color: var(--ink);
    font-size: 0.84rem;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    display: flex;
    padding: 30px 0;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary > span {
    display: grid;
    align-items: center;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 700;
    line-height: 1.35;
    grid-template-columns: 48px 1fr;
    gap: 15px;
}

.faq-item summary small {
    color: var(--muted);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
}

.faq-item summary > i {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--forest);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: color 250ms var(--ease), background 250ms var(--ease), transform 250ms var(--ease);
}

.faq-item summary > i .icon {
    width: 20px;
    height: 20px;
}

.faq-item[open] summary > i {
    color: var(--forest);
    background: var(--lime);
    border-color: var(--lime);
    transform: rotate(45deg);
}

.faq-item__answer {
    max-width: 740px;
    padding: 0 60px 30px 63px;
}

.faq-item__answer p {
    margin: 0;
    color: var(--muted);
}

.faq-bottom {
    color: var(--white);
    background: var(--forest);
}

.faq-bottom__grid {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
    gap: 100px;
}

.faq-bottom__grid h2 {
    margin-bottom: 0;
}

.faq-bottom__grid > div:last-child > p {
    color: rgba(255, 255, 255, 0.65);
}

.faq-bottom__grid .button {
    margin-top: 20px;
}

/* Contact */
.page-hero--contact {
    min-height: 650px;
    background:
        radial-gradient(circle at 78% 45%, rgba(68, 214, 44, 0.14), transparent 26%),
        var(--forest);
}

.page-hero--contact .page-hero__grid {
    min-height: 485px;
}

.page-hero__art--contact {
    display: grid;
    place-items: center;
}

.contact-hero__logo {
    display: grid;
    width: 430px;
    height: 300px;
    place-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    transform: rotate(-3deg);
}

.contact-hero__logo img {
    width: 340px;
}

.contact-hero__area {
    display: flex;
    position: absolute;
    right: -10px;
    bottom: 65px;
    padding: 16px 19px;
    align-items: center;
    gap: 12px;
    color: var(--forest);
    background: var(--lime);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-hero__area .icon {
    width: 36px;
    height: 36px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.38);
    border-radius: 10px;
}

.contact-hero__area span,
.contact-hero__area strong {
    display: block;
    line-height: 1.3;
}

.contact-hero__area span { font-size: 0.65rem; }
.contact-hero__area strong { font-size: 0.8rem; }

.contact-layout {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1fr);
    gap: 85px;
}

.contact-aside {
    position: sticky;
    top: 120px;
}

.contact-checklist {
    padding: 0;
    margin: 35px 0;
    list-style: none;
}

.contact-checklist li {
    display: grid;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 45px 1fr;
}

.contact-checklist li:first-child {
    border-top: 1px solid var(--line);
}

.contact-checklist span {
    color: var(--lime);
    font-size: 0.66rem;
    font-weight: 700;
}

.contact-checklist p {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 700;
}

.contact-aside__zones {
    display: grid;
    padding: 20px;
    background: var(--lime-wash);
    border: 1px solid rgba(68, 214, 44, 0.25);
    border-radius: var(--radius-sm);
    grid-template-columns: 42px 1fr;
    gap: 13px;
}

.contact-aside__zones .icon {
    width: 39px;
    height: 39px;
    padding: 9px;
    color: var(--forest);
    background: var(--lime);
    border-radius: 11px;
}

.contact-aside__zones strong {
    display: block;
    font-size: 0.86rem;
}

.contact-aside__zones p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.7rem;
}

.contact-form-card {
    padding: 48px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form-card__head {
    margin-bottom: 35px;
}

.contact-form-card__head h2 {
    margin-bottom: 8px;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.contact-form-card__head > p:last-child {
    color: var(--muted);
    font-size: 0.72rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
}

.field {
    display: grid;
    gap: 8px;
}

.field--full {
    grid-column: 1 / -1;
}

.field label {
    color: var(--ink);
    font-size: 0.74rem;
    font-weight: 700;
}

.field label span {
    color: var(--muted);
    font-weight: 300;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    outline: none;
    background: var(--paper);
    border-radius: 12px;
    font-size: 0.84rem;
    font-weight: 300;
    transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.field input,
.field select {
    height: 54px;
    padding: 0 15px;
}

.field textarea {
    min-height: 140px;
    padding: 14px 15px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    background: var(--white);
    border-color: var(--lime);
    box-shadow: 0 0 0 4px rgba(68, 214, 44, 0.13);
}

.field input::placeholder,
.field textarea::placeholder {
    color: #89918c;
}

.consent {
    display: grid;
    margin: 25px 0;
    align-items: start;
    color: var(--muted);
    font-size: 0.72rem;
    grid-template-columns: 20px 1fr;
    gap: 10px;
}

.consent input {
    width: 17px;
    height: 17px;
    margin-top: 4px;
    accent-color: var(--forest);
}

.button--submit {
    width: 100%;
    border: 0;
}

.form-note {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.65rem;
    text-align: center;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-success,
.form-errors {
    display: grid;
    padding: 18px 20px;
    margin-bottom: 28px;
    border-radius: var(--radius-sm);
}

.form-success {
    color: var(--forest);
    background: var(--lime-wash);
    border: 1px solid rgba(68, 214, 44, 0.35);
    grid-template-columns: 42px 1fr;
    gap: 13px;
}

.form-success > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--forest);
    background: var(--lime);
    border-radius: 50%;
}

.form-success p,
.form-success strong {
    display: block;
    margin: 0;
}

.form-success p { font-size: 0.75rem; }
.form-errors {
    color: #7f1717;
    background: #fff0f0;
    border: 1px solid #f2bcbc;
}

.form-errors ul {
    margin: 8px 0 0;
    padding-left: 20px;
    font-size: 0.75rem;
}

/* Footer */
.footer-cta {
    padding: 110px 0 0;
    background: var(--paper);
}

.footer-cta__panel {
    display: flex;
    position: relative;
    z-index: 2;
    min-height: 310px;
    padding: 55px 62px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    color: var(--forest);
    background: var(--lime);
    border-radius: var(--radius-lg);
}

.footer-cta__panel > div {
    max-width: 780px;
}

.footer-cta__panel h2 {
    margin-bottom: 0;
    font-size: clamp(2.3rem, 4.2vw, 4.1rem);
}

.footer-cta__panel .button {
    flex: 0 0 auto;
}

.site-footer {
    margin-top: -50px;
    padding: 140px 0 22px;
    color: var(--white);
    background: var(--forest);
}

.contact-page .site-footer {
    margin-top: 0;
    padding-top: 90px;
}

.site-footer__grid {
    display: grid;
    padding-bottom: 70px;
    grid-template-columns: minmax(320px, 1.3fr) 0.65fr 0.85fr;
    gap: 80px;
}

.brand--footer .brand__mark {
    background: var(--lime);
}

.site-footer__brand > p {
    max-width: 420px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 18px;
}

.site-footer__title {
    margin: 3px 0 20px;
    color: var(--lime);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer__links,
.site-footer__areas {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer__links li {
    margin-bottom: 8px;
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    transition: color 200ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
    color: var(--lime);
}

.site-footer__areas li {
    display: flex;
    margin-bottom: 12px;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
}

.site-footer__areas .icon {
    width: 17px;
    color: var(--lime);
}

.site-footer .text-link {
    margin-top: 18px;
    font-size: 0.7rem;
}

.site-footer__bottom {
    display: flex;
    padding-top: 20px;
    justify-content: space-between;
    gap: 30px;
    color: rgba(255, 255, 255, 0.38);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.62rem;
}

.site-footer__bottom p {
    margin: 0;
}

.mobile-quote {
    display: none;
}

.contact-page .mobile-quote {
    display: none !important;
}

@media (max-width: 1150px) {
    :root { --header-height: 78px; }

    .container { width: min(calc(100% - 36px), var(--container)); }
    .header-quote { display: none; }
    .main-nav a { padding-inline: 7px; font-size: 0.66rem; }
    .hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.8fr); }
    .hero__technician { right: -3%; }
    .service-card { padding: 40px; }
    .service-card__image--business-tech { width: 230px; }
    .service-card__image--tech { width: 235px; }
    .method-step { padding: 25px; }
    .method-step__icon { margin-bottom: 60px; }
    .page-hero__grid { gap: 40px; }
    .sector-card { padding: 24px; }
    .sector-card h3 { font-size: 1.3rem; }
    .faq-layout,
    .contact-layout { gap: 60px; }
}

@media (max-width: 980px) {
    .section { padding: 100px 0; }
    .main-nav { display: none; }
    .menu-toggle { display: block; margin-left: auto; }

    .main-nav.is-open {
        display: block;
        position: fixed;
        inset: var(--header-height) 0 0;
        padding: 35px 24px 100px;
        color: var(--white);
        background: var(--forest);
        overflow-y: auto;
    }

    .main-nav.is-open ul {
        display: block;
    }

    .main-nav.is-open li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .main-nav.is-open a {
        padding: 18px 2px;
        font-size: 1.05rem;
    }

    .main-nav.is-open a::after {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(4px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
    .site-header.is-scrolled .main-nav.is-open { top: 74px; }
    .site-header:has(.main-nav.is-open) { color: var(--white); background: var(--forest); }

    .hero--home { min-height: auto; padding-bottom: 50px; }
    .hero__grid { grid-template-columns: 1fr; }
    .hero__copy { padding-top: 35px; }
    .hero__visual { width: min(100%, 620px); margin: -20px auto 0; }
    .hero__footnote { margin-top: 12px; }

    .intro__grid,
    .pests-section__grid,
    .method-section__head,
    .story-grid,
    .manifesto-grid,
    .business-process__grid,
    .residential-intro__grid,
    .care-grid,
    .faq-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .intro__body { padding-top: 0; }
    .service-chooser { grid-template-columns: 1fr; }
    .service-card { min-height: 570px; }
    .pest-cloud { min-height: auto; }
    .method-section__head { align-items: start; }
    .method-section__head > p { max-width: 600px; }
    .method-grid { grid-template-columns: 1fr 1fr; }
    .coverage-card { grid-template-columns: 1fr; }
    .coverage-card__map { min-height: 390px; }
    .coverage-card__copy { padding: 55px; }

    .page-hero { min-height: auto; }
    .page-hero__grid { grid-template-columns: 1fr; }
    .page-hero__copy { padding-top: 35px; }
    .page-hero__art { width: min(100%, 600px); margin-inline: auto; }

    .split-heading,
    .faq-bottom__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .split-heading > p { max-width: 650px; }
    .values-grid,
    .sector-grid { grid-template-columns: 1fr 1fr; }
    .story-grid__visual { width: min(100%, 600px); }
    .manifesto-grid__body { max-width: 650px; }
    .business-process__steps { max-width: 700px; }
    .diagnostic-list { max-width: 760px; }
    .care-grid__photo { width: min(100%, 600px); }
    .faq-aside,
    .contact-aside { position: static; max-width: 680px; }
    .contact-form-card { max-width: 800px; }

    .footer-cta__panel { align-items: flex-start; flex-direction: column; }
    .site-footer__grid { grid-template-columns: 1.2fr 0.7fr 0.9fr; gap: 45px; }
}

@media (max-width: 700px) {
    :root { --header-height: 72px; --radius-lg: 28px; }
    body { padding-bottom: 72px; font-size: 16px; }
    body.contact-page { padding-bottom: 0; }
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 78px 0; }
    h1 { font-size: clamp(2.75rem, 13vw, 4.1rem); }
    h2 { font-size: clamp(2.1rem, 10vw, 3.25rem); }
    .eyebrow { margin-bottom: 18px; }
    .brand__mark { width: 43px; height: 43px; border-radius: 12px; }
    .brand__mark img { width: 68px; }
    .brand__type strong { font-size: 0.83rem; }
    .brand__type small { font-size: 0.51rem; }
    .site-header.is-scrolled { height: 66px; }
    .site-header.is-scrolled .main-nav.is-open { top: 66px; }

    .hero--home { padding-top: calc(var(--header-height) + 58px); }
    .hero__grid { min-height: auto; gap: 22px; }
    .hero__copy h1 { margin-bottom: 22px; }
    .hero__copy h1 em::after { height: 5px; width: 65%; }
    .hero__lead { font-size: 1rem; }
    .hero__actions { display: grid; }
    .hero__actions .button { width: 100%; }
    .hero__points { display: grid; gap: 10px; }
    .hero__visual { min-height: 480px; }
    .hero__photo { width: 92%; height: 78%; right: 0; border-radius: 140px 140px 25px 25px; }
    .hero__lime-orbit { width: 270px; height: 270px; }
    .hero__technician { width: 330px; right: -7%; }
    .hero__status { min-width: 0; padding: 11px 12px; }
    .hero__status--top { top: 60px; left: 0; }
    .hero__status--bottom { right: 0; bottom: 35px; }
    .hero__status small { display: none; }
    .hero__status strong { font-size: 0.67rem; }
    .hero__stamp { top: 26px; width: 70px; height: 70px; }
    .hero__stamp img { width: 98px; margin: -20px 0 0 -14px; }
    .hero__footnote { flex-wrap: wrap; }
    .hero__footnote-line { display: none; }

    .intro__grid { margin-bottom: 45px; }
    .service-card { min-height: 590px; padding: 30px 25px; border-radius: 28px; }
    .service-card__icon { margin-bottom: 42px; }
    .service-card h3 { font-size: 2.35rem; }
    .service-card__image--business-tech { width: 215px; right: -35px; bottom: -30px; }
    .service-card__image--tech { width: 215px; right: -35px; }
    .check-list--compact { max-width: 260px; }
    .pests-section__grid { gap: 40px; }
    .pest-cloud { padding: 22px; gap: 8px; }
    .pest-chip { min-height: 48px; padding: 0 13px; gap: 10px; font-size: 0.78rem; }
    .method-grid { grid-template-columns: 1fr; }
    .method-step { min-height: 300px; }
    .method-step__icon { margin-bottom: 45px; }
    .coverage-card__map { min-height: 330px; }
    .coverage-card__map::before { width: 330px; height: 330px; left: -80px; }
    .map-line--one { width: 175px; left: 102px; top: 205px; }
    .map-line--two { left: 235px; top: 140px; }
    .map-dot--one { left: 82px; top: 205px; }
    .map-dot--two { left: 260px; top: 117px; }
    .coverage-card__copy { padding: 38px 27px 45px; }

    .page-hero { padding: calc(var(--header-height) + 55px) 0 55px; }
    .page-hero__grid { min-height: 0; }
    .page-hero__copy { padding-top: 10px; }
    .page-hero__copy h1 { font-size: clamp(2.75rem, 12vw, 4rem); }
    .page-hero__copy > p:not(.eyebrow) { font-size: 1rem; }
    .page-hero__actions .button { width: 100%; }
    .page-hero__art { min-height: 400px; }
    .about-logo-plate { width: 310px; height: 310px; }
    .about-logo-plate img { width: 255px; }
    .story-grid__visual { min-height: 520px; }
    .story-photo { width: 94%; }
    .story-logo { width: 180px; height: 180px; border-width: 8px; }
    .story-logo img { width: 200px; }
    .story-grid blockquote { padding: 22px; grid-template-columns: 30px 1fr; }
    .values-grid,
    .sector-grid,
    .package-grid,
    .residential-plan-grid { grid-template-columns: 1fr; }
    .value-card { min-height: 315px; }
    .value-card__icon { margin-bottom: 55px; }

    .page-hero--business { background: var(--forest); }
    .business-orbit { width: 300px; height: 300px; right: 2%; }
    .page-hero__art--business > img { width: 285px; right: 6%; }
    .business-badge--one { top: 35px; left: 0; }
    .business-badge--two { right: 0; bottom: 20px; }
    .sector-card { min-height: 350px; }
    .sector-card__icon { margin-bottom: 55px; }
    .package-card { min-height: 0; padding: 29px 25px; }
    .package-card__top { margin-bottom: 45px; }
    .package-card h3 { font-size: 1.9rem; }
    .business-process__grid { gap: 50px; }

    .page-hero__art--residential { min-height: 420px; }
    .residential-photo { width: 96%; }
    .page-hero__art--residential > img { width: 275px; right: 3%; }
    .residential-badge { left: 0; bottom: 25px; }
    .diagnostic-list p { grid-template-columns: 1fr; gap: 2px; }
    .residential-plan { min-height: 0; padding: 32px 25px; }
    .residential-plan__head { margin-bottom: 70px; }
    .care-grid__photo { height: 450px; }
    .care-grid__photo::before,
    .care-grid__photo img { border-radius: 150px 25px 25px 25px; }
    .home-cta { align-items: flex-start; flex-direction: column; gap: 25px; }

    .question-mark { width: 270px; height: 270px; font-size: 10rem; }
    .faq-orbit--one { top: 30px; }
    .faq-orbit--two { bottom: 75px; }
    .faq-item summary { padding: 24px 0; }
    .faq-item summary > span { grid-template-columns: 35px 1fr; gap: 8px; font-size: 1rem; }
    .faq-item summary > i { width: 36px; height: 36px; }
    .faq-item__answer { padding: 0 10px 24px 43px; }

    .page-hero--contact .page-hero__art { min-height: 310px; }
    .contact-hero__logo { width: 310px; height: 225px; }
    .contact-hero__logo img { width: 260px; }
    .contact-hero__area { right: 0; bottom: 18px; }
    .contact-form-card { padding: 30px 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .field--full { grid-column: auto; }

    .footer-cta { padding-top: 75px; }
    .footer-cta__panel { min-height: 0; padding: 42px 27px; }
    .footer-cta__panel .button { width: 100%; }
    .site-footer { margin-top: -30px; padding-top: 105px; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 38px; padding-bottom: 45px; }
    .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 8px; }

    .mobile-quote {
        display: flex;
        position: fixed;
        z-index: 90;
        right: 14px;
        bottom: 12px;
        left: 14px;
        min-height: 52px;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: var(--forest);
        background: var(--lime);
        border: 1px solid rgba(0, 54, 29, 0.2);
        border-radius: 999px;
        box-shadow: 0 15px 35px rgba(0, 54, 29, 0.25);
        font-size: 0.82rem;
        font-weight: 700;
    }
}

/* Editorial rebalance: a calmer type scale, more photography and fewer card grids. */
body {
    font-size: 16px;
    line-height: 1.65;
}

h1,
h2,
h3 {
    line-height: 1.13;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

h1 { font-size: clamp(3rem, 4.8vw, 4rem); }
h2 { font-size: clamp(2.15rem, 3.3vw, 2.625rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); letter-spacing: -0.015em; }

.section { padding: 96px 0; }
.large-copy { font-size: clamp(1.1rem, 1.5vw, 1.25rem); }
.eyebrow { margin-bottom: 17px; font-size: 0.72rem; letter-spacing: 0.14em; }

/* Home hero */
.hero--home {
    min-height: 730px;
    padding: calc(var(--header-height) + 54px) 0 34px;
}

.hero__grid {
    min-height: 555px;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.85fr);
    gap: 64px;
}

.hero__copy h1 {
    max-width: 680px;
    margin-bottom: 24px;
    font-size: clamp(3.2rem, 5vw, 4rem);
}

.hero__lead {
    margin-bottom: 28px;
    font-size: 1.125rem;
}

.hero__points { margin-top: 28px; }
.hero__visual { min-height: 520px; }

.hero__photo {
    z-index: 1;
    width: 88%;
    height: 91%;
    right: 0;
    bottom: 0;
    background: var(--forest-soft);
    border-radius: 190px 32px 32px 32px;
}

.hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__lime-orbit {
    z-index: 0;
    width: 300px;
    height: 300px;
    right: -45px;
    bottom: -25px;
}

.hero__status--top { top: 68px; left: -3%; }
.hero__status--bottom { right: -2%; bottom: 40px; }
.hero__stamp { top: 24px; right: -2%; }

/* Home editorial service bands */
.intro__grid { margin-bottom: 52px; gap: 64px; }
.intro__body { padding-top: 22px; }

.service-chooser {
    grid-template-columns: 1fr;
    gap: 22px;
}

.service-card {
    display: grid;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    grid-template-columns: minmax(330px, 0.88fr) minmax(0, 1.12fr);
    border-radius: 32px;
}

.service-card::before { display: none; }

.service-card__media {
    position: relative;
    min-height: 390px;
    margin: 0;
    overflow: hidden;
}

.service-card__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(0, 54, 29, 0.34));
    content: "";
}

.service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card--business .service-card__media img { object-position: 52% center; }
.service-card--home .service-card__media img { object-position: center 58%; }

.service-card__body {
    position: relative;
    padding: 42px 48px;
}

.service-card--reverse .service-card__media { order: 2; }
.service-card__number { top: 32px; right: 36px; }

.service-card__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 15px;
}

.service-card__icon .icon { width: 24px; height: 24px; }
.service-card h3 { max-width: 560px; margin-bottom: 14px; font-size: clamp(1.8rem, 2.5vw, 2.125rem); }
.service-card__body > p:not(.eyebrow) { max-width: 560px; margin-bottom: 0; opacity: 0.75; }
.service-card .check-list--compact { max-width: none; margin: 20px 0; }
.service-card .text-link { margin-top: 4px; }

/* Pest index with documentary image */
.pests-section__grid {
    grid-template-columns: minmax(0, 0.7fr) minmax(520px, 1.3fr);
    gap: 72px;
}

.pest-editorial {
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 30px;
}

.pest-editorial__photo {
    position: relative;
    aspect-ratio: 16 / 8.5;
    margin: 0;
    overflow: hidden;
}

.pest-editorial__photo::after {
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(transparent, rgba(0, 54, 29, 0.82));
    content: "";
}

.pest-editorial__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pest-editorial__photo figcaption {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 20px;
    left: 24px;
    margin: 0;
    color: var(--white);
    font-size: 0.74rem;
    font-weight: 700;
}

.pest-index {
    display: grid;
    padding: 18px 24px 8px;
    margin: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 18px;
    list-style: none;
}

.pest-index li {
    display: flex;
    padding: 13px 0;
    align-items: baseline;
    gap: 9px;
    border-top: 1px solid var(--line);
}

.pest-index b { color: var(--lime); font-size: 0.58rem; }
.pest-index span { font-size: 16px; font-weight: 500; }

.pest-editorial__note {
    padding: 14px 24px 20px;
    margin: 0;
    color: var(--muted);
    font-size: 0.72rem;
}

/* Process as a timeline, not another row of cards */
.method-section__head { margin-bottom: 46px; gap: 64px; }
.method-grid { gap: 0; border-top: 1px solid rgba(255, 255, 255, 0.2); border-bottom: 1px solid rgba(255, 255, 255, 0.2); }

.method-step {
    min-height: 0;
    padding: 28px 26px 32px;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
}

.method-step:last-child { border-right: 0; }
.method-step:hover { background: rgba(255, 255, 255, 0.045); transform: none; }
.method-step__number { top: 23px; right: 22px; }
.method-step__icon { width: 46px; height: 46px; margin-bottom: 26px; border-radius: 13px; }
.method-step__icon .icon { width: 22px; height: 22px; }
.method-step h3 { margin-bottom: 10px; font-size: 1.4rem; }
.method-step p { font-size: 0.82rem; }

.coverage-card { min-height: 410px; }
.coverage-card__map { min-height: 390px; }
.coverage-card__copy { padding: 48px 55px 48px 20px; }
.coverage-card__copy h2 { font-size: clamp(2rem, 3vw, 2.625rem); }

/* Inner pages */
.page-hero {
    min-height: 610px;
    padding: calc(var(--header-height) + 54px) 0 54px;
}

.page-hero__grid {
    min-height: 455px;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
    gap: 72px;
}

.page-hero__copy h1 {
    margin-bottom: 23px;
    font-size: clamp(2.8rem, 4.4vw, 3.375rem);
}

.page-hero__copy > p:not(.eyebrow) { margin-bottom: 28px; font-size: 1.125rem; }
.page-hero__art { min-height: 440px; }

.page-hero__art--about { display: block; }

.about-hero-photo {
    position: absolute;
    inset: 0 22px 28px 24px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 180px 30px 30px 30px;
}

.about-hero-photo::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 54, 29, 0.62));
    content: "";
}

.about-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 48% center; }

.about-hero-mark {
    display: grid;
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 5px;
    width: 112px;
    height: 112px;
    overflow: hidden;
    place-items: center;
    background: var(--lime);
    border: 8px solid var(--forest);
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.about-hero-mark img { width: 128px; max-width: none; margin-top: -4px; }
.about-art__line { right: auto; bottom: -7px; left: 34px; justify-content: flex-start; }

.story-grid { gap: 82px; }
.story-grid__visual { min-height: 540px; }
.story-photo { width: 90%; height: 82%; }
.split-heading { margin-bottom: 48px; gap: 70px; }

.values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}

.value-card {
    display: grid;
    min-height: 0;
    padding: 30px 42px 30px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    grid-template-columns: 54px 1fr;
    grid-template-areas: "icon title" "icon copy";
    column-gap: 20px;
}

.value-card:nth-child(even) { padding-left: 42px; border-left: 1px solid var(--line); }
.value-card:hover { background: transparent; transform: none; }
.value-card > span { top: 31px; right: 18px; }
.value-card__icon { width: 50px; height: 50px; margin: 0; grid-area: icon; border-radius: 14px; }
.value-card__icon .icon { width: 23px; height: 23px; }
.value-card h3 { align-self: end; margin: 0 32px 6px 0; grid-area: title; font-size: 1.4rem; }
.value-card p { margin: 0; grid-area: copy; font-size: 0.82rem; }
.manifesto-grid { gap: 80px; }

/* Business photo mosaic */
.sector-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.sector-card--photo {
    min-height: 420px;
    padding: 0;
    overflow: hidden;
    color: var(--white);
    background: var(--forest);
    border: 0;
    grid-column: span 6;
}

.sector-card__photo,
.sector-card__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.sector-card__photo { object-fit: cover; }
.sector-card__shade { background: linear-gradient(180deg, rgba(0, 54, 29, 0.02) 30%, rgba(0, 54, 29, 0.92)); }

.sector-card__content {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 32px;
}

.sector-card--photo .sector-card__number { position: static; display: block; margin-bottom: 12px; color: var(--lime); }
.sector-card--photo h3 { min-height: 0; margin-bottom: 9px; font-size: 1.75rem; }
.sector-card--photo p { max-width: 470px; margin-bottom: 18px; color: rgba(255, 255, 255, 0.76); font-size: 0.85rem; }
.sector-card--photo small { color: var(--white); border-color: rgba(255, 255, 255, 0.25); }

.sector-card--compact {
    display: grid;
    min-height: 230px;
    padding: 32px;
    align-content: center;
    grid-column: span 6;
    grid-template-columns: 64px 1fr;
    grid-template-areas: "icon title" "icon copy" ". meta";
    column-gap: 20px;
}

.sector-card--compact .sector-card__icon { width: 54px; height: 54px; margin: 0; grid-area: icon; border-radius: 15px; }
.sector-card--compact h3 { min-height: 0; margin: 0 30px 8px 0; align-self: end; grid-area: title; font-size: 1.45rem; }
.sector-card--compact p { margin: 0 0 14px; grid-area: copy; font-size: 0.82rem; }
.sector-card--compact small { grid-area: meta; }

/* Business modalities as comparison rows */
.package-grid { margin-top: 48px; grid-template-columns: 1fr; gap: 0; }

.package-card {
    display: grid;
    min-height: 0;
    padding: 28px 32px;
    align-items: start;
    background: rgba(255, 255, 255, 0.76);
    border-width: 1px 1px 0;
    border-radius: 0;
    grid-template-columns: 135px minmax(220px, 0.72fr) minmax(0, 1fr);
    grid-template-areas: "top title copy" "top title list";
    gap: 0 28px;
}

.package-card:first-child { border-radius: 22px 22px 0 0; }
.package-card:nth-last-child(1) { border-bottom-width: 1px; border-radius: 0 0 22px 22px; }
.package-card--featured { background: var(--forest); }
.package-card__top { margin: 3px 0 0; grid-area: top; }
.package-card h3 { margin: 2px 0 0; grid-area: title; font-size: clamp(1.65rem, 2.5vw, 2.125rem); }
.package-card > p { margin: 0; grid-area: copy; font-size: 0.84rem; }
.package-card .check-list { margin: 14px 0 0; grid-area: list; }
.package-card__label { top: 20px; right: 22px; }
.package-note { margin-top: 24px; }

/* Residential */
.page-hero__art--residential { min-height: 450px; }

.page-hero__art--residential > .residential-hero-photo {
    position: absolute;
    z-index: 1;
    width: 92%;
    height: 96%;
    max-width: 100%;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(0, 54, 29, 0.14);
    border-radius: 180px 30px 30px 30px;
    filter: none;
}

.residential-badge { left: -12px; bottom: 36px; }
.residential-intro__grid { gap: 80px; }
.residential-plan { min-height: 0; padding: 36px; }
.residential-plan__head { margin-bottom: 34px; }
.residential-plan h3 { font-size: clamp(1.8rem, 2.6vw, 2.125rem); }
.care-grid { gap: 82px; }
.care-grid__photo { height: 520px; }

/* Contact */
.page-hero--contact { min-height: 555px; }
.page-hero--contact .page-hero__grid { min-height: 405px; }

.contact-aside__photo {
    position: relative;
    margin: 0 0 24px;
    overflow: hidden;
    background: var(--forest);
    border-radius: 22px;
}

.contact-aside__photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 70%; }
.contact-aside__photo figcaption { padding: 15px 17px; margin: 0; color: rgba(255, 255, 255, 0.78); background: var(--forest); font-size: 0.7rem; }
.contact-form-card__head h2 { font-size: clamp(2rem, 3vw, 2.5rem); }

/* Compact closing callout */
.footer-cta { padding-top: 82px; }
.footer-cta__panel { min-height: 210px; padding: 40px 48px; }
.footer-cta__panel h2 { font-size: clamp(2rem, 3vw, 2.5rem); }
.site-footer { padding-top: 118px; }

@media (max-width: 980px) {
    .section { padding: 80px 0; }
    h2 { font-size: 2.25rem; }
    .hero__copy h1 { font-size: 3.25rem; }
    .page-hero__copy h1 { font-size: 2.875rem; }
    .hero--home,
    .page-hero { min-height: auto; }
    .hero__grid,
    .page-hero__grid,
    .intro__grid,
    .pests-section__grid,
    .method-section__head,
    .story-grid,
    .manifesto-grid,
    .business-process__grid,
    .residential-intro__grid,
    .care-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .hero__grid { min-height: auto; gap: 34px; }
    .hero__visual { width: min(100%, 620px); min-height: 500px; margin-inline: auto; }
    .page-hero__grid { min-height: 0; gap: 42px; }
    .split-heading { grid-template-columns: 1fr; gap: 28px; }
    .service-card { min-height: 0; grid-template-columns: minmax(290px, 0.85fr) minmax(0, 1.15fr); }
    .pests-section__grid { gap: 46px; }
    .pest-editorial { max-width: 760px; }
    .method-grid { grid-template-columns: repeat(2, 1fr); }
    .method-step:nth-child(2) { border-right: 0; }
    .method-step:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
    .coverage-card__copy { padding: 42px 46px; }
    .page-hero__art { min-height: 430px; }
    .about-hero-photo { inset: 0 70px 26px; }
    .about-hero-mark { right: 48px; }
    .about-art__line { left: 85px; }
    .package-card { grid-template-columns: 112px 1fr; grid-template-areas: "top title" "copy copy" "list list"; row-gap: 12px; }
    .package-card__label { position: static; width: max-content; margin: 0 0 10px; grid-column: 1 / -1; }
    .page-hero__art--residential { width: min(100%, 600px); }
    .contact-aside { max-width: 760px; }
    .contact-aside__photo { max-width: 580px; }
}

@media (max-width: 700px) {
    body { font-size: 16px; line-height: 1.6; }
    .section { padding: 64px 0; }
    h1 { font-size: 2.5rem; }
    h2 { margin-bottom: 19px; font-size: 1.875rem; line-height: 1.18; }
    h3 { font-size: 1.3125rem; }
    .large-copy { font-size: 1.125rem; }
    .eyebrow { margin-bottom: 15px; font-size: 0.68rem; letter-spacing: 0.12em; }

    .hero--home { padding-top: calc(var(--header-height) + 48px); }
    .hero__copy h1 { font-size: 2.5rem; line-height: 1.1; }
    .hero__lead { font-size: 1rem; }
    .hero__visual { width: 100%; min-height: 420px; margin: 4px 0 0; }
    .hero__photo { width: 96%; height: 91%; border-radius: 145px 24px 24px 24px; }
    .hero__lime-orbit { width: 230px; height: 230px; }
    .hero__status--top,
    .hero__stamp { display: none; }
    .hero__status--bottom { right: 0; bottom: 22px; }

    .intro__grid { margin-bottom: 36px; }
    .service-card { grid-template-columns: 1fr; border-radius: 25px; }
    .service-card__media,
    .service-card--reverse .service-card__media { min-height: 250px; order: 0; }
    .service-card__body { padding: 28px 24px 31px; }
    .service-card__icon { margin-bottom: 18px; }
    .service-card h3 { font-size: 1.75rem; }
    .service-card__number { top: 26px; right: 25px; }

    .pest-editorial__photo { aspect-ratio: 4 / 3; }
    .pest-index { padding: 14px 18px 4px; grid-template-columns: repeat(2, 1fr); gap: 0 14px; }
    .pest-editorial__note { padding: 12px 18px 18px; }

    .method-section__head { margin-bottom: 34px; }
    .method-grid { grid-template-columns: 1fr; }
    .method-step { padding: 24px 8px 25px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
    .method-step:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
    .method-step:last-child { border-bottom: 0; }
    .method-step__icon { margin-bottom: 18px; }
    .coverage-card__map { min-height: 290px; }
    .coverage-card__copy { padding: 34px 26px 39px; }

    .page-hero__copy h1 { font-size: 2.25rem; line-height: 1.12; }
    .page-hero__copy > p:not(.eyebrow) { font-size: 1rem; }
    .page-hero__art { min-height: 370px; }
    .about-hero-photo { inset: 0 12px 24px; border-radius: 145px 24px 24px 24px; }
    .about-hero-mark { right: 0; width: 92px; height: 92px; }
    .about-art__line { left: 22px; }
    .story-grid__visual { min-height: 470px; }
    .story-photo { height: 80%; }
    .split-heading { margin-bottom: 36px; }

    .values-grid { grid-template-columns: 1fr; }
    .value-card,
    .value-card:nth-child(even) { padding: 25px 26px 25px 0; border-left: 0; }
    .value-card h3 { font-size: 1.3rem; }
    .manifesto-grid { gap: 36px; }

    .sector-card--photo,
    .sector-card--compact { grid-column: span 12; }
    .sector-card--photo { min-height: 370px; }
    .sector-card__content { padding: 26px; }
    .sector-card--photo h3 { font-size: 1.55rem; }
    .sector-card--compact { min-height: 0; padding: 27px 24px; }

    .package-card { padding: 26px 24px; grid-template-columns: 1fr; grid-template-areas: "top" "title" "copy" "list"; gap: 10px; }
    .package-card__top { margin-bottom: 5px; }
    .package-card h3 { font-size: 1.75rem; }
    .package-card .check-list { margin-top: 8px; }

    .page-hero__art--residential { min-height: 390px; }
    .page-hero__art--residential > .residential-hero-photo { width: 96%; border-radius: 145px 24px 24px 24px; }
    .residential-badge { bottom: 20px; }
    .residential-plan { padding: 29px 24px; }
    .residential-plan__head { margin-bottom: 27px; }
    .residential-plan h3 { font-size: 1.75rem; }
    .care-grid__photo { height: 430px; }

    .contact-aside__photo img { aspect-ratio: 4 / 3; }
    .contact-form-card__head h2 { font-size: 1.75rem; }
    .footer-cta { padding-top: 62px; }
    .footer-cta__panel { padding: 34px 25px; }
    .footer-cta__panel h2 { font-size: 1.875rem; }
}

/* Updated brand assets and five-zone coverage. */
.site-header .brand {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.brand__logo {
    width: 178px;
    height: auto;
}

.site-header.is-scrolled .brand__logo { width: 162px; }

.site-header.is-scrolled {
    color: var(--white);
    background: rgba(0, 54, 29, 0.96);
    box-shadow: 0 10px 30px rgba(0, 20, 11, 0.24);
}

.site-header.is-scrolled::after { background: rgba(255, 255, 255, 0.14); }

.hero__stamp img {
    width: 74%;
    height: 74%;
    margin: 10px;
    object-fit: contain;
}

.about-hero-mark,
.story-logo { background: var(--white); }

.about-hero-mark img {
    width: 78%;
    max-width: 100%;
    margin: 0;
}

.story-logo img {
    width: 78%;
    max-width: 100%;
    margin: 0;
}

.contact-hero__logo {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.42);
}

.contact-hero__logo img { width: 360px; }

.map-line--one {
    width: 22%;
    left: 20%;
    top: 72%;
    transform: rotate(-28deg);
}

.map-line--two {
    width: 31%;
    left: 38%;
    top: 54%;
    transform: rotate(7deg);
}

.map-line--three {
    width: 20%;
    left: 38%;
    top: 54%;
    transform: rotate(-50deg);
}

.map-line--four {
    width: 23%;
    left: 49%;
    top: 28%;
    transform: rotate(-18deg);
}

.map-dot--one { left: 15%; top: 72%; }
.map-dot--two { left: 35%; top: 54%; }
.map-dot--three { left: 70%; top: 60%; }
.map-dot--four { left: 46%; top: 28%; }
.map-dot--five { left: 72%; top: 12%; }

.site-footer__title,
.faq-item summary { font-family: var(--font-subtitle); }

@media (max-width: 980px) {
    .site-header .brand__logo { width: 158px; }
}

@media (max-width: 700px) {
    .site-header .brand {
        padding: 0;
        border-radius: 0;
    }

    .site-header .brand__logo,
    .site-header.is-scrolled .brand__logo { width: 145px; }

    .contact-hero__logo img { width: 270px; }
    .map-dot { font-size: 0.6rem; letter-spacing: 0.02em; }
    .map-dot i { width: 14px; height: 14px; border-width: 3px; }
    .map-dot--three { left: 66%; }
    .map-dot--four { left: 39%; }
    .map-dot--five { left: 71%; }

}

/* Mission, clinical disinfection and WhatsApp additions. */
.main-nav a {
    font-size: 16px;
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.purpose-card {
    min-height: 430px;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 30px;
}

.purpose-card--mission {
    color: var(--white);
    background: var(--forest);
    border-color: transparent;
}

.purpose-card--vision {
    background: var(--lime-wash);
}

.purpose-card__top {
    display: flex;
    margin-bottom: 44px;
    align-items: center;
    justify-content: space-between;
}

.purpose-card__top > span {
    color: currentColor;
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0.58;
}

.purpose-card__icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    color: var(--forest);
    background: var(--lime);
    border-radius: 16px;
}

.purpose-card--vision .purpose-card__icon {
    color: var(--white);
    background: var(--forest);
}

.purpose-card__icon .icon {
    width: 26px;
    height: 26px;
}

.purpose-card h3 {
    max-width: 520px;
    margin-bottom: 18px;
    font-size: clamp(1.75rem, 2.6vw, 2.35rem);
}

.purpose-card > p:last-child {
    margin-bottom: 0;
    color: currentColor;
    opacity: 0.72;
}

.service-card--clinical {
    color: var(--ink);
    background: var(--lime-wash);
}

.service-card--clinical .service-card__icon {
    color: var(--white);
    background: var(--forest);
}

.service-card--clinical .service-card__media img {
    object-position: center 45%;
}

.sector-card--clinical {
    display: grid;
    min-height: 0;
    padding: 0;
    align-items: stretch;
    overflow: hidden;
    color: var(--white);
    background: var(--forest);
    border: 0;
    grid-column: span 12;
    grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
    gap: 0;
}

.sector-card__clinical-media {
    position: relative;
    min-height: 540px;
    margin: 0;
    overflow: hidden;
    background: var(--forest-soft);
}

.sector-card__clinical-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 70%, rgba(0, 54, 29, 0.2));
    content: "";
    pointer-events: none;
}

.sector-card__clinical-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 53% center;
}

.sector-card__clinical-body {
    display: grid;
    padding: 44px 46px;
    align-content: center;
}

.sector-card__clinical-intro {
    display: grid;
    align-items: start;
    grid-template-columns: 32px 60px 1fr;
    gap: 18px;
}

.sector-card--clinical .sector-card__number,
.sector-card--clinical .sector-card__icon {
    position: static;
    margin: 0;
}

.sector-card--clinical .sector-card__number {
    padding-top: 8px;
    color: var(--lime);
}

.sector-card--clinical .eyebrow {
    margin-bottom: 10px;
}

.sector-card--clinical h3 {
    min-height: 0;
    margin-bottom: 12px;
    font-size: clamp(1.75rem, 2.6vw, 2.25rem);
}

.sector-card--clinical p:not(.eyebrow) {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.sector-card__clinical-details .check-list {
    margin: 28px 0 24px 128px;
}

.sector-card__clinical-details .button {
    margin-left: 128px;
}

.whatsapp-float {
    display: block;
    position: fixed;
    z-index: 95;
    right: 22px;
    bottom: 22px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    filter: drop-shadow(0 12px 18px rgba(0, 54, 29, 0.3));
    transition: transform 200ms var(--ease), filter 200ms var(--ease);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    filter: drop-shadow(0 15px 22px rgba(0, 54, 29, 0.38));
    transform: translateY(-4px) scale(1.04);
}

.whatsapp-float:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 980px) {
    .main-nav.is-open a {
        font-size: 16px;
    }

    .sector-card--clinical {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sector-card__clinical-media {
        min-height: 340px;
        aspect-ratio: 16 / 8.5;
    }

    .sector-card__clinical-media::after {
        background: linear-gradient(180deg, transparent 72%, rgba(0, 54, 29, 0.2));
    }
}

@media (max-width: 700px) {
    .purpose-grid {
        grid-template-columns: 1fr;
    }

    .purpose-card {
        min-height: 0;
        padding: 30px 25px;
        border-radius: 24px;
    }

    .purpose-card__top {
        margin-bottom: 30px;
    }

    .sector-card--clinical {
        padding: 0;
    }

    .sector-card__clinical-media {
        min-height: 250px;
        aspect-ratio: 4 / 3;
    }

    .sector-card__clinical-media img {
        object-position: center;
    }

    .sector-card__clinical-body {
        padding: 30px 24px;
    }

    .sector-card__clinical-intro {
        grid-template-columns: 28px 52px 1fr;
        grid-template-areas:
            "number icon ."
            "content content content";
        gap: 18px 12px;
    }

    .sector-card__clinical-intro > .sector-card__number {
        grid-area: number;
    }

    .sector-card--clinical .sector-card__icon {
        width: 52px;
        height: 52px;
        grid-area: icon;
    }

    .sector-card__clinical-intro > div:last-child {
        grid-area: content;
    }

    .sector-card__clinical-details .check-list {
        margin-left: 0;
    }

    .sector-card__clinical-details .button {
        width: 100%;
        margin-left: 0;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 80px;
        width: 58px;
        height: 58px;
    }

    .contact-page .whatsapp-float {
        bottom: 16px;
    }
}

.eyebrow {
    font-size: 18px;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .js .reveal { opacity: 1; transform: none; }
}
