:root {
    --red: #e30613;
    --red-dark: #b80510;
    --ink: #111111;
    --asphalt: #0f0f0f;
    --asphalt-2: #1c1c1c;
    --asphalt-surface:
        radial-gradient(ellipse at 72% 35%, rgba(255,255,255,.028), transparent 55%),
        radial-gradient(circle at 20% 80%, rgba(0,0,0,.35), transparent 45%),
        repeating-radial-gradient(
            circle at 40% 40%,
            rgba(255,255,255,.018) 0 0.6px,
            transparent 0.7px 3px
        ),
        repeating-linear-gradient(
            0deg,
            #121212 0 2px,
            #0e0e0e 2px 4px
        ),
        repeating-linear-gradient(
            90deg,
            #111 0 2px,
            #0c0c0c 2px 5px
        ),
        #0d0d0d;
    --line: #FFDF00;
    --paper: #f7f6f3;
    --muted: #5c5c5c;
    --white: #ffffff;
    --border: rgba(17, 17, 17, 0.1);
    --font-display: "Barlow Condensed", "Oswald", sans-serif;
    --font-title: "Barlow Condensed", "Oswald", sans-serif;
    --font-body: "DM Sans", sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
    --shadow-soft: 0 8px 28px rgba(0, 0, 0, 0.08);
    --tracking: 0;
    --tracking-head: .03em;
    --header-h: 92px;
    --text: 1.1rem;
    --nav-size: 1.2rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    letter-spacing: 0;
    font-size: var(--text);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}
h1, h3, h4 {
    font-family: var(--font-title);
    letter-spacing: var(--tracking-head);
    line-height: 1.15;
    font-weight: 700;
    text-transform: uppercase;
}
h2, .heading-red, .section-head h2 {
    font-family: var(--font-display);
    letter-spacing: var(--tracking-head);
    line-height: 1.15;
    font-weight: 700;
    text-transform: uppercase;
}
p, li, .prose, .svc-card p, .svc-step p, .svc-benefit-card p, .svc-why-card p, .section-head p {
    letter-spacing: 0;
    line-height: 1.65;
}
.section-head p,
.prose p,
.areas-section p,
.narrow-text p {
    color: var(--muted);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1200px, calc(100% - 2.25rem)); margin-inline: auto; }
.narrow-text { width: min(900px, 100%); margin-inline: auto; text-align: center; }

.road-progress {
    position: fixed;
    inset: 0 0 auto;
    height: 3px;
    z-index: 120;
    background: transparent;
}
.road-progress span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--ink), var(--line), var(--red));
}

/* TOPBAR — asphalt | HEADER — white road lane */
.site-masthead {
    background: transparent;
}
.topbar {
    background: var(--asphalt-surface);
    border-bottom: 0;
    font-size: .88rem;
    letter-spacing: .01em;
    position: relative;
    z-index: 51;
}
.topbar::after { display: none; }
.topbar-inner {
    position: relative;
    z-index: 1;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .45rem 0;
}
.topbar-left {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
}
.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: rgba(255,255,255,.9);
    padding: 0 1.05rem 0 0;
    margin-right: 1.05rem;
    border-radius: 0;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255,255,255,.14);
    transition: color .2s ease;
    line-height: 1.2;
}
.topbar-item:last-child {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
}
.topbar-ico {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: rgba(255,223,0,.12);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.topbar-ico svg {
    width: 11px;
    height: 11px;
    fill: var(--line);
}
.topbar-item > svg {
    width: 12px;
    height: 12px;
    fill: var(--line);
    flex-shrink: 0;
}
a.topbar-item.is-link { color: rgba(255,255,255,.9); }
a.topbar-item.is-link:hover {
    background: transparent;
    border-color: rgba(255,255,255,.14);
    color: #fff;
}
a.topbar-item.is-link:hover .topbar-ico {
    background: var(--line);
}
a.topbar-item.is-link:hover .topbar-ico svg {
    fill: #111;
}
.topbar-social { display: flex; gap: .45rem; }
.topbar-social a {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    display: grid;
    place-items: center;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.topbar-social a svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}
.topbar-social a:hover {
    background: var(--line);
    border-color: var(--line);
    color: #111;
    transform: translateY(-1px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(0,0,0,.03), transparent 45%),
        radial-gradient(ellipse at 85% 100%, rgba(0,0,0,.025), transparent 40%),
        repeating-linear-gradient(
            115deg,
            rgba(0,0,0,.018) 0 1px,
            transparent 1px 9px
        ),
        repeating-linear-gradient(
            0deg,
            #f7f7f7 0 2px,
            #ffffff 2px 5px
        ),
        #fff;
    border-bottom: 0;
    box-shadow: 0 8px 22px rgba(0,0,0,.06);
    overflow: visible;
}
.site-header::before,
.site-header::after {
    display: none;
}
.header-inner {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    min-height: var(--header-h);
    padding: .4rem 0;
}
.brand {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    transition: transform .25s ease, opacity .2s ease;
    flex-shrink: 0;
}
.brand:hover {
    transform: translateY(-1px);
    opacity: 1;
    box-shadow: none;
}
.brand img {
    height: 78px;
    width: auto;
    display: block;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: .2rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--nav-size);
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #1a1a1a;
}
.site-nav > a,
.site-nav .nav-link {
    color: #222;
    background: none;
    border: 0;
    font: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
    cursor: pointer;
    padding: .65rem .9rem;
    border-radius: 999px;
    position: relative;
    transition: color .2s ease, background .2s ease;
}
.site-nav > a:hover,
.site-nav .nav-link:hover,
.site-nav .nav-item:hover > .nav-link,
.site-nav .nav-item.open > .nav-link {
    color: var(--red);
    background: rgba(227,6,19,.06);
}
.site-nav > a::after,
.site-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    right: auto;
    bottom: .2rem;
    width: 0;
    height: 2px;
    background: var(--line);
    transform: translateX(-50%);
    transition: width .22s ease;
    border-radius: 2px;
}
.site-nav > a:hover::after,
.site-nav .nav-item:hover > .nav-link::after,
.site-nav .nav-item.open > .nav-link::after {
    width: calc(100% - 1.6rem);
}
.site-nav a.btn,
.site-nav a.nav-quote-btn {
    color: #fff !important;
    background: var(--red);
    border: 1px solid var(--red);
    border-radius: 999px;
    padding: .78rem 1.4rem;
    margin-left: .55rem;
    text-transform: uppercase;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.08rem;
    letter-spacing: .05em;
    box-shadow: 0 8px 20px rgba(227,6,19,.28);
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.site-nav a.btn::after,
.site-nav a.nav-quote-btn::after {
    display: none;
}
.site-nav a.btn:hover,
.site-nav a.nav-quote-btn:hover {
    color: #fff !important;
    background: var(--red-dark);
    border-color: var(--red-dark);
    filter: none;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(227,6,19,.32);
}

.nav-item {
    position: relative;
}
.nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}
.caret {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    border-bottom: 0;
    transform: none;
    margin-top: 1px;
    opacity: .55;
    transition: transform .2s ease, opacity .2s ease;
}
.nav-item:hover > .nav-link .caret,
.nav-item.open > .nav-link .caret {
    transform: rotate(180deg);
    margin-top: 1px;
    opacity: 1;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 260px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(17,17,17,.07);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,.14);
    padding: .45rem;
    display: block;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
}
.dropdown-menu-wide {
    min-width: 280px;
    max-height: 70vh;
    overflow: auto;
}
.dropdown-menu a {
    display: block;
    padding: .75rem .95rem;
    border-radius: 7px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    transition: background .15s ease, color .15s ease, transform .15s ease;
}
.dropdown-menu a:hover {
    background: #f6f6f6;
    color: var(--red);
    transform: translateX(2px);
}
.nav-item:hover > .dropdown-menu,
.nav-item.open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(17,17,17,.1);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.nav-toggle span {
    display: block;
    width: 16px;
    height: 1.5px;
    margin: 5px auto;
    background: #111;
    border-radius: 2px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .9rem 1.5rem;
    border-radius: 999px;
    border: 2px solid transparent;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-size: .95rem;
    transition: .2s ease;
    cursor: pointer;
}
.btn-sm { padding: .7rem 1.1rem; font-size: .86rem; }
.btn-primary, .btn-yellow {
    background: var(--line);
    color: #111;
    border-color: var(--line);
}
.btn-primary:hover, .btn-yellow:hover {
    filter: brightness(.95);
    transform: translateY(-1px);
}
.btn-white {
    background: #fff;
    color: #111;
    border-color: #fff;
}
.btn-white:hover { background: var(--line); border-color: var(--line); }
.btn-outline {
    background: #fff;
    color: #111;
    border-color: #111;
}
.btn-outline:hover {
    background: #111;
    color: #fff;
}
.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.55);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.12);
    border-color: #fff;
    color: #fff;
}
.btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.7);
}
.btn-ghost-light:hover {
    background: #fff;
    color: #111;
}

