/* ===== 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: #000000;
    --accent-dark: #000000;
    --accent-2: #ffffff;
    --accent-2-dark: #d1d1d1;
    --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;
}

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

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;
    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 {
    height: 54px;
    max-width: 210px;
    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;
    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); }
.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. */
.hero__form {
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 26px;
    display: grid;
    gap: 11px;
}
.hero__form h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.015em; }
.hero__form > p { color: var(--muted); font-size: 13.5px; line-height: 1.45; margin-top: -6px; margin-bottom: 2px; }
.hero__form label { display: grid; gap: 5px; }
.hero__form label > span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.hero__form input,
.hero__form textarea {
    width: 100%;
    border: 1px solid var(--border);
    padding: 11px 14px;
    font: inherit;
    font-size: 14.5px;
    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);
}
.hero__form textarea { resize: vertical; min-height: 58px; }
.hero__form input:hover,
.hero__form textarea:hover { border-color: rgba(16,20,28,0.18); }
.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: var(--white);
    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(40px, 6.8vw, 78px);
    letter-spacing: -0.025em;
    margin-bottom: 22px;
    text-wrap: balance;
}
.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 ===== */
.proof-stats {
    position: relative;
    z-index: 5;
    background: transparent;
    padding: 0;
    margin-top: -88px;
}
.proof-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.proof-stat {
    padding: 40px 30px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background-color 0.3s var(--ease);
}
.proof-stat:last-child { border-right: none; }
.proof-stat:hover { background: var(--bg-alt); }
.proof-stat__value {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(34px, 4.4vw, 48px);
    color: var(--accent);
    line-height: 1.05;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}
.proof-stat__label {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}

/* ===== 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:nth-child(2n) .service-card__face .service-card__arrow { background: var(--accent-2); }
.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: center; }
.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__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 34px;
}
.about-stat {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    transition: var(--transition);
}
.about-stat:hover { background: var(--white); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.about-stat__value {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 28px;
    color: var(--accent);
    line-height: 1.15;
}
.about-stat__label { color: var(--muted); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

.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; }

/* ===== 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); }
.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 { padding: 110px 0; background: var(--bg-alt); }
.process__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.process-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}
.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 { 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; }
.resource-panels {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 44px;
    align-items: start;
}
.resources .process,
.resources .areas {
    padding: 0;
    background: transparent;
}
.resources .section-header { text-align: left; margin: 0 0 30px; }
.resources .process__grid { gap: 22px; }
.resources .process-step { padding: 24px; }
.resources .process-step__num { font-size: 34px; }
.resources .areas__grid { justify-content: flex-start; }
.resources .areas__map iframe { height: 300px; }

/* ===== 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; }

/* ===== 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(230px, 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); }
    .proof-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .proof-stat:nth-child(2) { border-right: none; }
    .proof-stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
    .resource-panels, .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__media { order: -1; }
    .hero__inner { grid-template-columns: 1fr; gap: 40px; padding-top: 128px; padding-bottom: 128px; }
    .hero__form { max-width: 460px; }
    .proof-stats { margin-top: -64px; }
}

@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; }
    .areas-hub__grid { grid-template-columns: 1fr 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; }
    /* Stats stay a compact 2x2 card on phones (not a tall single stack) */
    .proof-stats__grid { grid-template-columns: 1fr 1fr; }
    .proof-stat { padding: 26px 16px; border-right: none; border-bottom: none; }
    .proof-stat:nth-child(odd) { border-right: 1px solid var(--border); }
    .proof-stat:nth-child(1), .proof-stat:nth-child(2) { border-bottom: 1px solid var(--border); }
    .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: 108px; gap: 34px; }
    .hero__eyebrow { font-size: 12px; letter-spacing: 0.16em; margin-bottom: 12px; }
    .hero__headline { font-size: clamp(34px, 8.6vw, 46px); margin-bottom: 16px; }
    .hero__sub { font-size: 16px; margin-bottom: 28px; }
    .hero__social-proof { margin-bottom: 22px; }
    .proof-stats { margin-top: -48px; }
    .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__cta--desktop { display: none; }
    .hero__form-trigger { display: inline-flex; }
    .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: var(--muted);
        background: var(--bg-alt);
        transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
    }
    .hero__form-close:hover { color: var(--text); background: var(--border); }
    .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; }
}
