/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #FFFFFF;
    --bg-alt: #F7F5F2;
    --dark: #14161A;
    --dark-alt: #1B1E25;
    --dark-card: #232833;
    --text: #16181D;
    --muted: #5F6672;
    /* ===== BRAND COLOR SYSTEM =====
       The ONLY brand inputs are the four injected colors below. Every tint, glow,
       ring, and soft background is derived from them with color-mix, and all
       neutrals are untinted greys - so any client palette (warm, cool, muted,
       saturated) re-themes the entire template with no other edits. Never
       hardcode an accent-derived color; add a derived token here instead. */
    --accent: #d3364a;
    --accent-dark: #a5081c;
    --accent-2: #3f65a6;
    --accent-2-dark: #113778;
    --on-accent: #FFFFFF;                                               /* text/icons on accent surfaces */
    --accent-soft: color-mix(in srgb, var(--accent) 9%, transparent);   /* icon chips, subtle fills */
    --accent-ring: color-mix(in srgb, var(--accent) 15%, transparent);  /* focus rings */
    --accent-glow: color-mix(in srgb, var(--accent) 30%, transparent);  /* button glow shadows */
    --accent-line: color-mix(in srgb, var(--accent) 35%, transparent);  /* hover borders */
    --accent-on-dark: color-mix(in srgb, var(--accent) 55%, #ffffff);    /* accent legible on dark sections, any hue */
    --white: #FFFFFF;
    --card: #F1F1F1;   /* neutral surface for stat + form cards */
    --hero-overlay: linear-gradient(115deg, rgba(10,12,16,0.78) 0%, rgba(10,12,16,0.55) 42%, rgba(10,12,16,0.22) 78%, rgba(10,12,16,0.1) 100%),
                    linear-gradient(180deg, rgba(10,12,16,0.25) 0%, rgba(10,12,16,0) 30%, rgba(10,12,16,0.45) 100%);
    --border: rgba(16, 20, 28, 0.08);
    --shadow-xs: 0 1px 2px rgba(16,20,28,0.05), 0 2px 8px rgba(16,20,28,0.04);
    --shadow-sm: 0 2px 4px rgba(16,20,28,0.04), 0 10px 28px rgba(16,20,28,0.08);
    --shadow-md: 0 4px 10px rgba(16,20,28,0.05), 0 20px 48px rgba(16,20,28,0.12);
    --shadow-lg: 0 10px 24px rgba(16,20,28,0.10), 0 36px 90px rgba(16,20,28,0.20);
    --radius: 0px;
    --radius-sm: 0px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.35s var(--ease);

    --font-display: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Every page opens on a dark hero and ends on the dark footer, so the
       rubber-band area above/below the document is painted dark too - otherwise
       an over-scroll flashes a white band at the top. */
    background: var(--dark);
    overscroll-behavior-y: none;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    overscroll-behavior-y: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
::selection { background: var(--accent); color: var(--on-accent); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent);
    font-size: 12px;
    margin-bottom: 12px;
}
/* On dark/photo sections the accent may not have enough contrast - use a neutral. */
.hero .eyebrow, .page-hero .eyebrow, .final-cta .eyebrow,
.faq .eyebrow, .cta-band .eyebrow, .why .eyebrow, .services .eyebrow, .reviews .eyebrow { color: rgba(255,255,255,0.75); }

/* Lucide icon defaults - one library, one stroke weight everywhere */
[data-lucide], svg.lucide {
    width: 1em;
    height: 1em;
    stroke-width: 1.75;
    flex-shrink: 0;
}

.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.anim-fade-up.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .anim-fade-up { opacity: 1; transform: none; transition: none; }
    *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 30px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.01em;
    font-size: 15.5px;
    line-height: 1.2;
    white-space: nowrap;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background-color 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}
.btn--lg { padding: 17px 36px; font-size: 16.5px; }
.btn--primary {
    background: var(--accent);
    color: var(--on-accent);
    box-shadow: 0 2px 8px var(--accent-glow), var(--shadow-xs);
}
.btn--primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px var(--accent-glow), var(--shadow-sm);
}
.btn--white { background: var(--white); color: var(--dark); box-shadow: var(--shadow-sm); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--dark { background: var(--dark); color: var(--white); }
.btn--dark:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline-white {
    background: rgba(255,255,255,0.04);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.55);
    backdrop-filter: blur(4px);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.14); border-color: var(--white); transform: translateY(-2px); }
.btn--outline-dark {
    background: var(--white);
    color: var(--dark);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-xs);
}
.btn--outline-dark:hover { border-color: var(--dark); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--block { width: 100%; }
/* On photo/dark backgrounds the primary CTA goes frosted-glass (template-1 style):
   translucent + blurred with the accent appearing only as a hover glow. Solid
   accent buttons remain on light backgrounds and form submits. */
.hero__actions .btn--primary,
.page-hero__actions .btn--primary,
.cta-band__actions .btn--primary {
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255,255,255,0.4);
    color: var(--white);
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.hero__actions .btn--primary:hover,
.page-hero__actions .btn--primary:hover,
.cta-band__actions .btn--primary:hover {
    background: rgba(255,255,255,0.22);
    border-color: var(--white);
    box-shadow: 0 0 0 4px var(--accent-glow), 0 8px 30px rgba(0,0,0,0.25);
    transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    height: 84px;
    /* Keep the bar clear of the notch / Dynamic Island on edge-to-edge iOS */
    height: calc(84px + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
    transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav.is-scrolled {
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border), 0 8px 30px rgba(16,20,28,0.08);
}
.nav__inner {
    max-width: 1320px;
    margin: 0 auto;
    height: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.01em;
    font-size: clamp(16px, 3.6vw, 21px);
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0,0,0,0.35);
    transition: color 0.35s var(--ease), text-shadow 0.35s var(--ease);
}
.nav.is-scrolled .nav__logo { color: var(--dark); text-shadow: none; }
.nav__logo-text { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav__logo.has-image-logo .nav__logo-text { display: none; }
.nav__logo-badge {
    /* Per-site logo size (set in the factory). The bar's height is fixed independently, and the
       76px cap guarantees the logo can never overflow it - so the nav bar never changes size. */
    height: 68px;
    max-height: 76px;
    max-width: 250px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav__logo-badge img { height: 100%; width: auto; max-width: 100%; object-fit: contain; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3)); }
.nav__logo-badge span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent);
    font-size: 15px;
    background: rgba(255,255,255,0.16);
    transition: background-color 0.35s var(--ease);
}
.nav.is-scrolled .nav__logo-badge span { background: var(--bg-alt); }

.nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}
.nav__links > li { position: relative; }
.nav__links a,
.nav__links button.nav__link {
    font-size: 15px;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 16px;
    border-radius: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.35);
    transition: color 0.3s var(--ease), text-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}
.nav.is-scrolled .nav__links a,
.nav.is-scrolled .nav__links button.nav__link { color: var(--text); text-shadow: none; }
/* Hover = accent underline only; text keeps its color so it stays readable
   over both the transparent-dark and scrolled-white nav states. */
.nav__links > li > a,
.nav__links > li > button.nav__link { position: relative; }
.nav__links > li > a::after,
.nav__links > li > button.nav__link::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 5px;
    height: 2px;
    /* white over the transparent-dark hero state; accent once the nav turns white -
       a dark client accent would vanish against the hero photo */
    background: rgba(255,255,255,0.9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}
.nav.is-scrolled .nav__links > li > a::after,
.nav.is-scrolled .nav__links > li > button.nav__link::after { background: var(--accent); }
.nav__links > li > a:hover::after,
.nav__links > li > button.nav__link:hover::after { transform: scaleX(1); }

.nav__chevron { transition: transform 0.3s var(--ease); }
.has-dropdown.is-open .nav__chevron,
.has-dropdown:hover .nav__chevron { transform: rotate(180deg); }

/* Dropdown - fade + slide down, soft shadow, accent bar per item */
.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    min-width: 230px;
    background: var(--white);
    border-radius: 0;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}
.dropdown::before {
    /* invisible hover bridge so the pointer can travel from trigger to panel */
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}
.has-dropdown.is-open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown li a,
.nav.is-scrolled .dropdown li a {
    display: block;
    padding: 11px 16px;
    border-radius: 0;
    border-left: 2px solid transparent;
    color: var(--text);
    font-weight: 500;
    font-size: 14.5px;
    text-shadow: none;
}
.dropdown li a:hover,
.nav.is-scrolled .dropdown li a:hover {
    background: var(--bg-alt);
    border-left-color: var(--accent);
    color: var(--text);
}

