/* =====================================================================
   SURE SHOT PEST CONTROL — "Field Manual" stylesheet
   ---------------------------------------------------------------------
   Warm paper, green-black ink, honey and signal-red accents. The visual
   language of a regional pest-control field guide: ruled lines, ledger
   tables, specimen photographs with caption strips, index numerals, and
   the brand's bullseye used as a working mark — not a special effect.

   Display: Fraunces (variable optical serif) · UI/Body: Space Grotesk
   No frameworks, no build step. Hand-tuned.
   ===================================================================== */

/* ----------------------------- Tokens ------------------------------ */
:root {
    --paper: #f4efe3;
    --paper-2: #ece5d3;
    --paper-3: #e4dcc6;
    --ink: #20281f;
    --ink-soft: #4c5648;
    --ink-faint: #79816f;
    --ink-dark-bg: #181f17;
    --ink-dark-bg-2: #131912;
    --cream: #f4efe3;

    --honey: #a87708;
    --honey-bright: #eaa820;
    --red: #b51f2e;
    --red-bright: #d92b3c;
    --green: #2e6b46;

    --rule: rgba(32, 40, 31, 0.16);
    --rule-strong: rgba(32, 40, 31, 0.34);
    --rule-light: rgba(244, 239, 227, 0.16);
    --rule-light-strong: rgba(244, 239, 227, 0.32);

    --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
    --font-body: 'Space Grotesk', 'DM Sans', sans-serif;

    --shadow-card: 0 1px 2px rgba(32, 40, 31, 0.08), 0 12px 32px -14px rgba(32, 40, 31, 0.28);
    --shadow-lift: 0 2px 4px rgba(32, 40, 31, 0.1), 0 22px 48px -16px rgba(32, 40, 31, 0.34);

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --t-fast: 160ms var(--ease-out);
    --t-med: 380ms var(--ease-out);

    --container: 1200px;
    --pad: clamp(1.1rem, 4vw, 2.5rem);
    --nav-h: 80px;
}

/* ----------------------------- Reset ------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: calc(var(--nav-h) + 1rem);
}

body {
    font-family: var(--font-body);
    font-size: 1.04rem;
    line-height: 1.7;
    color: var(--ink-soft);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

/* Paper grain — barely-there, multiply so it dirties the paper a touch */
body::after {
    content: "";
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 2000;
    opacity: 0.045;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--ink); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--red); }

::selection { background: var(--honey-bright); color: var(--ink); }

:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
    border-radius: 2px;
}

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb {
    background: #b9b09a;
    border-radius: 99px;
    border: 3px solid var(--paper-2);
}
::-webkit-scrollbar-thumb:hover { background: var(--honey); }

/* --------------------------- Typography ---------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 540;
    line-height: 1.08;
    color: var(--ink);
    letter-spacing: -0.014em;
    text-wrap: balance;
}

.display-xl {
    font-size: clamp(3rem, 8vw, 6.2rem);
    font-variation-settings: "opsz" 144;
    font-weight: 580;
    line-height: 1.02;
}
h1 { font-size: clamp(2.7rem, 6.2vw, 4.8rem); font-variation-settings: "opsz" 120; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); }
h4 { font-size: 1.08rem; font-family: var(--font-body); font-weight: 600; }

em.disp, .italic { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 70; }

p { margin-bottom: 1rem; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.24rem); line-height: 1.65; color: var(--ink-soft); }

/* Accent words — solid ink-red italic. No gradients anywhere. */
.accent { font-style: italic; color: var(--red); }
.accent-honey { font-style: italic; color: var(--honey); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--honey);
    margin-bottom: 1rem;
}
.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid var(--red);
    flex: none;
}

.mono {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-faint);
    font-weight: 600;
}

ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

