:root {
            --paper: #f5f0e6;
            --paper-2: #ece4d5;
            --paper-3: #e4dac8;
            --ink: #1b1712;
            --ink-soft: #5c5443;
            --ink-dim: #6d6350;
            --bone: #f7f2e9;
            --rust: #384593;
            --rust-2: #4f5db8;
            --rust-tint: #8f9bd6;
            --line: rgba(27, 23, 18, .16);
            --line-soft: rgba(27, 23, 18, .08);
            --ease: cubic-bezier(.16, 1, .3, 1);
            --maxw: 1240px;
            --f-ser: "Fraunces", Georgia, serif;
            --f-grot: "Bricolage Grotesque", sans-serif;
            --f-mono: "Spline Sans Mono", ui-monospace, monospace;
            --f-body: "Archivo", system-ui, sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--f-body); background: var(--paper); color: var(--ink);
            line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden;
        }
        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; display: block; }
        ::selection { background: var(--rust); color: var(--bone); }
        ::-webkit-scrollbar { width: 11px; }
        ::-webkit-scrollbar-track { background: var(--paper-2); }
        ::-webkit-scrollbar-thumb { background: var(--paper-3); }
        ::-webkit-scrollbar-thumb:hover { background: var(--rust); }

        /* Film grain (paper tooth) */
        body::before {
            content: ""; position: fixed; inset: 0; z-index: 998; pointer-events: none; opacity: .5; mix-blend-mode: multiply;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
        }

        .shell { max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 56px); }

        /* Type helpers */
        .grot { font-family: var(--f-grot); font-weight: 800; text-transform: uppercase; letter-spacing: -.02em; }
        .ser { font-family: var(--f-ser); font-weight: 300; font-style: italic; letter-spacing: -.01em; }
        .molten { color: var(--rust); }
        .mono { font-family: var(--f-mono); font-weight: 500; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-dim); }
        .intro-body a, .two-col a, .row .main p a, .step-body p a { color: var(--rust); border-bottom: 1px solid rgba(56, 69, 147, .35); transition: border-color .4s var(--ease); }
        .intro-body a:hover, .two-col a:hover, .row .main p a:hover, .step-body p a:hover { border-color: var(--rust); }

        /* Folio strip */
        .folio { border-bottom: 1px solid var(--line); }
        .folio-in { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 9px 0; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-dim); }
        .folio-in span i { color: var(--rust); }

        /* Mobile-only floating call button — fixed, always visible regardless of
           scroll position. Desktop already has an always-visible call button in
           the sticky nav (.nav-call), so this only needs to exist below the
           breakpoint where that hides. */
        .mobile-call-fab { display: none; }
        @media (max-width: 980px) {
            .mobile-call-fab {
                display: flex; align-items: center; justify-content: center;
                position: fixed; right: 18px; bottom: 18px; z-index: 90;
                width: 56px; height: 56px; border-radius: 50%;
                background: var(--rust); color: var(--bone); font-size: 1.35rem;
                box-shadow: 0 12px 28px -8px rgba(27, 23, 18, .5);
                transition: transform .3s var(--ease), background .3s var(--ease);
            }
            .mobile-call-fab:active { transform: scale(.92); background: var(--rust-2); }
        }

        /* Nav */
        .nav { position: sticky; top: 0; z-index: 50; background: rgba(228, 218, 200, .93); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(27, 23, 18, .22); box-shadow: 0 12px 26px -20px rgba(27, 23, 18, .35); }
        .nav-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; }
        .nav-brand { display: flex; align-items: center; gap: 12px; }
        .nav-logo { height: 44px; width: auto; display: block; flex: 0 0 auto; }
        .wordmark--nav { display: block; }
        .wordmark { display: flex; flex-direction: column; line-height: 1; }
        .wordmark b { font-family: var(--f-grot); font-weight: 800; text-transform: uppercase; letter-spacing: -.02em; font-size: 1.16rem; color: var(--ink); }
        .wordmark small { font-family: var(--f-mono); font-size: .58rem; letter-spacing: .28em; color: var(--rust); margin-top: 4px; }
        .nav-links { display: flex; align-items: center; gap: 30px; }
        .nav-links a { font-family: var(--f-mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); transition: color .4s var(--ease); }
        .nav-links a:hover { color: var(--rust); }
        .nav-call { font-family: var(--f-mono); font-size: .78rem; letter-spacing: .1em; color: var(--ink); border: 1px solid var(--line); padding: 10px 16px; transition: border-color .4s var(--ease), color .4s var(--ease); }
        .nav-call:hover { border-color: var(--rust); color: var(--rust); }
        .nav-call i { color: var(--rust); }
        .burger { display: none; background: none; border: 0; color: var(--ink); font-size: 1.5rem; cursor: pointer; }

        /* Nav dropdowns (Services / Areas) */
        /* z-index: each .nav-drop is its own stacking context so that whichever one
           is actually active (hover/open/focus) always paints its whole subtree —
           bridge + panel — above its sibling's. Without this, the two invisible
           hover-bridges below (which are wider than the 30px gap between the nav
           items) overlap each other, and the later dropdown in the DOM (Areas) would
           always win that overlap, stealing hover from Services as the mouse moved
           down through it. */
        .nav-drop { position: relative; z-index: 1; }
        .nav-drop:hover, .nav-drop.open, .nav-drop:focus-within { z-index: 5; }
        .nav-drop-btn { display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); background: none; border: 0; padding: 0; cursor: pointer; transition: color .4s var(--ease); }
        .nav-drop-btn i { font-size: .56rem; transition: transform .35s var(--ease); }
        .nav-drop:hover .nav-drop-btn, .nav-drop.open .nav-drop-btn, .nav-drop:focus-within .nav-drop-btn { color: var(--rust); }
        .nav-drop:hover .nav-drop-btn i, .nav-drop.open .nav-drop-btn i, .nav-drop:focus-within .nav-drop-btn i { transform: rotate(180deg); }
        /* Invisible hover bridge: keeps .nav-drop "hovered" while the cursor crosses
           the gap between the button and the panel, so the panel doesn't close on the way down. */
        .nav-drop::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: max(180%, 560px); height: 12px; }
        .nav-drop-panel { position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(-6px); min-width: 250px; max-width: min(560px, calc(100vw - 40px)); background: var(--paper); border: 1px solid var(--line); border-radius: 2px; padding: 8px 0; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .35s var(--ease), transform .35s var(--ease); box-shadow: 0 20px 44px rgba(27, 23, 18, .12); z-index: 60; }
        .nav-drop:hover .nav-drop-panel, .nav-drop.open .nav-drop-panel, .nav-drop:focus-within .nav-drop-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
        .nav-drop-panel a { display: flex; align-items: center; gap: 10px; padding: 12px 24px; font-family: var(--f-body); font-weight: 500; font-size: .92rem; letter-spacing: .005em; text-transform: none; color: var(--ink-soft); white-space: nowrap; border-bottom: 1px solid var(--line-soft); transition: color .3s var(--ease), background .3s var(--ease), padding-left .3s var(--ease); }
        .nav-drop-panel a::before { content: "\2192"; font-family: var(--f-mono); font-size: .76rem; color: var(--rust); opacity: 0; transform: translateX(-4px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
        .nav-drop-panel a:hover { color: var(--rust); background: var(--paper-2); padding-left: 20px; }
        .nav-drop-panel a:hover::before { opacity: 1; transform: translateX(0); }
        .nav-drop-panel--wide { width: 520px; max-width: calc(100vw - 40px); columns: 2; column-gap: 0; }
        .nav-drop-panel--wide a { align-items: flex-start; break-inside: avoid; white-space: normal; line-height: 1.3; }
        .nav-drop-panel--wide a::before { margin-top: .15em; }

        /* Mobile menu */
        .mnav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--line); max-height: calc(100vh - 60px); overflow-y: auto; box-shadow: 0 24px 40px rgba(27, 23, 18, .14); }
        .mnav.open { display: block; }
        .mnav-in { padding: 6px 0 26px; }
        .mnav-in > a, .mnav-drop summary { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; font-family: var(--f-mono); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--line-soft); cursor: pointer; list-style: none; }
        .mnav-drop summary::-webkit-details-marker { display: none; }
        .mnav-drop summary::after { content: "+"; font-family: var(--f-body); font-size: 1.15rem; color: var(--ink-dim); transition: transform .3s var(--ease); }
        .mnav-drop[open] summary::after { transform: rotate(45deg); }
        .mnav-sub { padding: 4px 24px 14px 30px; display: flex; flex-direction: column; }
        .mnav-sub a { padding: 9px 0; font-family: var(--f-body); font-size: .92rem; letter-spacing: 0; text-transform: none; color: var(--ink-soft); }
        .mnav-call { margin: 18px 24px 0; background: var(--rust); color: var(--bone); text-align: center; border-radius: 2px; }
        @media (min-width: 981px) { .mnav { display: none !important; } }

        /* Buttons */
        .btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; padding: 15px 26px; cursor: pointer; border: 1px solid var(--rust); position: relative; overflow: hidden; transition: color .5s var(--ease); }
        .btn-solid { background: var(--rust); color: var(--bone); font-weight: 500; }
        .btn-solid::before { content: ""; position: absolute; inset: 0; background: var(--rust-2); transform: translateX(-101%); transition: transform .5s var(--ease); z-index: 0; }
        .btn-solid:hover::before { transform: translateX(0); }
        .btn-solid span, .btn-solid i { position: relative; z-index: 1; }
        .btn-line { background: transparent; color: var(--ink); }
        .btn-line::before { content: ""; position: absolute; inset: 0; background: var(--rust); transform: translateX(-101%); transition: transform .5s var(--ease); z-index: 0; }
        .btn-line:hover { color: var(--bone); }
        .btn-line:hover::before { transform: translateX(0); }
        .btn-line span, .btn-line i { position: relative; z-index: 1; }

        /* Section scaffolding */
        section { position: relative; }
        .band { padding-block: clamp(72px, 11vh, 140px); }
        .band-line { border-top: 1px solid var(--line); }
        .kicker { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 26px; }
        .kicker .num { font-family: var(--f-mono); font-size: .74rem; letter-spacing: .24em; color: var(--rust); }
        .kicker .rule { width: 46px; height: 1px; background: var(--line); }
        .kicker .lbl { font-family: var(--f-mono); font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-dim); }

        /* Mixed-type section heading */
        .head2 { font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.02; font-weight: 300; color: var(--ink); }
        .head2 .grot { display: inline; color: var(--ink); }
        .head2 .ser { display: inline; color: var(--ink); }

        .lead { font-size: clamp(1rem, 1.25vw, 1.14rem); color: var(--ink-soft); max-width: 62ch; margin-top: 22px; }

        /* Reveal */
        .ro { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
        .ro.in { opacity: 1; transform: none; }

        /* ---------------- HERO ---------------- */
        .hero { position: relative; overflow: hidden; }
        .hero::after { content: ""; position: absolute; right: -10%; top: -18%; width: 760px; height: 760px; border-radius: 50%; background: radial-gradient(circle, rgba(56, 69, 147, .12), transparent 62%); pointer-events: none; z-index: 0; }
        .hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .85fr; gap: clamp(34px, 5vw, 72px); align-items: start; padding-block: clamp(52px, 8vh, 104px); }
        h1.h1 { font-weight: 300; font-size: clamp(1.9rem, 4.1vw, 3.4rem); line-height: 1.04; letter-spacing: -.02em; color: var(--ink); }
        h1.h1 .ln { display: block; overflow: hidden; padding: .04em 0; }
        h1.h1 .ln > span { display: block; }
        h1.h1 .grot { font-size: .82em; }
        h1.h1 .ser { color: var(--ink); }
        .hero-sub { margin-top: 26px; font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--ink-soft); max-width: 40ch; font-family: var(--f-ser); font-style: italic; font-weight: 300; }
        .spec { margin-top: 34px; border-top: 1px solid var(--line); }
        .spec div { display: flex; gap: 14px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--line-soft); font-size: .92rem; color: var(--ink-soft); }
        .spec div i { color: var(--rust); font-size: .7rem; }
        .spec div b { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .16em; color: var(--ink-dim); min-width: 26px; }
        .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

        /* Quote section (service pages: moved down from the hero, hero's right
           column now holds a photo instead). Cap + center so the card doesn't
           stretch full-width now that it's a standalone section. */
        .quote-band .order { max-width: 640px; margin-inline: auto; }

        /* Hero photo (service pages) — reuses the .feat-frame photo treatment
           from the mid-page feature sections, just square instead of portrait
           to suit the source photos. */
        .feat-frame--square { aspect-ratio: 1 / 1; }
        .feat-frame--square img { object-position: 50% 42%; }

        /* Work-order aside (quote form) */
        .order { border: 1px solid var(--line); background: linear-gradient(180deg, var(--paper-2), var(--paper)); box-shadow: 0 24px 60px -34px rgba(27, 23, 18, .45); }
        .order-head { padding: 20px 24px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
        .order-head .t { font-family: var(--f-grot); font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; font-size: 1.05rem; }
        .order-head .n { font-family: var(--f-mono); font-size: .62rem; letter-spacing: .18em; color: var(--rust); }
        .order-body { padding: 22px 24px 26px; }
        .order-body > .qc-sub { font-size: .82rem; color: var(--ink-soft); margin-bottom: 18px; font-style: italic; font-family: var(--f-ser); }

        /* Quote form (restyled top_form.php) */
        .quote-php-form { display: flex; flex-direction: column; gap: 15px; }
        .qf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
        .qf-form-group { display: flex; flex-direction: column; gap: 7px; }
        .qf-form-group label { font-family: var(--f-mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-dim); }
        .req { color: var(--rust); }
        .qf-input { font-family: var(--f-body); font-size: .92rem; color: var(--ink); padding: 12px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; outline: none; transition: border-color .4s var(--ease); width: 100%; }
        .qf-input::placeholder { color: var(--ink-dim); }
        .qf-input:focus { border-color: var(--rust); }
        textarea.qf-input { resize: vertical; min-height: 60px; }
        .qf-btn-submit { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--f-mono); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; background: var(--rust); color: var(--bone); border: 0; padding: 15px 20px; cursor: pointer; margin-top: 6px; transition: background .4s var(--ease); }
        .qf-btn-submit:hover { background: var(--rust-2); }
        .qf-form-privacy { font-family: var(--f-mono); font-size: .58rem; letter-spacing: .1em; color: var(--ink-dim); display: flex; align-items: center; gap: 7px; margin: 0; }
        .qf-form-privacy i { color: var(--rust); }
        .captcha-group img { border: 1px solid var(--line); border-radius: 3px; }
        .qf-captcha-refresh { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 38px; padding: 0; border: 1px solid var(--line); background: transparent; color: var(--rust); cursor: pointer; }
        .qf-captcha-refresh.is-loading i { animation: qf-spin .6s linear infinite; display: inline-block; }
        @keyframes qf-spin { to { transform: rotate(360deg); } }
        .spinner-border { width: 14px; height: 14px; border: 2px solid rgba(247, 242, 233, .4); border-top-color: var(--bone); border-radius: 50%; animation: qf-spin .6s linear infinite; }
        #response .success, #response .error { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .04em; padding: 10px 12px; margin: 0; }
        #response .success { color: #1f7a45; border: 1px solid rgba(31, 122, 69, .35); }
        #response .error { color: var(--rust); border: 1px solid rgba(56, 69, 147, .35); }

        /* ---------------- INTRO ---------------- */
        .intro-grid { display: grid; grid-template-columns: .38fr 1fr; gap: clamp(24px, 5vw, 70px); align-items: start; }
        .intro-grid .side { position: sticky; top: 100px; }
        .side-mark { margin-top: 48px; display: flex; align-items: center; gap: 16px; }
        .side-mark .vline { width: 1px; height: 78px; background: var(--line); flex: 0 0 auto; }
        .side-mark span:last-child { writing-mode: vertical-rl; transform: rotate(180deg); font-family: var(--f-mono); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-dim); white-space: nowrap; }
        .intro-body p { font-size: clamp(1.06rem, 1.5vw, 1.32rem); font-family: var(--f-ser); font-weight: 300; font-style: normal; color: var(--ink); line-height: 1.55; }
        .intro-body p + p { margin-top: 24px; color: var(--ink-soft); }

        /* ---------------- RULED ROWS (why / services) ---------------- */
        .rows { border-top: 1px solid var(--line); }
        .row { position: relative; display: grid; grid-template-columns: 74px 1fr auto; gap: clamp(14px, 3vw, 40px); align-items: center; padding: clamp(22px, 3vw, 34px) 8px; border-bottom: 1px solid var(--line); transition: padding-left .5s var(--ease); overflow: hidden; }
        .row::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(56, 69, 147, .09), transparent 70%); transform: translateX(-101%); transition: transform .55s var(--ease); z-index: 0; }
        a.row:hover::before { transform: translateX(0); }
        a.row:hover { padding-left: 26px; }
        .row > * { position: relative; z-index: 1; }
        .row .idx { font-family: var(--f-mono); font-size: .78rem; letter-spacing: .12em; color: var(--rust); }
        .row .main h3, .row .main .rtitle { font-family: var(--f-grot); font-weight: 800; text-transform: uppercase; letter-spacing: -.015em; font-size: clamp(1.15rem, 2.1vw, 1.72rem); line-height: 1.06; color: var(--ink); display: block; }
        .row .main p { color: var(--ink-soft); font-size: .96rem; margin-top: 8px; max-width: 66ch; }
        .row .act { display: inline-flex; align-items: center; gap: 12px; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-dim); white-space: nowrap; }
        .row .arw { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--ink); transition: transform .5s var(--ease), background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease); flex: 0 0 auto; }
        a.row:hover .arw { background: var(--rust); border-color: var(--rust); color: var(--bone); transform: rotate(-45deg); }
        a.row:hover .act { color: var(--ink); }

        /* ---------------- SERVICE INDEX CARDS ---------------- */
        .svc-grid { display: flex; flex-wrap: wrap; gap: 1px; background: var(--line); border: 1px solid var(--line); }
        .svc-card { background: var(--paper); flex: 1 1 calc(33.333% - 1px); min-width: 260px; padding: 44px 30px 30px; position: relative; display: flex; flex-direction: column; transition: background .4s var(--ease); }
        .svc-card .svc-idx { position: absolute; top: -13px; left: 30px; background: var(--paper); border: 1px solid var(--line); padding: 4px 11px; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .14em; color: var(--rust); transition: border-color .4s var(--ease), color .4s var(--ease), background .4s var(--ease); }
        .svc-card h3, .svc-card .rtitle { font-family: var(--f-grot); font-weight: 800; text-transform: uppercase; letter-spacing: -.015em; font-size: 1.26rem; line-height: 1.12; color: var(--ink); margin-bottom: 12px; display: block; }
        .svc-card p { color: var(--ink-soft); font-size: .92rem; flex: 1 0 auto; margin-bottom: 24px; }
        .svc-card .svc-act { display: inline-flex; align-items: center; gap: 12px; font-family: var(--f-mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-dim); margin-top: auto; transition: color .4s var(--ease); }
        .svc-card .arw { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--ink); flex: 0 0 auto; transition: transform .5s var(--ease), background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease); }
        a.svc-card:hover { background: var(--paper-2); }
        a.svc-card:hover .svc-idx { border-color: var(--rust); background: var(--rust); color: var(--bone); }
        a.svc-card:hover .arw { background: var(--rust); border-color: var(--rust); color: var(--bone); transform: rotate(-45deg); }
        a.svc-card:hover .svc-act { color: var(--ink); }
        @media (max-width: 980px) { .svc-card { flex-basis: calc(50% - .5px); } }
        @media (max-width: 620px) { .svc-card { flex-basis: 100%; } }

        /* ---------------- FEATURE SPLITS ---------------- */
        .feat { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 84px); align-items: start; }
        .feat.rev .feat-text { order: 2; }
        .feat-text > p { color: var(--ink-soft); font-size: 1.05rem; margin-top: 18px; }
        .check-title { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--rust); margin: 30px 0 4px; }
        .checks { list-style: none; }
        .checks li { display: grid; grid-template-columns: 30px 1fr; gap: 6px; align-items: start; padding: 15px 0; border-bottom: 1px solid var(--line-soft); color: var(--ink-soft); font-size: .98rem; }
        .checks li::before { content: "\2192"; color: var(--rust); font-family: var(--f-mono); }
        .feat-frame { border: 1px solid var(--line); aspect-ratio: 4 / 3.4; position: relative; overflow: hidden; background: linear-gradient(150deg, var(--paper-2), var(--paper-3)); display: grid; place-items: center; }
        .feat-frame::after { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 300px at 68% 22%, rgba(56, 69, 147, .1), transparent 60%); pointer-events: none; }
        .feat-frame i { font-size: 5.5rem; color: rgba(27, 23, 18, .12); position: relative; z-index: 1; }
        .feat-frame .cm { position: absolute; width: 14px; height: 14px; border: 1px solid var(--ink); opacity: .3; z-index: 2; }
        .feat-frame .cm.tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
        .feat-frame .cm.br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }
        .feat-frame .plate { position: absolute; bottom: 14px; left: 14px; z-index: 2; font-family: var(--f-mono); font-size: .6rem; letter-spacing: .2em; color: var(--ink-dim); }
        .feat-frame .plate.on-photo { color: var(--bone); text-shadow: 0 1px 6px rgba(0, 0, 0, .55); }

        /* photo variant */
        .feat-frame--photo { aspect-ratio: 4 / 5; }
        .feat-frame--photo img { position: relative; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; filter: saturate(.94) contrast(1.04); }
        .feat-frame--photo::after { background: linear-gradient(200deg, rgba(56, 69, 147, .16), transparent 45%), linear-gradient(0deg, rgba(27, 23, 18, .5), transparent 30%); }

        /* blueprint technical-plate diagrams */
        .blueprint { width: 78%; height: 78%; position: relative; z-index: 1; overflow: visible; }
        .blueprint .bp-line { fill: none; stroke: var(--ink); stroke-width: 1.4; opacity: .55; }
        .blueprint .bp-accent { fill: none; stroke: var(--rust); stroke-width: 1.6; }
        .blueprint .bp-dim { stroke: var(--ink); stroke-width: 1; opacity: .3; }
        .blueprint .bp-dot { fill: var(--rust); }
        .blueprint text { font-family: var(--f-mono); font-size: 6.5px; letter-spacing: .06em; fill: var(--ink-dim); text-transform: uppercase; }

        /* ---------------- PANELS (ADAS / standards) ---------------- */
        .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 56px); }
        .two-col p { color: var(--ink-soft); font-size: 1.06rem; }
        .panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); background: var(--paper-2); }
        .panel { padding: clamp(26px, 3vw, 40px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
        .panel:nth-child(2n) { border-right: 0; }
        .panel:nth-last-child(-n+2) { border-bottom: 0; }
        .panel .st { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--rust); display: flex; align-items: center; gap: 9px; margin-bottom: 16px; }
        .panel h3, .panel .ptitle { font-family: var(--f-grot); font-weight: 800; text-transform: uppercase; letter-spacing: -.015em; font-size: 1.16rem; color: var(--ink); margin-bottom: 10px; display: block; }
        .panel p { color: var(--ink-soft); font-size: .95rem; }
        .panel-grid--3 { grid-template-columns: repeat(3, 1fr); }
        .panel-grid--3 .panel { border-bottom: 0; }
        .panel-grid--3 .panel:last-child { border-right: 0; }
        @media (max-width: 980px) { .panel-grid--3 { grid-template-columns: 1fr; } .panel-grid--3 .panel { border-bottom: 1px solid var(--line); } .panel-grid--3 .panel:last-child { border-bottom: 0; } }

        /* ---------------- INVERTED INK BAND (one per page) ---------------- */
        .invert { background: var(--ink); color: var(--bone); position: relative; overflow: hidden; }
        .invert::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, rgba(247, 242, 233, .04) 0 1px, transparent 1px 11px); pointer-events: none; }
        .invert .in { position: relative; z-index: 1; text-align: center; }
        .invert .kicker .num { color: var(--rust-tint); }
        .invert .kicker .lbl { color: rgba(247, 242, 233, .6); }
        .invert .kicker .rule { background: rgba(247, 242, 233, .25); }
        .invert h2 { font-family: var(--f-ser); font-weight: 300; font-size: clamp(2rem, 4.6vw, 3.5rem); line-height: 1.04; margin-bottom: 18px; color: var(--bone); }
        .invert h2 .grot { color: var(--bone); }
        .invert p { max-width: 64ch; margin: 0 auto 30px; color: rgba(247, 242, 233, .78); font-size: 1.08rem; }
        .invert .btn-invert { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; background: var(--rust); color: var(--bone); padding: 15px 28px; transition: transform .4s var(--ease), background .4s var(--ease); }
        .invert .btn-invert:hover { transform: translateY(-2px); background: var(--rust-2); }
        .invert .btn-invert.ghost { background: transparent; border: 1px solid rgba(247, 242, 233, .4); color: var(--bone); }
        .invert .btn-invert.ghost:hover { background: rgba(247, 242, 233, .08); }

        /* ---------------- COVERAGE ---------------- */
        .cov { columns: 4; column-gap: 40px; border-top: 1px solid var(--line); padding-top: 8px; }
        .cov a { display: block; break-inside: avoid; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: .94rem; color: var(--ink-soft); transition: color .4s var(--ease), padding-left .4s var(--ease); }
        .cov a::before { content: "\2192 "; color: var(--rust); opacity: 0; transition: opacity .4s var(--ease); }
        .cov a:hover { color: var(--rust); padding-left: 10px; }
        .cov a:hover::before { opacity: 1; }

        /* ---------------- TRUSTED MANIFESTO ---------------- */
        .manifesto { text-align: center; }
        .manifesto h2 { font-family: var(--f-ser); font-weight: 300; font-size: clamp(2.2rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -.02em; color: var(--ink); }
        .manifesto h2 .grot { font-size: .8em; }
        .manifesto .rule { width: 60px; height: 1px; background: var(--rust); margin: 30px auto 0; }
        .trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(28px, 5vw, 56px); margin-top: 48px; }
        .trust-row img { height: clamp(34px, 4vw, 46px); width: auto; max-width: 160px; object-fit: contain; opacity: .82; filter: grayscale(.15); transition: opacity .4s var(--ease), filter .4s var(--ease); }
        .trust-row img:hover { opacity: 1; filter: grayscale(0); }
        @media (max-width: 620px) { .trust-row { gap: 28px 36px; } }

        /* ---------------- FAQ ---------------- */
        .faq { border-top: 1px solid var(--line); }
        .faq-item { border-bottom: 1px solid var(--line); }
        .faq-q { margin: 0; }
        .faq-q button { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 26px 8px; display: grid; grid-template-columns: 54px 1fr 30px; gap: 14px; align-items: center; color: var(--ink); }
        .faq-q .qn { font-family: var(--f-mono); font-size: .72rem; color: var(--rust); }
        .faq-q .qt { font-family: var(--f-grot); font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; font-size: clamp(.98rem, 1.6vw, 1.22rem); line-height: 1.15; }
        .faq-q .qi { justify-self: end; color: var(--rust); transition: transform .4s var(--ease); }
        .faq-item.open .faq-q .qi { transform: rotate(45deg); }
        .faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
        .faq-a p { padding: 0 8px 26px 68px; color: var(--ink-soft); font-size: 1rem; max-width: 80ch; }
        .faq-a strong { color: var(--ink); font-weight: 600; }

        /* ---------------- LOCAL ---------------- */
        .local-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; align-items: stretch; }
        .map-frame { border: 1px solid var(--line); overflow: hidden; min-height: 360px; }
        .map-frame iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; filter: grayscale(.5) sepia(.16) contrast(.98); transition: filter .6s var(--ease); }
        .map-frame:hover iframe { filter: none; }
        .local-info { border: 1px solid var(--line); background: var(--paper-2); padding: clamp(22px, 3vw, 32px); }
        .li-row { padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
        .li-row:first-child { padding-top: 0; }
        .li-k { display: block; font-family: var(--f-mono); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--rust); margin-bottom: 7px; }
        .li-v { display: block; font-size: 1rem; color: var(--ink); }
        .li-v a { border-bottom: 1px solid rgba(56, 69, 147, .35); transition: border-color .4s var(--ease); }
        .li-v a:hover { border-color: var(--rust); }
        #weather { margin-top: 20px; min-height: 62px; }

        /* ---------------- FOOTER / COLOPHON ---------------- */
        .foot { border-top: 1px solid var(--line); padding-block: 60px 30px; background: var(--paper-2); }
        .foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
        .foot h4 { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 18px; }
        .foot ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
        .foot a, .foot li { color: var(--ink-soft); font-size: .93rem; }
        .foot a:hover { color: var(--rust); }
        .foot-contact li { display: flex; gap: 10px; align-items: baseline; }
        .foot-contact i { color: var(--rust); font-size: .8rem; }
        .foot .wordmark b { font-size: 1.3rem; }
        .foot .fdesc { color: var(--ink-soft); font-size: .92rem; margin-top: 16px; max-width: 34ch; font-family: var(--f-ser); font-style: italic; }
        .foot-areas { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 28px; }
        .foot-areas h4 { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 16px; }
        .foot-cov { columns: 4; column-gap: 30px; }
        .foot-cov a { display: block; break-inside: avoid; padding: 7px 0; font-size: .87rem; color: var(--ink-soft); transition: color .3s var(--ease); }
        .foot-cov a:hover { color: var(--rust); }
        .colophon { border-top: 1px solid var(--line); margin-top: 48px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--f-mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim); }
        .colophon a { transition: color .3s var(--ease); }
        .colophon a:hover { color: var(--rust); }

        /* ---------------- RESPONSIVE ---------------- */
        @media (max-width: 980px) {
            .hero-grid, .intro-grid, .feat, .two-col, .local-grid { grid-template-columns: 1fr; }
            .feat.rev .feat-text { order: 0; }
            .intro-grid .side { position: static; }
            .nav-links, .nav-call { display: none; }
            .burger { display: block; }
            .folio { display: none; }
            .cov { columns: 2; }
            .panel-grid { grid-template-columns: 1fr; }
            .panel { border-right: 0; }
            .foot-grid { grid-template-columns: 1fr 1fr; }
            .foot-cov { columns: 3; }
        }
        @media (max-width: 620px) {
            .qf-form-row { grid-template-columns: 1fr; }
            .row { grid-template-columns: 1fr; gap: 12px; }
            .row .act .txt { display: none; }
            .cov { columns: 1; }
            .foot-grid { grid-template-columns: 1fr; }
            .foot-cov { columns: 2; }
            .faq-q button { grid-template-columns: 34px 1fr 24px; }
            .faq-a p { padding-left: 8px; }
        }
        @media (prefers-reduced-motion: reduce) {
            * { animation: none !important; transition: none !important; }
            .ro { opacity: 1; transform: none; }
        }

        /* ---------------- BREADCRUMB ---------------- */
        .crumb { border-bottom: 1px solid var(--line); }
        .crumb-in { display: flex; align-items: center; gap: 10px; padding: 14px 0; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-dim); }
        .crumb-in a { color: var(--ink-dim); transition: color .4s var(--ease); }
        .crumb-in a:hover { color: var(--rust); }
        .crumb-in .sep { color: var(--line); }
        .crumb-in .here { color: var(--rust); }

        /* ---------------- PROCESS STEPS ---------------- */
        .steps { position: relative; counter-reset: step; }
        .steps::before { content: ""; position: absolute; left: 27px; top: 14px; bottom: 14px; width: 1px; background: var(--line); }
        .step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 24px 0; }
        .step-num { position: relative; z-index: 1; width: 56px; height: 56px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); display: grid; place-items: center; font-family: var(--f-mono); font-size: .82rem; color: var(--rust); flex: 0 0 auto; }
        .step-body p { color: var(--ink-soft); font-size: .98rem; max-width: 68ch; }
        .step-body p strong { color: var(--rust); font-weight: 700; }

        /* ---------------- COST TABLE ---------------- */
        .cost-box { border: 1px solid var(--line); background: var(--paper-2); }
        .cost-row { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding: 20px 26px; border-bottom: 1px solid var(--line); }
        .cost-row:last-child { border-bottom: 0; }
        .cost-row .lbl { font-family: var(--f-grot); font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; font-size: 1rem; color: var(--ink); }
        .cost-row .val { font-family: var(--f-mono); font-size: 1rem; color: var(--rust); white-space: nowrap; }
        .cost-note { color: var(--ink-soft); font-size: .95rem; margin-top: 20px; max-width: 72ch; }

        /* ---------------- WARNING / ICON ROWS (reuse .rows look, smaller) ---------------- */
        .sign-row .idx { color: var(--rust); }
        .sign-row .main h3 { font-size: clamp(1.05rem, 1.8vw, 1.35rem); }

        /* ---------------- COVERAGE NOTE (location pages) ---------------- */
        .cov-note { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 50px); border-top: 1px solid var(--line); padding-top: 30px; margin-top: 30px; }
        .cov-note h4 { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--rust); margin-bottom: 12px; }
        .cov-note p { color: var(--ink-soft); font-size: .96rem; }

        /* ---------------- BRAND / PILL LIST ---------------- */
        .pill-list { display: flex; flex-wrap: wrap; gap: 12px; border-top: 1px solid var(--line); padding-top: 30px; }
        .pill-list span { font-family: var(--f-mono); font-size: .82rem; letter-spacing: .04em; color: var(--ink); border: 1px solid var(--line); padding: 10px 18px; background: var(--paper-2); }

        /* ---------------- SUB-SECTION H2 (nested, smaller) ---------------- */
        .subgrid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 40px); border-top: 1px solid var(--line); padding-top: 30px; margin-top: 30px; }
        .subgrid .subcard h2 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 800; font-family: var(--f-grot); text-transform: uppercase; letter-spacing: -.01em; color: var(--ink); margin-bottom: 10px; }
        .subgrid .subcard p { color: var(--ink-soft); font-size: .98rem; }
        @media (max-width: 980px) { .subgrid { grid-template-columns: 1fr; } }