.nav__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    background: var(--white);
    color: var(--dark);
    font-family: var(--font-display);
    font-weight: 600;
    padding: 11px 18px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    box-shadow: var(--shadow-sm);
}
.nav__phone:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav.is-scrolled .nav__phone { background: var(--bg-alt); box-shadow: none; border: 1px solid var(--border); }
.nav__cta { padding: 11px 18px; font-size: 15px; }

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.nav__toggle span { display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--white); transition: var(--transition), background-color 0.3s var(--ease); }
.nav.is-scrolled .nav__toggle span,
.nav__toggle.is-active span { background: var(--dark); }
.nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background: var(--white);
    z-index: 99;
    padding: 108px 30px 40px;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
}
.nav__mobile.is-open { transform: translateX(0); }
.nav__mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10,12,16,0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.nav__mobile-backdrop.is-open { opacity: 1; visibility: visible; }
.nav__mobile ul { display: flex; flex-direction: column; margin-bottom: 30px; }
.nav__mobile ul li {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.nav__mobile.is-open ul li { opacity: 1; transform: translateX(0); }
.nav__mobile.is-open ul li:nth-child(1) { transition-delay: 0.06s; }
.nav__mobile.is-open ul li:nth-child(2) { transition-delay: 0.11s; }
.nav__mobile.is-open ul li:nth-child(3) { transition-delay: 0.16s; }
.nav__mobile.is-open ul li:nth-child(4) { transition-delay: 0.21s; }
.nav__mobile.is-open ul li:nth-child(5) { transition-delay: 0.26s; }
.nav__mobile.is-open ul li:nth-child(6) { transition-delay: 0.31s; }
.nav__mobile.is-open ul li:nth-child(n+7) { transition-delay: 0.36s; }
.nav__mobile ul li a {
    display: block;
    padding: 15px 4px;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.01em;
    font-size: 21px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.nav__mobile ul li a:hover { padding-left: 10px; }
.nav__mobile .btn { width: 100%; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh; /* fill the visible viewport on mobile without the URL-bar jump */
    display: flex;
    align-items: center;
    background: var(--dark);
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: var(--hero-overlay); }
/* The homepage hero is a night skyline - the standard overlay is tuned for a
   bright daytime photo and buries it. Keep just enough on the left, where the
   headline sits, and let the city show through on the right. */
.hero--night .hero__overlay {
    /* This skyline puts open sky where the lockup sits, so the shading can be
       light - just enough to hold contrast, plus a wash at the foot of the hero
       to seat the trust marquee. */
    background:
        radial-gradient(ellipse 72% 52% at 50% 38%,
            rgba(6,9,14,0.42) 0%,
            rgba(6,9,14,0.22) 60%,
            rgba(6,9,14,0) 100%),
        linear-gradient(180deg,
            rgba(6,9,14,0.34) 0%,
            rgba(6,9,14,0.06) 40%,
            rgba(6,9,14,0.42) 100%);
}
.hero--night .hero__bg { filter: brightness(1.35) saturate(1.1); }
.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.65fr);
    gap: 64px;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 170px;
}
.hero__content { max-width: 760px; }
/* Compact enough that adding the Project Details field keeps the card the same
   footprint as the original 3-field form. */
/* Frosted panel: the form sits on the hero photo instead of covering it with a
   solid card, so the image reads through and the whole hero feels like one piece. */
.hero__form {
    position: relative;
    background: rgba(18,21,27,0.52);
    -webkit-backdrop-filter: blur(22px) saturate(1.35);
    backdrop-filter: blur(22px) saturate(1.35);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 24px 70px rgba(6,8,12,0.45);
    padding: 28px;
    display: grid;
    gap: 12px;
}
/* soft top highlight, like light catching the edge of glass */
.hero__form::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    pointer-events: none;
}
.hero__form h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.015em; color: var(--white); }
.hero__form > p { color: rgba(255,255,255,0.66); font-size: 13.5px; line-height: 1.45; margin-top: -6px; margin-bottom: 2px; }
.hero__form label { display: grid; gap: 6px; }
.hero__form label > span {
    color: rgba(255,255,255,0.6);
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}
.hero__form input,
.hero__form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.18);
    padding: 12px 14px;
    font: inherit;
    font-size: 14.5px;
    background: rgba(255,255,255,0.07);
    color: var(--white);
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}
.hero__form input::placeholder,
.hero__form textarea::placeholder { color: rgba(255,255,255,0.38); }
.hero__form textarea { resize: vertical; min-height: 58px; }
.hero__form input:hover,
.hero__form textarea:hover { border-color: rgba(255,255,255,0.34); background: rgba(255,255,255,0.11); }
/* keep autofill from repainting the field white */
.hero__form input:-webkit-autofill,
.hero__form input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--white);
    -webkit-box-shadow: 0 0 0 1000px rgba(40,44,52,0.96) inset;
}
.hero__form .btn { margin-top: 4px; }
/* Mobile-only trigger + modal close: hidden on desktop where the form is inline */
.hero__form-trigger { display: none; }
.hero__form-backdrop { display: none; }
.hero__form-close { display: none; }
.hero__form input:focus,
.hero__form textarea:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.14);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-ring);
}
.hero__social-proof { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero__avatars { display: flex; flex-shrink: 0; }
.hero__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(16,18,23,0.8);
    margin-left: -11px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}
.hero__avatars .hero__avatar:first-child { margin-left: 0; }
.hero__avatar--google { z-index: 3; }
.hero__avatar--facebook { background: #1877F2; z-index: 2; }
.hero__avatar--thumbtack { background: #009FD9; z-index: 1; }
.hero__rating-meta > div { display: flex; align-items: baseline; gap: 8px; }
.hero__rating-value { font-family: var(--font-display); font-weight: 800; font-size: 21px; color: var(--white); line-height: 1; }
.hero__rating-stars { color: #FBBC05; font-size: 13px; letter-spacing: 1.5px; line-height: 1; }
.hero__rating-caption { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 3px; }
.hero__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
}
.hero__headline {
    color: var(--white);
    font-weight: 800;
    font-size: clamp(34px, 6.8vw, 78px);
    letter-spacing: -0.025em;
    margin-bottom: 14px;
    text-wrap: balance;
}
/* "Built Not Bought Concepts" has to hold one line, and the column it sits in
   is a different fraction of the viewport at every breakpoint - so size it off
   the column itself rather than off vw. Browsers without container queries keep
   the clamp above and simply wrap. */
.hero__content { container-type: inline-size; }
@supports (font-size: 1cqw) {
    .hero__headline {
        font-size: clamp(23px, 8.5cqw, 58px);
        white-space: nowrap;
        text-wrap: nowrap;
    }
    /* caps + tracking make the lockup ~20% wider than the mixed-case string,
       so it needs its own multiplier to still hold one line */
    /* 'BUILT NOT BOUGHT' measures 8.77x its font-size, so 7.6cqw keeps it
       filling about two thirds of the column at every width */
    .hero__headline--wordmark { font-size: clamp(24px, 8.6cqw, 104px); }
}
/* Sits under the headline: clearly secondary, but still a statement - roughly
   half the headline, so it never reads as body copy. */
.hero__tagline {
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(22px, 3.2vw, 36px);
    letter-spacing: -0.015em;
    line-height: 1.15;
    margin: -4px 0 34px;
    text-wrap: balance;
}
/* tracks the headline, which is sized off the column - see .hero__headline */
@supports (font-size: 1cqw) {
    .hero__tagline { font-size: clamp(18px, 3.9cqw, 30px); margin-top: 0; }
}
.hero__sub {
    color: rgba(255,255,255,0.88);
    font-size: clamp(17px, 2vw, 19px);
    max-width: 560px;
    margin-bottom: 38px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===== PROOF STATS - floating card overlapping the hero ===== */
/* Overlaid along the bottom of the hero image - no card, no fill, just the
   figures sitting on the photo above a hairline rule. */
.proof-stats {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding-bottom: clamp(38px, 5.5vh, 66px);
    pointer-events: none;
}
.proof-marquee {
    overflow: hidden;
    padding-top: clamp(18px, 2.6vh, 26px);
    border-top: 1px solid rgba(255,255,255,0.22);
    /* soften the entry/exit so items don't pop at the viewport edges */
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.proof-marquee__track {
    display: flex;
    width: max-content;
    animation: proof-scroll 42s linear infinite;
}
/* Six identical groups; shifting by exactly one group loops seamlessly. */
.proof-marquee__group { display: flex; flex-shrink: 0; }
@keyframes proof-scroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-16.666667%, 0, 0); }
}
.proof-stat {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    padding: 0 clamp(26px, 3.2vw, 46px);
    white-space: nowrap;
}
/* hairline divider between items */
.proof-stat::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.25);
}
.proof-stat__value {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(24px, 2.4vw, 32px);
    color: var(--white);
    line-height: 1.05;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 2px 14px rgba(10,12,16,0.45);
}
.proof-stat__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.78);
    text-shadow: 0 1px 10px rgba(10,12,16,0.5);
}
@media (prefers-reduced-motion: reduce) {
    .proof-marquee__track { animation: none; }
}