/* --------------------------- Layout -------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--pad);
}
.container-wide { max-width: 1400px; }

.section { padding-block: clamp(3.6rem, 8vw, 6.6rem); position: relative; }
.section-tight { padding-block: clamp(2.2rem, 4.5vw, 3.6rem); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4.5vw, 3.4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 0.9rem; margin-bottom: 0; }

/* Section header with running index number — editorial, asymmetric */
.sec-mark {
    display: flex;
    align-items: baseline;
    gap: 1.1rem;
    border-top: 2px solid var(--ink);
    padding-top: 0.9rem;
    margin-bottom: clamp(1.8rem, 4vw, 3rem);
}
.sec-mark .label {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.sec-mark .rule { flex: 1; height: 1px; background: var(--rule); align-self: center; }

.hairline-top { border-top: 1px solid var(--rule); }
.hairline-bottom { border-bottom: 1px solid var(--rule); }
.text-center { text-align: center; }

.band-alt { background: var(--paper-2); }

/* Dark ink band (mission / CTA) */
.band-ink {
    background: var(--ink-dark-bg);
    color: #b9bfae;
}
.band-ink h1, .band-ink h2, .band-ink h3 { color: var(--cream); }
.band-ink .eyebrow { color: var(--honey-bright); }
.band-ink a { color: var(--cream); }
.band-ink a:hover { color: var(--honey-bright); }

/* ------------------------ Reticle cursor --------------------------- */
@media (pointer: fine) {
    body.has-reticle, body.has-reticle a, body.has-reticle button,
    body.has-reticle input, body.has-reticle textarea, body.has-reticle select,
    body.has-reticle label, body.has-reticle summary { cursor: none; }
    /* The reticle hides over map embeds (iframes eat mousemove) — give the
       OS cursor back there. */
    body.has-reticle .map-embed, body.has-reticle .map-embed * { cursor: auto; }
}
.reticle, .reticle-dot {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 4000;
    will-change: transform;
}
/* Ticks are drawn with four background gradients — identical geometry on
   every side, unlike the old clip-path approach which shaved the left tick. */
.reticle {
    --tick: 22%;
    --tick-w: 1.5px;
    width: 42px;
    height: 42px;
    margin: -21px 0 0 -21px;
    border: 1.5px solid rgba(32, 40, 31, 0.75);
    border-radius: 50%;
    background-image:
        linear-gradient(currentColor, currentColor),
        linear-gradient(currentColor, currentColor),
        linear-gradient(currentColor, currentColor),
        linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-size:
        var(--tick-w) var(--tick),
        var(--tick-w) var(--tick),
        var(--tick) var(--tick-w),
        var(--tick) var(--tick-w);
    background-position:
        center top,
        center bottom,
        left center,
        right center;
    color: rgba(32, 40, 31, 0.75);
    transition: width 240ms var(--ease-out), height 240ms var(--ease-out),
                margin 240ms var(--ease-out), border-color 180ms ease,
                color 180ms ease, opacity 180ms ease;
}
.reticle-dot {
    width: 4.5px;
    height: 4.5px;
    margin: -2.25px 0 0 -2.25px;
    border-radius: 50%;
    background: var(--ink);
}
body.reticle-hover .reticle {
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border-color: var(--red);
    color: var(--red);
}
body.reticle-hover .reticle-dot { background: var(--red); }
body.reticle-down .reticle { width: 30px; height: 30px; margin: -15px 0 0 -15px; }
.reticle.is-hidden, .reticle-dot.is-hidden { opacity: 0; }

/* On dark bands the reticle flips to cream via JS adding .on-ink */
body.reticle-ink .reticle { border-color: rgba(244, 239, 227, 0.85); color: rgba(244, 239, 227, 0.85); }
body.reticle-ink .reticle-dot { background: var(--cream); }
body.reticle-ink.reticle-hover .reticle { border-color: var(--red-bright); color: var(--red-bright); }
body.reticle-ink.reticle-hover .reticle-dot { background: var(--red-bright); }

/* ----------------------- Scroll progress --------------------------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2.5px;
    width: 100%;
    transform-origin: 0 50%;
    transform: scaleX(0);
    background: var(--red);
    z-index: 3000;
    pointer-events: none;
}

/* ----------------------------- Nav --------------------------------- */
.site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(244, 239, 227, 0);
    border-bottom: 1px solid transparent;
    transition: background var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
.site-nav.scrolled {
    background: rgba(244, 239, 227, 0.94);
    border-bottom-color: var(--rule);
    box-shadow: 0 6px 24px -12px rgba(32, 40, 31, 0.25);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: var(--nav-h);
    transition: height var(--t-med);
}
.site-nav.scrolled .nav-inner { height: 64px; }

.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 44px; width: auto; transition: height var(--t-med); }
.site-nav.scrolled .brand img { height: 36px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1.1rem, 2.4vw, 2.2rem);
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-links a {
    position: relative;
    display: inline-block;
    padding: 0.35rem 0;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: 100% 50%;
    transition: transform var(--t-med);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 1.1rem; }
.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--ink);
    white-space: nowrap;
}
.nav-phone svg { color: var(--red); }
.nav-phone:hover { color: var(--red); }

/* Sprite <use> icons have no intrinsic size — size them per context */
.nav-phone svg, .menu-phone svg { width: 17px; height: 17px; flex: none; }
.cs-ico svg { width: 21px; height: 21px; }
.ledger-ico svg { width: 22px; height: 22px; }
.back-to-top svg { width: 20px; height: 20px; }
.mobile-cta-bar .btn svg { width: 15px; height: 15px; }
.pest-chip svg { flex: none; }

.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--rule-strong);
    border-radius: 50%;
}
.nav-burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--ink);
    border-radius: 2px;
    transition: transform var(--t-med), opacity var(--t-med);
}
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 900;
    display: grid;
    place-items: center;
    background: rgba(244, 239, 227, 0.97);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t-med), visibility var(--t-med);
}
body.menu-open .menu-overlay { opacity: 1; visibility: visible; }
.menu-overlay ul { list-style: none; padding: 0; text-align: center; }
.menu-overlay li { margin: 0.35rem 0; overflow: hidden; }
.menu-overlay a {
    display: inline-block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(2.2rem, 8.5vw, 3.6rem);
    color: var(--ink);
    line-height: 1.25;
    transform: translateY(110%);
    transition: transform 550ms var(--ease-out), color var(--t-fast);
}
body.menu-open .menu-overlay a { transform: translateY(0); }
.menu-overlay li:nth-child(2) a { transition-delay: 45ms; }
.menu-overlay li:nth-child(3) a { transition-delay: 90ms; }
.menu-overlay li:nth-child(4) a { transition-delay: 135ms; }
.menu-overlay li:nth-child(5) a { transition-delay: 180ms; }
.menu-overlay a:hover { color: var(--red); }
.menu-overlay .menu-phone {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--red);
    margin-top: 1.4rem;
}

