/* ===================================================================
   CONSTRUCTION HIBOU — shared stylesheet
   Palette: white · red · black. Bold, confident, high-converting.
   Inspired by constructionhibou.ca (image hero, service cards,
   testimonials carousel). Smooth-first: no scroll-driven effects.
   Shared by FR (root) and EN (/en/).
=================================================================== */

:root{
  --black:     #131316;   /* dark sections, footer, hero overlay */
  --black-2:   #1c1c21;   /* dark cards */
  --ink:       #18181b;   /* headings + body */
  --red:       #db1f26;   /* primary accent */
  --red-bright:#f0433d;   /* highlight */
  --red-deep:  #b0141a;   /* hover */
  --red-soft:  #fde7e7;   /* light tint */
  --muted:     #6a6a73;   /* secondary text */
  --cloud:     #f5f5f6;   /* light alt section bg */
  --white:     #ffffff;
  --line:      #e6e6ea;   /* hairline */

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius: 0px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow: 0 24px 50px -28px rgba(19,19,22,.5);
}

*{margin:0;padding:0;box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{font-family:var(--font-body);color:var(--ink);background:var(--white);line-height:1.65;font-size:17px;-webkit-font-smoothing:antialiased;overflow-x:hidden}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
h1,h2,h3{font-family:var(--font-display);font-weight:700;line-height:1.06;letter-spacing:-.02em;color:var(--ink)}
section{padding:clamp(60px,8vw,114px) 24px}
.wrap{max-width:var(--maxw);margin:0 auto}
.eyebrow{display:inline-flex;align-items:center;gap:9px;font-family:var(--font-body);font-size:13px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--red)}
.eyebrow::before{content:"";width:26px;height:2px;background:var(--red)}
.lead{color:var(--muted);font-size:18px}