/* ===== INTRO + MAP ===== */
.intro { padding: 100px 0; background: var(--bg); }
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.intro__content h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    margin-bottom: 18px;
    color: var(--text);
}
.intro__content p { color: var(--muted); font-size: 16.5px; margin-bottom: 28px; }
.intro__content p strong { color: var(--text); }
.intro__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.intro__photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.intro__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ===== SERVICES ===== */
.services { padding: 110px 0; background: var(--dark-alt); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-header h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 14px; color: var(--text); text-wrap: balance; }
.section-header p { color: var(--muted); font-size: 16.5px; }
.services__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 44px; }
.services__header h2 { font-size: clamp(30px, 4vw, 42px); color: var(--white); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.service-card:hover img { transform: scale(1.06); }
.service-card__face {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 22px;
    background: linear-gradient(to top, rgba(10,12,16,0.8) 0%, rgba(10,12,16,0.25) 45%, transparent 65%);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.01em;
    font-size: 19px;
    transition: opacity 0.35s var(--ease);
}
.service-card__back {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    background: linear-gradient(160deg, rgba(17,19,24,0.96) 0%, rgba(17,19,24,0.86) 100%);
    color: var(--white);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}
.service-card:hover .service-card__face,
.service-card.is-flipped .service-card__face { opacity: 0; }
.service-card:hover .service-card__back,
.service-card.is-flipped .service-card__back { opacity: 1; }
.service-card__back h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-card__back p { font-size: 14.5px; line-height: 1.55; opacity: 0.94; }
.service-card__arrow {
    width: 38px;
    height: 38px;
    border-radius: 0;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease);
}
.service-card:hover .service-card__arrow { transform: translateX(3px); }
.service-card__back .service-card__arrow { background: var(--accent); box-shadow: none; }
.service-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
}

/* ===== ABOUT / BEFORE-AFTER ===== */
.about { padding: 130px 0 110px; background: var(--bg); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch; }
/* The slider matches the height of the copy column so the two halves read as a
   symmetrical pair, rather than sitting at its own fixed 4:3. */
.about__media { display: flex; }
.about__media .ba-slider { aspect-ratio: auto; width: 100%; height: 100%; min-height: 460px; }
.about__content h2 { font-size: clamp(30px, 3.8vw, 46px); margin-bottom: 18px; color: var(--text); text-wrap: balance; }
.about__content p { color: var(--muted); font-size: 16.5px; margin-bottom: 34px; }
.about__content p strong { color: var(--text); }
/* ===== ABOUT - STACKED SHOWCASE (homepage) =====
   Centred heading, a wide before/after, then copy + CTAs underneath. */
.about--stacked { padding: 84px 0 96px; }
.about--stacked .section-header { margin-bottom: 34px; }
/* Sized so the heading and the full image share one screen: the slider is
   capped by viewport height, not just width. */
.about__showcase {
    position: relative;
    width: 100%;
    max-width: min(1040px, calc((100vh - 390px) * 16 / 9));
    margin: 0 auto;
}
.about__showcase .ba-slider {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    min-height: 0;
    box-shadow: 0 24px 70px rgba(6,8,12,0.28);
}



/* the block is as wide as the slider so the four stats each get a full line;
   only the paragraph is held to a comfortable reading measure */
.about__below { max-width: 1160px; margin: 52px auto 0; text-align: center; }
.about__lede {
    max-width: 860px;
    margin: 0 auto 36px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}
.about__lede strong { color: var(--text); }
.about--stacked .intro__actions { justify-content: center; }

/* Deliberately NOT the hero's stat treatment: a ruled label/figure list so the
   same four proof points read as a spec sheet, not a second row of cards. */
.about__stats {
    margin: 0 0 34px;
    border-top: 1px solid var(--border);
}
.about__stats { list-style: none; padding: 0; }
.about-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
/* Stacked layout: one ruled row of four instead of a vertical list */
.about--stacked .about__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 38px;
}
.about--stacked .about-stat {
    justify-content: center;
    padding: 20px 12px;
    border-bottom: none;
    border-right: 1px solid var(--border);
}
/* nowrap keeps the four stats on one line on wide screens; below that it would
   force the row wider than the viewport, so it is scoped to the 4-up layout */
@media (min-width: 1025px) {
    .about--stacked .about-stat__label { white-space: nowrap; }
}
.about--stacked .about-stat:last-child { border-right: none; }
.about-stat__value {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.01em;
    font-size: 26px;
    color: var(--accent);
    line-height: 1.1;
    white-space: nowrap;
}
.about-stat__label {
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    box-shadow: var(--shadow-lg);
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-slider__before { z-index: 1; }
.ba-slider__after { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-slider__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--white);
    box-shadow: 0 0 12px rgba(0,0,0,0.35);
    z-index: 3;
    transform: translateX(-50%);
}
.ba-slider__knob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(16,20,28,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: var(--shadow-md);
    transition: transform 0.25s var(--ease);
}
.ba-slider:active .ba-slider__knob { transform: translate(-50%, -50%) scale(1.08); }
.ba-slider__label {
    position: absolute;
    top: 18px;
    z-index: 3;
    background: rgba(20,22,26,0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 7px 16px;
    border-radius: 0;
}
.ba-slider__label--before { right: 18px; }
.ba-slider__label--after { left: 18px; }


/* Slider interaction states. Before the first click it is a self-playing demo,
   so the cursor advertises a click; after that it behaves as a scrubber. */
.ba-slider { cursor: pointer; }
.ba-slider.is-active { cursor: ew-resize; }
.ba-slider.is-grabbing { cursor: grabbing; }
.ba-slider__handle { transition: box-shadow 0.25s var(--ease); }
.ba-slider.is-live .ba-slider__handle { box-shadow: 0 0 22px rgba(255,255,255,0.55); }
.ba-slider__knob { transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.ba-slider.is-live .ba-slider__knob { transform: translate(-50%, -50%) scale(1.12); }
.ba-slider.is-grabbing .ba-slider__knob { transform: translate(-50%, -50%) scale(0.96); }
.ba-slider__label { transition: opacity 0.3s var(--ease); }
.ba-slider.is-live .ba-slider__label { opacity: 0.45; }

/* ===== WHY CHOOSE US ===== */
.why { padding: 110px 0; background: var(--dark); }
.why .section-header h2 { color: var(--white); }
.why .section-header p { color: rgba(255,255,255,0.65); }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
    text-align: center;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
    padding: 34px 28px;
    transition: var(--transition);
}
.why-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.14); }
.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 26px;
    margin: 0 auto 18px;
}
.why-card h3 {
    color: var(--white);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}
.why-card p { color: rgba(255,255,255,0.62); font-size: 15px; }

/* ===== PROJECTS CAROUSEL (home) ===== */
.projects__track-wrap { overflow: hidden; padding: 8px 4px 20px; margin: -8px -4px -8px; }
.projects__track { display: flex; gap: 26px; transition: transform 0.55s var(--ease); }
.projects__track .project-card { flex: 0 0 calc(33.333% - 17.34px); }
.projects__dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.projects__dots:empty { display: none; }
.projects__dot { width: 8px; height: 8px; background: rgba(16,20,28,0.16); transition: var(--transition); }
.projects__dot.is-active { background: var(--accent); width: 24px; }

/* ===== PROJECTS GALLERY ===== */
.projects { padding: 110px 0; background: var(--bg-alt);  overflow: hidden;}
.projects__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.project-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.project-card:hover img { transform: scale(1.07); }
.project-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,12,16,0.85) 0%, rgba(10,12,16,0.2) 45%, transparent 62%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}
.project-card__overlay h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    transform: translateY(0);
    transition: transform 0.4s var(--ease);
}
.project-card:hover .project-card__overlay h3 { transform: translateY(-2px); }
.project-card__overlay span { color: rgba(255,255,255,0.75); font-size: 13.5px; }

/* ===== PROCESS ===== */
/* ===== PROCESS (scroll-locked) =====
   .process is a tall runway; .process__sticky pins while --p (0-1, set by
   main.js from scroll position) fills the rail and lights each step. */
.process {
    position: relative;
    background: var(--bg-alt);
    --p: 0;
}
.process[data-process] { height: 200vh; }
.process__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.process .section-header { margin-bottom: 48px; }

.process__flow { position: relative; }
.process__track { position: relative; height: 20px; margin-bottom: 30px; }
/* rail spans dot-centre to dot-centre: 1/8 in from each edge of a 4-col grid */
.process__rail {
    position: absolute;
    top: 50%;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    transform: translateY(-50%);
    background: rgba(16,20,28,0.12);
}
.process__rail-fill {
    display: block;
    height: 100%;
    width: calc(var(--p) * 100%);
    background: var(--accent);
    box-shadow: 0 0 14px var(--accent-glow);
}
.process__dots {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}
.process__dot {
    width: 14px;
    height: 14px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--bg-alt);
    border: 2px solid rgba(16,20,28,0.18);
    transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease),
                transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.process__dot.is-lit {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.25);
    box-shadow: 0 0 0 5px var(--accent-ring);
}