/* BADGES / PILLS / HEADINGS */
.badge {
    display: inline-block;
    padding: .45rem .8rem;
    font-size: .78rem;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.badge-yellow {
    background: var(--line);
    color: #111;
    border-radius: 999px;
}
.pill {
    display: inline-block;
    padding: .45rem 1rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .9rem;
}
.pill-dark { background: #111; color: #fff; }
.heading-red {
    font-family: var(--font-display);
    color: var(--red);
    font-size: clamp(1.7rem, 3.4vw, 2.65rem);
    line-height: 1.25;
    text-transform: uppercase;
    margin: 0 0 1.15rem;
    letter-spacing: var(--tracking-head);
}
.heading-red.on-dark { color: #fff; }
.section-head { text-align: center; margin-bottom: 2.4rem; }
.section-head h2 {
    color: var(--red);
}
.section-head p { max-width: 820px; margin: 0 auto; color: var(--muted); line-height: 1.65; letter-spacing: 0; }

/* First h2 on every page — brand red */
main h2:first-of-type {
    color: var(--red);
}

/* HERO — generated parking-lot striping */
.hero {
    position: relative;
    min-height: 0;
    display: grid;
    align-items: start;
    overflow: hidden;
    color: #fff;
    background: var(--asphalt-surface);
    margin: 0;
    padding-bottom: 18px;
}
.hero-lot-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-lot-asphalt {
    position: absolute;
    inset: 0;
    background: var(--asphalt-surface);
}
/* Soft faded striping — white solid edges + yellow dotted mid */
.hero-corner-stripes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}
.hero-corner-stripe {
    position: absolute;
    width: min(72vw, 680px);
    height: 8px;
    opacity: .16;
    background: #fff;
    border-radius: 2px;
    animation: none;
    box-shadow: none;
}
.hero-corner-stripe::before,
.hero-corner-stripe::after {
    display: none;
}
.hero-corner-stripe--tl {
    top: 16%;
    left: .5%;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 22%, rgba(0,0,0,.55) 55%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 22%, rgba(0,0,0,.55) 55%, transparent 100%);
}
.hero-corner-stripe--tr {
    top: 16%;
    right: .5%;
    -webkit-mask-image: linear-gradient(270deg, #000 0%, #000 22%, rgba(0,0,0,.55) 55%, transparent 100%);
    mask-image: linear-gradient(270deg, #000 0%, #000 22%, rgba(0,0,0,.55) 55%, transparent 100%);
}
.hero-corner-stripe--bl {
    bottom: 12%;
    left: .5%;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 22%, rgba(0,0,0,.55) 55%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 22%, rgba(0,0,0,.55) 55%, transparent 100%);
}
.hero-corner-stripe--br {
    bottom: 12%;
    right: .5%;
    -webkit-mask-image: linear-gradient(270deg, #000 0%, #000 22%, rgba(0,0,0,.55) 55%, transparent 100%);
    mask-image: linear-gradient(270deg, #000 0%, #000 22%, rgba(0,0,0,.55) 55%, transparent 100%);
}
/* Mid yellow — dotted + faded ends */
.hero-corner-stripe--mid {
    top: 50%;
    transform: translateY(-50%);
    height: 8px;
    opacity: .2;
    background: repeating-linear-gradient(
        90deg,
        var(--line) 0 36px,
        transparent 36px 58px
    );
    background-size: 58px 100%;
    animation: heroCornerDashMid 12s linear infinite;
    -webkit-mask-image: none;
    mask-image: none;
}
.hero-corner-stripe--mid-l {
    left: .5%;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 22%, rgba(0,0,0,.55) 55%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 22%, rgba(0,0,0,.55) 55%, transparent 100%);
}
.hero-corner-stripe--mid-r {
    right: .5%;
    -webkit-mask-image: linear-gradient(270deg, #000 0%, #000 22%, rgba(0,0,0,.55) 55%, transparent 100%);
    mask-image: linear-gradient(270deg, #000 0%, #000 22%, rgba(0,0,0,.55) 55%, transparent 100%);
    animation-direction: reverse;
}
@keyframes heroCornerDashMid {
    from { background-position: 0 0; }
    to { background-position: 58px 0; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-corner-stripe--mid { animation: none; }
}
.hero-lot-marks {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    filter: contrast(1.02);
    /* thin edge bands only */
    -webkit-mask-image: linear-gradient(
        90deg,
        #000 0%,
        #000 4%,
        transparent 8%,
        transparent 92%,
        #000 96%,
        #000 100%
    );
    mask-image: linear-gradient(
        90deg,
        #000 0%,
        #000 4%,
        transparent 8%,
        transparent 92%,
        #000 96%,
        #000 100%
    );
}
.hero-asphalt-bg { display: none; }
.hero-media, .page-hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: drift 42s ease-in-out infinite alternate;
    filter: brightness(.62) contrast(1.08) saturate(.9);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(12,12,12,.35) 0%,
            rgba(12,12,12,.12) 45%,
            transparent 70%
        );
}
.hero--lot .hero-overlay {
    background:
        linear-gradient(
            180deg,
            transparent 0%,
            transparent 8%,
            rgba(10,10,10,.08) 40%,
            transparent 100%
        ),
        linear-gradient(
            90deg,
            rgba(10,10,10,.38) 0%,
            rgba(10,10,10,.12) 42%,
            transparent 68%
        );
}
.hero::after { display: none; }

.hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: 1.25rem 1.5rem;
    align-items: stretch;
    padding: 2.1rem 0 1.75rem;
}

/* Text — no card, sits on hero asphalt */
.hero-panel {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    padding: 1.4rem .75rem 1.5rem 0;
    box-shadow: none;
    overflow: visible;
    max-width: none;
    margin-left: -.35rem;
}
.hero-road-deck { display: none; }
.hero-panel-copy {
    position: relative;
    z-index: 1;
    padding: 0;
    max-width: none;
    width: 100%;
}
.hero-panel .badge,
.hero-panel .badge-yellow {
    margin-bottom: 1rem;
    border-radius: 999px;
    padding: .48rem 1rem;
    font-size: .82rem;
    letter-spacing: .08em;
    background: transparent;
    color: var(--line);
    border: 2px solid var(--line);
    box-shadow: none;
    text-shadow: none;
}
.hero-panel h1 {
    font-family: var(--font-title);
    font-size: clamp(1.95rem, 3.5vw, 2.95rem);
    font-weight: 800;
    line-height: 1.08;
    text-transform: uppercase;
    margin: 0 0 1rem;
    color: #fff8e8;
    letter-spacing: .045em;
    text-wrap: balance;
    max-width: none;
    width: 100%;
    /* flat road-paint on asphalt — no soft glow */
    text-shadow:
        0 1px 0 rgba(0,0,0,.9),
        1px 2px 0 rgba(0,0,0,.55),
        -1px 0 0 rgba(0,0,0,.25);
}
.hero-panel p {
    max-width: min(46rem, 100%);
    font-family: var(--font-display);
    font-weight: 600;
    color: #f3efe0;
    margin: 0 0 1.4rem;
    font-size: clamp(1.05rem, 1.25vw, 1.18rem);
    line-height: 1.65;
    letter-spacing: .02em;
    text-shadow:
        0 1px 0 rgba(0,0,0,.85),
        1px 1px 0 rgba(0,0,0,.4);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    padding-top: .35rem;
}
.hero-actions .btn {
    border-radius: 999px;
    padding: .9rem 1.5rem;
    font-size: .95rem;
    letter-spacing: .04em;
    box-shadow: 0 12px 28px rgba(0,0,0,.28);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.hero-actions .btn:hover { transform: translateY(-2px); }

/* Right: light tilted stall frame around slider */
.hero-visual {
    position: relative;
    z-index: 1;
    padding: .5rem 0 5.5rem;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
}
.hero-stall { display: none; }
.hero-stall-frame {
    --mark-gap: 14px;
    --stall: 72px;
    position: relative;
    display: block;
    width: 100%;
    /* bottom only — full image width */
    padding: 0 0 calc(var(--mark-gap) + var(--stall)) 0;
    transform: rotate(-2deg);
    transform-origin: 55% 45%;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}
.hero-mark { display: none; }
.hero-stall-paint { display: none; }
/* yellow curb below image — white stalls attach to it */
.hero-stall-park {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: var(--stall);
    z-index: 0;
    pointer-events: none;
    border: 0;
    border-bottom: 5px solid rgba(255, 223, 0, .65);
    box-sizing: border-box;
}
.hero-stall-ticks {
    position: absolute;
    display: flex;
    pointer-events: none;
}
.hero-stall-ticks--t,
.hero-stall-ticks--r,
.hero-stall-ticks--l { display: none; }
.hero-stall-logos { display: none; }
.hero-stripe-logo { display: none; }

/* —— Hero open animation: lines → image → handwritten text —— */
.hero--intro .hero-lot-marks {
    opacity: 0;
    animation: heroStripeIn .7s ease forwards;
}
.hero--intro .hero-stall-park {
    opacity: 0;
    animation: heroStripeIn .45s .12s ease forwards;
}
.hero--intro .hero-stall-ticks--b i {
    transform: scaleY(0);
    transform-origin: top center;
    animation: heroStallPaint .4s cubic-bezier(.22, 1, .36, 1) forwards;
}
.hero--intro .hero-stall-ticks--b i:nth-child(1) { animation-delay: .2s; }
.hero--intro .hero-stall-ticks--b i:nth-child(2) { animation-delay: .28s; }
.hero--intro .hero-stall-ticks--b i:nth-child(3) { animation-delay: .36s; }
.hero--intro .hero-stall-ticks--b i:nth-child(4) { animation-delay: .44s; }
.hero--intro .hero-stall-ticks--b i:nth-child(5) { animation-delay: .52s; }
.hero--intro .hero-stall-ticks--b i:nth-child(6) { animation-delay: .6s; }
.hero--intro .hero-stall-ticks--b i:nth-child(7) { animation-delay: .68s; }

.hero--intro .hero-stall-bay {
    opacity: 0;
    transform: scale(.96) rotate(1deg);
    transform-origin: center;
    animation: heroImageIn .75s .85s cubic-bezier(.22, 1, .36, 1) forwards;
}

.hero--intro .hero-panel-copy > .badge,
.hero--intro .hero-panel-copy > h1,
.hero--intro .hero-panel-copy > p,
.hero--intro .hero-panel-copy > .hero-actions {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(2px);
    animation: heroHandwrite .85s cubic-bezier(.22, 1, .36, 1) forwards;
}
.hero--intro .hero-panel-copy > .badge { animation-delay: 1.35s; }
.hero--intro .hero-panel-copy > h1 { animation-delay: 1.55s; }
.hero--intro .hero-panel-copy > p { animation-delay: 1.85s; }
.hero--intro .hero-panel-copy > .hero-actions { animation-delay: 2.1s; }

@keyframes heroStripeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes heroStallPaint {
    from { transform: scaleY(0); opacity: 0; }
    to { transform: scaleY(1); opacity: .55; }
}
@keyframes heroImageIn {
    from {
        opacity: 0;
        transform: scale(.96) rotate(1deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}
@keyframes heroHandwrite {
    from {
        opacity: 0;
        transform: translateY(14px);
        filter: blur(2px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero--intro .hero-lot-marks,
    .hero--intro .hero-stall-park,
    .hero--intro .hero-stall-ticks--b i,
    .hero--intro .hero-stall-bay,
    .hero--intro .hero-panel-copy > .badge,
    .hero--intro .hero-panel-copy > h1,
    .hero--intro .hero-panel-copy > p,
    .hero--intro .hero-panel-copy > .hero-actions {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

/* yellow line flush to photo */
.hero-stall-bay {
    position: relative;
    z-index: 1;
    border: 11px solid rgba(255, 223, 0, .72);
    border-radius: 0;
    padding: 0;
    background: #0d0d0d;
    box-sizing: border-box;
    box-shadow:
        inset 0 0 0 1px rgba(0,0,0,.28),
        0 1px 0 rgba(0,0,0,.3);
    min-width: 0;
    outline: 0;
}
/* BOTTOM — white stalls attached to extra yellow line — faded */
.hero-stall-ticks i {
    display: block;
    background: #fff;
    opacity: .55;
    flex-shrink: 0;
}
.hero-stall-ticks--b {
    left: 6%;
    right: 6%;
    top: 100%;
    margin-top: 0;
    height: var(--stall);
    flex-direction: row;
    justify-content: space-between;
}
.hero-stall-ticks--b i {
    width: 11px;
    height: 100%;
}
.hero-slider {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 560px;
    margin: 0;
    border-radius: 2px;
    overflow: hidden;
    background: #111;
    box-shadow: none;
    isolation: isolate;
}
.hero-slider::before,
.hero-slider::after { display: none; }
.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 560px;
}
.hero-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .8s ease, transform 1.1s ease;
    pointer-events: none;
}
.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 1;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55) 100%);
    pointer-events: none;
}
.hero-slider-caption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 5;
    background: rgba(0,0,0,.72);
    color: #fff;
    border: 0;
    border-left: 3px solid var(--line);
    border-radius: 999px;
    padding: .5rem 1rem .5rem .9rem;
    font-size: .76rem;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: .06em;
    backdrop-filter: blur(8px);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
}
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.82);
    color: #111;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,.22);
    transition: transform .2s ease, background .2s ease;
    opacity: .85;
}
.hero-slider-btn svg { width: 16px; height: 16px; }
.hero-slider-btn:hover {
    background: var(--line);
    transform: translateY(-50%) scale(1.04);
    opacity: 1;
}
.hero-slider-btn.prev { left: 12px; }
.hero-slider-btn.next { right: 12px; }
.hero-slider-dots {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: .4rem;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: .4rem .5rem;
}
.hero-slider-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.45);
    cursor: pointer;
    padding: 0;
    transition: .2s ease;
}
.hero-slider-dots button.is-active {
    background: var(--line);
    width: 22px;
    border-radius: 999px;
}
.hero-slider-rail { display: none; }
.hero-visual::after { display: none; }