/* --------------------------- Buttons ------------------------------- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 1.9rem;
    border: 1.5px solid var(--ink);
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background var(--t-fast), color var(--t-fast),
                border-color var(--t-fast), box-shadow var(--t-med),
                transform var(--t-fast);
}
.btn:active { transform: translateY(1px); }

.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    box-shadow: 0 10px 26px -10px rgba(181, 31, 46, 0.55);
}
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); }

.btn-red { background: var(--red); border-color: var(--red); color: #fff; }
.btn-red:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.band-ink .btn-solid { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.band-ink .btn-solid:hover { background: var(--red-bright); border-color: var(--red-bright); color: #fff; }
.band-ink .btn-ghost { border-color: var(--rule-light-strong); color: var(--cream); }
.band-ink .btn-ghost:hover { border-color: var(--honey-bright); color: var(--honey-bright); }

.btn-lg { padding: 1.05rem 2.4rem; font-size: 0.92rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.78rem; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.84rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    border-bottom: 1.5px solid transparent;
    transition: border-color var(--t-fast);
}
.link-arrow .arr { transition: transform var(--t-fast); }
a:hover .link-arrow .arr, .link-arrow:hover .arr { transform: translateX(5px); }
.link-arrow:hover { border-bottom-color: var(--red); }

/* ----------------------- Specimen photos --------------------------- */
/* A photograph treated like a pinned specimen: ink border, caption strip,
   index tab. The slight rotations are applied per-instance, never uniform. */
.specimen {
    position: relative;
    background: #fff;
    border: 1px solid var(--rule-strong);
    box-shadow: var(--shadow-card);
    padding: 10px 10px 0;
    transition: box-shadow var(--t-med), transform var(--t-med);
}
.specimen img { width: 100%; height: auto; display: block; }
.specimen figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.65rem 0.25rem;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-faint);
}
.specimen figcaption .ref { color: var(--red); flex: none; }
.specimen:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.specimen.tilt-l { transform: rotate(-1.1deg); }
.specimen.tilt-r { transform: rotate(0.9deg); }
.specimen.tilt-l:hover { transform: rotate(-1.1deg) translateY(-4px); }
.specimen.tilt-r:hover { transform: rotate(0.9deg) translateY(-4px); }

/* photo zoom-on-hover inside fixed frame */
.specimen .ph {
    overflow: hidden;
    display: block;
}
.specimen .ph img {
    transition: transform 900ms var(--ease-out);
}
.specimen:hover .ph img { transform: scale(1.045); }

/* ----------------------------- Hero -------------------------------- */
.hero {
    position: relative;
    min-height: 92svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: calc(var(--nav-h) + 2.2rem);
    padding-bottom: 2.5rem;
    overflow: clip;
    border-bottom: 1px solid var(--rule);
}
#fx-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.hero > .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--honey);
    margin-bottom: 1.5rem;
}
.hero-kicker .pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--red);
    position: relative;
    flex: none;
}
.hero-kicker .pulse-dot::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1.5px solid var(--red);
    animation: ping 2.2s var(--ease-out) infinite;
}
@keyframes ping {
    0% { transform: scale(0.5); opacity: 1; }
    80%, 100% { transform: scale(1.7); opacity: 0; }
}

.hero h1 { margin-bottom: 1.3rem; }
.hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.09em; padding-right: 0.12em; }
.hero h1 .word {
    display: inline-block;
    transform: translateY(112%) rotate(1.5deg);
    animation: word-in 900ms var(--ease-out) forwards;
}
@keyframes word-in { to { transform: translateY(0) rotate(0); } }

.hero-sub {
    max-width: 520px;
    font-size: clamp(1.04rem, 1.4vw, 1.2rem);
    margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

.hero-meta {
    display: flex;
    gap: 1.1rem 1.5rem;
    margin-top: 2.5rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--rule);
    flex-wrap: wrap;
}
.hero-meta div strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 580;
    color: var(--ink);
    line-height: 1.1;
}
.hero-meta div strong .unit { color: var(--red); font-style: italic; font-size: 0.62em; }
.hero-meta div strong span:not(.unit) { font-size: inherit; color: inherit; }
.hero-meta div > span {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-faint);
    font-weight: 600;
}