.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.process-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 26px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    opacity: 0.38;
    transform: translateY(14px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease),
                box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.process-step.is-lit {
    opacity: 1;
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
    border-color: var(--accent-line);
}
.process-step__num { transition: color 0.45s var(--ease); }
/* No JS / reduced motion: show everything, drop the runway */
.process:not(.is-ready) .process-step { opacity: 1; transform: none; }
.process:not(.is-ready) .process__dot { background: var(--accent); border-color: var(--accent); }
.process:not(.is-ready) .process__rail-fill { width: 100%; }
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.process-step__num {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 40px;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 14px;
}
.process-step h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.process-step p { color: var(--muted); font-size: 15px; }

/* ===== REVIEWS ===== */
.reviews { padding: 110px 0; background: var(--dark-alt); overflow: hidden; }
.reviews__track-wrap { overflow: hidden; padding: 8px 4px 24px; margin: -8px -4px -8px; }
.reviews__track { display: flex; gap: 28px; transition: transform 0.55s var(--ease); }
.review-card {
    flex: 0 0 calc(33.333% - 19px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    box-shadow: var(--shadow-xs);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.review-card__google,
.review-card__source { position: absolute; top: 26px; right: 26px; }
.review-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(150deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    flex-shrink: 0;
}
.review-card__name { font-weight: 600; font-size: 15px; }
.review-card__sub { color: var(--muted); font-size: 13px; }
.review-card__rating { margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.stars { color: #FBBC05; letter-spacing: 2px; }
.review-text { color: var(--muted); font-size: 15px; line-height: 1.65; }
.review-card.is-expanded .review-text { -webkit-line-clamp: unset; }
.review-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-card__more { color: var(--accent); font-weight: 600; font-size: 13.5px; margin-top: 10px; }
.review-card__more:hover { color: var(--accent-dark); }
.reviews__dots { display: none; justify-content: center; gap: 8px; margin-top: 32px; }
.reviews__dot { width: 8px; height: 8px; background: rgba(16,20,28,0.16); transition: var(--transition); }
.reviews__dot.is-active { background: var(--accent); width: 24px; }

/* Reviews on dark: cards, text, dots, and link recolored for the dark section.
   Scoped to .reviews (home) so the light .reviews-page grid is unaffected. */
.reviews .section-header h2 { color: var(--white); }
.reviews .review-card { background: var(--dark-card); border-color: rgba(255,255,255,0.08); box-shadow: none; }
.reviews .review-card:hover { border-color: rgba(255,255,255,0.16); box-shadow: none; }
.reviews .review-card__name { color: var(--white); }
.reviews .review-card__sub { color: rgba(255,255,255,0.55); }
.reviews .review-text { color: rgba(255,255,255,0.72); }
.reviews .review-card__more { color: var(--accent-on-dark); }
.reviews .review-card__more:hover { color: var(--white); }
.reviews .reviews__dot { background: rgba(255,255,255,0.25); }
.reviews .reviews__dot.is-active { background: var(--accent-on-dark); }

/* ===== RESOURCES ===== */
.resources { padding: 110px 0; background: var(--bg); }
.resources__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 80px;
}
.resource-card {
    min-height: 250px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--text);
    box-shadow: var(--shadow-xs);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.resource-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.resource-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 0;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: auto;
    transition: var(--transition);
}
.resource-card:hover .resource-card__icon { background: var(--accent); color: var(--white); }
.resource-card__tag {
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11.5px;
    color: var(--accent);
    margin: 22px 0 6px;
}
.resource-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 8px;
}
.resource-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }
/* Process + Areas used to sit side by side inside .resources; they are now
   full-width centered sections of their own. */
/* Map + a compact contact card beside it */
.areas__panels {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(290px, 1fr);
    gap: 28px;
    align-items: stretch;
    max-width: 1120px;
    margin: 40px auto 0;
}
.areas__panels .areas__map { margin-top: 0; height: 100%; }
.areas__panels .areas__map iframe { height: 100%; min-height: 380px; }
.areas__contact {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.areas__contact h3 { font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.areas__contact > p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin-bottom: 22px; }
.areas__contact-list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 16px; }
.areas__contact-list li { display: flex; align-items: flex-start; gap: 12px; }
.areas__contact-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--accent);
    background: var(--accent-soft);
}
.areas__contact-label {
    display: block;
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 2px;
}
.areas__contact-list a, .areas__contact-list strong {
    color: var(--text);
    font-weight: 600;
    font-size: 14.5px;
    word-break: break-word;
}
.areas__contact-list a:hover { color: var(--accent); }
/* the address is long enough to break mid-word in a narrow card */
.areas__contact-list a[href^="mailto:"] { font-size: 13px; overflow-wrap: anywhere; }
/* push the CTA to the bottom so the card bottom lines up with the map */
.areas__contact .btn { margin-top: auto; }

/* ===== FAQ ===== */
.faq { position: relative; padding: 120px 0 110px; background: var(--dark-alt); }
.faq::before {
    /* subtle diagonal transition from the light section above */
    content: '';
    position: absolute;
    top: -56px;
    left: 0;
    right: 0;
    height: 57px;
    background: var(--dark-alt);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    pointer-events: none;
}
.faq .section-header h2 { color: var(--white); }
.faq .section-header p { color: rgba(255,255,255,0.65); }
.faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.3s var(--ease);
}
.faq-item.is-open { border-color: rgba(255,255,255,0.16); }
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    text-align: left;
    color: var(--white);
    font-weight: 500;
    font-size: 16.5px;
    transition: color 0.3s var(--ease);
}
.faq-q:hover { color: rgba(255,255,255,0.85); }
.faq-q__icon {
    width: 30px;
    height: 30px;
    border-radius: 0;
    border: 1px solid rgba(255,255,255,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-on-dark);
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.35s var(--ease), background-color 0.35s var(--ease), color 0.35s var(--ease);
}
.faq-item.is-open .faq-q__icon { transform: rotate(45deg); background: var(--accent); color: var(--white); border-color: transparent; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { color: rgba(255,255,255,0.62); padding: 0 24px 22px; font-size: 15px; }

/* ===== SERVICE AREAS ===== */
.areas { padding: 90px 0; background: var(--bg); }
.areas__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.area-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    font-weight: 500;
    font-size: 14.5px;
    color: var(--text);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}
.area-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--accent-line); }
.area-pill [data-lucide],
.area-pill svg.lucide { color: var(--accent); font-size: 15px; }
.areas__map {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}
.areas__map iframe { width: 100%; height: 380px; border: none; display: block; filter: saturate(0.9); }

/* ===== SCENIC CTA ===== */
.final-cta {
    position: relative;
    padding: 120px 0;
    background: var(--dark);
    overflow: hidden;
}
.final-cta__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.final-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(16,18,23,0.9) 0%, rgba(16,18,23,0.68) 52%, rgba(16,18,23,0.82) 100%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.55fr);
    gap: 56px;
    align-items: center;
}
.final-cta__copy { text-align: left; }
.final-cta h2 { color: var(--white); font-weight: 800; font-size: clamp(32px, 4.5vw, 56px); letter-spacing: -0.025em; margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.88); font-size: 17px; margin-bottom: 30px; max-width: 540px; }
.contact-form {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 30px;
    display: grid;
    gap: 16px;
}
.contact-form label { display: grid; gap: 7px; }
.contact-form span {
    color: var(--muted);
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 15px;
    font: inherit;
    font-size: 15px;
    background: var(--white);
    color: var(--text);
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}
.contact-form textarea { resize: vertical; min-height: 116px; }
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-ring);
}

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 76px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 54px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}
.footer__col a { color: rgba(255,255,255,0.62); font-size: 14.5px; }
.footer__col a:hover { color: var(--white); padding-left: 3px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
/* Footer logo: mirrors the nav - client logo image when present, otherwise an
   initial badge + company name text (fallback driven by onerror in the markup). */
.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.01em;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 12px;
}
.footer__logo:hover { opacity: 0.85; }
.footer__logo-badge {
    height: 46px;
    max-width: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__logo-badge img { height: 100%; width: auto; max-width: 100%; object-fit: contain; }
.footer__logo-badge > span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--accent);
    background: rgba(255,255,255,0.1);
}
.footer__logo.has-image-logo .footer__logo-text { display: none; }
.footer__logo-text { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.footer__tagline { color: rgba(255,255,255,0.55); font-size: 14.5px; max-width: 300px; }
.footer__note { color: rgba(255,255,255,0.55); font-size: 14.5px; padding: 4px 0; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px 24px; color: rgba(255,255,255,0.45); font-size: 13.5px; }
.footer__powered a { color: rgba(255,255,255,0.7); font-weight: 600; }
.footer__powered a:hover { color: var(--white); }


/* =====================================================================
   INTERIOR PAGES (page-hero, hubs, detail pages, contact, CTA band)
   ===================================================================== */

/* ===== SECTION "VIEW MORE" ROW ===== */
.section-more { display: flex; justify-content: center; margin-top: 48px; }
.section-more--left { justify-content: flex-start; margin-top: 28px; }
.services__header-link { flex-shrink: 0; }

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 440px;
    padding: 170px 0 100px;
    background: var(--dark);
}
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay { position: absolute; inset: 0; background: var(--hero-overlay); }
.page-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.page-hero__content h1 {
    color: var(--white);
    font-weight: 800;
    font-size: clamp(34px, 5vw, 58px);
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    text-wrap: balance;
}
.page-hero__content p {
    color: rgba(255,255,255,0.88);
    font-size: clamp(16px, 1.8vw, 18px);
    max-width: 620px;
    margin: 0 auto;
}
.page-hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 30px; }

