/* =============================================================================
   YOUR BUILDER — Master Stylesheet
   -----------------------------------------------------------------------------
   One centralized, token-driven stylesheet. To re-theme the entire site, edit
   the design tokens in section 1 (:root). Sharp edges only (--radius: 0); depth
   comes from layered shadows and the stacked-offset block (.stack).

   TABLE OF CONTENTS
     1.  Design tokens (:root)
     2.  Fonts (@font-face)
     3.  Reset & base
     4.  Typography
     5.  Layout (container, section, grid)
     6.  Buttons
     7.  Header & navigation
     8.  Hero & page hero
     9.  Section header / eyebrow
     10. Cards: services
     11. Feature rows (alternating)
     12. Cards: projects + gallery + lightbox
     13. Process
     14. Stats
     15. Brand strip
     16. Testimonials
     17. Team
     18. Service area
     19. Contact & forms
     20. CTA band
     21. Footer
     22. Utilities
     23. Responsive
   ============================================================================= */


/* 1. DESIGN TOKENS =========================================================== */
:root {
    /* Brand */
    --red: #bd222e;
    --red-600: #a51d28;
    --red-700: #8e1a23;
    --ink: #141414;
    --black: #0e0e0e;
    --white: #ffffff;

    /* Neutrals (from brand color-guide) */
    --charcoal: #494949;
    --gray-700: #797979;
    --gray-500: #bdbdbd;
    --gray-300: #e4e4e4;
    --gray-200: #ededed;
    --gray-100: #f2f2f2;
    --gray-50: #f7f7f7;
    --border: #cfcfcf;

    /* Semantic */
    --bg: #ffffff;
    --bg-alt: #f7f7f7;
    --bg-dark: #141414;
    --text: #1a1a1a;
    --text-muted: #6c6c6c;
    --text-on-dark: #f2f2f2;
    --accent: var(--red);

    /* Typography */
    --font-display: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --fs-hero: clamp(2.05rem, 7.5vw, 4.5rem);
    --fs-h1: clamp(2.25rem, 4.5vw, 3.4rem);
    --fs-h2: clamp(1.85rem, 3.2vw, 2.6rem);
    --fs-h3: clamp(1.2rem, 1.7vw, 1.45rem);
    --fs-lead: clamp(1.05rem, 1.4vw, 1.2rem);
    --fs-body: 1.0625rem;
    --fs-small: 0.875rem;
    --lh-tight: 1.04;
    --lh-snug: 1.18;
    --lh-body: 1.65;
    --tracking-eyebrow: 0.2em;
    --tracking-btn: 0.06em;

    /* Spacing (8pt) */
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 3rem;
    --space-6: 4rem;
    --space-7: 6rem;
    --space-8: 8rem;
    --section-y: clamp(3.75rem, 7vw, 6.5rem);

    /* Layout */
    --container: 1280px;
    --container-narrow: 880px;
    --gutter: clamp(1.25rem, 4vw, 3rem);
    --header-h: 108px;

    /* Geometry & depth — sharp corners, layered shadows */
    --radius: 0;
    --shadow-1: 0 1px 2px rgba(20, 20, 20, .06), 0 2px 4px rgba(20, 20, 20, .04);
    --shadow-2: 0 4px 8px rgba(20, 20, 20, .08), 0 8px 24px rgba(20, 20, 20, .06);
    --shadow-3: 0 12px 28px rgba(20, 20, 20, .12), 0 24px 60px rgba(20, 20, 20, .10);
    --offset: 12px;

    /* Motion */
    --ease: cubic-bezier(.2, .6, .2, 1);
    --dur: .25s;
}