.hero-bottom-rail {
    display: none;
}
.hero-bottom-yellow {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 4px;
    margin-top: -2px;
    background: repeating-linear-gradient(
        90deg,
        var(--line) 0 34px,
        transparent 34px 54px
    );
}

/* SERVICE BANNER — full-width asphalt + yellow striping */
.service-banner {
    position: relative;
    overflow: hidden;
    padding: 2.4rem 0 2.5rem;
    text-align: center;
    color: #fff;
    background: #0c0c0c;
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}
.service-banner--merged {
    margin-top: 0;
}
/* Thin join into road banner */
.road-bridge {
    display: none;
}
/* White edge striping */
.service-banner::before,
.service-banner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,.62);
    z-index: 3;
    pointer-events: none;
    border-radius: 0;
    box-shadow: none;
}
.service-banner::before { top: 12px; }
.service-banner::after { bottom: 12px; }
.service-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--asphalt-surface);
}
.service-banner-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,.04) 0%,
        transparent 22%,
        transparent 78%,
        rgba(0,0,0,.4) 100%
    );
}
.service-banner-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-banner-heading,
main h2.service-banner-heading,
main .service-banner h2:first-of-type {
    margin: 0 auto;
    padding-bottom: 1.45rem;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.6vw, 2.15rem);
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255,255,255,.88);
    letter-spacing: .04em;
    line-height: 1.2;
    max-width: 62rem;
    text-shadow: none;
}
/* Yellow dashed center striping */
.service-banner-roadline {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 100%;
    height: 11px;
    overflow: hidden;
    pointer-events: none;
    display: block;
}
.service-banner-roadline > span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 220%;
    background: repeating-linear-gradient(
        90deg,
        rgba(255,223,0,.78) 0 48px,
        transparent 48px 78px
    );
    box-shadow: none;
    opacity: 1;
    animation: roadDashSlide 12s linear infinite;
}
.check-row {
    list-style: none;
    padding: 0;
    margin: 1.55rem 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .85rem 1.7rem;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: clamp(.95rem, 1.45vw, 1.12rem);
    letter-spacing: .05em;
    text-transform: uppercase;
    color: rgba(255,255,255,.82);
}
.check-row li {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    text-shadow: none;
}
.check-row li::before {
    content: "✓";
    color: rgba(255,223,0,.85);
    font-weight: 900;
    font-family: var(--font-body);
    letter-spacing: 0;
    margin-right: 0;
    text-shadow: none;
}

/* INTRO */
.section { padding: 3.75rem 0; }
.intro-section { background: #fff; padding: 2.4rem 0 1.5rem; }
.services-cards-section { padding-top: 1.5rem; }
.prose p { margin: 0 0 1rem; color: var(--muted); }
.prose.center p { font-size: 1.1rem; margin-bottom: 0; }
.prose h3 { margin-top: 1.5rem; }
.prose ul { padding-left: 1.1rem; color: var(--muted); }

/* SERVICE CARDS */
.home-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
}
.home-service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(17,17,17,.08);
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
    display: grid;
    grid-template-rows: 230px auto;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.home-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,223,0,.65);
    box-shadow: 0 22px 48px rgba(0,0,0,.12);
}
.home-service-media {
    position: relative;
    display: block;
    min-height: 230px;
    overflow: hidden;
}
.home-service-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .55s ease;
}
.home-service-card:hover .home-service-photo {
    transform: scale(1.07);
}
.home-service-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.05) 20%, rgba(0,0,0,.45) 100%);
    z-index: 1;
}
.home-service-index {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    min-width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--line);
    color: #111;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    border-radius: 12px;
    letter-spacing: .02em;
}
.home-service-body {
    padding: 1.35rem 1.35rem 1.45rem;
    display: grid;
    align-content: start;
    gap: .55rem;
}
.home-service-body h3 {
    margin: 0;
    font-family: var(--font-title);
    font-size: 1.35rem;
    letter-spacing: 0;
    position: relative;
    padding-bottom: .55rem;
}
.home-service-body h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    background: var(--line);
    border-radius: 999px;
}
.home-service-body p {
    color: var(--muted);
    margin: 0;
    font-size: .95rem;
    line-height: 1.65;
}
.home-service-link {
    margin-top: .35rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-weight: 800;
    font-size: .88rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #111;
    width: fit-content;
    padding: .7rem 1rem;
    border-radius: 999px;
    background: #111;
    color: #fff;
    transition: background .2s ease, transform .2s ease;
}
.home-service-link span {
    transition: transform .2s ease;
}
.home-service-card:hover .home-service-link {
    background: var(--line);
    color: #111;
}
.home-service-card:hover .home-service-link span {
    transform: translateX(3px);
}

/* LOCATION SERVICE CARDS (with photos) */
.loc-services-section {
    padding-top: 3.5rem;
    padding-bottom: 3.75rem;
}
.loc-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}
.loc-service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(17,17,17,.08);
    box-shadow: 0 10px 28px rgba(0,0,0,.06);
    display: grid;
    grid-template-rows: 220px auto;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.loc-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,223,0,.7);
    box-shadow: 0 22px 48px rgba(0,0,0,.12);
}
.loc-service-media {
    position: relative;
    display: block;
    min-height: 220px;
    overflow: hidden;
}
.loc-service-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .55s ease;
}
.loc-service-card:hover .loc-service-photo {
    transform: scale(1.08);
}
.loc-service-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.08) 15%, rgba(0,0,0,.5) 100%);
    z-index: 1;
}
.loc-service-index {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    min-width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--line);
    color: #111;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: 11px;
    letter-spacing: .02em;
}
.loc-service-body {
    padding: 1.3rem 1.35rem 1.4rem;
    display: grid;
    align-content: start;
    gap: .55rem;
}
.loc-service-body h3 {
    margin: 0;
    font-family: var(--font-title);
    font-size: 1.22rem;
    letter-spacing: 0;
    text-transform: uppercase;
    position: relative;
    padding-bottom: .55rem;
}
.loc-service-body h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--line);
    border-radius: 999px;
}
.loc-service-body p {
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.65;
}
.loc-service-link {
    margin-top: .4rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    width: fit-content;
    padding: .7rem 1.05rem;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-weight: 800;
    font-size: .86rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: background .2s ease, color .2s ease;
}
.loc-service-link span {
    transition: transform .2s ease;
}
.loc-service-card:hover .loc-service-link {
    background: var(--line);
    color: #111;
}
.loc-service-card:hover .loc-service-link span {
    transform: translateX(3px);
}

/* PROPERTY MANAGERS */
.pm-section {
    position: relative;
    overflow: hidden;
    background: var(--asphalt-surface);
    color: #fff;
    padding: 4.8rem 0;
}
.pm-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    right: -60px;
    bottom: -80px;
    border-radius: 50%;
    background: transparent;
    filter: blur(30px);
    pointer-events: none;
}
.pm-road {
    position: absolute;
    left: 0;
    right: 0;
    height: 5px;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}
.pm-road-top { top: 18px; }
.pm-road-bottom { bottom: 18px; }
.pm-road span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 220%;
    background: repeating-linear-gradient(
        90deg,
        #fff 0 28px,
        transparent 28px 52px
    );
    opacity: .55;
    animation: pmRoadSlide 48s linear infinite;
    will-change: transform;
}
.pm-road-bottom span {
    animation-duration: 56s;
    animation-direction: reverse;
    opacity: .4;
}
.pm-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    align-items: start;
}
.pm-copy .badge {
    margin-bottom: .85rem;
    border-radius: 6px;
}
.pm-section h2,
main .pm-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.65rem);
    text-transform: uppercase;
    line-height: 1.05;
    margin: 0 0 .9rem;
    max-width: none;
    color: #fff;
}
.pm-section p {
    color: rgba(255,255,255,.84);
    margin: 0 0 1.2rem;
    max-width: 540px;
    line-height: 1.7;
}
.pm-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: .65rem;
}
.pm-points li {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-weight: 600;
    color: rgba(255,255,255,.92);
}
.pm-points li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--line);
    box-shadow: none;
    flex-shrink: 0;
}
.pm-visual {
    position: relative;
    padding: 8px 8px 16px 0;
}
.pm-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 0;
    box-shadow: 0 24px 50px rgba(0,0,0,.4);
    transform: none;
}
.pm-frame::before,
.pm-frame::after {
    content: "";
    position: absolute;
    z-index: 2;
    pointer-events: none;
    border-color: var(--line);
    border-style: solid;
}
.pm-frame::before {
    top: 14px;
    left: 14px;
    width: 42px;
    height: 42px;
    border-width: 3px 0 0 3px;
}
.pm-frame::after {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    border-width: 0 3px 3px 0;
}
.pm-frame:hover { transform: none; }
.pm-frame img {
    width: 100%;
    display: block;
    object-fit: cover;
    min-height: 460px;
    height: 480px;
}
.pm-visual::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 0;
    bottom: 0;
    height: 4px;
    background: var(--line);
    border-radius: 999px;
    box-shadow: none;
}
.pm-note {
    position: absolute;
    left: -10px;
    bottom: 28px;
    z-index: 3;
    background: #fff;
    color: #111;
    border-radius: 14px;
    padding: .9rem 1rem;
    min-width: 190px;
    box-shadow: 0 14px 30px rgba(0,0,0,.28);
    border-bottom: 3px solid var(--line);
}
.pm-note strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #111;
    line-height: 1.1;
}
.pm-note span {
    display: block;
    margin-top: .3rem;
    font-size: .84rem;
    color: #555;
    font-weight: 600;
}