/* ===== CTA BAND (dark strip used on interior pages) ===== */
.cta-band { background: var(--dark-alt); padding: 90px 0; }
.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); font-weight: 800; font-size: clamp(28px, 3.6vw, 44px); letter-spacing: -0.02em; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.65); font-size: 16.5px; max-width: 520px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; flex-shrink: 0; }

/* ===== CHECK LIST (about / area pages) ===== */
.check-list { display: grid; gap: 12px; margin-bottom: 32px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 15.5px; }
.check-list [data-lucide], .check-list svg.lucide {
    color: var(--accent);
    background: var(--accent-soft);
    border-radius: 0;
    padding: 4px;
    width: 24px;
    height: 24px;
}

/* ===== OWNER BIO (about page) ===== */
.owner-bio { padding: 120px 0 110px; background: var(--bg); }
.owner-bio__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) 1.28fr;
    gap: 64px;
    align-items: center;
}
.owner-bio__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; }
.owner-bio__media img { width: 100%; height: 100%; object-fit: cover; }
.owner-bio__content h2 { font-size: clamp(30px, 3.8vw, 46px); margin-bottom: 18px; }
.owner-bio__content p { color: var(--muted); font-size: 16.5px; margin-bottom: 30px; }

/* ===== CREDENTIALS ===== */
.credentials { padding: 0 0 40px; background: var(--bg); }
.credentials__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.credentials__list--left { justify-content: flex-start; margin-bottom: 28px; }
.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    font-weight: 500;
    font-size: 14px;
    color: var(--text);
    box-shadow: var(--shadow-xs);
}
.credential-badge [data-lucide], .credential-badge svg.lucide { color: var(--accent); font-size: 16px; }

/* ===== ACCEPTED PAYMENTS ===== */
.payments { padding: 40px 0; background: var(--bg-alt); border-top: 1px solid var(--border); }
.payments__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 26px;
}
.payments__label {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    color: var(--muted);
}
.payments__list { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; }
.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    font-weight: 500;
    font-size: 13.5px;
    color: var(--text);
    box-shadow: var(--shadow-xs);
}
/* ===== PROMO POPUP ===== */
.promo-popup { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; }
.promo-popup[hidden] { display: none; }
.promo-popup__backdrop { position: absolute; inset: 0; background: rgba(10,12,16,0.55); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); opacity: 0; transition: opacity 0.3s var(--ease); }
.promo-popup.is-open .promo-popup__backdrop { opacity: 1; }
.promo-popup__card {
    position: relative;
    z-index: 1;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    max-width: 420px;
    width: 100%;
    padding: 40px 34px 34px;
    text-align: center;
    transform: translateY(16px) scale(0.98);
    opacity: 0;
    transition: transform 0.32s var(--ease), opacity 0.32s var(--ease);
}
.promo-popup.is-open .promo-popup__card { transform: none; opacity: 1; }
.promo-popup__close {
    position: absolute; top: 12px; right: 12px;
    width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
    color: var(--muted); background: none; border: none; cursor: pointer;
}
.promo-popup__close:hover { color: var(--dark); }
.promo-popup__eyebrow { display: inline-block; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; font-size: 12px; color: var(--accent); margin-bottom: 12px; }
.promo-popup__title { font-family: var(--font-display); font-size: clamp(24px, 5vw, 30px); line-height: 1.1; margin-bottom: 12px; }
.promo-popup__message { color: var(--muted); font-size: 15px; line-height: 1.6; margin-bottom: 22px; }

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 30px 24px;
    text-align: center;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}
.form-success strong { font-family: var(--font-display); font-size: 19px; }
.form-success__tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    margin-bottom: 4px;
    border-radius: 50%;
    background: rgba(34,160,90,0.12);
    color: #22A05A;
}
/* a submitted form stops being a grid so the message can use the full width */
form.is-sent { display: block !important; }
/* the estimate card's own frame would double up with the message panel */
.lead-card__form.is-sent .form-success { border: 0; background: transparent; padding: 18px 0 6px; }

.payment-badge__icon { display: inline-flex; width: 22px; height: 22px; flex-shrink: 0; }
.payment-badge__icon svg { width: 100%; height: 100%; display: block; }

/* ===== SERVICES HUB ===== */
.svc-hub { padding: 130px 0 110px; background: var(--bg); }
.svc-hub__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    color: var(--text);
    box-shadow: var(--shadow-xs);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card__media { aspect-ratio: 16/10; overflow: hidden; }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.svc-card:hover .svc-card__media img { transform: scale(1.06); }
.svc-card__content { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.svc-card__content h3 { font-size: 21px; font-weight: 700; margin-bottom: 8px; }
.svc-card__content p { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin-bottom: 20px; }
.svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    transition: gap 0.3s var(--ease);
}
.svc-card:hover .svc-card__link { gap: 12px; }

/* ===== WHAT'S INCLUDED (service detail) ===== */
.whats-included { padding: 120px 0 110px; background: var(--bg); }
.whats-included__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 880px;
    margin: 0 auto;
}
.whats-included__item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    font-weight: 500;
    font-size: 15.5px;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}
.whats-included__item:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.whats-included__check {
    width: 30px;
    height: 30px;
    border-radius: 0;
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* ===== DETAIL BEFORE/AFTER ===== */
/* ===== SERVICE INTRO (copy left, framed photo right) ===== */
.service-intro { padding: 100px 0; background: var(--bg-alt); }
.service-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.service-intro__content h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.12;
    margin-top: 4px;
}
.service-intro__rule {
    display: block;
    width: 64px;
    height: 3px;
    background: var(--accent);
    margin: 22px 0 26px;
}
.service-intro__content p { color: var(--muted); font-size: 16.5px; margin-bottom: 20px; }
.service-intro__content p:last-of-type { margin-bottom: 30px; }
.service-intro__media img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.detail-ba { padding: 110px 0; background: var(--bg); }
.detail-ba__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.detail-ba__content h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 16px; }
.detail-ba__content p { color: var(--muted); font-size: 16.5px; margin-bottom: 28px; }

/* ===== LEAD FORM (detail + contact pages) ===== */
.detail-form { padding: 110px 0; background: var(--bg-alt); }
.detail-form__inner { max-width: 680px; }
.lead-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 34px;
    display: grid;
    gap: 16px;
}
.lead-form label { display: grid; gap: 7px; }
.lead-form label > span {
    color: var(--muted);
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 15px;
    font: inherit;
    font-size: 15px;
    background: var(--white);
    color: var(--text);
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}
.lead-form textarea { resize: vertical; min-height: 110px; }
.lead-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235F6672' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 42px;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--accent);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-ring);
}
.lead-form input[readonly] { color: var(--muted); }

/* ===== LOCAL INTRO (area detail) ===== */
.local-intro { padding: 120px 0 40px; background: var(--bg); }
.local-intro .section-header { margin-bottom: 0; max-width: 780px; }

/* ===== WHY CHOOSE US (area detail) ===== */
.why-local { padding: 90px 0 110px; background: var(--bg); }
.why-local__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: center; }
.why-local__media { position: relative; }
.why-local__media > img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}
.why-local__badge {
    position: absolute;
    bottom: -24px;
    right: -18px;
    background: var(--accent);
    color: var(--on-accent);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 20px 26px;
    text-align: center;
}
.why-local__badge-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.why-local__badge-label {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
}
.why-local__content h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 16px; }
.why-local__content > p { color: var(--muted); font-size: 16.5px; margin-bottom: 28px; }

/* ===== AREAS HUB ===== */
.areas-hub { padding: 130px 0 110px; background: var(--bg); }
.areas-hub__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr));
    gap: 16px;
    margin-bottom: 56px;
}
.area-hub-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    color: var(--text);
    font-weight: 600;
    font-size: 15.5px;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}