/* reveal — one-time fade only */
.reveal{opacity:0;transform:translateY(20px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.reveal.in{opacity:1;transform:none}
.reveal.d1{transition-delay:.08s}.reveal.d2{transition-delay:.16s}.reveal.d3{transition-delay:.24s}
@media (prefers-reduced-motion: reduce){.reveal{opacity:1;transform:none;transition:none}}

/* buttons */
.btn{display:inline-flex;align-items:center;gap:.5em;font-family:var(--font-display);font-weight:700;font-size:15px;letter-spacing:.01em;padding:15px 28px;border-radius:0;cursor:pointer;border:none;transition:transform .25s var(--ease),box-shadow .25s var(--ease),background .25s,color .25s}
.btn-red{background:var(--red);color:#fff;box-shadow:0 12px 28px -12px var(--red)}
.btn-red:hover{transform:translateY(-2px);background:var(--red-deep);box-shadow:0 18px 34px -12px var(--red)}
.btn-dark{background:var(--black);color:#fff}
.btn-dark:hover{transform:translateY(-2px);background:#000}
.btn-ghost{border:1.5px solid var(--ink);color:var(--ink);background:transparent}
.btn-ghost:hover{background:var(--ink);color:#fff}
.btn-outline-light{border:1.5px solid rgba(255,255,255,.65);color:#fff;background:transparent}
.btn-outline-light:hover{background:#fff;color:var(--ink)}

/* ============================ NAV ============================ */
.topbar{background:var(--black);color:rgba(255,255,255,.82);font-size:13.5px}
.topbar .wrap{display:flex;justify-content:space-between;align-items:center;gap:16px;padding:8px 24px;flex-wrap:wrap}
.topbar a{font-weight:500}
.topbar .tb-right{display:flex;gap:20px;align-items:center}
.topbar b{color:#fff}
.topbar .soc{display:inline-flex;gap:12px}
.topbar .soc a{opacity:.7}.topbar .soc a:hover{opacity:1;color:var(--red-bright)}
.topbar .soc svg{width:15px;height:15px}
@media(max-width:680px){.topbar .tb-left{display:none}}

header.nav{position:sticky;top:0;z-index:60;background:#fff;border-bottom:1px solid var(--line);display:flex;align-items:center;justify-content:space-between;padding:6px clamp(20px,4vw,40px)}
.brand{display:flex;align-items:center;flex:none}
.brand-logo{height:48px;width:auto;display:block}
.foot .brand-logo{height:76px;margin-bottom:6px}
@media(max-width:900px){.brand-logo{height:42px}}
@media(max-width:420px){.brand-logo{height:36px}}
.brand .mark{width:44px;height:44px;border-radius:0;background:var(--black);display:grid;place-items:center;flex:none}
.brand .mark svg{width:25px;height:25px;color:var(--red)}
.brand small{display:block;font-family:var(--font-body);font-size:9.5px;letter-spacing:.2em;text-transform:uppercase;color:var(--muted);font-weight:600;margin-top:1px}
.nav-links{display:flex;align-items:center;gap:24px;font-family:var(--font-display);font-size:15px;font-weight:600;text-transform:uppercase;letter-spacing:.02em}
.nav-links a{color:var(--ink);opacity:.82;transition:color .2s,opacity .2s;position:relative}
.nav-links a:hover,.nav-links a.active{opacity:1;color:var(--red)}
.nav-links a.active::after{content:"";position:absolute;left:0;right:0;bottom:-6px;height:3px;background:var(--red);border-radius:0}
.lang{font-size:13px;font-weight:700;border:1.5px solid var(--line);border-radius:0;padding:5px 10px;color:var(--muted) !important;opacity:1 !important}
.lang:hover{border-color:var(--red);color:var(--red) !important}
.nav-cta{background:var(--red);color:#fff !important;padding:9px 18px;border-radius:0;opacity:1 !important}
.nav-cta:hover{background:var(--red-deep)}
.nav-cta::after{display:none !important}
.burger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:6px}
.burger span{width:25px;height:2.5px;background:var(--ink);border-radius:0;transition:.3s}
.nav.open .burger span:nth-child(1){transform:translateY(7.5px) rotate(45deg)}
.nav.open .burger span:nth-child(2){opacity:0}
.nav.open .burger span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg)}
@media(max-width:960px){
  .burger{display:flex}
  .nav-links{position:fixed;inset:0 0 0 auto;width:min(82vw,330px);flex-direction:column;align-items:flex-start;justify-content:center;gap:12px;background:#fff;padding:40px;transform:translateX(100%);transition:transform .35s var(--ease);box-shadow:-20px 0 60px -30px rgba(0,0,0,.5);z-index:70}
  .nav.open .nav-links{transform:none}
  .nav-links a{font-size:22px;padding:6px 0;width:100%}
  .nav-links a.active::after{display:none}
}



/* Google review badge — replaces the "5 / champs d'expertise" stat.
   Gold stars are deliberate: it's Google's own star colour, so the badge reads
   as an authentic third-party rating rather than site decoration. */
.gbadge{display:flex;flex-direction:column;align-items:center;gap:7px;text-decoration:none;
  padding:8px 14px;border-radius:0;border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.05);
  transition:transform .3s var(--ease),box-shadow .35s var(--ease),
             border-color .3s var(--ease),background .3s var(--ease)}
.gbadge .gb-row{display:inline-flex;align-items:center;gap:9px}
.gbadge .gb-g{width:23px;height:23px;flex:none}
.gbadge .gb-rate{font-family:var(--font-display);font-weight:800;font-size:19px;color:#fff;line-height:1;margin-right:2px}
.gbadge .gb-stars{font-size:19px;line-height:1;color:#fbbc04;letter-spacing:1.5px}
.gbadge .lbl{margin-top:0}
.gbadge:hover,.gbadge:focus-visible{
  transform:translateY(-3px);background:rgba(255,255,255,.09);
  border-color:rgba(var(--glow),.75);
  box-shadow:0 0 0 1.5px rgba(var(--glow),.55),0 0 34px -4px rgba(var(--glow),.6),
             0 0 76px 6px rgba(var(--glow),.28)}
@media(max-width:520px){.gbadge .gb-rate{font-family:var(--font-display);font-weight:800;font-size:19px;color:#fff;line-height:1;margin-right:2px}
.gbadge .gb-stars{font-size:16px}.gbadge{padding:6px 10px}}
@media (prefers-reduced-motion:reduce){.gbadge:hover,.gbadge:focus-visible{transform:none}}

/* ---- testimonial marquee ----
   Continuous horizontal scroll, same pattern as indesignconstruction.ca.
   This is the one infinite animation on the site and it is a deliberate
   exception: transform-only so it runs on the compositor (no layout, no
   paint), it pauses on hover/focus, it is disabled entirely under
   prefers-reduced-motion, and JS parks it whenever the band is off-screen —
   so nothing animates while you are scrolling past it. */
.marquee-wrap{position:relative;overflow:hidden;margin-top:22px;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent)}
.marquee-track{display:inline-flex;align-items:stretch;animation:hibou-marquee 58s linear infinite}
@keyframes hibou-marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.marquee-wrap:hover .marquee-track,
.marquee-wrap:focus-within .marquee-track,
.marquee-wrap.is-parked .marquee-track{animation-play-state:paused}

.tmq{flex:none;width:340px;margin-right:14px;white-space:normal;display:flex;flex-direction:column;
  background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.15);padding:18px 20px;
  transition:background .3s var(--ease),border-color .3s var(--ease)}
.marquee-wrap:hover .tmq:hover{background:rgba(255,255,255,.1);border-color:rgba(var(--glow),.7)}
.tmq .stars{color:#fbbc04;letter-spacing:2px;font-size:13px;margin-bottom:9px}
.tmq blockquote{font-family:var(--font-display);font-style:italic;font-weight:600;
  font-size:15.5px;line-height:1.45;color:#fff;margin:0 0 14px}
.tmq figcaption{margin-top:auto;display:flex;align-items:center;gap:11px}
.tmq figcaption .avatar{width:38px;height:38px;font-size:13px}
.tmq figcaption b{display:block;font-family:var(--font-body);font-size:14px;color:#fff}
.tmq figcaption span{font-size:12px;color:rgba(255,255,255,.6)}
@media(max-width:600px){.tmq{width:270px}}
@media (prefers-reduced-motion:reduce){
  .marquee-track{animation:none;flex-wrap:wrap;justify-content:center}
  .marquee-wrap{-webkit-mask-image:none;mask-image:none}
  .tmq{margin-bottom:14px}
}

/* ---- areas we serve (phase-1: text only, no links yet) ---- */
.areas-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;align-items:start}
.areas-col h3{font-family:var(--font-display);font-size:15px;text-transform:uppercase;letter-spacing:.05em;color:var(--red);margin-bottom:14px;padding-bottom:10px;border-bottom:1px solid var(--line)}
.areas-col ul{list-style:none;display:flex;flex-wrap:wrap;gap:8px}
.areas-col li{font-size:13.5px;font-weight:500;color:var(--ink);background:var(--cloud);border:1px solid var(--line);padding:6px 12px}
@media(max-width:820px){.areas-grid{grid-template-columns:1fr;gap:26px}}

/* ---- 4 core principles ---- */
.principles{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.principle{background:#fff;border:1px solid var(--line);padding:28px 26px;display:flex;gap:18px;align-items:flex-start;box-shadow:0 14px 34px -26px rgba(19,19,22,.5)}
.principle .pico{flex:none;width:54px;height:54px;display:grid;place-items:center;background:var(--red);color:#fff}
.principle .pico svg{width:28px;height:28px}
.principle h3{font-family:var(--font-display);font-size:22px;letter-spacing:-.01em;margin-bottom:6px}
.principle h3 em{color:var(--red);font-style:normal}
.principle p{color:var(--muted);font-size:15px;line-height:1.55}
@media(max-width:640px){.principles{grid-template-columns:1fr}}

/* ---- team on-site video montages ---- */
.tvideos{background:var(--black);border-top:3px solid var(--red);border-bottom:3px solid var(--red)}
.tvideos .sec-head h2{color:#fff}
.tvideos .sec-head p{color:rgba(255,255,255,.72)}
.tvideos .sec-head .eyebrow{color:var(--red-bright)}.tvideos .sec-head .eyebrow::before{background:var(--red-bright)}
.vgrid{display:flex;gap:20px;justify-content:center;flex-wrap:wrap}
.vmontage{width:min(330px,82vw);aspect-ratio:9/16;object-fit:cover;background:#000;border:1px solid rgba(255,255,255,.16);display:block;box-shadow:0 24px 50px -28px rgba(0,0,0,.7)}
@media(max-width:720px){.vgrid{gap:14px}.vmontage{width:min(300px,88vw)}}

/* ---- gallery filters + captions ---- */
.gal-filters{display:flex;gap:10px;flex-wrap:wrap;justify-content:center;margin-bottom:36px}
.gal-filters button{font-family:var(--font-display);font-weight:700;font-size:14px;letter-spacing:.02em;
  padding:11px 22px;border-radius:0;border:1.5px solid var(--line);background:#fff;color:var(--ink);
  cursor:pointer;transition:transform .25s var(--ease),box-shadow .3s var(--ease),
  border-color .25s var(--ease),background .25s var(--ease),color .25s var(--ease)}
.gal-filters button:hover,.gal-filters button:focus-visible{transform:translateY(-2px);
  border-color:rgba(var(--glow),.7);box-shadow:0 0 28px -8px rgba(var(--glow),.65)}
.gal-filters button.on{background:var(--red);border-color:var(--red);color:#fff;
  box-shadow:0 0 0 1.5px rgba(var(--glow),.5),0 0 32px -8px rgba(var(--glow),.75)}
.gal a.hide{display:none}
.gal-count{text-align:center;color:var(--muted);font-size:14px;margin-top:26px;letter-spacing:.02em}

/* caption slides up on hover — transform/opacity only */
.gal-cap{position:absolute;left:0;right:0;bottom:0;padding:26px 16px 14px;
  font-family:var(--font-display);font-weight:700;font-size:14px;color:#fff;text-align:left;
  background:linear-gradient(0deg,rgba(15,15,18,.9),transparent);
  opacity:0;transform:translateY(8px);transition:opacity .3s var(--ease),transform .3s var(--ease)}
.gal a:hover .gal-cap,.gal a:focus-visible .gal-cap{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){.gal-cap{transition:none}.gal-filters button:hover{transform:none}}
@media(hover:none){.gal-cap{opacity:1;transform:none}}

/* ==================== INTERACTIVE RED GLOW ====================
   Adapted from the dark-theme React/Tailwind glow-card spec for this static,
   white-themed site:
     • blurred gradient halo -> layered red box-shadows. `.svc` and `.gal a` are
       overflow:hidden so a pseudo-element halo would be clipped; box-shadow also
       avoids filter:blur() repaint cost and the negative-z stacking trap.
     • gradient border       -> tight red ring as the first shadow layer
     • "put in evidence"     -> siblings dim via :has() so the hovered item leads
   Hover / focus / active only. Nothing scroll-linked, no infinite animation. */
:root{--glow:219,31,38}

.svc,.gal a,.step,.feat,.info{
  transition:transform .32s var(--ease),box-shadow .38s var(--ease),
             border-color .32s var(--ease),opacity .3s var(--ease)}
.feat,.info{position:relative}

/* the illuminated state */
.svc:hover,.svc:focus-visible,
.gal a:hover,.gal a:focus-visible,
.step:hover,
.feat:hover,
.info:hover,.info:focus-within{
  transform:translateY(-6px);
  border-color:rgba(var(--glow),.85);
  z-index:3;
  box-shadow:
    0 0 0 1.5px rgba(var(--glow),.65),
    0 12px 28px -10px rgba(var(--glow),.5),
    0 0 40px -4px  rgba(var(--glow),.55),
    0 0 86px 6px   rgba(var(--glow),.30)}

/* pressed — brighter, closer to the surface */
.svc:active,.gal a:active,.step:active,.feat:active,.info:active{
  transform:translateY(-2px);
  box-shadow:
    0 0 0 2px rgba(var(--glow),.9),
    0 0 48px -2px rgba(var(--glow),.7),
    0 0 104px 10px rgba(var(--glow),.38)}

/* buttons */
.btn:hover,.btn:focus-visible{
  box-shadow:
    0 0 0 1.5px rgba(var(--glow),.5),
    0 10px 26px -10px rgba(var(--glow),.6),
    0 0 42px -6px rgba(var(--glow),.55)}
.btn-red:hover,.btn-red:focus-visible{
  box-shadow:
    0 0 0 1.5px rgba(var(--glow),.75),
    0 12px 30px -10px rgba(var(--glow),.75),
    0 0 50px -4px rgba(var(--glow),.6),
    0 0 100px 8px rgba(var(--glow),.32)}
.nav-cta{transition:background .25s,box-shadow .3s var(--ease),transform .25s var(--ease)}
.nav-cta:hover,.nav-cta:focus-visible{
  transform:translateY(-1px);
  box-shadow:0 0 0 1.5px rgba(var(--glow),.6),0 0 34px -6px rgba(var(--glow),.7)}
.lang:hover,.lang:focus-visible{box-shadow:0 0 24px -6px rgba(var(--glow),.65)}

/* hovered item leads; the rest of the group recedes */
@media (hover:hover) and (pointer:fine){
  .cards:has(.svc:hover) .svc:not(:hover),
  .gal:has(a:hover) a:not(:hover),
  .steps:has(.step:hover) .step:not(:hover),
  .feat-grid:has(.feat:hover) .feat:not(:hover),
  .info-grid:has(.info:hover) .info:not(:hover){opacity:.45;transform:scale(.985)}
}

@media (prefers-reduced-motion:reduce){
  .svc,.gal a,.step,.feat,.info{transition:box-shadow .2s linear,opacity .2s linear}
  .svc:hover,.gal a:hover,.step:hover,.feat:hover,.info:hover,
  .svc:active,.gal a:active,.step:active,.feat:active,.info:active,
  .nav-cta:hover{transform:none}
  .cards:has(.svc:hover) .svc:not(:hover),
  .gal:has(a:hover) a:not(:hover),
  .steps:has(.step:hover) .step:not(:hover),
  .feat-grid:has(.feat:hover) .feat:not(:hover),
  .info-grid:has(.info:hover) .info:not(:hover){transform:none}
}

/* ==================== SECTION BACKGROUNDS ====================
   White stays the dominant surface; brand red and charcoal are layered in as
   soft corner washes so the page reads shaded rather than flat. All static
   gradients — no scroll effects, no animation, nothing the compositor has to
   redo while scrolling.
   Alphas are tuned so each wash resolves to a light tint over white:
     rgba(219,31,38,.21) -> ~#f6d3d5   rgba(19,19,22,.17) -> ~#dcdcdd          */
section{position:relative;background:linear-gradient(180deg,#fff 0%,#f2f0f3 100%)}
section>.wrap{position:relative;z-index:1}
/* .hero, .page-hero and .cta paint their imagery in a z-index:-2 child. Those
   sections don't create a stacking context, so that layer paints BELOW the
   section's own background — give them one and it hides the photo entirely. */
.hero,.page-hero,.cta{background:none}

/* alternating band — deeper grey, red glow off one shoulder */
.process{background:linear-gradient(180deg,#ece8ed 0%,#dbd8e0 100%);
  border-top:1px solid rgba(19,19,22,.14);border-bottom:1px solid rgba(19,19,22,.14)}
.process::before{content:"";position:absolute;inset:0;z-index:0;pointer-events:none;
  background:
    radial-gradient(55% 45% at 100% 0%,rgba(219,31,38,.17),transparent 62%),
    radial-gradient(50% 45% at 0% 100%,rgba(19,19,22,.14),transparent 60%)}

/* red wash from behind the section head, charcoal weight in the far corner */
section.tint::before{content:"";position:absolute;inset:0;z-index:0;pointer-events:none;
  background:
    radial-gradient(58% 48% at 50% -8%,rgba(219,31,38,.21),transparent 60%),
    radial-gradient(46% 46% at 100% 100%,rgba(19,19,22,.15),transparent 62%)}

/* mirrored: charcoal top-right, red anchoring the opposite corner */
section.tint-right::before{content:"";position:absolute;inset:0;z-index:0;pointer-events:none;
  background:
    radial-gradient(48% 55% at 100% 0%,rgba(219,31,38,.20),transparent 60%),
    radial-gradient(52% 48% at 0% 100%,rgba(19,19,22,.17),transparent 62%)}

/* hairline of brand colour where a shaded band meets the section above it */
.process{box-shadow:inset 0 1px 0 rgba(219,31,38,.27)}

/* cards need a resting shadow now that they sit on tinted ground */
.svc{box-shadow:0 14px 34px -24px rgba(19,19,22,.55)}
.step{box-shadow:0 12px 30px -24px rgba(19,19,22,.5)}
.form-card{box-shadow:0 30px 60px -34px rgba(19,19,22,.55)}

/* ============================ HERO ============================ */
/* hero fills the frame minus topbar+nav (~104px), never taller than the viewport */
.hero{position:relative;min-height:max(460px,calc(100vh - 61px));min-height:max(460px,calc(100svh - 61px));display:flex;align-items:center;padding:clamp(22px,3.4vh,48px) 24px;color:#fff;overflow:hidden}
.hero-bg{position:absolute;inset:0;z-index:-2}
/* Crossfading montage — single full-res photo per slide (Olivia's originals).
   The photo fills the right ~58% of the hero with object-fit:cover (no stretch,
   no blur backdrop — the sources are true landscape originals now) and fades
   into the dark on its left edge via a mask, so the headline column stays clear.
   Opacity-only transitions driven by JS: no infinite CSS animation. */
.hero-slide{position:absolute;inset:0;opacity:0;transition:opacity .9s var(--ease)}
.hero-slide.on{opacity:1}
.hero-bg .hs{position:absolute;inset:0 0 0 auto;width:58%;height:100%;object-fit:cover;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 20%);mask-image:linear-gradient(90deg,transparent,#000 20%)}
@media(max-width:1100px){.hero-bg .hs{width:100%;
  -webkit-mask-image:none;mask-image:none}
  .hero-inner>*{max-width:100%}
  .hero::after{background:linear-gradient(100deg,rgba(15,15,18,.86) 0%,rgba(15,15,18,.64) 60%,rgba(15,15,18,.42) 100%)}}
@media (prefers-reduced-motion: reduce){.hero-slide{transition:none}}
.hero::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(100deg,rgba(15,15,18,.74) 0%,rgba(15,15,18,.42) 46%,rgba(15,15,18,.06) 100%)}
.hero-inner{max-width:var(--maxw);margin:0 auto;width:100%}
/* the montage photo sits right of centre — cap the copy so it never overlaps it */
.hero-inner>*{max-width:min(560px,100%)}
.hero .eyebrow{color:var(--red-bright);font-size:14px;text-shadow:0 2px 14px rgba(10,10,12,.5)}.hero .eyebrow::before{background:var(--red-bright)}
.hero h1{color:#fff;font-size:clamp(36px,min(5.6vw,6.6vh),68px);max-width:min(560px,100%);font-weight:800;margin-top:clamp(8px,1.2vh,12px);letter-spacing:-.03em;line-height:1.03;text-shadow:0 2px 24px rgba(10,10,12,.55)}
.hero h1 em{font-style:normal;color:var(--red-bright)}
.hero .lede{margin-top:clamp(10px,1.6vh,16px);font-size:clamp(16.5px,min(1.8vw,2.2vh),21px);max-width:min(560px,100%);color:#fff;line-height:1.5;text-shadow:0 2px 18px rgba(10,10,12,.5)}
.hero-cta{margin-top:clamp(16px,2.6vh,28px);display:flex;align-items:center;gap:10px 16px;flex-wrap:wrap}
.hero-badges{margin-top:clamp(14px,2.4vh,26px);display:flex;gap:8px 20px;flex-wrap:wrap;font-size:14.5px;color:#fff;text-shadow:0 2px 14px rgba(10,10,12,.5)}
.hero-badges span{display:inline-flex;align-items:center;gap:8px}
.hero-badges b{color:var(--red-bright)}
@keyframes riseIn{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:none}}
.hero .eyebrow{animation:riseIn .7s var(--ease) both .1s}
.hero h1{animation:riseIn .8s var(--ease) both .22s}
.hero .lede{animation:riseIn .8s var(--ease) both .4s}
.hero-cta{animation:riseIn .8s var(--ease) both .56s}
.hero-badges{animation:riseIn .8s var(--ease) both .7s}
@media (prefers-reduced-motion: reduce){.hero .eyebrow,.hero h1,.hero .lede,.hero-cta,.hero-badges{animation:none}}

/* page hero */
.page-hero{min-height:46vh;display:flex;align-items:flex-end;position:relative;color:#fff;padding:128px 24px 68px;overflow:hidden}
.page-hero-bg{position:absolute;inset:0;z-index:-2}
.page-hero-bg img{width:100%;height:100%;object-fit:cover}
.page-hero::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(95deg,rgba(15,15,18,.9),rgba(15,15,18,.56))}
.page-hero .eyebrow{color:var(--red-bright)}.page-hero .eyebrow::before{background:var(--red-bright)}
.page-hero h1{color:#fff;font-size:clamp(38px,5.4vw,66px);max-width:18ch;font-weight:800}
.page-hero p{color:rgba(255,255,255,.88);font-size:19px;max-width:52ch;margin-top:14px}
.crumb{font-family:var(--font-display);font-size:13px;letter-spacing:.1em;text-transform:uppercase;color:var(--red-bright);margin-bottom:16px;font-weight:600}
.crumb a{opacity:.85}.crumb a:hover{opacity:1}

/* ============================ TRUST STRIP ============================ */
.trust{background:var(--black);color:#fff;border-top:3px solid var(--red)}
.trust .wrap{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;text-align:center}
.trust .num{font-family:var(--font-display);font-weight:800;font-size:clamp(24px,2.9vw,34px);line-height:1;color:var(--red-bright)}
/* licence number is longer than the other stats — needs its own size */
.trust .num.num-sm{font-size:clamp(16px,1.85vw,23px);letter-spacing:.01em}
.trust .lbl{margin-top:5px;font-size:12px;color:rgba(255,255,255,.78);letter-spacing:.04em;text-transform:uppercase}
@media(max-width:640px){.trust .wrap{grid-template-columns:1fr 1fr;gap:32px 20px}}

/* ============================ SECTION HEADINGS ============================ */
.sec-head{max-width:680px;margin:0 auto 52px;text-align:center}
.sec-head .eyebrow{justify-content:center}
.sec-head.left{margin-left:0;text-align:left}
.sec-head.left .eyebrow{justify-content:flex-start}
.sec-head h2{font-size:clamp(32px,4.6vw,56px);margin-top:14px}
.sec-head p{margin-top:16px;color:var(--muted);font-size:18px}

/* ============================ SERVICE CARDS ============================ */
.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.cards.three{grid-template-columns:repeat(3,1fr)}
.cards.two{grid-template-columns:repeat(2,1fr);max-width:720px;margin:0 auto}
.svc{position:relative;background:#fff;border:1px solid var(--line);border-radius:0;overflow:hidden;display:flex;flex-direction:column;transition:transform .35s var(--ease),box-shadow .35s var(--ease),border-color .35s}
.svc:hover{transform:translateY(-6px);box-shadow:var(--shadow);border-color:var(--red)}
.svc .ph{aspect-ratio:1/1;overflow:hidden;background:var(--cloud)}
.svc .ph img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease)}
.svc:hover .ph img{transform:scale(1.06)}
.svc .body{padding:24px}
.svc h3{font-size:20px;margin-bottom:8px}
.svc p{color:var(--muted);font-size:15px;margin-bottom:14px}
.svc .more{font-family:var(--font-display);font-weight:700;letter-spacing:.03em;text-transform:uppercase;color:var(--red);font-size:13.5px;display:inline-flex;gap:6px;align-items:center}
.svc .more .arr{transition:transform .25s}
.svc:hover .more .arr{transform:translateX(4px)}
@media(max-width:980px){.cards,.cards.three{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.cards,.cards.three{grid-template-columns:1fr}}

/* feature split */
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(32px,6vw,76px);align-items:center}
.split.alt{direction:rtl}.split.alt>*{direction:ltr}
.split-media{position:relative;border-radius:0;overflow:hidden;aspect-ratio:4/3;box-shadow:var(--shadow)}
.split-media img{width:100%;height:100%;object-fit:cover}
.split-media .tag{position:absolute;left:16px;top:16px;background:var(--red);color:#fff;font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:7px 14px;border-radius:0}
.split h2{font-size:clamp(30px,3.8vw,46px);margin:14px 0 18px}
.checks{list-style:none;display:grid;gap:13px;margin:22px 0 30px}
.checks li{display:flex;gap:12px;align-items:flex-start;font-weight:500}
.checks li svg{flex:none;width:24px;height:24px;color:#fff;background:var(--red);border-radius:0;padding:5px;margin-top:1px}
@media(max-width:860px){.split{grid-template-columns:1fr}.split.alt{direction:ltr}}

/* ============================ PROCESS ============================ */
.process{background:var(--cloud)}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;counter-reset:s}
.step{position:relative;background:#fff;border:1px solid var(--line);border-radius:0;padding:30px 26px;text-align:center}
.step .n{counter-increment:s;width:54px;height:54px;margin:0 auto 16px;border-radius:0;background:var(--black);color:#fff;font-family:var(--font-display);font-weight:800;font-size:22px;display:grid;place-items:center}
.step .n::before{content:"0" counter(s)}
.step h3{font-size:19px;margin-bottom:8px}
.step p{color:var(--muted);font-size:15px}
@media(max-width:900px){.steps{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.steps{grid-template-columns:1fr}}

/* ============================ FEATURES GRID ============================ */
.feat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.feat{background:#fff;border:1px solid var(--line);border-radius:0;padding:30px 28px;transition:border-color .3s,transform .3s,box-shadow .3s}
.feat:hover{border-color:var(--red);transform:translateY(-4px);box-shadow:var(--shadow)}
.feat .ico{width:52px;height:52px;border-radius:0;background:var(--red-soft);display:grid;place-items:center;margin-bottom:18px}
.feat .ico svg{width:26px;height:26px;color:var(--red)}
.feat h3{font-size:20px;margin-bottom:8px}
.feat p{color:var(--muted);font-size:15.5px}
@media(max-width:900px){.feat-grid{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.feat-grid{grid-template-columns:1fr}}

/* ============================ GALLERY ============================ */
/* Square cells. Every client photo is square (Instagram 414px), so a 1:1 tile crops
   nothing — the old 2-col "wide" tiles were 2.78:1 and threw away 64% of each photo,
   which read as heavily zoomed. */
.gal{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.gal.g3{grid-template-columns:repeat(3,1fr)}
.gal.g2{grid-template-columns:repeat(2,1fr)}
.gal a{position:relative;overflow:hidden;border-radius:0;background:var(--cloud);aspect-ratio:1;box-shadow:0 12px 30px -22px rgba(19,19,22,.55)}
.gal img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease)}
.gal a:hover img{transform:scale(1.05)}
@media(max-width:760px){.gal,.gal.g3,.gal.g2{grid-template-columns:1fr 1fr}}

/* ============================ TESTIMONIALS CAROUSEL ============================ */
/* Testimonials render as a full-bleed dark banner rather than a card.
   Rotation is the existing JS carousel — discrete, JS-timed slide changes with
   a 6s dwell, already pausing on mouseenter and resuming on mouseleave. No
   infinite CSS animation, so it stays inside the no-scroll-jank rules. */
.tquotes{background:var(--black);border-top:3px solid var(--red);border-bottom:3px solid var(--red);
  padding-top:clamp(24px,3.2vw,38px);padding-bottom:clamp(20px,2.6vw,30px)}
.tquotes .sec-head{margin-bottom:18px}
.tquotes .sec-head h2{color:#fff}
.tquotes .sec-head p{color:rgba(255,255,255,.72)}
.carousel{max-width:980px;margin:0 auto;position:relative}

.c-viewport{overflow:hidden;border-radius:0}
.c-track{display:flex;transition:transform .55s var(--ease)}
.c-slide{min-width:100%;padding:6px}
.tcard{background:transparent;border:0;border-radius:0;padding:4px clamp(12px,3vw,34px);text-align:center;box-shadow:none}
.tcard .qmark{font-family:var(--font-display);font-size:56px;line-height:.6;color:var(--red-bright);height:28px}
.tcard .stars{color:#fbbc04;letter-spacing:3px;margin:10px 0 14px}
.tcard p{font-size:clamp(17px,1.9vw,21px);color:#fff;font-style:italic;line-height:1.55;max-width:66ch;margin:0 auto}
.tcard .who{margin-top:22px;display:flex;align-items:center;justify-content:center;gap:12px}
.avatar{width:46px;height:46px;border-radius:0;background:var(--red);color:#fff;display:grid;place-items:center;font-weight:800;font-family:var(--font-display);flex:none}
.who b{display:block;font-family:var(--font-body);font-size:15px;color:#fff}
.who span{font-size:13px;color:rgba(255,255,255,.62)}
.c-arrows{display:flex;justify-content:center;gap:12px;margin-top:24px}
.c-arrows button{width:42px;height:42px;border-radius:0;border:1.5px solid rgba(255,255,255,.28);background:transparent;color:#fff;font-size:20px;cursor:pointer;transition:.2s;display:grid;place-items:center}
.c-arrows button:hover{background:var(--red);color:#fff;border-color:var(--red)}
.c-dots{display:flex;justify-content:center;gap:9px;margin-top:18px}
.c-dots button{width:9px;height:9px;border-radius:0;border:none;background:rgba(255,255,255,.28);cursor:pointer;padding:0;transition:.2s}
.c-dots button.on{background:var(--red-bright);width:26px;border-radius:0}

/* ============================ CTA BAND ============================ */
.cta{position:relative;text-align:center;color:#fff;overflow:hidden}
.cta-bg{position:absolute;inset:0;z-index:-2}
.cta-bg img{width:100%;height:100%;object-fit:cover}
.cta::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(0deg,rgba(15,15,18,.94),rgba(15,15,18,.8))}
.cta .eyebrow{justify-content:center;color:var(--red-bright)}.cta .eyebrow::before{background:var(--red-bright)}
.cta h2{color:#fff;font-size:clamp(34px,5vw,60px);max-width:20ch;margin:16px auto 0;font-weight:800}
.cta p{margin:16px auto 30px;max-width:52ch;color:rgba(255,255,255,.88);font-size:18px}
.cta-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}

/* ============================ FORM ============================ */
.form-card{background:#fff;border:1px solid var(--line);border-radius:0;padding:clamp(26px,4vw,42px);box-shadow:var(--shadow)}
.field{margin-bottom:18px}
.field label{display:block;font-size:13.5px;font-weight:600;color:var(--ink);margin-bottom:7px}
.field input,.field select,.field textarea{width:100%;font-family:inherit;font-size:15.5px;color:var(--ink);background:var(--cloud);border:1.5px solid var(--line);border-radius:0;padding:13px 15px;transition:border-color .2s,background .2s}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--red);background:#fff}
.field textarea{min-height:120px;resize:vertical}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
@media(max-width:560px){.field-row{grid-template-columns:1fr}}

/* info cards */
.info-grid{display:grid;gap:14px}
.info{display:flex;gap:14px;align-items:flex-start;background:#fff;border:1px solid var(--line);border-radius:0;padding:20px 22px}
.info .ico{width:44px;height:44px;border-radius:0;background:var(--red-soft);display:grid;place-items:center;flex:none}
.info .ico svg{width:21px;height:21px;color:var(--red)}
.info h4{color:var(--ink);font-size:16px;margin-bottom:3px}
.info p,.info a{color:var(--muted);font-size:15px}
.info a:hover{color:var(--red)}

/* ============================ FOOTER ============================ */
.foot{background:var(--black);color:rgba(255,255,255,.74)}
.foot .wrap{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.1fr;gap:40px;padding:62px 24px 0}
.foot .brand{color:#fff;margin-bottom:14px}
.foot .brand small{color:rgba(255,255,255,.55)}
.foot p{font-size:14.5px;max-width:32ch}
.foot h4{color:#fff;font-family:var(--font-display);font-size:15px;letter-spacing:.04em;text-transform:uppercase;margin-bottom:16px;font-weight:700}
.foot ul{list-style:none;display:grid;gap:10px;font-size:14.5px}
.foot a:hover{color:var(--red-bright)}
.foot .fline{display:flex;gap:10px;align-items:flex-start;margin-bottom:11px;font-size:14.5px}
.foot .fline svg{width:17px;height:17px;color:var(--red);flex:none;margin-top:3px}
.foot .soc{display:flex;gap:10px;margin-top:6px}
.foot .soc a{width:34px;height:34px;border-radius:0;background:rgba(255,255,255,.08);display:grid;place-items:center;transition:.2s}
.foot .soc a:hover{background:var(--red)}
.foot .soc svg{width:16px;height:16px;color:#fff}
.foot .legal{grid-column:1/-1;border-top:1px solid rgba(255,255,255,.13);margin-top:52px;padding:22px 0;display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;font-size:13px}
.foot .legal .credit{color:rgba(255,255,255,.5)}
@media(max-width:860px){.foot .wrap{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.foot .wrap{grid-template-columns:1fr}}

/* ============================ HERO PHONE (home) ============================ */
.hero-phone{display:inline-flex;align-items:center;gap:11px;margin-top:22px;text-decoration:none;color:#fff}
.hero-phone .ic{width:34px;height:34px;border-radius:0;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.28);display:grid;place-items:center;flex:none}
.hero-phone .ic svg{width:16px;height:16px;color:var(--red-bright)}
.hero-phone small{display:block;font-size:12.5px;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.82);font-weight:700}
.hero-phone b{display:block;font-family:var(--font-display);font-weight:700;font-size:22px;color:#fff;line-height:1.1}
.hero-phone:hover b{color:var(--red-bright)}

/* ============================ CHATBOT WIDGET ============================ */
.cbot-launch{position:fixed;right:22px;bottom:22px;z-index:120;width:62px;height:62px;border-radius:50%;background:var(--red);color:#fff;border:none;cursor:pointer;box-shadow:0 16px 34px -10px rgba(219,31,38,.6);display:grid;place-items:center;transition:transform .25s var(--ease),background .25s}
.cbot-launch:hover{transform:translateY(-3px);background:var(--red-deep)}
.cbot-launch svg{width:28px;height:28px}
.cbot-launch .badge{position:absolute;top:-3px;right:-3px;width:18px;height:18px;border-radius:50%;background:#fff;color:var(--red);font-size:11px;font-weight:800;display:grid;place-items:center;border:2px solid var(--red)}

.cbot{position:fixed;right:22px;bottom:96px;z-index:121;width:min(92vw,362px);height:min(72vh,548px);background:#fff;border:1px solid var(--line);border-radius:18px;box-shadow:0 34px 80px -28px rgba(0,0,0,.55);display:flex;flex-direction:column;overflow:hidden;opacity:0;transform:translateY(16px) scale(.98);pointer-events:none;transition:opacity .25s var(--ease),transform .25s var(--ease)}
.cbot.open{opacity:1;transform:none;pointer-events:auto}
.cbot-head{background:var(--black);color:#fff;padding:15px 16px;display:flex;align-items:center;gap:12px}
.cbot-head .av{width:40px;height:40px;border-radius:50%;background:var(--red);display:grid;place-items:center;flex:none}
.cbot-head .av svg{width:22px;height:22px;color:#fff}
.cbot-head b{font-family:var(--font-display);font-size:16px;display:block;line-height:1.1}
.cbot-head span{font-size:11.5px;color:rgba(255,255,255,.65);display:flex;align-items:center;gap:6px}
.cbot-head span::before{content:"";width:7px;height:7px;border-radius:50%;background:#43d17a}
.cbot-head .close{margin-left:auto;background:none;border:none;color:rgba(255,255,255,.7);font-size:24px;cursor:pointer;line-height:1;padding:0 4px}
.cbot-body{flex:1;overflow-y:auto;padding:16px;background:var(--cloud);display:flex;flex-direction:column;gap:10px}
.cbot .msg{max-width:84%;padding:11px 14px;border-radius:15px;font-size:14.5px;line-height:1.46}
.cbot .msg.bot{background:#fff;border:1px solid var(--line);border-bottom-left-radius:5px;align-self:flex-start;color:var(--ink)}
.cbot .msg.user{background:var(--red);color:#fff;border-bottom-right-radius:5px;align-self:flex-end}
.cbot-chips{display:flex;flex-wrap:wrap;gap:7px;padding:0 14px 10px;background:var(--cloud)}
.cbot-chips button{font-family:var(--font-body);font-size:12.5px;font-weight:600;color:var(--red);background:#fff;border:1px solid var(--red);border-radius:100px;padding:7px 12px;cursor:pointer;transition:.2s}
.cbot-chips button:hover{background:var(--red);color:#fff}
.cbot-cta{display:flex;gap:8px;padding:10px 14px;background:var(--cloud)}
.cbot-cta a{flex:1;text-align:center;font-family:var(--font-display);font-weight:700;font-size:12.5px;text-transform:uppercase;letter-spacing:.02em;padding:11px 8px;border-radius:8px}
.cbot-cta .q{background:var(--red);color:#fff}
.cbot-cta .q:hover{background:var(--red-deep)}
.cbot-cta .c{background:var(--black);color:#fff}
.cbot-foot{display:flex;gap:8px;padding:12px 14px;border-top:1px solid var(--line);background:#fff}
.cbot-foot input{flex:1;border:1px solid var(--line);border-radius:100px;padding:10px 15px;font-family:inherit;font-size:14px;outline:none}
.cbot-foot input:focus{border-color:var(--red)}
.cbot-foot button{background:var(--red);color:#fff;border:none;border-radius:50%;width:40px;height:40px;cursor:pointer;flex:none;display:grid;place-items:center}
.cbot-foot button svg{width:18px;height:18px}
@media (prefers-reduced-motion: reduce){.cbot,.cbot-launch{transition:none}}
@media(max-width:480px){.cbot{right:3vw;left:3vw;width:auto;bottom:90px}}

/* inline hero call link, sits beside the hero buttons */
.hero-call{display:inline-flex;align-items:center;font-family:var(--font-display);font-weight:800;font-size:clamp(19px,2.2vw,24px);color:#fff;letter-spacing:-.01em;border:1.5px solid rgba(255,255,255,.45);border-radius:0;padding:12px 20px;line-height:1}

.hero-call:hover{border-color:var(--red-bright);color:var(--red-bright)}

/* hovering the banner halts rotation (JS clears the timer) — signal it visually */
.tquotes .btn-ghost{border-color:rgba(255,255,255,.55);color:#fff}
.tquotes .btn-ghost:hover{background:#fff;color:var(--ink)}

/* ---- contact-page consultation CTA panel ---- */
.cta-points{list-style:none;margin:0 0 24px;display:grid;gap:13px}
.cta-points li{display:flex;align-items:flex-start;gap:11px;font-size:15px;color:var(--ink);font-weight:500;line-height:1.4}
.cta-points li svg{flex:none;width:20px;height:20px;color:var(--red);margin-top:1px}

/* dash-free eyebrow (client: remove the little hyphen) + enlarged hero kicker */
.eyebrow.plain::before{display:none}
.hero .eyebrow.hero-lg{font-size:clamp(18px,2.3vw,27px);letter-spacing:.05em}

/* embedded Jobber consultation form */
.jobber-embed{border:1px solid var(--line);background:#fff;box-shadow:var(--shadow);min-height:70vh}
.jobber-embed iframe{display:block;width:100%;min-height:80vh;border:0}
.jobber-fallback{text-align:center;color:var(--muted);font-size:14px;margin-top:18px}
.jobber-fallback a{color:var(--red);font-weight:600}

/* floating click-to-call button (stacked above the chat launcher) */
.call-fab{position:fixed;right:22px;bottom:96px;z-index:120;width:62px;height:62px;border-radius:50%;background:var(--black);color:#fff;display:grid;place-items:center;box-shadow:0 16px 34px -12px rgba(0,0,0,.55);transition:transform .25s var(--ease),background .25s}
.call-fab:hover,.call-fab:focus-visible{transform:translateY(-3px);background:#000;color:#fff}
.call-fab svg{width:27px;height:27px}
@media (prefers-reduced-motion:reduce){.call-fab{transition:none}.call-fab:hover{transform:none}}

/* Google reviews trust chip in the hero (below the CTAs, over the dark side) */
.hero-google{display:inline-flex;align-items:center;gap:10px;margin-top:22px;padding:9px 15px;background:rgba(10,10,12,.55);border:1px solid rgba(255,255,255,.22);color:#fff;font-family:var(--font-body);transition:background .2s var(--ease),transform .2s var(--ease)}
.hero-google:hover{background:rgba(10,10,12,.72);transform:translateY(-2px)}
.hero-google .gb-g{width:22px;height:22px;flex:none}
.hero-google b{font-weight:800;font-size:15px;line-height:1}
.hero-google .hg-stars{color:#FFC107;letter-spacing:1px;font-size:14px}
.hero-google .hg-lbl{color:rgba(255,255,255,.82);font-size:13px;border-left:1px solid rgba(255,255,255,.25);padding-left:11px}
@media (prefers-reduced-motion:reduce){.hero-google{transition:none}.hero-google:hover{transform:none}}
@media(max-width:520px){.hero-google .hg-lbl{display:none}}

/* brand logo in the hero (left column, over the dark montage) */

/* big Construction Hibou logo watermark behind the hero text */
.hero .hero-inner{position:relative;z-index:2}
.hero-brand{position:absolute;left:-6%;top:50%;transform:translateY(-50%);width:min(78vw,880px);height:auto;z-index:1;opacity:.28;pointer-events:none;user-select:none}
@media(max-width:1100px){.hero-brand{left:50%;transform:translate(-50%,-50%);width:135vw;opacity:.16}}