/* WHY CHOOSE */
.why-section { background: #f7f7f7; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.why-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.45rem 1.35rem 1.5rem;
    min-height: 100%;
    border: 1px solid rgba(17,17,17,.08);
    box-shadow: 0 10px 28px rgba(0,0,0,.05);
    border-bottom: 3px solid var(--line);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,.1);
    border-bottom-color: var(--red);
}
.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: .9rem;
    background: #111;
    color: var(--line);
    display: grid;
    place-items: center;
}
.why-icon svg {
    width: 24px;
    height: 24px;
}
.why-card h3 {
    font-family: var(--font-title);
    color: var(--red);
    font-size: 1.28rem;
    text-transform: uppercase;
    margin: 0 0 .55rem;
    line-height: 1.15;
    letter-spacing: 0;
}
.why-card p {
    margin: 0;
    color: #444;
    font-weight: 500;
    line-height: 1.6;
    font-size: .94rem;
}

/* INVEST CTA */
.invest-section {
    position: relative;
    color: #fff;
    padding: 4.8rem 0;
    overflow: hidden;
}
.invest-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.32);
}
.invest-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.45) 100%);
    pointer-events: none;
}
.invest-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    align-items: start;
}
.invest-photos {
    display: grid;
    gap: .9rem;
    padding-bottom: 12px;
    border-bottom: 4px solid var(--line);
    box-shadow: none;
}
.invest-shot {
    position: relative;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.invest-shot::before,
.invest-shot::after {
    content: "";
    position: absolute;
    z-index: 2;
    pointer-events: none;
    border-color: var(--line);
    border-style: solid;
}
.invest-shot::before {
    top: 12px;
    left: 12px;
    width: 34px;
    height: 34px;
    border-width: 3px 0 0 3px;
}
.invest-shot::after {
    right: 12px;
    bottom: 12px;
    width: 34px;
    height: 34px;
    border-width: 0 3px 3px 0;
}
.invest-shot img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
    border: 0;
    border-radius: 0;
}
.invest-copy .badge {
    margin-bottom: .85rem;
    border-radius: 6px;
}
.invest-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    color: #fff;
    line-height: 1.05;
    margin: 0 0 .9rem;
}
.invest-copy p {
    color: rgba(255,255,255,.9);
    margin: 0 0 .85rem;
    max-width: 540px;
    line-height: 1.65;
}
.phone-link {
    color: var(--line);
    font-weight: 800;
}
.invest-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1.35rem;
    display: grid;
    gap: .55rem;
}
.invest-points li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 600;
    color: rgba(255,255,255,.92);
}
.invest-points li::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--line);
    box-shadow: none;
    flex-shrink: 0;
}

/* AREAS */
.areas-section {
    background: #fff;
}
.areas-lead { color: var(--red) !important; font-weight: 700; margin-top: .8rem !important; }
.areas-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem;
}
.area-card {
    background: linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
    border-radius: 20px;
    padding: 1.35rem 1.3rem 1.4rem;
    border: 1px solid rgba(17,17,17,.08);
    box-shadow: 0 14px 34px rgba(0,0,0,.06);
    border-top: 3px solid var(--line);
    border-bottom: 3px solid var(--line);
    transition: transform .25s ease, box-shadow .25s ease;
}
.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(0,0,0,.1);
}
.area-card-head {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1rem;
    padding: .85rem .9rem;
    background: #111;
    border-radius: 14px;
}
.area-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--line);
    color: #111;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.area-icon svg {
    width: 21px;
    height: 21px;
}
.area-card h3 {
    font-family: var(--font-title);
    text-transform: uppercase;
    margin: 0;
    font-size: 1.28rem;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 0;
}
.area-count {
    display: block;
    margin-top: .2rem;
    font-size: .78rem;
    color: rgba(255,255,255,.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.area-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}
.area-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .55rem .85rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(17,17,17,.1);
    color: #222;
    font-size: .9rem;
    font-weight: 700;
    transition: .2s ease;
}
.area-chip svg {
    width: 14px;
    height: 14px;
    color: var(--red);
    flex-shrink: 0;
}
a.area-chip:hover {
    background: var(--line);
    border-color: var(--line);
    color: #111;
    transform: translateY(-1px);
}
a.area-chip:hover svg {
    color: #111;
}
.area-chip.is-static {
    background: #fff;
    border: 1px solid rgba(17,17,17,.1);
    color: #222;
}
.area-chip.is-disabled {
    /* Same look as active chips — only pointer/link differs */
    background: #fff;
    border: 1px solid rgba(17,17,17,.1);
    color: #222;
    cursor: default;
    pointer-events: none;
    opacity: 1;
}
.area-chip.is-disabled svg {
    color: var(--red);
}
.areas-cta {
    margin-top: 1.5rem;
    text-align: center;
}

/* MAP */
.map-section { background: #eee; }
.map-embed {
    width: 100%;
    height: min(520px, 70vh);
}
.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* LOCATION PAGE MAP */
.loc-map-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 2px solid var(--line);
    box-shadow: 0 14px 36px rgba(0,0,0,.1);
    background: #e8e8e8;
    height: min(480px, 65vh);
}
.loc-map-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* REVIEWS */
.reviews-section { background: #f6f6f6; }
.google-rating-pill {
    margin: 1rem auto 0;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: .55rem .95rem;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
}
.google-rating-pill strong { color: #111; }
.google-rating-pill span { color: var(--muted); font-size: .9rem; }
.google-stars {
    display: inline-flex;
    gap: 2px;
}
.google-stars svg {
    width: 16px;
    height: 16px;
    fill: #FBBC05;
}
.reviews-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 1fr);
    gap: 1rem;
    overflow-x: auto;
    padding: .35rem .15rem 1rem;
    scroll-snap-type: x mandatory;
}
.review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.25rem;
    box-shadow: 0 14px 34px rgba(0,0,0,.08);
    scroll-snap-align: start;
    min-height: 230px;
}
.review-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: .75rem;
    align-items: center;
    margin-bottom: .85rem;
}
.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #111;
    color: var(--line);
    display: grid;
    place-items: center;
    font-weight: 800;
}
.review-meta strong { display: block; line-height: 1.2; }
.review-meta .google-stars { margin-top: .25rem; }
.google-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 1px var(--border);
    padding: 3px;
}
.review-card p {
    margin: 0;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.call-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(227,6,19,.45);
}

/* INNER PAGES */
.page-hero {
    position: relative;
    min-height: 42vh;
    display: grid;
    align-items: end;
    color: #fff;
    background: var(--asphalt);
    overflow: hidden;
    margin: 0;
}
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 0%,
            transparent 58%,
            rgba(255,255,255,.1) 82%,
            rgba(255,255,255,.32) 100%
        ),
        linear-gradient(
            105deg,
            rgba(0,0,0,.62) 0%,
            rgba(0,0,0,.46) 48%,
            rgba(0,0,0,.3) 100%
        );
}
.page-hero-compact {
    min-height: 28vh;
    background: linear-gradient(135deg, #1a1a1a, #2f2f2f 50%, #3a1012);
}
.page-hero-compact::after { display: none; }
.page-hero-content, .hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0 3.2rem;
    max-width: 760px;
}
.page-hero h1, .hero h1 {
    font-family: var(--font-title);
    font-size: clamp(1.85rem, 4vw, 3rem);
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 1.15rem;
    letter-spacing: 0;
    color: #fff;
    text-shadow:
        0 1px 0 rgba(0,0,0,.75),
        0 2px 12px rgba(0,0,0,.55);
}
.page-hero-content > p,
.hero-content > p {
    color: rgba(255,255,255,.92);
    text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.eyebrow {
    color: var(--red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .78rem;
    margin: 0 0 .6rem;
}
h2 {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.8vw, 2.2rem);
    line-height: 1.25;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
    letter-spacing: var(--tracking-head);
}
h3 {
    font-family: var(--font-title);
    font-size: 1.15rem;
    text-transform: uppercase;
    margin: 0 0 .65rem;
    letter-spacing: 0;
    line-height: 1.3;
}

.service-grid, .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.service-tile {
    display: grid;
    grid-template-rows: 220px auto;
    background: #fff;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform .25s ease, box-shadow .25s ease;
}
.service-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.service-image { background-size: cover; background-position: center; }
.service-copy { padding: 1.25rem; }
.service-copy span {
    display: inline-block;
    margin-top: .75rem;
    color: var(--red);
    font-weight: 700;
    font-size: .9rem;
}
.split {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2.5rem;
    align-items: center;
}
.split-visual img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.feature-grid article {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid var(--line);
    padding: 1.4rem;
    border-radius: 10px;
}
.feature-grid article p { color: var(--muted); margin: 0; }

.cta-banner {
    background:
        linear-gradient(120deg, rgba(227,6,19,.9), rgba(17,17,17,.92)),
        url('../images/services/patching.jpg') center/cover;
    color: #fff;
    text-align: center;
}
.cta-banner p { max-width: 640px; margin: 0 auto 1.4rem; color: rgba(255,255,255,.9); }

.faq-list {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem 1.25rem;
    align-items: start;
}
.faq-item {
    position: relative;
    border: 1px solid rgba(17,17,17,.08);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,.04);
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.faq-item:hover {
    border-color: rgba(255,223,0,.55);
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.faq-item[open],
.faq-item.is-open {
    border-color: rgba(255,223,0,.7);
    box-shadow: 0 14px 32px rgba(0,0,0,.1);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 1.15rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.08rem;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #111;
    line-height: 1.25;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-q { flex: 1; min-width: 0; }
.faq-caret {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(17,17,17,.06);
    border: 1px solid rgba(17,17,17,.08);
    position: relative;
    transition: transform .3s ease, background .25s ease, border-color .25s ease;
}
.faq-caret::before,
.faq-caret::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #111;
    border-radius: 2px;
    transition: transform .3s ease, opacity .25s ease;
}
.faq-caret::before {
    width: 10px;
    height: 2px;
    transform: translate(-50%, -50%);
}
.faq-caret::after {
    width: 2px;
    height: 10px;
    transform: translate(-50%, -50%);
}
.faq-item[open] .faq-caret,
.faq-item.is-open .faq-caret {
    background: var(--line);
    border-color: var(--line);
}
.faq-item[open] .faq-caret::after,
.faq-item.is-open .faq-caret::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0);
}
.faq-panel {
    display: block;
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: height .38s cubic-bezier(.22, 1, .36, 1), opacity .28s ease;
}
.faq-item.is-open .faq-panel,
.faq-item[open].is-animating .faq-panel {
    opacity: 1;
}
.faq-panel-inner {
    overflow: hidden;
    min-height: 0;
}
.faq-panel-inner > p,
.faq-panel-inner > div {
    margin: 0;
    padding: 0 1.15rem 1.15rem;
    color: var(--muted);
    line-height: 1.7;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--font-body);
    font-weight: 400;
}
.svc-faq .faq-list {
    max-width: 1100px;
    margin: 0 auto;
}
.svc-faq .faq-list details {
    break-inside: avoid;
}