/* 2. FONTS =================================================================== */
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("/assets/fonts/inter-400.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("/assets/fonts/inter-500.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("/assets/fonts/inter-600.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 600; font-display: swap; src: url("/assets/fonts/archivo-600.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 700; font-display: swap; src: url("/assets/fonts/archivo-700.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 800; font-display: swap; src: url("/assets/fonts/archivo-800.woff2") format("woff2"); }


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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
img { border-style: none; }

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font: inherit; color: inherit; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

::selection { background: var(--red); color: #fff; }

.skip-link {
    position: absolute; left: 0; top: -100%;
    background: var(--ink); color: #fff; padding: .75rem 1.25rem; z-index: 200;
    font-weight: 600;
}
.skip-link:focus { top: 0; }


/* 4. TYPOGRAPHY ============================================================== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: var(--lh-snug); letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; }
p { max-width: 68ch; }
strong { font-weight: 600; }

.lead { font-size: var(--fs-lead); line-height: 1.6; color: var(--charcoal); max-width: 62ch; }


/* 5. LAYOUT ================================================================== */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--gray-200); }
.section--dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

body.subpage main { padding-top: var(--header-h); }

/* Two-column intro (heading left, body right) */
.intro-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }

/* Turnkey capability ribbon (under hero) */
.cap-section { background: var(--ink); border-top: 3px solid var(--red); padding-block: clamp(1.25rem, 2.5vw, 1.75rem); }
.cap-ribbon { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(.75rem, 2.5vw, 2.5rem); }
.cap-ribbon li { position: relative; font-family: var(--font-display); font-weight: 700; font-size: clamp(.78rem, 1.3vw, .95rem); letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .92); padding-left: clamp(.75rem, 2.5vw, 2.5rem); }
.cap-ribbon li:first-child { padding-left: 0; }
.cap-ribbon li:not(:first-child)::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; background: var(--red); }


/* 6. BUTTONS ================================================================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .55em;
    padding: .95rem 1.7rem;
    font-family: var(--font-display); font-weight: 700; font-size: .9rem;
    letter-spacing: var(--tracking-btn); text-transform: uppercase;
    border: 2px solid var(--ink); background: var(--ink); color: #fff;
    box-shadow: 0 3px 8px rgba(20, 20, 20, .14);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
                background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--red); border-color: var(--red); }
.btn--primary:hover { background: var(--red-600); border-color: var(--red-600); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .85); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--sm { padding: .6rem 1.05rem; font-size: .8rem; }
.btn--block { width: 100%; }

.link-arrow {
    display: inline-flex; align-items: center; gap: .5em;
    font-family: var(--font-display); font-weight: 700; font-size: .85rem;
    letter-spacing: var(--tracking-btn); text-transform: uppercase; color: var(--red);
}
.link-arrow::after { content: ""; width: 1.4em; height: 2px; background: currentColor; transition: width var(--dur) var(--ease); }
.link-arrow:hover::after { width: 2.2em; }


/* 7. HEADER & NAVIGATION (centered logo + nav) ============================== */
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 100; padding-block: 1.1rem;
    border-top: 3px solid var(--red);
    background: linear-gradient(180deg, rgba(14, 14, 14, .6), rgba(14, 14, 14, 0));
    transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
}
.site-header__inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: .85rem; }
.site-header__brand { display: inline-flex; align-items: center; }
.site-header__logo { height: 48px; width: auto; transition: height var(--dur) var(--ease); }
.site-header__logo--dark { display: none; }

/* Solid state: scrolled (home) or any subpage */
.site-header.is-scrolled,
body.subpage .site-header { padding-block: .7rem; background: rgba(255, 255, 255, .97); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); box-shadow: var(--shadow-2); border-bottom: 1px solid var(--gray-200); }
.site-header.is-scrolled .site-header__logo,
body.subpage .site-header__logo { height: 40px; }
.site-header.is-scrolled .site-header__logo--light,
body.subpage .site-header__logo--light { display: none; }
.site-header.is-scrolled .site-header__logo--dark,
body.subpage .site-header__logo--dark { display: block; }