/* Hero visual — stacked specimen photos + mascot sticker */
.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 420px;
}
.hero-visual .specimen.main { width: min(82%, 420px); z-index: 2; }
.hero-visual .specimen.back {
    position: absolute;
    width: min(52%, 250px);
    right: 0;
    bottom: 4%;
    z-index: 3;
}
.hero-sticker {
    position: absolute;
    top: 2%;
    left: 2%;
    width: clamp(110px, 13vw, 158px);
    z-index: 4;
    filter: drop-shadow(0 10px 18px rgba(32, 40, 31, 0.3));
    transition: transform var(--t-med);
    animation: bob 7s ease-in-out infinite;
}
.hero-sticker:hover { transform: rotate(-6deg) scale(1.06); }
@keyframes bob {
    0%, 100% { translate: 0 0; rotate: -3deg; }
    50% { translate: 0 -10px; rotate: 2deg; }
}
.hero-stamp {
    position: absolute;
    bottom: 0;
    left: 6%;
    z-index: 4;
    width: 104px;
    height: 104px;
    color: var(--red);
    opacity: 0.9;
    animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------- Marquee ------------------------------- */
.marquee {
    position: relative;
    border-block: 1px solid var(--rule);
    background: var(--paper-2);
    overflow: hidden;
    padding-block: 0.85rem;
    z-index: 5;
}
.marquee-track {
    display: flex;
    gap: 2.8rem;
    width: max-content;
    animation: marquee 40s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 2.8rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.18rem;
    color: var(--ink);
    white-space: nowrap;
}
.marquee-item .tgt { color: var(--red); font-style: normal; font-size: 0.8rem; }

/* ----------------------------- Stats ------------------------------- */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-block: 2px solid var(--ink);
}
.stat-cell {
    padding: clamp(1.4rem, 2.6vw, 2.2rem) clamp(1rem, 2vw, 1.8rem);
    border-right: 1px solid var(--rule);
}
.stat-cell:last-child { border-right: 0; }
.stat-cell strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    font-weight: 580;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 0.45rem;
}
.stat-cell strong .unit { color: var(--red); font-style: italic; font-size: 0.5em; }
.stat-cell strong span:not(.unit) { font-size: inherit; letter-spacing: inherit; text-transform: none; color: inherit; }
.stat-cell > span { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }

/* ------------------------- Service rows ---------------------------- */
.svc-row {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(1.8rem, 4.5vw, 4rem);
    align-items: center;
    padding-block: clamp(2rem, 4.5vw, 3.4rem);
}
.svc-row + .svc-row { border-top: 1px solid var(--rule); }
.svc-row.flip .svc-fig { order: 2; }
.svc-row h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.9rem; }
.svc-row p { max-width: 56ch; }

/* ------------------------ Editorial split -------------------------- */
.split {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.checklist { list-style: none; padding: 0; margin: 1.3rem 0; }
.checklist li {
    position: relative;
    padding-left: 1.9rem;
    margin-bottom: 0.65rem;
}
.checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--honey);
}

/* ------------------------- Mission band ---------------------------- */
.manifesto { position: relative; overflow: clip; }
.manifesto .target-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(115vw, 1000px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    color: var(--cream);
    opacity: 0.1;
    z-index: 0;
}
.manifesto blockquote {
    position: relative;
    z-index: 1;
    max-width: 940px;
    margin-inline: auto;
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 460;
    font-size: clamp(1.4rem, 3vw, 2.35rem);
    line-height: 1.5;
    color: var(--cream);
    text-wrap: balance;
}
.manifesto blockquote .hl { color: var(--honey-bright); }
.manifesto cite {
    display: block;
    margin-top: 1.8rem;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(244, 239, 227, 0.55);
}
.target-rings .ring-spin { transform-origin: 50% 50%; animation: spin 55s linear infinite; }
.target-rings .ring-spin.rev { animation-direction: reverse; animation-duration: 75s; }

/* ------------------------- Ledger rows ------------------------------ */
/* Credential / promise lists as ruled ledger lines, not card grids. */
.ledger { border-top: 2px solid var(--ink); }
.ledger-row {
    display: grid;
    grid-template-columns: 56px minmax(180px, 0.65fr) 1.35fr;
    gap: 1.2rem;
    align-items: center;
    padding: 1.15rem 0.2rem;
    border-bottom: 1px solid var(--rule);
    transition: background var(--t-fast);
}
.ledger-row:hover { background: rgba(168, 119, 8, 0.06); }
.ledger-ico {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid var(--rule-strong);
    border-radius: 50%;
    color: var(--honey);
    background: #fff;
    transition: transform var(--t-med), color var(--t-fast), border-color var(--t-fast);
}
.ledger-row:hover .ledger-ico { transform: rotate(-7deg) scale(1.06); color: var(--red); border-color: var(--red); }
.ledger-row h3 { font-size: 1.12rem; font-family: var(--font-body); font-weight: 700; color: var(--ink); }
.ledger-row p { margin: 0; font-size: 0.96rem; }

/* ------------------------- Pest specimens --------------------------- */
.pest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.2rem, 2.6vw, 2rem);
}
.pest-card { position: relative; display: block; }
.pest-card .specimen { height: 100%; }
.pest-card .ph { aspect-ratio: 4 / 4.6; }
.pest-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.pest-card .pest-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    padding: 0.85rem 0.25rem 0.3rem;
}
.pest-card .pest-name h3 {
    font-size: 1.35rem;
    font-style: italic;
}
.pest-card .pest-name svg {
    width: 30px;
    height: 30px;
    color: var(--ink-soft);
    flex: none;
    transition: color var(--t-fast), transform var(--t-med);
}
.pest-card:hover .pest-name svg { color: var(--red); transform: scale(1.15) rotate(-5deg); }
.pest-card .pest-desc {
    padding: 0 0.25rem 0.7rem;
    font-size: 0.93rem;
    color: var(--ink-soft);
    margin: 0;
}
.pest-card .specimen figcaption { border-top: 1px dashed var(--rule); }