/* Dark asphalt FAQ */
.section-on-dark .faq-item {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.1);
    box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.section-on-dark .faq-item:hover,
.section-on-dark .faq-item[open],
.section-on-dark .faq-item.is-open {
    border-color: rgba(255,223,0,.45);
    background: rgba(255,255,255,.07);
}
.section-on-dark .faq-item summary {
    color: #fff;
}
.section-on-dark .faq-caret {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
}
.section-on-dark .faq-caret::before,
.section-on-dark .faq-caret::after {
    background: #fff;
}
.section-on-dark .faq-item[open] .faq-caret,
.section-on-dark .faq-item.is-open .faq-caret {
    background: var(--line);
    border-color: var(--line);
}
.section-on-dark .faq-item[open] .faq-caret::before,
.section-on-dark .faq-item[open] .faq-caret::after,
.section-on-dark .faq-item.is-open .faq-caret::before,
.section-on-dark .faq-item.is-open .faq-caret::after {
    background: #111;
}
.section-on-dark .faq-panel-inner > p,
.section-on-dark .faq-panel-inner > div {
    color: rgba(255,255,255,.72);
}

.quote-form {
    margin-top: 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-grid label {
    display: grid;
    gap: .4rem;
    font-weight: 600;
    font-size: .92rem;
}
.form-grid .full { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: .75rem .85rem;
    font: inherit;
    background: #fff;
}
.alert.success {
    background: #e8f7ec;
    color: #146c2e;
    padding: .9rem 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}

/* FOOTER */
.site-footer {
    background: var(--asphalt-surface);
    color: rgba(255,255,255,.82);
    padding-bottom: 1.5rem;
}
.road-band {
    height: 42px;
    overflow: hidden;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.road-surface {
    height: 100%;
    position: relative;
    background: var(--asphalt-surface);
}
.road-line {
    position: absolute;
    top: 50%;
    left: -50%;
    width: 200%;
    height: 4px;
    margin-top: -2px;
    background: repeating-linear-gradient(
        90deg,
        var(--line) 0 40px,
        transparent 40px 72px
    );
    animation: roadMove 14s linear infinite;
    will-change: transform;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 1.5rem;
    padding: 3rem 0 2rem;
}
.footer-logo {
    height: 72px;
    width: auto;
    margin-bottom: 1.1rem;
    background: transparent;
    padding: 0;
    border: 0;
    border-radius: 0;
    display: block;
}
.footer-grid h4 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0 0 .8rem;
    color: var(--line);
}
.footer-grid a, .footer-grid p {
    display: block;
    margin-bottom: .4rem;
    color: rgba(255,255,255,.75);
}
.footer-grid a:hover { color: var(--line); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 1rem;
    font-size: .9rem;
}

.mt-lg { margin-top: 2.5rem; }
.content-wrap { max-width: 900px; }

/* BLOG */
.blog-hero { background: linear-gradient(115deg, #101315, #27323a); color: #fff; padding: 5.5rem 0 4.8rem; }
.blog-hero h1, .blog-article h1 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2.35rem, 5vw, 4.5rem); line-height: .98; margin: .25rem 0 1rem; }
.blog-hero > .container > p:last-child { max-width: 650px; font-size: 1.1rem; color: rgba(255,255,255,.84); }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.6rem; }
.blog-card { background: #fff; border: 1px solid #e5e7e8; box-shadow: 0 10px 25px rgba(0,0,0,.06); }
.blog-card-image { min-height: 190px; display: block; background: #293238 center / cover no-repeat; }
.blog-card-body { padding: 1.4rem; }
.blog-card h2, .blog-card h3 { margin: .3rem 0 .8rem; font-family: var(--font-display); text-transform: uppercase; line-height: 1.05; font-size: 1.6rem; }
.blog-card h2 a, .blog-card h3 a { color: var(--ink); }
.blog-card-body > p:not(.blog-meta) { color: var(--muted); line-height: 1.6; }
.blog-meta { color: #69747a; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin: 0; }
.blog-read, .blog-back { color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: .82rem; }
.blog-empty { grid-column: 1 / -1; color: var(--muted); }
.blog-pager { margin-top: 2rem; }
.blog-article { padding: 4rem 0 5rem; }
.blog-article-head { max-width: 880px; margin-bottom: 2rem; }
.blog-back { display: inline-block; margin-bottom: 2rem; }
.blog-featured { width: 100%; max-width: 1050px; max-height: 580px; object-fit: cover; display: block; margin: 0 auto 3rem; }
.blog-prose { max-width: 780px; font-size: 1.08rem; line-height: 1.8; color: #293238; }
.blog-prose h2, .blog-prose h3 { color: var(--ink); font-family: var(--font-display); text-transform: uppercase; line-height: 1.05; margin: 2rem 0 .7rem; }
.blog-prose img { max-width: 100%; height: auto; }
.blog-related { background: #f4f6f6; }
@media (max-width: 800px) { .blog-grid { grid-template-columns: 1fr; } .blog-hero { padding: 4rem 0 3.5rem; } }

/* SERVICE PAGE — SEALCOATING */
.svc-hero .page-hero-media {
    filter: brightness(.68) contrast(1.04);
}
.svc-hero::after {
    background: linear-gradient(
        100deg,
        rgba(0,0,0,.62) 0%,
        rgba(0,0,0,.48) 45%,
        rgba(0,0,0,.32) 100%
    );
}
.svc-hero .page-hero-content { max-width: 820px; padding-bottom: 3.5rem; }
.svc-hero-sub {
    font-size: clamp(1.02rem, 1.9vw, 1.28rem);
    font-weight: 700;
    line-height: 1.4;
    margin: -.35rem 0 1rem;
    color: #fff;
    text-shadow:
        0 1px 0 rgba(0,0,0,.7),
        0 2px 10px rgba(0,0,0,.45);
}
.svc-hero .page-hero-content > p {
    color: rgba(255,255,255,.94);
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 42rem;
    text-shadow: 0 1px 10px rgba(0,0,0,.55);
}
.svc-intro {
    position: relative;
    background: #0e0e0e;
    padding: 2.6rem 0 2.75rem;
    overflow: hidden;
    color: #fff;
}
/* Asphalt texture */
.svc-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(255,255,255,.03), transparent 45%),
        radial-gradient(ellipse at 80% 65%, rgba(255,255,255,.025), transparent 40%),
        repeating-linear-gradient(
            115deg,
            rgba(255,255,255,.015) 0 1px,
            transparent 1px 7px
        ),
        repeating-linear-gradient(
            0deg,
            #161616 0 2px,
            #101010 2px 5px
        ),
        repeating-linear-gradient(
            90deg,
            #131313 0 3px,
            #0c0c0c 3px 7px
        );
}
.svc-intro::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,.35) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0,0,0,.4) 100%
    );
}
.svc-intro .container {
    position: relative;
    z-index: 2;
}
.svc-intro-copy {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}
.svc-intro-copy .prose {
    font-family: "Oswald", sans-serif;
    font-size: clamp(1.02rem, 1.55vw, 1.18rem);
    line-height: 1.65;
    color: #fff;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: none;
    text-shadow:
        0 1px 0 rgba(0,0,0,.9),
        0 2px 8px rgba(0,0,0,.55);
}
.svc-intro-copy .prose p {
    margin: 0;
    color: #fff;
}
/* Yellow dashed striping — road paint on asphalt */
.svc-intro-road {
    position: absolute;
    left: 0;
    right: 0;
    height: 6px;
    background: transparent;
    z-index: 3;
    overflow: hidden;
}
.svc-intro-road-top { top: 14px; }
.svc-intro-road-bottom { bottom: 14px; }
.svc-intro-road span {
    position: absolute;
    top: 0;
    left: 0;
    width: 220%;
    height: 100%;
    transform: none;
    background: repeating-linear-gradient(
        90deg,
        var(--line) 0 26px,
        transparent 26px 48px
    );
    box-shadow: 0 1px 0 rgba(0,0,0,.5);
    animation: roadDashSlide 14s linear infinite;
    opacity: .95;
}
.svc-intro-road-bottom span {
    animation-duration: 16s;
    animation-direction: reverse;
    opacity: .85;
}
.svc-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.svc-benefit-card {
    background: #fff;
    border: 1px solid rgba(17,17,17,.08);
    border-bottom: 3px solid var(--line);
    border-radius: 18px;
    padding: 1.45rem 1.35rem 1.5rem;
    box-shadow: 0 10px 28px rgba(0,0,0,.05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    min-height: 100%;
}
.svc-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,.1);
    border-bottom-color: #111;
}
.svc-benefit-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: 1rem;
}
.svc-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #111;
    color: var(--line);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.svc-benefit-icon svg {
    width: 24px;
    height: 24px;
}
.svc-benefit-index {
    font-weight: 800;
    font-size: .85rem;
    letter-spacing: .06em;
    color: rgba(17,17,17,.35);
}
.svc-benefit-card h3 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 .65rem;
    color: #111;
    letter-spacing: 0;
}
.svc-benefit-card p {
    margin: 0;
    color: #555;
    line-height: 1.65;
    font-size: .95rem;
}
.svc-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.svc-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.svc-why-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.svc-steps-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.svc-why-card {
    background: #fff;
    border: 1px solid rgba(17,17,17,.08);
    border-bottom: 3px solid var(--line);
    border-radius: 18px;
    padding: 1.55rem 1.45rem 1.6rem;
    box-shadow: 0 10px 28px rgba(0,0,0,.05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    min-height: 100%;
}
.svc-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,.1);
    border-bottom-color: #111;
}
.svc-why-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: 1rem;
}
.svc-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #111;
    color: var(--line);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.svc-why-icon svg {
    width: 26px;
    height: 26px;
}
.svc-why-index {
    font-weight: 800;
    font-size: .85rem;
    letter-spacing: .06em;
    color: rgba(17,17,17,.35);
}
.svc-why-card h3 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 .65rem;
    color: #111;
    letter-spacing: 0;
}
.svc-why-card p {
    margin: 0;
    color: #555;
    line-height: 1.65;
    font-size: .98rem;
}