.site-nav__list { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(1.25rem, 3vw, 2.75rem); }
.site-nav__list a {
    font-family: var(--font-display); font-weight: 700; font-size: .82rem;
    letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .92); padding-block: .3rem; position: relative;
    transition: color var(--dur) var(--ease);
}
.site-nav__list a::after {
    content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: -3px; width: 0; height: 2px;
    background: var(--red); transition: width var(--dur) var(--ease);
}
.site-nav__list a:hover, .site-nav__list a[aria-current="page"] { color: #fff; }
.site-nav__list a:hover::after,
.site-nav__list a[aria-current="page"]::after { width: 100%; }
.site-header.is-scrolled .site-nav__list a,
body.subpage .site-nav__list a { color: var(--charcoal); }
.site-header.is-scrolled .site-nav__list a:hover, .site-header.is-scrolled .site-nav__list a[aria-current="page"],
body.subpage .site-nav__list a:hover, body.subpage .site-nav__list a[aria-current="page"] { color: var(--ink); }

/* Navbar call CTA — sharp red button (matches .btn--primary), stays white on all header states */
.site-nav__list .site-nav__phone a {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .55rem 1rem; background: var(--red); color: #fff;
    font-family: var(--font-display); font-weight: 700; font-size: .82rem; letter-spacing: .06em;
    border: 1px solid var(--red); white-space: nowrap;
    transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-nav__list .site-nav__phone a::after { display: none; }
.site-header.is-scrolled .site-nav__list .site-nav__phone a,
body.subpage .site-nav__list .site-nav__phone a { color: #fff; }
.site-nav__list .site-nav__phone a:hover { background: var(--red-600); border-color: var(--red-600); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-2); }
.site-nav__phone svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* Toggle (mobile only) — top-right of the centered header */
.site-nav__toggle { display: none; width: 44px; height: 44px; position: absolute; top: -4px; right: 0; z-index: 110; }
.site-nav__bars, .site-nav__bars::before, .site-nav__bars::after {
    position: absolute; left: 10px; width: 24px; height: 2px; background: currentColor;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.site-nav__bars { top: 21px; color: #fff; }
.site-nav__bars::before { content: ""; top: -7px; left: 0; }
.site-nav__bars::after { content: ""; top: 7px; left: 0; }
.site-header.is-scrolled .site-nav__bars,
body.subpage .site-nav__bars { color: var(--ink); }
.site-nav.is-open .site-nav__bars { background: transparent; }
.site-nav.is-open .site-nav__bars::before { transform: translateY(7px) rotate(45deg); }
.site-nav.is-open .site-nav__bars::after { transform: translateY(-7px) rotate(-45deg); }


/* 8. HERO & PAGE HERO ======================================================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform-origin: center; animation: heroZoom 20s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(ellipse at 50% 45%, rgba(10, 10, 12, .3) 0%, rgba(10, 10, 12, .55) 60%, rgba(10, 10, 12, .78) 100%),
        linear-gradient(180deg, rgba(10, 10, 12, .5) 0%, rgba(10, 10, 12, .2) 38%, rgba(10, 10, 12, .72) 100%);
}
.hero__inner { padding-block: calc(var(--header-h) + clamp(1.5rem, 4vh, 3rem)) clamp(4rem, 9vh, 7rem); max-width: 60rem; margin-inline: auto; }
.hero .eyebrow { justify-content: center; color: #fff; }
.hero__title { color: #fff; font-size: var(--fs-hero); line-height: 1; text-transform: uppercase; letter-spacing: -.02em; text-wrap: balance; margin-top: var(--space-2); text-shadow: 0 2px 30px rgba(0, 0, 0, .4); }
.hero__title .accent { color: var(--red); }
.hero__title .hero-line { white-space: nowrap; }
.hero__lead { margin: var(--space-3) auto 0; font-size: var(--fs-lead); color: rgba(255, 255, 255, .92); max-width: 48ch; }
.hero__actions { margin-top: var(--space-5); display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; }
.hero__scroll { position: absolute; left: 50%; bottom: clamp(1.5rem, 4vh, 2.5rem); transform: translateX(-50%); width: 44px; height: 44px; display: grid; place-items: center; border: 2px solid rgba(255, 255, 255, .5); color: #fff; z-index: 2; animation: heroBob 2s ease-in-out infinite; transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.hero__scroll:hover { background: var(--red); border-color: var(--red); }
.hero__scroll::before { content: ""; width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-2px) rotate(45deg); }
@keyframes heroBob { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
@media (prefers-reduced-motion: reduce) { .hero__bg img, .hero__scroll { animation: none; } }

/* Full-bleed image hero (about + other pages) */
.image-hero { position: relative; min-height: min(72vh, 640px); display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; }
.image-hero__bg { position: absolute; inset: 0; z-index: -2; }
.image-hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.image-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10, 10, 12, .55), rgba(10, 10, 12, .72)); }
.image-hero__inner { position: relative; z-index: 1; padding-block: calc(var(--header-h) + clamp(1.5rem, 4vh, 3rem)) clamp(2.5rem, 5vh, 4rem); }
.image-hero .eyebrow { justify-content: center; color: #fff; }
.image-hero h1 { color: #fff; text-transform: uppercase; font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -.01em; margin-top: var(--space-2); text-wrap: balance; }
.image-hero__lead { margin: var(--space-3) auto 0; max-width: 52ch; color: rgba(255, 255, 255, .88); }

/* Compact page hero for subpages */
.page-hero { position: relative; background: var(--ink); color: #fff; padding-block: clamp(3rem, 7vw, 5.5rem); overflow: hidden; }
.page-hero::before {
    content: ""; position: absolute; inset: 0; opacity: .16; z-index: 0;
    background: var(--page-hero-img, url("/assets/img/feature/blueprint.jpg")) center/cover no-repeat;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; text-transform: uppercase; font-size: clamp(2rem, 3.6vw, 2.9rem); letter-spacing: -.005em; max-width: 22ch; margin-top: var(--space-2); }
.page-hero__lead { margin-top: var(--space-2); color: rgba(255, 255, 255, .82); max-width: 56ch; }
.breadcrumb { display: flex; gap: .5rem; font-size: var(--fs-small); color: rgba(255, 255, 255, .6); margin-bottom: var(--space-3); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: var(--red); }


/* 9. SECTION HEADER / EYEBROW =============================================== */
.eyebrow {
    display: inline-flex; align-items: center; gap: .7em;
    font-family: var(--font-display); font-weight: 700; font-size: .8rem;
    letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--red);
}
.eyebrow::before { content: ""; width: 1.8em; height: 2px; background: var(--red); }
.section--dark .eyebrow { color: #fff; }
.section--dark .eyebrow::before { background: var(--red); }
.hero .eyebrow { color: #fff; }

.section-head { max-width: 60rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head__title { margin-top: var(--space-2); }
.section-head__lead { margin-top: var(--space-2); }


/* 10. CARDS: SERVICES ======================================================= */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
.service-card {
    position: relative; background: #fff; border: 1px solid var(--gray-300); box-shadow: var(--shadow-1);
    padding: clamp(1.5rem, 3vw, 2.25rem); display: flex; flex-direction: column;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.service-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__no { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--gray-700); letter-spacing: .1em; }
.service-card__title { margin-top: var(--space-2); }
.service-card__lead { margin-top: var(--space-2); color: var(--charcoal); }
.service-card__list { margin-top: var(--space-3); display: grid; gap: .5rem; }
.service-card__list li { position: relative; padding-left: 1.5rem; font-size: .95rem; color: var(--charcoal); }
.service-card__list li::before { content: ""; position: absolute; left: 0; top: .62em; width: .45rem; height: .45rem; background: var(--red); }
.service-card__foot { margin-top: auto; padding-top: var(--space-3); }


/* 11. FEATURE ROWS ========================================================== */
.feature-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feature-row + .feature-row { margin-top: clamp(3rem, 7vw, 6rem); }
.feature-row__media { position: relative; }
.feature-row__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-row:nth-child(even) .feature-row__text { order: -1; }
.feature-row__list { margin-top: var(--space-3); display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.5rem; }
.feature-row__list li { position: relative; padding-left: 1.5rem; color: var(--charcoal); }
.feature-row__list li::before { content: ""; position: absolute; left: 0; top: .62em; width: .45rem; height: .45rem; background: var(--red); }
.feature-row__cta { margin-top: var(--space-4); }


/* 12. CARDS: PROJECTS + GALLERY + LIGHTBOX ================================== */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.project-card {
    position: relative; display: block; overflow: hidden; background: var(--ink);
    aspect-ratio: 4 / 3; width: 100%; padding: 0; text-align: left; cursor: pointer;
}
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), opacity var(--dur) var(--ease); }
.project-card[data-category="graphics"] img { object-position: center 32%; }   /* tall signage: show the sign, not the centre */
.project-card:hover img { transform: scale(1.06); opacity: .85; }
.project-card__cap {
    position: absolute; inset: auto 0 0 0; padding: 1.25rem; color: #fff;
    background: linear-gradient(180deg, transparent, rgba(14, 14, 14, .85));
    display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
    transform: translateY(0); transition: background var(--dur) var(--ease);
}
.project-card__tag { font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: rgba(14, 14, 14, .78); padding: .3rem .6rem; transition: background var(--dur) var(--ease); }
.project-card:hover .project-card__tag { background: var(--red); }
.project-card__zoom { width: 2.4rem; height: 2.4rem; border: 2px solid rgba(255, 255, 255, .7); display: grid; place-items: center; flex: none; opacity: 0; transform: translateY(8px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.project-card:hover .project-card__zoom { opacity: 1; transform: translateY(0); }
.project-card__zoom::before, .project-card__zoom::after { content: ""; position: absolute; background: #fff; }
.project-card__zoom::before { width: 14px; height: 2px; }
.project-card__zoom::after { width: 2px; height: 14px; }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.filter-btn {
    font-family: var(--font-display); font-weight: 700; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
    padding: .6rem 1.1rem; border: 2px solid var(--gray-300); color: var(--charcoal);
    transition: all var(--dur) var(--ease);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; display: none; place-items: center; background: rgba(8, 8, 8, .92); padding: var(--gutter); }
.lightbox.is-open { display: grid; }
.lightbox__img { max-width: min(1100px, 92vw); max-height: 86vh; width: auto; object-fit: contain; box-shadow: var(--shadow-3); }
.lightbox__close, .lightbox__nav { position: absolute; color: #fff; width: 56px; height: 56px; display: grid; place-items: center; border: 2px solid rgba(255, 255, 255, .4); font-size: 1.5rem; transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--red); border-color: var(--red); }
.lightbox__close { top: var(--gutter); right: var(--gutter); }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: var(--gutter); }
.lightbox__nav--next { right: var(--gutter); }


/* 13. PROCESS =============================================================== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
.process-step { position: relative; padding-top: var(--space-4); border-top: 3px solid var(--ink); }
.section--dark .process-step { border-color: var(--red); }
.process-step__no { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; line-height: 1; color: var(--red); }
.process-step__title { margin-top: var(--space-2); }
.process-step__text { margin-top: var(--space-1); color: var(--charcoal); font-size: .98rem; }
.section--dark .process-step__text { color: rgba(255, 255, 255, .72); }


/* Values (About page) */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
.value { padding-top: var(--space-3); border-top: 3px solid var(--ink); }
.value__mark { width: 1.6rem; height: 1.6rem; background: var(--red); display: block; margin-bottom: var(--space-3); }
.value__title { font-size: 1.1rem; }
.value__text { margin-top: var(--space-1); color: var(--charcoal); font-size: .98rem; }


/* 14. STATS ================================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.stat { text-align: left; padding-left: var(--space-3); border-left: 3px solid var(--red); }
.stat__value { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; color: var(--ink); }
.section--dark .stat__value { color: #fff; }
.stat__label { margin-top: var(--space-1); font-size: .92rem; color: var(--text-muted); max-width: 16ch; text-wrap: balance; }
.section--dark .stat__label { color: rgba(255, 255, 255, .7); }


/* 15. BRAND STRIP =========================================================== */
.brand-strip { background: var(--gray-50); border-block: 1px solid var(--gray-200); }
.brand-strip__head { text-align: center; color: var(--charcoal); font-family: var(--font-display); font-weight: 700; font-size: .8rem; letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; margin-bottom: var(--space-4); }
.brand-strip__grid { display: grid; grid-template-columns: repeat(7, 1fr); align-items: center; gap: clamp(1.5rem, 3vw, 3rem); }
.brand-strip__grid img { height: 28px; width: 100%; object-fit: contain; filter: brightness(0); opacity: .55; transition: opacity var(--dur) var(--ease); }
.brand-strip__grid a:hover img, .brand-strip__grid li:hover img { opacity: .75; }


/* 16. TESTIMONIALS ========================================================== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
.testimonial { position: relative; background: #fff; border: 1px solid var(--gray-200); box-shadow: var(--shadow-1); padding: clamp(1.75rem, 3vw, 2.25rem); display: flex; flex-direction: column; }
.section--dark .testimonial { background: #1d1d1d; border-color: #2a2a2a; }
.testimonial__quote { font-size: 1.15rem; line-height: 1.55; letter-spacing: -.005em; color: var(--ink); }
.section--dark .testimonial__quote { color: #fff; }
.testimonial__quote::before { content: "\201C"; display: block; font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; line-height: .8; color: var(--red); margin-bottom: .3rem; }
.testimonial__stars { color: var(--red); letter-spacing: .15em; margin-top: var(--space-3); }
.testimonial__name { margin-top: var(--space-2); font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.section--dark .testimonial__name { color: #fff; }
.testimonial__meta { font-size: var(--fs-small); color: var(--text-muted); }


/* 17. TEAM ================================================================== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
.team-card { position: relative; }
.team-card__media { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--gray-200); }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.team-card:hover .team-card__media img { transform: scale(1.05); }
.team-card__body { padding-top: var(--space-2); border-top: 3px solid var(--red); margin-top: -3px; }
.team-card__name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--ink); margin-top: var(--space-2); }
.team-card__role { font-size: .92rem; color: var(--text-muted); }


/* 18. SERVICE AREA ========================================================== */
.area-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.area-grid { display: grid; gap: var(--space-3); }
.area-card { background: #fff; border: 1px solid var(--gray-200); box-shadow: var(--shadow-1); padding: clamp(1.25rem, 2.5vw, 1.75rem); }
.area-card__name { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--ink); text-transform: uppercase; letter-spacing: .02em; }
.area-card__name::before { content: ""; width: .85rem; height: .85rem; background: var(--red); flex: none; }
.area-card__list { margin-top: var(--space-2); display: flex; flex-wrap: wrap; gap: .4rem .5rem; }
.area-card__list li { font-size: .88rem; color: var(--charcoal); background: var(--gray-100); padding: .25rem .6rem; }


/* 19. CONTACT & FORMS ======================================================= */
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-info__block { display: flex; gap: 1rem; padding-block: var(--space-3); border-bottom: 1px solid var(--gray-200); }
.contact-info__block:first-of-type { border-top: 1px solid var(--gray-200); }
.contact-info__icon { flex: none; width: 2.75rem; height: 2.75rem; display: grid; place-items: center; background: var(--ink); color: #fff; }
.contact-info__icon svg { width: 1.25rem; height: 1.25rem; }
.contact-info__label { font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.contact-info__value { font-size: 1.05rem; color: var(--ink); margin-top: .15rem; }
.contact-info__value a:hover { color: var(--red); }

.form { background: #fff; border: 1px solid var(--gray-200); padding: clamp(1.5rem, 3.5vw, 2.5rem); box-shadow: var(--shadow-2); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: var(--space-3); }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--charcoal); }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
    width: 100%; padding: .85rem 1rem; background: #fff;
    border: 2px solid var(--gray-300); transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #fff; }
.field textarea { resize: vertical; min-height: 140px; }
.field--error input, .field--error select, .field--error textarea { border-color: var(--red); }
.field__error { font-size: var(--fs-small); color: var(--red); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__note { font-size: var(--fs-small); color: var(--text-muted); margin-top: var(--space-2); }
.form__submit { margin-top: var(--space-1); }

.form-alert { padding: 1rem 1.25rem; margin-bottom: var(--space-3); border-left: 4px solid; font-size: .95rem; }
.form-alert--error { background: #fdeced; border-color: var(--red); color: var(--red-700); }


/* 20. CTA BAND ============================================================== */
.cta-band { position: relative; background: var(--ink); color: #fff; overflow: hidden; border-bottom: 3px solid var(--red); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(10, 10, 12, .58), rgba(10, 10, 12, .7)), var(--cta-bg) center/cover no-repeat; }
.cta-band__inner { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-4); padding-block: clamp(3rem, 7vw, 5rem); }
.cta-band__title { color: #fff; text-transform: uppercase; max-width: 24ch; text-shadow: 0 2px 18px rgba(0, 0, 0, .45); }
.cta-band__text p { color: rgba(255, 255, 255, .8); margin: var(--space-2) auto 0; max-width: 52ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; }


/* 21. FOOTER ================================================================ */
.site-footer { background: var(--black); color: rgba(255, 255, 255, .7); padding-top: clamp(3rem, 6vw, 4.5rem); }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(2rem, 4vw, 3rem); padding-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.site-footer__brand img { height: 46px; width: auto; }
.site-footer__tagline { margin-top: var(--space-3); max-width: 32ch; }
.site-footer__license { margin-top: var(--space-2); font-size: var(--fs-small); color: rgba(255, 255, 255, .5); }
.site-footer__heading { font-family: var(--font-display); font-weight: 700; font-size: .8rem; letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: #fff; margin-bottom: var(--space-3); }
.site-footer__col ul { display: grid; gap: .65rem; }
.site-footer__col a:hover { color: #fff; }
.site-footer__contact a:hover { color: var(--red); }
.site-footer__bar { border-top: 1px solid rgba(255, 255, 255, .12); }
.site-footer__bar-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-block: var(--space-3); font-size: var(--fs-small); color: rgba(255, 255, 255, .5); }
.site-footer__legal { display: flex; gap: var(--space-3); }
.site-footer__legal a:hover { color: #fff; }

/* Legal pages (privacy / terms) */
.legal h2 { font-size: var(--fs-h3); margin-top: var(--space-5); margin-bottom: var(--space-2); }
.legal p { margin-bottom: var(--space-2); color: var(--charcoal); }
.legal p a { color: var(--red); }
.legal ul { margin: 0 0 var(--space-2) 1.25rem; display: grid; gap: .4rem; }
.legal ul li { list-style: square; color: var(--charcoal); }
.legal ul li::marker { color: var(--red); }
.legal__note { margin-top: var(--space-5); padding-top: var(--space-3); border-top: 1px solid var(--gray-200); font-size: var(--fs-small); color: var(--text-muted); }


/* MODAL — lightbox contact form ============================================ */
.modal { position: fixed; inset: 0; z-index: 400; display: flex; align-items: center; justify-content: center; padding: var(--gutter); opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease; }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__overlay { position: absolute; inset: 0; background: rgba(8, 9, 12, .7); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
.modal__dialog { position: relative; width: 100%; max-width: 660px; max-height: min(94vh, 840px); overflow-y: auto; background: rgba(250, 250, 252, .9); -webkit-backdrop-filter: blur(28px) saturate(1.3); backdrop-filter: blur(28px) saturate(1.3); border: 1px solid rgba(255, 255, 255, .8); box-shadow: var(--shadow-3); opacity: 0; transform: translateY(28px) scale(.96); transition: transform .45s cubic-bezier(.16, 1, .3, 1), opacity .4s ease; }
.modal.is-open .modal__dialog { opacity: 1; transform: none; }
.modal__close { position: absolute; top: .4rem; right: .4rem; width: 3rem; height: 3rem; display: grid; place-items: center; font-size: 1.9rem; line-height: 1; color: var(--charcoal); z-index: 2; transition: color var(--dur) var(--ease), background var(--dur) var(--ease); }
.modal__close:hover { background: var(--gray-100); color: var(--ink); }
.modal__panel { padding: clamp(1.5rem, 3.2vw, 2.4rem); }
.modal__title { margin-top: var(--space-1); font-size: clamp(1.5rem, 3vw, 1.95rem); }
.modal__lead { margin-top: var(--space-1); font-size: .98rem; color: var(--charcoal); }
.modal__form { margin-top: var(--space-3); padding: 0; border: 0; background: transparent; box-shadow: none; }
.modal__form .form__row { gap: var(--space-2); }
.modal__form .field { margin-bottom: var(--space-2); }
.modal__form textarea { min-height: 92px; }
.modal__form .form__note { margin-top: var(--space-1); }
.modal__success { text-align: center; padding-block: var(--space-3); }
.modal__success .value__mark { margin: 0 auto var(--space-3); }
.modal__success .modal__title { margin-top: 0; }
.site-footer__actions { display: flex; flex-direction: column; align-items: flex-start; gap: .6rem; margin-top: var(--space-2); }
.site-footer__actions .btn { width: 100%; max-width: 15rem; }
@media (prefers-reduced-motion: reduce) { .modal__dialog { transform: none; transition: opacity .25s ease; } }


/* CLIENT PORTAL (Buildertrend) ============================================= */
.portal__device { margin-top: clamp(2rem, 4vw, 3rem); text-align: center; }
.portal__device > img { width: min(720px, 100%); height: auto; margin-inline: auto; filter: drop-shadow(0 28px 56px rgba(20, 20, 20, .22)); }
.portal__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: var(--space-4); }
.portal__badges img { height: 46px; width: auto; }
.portal__features { margin-top: clamp(2.5rem, 5vw, 4rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.portal__feature { border-top: 3px solid var(--red); padding-top: var(--space-3); }
.portal__feature-title { font-size: 1.15rem; }
.portal__feature p { margin-top: var(--space-2); color: var(--charcoal); font-size: .98rem; }

/* FLOATING SIDE RAIL (email + back-to-top) ================================= */
.side-rail { position: fixed; right: clamp(.85rem, 1.5vw, 1.4rem); bottom: clamp(1rem, 3vh, 2rem); z-index: 90; display: flex; flex-direction: column; gap: .8rem; }
.side-rail__btn { width: 3.3rem; height: 3.3rem; border-radius: 50%; display: grid; place-items: center; color: var(--ink); background: linear-gradient(145deg, #ffffff, #e6e6ea); box-shadow: 5px 5px 12px rgba(20, 20, 25, .26), -4px -4px 10px rgba(255, 255, 255, .9); transition: color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease), opacity var(--dur) var(--ease), visibility var(--dur) var(--ease); }
.side-rail__btn:hover { color: var(--red); transform: translateY(-2px); box-shadow: 7px 7px 16px rgba(20, 20, 25, .32), -5px -5px 12px rgba(255, 255, 255, .95); }
.side-rail__btn:active { transform: translateY(0); box-shadow: inset 4px 4px 9px rgba(20, 20, 25, .2), inset -4px -4px 9px rgba(255, 255, 255, .9); }
.side-rail__btn svg { width: 1.45rem; height: 1.45rem; fill: currentColor; }
.side-rail__top { opacity: 0; visibility: hidden; }
.side-rail__top.is-visible { opacity: 1; visibility: visible; }

/* CONTACT PAGE (map + glass form) ========================================== */
.contact-map { position: relative; height: clamp(260px, 38vh, 420px); border-bottom: 3px solid var(--red); }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.45) contrast(1.05); }
.contact-shell { max-width: 880px; margin-inline: auto; }
.contact-form-wrap { margin-top: clamp(2rem, 4vw, 3rem); }
.contact-meta { text-align: center; margin: var(--space-4) auto 0; color: var(--text-muted); font-size: var(--fs-small); }
.contact-meta a { color: var(--red); }
.form--glass { background: rgba(255, 255, 255, .5); -webkit-backdrop-filter: blur(22px) saturate(1.3); backdrop-filter: blur(22px) saturate(1.3); border: 1px solid rgba(255, 255, 255, .85); box-shadow: var(--shadow-3); }
.form--glass .field input, .form--glass .field select, .form--glass .field textarea { background: rgba(255, 255, 255, .65); border-color: rgba(20, 20, 20, .14); }
.form--glass .field input:focus, .form--glass .field select:focus, .form--glass .field textarea:focus { background: #fff; border-color: var(--red); }


/* 22. UTILITIES ============================================================= */
.u-visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.stack { position: relative; isolation: isolate; }
.stack::before { content: ""; position: absolute; inset: var(--offset) calc(-1 * var(--offset)) calc(-1 * var(--offset)) var(--offset); background: var(--ink); z-index: -1; }
.stack--red::before { background: var(--red); }
/* Scroll-reveal disabled — every section renders solid (no fade/flash on scroll). */
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto; } }


/* 23. RESPONSIVE ============================================================ */
@media (max-width: 980px) {
    .services-grid, .stats, .process-grid, .testimonials, .team-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .brand-strip__grid { grid-template-columns: repeat(4, 1fr); row-gap: 2rem; }
    .area-layout, .contact-layout, .intro-grid { grid-template-columns: 1fr; }
    .feature-row { grid-template-columns: 1fr; gap: var(--space-3); }
    .feature-row:nth-child(even) .feature-row__text { order: 0; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    :root { --header-h: 70px; }
    .site-header { padding-block: .85rem; }
    .site-header__inner { flex-direction: row; justify-content: center; gap: 0; }
    .site-header__logo, .site-header.is-scrolled .site-header__logo, body.subpage .site-header__logo { height: 38px; }
    .site-nav__toggle { display: block; top: 50%; transform: translateY(-50%); }
    .site-nav__list {
        position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
        background: var(--ink); padding: var(--space-2) var(--gutter) var(--space-4);
        transform: translateY(-120%); transition: transform var(--dur) var(--ease); box-shadow: var(--shadow-3);
    }
    .site-nav.is-open .site-nav__list { transform: translateY(0); }
    .site-nav__list a, .site-header.is-scrolled .site-nav__list a, body.subpage .site-nav__list a { color: #fff; padding-block: 1rem; border-bottom: 1px solid rgba(255, 255, 255, .1); font-size: 1.05rem; }
    .site-nav__list a::after { display: none; }
    .site-nav__cta { margin-top: var(--space-2); }
    .site-nav__cta a { justify-content: center; }
    .services-grid, .stats, .process-grid, .testimonials, .team-grid, .projects-grid, .values-grid { grid-template-columns: 1fr; }
    .brand-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .feature-row__list { grid-template-columns: 1fr; }
    .form__row { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .site-footer__col ul a, .site-footer__contact a, .site-footer__legal a { display: inline-flex; align-items: center; min-height: 44px; }
    .site-footer__legal { gap: var(--space-4); }
    .site-footer__contact a { word-break: break-word; }
}