/* compact icon chips (home teaser) */
.pest-chips { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.pest-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.15rem 0.6rem 0.75rem;
    border: 1px solid var(--rule-strong);
    border-radius: 99px;
    background: #fff;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.9rem;
    transition: border-color var(--t-fast), box-shadow var(--t-med),
                transform var(--t-fast), color var(--t-fast);
}
.pest-chip svg { width: 24px; height: 24px; color: var(--honey); transition: color var(--t-fast); }
.pest-chip:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}
.pest-chip:hover svg { color: var(--red); }

/* ----------------------------- FAQ --------------------------------- */
.faq { max-width: 840px; margin-inline: auto; border-top: 2px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--rule); transition: background var(--t-fast); }
.faq-item.open { background: rgba(168, 119, 8, 0.05); }
.faq-q-h { margin: 0; }
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    width: 100%;
    padding: 1.25rem 0.4rem;
    background: none;
    border: 0;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.06rem;
    font-weight: 600;
    color: var(--ink);
    transition: color var(--t-fast);
}
.faq-q:hover { color: var(--red); }
.faq-q .faq-x {
    position: relative;
    width: 32px;
    height: 32px;
    flex: none;
    border-radius: 50%;
    border: 1px solid var(--rule-strong);
    transition: transform var(--t-med), border-color var(--t-med), background var(--t-med);
}
.faq-q .faq-x::before, .faq-q .faq-x::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    background: var(--ink);
    transition: background var(--t-med);
}
.faq-q .faq-x::before { width: 13px; height: 1.6px; }
.faq-q .faq-x::after { width: 1.6px; height: 13px; }
.faq-item.open .faq-x { transform: rotate(225deg); border-color: var(--red); }
.faq-item.open .faq-x::before, .faq-item.open .faq-x::after { background: var(--red); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 480ms var(--ease-out); }
.faq-a > div { padding: 0 2.8rem 1.4rem 0.4rem; color: var(--ink-soft); }

/* ------------------------ Contact strip ---------------------------- */
.contact-strip { border-block: 1px solid var(--rule); background: var(--paper-2); }
.contact-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    padding-block: 2.1rem;
}
.cs-item { display: flex; align-items: center; gap: 1rem; }
.cs-item .cs-ico {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    flex: none;
    border-radius: 50%;
    border: 1px solid var(--rule-strong);
    color: var(--red);
    background: #fff;
}
.cs-item small {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-faint);
    font-weight: 700;
}
.cs-item strong, .cs-item a strong { font-size: 1.06rem; color: var(--ink); }
.cs-item a:hover strong { color: var(--red); }

/* ------------------------- Testimonials ---------------------------- */
.testimonials { position: relative; max-width: 880px; margin-inline: auto; }
.testimonials-viewport {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--rule-strong);
    box-shadow: var(--shadow-card);
}
.testimonials-slides { display: flex; transition: transform 650ms var(--ease-out); cursor: grab; }
.testimonials-slides.dragging { cursor: grabbing; transition: none; }
.testimonial {
    flex: 0 0 100%;
    padding: clamp(2rem, 4.5vw, 3.2rem) clamp(1.4rem, 5vw, 3.4rem);
    text-align: center;
    user-select: none;
}
.testimonial .stars { color: var(--honey); letter-spacing: 0.3em; font-size: 0.9rem; margin-bottom: 1.2rem; }
.testimonial blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 450;
    font-size: clamp(1.12rem, 1.9vw, 1.5rem);
    line-height: 1.55;
    color: var(--ink);
    text-wrap: balance;
}
.testimonial cite {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.6rem;
    font-style: normal;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
}
.testimonial cite::before, .testimonial cite::after {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--rule-strong);
}
.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.3rem;
    margin-top: 1.3rem;
}
.t-btn {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--rule-strong);
    background: #fff;
    color: var(--ink);
    transition: all var(--t-fast);
}
.t-btn:hover { border-color: var(--red); color: var(--red); transform: scale(1.06); }
.t-dots { display: flex; gap: 0.5rem; }
.t-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid var(--ink-faint);
    background: transparent;
    transition: all var(--t-med);
}
.t-dot.active { background: var(--red); border-color: var(--red); width: 26px; border-radius: 99px; }