.area-hub-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--accent-line); }
.area-hub-card__pin {
    width: 38px;
    height: 38px;
    border-radius: 0;
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition);
}
.area-hub-card:hover .area-hub-card__pin { background: var(--accent); color: var(--on-accent); }
.area-hub-card__city { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.area-hub-card__arrow { color: var(--muted); transition: var(--transition); }
.area-hub-card:hover .area-hub-card__arrow { color: var(--accent); transform: translateX(3px); }

/* ===== PROJECTS HUB ===== */
.projects-hub { padding: 120px 0 110px; background: var(--bg); }
.project-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 44px; }
.project-filter {
    padding: 10px 22px;
    border-radius: 0;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--muted);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}
.project-filter:hover { color: var(--text); border-color: var(--accent-line); transform: translateY(-1px); }
.project-filter.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--on-accent);
    box-shadow: 0 6px 18px var(--accent-glow);
}
.project-card.is-filtered-out { display: none; }

/* ===== REVIEWS PAGE ===== */
.reviews-page { padding: 60px 0 110px; background: var(--bg); }
.reviews-page__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review-card__service {
    display: inline-block;
    margin-top: 4px;
    padding: 3px 10px;
    border-radius: 0;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.review-card__service:empty { display: none; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 120px 0 110px; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 14px; }
.contact-info__lede { color: var(--muted); font-size: 16.5px; margin-bottom: 32px; }
.contact-info__rows { display: grid; gap: 14px; }
.contact-info__row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    color: var(--text);
    transition: var(--transition);
}
a.contact-info__row:hover { background: var(--white); box-shadow: var(--shadow-sm); transform: translateY(-2px); border-color: var(--accent-line); }
.contact-info__icon {
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-info__row-label {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}
.contact-info__row-value { display: block; font-weight: 600; font-size: 15.5px; overflow-wrap: anywhere; }
.areas--contact { padding-top: 0; }

/* ===== FAQ PAGE VARIANT (light page-flow spacing) ===== */
.faq--page { padding-top: 130px; }

/* ===== NAV: MOBILE SUBMENUS + PHONE ===== */
.nav__mobile-parent { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.nav__mobile-parent svg { transition: transform 0.3s var(--ease); }
.nav__mobile-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
    margin: 0 !important;
}
.nav__mobile-sub.is-open { max-height: 600px; }
.nav__mobile li:has(.nav__mobile-sub.is-open) .nav__mobile-parent svg { transform: rotate(180deg); }
.nav__mobile-sub li a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15.5px !important;
    color: var(--muted);
    padding: 12px 4px 12px 18px !important;
    border-bottom: none !important;
}
.nav__mobile-sub li:last-child a { border-bottom: none; }
.nav__mobile-phone {
    display: block;
    text-align: center;
    margin-top: 14px;
    color: var(--muted);
    font-weight: 500;
    font-size: 14.5px;
}
.nav__mobile-phone:hover { color: var(--text); }
.dropdown__all { font-weight: 600; border-top: 1px solid var(--border); }
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services__grid, .why__grid, .projects__grid, .process__grid, .resources__grid,
    .svc-hub__grid, .reviews-page__grid, .whats-included__list { grid-template-columns: repeat(2, 1fr); }
    .process[data-process] { height: auto; }
    .process__sticky { position: static; height: auto; display: block; padding: 100px 0; }
    .process__track { display: none; }
    .process .process-step { opacity: 1; transform: none; }
    .final-cta__grid { grid-template-columns: 1fr; }
    .projects__track .project-card { flex-basis: calc(50% - 13px); }
    .review-card { flex-basis: calc(50% - 14px); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .nav__links, .nav__phone { display: none; }
    .owner-bio__grid, .detail-ba__grid, .why-local__grid, .contact-grid,
    .service-intro__grid { grid-template-columns: 1fr; gap: 44px; }
    .service-intro__media { order: -1; }
    .owner-bio__media { max-width: 420px; }
    .why-local__badge { right: 12px; bottom: -18px; }
    .cta-band__inner { flex-direction: column; align-items: flex-start; }
    .page-hero { padding: 150px 0 90px; min-height: 0; }
    .nav__toggle { display: flex; }
    /* Let the logo shrink so the CTA + hamburger never push off-screen */
    .nav__logo { flex-shrink: 1; min-width: 0; }
    .nav__logo-badge { max-width: 150px; }
    .nav__inner { gap: 12px; }
    .intro__grid, .about__grid { grid-template-columns: 1fr; }
    .about__showcase .ba-slider { aspect-ratio: 4 / 3; }
    .about--stacked .about__stats { grid-template-columns: repeat(2, 1fr); }
    .about--stacked .about-stat { flex-direction: column; align-items: center; gap: 2px; padding: 16px 8px; text-align: center; }
    .about--stacked .about-stat__label { font-size: 11px; letter-spacing: 0.06em; }
    .about--stacked .about-stat:nth-child(2) { border-right: none; }
    .about--stacked .about-stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
    .about__below { margin-top: 40px; }
    .areas__panels { grid-template-columns: 1fr; }
    .areas__panels .areas__map iframe { min-height: 300px; }
    .about__media { order: -1; }
    /* Stacked: nothing to match heights with, so go back to a natural 4:3 */
    .about__media .ba-slider { aspect-ratio: 4/3; height: auto; min-height: 0; }
    .hero__inner { grid-template-columns: 1fr; gap: 40px; padding-top: 128px; padding-bottom: 145px; }
    .hero__form { max-width: 460px; }
}

@media (max-width: 720px) {
    .container { padding: 0 20px; }
    .nav__inner { padding: 0 20px; }
    /* Small phones: the slide-in menu already carries the quote CTA */
    .nav__cta { display: none; }
    .services__grid, .why__grid, .projects__grid, .process__grid, .resources__grid,
    .svc-hub__grid, .reviews-page__grid, .whats-included__list { grid-template-columns: 1fr; }
    /* Pinning a full-height section on a phone fights the user's scroll, so the
       process reverts to a plain stacked list below 720px. */
    .process[data-process] { height: auto; }
    .process__sticky { position: static; height: auto; display: block; padding: 90px 0; }
    .process__track { display: none; }
    .process .process-step { opacity: 1; transform: none; }
    .areas-hub__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .page-hero { padding: 140px 0 80px; }
    .page-hero__actions .btn { width: 100%; }
    .cta-band__actions { width: 100%; }
    .cta-band__actions .btn { width: 100%; }
    .lead-form { padding: 26px; }
    .detail-form, .contact-section, .svc-hub, .areas-hub, .projects-hub, .whats-included, .owner-bio { padding-top: 90px; padding-bottom: 90px; }
    /* the "All Services" button can't shrink, so let it drop to its own line
       rather than push the section past the viewport on narrow phones */
    .services__header { flex-wrap: wrap; gap: 18px; }
    /* Marquee keeps sliding on phones, just tighter and a touch quicker */
    .proof-marquee__track { animation-duration: 30s; }
    .proof-stat { padding: 0 20px; gap: 8px; }
    .proof-stat__value { font-size: 22px; }
    .proof-stat__label { font-size: 10px; letter-spacing: 0.1em; }
    .review-card { flex-basis: 100%; }
    .reviews__dots { display: flex; }
    .footer__grid { grid-template-columns: 1fr; }
    /* Hero: tighter vertical rhythm, headline scales with the viewport, form full-width */
    .hero__inner { padding-top: 116px; padding-bottom: 140px; gap: 34px; }
    .hero__eyebrow { font-size: 12px; letter-spacing: 0.16em; margin-bottom: 12px; }
    .hero__headline { margin-bottom: 8px; }
    .hero__tagline { margin: 0 0 26px; }
    .hero__sub { font-size: 16px; margin-bottom: 28px; }
    .hero__social-proof { margin-bottom: 22px; }
    .projects__track .project-card { flex-basis: 100%; }
    .hero__actions, .intro__actions { flex-direction: column; }
    .hero__actions .btn, .intro__actions .btn { width: 100%; }
    /* Estimate form becomes a button + centered modal so the hero stays clean */
    .hero__form-wrap {
        position: fixed;
        inset: 0;
        z-index: 200;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.28s var(--ease), visibility 0.28s;
    }
    .hero__form-wrap.is-open { opacity: 1; visibility: visible; }
    .hero__form-backdrop {
        display: block;
        position: absolute;
        inset: 0;
        background: rgba(10,12,16,0.62);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }
    .hero__form {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 440px;
        max-height: 88vh;
        overflow-y: auto;
        padding: 28px;
        gap: 12px;
    }
    .hero__form h3 { font-size: 22px; }
    .hero__form-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
        font-size: 26px;
        line-height: 1;
        color: rgba(255,255,255,0.7);
        background: rgba(255,255,255,0.1);
        transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
    }
    .hero__form-close:hover { color: var(--white); background: rgba(255,255,255,0.2); }
    .resources .areas__map iframe { height: 260px; }
    .resources__grid { margin-bottom: 60px; }
    .faq::before { top: -36px; height: 37px; }
    .final-cta { padding: 90px 0; }
    .contact-form { padding: 24px; }
    .resource-card { min-height: 210px; }
}