/* Soft / minimal Why Choose — dark asphalt */
.svc-why-soft {
    background: var(--asphalt-surface);
    color: #fff;
}
.svc-why-soft .section-head p {
    color: rgba(255,255,255,.72);
}
.svc-why-soft .pill-dark {
    background: var(--line);
    color: #111;
}
.svc-why-soft .heading-red,
.svc-why-soft .section-head h2 {
    color: #fff;
}
.svc-why-soft-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
}
.svc-why-soft-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 1.35rem 1.4rem;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}
.svc-why-soft-card:hover {
    border-color: rgba(255,223,0,.35);
    background: rgba(255,255,255,.07);
    box-shadow: 0 16px 36px rgba(0,0,0,.35);
    transform: translateY(-3px);
}
.svc-why-soft-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: .04em;
    color: #fff;
    line-height: 1;
    padding-top: .35rem;
    border-left: 3px solid var(--line);
    padding-left: .7rem;
}
.svc-why-soft-body {
    display: grid;
    gap: .45rem;
}
.svc-why-soft-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--line);
    color: #111;
    display: grid;
    place-items: center;
    margin-bottom: .15rem;
}
.svc-why-soft-icon svg {
    width: 20px;
    height: 20px;
}
.svc-why-soft-card h3 {
    margin: 0;
    font-family: var(--font-title);
    font-size: 1.08rem;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #fff;
}
.svc-why-soft-card p {
    margin: 0;
    color: rgba(255,255,255,.7);
    font-size: .95rem;
    line-height: 1.65;
}

.svc-why-dark {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 85% 80%, rgba(255,255,255,.03), transparent 42%),
        linear-gradient(180deg, #141414 0%, #0d0d0d 100%);
    color: #fff;
}
.svc-why-dark > .container {
    position: relative;
    z-index: 2;
}
.svc-why-dark .svc-process-road {
    top: auto;
    bottom: 0;
    background: transparent;
    height: 22px;
}
.svc-why-dark .svc-process-road .road-dash {
    animation: dashCrawl 1.15s linear infinite;
}
.svc-why-dark .section-head p {
    color: rgba(255,255,255,.72);
}
.svc-why-dark .pill {
    background: var(--line);
    color: #111;
}
.svc-why-dark .svc-why-card {
    background: #1a1a1a;
    border-color: rgba(255,255,255,.08);
    border-bottom-color: var(--line);
    box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.svc-why-dark .svc-why-card:hover {
    border-bottom-color: #fff;
    box-shadow: 0 20px 44px rgba(0,0,0,.45);
}
.svc-why-dark .svc-why-icon {
    background: var(--line);
    color: #111;
}
.svc-why-dark .svc-why-index {
    color: rgba(255,255,255,.35);
}
.svc-why-dark .svc-why-card h3 {
    color: #fff;
}
.svc-why-dark .svc-why-card p {
    color: rgba(255,255,255,.7);
}
.svc-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem 1.35rem 1.4rem;
    box-shadow: 0 10px 28px rgba(0,0,0,.04);
    overflow: hidden;
}
.svc-card h3 {
    font-size: 1.1rem;
    margin: 0 0 .65rem;
    text-transform: none;
    letter-spacing: 0;
}
.svc-card p { margin: 0; color: var(--muted); line-height: 1.6; font-size: .95rem; }
.svc-card-accent {
    display: block;
    width: 42px;
    height: 4px;
    background: var(--line);
    border-radius: 2px;
    margin-bottom: .9rem;
}
.svc-step-card { padding-top: 1.75rem; }
.svc-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.4rem;
    height: 2.4rem;
    padding: 0 .55rem;
    margin-bottom: .85rem;
    background: #111;
    color: var(--line);
    font-weight: 800;
    font-size: .85rem;
    border-radius: 8px;
}
.svc-process-dark {
    position: relative;
    overflow: hidden;
    background: var(--asphalt-surface);
    color: #fff;
    padding-bottom: 4.5rem;
}
.svc-process-dark > .container {
    position: relative;
    z-index: 2;
}
.svc-process-logo {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    width: min(420px, 42vw);
    opacity: .14;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 0 18px rgba(227, 6, 19, .55));
    animation: logoRedPulse 3.2s ease-in-out infinite;
}
.svc-process-logo img {
    width: 100%;
    height: auto;
    display: block;
    animation: logoFloat 5.5s ease-in-out infinite;
}
.svc-process-road {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 28px;
    z-index: 2;
    pointer-events: none;
    background: #0a0a0a;
}
.svc-process-dark .section-head h2 {
    color: #fff;
}
.svc-process-dark .section-head p {
    color: rgba(255,255,255,.72);
}
.svc-process-dark .pill {
    background: var(--line);
    color: #111;
}
.svc-process-dark .svc-card,
.svc-process-dark .svc-step-card {
    background: #1c1c1c;
    border: 1px solid rgba(255,255,255,.08);
    border-bottom: 3px solid var(--line);
    box-shadow: 0 16px 36px rgba(0,0,0,.35);
    color: #fff;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.svc-process-dark .svc-card:hover,
.svc-process-dark .svc-step-card:hover {
    transform: translateY(-4px);
    background: #242424;
    border-bottom-color: #fff;
}
.svc-process-dark .svc-card h3,
.svc-process-dark .svc-step-card h3 {
    color: #fff;
}
.svc-process-dark .svc-card p,
.svc-process-dark .svc-step-card p {
    color: rgba(255,255,255,.7);
}
.svc-process-dark .svc-step-num {
    background: var(--line);
    color: #111;
}
@keyframes logoRedPulse {
    0%, 100% {
        opacity: .12;
        filter: drop-shadow(0 0 12px rgba(227, 6, 19, .35));
    }
    50% {
        opacity: .22;
        filter: drop-shadow(0 0 28px rgba(227, 6, 19, .75));
    }
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.03); }
}