/* ----------------------------- Forms ------------------------------- */
.form-card {
    max-width: 740px;
    margin-inline: auto;
    padding: clamp(1.7rem, 4vw, 2.8rem);
    background: #fff;
    border: 1px solid var(--rule-strong);
    box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { position: relative; margin-bottom: 1.1rem; }
.form-field input, .form-field textarea {
    width: 100%;
    padding: 1.3rem 1rem 0.6rem;
    background: var(--paper);
    border: 1px solid var(--rule-strong);
    border-radius: 3px;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field label {
    position: absolute;
    top: 0.95rem;
    left: 1rem;
    font-size: 1rem;
    color: var(--ink-faint);
    pointer-events: none;
    transition: all var(--t-fast);
}
.form-field input:focus, .form-field textarea:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(168, 119, 8, 0.16);
}
.form-field input:focus ~ label, .form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label, .form-field textarea:not(:placeholder-shown) ~ label {
    top: 0.38rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--honey);
    font-weight: 700;
}
.form-field input.invalid, .form-field textarea.invalid { border-color: var(--red); }
.form-error { display: block; min-height: 1.1em; margin-top: 0.28rem; font-size: 0.78rem; color: var(--red); }
.form-status { min-height: 1.4em; margin-bottom: 0.9rem; font-weight: 600; font-size: 0.94rem; }
.form-status.success { color: var(--green); }
.form-status.error { color: var(--red); }
.form-status.error a { color: var(--red); }
/* Off-screen field — real visitors never see or fill it. */
.form-extra { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-actions { display: flex; align-items: center; gap: 1.3rem; flex-wrap: wrap; margin-top: 0.3rem; }
.form-help { font-size: 0.84rem; color: var(--ink-faint); margin: 0; flex: 1; min-width: 220px; }

/* --------------------------- Area map ------------------------------ */
.area-wrap {
    display: grid;
    grid-template-columns: 1.22fr 0.78fr;
    gap: clamp(1.5rem, 4vw, 2.8rem);
    align-items: center;
}
.area-map {
    position: relative;
    border: 1px solid var(--rule-strong);
    background: #fff;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    padding: 10px;
}
.area-map svg { width: 100%; height: auto; display: block; }
.map-dot { fill: var(--honey); }
.map-dot-ring {
    fill: none;
    stroke: var(--honey);
    stroke-width: 1.2;
    opacity: 0.85;
    transform-origin: center;
    transform-box: fill-box;
    animation: map-ping 2.8s var(--ease-out) infinite;
}
@keyframes map-ping {
    0% { transform: scale(0.4); opacity: 0.9; }
    80%, 100% { transform: scale(2.5); opacity: 0; }
}
.map-label {
    fill: var(--ink-soft);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.03em;
}
.map-label.hq { fill: var(--ink); font-weight: 700; }
.map-river { fill: none; stroke: rgba(86, 130, 158, 0.4); stroke-width: 9; stroke-linecap: round; }
.map-river-label {
    fill: rgba(60, 96, 120, 0.75);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.28em;
}
.map-range {
    fill: none;
    stroke: rgba(181, 31, 46, 0.5);
    stroke-width: 1.6;
    stroke-dasharray: 9 11;
}
.map-hq-rings circle { stroke: var(--red); fill: none; }
.area-list { list-style: none; padding: 0; margin: 1.1rem 0 1.6rem; columns: 2; gap: 1.4rem; }
.area-list li {
    break-inside: avoid;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.4rem 0;
    color: var(--ink);
    font-weight: 500;
}
.area-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    flex: none;
    border-radius: 50%;
    border: 2px solid var(--honey);
}
.area-list li.hq::before { border-color: var(--red); }
.area-list li.hq { color: var(--red); font-weight: 700; }

/* Google Maps embed */
.map-embed {
    border: 1px solid var(--rule-strong);
    background: #fff;
    padding: 10px;
    box-shadow: var(--shadow-card);
}
.map-embed iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
    filter: sepia(0.22) saturate(0.85);
}
address { font-style: normal; }
.addr-block { line-height: 1.9; }
.addr-block strong { color: var(--ink); }

/* ------------------------- Page banner ----------------------------- */
.page-banner {
    position: relative;
    padding: calc(var(--nav-h) + clamp(3rem, 7.5vw, 5.4rem)) 0 clamp(2.2rem, 5vw, 3.6rem);
    border-bottom: 1px solid var(--rule);
    background: var(--paper-2);
    overflow: clip;
}
.page-banner .target-rings {
    position: absolute;
    top: -46%;
    right: -7%;
    width: min(46vw, 560px);
    aspect-ratio: 1;
    color: var(--ink);
    opacity: 0.1;
}
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 1.1rem;
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--red); }
.page-banner h1 { font-style: italic; font-variation-settings: "opsz" 144; }
.page-banner .lead { max-width: 620px; margin-top: 1.1rem; margin-bottom: 0; }

/* ------------------------ Service blocks --------------------------- */
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.8rem, 4.5vw, 4rem);
    align-items: center;
    padding-block: clamp(2.2rem, 4.5vw, 3.6rem);
}
.service-block + .service-block { border-top: 1px solid var(--rule); }
.service-block.reverse .sb-fig { order: 2; }
.steps-list { list-style: none; padding: 0; margin: 1.3rem 0; counter-reset: step; }
.steps-list li {
    position: relative;
    padding: 0 0 1rem 3rem;
    counter-increment: step;
}
.steps-list li::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0.1em;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--red);
}
.steps-list li::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    top: 2rem;
    bottom: 0.4rem;
    width: 1px;
    background: var(--rule);
}
.steps-list li:last-child::after { display: none; }
.steps-list strong { color: var(--ink); }

/* ------------------------ Programs ledger table -------------------- */
.prog-table-wrap { overflow-x: auto; }
.prog-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid var(--ink);
    font-size: 0.97rem;
}
.prog-table th {
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-faint);
    padding: 0.85rem 1rem 0.85rem 0.2rem;
    border-bottom: 1px solid var(--rule-strong);
}
.prog-table td {
    vertical-align: top;
    padding: 0.95rem 1rem 0.95rem 0.2rem;
    border-bottom: 1px solid var(--rule);
}
/* Group cells span rows — exclude them from row hover so every program
   row highlights identically (only its own program + description cells). */