@media (prefers-reduced-motion: reduce) {
    .process[data-process] { height: auto; }
    .process__sticky { position: static; height: auto; display: block; padding: 110px 0; }
    .process .process-step { opacity: 1; transform: none; }
}

/* ===== MOBILE TOUCH TARGETS =====
   Small controls keep their visual size but get a finger-sized hit area. */
@media (max-width: 900px) {
    .projects__dot, .reviews__dot { position: relative; }
    .projects__dot::after, .reviews__dot::after {
        content: '';
        position: absolute;
        inset: -13px -8px;
    }
    .review-card__more { padding: 9px 0; }
    .footer__col ul a,
    .footer__col > a { display: inline-block; padding: 7px 0; }
    .areas__contact-list a { display: inline-block; padding: 6px 0; }
    .footer__powered a { display: inline-block; padding: 8px 0; }
    /* iOS zooms the page when a font under 16px gets focus */
    .hero__form input, .hero__form textarea,
    .lead-form input, .lead-form textarea, .lead-form select { font-size: 16px; }
}

/* ===== OUR TEAM (about page) ===== */
.team { padding: 100px 0; background: var(--bg-alt); }
.team .section-header { max-width: 760px; }

.team__values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 56px;
}
.team-value {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 26px;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}
.team-value:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.team-value__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    font-size: 21px;
    color: var(--accent);
    background: var(--accent-soft);
}
.team-value h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.team-value p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* Jobsite gallery - two wide shots anchor the grid, four square ones fill it */
.team__gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.team-shot {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.team-shot--wide { grid-column: span 2; }
.team-shot img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.team-shot--wide img { aspect-ratio: 16 / 9; }
.team-shot:hover img { transform: scale(1.05); }
.team-shot figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 18px 14px;
    background: linear-gradient(to top, rgba(10,12,16,0.88), transparent);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

@media (max-width: 1024px) {
    .team__values { grid-template-columns: 1fr; }
    .team__gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .team-shot--wide { grid-column: span 2; }
}
@media (max-width: 720px) {
    .team { padding: 76px 0; }
    .team__gallery { grid-template-columns: 1fr; }
    .team-shot--wide { grid-column: span 1; }
    .team-shot img, .team-shot--wide img { aspect-ratio: 4 / 3; }
}

/* Owner headshot placeholder until a real photo is supplied */
.owner-bio__fallback {
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 4 / 5;
    background: linear-gradient(150deg, var(--dark-alt) 0%, var(--dark) 100%);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(56px, 9vw, 92px);
    letter-spacing: 0.02em;
}

/* ===== SERVICE PAGE GALLERY =====
   Shows every photo for the service. The first six are visible and the rest are
   one click away, so the page stays short no matter how many photos arrive. */
.svc-gallery { padding: 96px 0; background: var(--bg-alt); }
.svc-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.svc-shot {
    position: relative;
    display: block;
    padding: 0;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    cursor: zoom-in;
    background: var(--dark-card);
}
.svc-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.svc-shot:hover img { transform: scale(1.06); }
.svc-shot.is-extra { display: none; }
.svc-gallery.is-expanded .svc-shot.is-extra { display: block; }
.svc-gallery__more { display: flex; justify-content: center; margin-top: 32px; }
.svc-gallery.is-expanded .svc-gallery__more { display: none; }

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: rgba(8,10,14,0.92);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s var(--ease), visibility 0.25s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 30px 90px rgba(0,0,0,0.6);
}
.lightbox__btn {
    position: absolute;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 22px;
    line-height: 1;
    transition: background-color 0.2s var(--ease);
}
.lightbox__btn:hover { background: rgba(255,255,255,0.22); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__count {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 12.5px;
    letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
    .svc-gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
    .svc-gallery { padding: 72px 0; }
    .svc-gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .lightbox { padding: 16px; }
    .lightbox__btn { width: 42px; height: 42px; }
    .lightbox__prev { left: 8px; }
    .lightbox__next { right: 8px; }
}

/* ===== BEFORE & AFTER PAGE ===== */
.ba-page { padding: 90px 0 100px; background: var(--bg-alt); }
/* Pairs come in portrait and landscape, so a strict grid leaves big gaps under
   the short ones. Columns let each item keep its own height and pack tightly. */
.ba-page__grid {
    columns: 2;
    column-gap: 34px;
}
.ba-item {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 40px;
}
.ba-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
/* Tall pairs would lose most of the room in a 4:3 frame, so they get their own.
   Capped in the service intro column so the photo doesn't tower over the copy. */
.ba-slider--portrait { aspect-ratio: 3 / 4; }
.service-intro__media .ba-slider--portrait {
    max-width: 420px;
    margin-inline: auto;
}

@media (max-width: 860px) {
    /* a 3:4 slider eats a whole phone screen; 4:5 still reads as portrait */
    .ba-slider--portrait { aspect-ratio: 4 / 5; }
}

/* ===== HONEYPOT =====
   Decoy fields for form bots. Positioned off-canvas rather than
   type="hidden" - most form-filling bots skip hidden inputs, which would
   defeat the point. tabindex="-1" and aria-hidden keep keyboard and screen
   reader users out of them. */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* ===== HERO WORDMARK =====
   Matches the neon lockup the client uses: BUILT and BOUGHT in blue, NOT in
   red, CONCEPTS in white, set in caps with the tracking open. The glow is kept
   light - enough to read as neon without softening the letterforms. */
.hero__headline--wordmark {
    text-transform: uppercase;
    letter-spacing: 0.015em;
    font-weight: 800;
}
.wm-blue, .wm-red, .wm-white { white-space: nowrap; }
.wm-blue {
    color: #35A9F0;
    text-shadow: 0 0 18px rgba(53,169,240,0.55), 0 0 42px rgba(53,169,240,0.3);
}
.wm-red {
    color: #F5453B;
    text-shadow: 0 0 18px rgba(245,69,59,0.55), 0 0 42px rgba(245,69,59,0.3);
}
.wm-white {
    color: #fff;
    text-shadow: 0 0 18px rgba(255,255,255,0.45), 0 0 40px rgba(190,225,255,0.25);
}



/* ===== LIFETIME WARRANTY BAND =====
   The client's warranty poster rebuilt as live text over the skyline. Real text
   rather than the flat artwork so it stays legible on a phone, is readable by
   search engines and screen readers, and the wording can be edited later. */
.warranty-band { position: relative; overflow: hidden; background: #02040A; }
.warranty-band__bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center bottom;
    filter: brightness(0.85);
}
.warranty-band__overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 42%, rgba(2,4,10,0.62) 0%, rgba(2,4,10,0.86) 58%, rgba(2,4,10,0.95) 100%);
}
.warranty-band__inner {
    position: relative; z-index: 2;
    max-width: 900px;
    padding-top: clamp(56px, 7vw, 96px);
    padding-bottom: clamp(44px, 6vw, 76px);
    text-align: center;
    color: rgba(255,255,255,0.9);
}
.warranty-band__inner p { margin: 0 auto 14px; max-width: 720px; font-size: clamp(14.5px, 1.5vw, 16px); line-height: 1.65; }

/* --- the neon lockup --- */
.neon-mark { display: block; margin-bottom: clamp(18px, 2.6vw, 28px); }
.neon-mark__top {
    display: block;
    font-family: var(--font-display);
    font-weight: 800; text-transform: uppercase;
    font-size: clamp(24px, 4.4vw, 52px);
    letter-spacing: 0.02em; line-height: 1.05;
    white-space: nowrap;
}
.neon-mark__rule {
    display: flex; align-items: center; justify-content: center;
    gap: clamp(10px, 2vw, 22px);
    margin-top: 6px;
    font-family: var(--font-display);
    font-weight: 700; text-transform: uppercase; color: #fff;
    font-size: clamp(13px, 1.9vw, 23px);
    letter-spacing: clamp(0.16em, 0.5vw, 0.34em);
    text-shadow: 0 0 16px rgba(255,255,255,0.4);
}
.neon-mark__rule::before,
.neon-mark__rule::after {
    content: ""; flex: 1 1 0; max-width: 170px; height: 2px;
    background: #F5453B; box-shadow: 0 0 12px rgba(245,69,59,0.75);
}