/* Avoid two dark sections stacked: soften why-soft when it follows banner or process */
.service-banner + .svc-why-soft,
.svc-process-dark + .svc-why-soft {
    background: #f6f6f6;
    color: var(--ink);
}
.service-banner + .svc-why-soft .section-head p,
.svc-process-dark + .svc-why-soft .section-head p {
    color: var(--muted);
}
.service-banner + .svc-why-soft .heading-red,
.svc-process-dark + .svc-why-soft .heading-red {
    color: var(--red);
}
.service-banner + .svc-why-soft .svc-why-soft-card,
.svc-process-dark + .svc-why-soft .svc-why-soft-card {
    background: #fff;
    border-color: rgba(17,17,17,.08);
    box-shadow: 0 10px 28px rgba(0,0,0,.05);
}
.service-banner + .svc-why-soft .svc-why-soft-card h3,
.svc-process-dark + .svc-why-soft .svc-why-soft-card h3 {
    color: var(--ink);
}
.service-banner + .svc-why-soft .svc-why-soft-card p,
.svc-process-dark + .svc-why-soft .svc-why-soft-card p {
    color: var(--muted);
}
.service-banner + .svc-why-soft .svc-why-soft-icon,
.svc-process-dark + .svc-why-soft .svc-why-soft-icon {
    background: rgba(255,223,0,.18);
    color: #111;
}
.service-banner + .svc-why-soft .svc-why-soft-num,
.svc-process-dark + .svc-why-soft .svc-why-soft-num {
    color: #111;
    background: transparent;
    border-left-color: var(--line);
}
.service-banner + .svc-why-soft .svc-why-soft-card:hover,
.svc-process-dark + .svc-why-soft .svc-why-soft-card:hover {
    background: #fff;
    border-color: rgba(255,223,0,.45);
    box-shadow: 0 16px 36px rgba(0,0,0,.1);
}
.svc-process-numbered {
    background: #f6f6f6;
    padding-top: 3rem;
    padding-bottom: 3.25rem;
}
.svc-steps-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 920px;
    margin: 0 auto 1.75rem;
    padding: 0 .5rem;
}
.svc-steps-node {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #111;
    color: var(--line);
    border: 2px solid var(--line);
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: .85rem;
    box-shadow: 0 0 0 4px #f6f6f6;
    z-index: 1;
}
.svc-steps-rail {
    flex: 1;
    height: 4px;
    min-width: 18px;
    border-radius: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--line) 0 14px,
        transparent 14px 26px
    );
    background-size: 26px 4px;
    animation: roadMove 2.4s linear infinite;
}
.svc-steps-grid {
    display: grid;
    gap: 1.15rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
/* 4 steps → balanced 2×2; 2 steps → centered pair; 3/5/6 → 3-col */
.svc-steps-grid[data-steps="1"] {
    grid-template-columns: minmax(0, 420px);
    justify-content: center;
}
.svc-steps-grid[data-steps="2"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
    margin-inline: auto;
}
.svc-steps-grid[data-steps="4"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 920px;
    margin-inline: auto;
}
.svc-steps-grid[data-steps="3"],
.svc-steps-grid[data-steps="5"],
.svc-steps-grid[data-steps="6"],
.svc-steps-grid.svc-steps-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    margin-inline: 0;
}
.svc-steps-track[data-steps="4"],
.svc-steps-track[data-steps="2"] {
    max-width: 640px;
}
.svc-steps-track[data-steps="3"] {
    max-width: 720px;
}
.svc-step {
    position: relative;
    background: #111;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 1.25rem 1.2rem 1.2rem;
    box-shadow: 0 14px 32px rgba(0,0,0,.2);
    border-bottom: 3px solid var(--line);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    min-height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
}
.svc-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,.28);
    border-bottom-color: #fff;
}
.svc-step-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .85rem;
}
.svc-step-badge {
    display: inline-flex;
    align-items: center;
    padding: .35rem .7rem;
    border-radius: 999px;
    background: var(--line);
    color: #111;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.svc-step-count {
    font-size: .78rem;
    font-weight: 700;
    color: rgba(255,255,255,.45);
}
.svc-step h3 {
    font-family: var(--font-title);
    font-size: 1.12rem;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 .55rem;
    color: #fff;
    letter-spacing: 0;
}
.svc-step p {
    margin: 0 0 1.1rem;
    color: rgba(255,255,255,.7);
    line-height: 1.55;
    font-size: .94rem;
    flex: 1;
}
.svc-step-next,
.svc-step-done {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: auto;
    padding-top: .15rem;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1;
}
.svc-step-next {
    color: rgba(255,255,255,.9);
}
.svc-step-next::after {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    flex-shrink: 0;
    background: repeating-linear-gradient(
        90deg,
        #fff 0 7px,
        transparent 7px 12px
    );
    background-size: 12px 2px;
    animation: roadMove 2.2s linear infinite;
}
.svc-step-done {
    color: #fff;
}
.svc-step-done::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,255,255,.2);
}
.section.alt { background: #f6f6f6; }

/* Shared dark band — asphalt surface */
.section-on-dark {
    position: relative;
    overflow: hidden;
    background: var(--asphalt-surface);
    color: #fff;
}
.section-on-dark .section-head p {
    color: rgba(255,255,255,.72);
}
.section-on-dark .pill-dark {
    background: var(--line);
    color: #111;
}
.section-on-dark .heading-red,
.section-on-dark .section-head h2,
.section-on-dark h2 {
    color: #fff;
}
.section-on-dark .pill:not(.pill-dark) {
    background: var(--line);
    color: #111;
}

/* Slow white dashed road marks on dark asphalt sections */
.svc-why-soft,
.svc-process-dark,
.svc-why-dark {
    position: relative;
    overflow: hidden;
}
.section-on-dark::before,
.section-on-dark::after,
.svc-why-soft::before,
.svc-why-soft::after,
.svc-process-dark::before,
.svc-why-dark::before,
.svc-why-dark::after,
.invest-section::before,
.invest-section::after {
    content: "";
    position: absolute;
    left: -10%;
    width: 120%;
    height: 3px;
    z-index: 1;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,.7) 0 20px,
        transparent 20px 42px
    );
    background-size: 42px 3px;
    background-repeat: repeat-x;
    opacity: .42;
    animation: darkRoadCrawl 52s linear infinite;
}
.section-on-dark::before,
.svc-why-soft::before,
.svc-process-dark::before,
.svc-why-dark::before,
.invest-section::before {
    top: 18px;
}
.section-on-dark::after,
.svc-why-soft::after,
.svc-why-dark::after,
.invest-section::after {
    bottom: 18px;
    opacity: .28;
    animation-duration: 64s;
    animation-direction: reverse;
}
.svc-process-dark::before {
    top: 14px;
    opacity: .35;
}
.section-on-dark > .container,
.svc-why-soft > .container,
.svc-process-dark > .container,
.svc-why-dark > .container,
.invest-section > .container,
.invest-section > .invest-grid {
    position: relative;
    z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
    .section-on-dark::before,
    .section-on-dark::after,
    .svc-why-soft::before,
    .svc-why-soft::after,
    .svc-process-dark::before,
    .svc-why-dark::before,
    .svc-why-dark::after,
    .invest-section::before,
    .invest-section::after,
    .pm-road span {
        animation: none;
    }
}
.areas-section.section-on-dark {
    background: var(--asphalt-surface);
}
.areas-section.section-on-dark .loc-map-wrap {
    border-color: rgba(255,255,255,.12);
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.reviews-section.section-on-dark {
    background: var(--asphalt-surface);
}
.reviews-section.section-on-dark .section-head p {
    color: rgba(255,255,255,.72);
}
.svc-process-numbered.section-on-dark {
    background: var(--asphalt-surface);
}
.svc-process-numbered.section-on-dark .svc-steps-node {
    box-shadow: 0 0 0 4px #0d0d0d;
}
.svc-process-numbered.section-on-dark .svc-steps-node span {
    background: var(--line);
    color: #111;
}
.map-section.section-on-dark {
    background: var(--asphalt-surface);
}

/* ABOUT PAGE */
.about-story {
    background: #fff;
    padding-top: 3.5rem;
    padding-bottom: 3.75rem;
}
.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 2.5rem 2.75rem;
    align-items: center;
}
.about-story-media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid var(--line);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.about-story-media img,
.about-story-media .mml-img-wrap,
.about-story-media .mml-img-wrap img {
    display: block;
    width: 100%;
    height: min(460px, 56vw);
    object-fit: cover;
}
.about-story-media .mml-img-wrap {
    border-radius: 0;
}
.about-story-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: var(--line);
    color: #111;
    border-radius: 14px;
    padding: .85rem 1.1rem;
    display: grid;
    place-items: center;
    min-width: 88px;
    box-shadow: 0 10px 24px rgba(0,0,0,.2);
}
.about-story-badge strong {
    font-family: var(--font-display);
    font-size: 1.85rem;
    line-height: 1;
    font-weight: 800;
}
.about-story-badge span {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.about-story-copy .prose {
    margin: 0 0 1.5rem;
    color: #444;
}
.about-story-copy .prose p { margin: 0 0 .9rem; }
.about-story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
}
.about-value-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 1.4rem 1.45rem;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.about-value-card:hover {
    border-color: rgba(255,223,0,.45);
    transform: translateY(-3px);
    background: rgba(255,255,255,.06);
}
.about-value-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    color: var(--line);
    display: grid;
    place-items: center;
    margin-bottom: .9rem;
}
.about-value-icon svg { width: 22px; height: 22px; }
.about-value-card h3 {
    margin: 0 0 .45rem;
    color: #fff;
    font-size: 1.25rem;
}
.about-value-card p {
    margin: 0;
    color: rgba(255,255,255,.72);
    line-height: 1.65;
}
.about-stats {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
}
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.about-stat {
    text-align: center;
    background: #fff;
    border: 1px solid rgba(17,17,17,.08);
    border-bottom: 3px solid var(--line);
    border-radius: 16px;
    padding: 1.35rem 1rem;
    box-shadow: 0 10px 24px rgba(0,0,0,.05);
}
.about-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    color: var(--red);
    line-height: 1;
    margin-bottom: .4rem;
}
.about-stat span {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #333;
    font-size: .98rem;
}
.about-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) auto;
    gap: 1.75rem;
    align-items: center;
}
.about-cta-inner p {
    color: rgba(255,255,255,.72);
    max-width: 38rem;
    margin: 0;
}
.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: flex-end;
}
@media (max-width: 960px) {
    .about-story-grid,
    .about-cta-inner { grid-template-columns: 1fr; }
    .about-cta-actions { justify-content: flex-start; }
    .about-values-grid,
    .about-stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .about-values-grid,
    .about-stats-grid { grid-template-columns: 1fr; }
    .about-story-media img { height: 280px; }
}

/* CONTACT PAGE */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    padding: 1.35rem 1.25rem;
    border: 1px solid rgba(17,17,17,.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0,0,0,.05);
    color: inherit;
    text-decoration: none;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    min-height: 100%;
}
a.contact-info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(227,6,19,.35);
    box-shadow: 0 16px 34px rgba(0,0,0,.08);
}
.contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #111;
    color: var(--line);
    display: grid;
    place-items: center;
    margin-bottom: .55rem;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label {
    font-family: var(--font-display);
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}
.contact-info-card strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.25;
    color: #111;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.contact-info-note {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.45;
}
.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .85fr);
    gap: 1.75rem;
    align-items: start;
}
.contact-form-panel {
    background: #fff;
    border: 1px solid rgba(17,17,17,.08);
    border-radius: 18px;
    padding: 1.75rem 1.6rem 1.85rem;
    box-shadow: 0 14px 36px rgba(0,0,0,.06);
}
.contact-form-head {
    text-align: left;
    margin-bottom: 1.1rem;
}
.contact-form-head h2 { margin-bottom: .35rem; }
.contact-form-head p { margin: 0; max-width: 36rem; }
.contact-form-intro {
    margin-bottom: 1rem;
    color: var(--muted);
}
.contact-form-intro p { margin: 0 0 .6rem; }
.contact-quote-form {
    margin-top: 0;
    border: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
}
.contact-quote-form .form-grid input,
.contact-quote-form .form-grid select,
.contact-quote-form .form-grid textarea {
    transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-quote-form .form-grid input:focus,
.contact-quote-form .form-grid select:focus,
.contact-quote-form .form-grid textarea:focus {
    outline: none;
    border-color: rgba(227,6,19,.45);
    box-shadow: 0 0 0 3px rgba(227,6,19,.1);
}
.contact-side {
    display: grid;
    gap: 1rem;
}
.contact-side-card {
    background: var(--asphalt-surface);
    color: #fff;
    border-radius: 18px;
    padding: 1.5rem 1.4rem;
    box-shadow: 0 14px 36px rgba(0,0,0,.2);
}
.contact-side-card h3 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #fff;
}
.contact-side-list {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: grid;
    gap: .7rem;
}
.contact-side-list li {
    position: relative;
    padding-left: 1.35rem;
    color: rgba(255,255,255,.78);
    line-height: 1.45;
}
.contact-side-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
}
.contact-side-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}
.contact-side-actions .btn-outline {
    background: transparent;
    border-color: rgba(255,255,255,.45);
    color: #fff;
}
.contact-side-actions .btn-outline:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
}
.contact-map {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(17,17,17,.08);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    background: #ddd;
    min-height: 260px;
}
.contact-map iframe {
    display: block;
    width: 100%;
    height: 280px;
    border: 0;
}
.alert.error {
    background: #fde8ea;
    color: #9b1c28;
    padding: .9rem 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}