.prog-table tbody tr:hover td:not(.grp) { background: rgba(168, 119, 8, 0.07); }
.prog-table .grp {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--red);
    white-space: nowrap;
}
.prog-table .prog { font-weight: 700; color: var(--ink); white-space: nowrap; }
.prog-table td:last-child { color: var(--ink-soft); }

/* --------------------------- Timeline ------------------------------ */
.timeline { position: relative; max-width: 780px; margin-inline: auto; padding-left: 0; list-style: none; }
.timeline::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 8px;
    bottom: 8px;
    width: 1.5px;
    background: var(--rule-strong);
}
.timeline li { position: relative; padding: 0 0 2rem 4.8rem; }
.timeline .tl-num {
    position: absolute;
    left: 0;
    top: -2px;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid var(--rule-strong);
    background: #fff;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.18rem;
    color: var(--red);
    box-shadow: 0 0 0 6px var(--paper);
    transition: border-color var(--t-med), transform var(--t-med);
}
.timeline li:hover .tl-num { border-color: var(--red); transform: scale(1.08); }
.timeline h3 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; }
.timeline p { margin: 0; }

/* -------------------------- Dossiers ------------------------------- */
.dossier {
    position: relative;
    border: 1px solid var(--rule-strong);
    background: #fff;
    box-shadow: var(--shadow-card);
    padding: clamp(1.5rem, 3.6vw, 2.5rem);
    margin-bottom: 1.7rem;
    overflow: hidden;
    transition: box-shadow var(--t-med);
}
.dossier:hover { box-shadow: var(--shadow-lift); }
.dossier::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 650ms var(--ease-out);
}
.dossier:hover::before, .dossier.in::before { transform: scaleX(1); }
.dossier-head {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.dossier-head .d-ico {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    flex: none;
    border: 1px solid var(--rule-strong);
    border-radius: 50%;
    color: var(--honey);
}
.dossier-head .d-ico svg { width: 36px; height: 36px; }
.dossier-head h2 { font-size: clamp(1.5rem, 2.8vw, 2.05rem); font-style: italic; }
.dossier-tag {
    margin-left: auto;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    border: 1px solid rgba(181, 31, 46, 0.45);
    border-radius: 99px;
    padding: 0.38rem 0.9rem;
    white-space: nowrap;
}
.dossier-body {
    display: grid;
    grid-template-columns: minmax(220px, 0.62fr) 1.38fr;
    gap: clamp(1.3rem, 3vw, 2.4rem);
    align-items: start;
}
.dossier-body.no-photo { grid-template-columns: 1fr; }
.dossier-cols {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(1.3rem, 3vw, 2.4rem);
    align-items: start;
}
.facts h3, .control-card h3 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 0.9rem;
}
.facts h3::before { content: "◎"; color: var(--honey); }
.control-card h3::before { content: "✕"; color: var(--red); }
.facts ul { list-style: none; padding: 0; margin: 0 0 1.1rem; }
.facts li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.4rem;
    margin: 0;
    color: var(--ink-soft);
    border-bottom: 1px dashed var(--rule);
    font-size: 0.96rem;
}
.facts li:last-child { border-bottom: 0; }
.facts li::before {
    content: "";
    position: absolute;
    left: 0.05rem;
    top: 1.05em;
    width: 6.5px;
    height: 6.5px;
    border-radius: 50%;
    border: 1.5px solid var(--honey);
}
.control-card {
    border: 1px solid var(--rule-strong);
    background: var(--paper);
    padding: 1.4rem 1.4rem 1.1rem;
    position: sticky;
    top: calc(var(--nav-h) + 1.1rem);
}
.control-card ul { list-style: none; padding: 0; margin: 0; }
.control-card li {
    position: relative;
    padding: 0.38rem 0 0.38rem 1.45rem;
    margin: 0;
    font-size: 0.94rem;
}
.control-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}
.control-card .sub-h {
    margin: 0.9rem 0 0.35rem;
    font-weight: 700;
    color: var(--ink);
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.species-nav { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.6rem; }
.species-nav a {
    padding: 0.45rem 1.05rem;
    border: 1px solid var(--rule-strong);
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-soft);
    background: #fff;
    transition: all var(--t-fast);
}
.species-nav a:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