/* --- LIFETIME / WARRANTY, outlined like neon tube --- */
.neon-headline {
    margin: 0 0 clamp(18px, 2.6vw, 30px);
    font-family: var(--font-display);
    font-weight: 800; text-transform: uppercase;
    line-height: 0.98; letter-spacing: 0.01em;
    font-size: clamp(46px, 11vw, 118px);
}
.neon-headline span { display: block; white-space: nowrap; }
.neon-headline__white {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.96);
    text-shadow: 0 0 26px rgba(255,255,255,0.5), 0 0 60px rgba(150,205,255,0.28);
}
.neon-headline__red {
    color: transparent;
    -webkit-text-stroke: 2px #F5453B;
    text-shadow: 0 0 26px rgba(245,69,59,0.55), 0 0 62px rgba(245,69,59,0.3);
}
/* text-stroke is near-universal, but never leave the words invisible without it */
@supports not ((-webkit-text-stroke: 1px #000)) {
    .neon-headline__white { color: #fff; }
    .neon-headline__red { color: #F5453B; }
}

.warranty-band__lead { font-weight: 700; color: #fff; font-size: clamp(15px, 1.7vw, 18px) !important; }
.warranty-band__close strong { color: #fff; }
.warranty-band__strap {
    display: flex; align-items: center; justify-content: center;
    gap: clamp(10px, 2vw, 20px);
    margin: clamp(24px, 3.4vw, 38px) auto 0 !important;
    max-width: 760px !important;
    font-family: var(--font-display);
    font-weight: 700; text-transform: uppercase; color: #fff;
    font-size: clamp(11px, 1.4vw, 15px) !important;
    letter-spacing: clamp(0.1em, 0.35vw, 0.2em);
}
.warranty-band__strap::before,
.warranty-band__strap::after {
    content: ""; flex: 1 1 0; height: 2px;
    background: #35A9F0; box-shadow: 0 0 12px rgba(53,169,240,0.7);
}
.warranty-band__fine {
    margin-top: 22px !important;
    font-size: 12px !important; line-height: 1.6;
    color: rgba(255,255,255,0.42);
}

@media (max-width: 560px) {
    .neon-headline { font-size: clamp(38px, 13vw, 60px); }
    .neon-headline__white, .neon-headline__red { -webkit-text-stroke-width: 1.5px; }
    .neon-mark__rule::before, .neon-mark__rule::after { max-width: 60px; }
}

/* ===== HERO LOCKUP (centred, matching the brand poster) =====
   The estimate form moved out of the hero into its own band below, so the hero
   is a single centred column: wordmark, tagline, buttons, strapline.

   .hero__content is a container-query container, and auto margins on such an
   element make it shrink-to-fit - which resolves to ZERO under size containment
   and collapses the whole hero. So it stays full width and the children are
   centred instead. */
.hero--night .hero__inner { grid-template-columns: 1fr; }
.hero--night .hero__content {
    max-width: none;
    text-align: center;
}
.hero--night .hero__tagline { max-width: 820px; margin-inline: auto; }
.hero--night .hero__social-proof,
.hero--night .hero__actions { justify-content: center; }

.hero__headline--wordmark { margin-bottom: 12px; }
.hero__wm-top {
    display: block;
    white-space: nowrap;
    line-height: 1.02;
}
/* "CONCEPTS" on its own line between two red rules, as in the poster */
.hero__wm-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2vw, 24px);
    margin-top: 8px;
    color: #fff;
    font-size: 0.42em;
    letter-spacing: clamp(0.14em, 0.6vw, 0.36em);
    text-shadow: 0 0 18px rgba(255,255,255,0.4);
}
.hero__wm-rule::before,
.hero__wm-rule::after {
    content: "";
    flex: 1 1 0;
    max-width: 190px;
    height: 2px;
    background: #F5453B;
    box-shadow: 0 0 12px rgba(245,69,59,0.75);
}

.hero__strap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2vw, 22px);
    max-width: 720px;
    margin: clamp(14px, 1.8vw, 22px) auto 0;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    font-size: clamp(11px, 1.3vw, 15px);
    letter-spacing: clamp(0.1em, 0.35vw, 0.2em);
}
.hero__strap::before,
.hero__strap::after {
    content: "";
    flex: 1 1 0;
    height: 2px;
    background: #35A9F0;
    box-shadow: 0 0 12px rgba(53,169,240,0.7);
}

/* the rating badge sits between the buttons and the strapline */
.hero--night .hero__social-proof { margin: clamp(62px, 8vw, 104px) 0 0; }

/* ===== ESTIMATE CARD =====
   A single white row straddling the bottom edge of the hero. The fields sit on
   one line on desktop and stack on narrow screens. */
.lead-band { background: var(--bg); padding: 0 0 clamp(40px, 5vw, 64px); }
.lead-card {
    position: relative;
    z-index: 4;
    margin-top: clamp(-40px, -4vw, -72px);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(10,14,22,0.22);
    padding: clamp(22px, 2.6vw, 34px) clamp(20px, 2.6vw, 36px);
}
.lead-card__title {
    font-size: clamp(21px, 2.6vw, 32px);
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.lead-card__sub { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }

.lead-card__form {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
    gap: 12px;
    align-items: stretch;
}
.lead-card__form input {
    width: 100%;
    padding: 14px 16px;
    font: inherit;
    font-size: 15px;
    color: var(--dark);
    background: var(--white);
    border: 1.5px solid rgba(16,20,28,0.22);
    border-radius: 10px;
    transition: var(--transition);
}
.lead-card__form input::placeholder { color: rgba(16,20,28,0.45); }
.lead-card__form input:hover { border-color: rgba(16,20,28,0.4); }
.lead-card__form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(217,54,74,0.16);
}
.lead-card__submit {
    padding-inline: clamp(24px, 3vw, 40px);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    white-space: nowrap;
}

/* screen-reader-only labels: every field is placeholder-labelled visually */
.sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (max-width: 1100px) {
    .lead-card__form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lead-card__submit { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .lead-card { margin-top: -28px; }
    .lead-card__form { grid-template-columns: 1fr; }
}

/* ===== NAV LOGO TAGLINE =====
   "Lifetime Warranty!" sits directly under the logo. The badge steps down from
   68px so the two-line stack still clears the fixed 84px bar. */
.nav__logo {
    flex-direction: column;
    align-items: center;
    gap: 1px;
}
.nav__logo .nav__logo-badge { height: 54px; }
.nav__logo-warranty {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(9.5px, 1.1vw, 12px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #F5453B;
    white-space: nowrap;
    line-height: 1;
    text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}
.nav.is-scrolled .nav__logo-warranty { text-shadow: none; }

@media (max-width: 720px) {
    .nav__logo .nav__logo-badge { height: 46px; max-width: 130px; }
    .nav__logo-warranty { font-size: 9.5px; letter-spacing: 0.06em; }
}

/* the skyline was reading almost black behind the warranty text - let more through */
.warranty-band__bg { filter: brightness(1.05) saturate(1.05); }
.warranty-band__overlay {
    background: radial-gradient(ellipse at 50% 42%,
        rgba(2,4,10,0.34) 0%,
        rgba(2,4,10,0.62) 58%,
        rgba(2,4,10,0.8) 100%);
}

/* subtext between the tagline and the buttons in the centred hero */
.hero--night .hero__sub {
    max-width: 660px;
    margin: 14px auto clamp(26px, 3vw, 36px);
    font-size: clamp(15px, 1.6vw, 18px);
    color: rgba(255,255,255,0.9);
    text-wrap: balance;
}

@media (max-width: 720px) {
    /* phones have spare hero height below the buttons - drop the review badge
       and the strapline toward the bottom of the image rather than leaving a gap */
    /* vh, not vw: what matters is the height left under the buttons, so short
       phones keep clear of the trust marquee at the bottom of the hero */
    .hero--night .hero__social-proof { margin-top: clamp(90px, 21vh, 210px); }
    .hero__strap { margin-top: clamp(18px, 4vw, 26px); }
}

/* ===== NAV LOGO SIZE =====
   Bigger mark. The bar grows with it on desktop so the two-line logo block
   still has clearance; phones keep the 84px bar and a smaller badge. */
@media (min-width: 721px) {
    .nav { height: 108px; }
    .nav__logo .nav__logo-badge { height: 82px; }
    .nav__logo-warranty { font-size: 13.5px; }
    /* the tagline and subtext sit a little lower under the lockup */
    .hero--night .hero__tagline { margin-top: 20px; }
    .hero--night .hero__sub { margin-top: 20px; }
}
@media (max-width: 720px) {
    .nav__logo .nav__logo-badge { height: 58px; max-width: 165px; }
}

@media (max-width: 720px) {
    /* The hero was one 177px hole with everything else pinched at 12-26px.
       The content is vertically centred, so shrinking that gap hands the space
       back to the top and bottom on its own; the rest is evened out by hand. */
    .hero--night .hero__social-proof { margin-top: clamp(60px, 12vh, 120px); }
    .hero--night .hero__headline--wordmark { margin-bottom: 14px; }
    .hero--night .hero__tagline { margin-bottom: 0; }
    .hero--night .hero__sub { margin-top: 22px; margin-bottom: 34px; }
    .hero__strap { margin-top: 22px; }
}

@media (min-width: 721px) {
    /* Push further into the skyline on desktop. .hero already clips (the bg is
       absolutely positioned and inset), so scaling the image can't spill. */
    .hero--night { overflow: hidden; }
    .hero--night .hero__bg {
        transform: scale(1.04);
        transform-origin: 50% 62%;   /* bias down so the city, not empty sky, fills the frame */
    }
}