.alert.error ul {
    margin: 0;
    padding-left: 1.1rem;
}
@media (max-width: 980px) {
    .contact-info-grid { grid-template-columns: 1fr 1fr; }
    .contact-main-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .contact-info-grid { grid-template-columns: 1fr; }
    .contact-form-panel { padding: 1.25rem 1.1rem 1.35rem; }
}

/* PROJECTS / GALLERY */
.projects-gallery {
    background: #f7f6f4;
    border-top: 1px solid rgba(17,17,17,.05);
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}
.project-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(17,17,17,.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,.05);
    transition: transform .22s ease, box-shadow .22s ease;
}
.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(0,0,0,.08);
}
.project-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ddd;
}
.project-media img,
.project-media .mml-img-wrap,
.project-media .mml-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.project-media .mml-img-wrap {
    height: 100%;
}
.project-copy {
    padding: 1rem 1.05rem 1.15rem;
}
.project-copy h3 {
    margin: 0 0 .35rem;
    font-family: var(--font-display);
    font-size: 1.12rem;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.project-copy p {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.45;
}
@media (max-width: 980px) {
    .projects-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .projects-grid { grid-template-columns: 1fr; }
}

/* REQUEST A QUOTE PAGE */
.quote-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, .75fr);
    gap: 1.75rem;
    align-items: start;
}
.quote-form-shell {
    background: #fff;
    border: 1px solid rgba(17,17,17,.08);
    border-radius: 18px;
    padding: 1.75rem 1.6rem 1.9rem;
    box-shadow: 0 14px 36px rgba(0,0,0,.06);
}
.quote-form-head {
    text-align: left;
    margin-bottom: 1rem;
}
.quote-form-head h2 { margin-bottom: .35rem; }
.quote-form-head p { margin: 0; max-width: 36rem; }
.quote-intro { margin-bottom: 1rem; color: var(--muted); }
.quote-intro p { margin: 0 0 .55rem; }
.quote-full-form {
    margin-top: 0;
    border: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
}
.quote-fieldset {
    border: 1px solid rgba(17,17,17,.08);
    border-radius: 14px;
    padding: 1.15rem 1.1rem 1.2rem;
    margin: 0 0 1.15rem;
}
.quote-fieldset legend {
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 0 .35rem;
    color: #111;
}
.quote-fieldset-note {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: .95rem;
}
.quote-choice-row {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem .7rem;
    margin-top: .35rem;
}
.quote-choice {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 600;
    font-size: .92rem;
    padding: .45rem .7rem;
    border: 1px solid rgba(17,17,17,.1);
    border-radius: 999px;
    background: #f7f7f7;
    cursor: pointer;
}
.quote-choice input {
    accent-color: var(--red);
}
.quote-choice span {
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--font-body);
}
.quote-full-form .form-grid input:focus,
.quote-full-form .form-grid select:focus,
.quote-full-form .form-grid textarea:focus {
    outline: none;
    border-color: rgba(227,6,19,.45);
    box-shadow: 0 0 0 3px rgba(227,6,19,.1);
}
.quote-side {
    display: grid;
    gap: 1rem;
}
.quote-side-card {
    background: var(--asphalt-surface);
    color: #fff;
    border-radius: 18px;
    padding: 1.45rem 1.35rem;
    box-shadow: 0 14px 36px rgba(0,0,0,.2);
}
.quote-side-card h3 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 1.28rem;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #fff;
}
.quote-side-card--light {
    background: #fff;
    color: #111;
    border: 1px solid rgba(17,17,17,.08);
    box-shadow: 0 12px 28px rgba(0,0,0,.06);
}
.quote-side-card--light h3 { color: #111; }
.quote-side-steps {
    margin: 0 0 1.2rem;
    padding-left: 1.15rem;
    display: grid;
    gap: .65rem;
    color: rgba(255,255,255,.78);
}
.quote-side-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .55rem;
}
.quote-side-list li {
    position: relative;
    padding-left: 1.2rem;
    color: #444;
}
.quote-side-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
}
.quote-side-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}
.quote-side-actions .btn-outline {
    border-color: rgba(255,255,255,.35);
    color: #fff;
}
.quote-side-actions .btn-outline:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
}
@media (max-width: 980px) {
    .quote-page-grid { grid-template-columns: 1fr; }
}

@media (min-width: 641px) and (max-width: 980px) {
    .svc-steps-grid[data-steps="2"],
    .svc-steps-grid[data-steps="3"],
    .svc-steps-grid[data-steps="4"],
    .svc-steps-grid[data-steps="5"],
    .svc-steps-grid[data-steps="6"],
    .svc-steps-grid.svc-steps-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
        margin-inline: 0;
    }
}

@media (max-width: 640px) {
    .svc-steps-grid,
    .svc-steps-grid[data-steps],
    .svc-steps-grid.svc-steps-grid-3 {
        grid-template-columns: 1fr;
        max-width: none;
        margin-inline: 0;
    }
}

@keyframes roadMove {
    from { transform: translateX(0); }
    to { transform: translateX(72px); }
}
.road-dash {
    stroke: #FFDF00;
    stroke-width: 5;
    stroke-linecap: butt;
    stroke-dasharray: 28 20;
    animation: dashCrawl 1s linear infinite;
}
@keyframes roadDashSlide {
    from { transform: translateX(-70px); }
    to { transform: translateX(0); }
}
@keyframes topbarDash {
    from { background-position: 0 0; }
    to { background-position: 38px 0; }
}
@keyframes headerRoadDash {
    from { background-position: 0 0; }
    to { background-position: 36px 0; }
}
@keyframes pmRoadSlide {
    from { transform: translateX(0); }
    to { transform: translateX(-52px); }
}
@keyframes darkRoadCrawl {
    from { background-position: 0 0; }
    to { background-position: 42px 0; }
}
@keyframes drift {
    from { transform: scale(1.06) translate3d(0,0,0); }
    to { transform: scale(1.12) translate3d(-1.8%, -1.2%, 0); }
}
@keyframes rise {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes roadDraw {
    to { stroke-dashoffset: 0; }
}
@keyframes dashCrawl {
    to { stroke-dashoffset: -48; }
}
@keyframes roadRush {
    from { background-position: 0 0; }
    to { background-position: 0 136px; }
}
@keyframes dashFade {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 640px) {
    .svc-steps-grid,
    .svc-steps-grid[data-steps],
    .svc-steps-grid.svc-steps-grid-3 {
        grid-template-columns: 1fr;
        max-width: none;
        margin-inline: 0;
    }
}

@media (max-width: 980px) {
    .hero-grid, .pm-grid, .invest-grid, .areas-cards,
    .home-service-grid, .loc-service-grid, .why-grid, .service-grid, .feature-grid,
    .svc-card-grid, .svc-why-grid, .svc-why-grid-3, .svc-why-soft-grid, .svc-benefit-grid, .svc-faq .faq-list,
    .split, .footer-grid, .form-grid {
        grid-template-columns: 1fr;
    }
    .svc-steps-track {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: .35rem;
        max-width: none;
    }
    .pm-section h2 { max-width: none; }
    .pm-frame { transform: none; }
    .pm-frame img { min-height: 280px; height: 300px; max-height: none; }
    .pm-note { left: 12px; bottom: 12px; }
    .nav-toggle { display: inline-block; }
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background:
            repeating-linear-gradient(
                0deg,
                #f7f7f7 0 2px,
                #ffffff 2px 5px
            ),
            #fff;
        backdrop-filter: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.25rem 1.35rem;
        border-bottom: 3px solid var(--line);
        box-shadow: 0 16px 32px rgba(0,0,0,.12);
        gap: .2rem;
    }
    .site-nav.open { display: flex; }
    .site-nav > a,
    .site-nav .nav-link {
        border-radius: 10px;
        padding: .75rem .9rem;
        color: #222;
    }
    .site-nav > a::after,
    .site-nav .nav-link::after {
        display: none;
    }
    .site-nav a.nav-quote-btn {
        margin-left: 0;
        margin-top: .4rem;
        text-align: center;
        justify-content: center;
        border-radius: 999px;
    }
    .nav-item { width: 100%; }
    .dropdown-menu {
        position: static;
        display: block;
        box-shadow: none;
        border: 1px solid transparent;
        margin: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
        transition: opacity .28s ease, max-height .36s ease, margin .28s ease, padding .28s ease, visibility .28s ease, border-color .28s ease;
    }
    .nav-item::after { display: none; }
    .nav-item:hover > .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        max-height: 0;
    }
    .nav-item.open > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 70vh;
        margin: .35rem 0 .55rem;
        padding: .45rem;
        border-color: rgba(17,17,17,.06);
        border-radius: 12px;
        overflow: auto;
    }
    .topbar-left { font-size: .78rem; }
    .topbar-left .topbar-item:first-child { display: none; }
    .area-card ul { columns: 1; }
    .hero { min-height: auto; padding-bottom: 12px; }
    .hero-lot-marks { opacity: .45; }
    .hero-grid { padding: 1.35rem 0 1.25rem; gap: 1.35rem; }
    .hero-panel { padding: 1rem 0 1.1rem; border-radius: 0; }
    .hero-panel h1 { max-width: none; font-size: clamp(1.65rem, 7vw, 2.15rem); }
    .hero-slider,
    .hero-slides { min-height: 340px; height: 340px; }
    .hero-visual {
        padding: .35rem 0 4rem;
        margin-left: 0;
        margin-right: 0;
    }
    .hero-stall-frame {
        --mark-gap: 10px;
        --stall: 48px;
        transform: rotate(-1.2deg);
        padding: 0 0 calc(var(--mark-gap) + var(--stall)) 0;
        gap: 0;
        grid-template-columns: none;
    }
    .hero-stall-park {
        top: 0;
        left: 0;
        right: 0;
        bottom: var(--stall);
        border: 0;
        border-bottom: 4px solid rgba(255, 223, 0, .65);
    }
    .hero-stall-bay {
        border-width: 10px;
        padding: 0;
        box-shadow:
            inset 0 0 0 1px rgba(0,0,0,.35),
            0 1px 0 rgba(0,0,0,.4);
    }
    .hero-stripe-logo { display: none; }
    .hero-slider { margin: 0; }
    .hero-slider-caption { left: 12px; bottom: 14px; font-size: .72rem; }
    .hero-slider-dots { bottom: 14px; }
    .svc-process-logo { display: none; }
}