/* ------------------------- CTA banner ------------------------------ */
.cta-banner { position: relative; overflow: clip; text-align: center; }
.cta-banner .target-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(105vw, 860px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    color: var(--red-bright);
    opacity: 0.12;
}
.cta-banner h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-style: italic; margin-bottom: 1.1rem; }
.cta-banner .lead { max-width: 600px; margin-inline: auto; color: #b9bfae; }
.cta-banner .hero-actions { justify-content: center; margin-top: 2rem; }

/* ---------------------------- Footer ------------------------------- */
.site-footer {
    position: relative;
    background: var(--ink-dark-bg-2);
    color: #a9b09c;
    overflow: clip;
}
.footer-watermark {
    position: absolute;
    bottom: -0.18em;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 580;
    font-size: clamp(5rem, 15vw, 13rem);
    line-height: 1;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 1px rgba(244, 239, 227, 0.07);
    pointer-events: none;
    user-select: none;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: clamp(1.7rem, 4vw, 3.2rem);
    padding: clamp(2.8rem, 5.5vw, 4.2rem) 0 clamp(1.8rem, 3.6vw, 2.8rem);
    position: relative;
    z-index: 1;
}
.footer-brand img { height: 64px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.94rem; max-width: 320px; }
.footer-h {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244, 239, 227, 0.45);
    margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer li a, .site-footer li { color: #a9b09c; font-size: 0.95rem; }
.site-footer li a:hover { color: var(--honey-bright); }
.site-footer address a { color: #a9b09c; }
.site-footer address a:hover { color: var(--honey-bright); }
.footer-social a {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--rule-light-strong);
    color: var(--cream);
    transition: all var(--t-fast);
}
.footer-social a:hover { border-color: var(--honey-bright); color: var(--honey-bright); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-block: 1.3rem;
    border-top: 1px solid var(--rule-light);
    font-size: 0.82rem;
    color: rgba(244, 239, 227, 0.4);
    position: relative;
    z-index: 1;
}

/* ------------------------- Back to top ----------------------------- */
.back-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 800;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--rule-strong);
    background: rgba(244, 239, 227, 0.92);
    color: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--t-med);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { border-color: var(--red); color: var(--red); }

/* ------------------------ Mobile CTA bar --------------------------- */
.mobile-cta-bar {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 850;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    padding: 0.7rem max(0.85rem, env(safe-area-inset-left)) max(0.7rem, env(safe-area-inset-bottom));
    background: rgba(244, 239, 227, 0.96);
    border-top: 1px solid var(--rule-strong);
}
.mobile-cta-bar .btn { padding: 0.8rem 1rem; font-size: 0.8rem; }

/* --------------------------- Reveals ------------------------------- */
.rv { opacity: 0; transform: translateY(22px); }
.rv-l { opacity: 0; transform: translateX(-30px); }
.rv-r { opacity: 0; transform: translateX(30px); }
.rv-s { opacity: 0; transform: scale(0.96); }
.rv.in, .rv-l.in, .rv-r.in, .rv-s.in {
    opacity: 1;
    transform: none;
    transition: opacity 700ms var(--ease-out) var(--d, 0ms), transform 700ms var(--ease-out) var(--d, 0ms);
}
/* reveals must not fight the specimen tilt */
.specimen.tilt-l.rv.in { transform: rotate(-1.1deg); }
.specimen.tilt-r.rv.in { transform: rotate(0.9deg); }

/* icon stroke draw-in */
.draw svg .dr { stroke-dasharray: 240; stroke-dashoffset: 240; }
.draw.in svg .dr { animation: draw 1.3s var(--ease-out) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ------------------------- View transitions ------------------------ */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vt-out 240ms ease both; }
::view-transition-new(root) { animation: vt-in 340ms ease both; }
@keyframes vt-out { to { opacity: 0; transform: translateY(-6px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(8px); } }

/* ------------------------- Responsive ------------------------------ */
@media (max-width: 1040px) {
    .hero > .container { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { order: -1; min-height: 0; margin-bottom: 1rem; }
    .hero-visual .specimen.main { width: min(64%, 360px); }
    .hero-visual .specimen.back { width: min(40%, 210px); right: 2%; }
    .hero-sticker { left: 4%; }
    .hero-stamp { display: none; }
    .hero-sub, .hero h1 { margin-inline: auto; }
    .hero-actions, .hero-meta { justify-content: center; }
    .pest-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .stat-cell:nth-child(2) { border-right: 0; }
    .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
    .split, .area-wrap, .dossier-cols, .dossier-body { grid-template-columns: 1fr; }
    .svc-row, .svc-row.flip { grid-template-columns: 1fr; gap: 1.6rem; }
    .svc-row.flip .svc-fig { order: 0; }
    .service-block, .service-block.reverse { grid-template-columns: 1fr; gap: 1.7rem; }
    .service-block.reverse .sb-fig { order: 0; }
    .control-card { position: static; }
    .ledger-row { grid-template-columns: 52px 1fr; }
    .ledger-row p { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
    :root { --nav-h: 66px; }
    body { padding-bottom: 74px; }
    .nav-links, .nav-cta .btn, .nav-phone { display: none; }
    .nav-burger { display: flex; }
    .pest-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .contact-strip-inner { grid-template-columns: 1fr; gap: 1rem; padding-block: 1.6rem; }
    .form-row { grid-template-columns: 1fr; }
    .area-list { columns: 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .mobile-cta-bar { display: grid; }
    .back-to-top { bottom: 5.2rem; }
    .dossier-tag { margin-left: 0; }
    .menu-overlay { padding-bottom: 74px; }
    .hero { padding-top: calc(var(--nav-h) + 2.6rem); }
    .ledger-row { grid-template-columns: 1fr; }
    .ledger-ico { display: none; }
    .ledger-row p { grid-column: 1 / -1; }
    .map-embed iframe { height: 260px; }
}

/* --------------------- Reduced motion ------------------------------ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .marquee-track { animation: none; transform: none; }
    .rv, .rv-l, .rv-r, .rv-s { opacity: 1; transform: none; }
    .hero h1 .word { transform: none; animation: none; }
    .draw svg .dr { stroke-dasharray: none; stroke-dashoffset: 0; }
    .hero-sticker, .hero-stamp { animation: none; }
}
