/* GENERATED FILE -- do not edit by hand.
   Extracted verbatim from the <style> block in index.html so the service
   pages share the homepage's design system. The homepage keeps its CSS
   inline on purpose (no render-blocking request on the money page).
   Regenerate after any homepage CSS change:  python3 tools/build-css.py
*/

    /* ================================================
       TOKENS
    ================================================ */
    :root {
      /* surface: near-black with the brand's indigo in it */
      --bg-0: #0D0B16;
      --bg-1: #121022;
      --bg-2: #1A1730;

      --glass:        rgba(167,157,224,0.05);
      --glass-strong: rgba(167,157,224,0.09);
      --glass-nav:    rgba(13,11,22,0.58);

      /* brand */
      --brand:  #484065;   /* logo indigo */
      --acc:    #A79DE0;   /* lavender accent for dark surface */
      --acc-l:  #C5BDF0;
      --acc-d:  #6F63B8;
      --star:   #F2B544;
      --ok:     #4ADE80;

      /* light CTA (the conversion color: near-white on dark) */
      --cta-top: #F4F1FD;
      --cta-btm: #D8D1F4;
      --cta-ink: #221C3F;

      --t1: #F4F2FA;
      --t2: #BCB8CF;
      --t3: #908CA8;

      --border:    rgba(255,255,255,0.08);
      --border-s:  rgba(255,255,255,0.14);
      --border-a:  rgba(167,157,224,0.35);

      --r-sm: 10px;
      --r:    16px;
      --r-lg: 22px;
      --r-xl: 30px;
      --r-pill: 999px;

      --shadow-card: 0 1px 0 rgba(255,255,255,.05) inset, 0 24px 60px -22px rgba(5,3,12,.7);
      --shadow-hover: 0 1px 0 rgba(255,255,255,.07) inset, 0 34px 76px -26px rgba(5,3,12,.85), 0 0 0 1px rgba(167,157,224,.16);
      --shadow-cta: 0 1px 0 rgba(255,255,255,.6) inset, 0 14px 36px -12px rgba(167,157,224,.38);

      --display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
      --body:    'Barlow', 'Helvetica Neue', sans-serif;
      --logo:    'Poppins', sans-serif;

      --ease: cubic-bezier(.19,1,.22,1);

      --z-nav: 100;
      --z-sticky: 150;
      --z-menu: 200;
      --z-lightbox: 300;
    }

    /* ================================================
       BASE
    ================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg-0);
      color: var(--t1);
      font-family: var(--body);
      font-size: 16.5px;
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    button { font-family: inherit; }
    ::selection { background: var(--acc-d); color: #fff; }

    a:focus-visible, button:focus-visible, input:focus-visible,
    select:focus-visible, textarea:focus-visible {
      outline: 2px solid var(--acc);
      outline-offset: 3px;
      border-radius: 6px;
    }

    .skip-link {
      position: absolute;
      left: -9999px;
      top: 12px;
      z-index: calc(var(--z-menu) + 1);
      background: var(--cta-top);
      color: var(--cta-ink);
      font-weight: 700;
      padding: 12px 20px;
      border-radius: var(--r-pill);
    }
    .skip-link:focus { left: 12px; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* ================================================
       LAYOUT UTILITIES
    ================================================ */
    .wrap {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 28px;
    }

    .h1 {
      font-family: var(--display);
      font-size: clamp(46px, 7.4vw, 78px);
      font-weight: 800;
      line-height: .95;
      letter-spacing: -.015em;
      text-wrap: balance;
    }
    .h2 {
      font-family: var(--display);
      font-size: clamp(34px, 4.6vw, 54px);
      font-weight: 800;
      line-height: 1.02;
      letter-spacing: -.012em;
      text-wrap: balance;
    }
    .h1 em, .h2 em { font-style: normal; color: var(--acc); }

    /* Keyword sub-line. The taglines carry the voice but no service or place
       terms, and headings are the most valuable slots on the page. This sits
       INSIDE the h1/h2 so there is still exactly one heading per section —
       it reads as a supporting descriptor, not a second competing headline. */
    .h-kw {
      display: block;
      margin-top: 15px;
      font-family: var(--body);
      font-size: clamp(15px, 1.45vw, 18.5px);
      font-weight: 500;
      line-height: 1.5;
      letter-spacing: 0;
      color: var(--t2);
      text-transform: none;
      text-wrap: pretty;
    }
    .h1 .h-kw { margin-top: 20px; max-width: 34ch; }
    .sh-center .h-kw { margin-left: auto; margin-right: auto; }
    @media (max-width: 640px) { .h-kw { margin-top: 12px; } }

    .lead {
      font-size: clamp(16px, 1.35vw, 18px);
      color: var(--t2);
      line-height: 1.72;
      max-width: 64ch;
      text-wrap: pretty;
    }

    /* section header variants: cadence varies on purpose */
    .sh-center { text-align: center; max-width: 700px; margin: 0 auto 64px; }
    .sh-center .lead { margin: 16px auto 0; }
    .sh-split {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
      margin-bottom: 52px;
    }
    .sh-split .lead { margin-top: 14px; }

    /* ================================================
       BUTTONS
    ================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 28px;
      border-radius: var(--r-pill);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
    }
    .btn:active { transform: translateY(1px) scale(.99); }
    .btn-cta {
      background: linear-gradient(180deg, var(--cta-top) 0%, var(--cta-btm) 100%);
      color: var(--cta-ink);
      box-shadow: var(--shadow-cta);
    }
    .btn-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 1px 0 rgba(255,255,255,.65) inset, 0 20px 46px -12px rgba(167,157,224,.5);
    }
    .btn-ghost {
      background: var(--glass);
      color: var(--t1);
      border: 1px solid var(--border-s);
      box-shadow: 0 1px 0 rgba(255,255,255,.06) inset;
      backdrop-filter: blur(18px) saturate(150%);
      -webkit-backdrop-filter: blur(18px) saturate(150%);
    }
    .btn-ghost:hover {
      background: var(--glass-strong);
      transform: translateY(-2px);
      border-color: rgba(255,255,255,.24);
    }
    .btn svg { flex-shrink: 0; }

    /* ================================================
       GLASS NAV
    ================================================ */
    #hdr {
      position: fixed;
      top: 14px;
      left: 0; right: 0;
      z-index: var(--z-nav);
      padding: 0 18px;
      transition: top .4s var(--ease);
    }
    #hdr .hdr-inner {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 10px 12px 10px 18px;
      border-radius: var(--r-pill);
      background: var(--glass-nav);
      border: 1px solid rgba(255,255,255,.09);
      backdrop-filter: blur(22px) saturate(170%);
      -webkit-backdrop-filter: blur(22px) saturate(170%);
      box-shadow:
        0 1px 0 rgba(255,255,255,.08) inset,
        0 0 0 1px rgba(5,3,12,.25),
        0 22px 56px -22px rgba(5,3,12,.8);
      transition: background .35s var(--ease), border-color .35s var(--ease);
    }
    #hdr.on { top: 8px; }
    #hdr.on .hdr-inner {
      background: rgba(13,11,22,.78);
      border-color: rgba(255,255,255,.12);
    }
    #hdr .hdr-inner::before {
      content: '';
      position: absolute;
      inset: 0 0 auto 0;
      height: 50%;
      border-radius: var(--r-pill) var(--r-pill) 0 0;
      background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, transparent 100%);
      pointer-events: none;
    }

    /* brand lockup */
    .brand-lockup {
      display: flex;
      align-items: center;
      gap: 11px;
      position: relative;
      z-index: 1;
      flex-shrink: 0;
    }
    .brand-mark { width: 36px; height: 36px; color: var(--acc); flex-shrink: 0; }
    /* new header wordmark logo (transparent, purple, green window accent) */
    .brand-logo { height: 46px; width: auto; display: block; color: var(--acc-l); flex-shrink: 0; }
    .brand-logo .lw { fill: currentColor; }
    .brand-logo .lroof { stroke: currentColor; }
    .brand-logo .lwin { fill: var(--ok); }
    .brand-text { line-height: 1; }
    .brand-name {
      font-family: var(--logo);
      font-size: 17px;
      font-weight: 700;
      letter-spacing: .035em;
      color: var(--t1);
    }
    .brand-sub {
      font-family: var(--logo);
      font-size: 9.5px;
      font-weight: 600;
      letter-spacing: .42em;
      color: var(--acc);
      margin-top: 3px;
    }

    .nav { display: flex; align-items: center; gap: 8px; position: relative; z-index: 1; }
    .nav-links {
      display: flex;
      gap: 2px;
      list-style: none;
      padding: 4px;
      border-radius: var(--r-pill);
      background: rgba(255,255,255,.025);
      border: 1px solid rgba(255,255,255,.05);
    }
    .nav-links a {
      display: block;
      padding: 9px 15px;
      border-radius: var(--r-pill);
      font-size: 14px;
      font-weight: 500;
      color: var(--t2);
      transition: color .2s var(--ease), background .2s var(--ease);
    }
    .nav-links a:hover { color: var(--t1); background: rgba(255,255,255,.05); }
    .nav-call {
      display: flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(180deg, var(--cta-top) 0%, var(--cta-btm) 100%);
      color: var(--cta-ink);
      padding: 11px 18px;
      border-radius: var(--r-pill);
      font-size: 14.5px;
      font-weight: 700;
      white-space: nowrap;
      box-shadow: var(--shadow-cta);
      transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    }
    .nav-call:hover {
      transform: translateY(-1px);
      box-shadow: 0 1px 0 rgba(255,255,255,.65) inset, 0 16px 38px -12px rgba(167,157,224,.5);
    }
    .nav-call svg { width: 14px; height: 14px; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: transparent;
      border: none;
      padding: 10px;
      border-radius: 10px;
    }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--t1); border-radius: 2px; transition: transform .25s var(--ease), opacity .25s var(--ease); }
    .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      position: fixed;
      inset: 74px 16px auto 16px;
      z-index: var(--z-menu);
      background: rgba(13,11,22,.88);
      border: 1px solid var(--border-s);
      backdrop-filter: blur(24px) saturate(170%);
      -webkit-backdrop-filter: blur(24px) saturate(170%);
      border-radius: var(--r-lg);
      padding: 14px;
      box-shadow: 0 24px 60px -20px rgba(5,3,12,.85);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s .25s;
    }
    .mobile-menu.open {
      opacity: 1;
      visibility: visible;
      transform: none;
      transition: opacity .25s var(--ease), transform .25s var(--ease);
    }
    .mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
    .mobile-menu a {
      display: block;
      padding: 14px 16px;
      border-radius: var(--r);
      font-size: 16px;
      font-weight: 600;
      color: var(--t1);
    }
    .mobile-menu a:hover { background: rgba(255,255,255,.05); }
    .mm-call {
      margin-top: 10px;
      display: flex !important;
      align-items: center;
      justify-content: center;
      gap: 9px;
      background: linear-gradient(180deg, var(--cta-top), var(--cta-btm));
      color: var(--cta-ink) !important;
      border-radius: var(--r-pill) !important;
      font-weight: 700 !important;
    }

    /* ================================================
       HERO
    ================================================ */
    .hero {
      position: relative;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      padding: 150px 0 110px;
      overflow: hidden;
      background: radial-gradient(ellipse 95% 64% at 50% -4%, #241E42 0%, var(--bg-0) 62%);
    }
    .hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
    /* real job-site photo, faded into the dark purple surface */
    .hbg-photo {
      position: absolute; inset: 0;
      background: url('images/hero-truck-jobsite.jpg') center 32% / cover no-repeat;
      opacity: .46;
    }
    .hbg-photo::after {
      content: '';
      position: absolute; inset: 0;
      background:
        linear-gradient(90deg, rgba(13,11,22,.62) 0%, rgba(13,11,22,.28) 46%, rgba(13,11,22,.6) 100%),
        linear-gradient(180deg, rgba(13,11,22,.52) 0%, rgba(13,11,22,.38) 42%, #0D0B16 97%);
    }
    .hbg-glow1 {
      position: absolute;
      top: -16%; left: 38%; transform: translateX(-50%);
      width: 1050px; height: 780px;
      background: radial-gradient(ellipse, rgba(111,99,184,.2) 0%, transparent 60%);
      filter: blur(24px);
      animation: drift 20s ease-in-out infinite alternate;
    }
    .hbg-glow2 {
      position: absolute;
      bottom: -24%; right: -12%;
      width: 700px; height: 700px;
      background: radial-gradient(ellipse, rgba(72,64,101,.3) 0%, transparent 62%);
      filter: blur(24px);
      animation: drift 26s ease-in-out infinite alternate-reverse;
    }
    @keyframes drift {
      0%   { transform: translate(-50%, 0) rotate(0); }
      100% { transform: translate(-44%, -3%) rotate(7deg); }
    }

    .hero-layout {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 56px;
      align-items: center;
      position: relative;
      z-index: 1;
      width: 100%;
    }

    .avail-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--glass);
      border: 1px solid var(--border-s);
      border-radius: var(--r-pill);
      padding: 8px 16px 8px 13px;
      font-size: 13px;
      font-weight: 600;
      color: var(--t1);
      margin-bottom: 30px;
      backdrop-filter: blur(18px) saturate(150%);
      -webkit-backdrop-filter: blur(18px) saturate(150%);
      box-shadow: 0 1px 0 rgba(255,255,255,.07) inset;
      animation: fade-up .8s var(--ease) both;
    }
    .avail-dot {
      width: 7px; height: 7px;
      background: var(--ok);
      border-radius: 50%;
      box-shadow: 0 0 8px rgba(74,222,128,.8);
      animation: blink 2.2s ease-in-out infinite;
    }
    @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

    .hero-title { margin-bottom: 22px; animation: fade-up .9s var(--ease) .08s both; }
    .hero-lead {
      margin-bottom: 38px;
      max-width: 56ch;
      animation: fade-up .9s var(--ease) .16s both;
    }
    .hero-ctas {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 46px;
      animation: fade-up .9s var(--ease) .24s both;
    }
    .hero-call {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(180deg, var(--cta-top) 0%, var(--cta-btm) 100%);
      color: var(--cta-ink);
      padding: 18px 30px;
      border-radius: var(--r-pill);
      font-size: 19px;
      font-weight: 800;
      letter-spacing: .01em;
      white-space: nowrap;
      font-variant-numeric: tabular-nums;
      box-shadow: var(--shadow-cta);
      transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    }
    .hero-call:hover {
      transform: translateY(-3px);
      box-shadow: 0 1px 0 rgba(255,255,255,.65) inset, 0 24px 54px -14px rgba(167,157,224,.55);
    }
    .hero-call:active { transform: translateY(0) scale(.99); }
    .hero-call svg { width: 19px; height: 19px; }
    .hero-call .hc-city {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      opacity: .62;
      display: block;
      line-height: 1;
      margin-bottom: 3px;
    }
    .hero-call .hc-num { display: block; line-height: 1; }

    /* credentials: quiet single row, not a stat block */
    .hero-creds {
      display: flex;
      align-items: center;
      gap: 10px 22px;
      flex-wrap: wrap;
      animation: fade-up .9s var(--ease) .34s both;
    }
    .cred {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--t2);
      white-space: nowrap;
    }
    .cred svg { color: var(--acc); flex-shrink: 0; }

    @keyframes fade-up {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: none; }
    }

    /* hero quote card */
    .hero-qcard {
      background: rgba(18,15,32,.62);
      border: 1px solid var(--border-s);
      border-radius: var(--r-xl);
      padding: 34px 30px 30px;
      backdrop-filter: blur(26px) saturate(180%);
      -webkit-backdrop-filter: blur(26px) saturate(180%);
      box-shadow:
        0 1px 0 rgba(255,255,255,.08) inset,
        0 32px 72px -26px rgba(5,3,12,.85);
      animation: fade-up .9s var(--ease) .4s both;
      position: relative;
      overflow: hidden;
      max-width: 460px;
      justify-self: end;
      width: 100%;
    }
    .hero-qcard::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(167,157,224,.12), transparent 52%);
      pointer-events: none;
    }
    .qcard-ttl {
      font-family: var(--display);
      font-size: 27px;
      font-weight: 800;
      letter-spacing: -.01em;
      margin-bottom: 5px;
      position: relative;
    }
    .qcard-sub {
      font-size: 14px;
      color: var(--t2);
      margin-bottom: 22px;
      position: relative;
    }
    .qfg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 13px; position: relative; }
    .qfg label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--t2);
    }
    .hero-qcard input,
    .hero-qcard select {
      background: rgba(255,255,255,.05);
      border: 1px solid var(--border);
      border-radius: 11px;
      padding: 13px 14px;
      color: var(--t1);
      font-family: var(--body);
      font-size: 15px;
      outline: none;
      width: 100%;
      transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
    }
    .hero-qcard select option { background: var(--bg-2); color: var(--t1); }
    .hero-qcard input:focus, .hero-qcard select:focus {
      border-color: var(--border-a);
      background: rgba(255,255,255,.07);
      box-shadow: 0 0 0 3px rgba(167,157,224,.14);
    }
    .hero-qcard input::placeholder { color: var(--t3); }
    .qrow { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
    .qsub {
      width: 100%;
      margin-top: 6px;
      background: linear-gradient(180deg, var(--cta-top) 0%, var(--cta-btm) 100%);
      color: var(--cta-ink);
      border: none;
      border-radius: var(--r-pill);
      padding: 15px;
      font-family: var(--body);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: var(--shadow-cta);
      transition: transform .25s var(--ease), box-shadow .25s var(--ease);
      position: relative;
    }
    .qsub:hover:not(:disabled) {
      transform: translateY(-2px);
      box-shadow: 0 1px 0 rgba(255,255,255,.65) inset, 0 20px 46px -12px rgba(167,157,224,.5);
    }
    .qsub:active { transform: translateY(0) scale(.99); }
    .form-note {
      margin-top: 12px;
      font-size: 12.5px;
      color: var(--t3);
      text-align: center;
      position: relative;
    }
    .form-msg {
      display: none;
      margin-top: 14px;
      padding: 13px 16px;
      border-radius: 12px;
      font-size: 14.5px;
      font-weight: 600;
      position: relative;
    }
    .form-msg.ok {
      display: block;
      background: rgba(74,222,128,.1);
      border: 1px solid rgba(74,222,128,.3);
      color: #A7F3C5;
    }
    .form-msg.err {
      display: block;
      background: rgba(244,114,114,.1);
      border: 1px solid rgba(244,114,114,.32);
      color: #FECACA;
    }

    /* ================================================
       TRUST BAR
    ================================================ */
    .trust-bar { position: relative; padding: 0 18px; margin-top: -34px; z-index: 5; }
    .trust-inner {
      max-width: 1200px;
      margin: 0 auto;
      background: var(--glass);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      backdrop-filter: blur(18px) saturate(150%);
      -webkit-backdrop-filter: blur(18px) saturate(150%);
      box-shadow: var(--shadow-card);
      overflow: hidden;
    }
    .trust-list { display: flex; align-items: stretch; flex-wrap: wrap; }
    .trust-item {
      flex: 1;
      min-width: 195px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 17px 18px;
      border-right: 1px solid var(--border);
      font-size: 14px;
      font-weight: 600;
      color: var(--t1);
      white-space: nowrap;
    }
    .trust-item:last-child { border-right: none; }
    .trust-item svg { color: var(--acc); flex-shrink: 0; }

    /* ================================================
       SERVICES
    ================================================ */
    .services { padding: 130px 0 96px; position: relative; }
    .services::before {
      content: '';
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 1px; height: 72px;
      background: linear-gradient(var(--acc), transparent);
      opacity: .55;
    }
    /* three core jobs: asymmetric 5/7 zig-zag rows */
    .svc-rows { display: flex; flex-direction: column; gap: 18px; margin-bottom: 18px; }
    .svc-row {
      display: grid;
      grid-template-columns: 5fr 7fr;
      border-radius: var(--r-lg);
      border: 1px solid var(--border);
      background: var(--glass);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      overflow: hidden;
      transition: border-color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
      position: relative;
      /* force corner clipping of the scaled image while the row lifts on hover (Safari) */
      -webkit-mask-image: -webkit-radial-gradient(white, black);
              mask-image: radial-gradient(white, black);
    }
    .svc-row::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 12% 0%, rgba(167,157,224,.08), transparent 46%);
      opacity: 0;
      transition: opacity .35s var(--ease);
      pointer-events: none;
    }
    .svc-row:hover {
      background: var(--glass-strong);
      border-color: var(--border-a);
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }
    .svc-row:hover::after { opacity: 1; }
    .svc-copy { padding: 36px 34px; position: relative; z-index: 1; }
    .svc-kind {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--acc);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .svc-name {
      font-family: var(--display);
      font-size: clamp(26px, 2.6vw, 34px);
      font-weight: 800;
      letter-spacing: -.01em;
      line-height: 1.04;
      margin-bottom: 12px;
    }
    /* Plain definition sentence. Answer engines lift "X is …" patterns, and a
       homeowner who doesn't know the trade term gets it in one line. */
    .svc-def {
      font-size: 16px;
      color: var(--t1);
      line-height: 1.65;
      max-width: 58ch;
      margin-bottom: 14px;
      font-weight: 500;
    }
    .svc-desc { font-size: 15.5px; color: var(--t2); line-height: 1.7; max-width: 58ch; }
    .svc-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 20px;
      font-size: 15px;
      font-weight: 600;
      color: var(--acc);
      text-decoration: none;
      transition: gap .25s var(--ease), color .25s var(--ease);
    }
    .svc-link:hover, .svc-link:focus-visible { gap: 13px; color: var(--acc-l); }
    .svc-pic { position: relative; min-height: 230px; overflow: hidden; }
    .svc-pic img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .7s var(--ease);
    }
    .svc-row:hover .svc-pic img { transform: scale(1.045); }
    .svc-pic::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(90deg, var(--bg-1) 0%, rgba(18,16,34,.15) 26%, transparent 55%);
      pointer-events: none;
    }
    .svc-row.flip { grid-template-columns: 7fr 5fr; }
    .svc-row.flip .svc-copy { order: 2; }
    .svc-row.flip .svc-pic { order: 1; }
    .svc-row.flip .svc-pic::before {
      background: linear-gradient(270deg, var(--bg-1) 0%, rgba(18,16,34,.15) 26%, transparent 55%);
    }

    /* the rest: compact glass strip */
    .svc-more {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px 0;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      background: rgba(255,255,255,.02);
      padding: 18px 24px;
    }
    .svc-more-lbl {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--t3);
      margin-right: 22px;
    }
    .svc-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14.5px;
      font-weight: 600;
      color: var(--t2);
      padding: 7px 16px 7px 0;
      margin-right: 16px;
      white-space: nowrap;
    }
    .svc-tag::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--acc);
    }

    /* ================================================
       WORK GALLERY
    ================================================ */
    .work { padding: 96px 0; position: relative; background: var(--bg-1); }
    .work-featured {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 240px;
      gap: 14px;
      margin-bottom: 40px;
    }
    .work-card {
      position: relative;
      border-radius: var(--r-lg);
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--bg-2);
      cursor: pointer;
      padding: 0;
      text-align: left;
      display: block;
      width: 100%;
      transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
      /* keep the zoomed image clipped to the rounded corners while the card lifts (Safari) */
      -webkit-mask-image: -webkit-radial-gradient(white, black);
              mask-image: radial-gradient(white, black);
    }
    .work-card.wide { grid-column: span 2; }
    .work-card:hover, .work-card:focus-visible {
      transform: translateY(-5px);
      border-color: var(--border-a);
      box-shadow: var(--shadow-hover);
    }
    .work-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .65s var(--ease);
    }
    .work-card:hover img { transform: scale(1.05); }
    .work-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(13,11,22,0) 44%, rgba(13,11,22,.78) 100%);
      pointer-events: none;
    }
    .work-cap {
      position: absolute;
      inset: auto 0 0 0;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 16px 18px 15px;
      pointer-events: none;
    }
    .work-cap-name {
      font-family: var(--display);
      font-size: 19px;
      font-weight: 700;
      color: #fff;
      letter-spacing: .01em;
      line-height: 1.1;
    }
    .work-cap-loc { font-size: 12.5px; color: var(--t2); font-weight: 500; display: block; margin-top: 2px; }
    .work-zoom {
      width: 36px; height: 36px;
      flex-shrink: 0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(13,11,22,.55);
      border: 1px solid rgba(255,255,255,.18);
      color: #fff;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      opacity: 0;
      transform: translateY(6px);
      transition: opacity .3s var(--ease), transform .3s var(--ease);
    }
    .work-card:hover .work-zoom, .work-card:focus-visible .work-zoom { opacity: 1; transform: none; }

    /* more-photos strip: auto-scrolling, click-through carousel */
    .work-more-lbl {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--t3);
      margin-bottom: 16px;
    }
    .work-carousel-wrap { position: relative; }
    .work-carousel {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      scroll-snap-type: x proximity;
      scroll-behavior: smooth;
      padding: 2px 2px 10px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .work-carousel::-webkit-scrollbar { display: none; }
    .wc-item {
      flex: 0 0 clamp(220px, 26vw, 300px);
      scroll-snap-align: start;
      aspect-ratio: 4/3;
    }
    .wc-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 46px; height: 46px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      background: rgba(13,11,22,.72);
      border: 1px solid var(--border-s);
      color: #fff;
      cursor: pointer;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      transition: background .2s var(--ease), border-color .2s var(--ease), opacity .2s var(--ease);
      z-index: 2;
    }
    .wc-nav:hover { background: var(--acc-d); border-color: var(--acc-d); }
    .wc-nav:disabled { opacity: .3; cursor: default; }
    .wc-prev { left: -14px; }
    .wc-next { right: -14px; }
    @media (prefers-reduced-motion: reduce) {
      .work-carousel { scroll-behavior: auto; }
    }

    /* ================================================
       ABOUT
    ================================================ */
    .about { padding: 130px 0; position: relative; overflow: hidden; }
    .about::before {
      content: '';
      position: absolute;
      top: 50%; right: -240px; transform: translateY(-50%);
      width: 720px; height: 720px;
      background: radial-gradient(ellipse, rgba(111,99,184,.1) 0%, transparent 64%);
      pointer-events: none;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 72px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .about-lead { margin: 18px 0 34px; }
    .owner-quote {
      position: relative;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      background: var(--glass);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      padding: 26px 28px 22px;
      margin-bottom: 34px;
      box-shadow: 0 1px 0 rgba(255,255,255,.05) inset;
    }
    .owner-quote p {
      font-size: 16.5px;
      line-height: 1.7;
      color: var(--t1);
      font-style: italic;
    }
    .owner-quote cite {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 14px;
      font-style: normal;
      font-size: 14px;
      font-weight: 700;
      color: var(--acc);
    }
    .owner-quote cite::before {
      content: '';
      width: 26px; height: 1px;
      background: var(--acc);
      opacity: .6;
    }
    .about-points { display: flex; flex-direction: column; gap: 14px; }
    .feat {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 18px 20px;
      border-radius: var(--r);
      background: var(--glass);
      border: 1px solid var(--border);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
    }
    .feat:hover {
      background: var(--glass-strong);
      border-color: var(--border-s);
      transform: translateX(4px);
    }
    .feat-icon {
      width: 44px; height: 44px;
      background: rgba(167,157,224,.1);
      border: 1px solid rgba(167,157,224,.24);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: var(--acc);
      flex-shrink: 0;
    }
    .feat-copy h3 { font-size: 16.5px; font-weight: 700; color: var(--t1); margin-bottom: 4px; }
    .feat-copy p  { font-size: 14.5px; color: var(--t2); line-height: 1.65; }

    .about-photos { display: flex; flex-direction: column; gap: 24px; }
    .about-photo {
      position: relative;
      border-radius: var(--r-xl);
      overflow: hidden;
      border: 1px solid var(--border-s);
      box-shadow: var(--shadow-card);
      transform: rotate(1.2deg);
    }
    .about-photo img { width: 100%; height: auto; aspect-ratio: 1/1.04; object-fit: cover; }
    .about-photo.alt { transform: rotate(-1.1deg); }
    .about-photo.alt img { aspect-ratio: 4/2.9; }
    .about-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(200deg, rgba(167,157,224,.1) 0%, transparent 36%, rgba(13,11,22,.46) 100%);
      pointer-events: none;
    }
    .about-photo-cap {
      position: absolute;
      left: 18px; right: 18px; bottom: 16px;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      border-radius: var(--r);
      background: rgba(13,11,22,.6);
      border: 1px solid rgba(255,255,255,.14);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      font-size: 13.5px;
      font-weight: 600;
      color: #fff;
    }
    .about-photo-cap svg { color: var(--acc); flex-shrink: 0; }

    /* ================================================
       REVIEWS
    ================================================ */
    .reviews { padding: 110px 0 120px; background: var(--bg-1); }
    .g-badge {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: var(--glass);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 15px 22px;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
    }
    .g-badge:hover {
      background: var(--glass-strong);
      border-color: var(--border-a);
      transform: translateY(-2px);
    }
    .g-ico {
      width: 34px; height: 34px;
      background: #fff;
      border-radius: 50%;
      padding: 6px;
      flex-shrink: 0;
    }
    .g-stars { font-size: 15px; color: var(--star); letter-spacing: 2px; line-height: 1; }
    .g-cnt { font-size: 12.5px; color: var(--t3); margin-top: 4px; }

    .rev-feature {
      border: 1px solid var(--border-a);
      border-radius: var(--r-xl);
      background: linear-gradient(135deg, rgba(167,157,224,.08), rgba(167,157,224,.02));
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      padding: clamp(28px, 4vw, 46px);
      margin-bottom: 18px;
      position: relative;
      overflow: hidden;
    }
    .rev-feature::before {
      content: '\201C';
      position: absolute;
      top: -34px; right: 22px;
      font-family: var(--display);
      font-size: 200px;
      color: rgba(167,157,224,.12);
      line-height: 1;
      pointer-events: none;
    }
    .rev-feature blockquote p {
      font-size: clamp(17px, 1.7vw, 21px);
      line-height: 1.66;
      color: var(--t1);
      max-width: 72ch;
    }
    .rev-feature blockquote p + p { margin-top: 14px; }
    .rev-byline {
      display: flex;
      align-items: center;
      gap: 13px;
      margin-top: 22px;
    }
    .rc-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(167,157,224,.3), rgba(167,157,224,.12));
      border: 1px solid var(--border-a);
      color: var(--acc-l);
      font-family: var(--display);
      font-size: 16px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .rc-name { font-size: 15px; font-weight: 700; color: var(--t1); }
    .rc-meta { font-size: 12.5px; color: var(--t3); margin-top: 2px; }
    .rc-stars { color: var(--star); font-size: 13px; letter-spacing: 2px; }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 16px;
    }
    .rc {
      background: var(--glass);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 26px;
      display: flex;
      flex-direction: column;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
    }
    .rc:hover {
      background: var(--glass-strong);
      border-color: var(--border-s);
      transform: translateY(-4px);
    }
    .rc .rc-stars { margin-bottom: 13px; }
    .rc-body {
      font-size: 15px;
      color: var(--t2);
      line-height: 1.7;
      flex: 1;
      margin-bottom: 20px;
    }
    .rc-author { display: flex; align-items: center; gap: 12px; }
    .rc .rc-avatar { width: 40px; height: 40px; font-size: 14px; }

    /* ================================================
       PROCESS
    ================================================ */
    .process { padding: 130px 0; }
    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      background: rgba(255,255,255,.018);
      overflow: hidden;
    }
    .step {
      padding: 34px 28px 38px;
      border-right: 1px solid var(--border);
      position: relative;
      transition: background .3s var(--ease);
    }
    .step:last-child { border-right: none; }
    .step:hover { background: var(--glass); }
    .step-num {
      font-family: var(--display);
      font-size: 15px;
      font-weight: 700;
      color: var(--acc);
      letter-spacing: .12em;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .step-num::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, rgba(167,157,224,.4), transparent);
    }
    .step h3 {
      font-family: var(--display);
      font-size: 23px;
      font-weight: 800;
      letter-spacing: .005em;
      margin-bottom: 10px;
    }
    .step p { font-size: 14.5px; color: var(--t2); line-height: 1.68; }

    /* ================================================
       REPAIR OR REPLACE  (table-snippet candidate)
    ================================================ */
    .sr-only {
      position: absolute;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      white-space: nowrap;
      border: 0;
    }
    .cmp { padding: 110px 0; }
    /* The table must scroll inside its own box; the page never scrolls sideways. */
    .cmp-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      background: var(--glass);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: var(--shadow-card);
    }
    .cmp-table {
      width: 100%;
      min-width: 620px;
      border-collapse: collapse;
      text-align: left;
    }
    .cmp-table th, .cmp-table td {
      padding: 17px 22px;
      border-bottom: 1px solid var(--border);
      vertical-align: top;
      font-size: 15px;
      line-height: 1.6;
    }
    .cmp-table thead th {
      font-family: var(--display);
      font-size: 17px;
      font-weight: 700;
      letter-spacing: .01em;
      color: var(--acc);
      background: rgba(167,157,224,.06);
      white-space: nowrap;
    }
    .cmp-table tbody th {
      font-weight: 700;
      color: var(--t1);
      white-space: nowrap;
      width: 1%;
    }
    .cmp-table td { color: var(--t2); }
    .cmp-table tbody tr:last-child th,
    .cmp-table tbody tr:last-child td { border-bottom: 0; }
    .cmp-table tbody tr:hover td,
    .cmp-table tbody tr:hover th { background: rgba(167,157,224,.035); }
    .cmp-note {
      margin-top: 26px;
      font-size: 15px;
      color: var(--t2);
      line-height: 1.7;
      max-width: 62ch;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
    @media (max-width: 640px) {
      .cmp { padding: 84px 0; }
      .cmp-table th, .cmp-table td { padding: 14px 16px; font-size: 14.5px; }
    }

    /* ================================================
       FAQ
    ================================================ */
    .faq { padding: 110px 0 130px; background: var(--bg-1); }
    .faq-grid {
      display: grid;
      grid-template-columns: minmax(280px, 5fr) 7fr;
      gap: 64px;
      align-items: start;
    }
    .faq-intro .lead { margin-top: 14px; margin-bottom: 28px; }
    .faq-list { display: flex; flex-direction: column; gap: 10px; }
    .faq-item {
      border: 1px solid var(--border);
      border-radius: var(--r);
      background: var(--glass);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      overflow: hidden;
      transition: border-color .3s var(--ease), background .3s var(--ease);
    }
    .faq-item[open] { border-color: var(--border-a); background: var(--glass-strong); }
    .faq-item summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 18px 22px;
      font-size: 16.5px;
      font-weight: 700;
      color: var(--t1);
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    /* The question is a real h3 so answer engines see a heading sitting directly
       above each answer. It inherits the summary's type, so nothing shifts. */
    .faq-q {
      margin: 0;
      font-family: inherit;
      font-size: inherit;
      font-weight: inherit;
      line-height: 1.35;
      letter-spacing: normal;
      color: inherit;
    }
    .faq-x {
      width: 26px; height: 26px;
      flex-shrink: 0;
      border-radius: 50%;
      border: 1px solid var(--border-s);
      display: flex; align-items: center; justify-content: center;
      color: var(--acc);
      transition: transform .3s var(--ease), background .3s var(--ease);
    }
    .faq-item[open] .faq-x { transform: rotate(45deg); background: rgba(167,157,224,.12); }
    .faq-a { padding: 0 22px 20px; font-size: 15px; color: var(--t2); line-height: 1.7; max-width: 65ch; }

    /* Citations to the bodies that actually back the claims (BP, WSIB, BBB).
       Real references, so no rel="nofollow" — just noopener on the new tab. */
    .auth-link {
      color: inherit;
      text-decoration: underline;
      text-decoration-color: var(--border-a);
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
      transition: color .2s var(--ease), text-decoration-color .2s var(--ease);
    }
    .auth-link:hover, .auth-link:focus-visible { color: var(--acc); text-decoration-color: var(--acc); }

    /* ================================================
       EMERGENCY BAND
    ================================================ */
    .emg {
      padding: 84px 0;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #14112a 0%, #221c44 55%, #14112a 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .emg::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 22% 50%, rgba(167,157,224,.16) 0%, transparent 54%),
        radial-gradient(ellipse at 84% 50%, rgba(72,64,101,.35) 0%, transparent 56%);
    }
    .emg::after {
      content: '';
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(167,157,224,.06) 1px, transparent 1px);
      background-size: 100% 56px;
      mask-image: radial-gradient(ellipse 56% 76% at 50% 50%, black 16%, transparent 100%);
      -webkit-mask-image: radial-gradient(ellipse 56% 76% at 50% 50%, black 16%, transparent 100%);
      opacity: .7;
    }
    .emg-inner {
      position: relative; z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 36px;
      flex-wrap: wrap;
    }
    .emg-text h2 {
      font-family: var(--display);
      font-size: clamp(32px, 4.4vw, 52px);
      font-weight: 800;
      letter-spacing: -.012em;
      margin-bottom: 10px;
      line-height: 1.02;
    }
    .emg-text p { font-size: 16.5px; color: var(--t2); max-width: 52ch; }
    .emg-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
    .emg-phone {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(180deg, var(--cta-top) 0%, var(--cta-btm) 100%);
      color: var(--cta-ink);
      padding: 17px 28px;
      border-radius: var(--r-pill);
      font-size: 18px;
      font-weight: 800;
      white-space: nowrap;
      font-variant-numeric: tabular-nums;
      box-shadow: var(--shadow-cta);
      transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    }
    .emg-phone:hover { transform: translateY(-3px); }
    .emg-phone.alt {
      background: var(--glass);
      color: var(--t1);
      border: 1px solid var(--border-s);
      box-shadow: 0 1px 0 rgba(255,255,255,.06) inset;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }
    .emg-phone svg { width: 19px; height: 19px; }
    .emg-phone .hc-city {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      opacity: .6;
      display: block;
      line-height: 1;
      margin-bottom: 3px;
    }
    .emg-phone .hc-num { display: block; line-height: 1; }

    /* ================================================
       SERVICE AREA
    ================================================ */
    .area { padding: 130px 0; position: relative; }
    .area-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .area-desc { margin-top: 16px; margin-bottom: 34px; max-width: 50ch; }
    .cities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .city-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--glass);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 11px 14px;
      font-size: 13.5px;
      font-weight: 500;
      color: var(--t2);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
    }
    .city-pill:hover { border-color: var(--border-a); color: var(--t1); background: var(--glass-strong); }
    .city-pip {
      width: 6px; height: 6px;
      background: var(--acc);
      border-radius: 50%;
      flex-shrink: 0;
      box-shadow: 0 0 6px rgba(167,157,224,.7);
    }
    .city-pill.home {
      border-color: var(--border-a);
      color: var(--acc-l);
      font-weight: 700;
      background: rgba(167,157,224,.07);
    }

    .radar-wrap {
      border-radius: var(--r-xl);
      border: 1px solid var(--border);
      background: var(--glass);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      overflow: hidden;
      position: relative;
      display: flex; align-items: center; justify-content: center;
      padding: 40px 20px;
      min-height: 440px;
    }
    .radar-wrap::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at center, rgba(167,157,224,.09), transparent 70%);
      pointer-events: none;
    }
    .radar-scene { position: relative; width: 350px; height: 350px; }
    .ring {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      border: 1px solid rgba(167,157,224,.16);
    }
    .ring-1 { width: 105px; height: 105px; }
    .ring-2 { width: 185px; height: 185px; border-color: rgba(167,157,224,.11); }
    .ring-3 { width: 270px; height: 270px; border-color: rgba(167,157,224,.07); }
    .ring-4 { width: 350px; height: 350px; border-color: rgba(167,157,224,.04); }
    .radar-sweep {
      position: absolute;
      top: 50%; left: 50%;
      width: 185px; height: 185px;
      border-radius: 50%;
      background: conic-gradient(from 0deg, transparent 0deg, rgba(167,157,224,.07) 50deg, rgba(167,157,224,.2) 90deg, transparent 90deg);
      animation: spin 4.5s linear infinite;
    }
    @keyframes spin {
      from { transform: translate(-50%, -50%) rotate(0deg); }
      to   { transform: translate(-50%, -50%) rotate(360deg); }
    }
    .radar-pin {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 56px; height: 56px;
      background: rgba(167,157,224,.16);
      border: 2px solid var(--acc);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      z-index: 2;
      color: var(--acc-l);
    }
    .city-dot {
      position: absolute;
      display: flex; flex-direction: column; align-items: center; gap: 3px;
      z-index: 3;
    }
    .dot-pip {
      width: 8px; height: 8px;
      background: var(--acc);
      border-radius: 50%;
      animation: pulse-pip 2.4s ease-in-out infinite;
    }
    .dot-lbl { font-size: 11px; font-weight: 600; color: var(--t2); white-space: nowrap; letter-spacing: .05em; text-shadow: 0 1px 6px rgba(13,11,22,.9); }
    @keyframes pulse-pip {
      0%,100% { box-shadow: 0 0 0 0 rgba(167,157,224,.5); }
      50%     { box-shadow: 0 0 0 6px rgba(167,157,224,0); }
    }

    /* ================================================
       CONTACT
    ================================================ */
    .contact { padding: 120px 0 130px; background: var(--bg-1); }
    .contact-grid {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 64px;
      align-items: start;
    }
    .contact-lead { margin-top: 16px; max-width: 46ch; }
    .cinfo { display: flex; flex-direction: column; gap: 13px; margin-top: 36px; }
    .contact-note { margin-top: 16px; font-size: 14px; color: var(--t3); }
    .ci {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 15px 17px;
      border-radius: var(--r);
      background: var(--glass);
      border: 1px solid var(--border);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
    }
    .ci:hover { background: var(--glass-strong); border-color: var(--border-s); transform: translateX(4px); }
    .ci-icon {
      width: 44px; height: 44px;
      background: rgba(167,157,224,.1);
      border: 1px solid rgba(167,157,224,.24);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: var(--acc);
      flex-shrink: 0;
    }
    .ci-lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; color: var(--t3); margin-bottom: 2px; }
    .ci-val { font-size: 16px; font-weight: 700; color: var(--t1); font-variant-numeric: tabular-nums; }

    .form-card {
      background: var(--glass);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: 38px;
      backdrop-filter: blur(20px) saturate(160%);
      -webkit-backdrop-filter: blur(20px) saturate(160%);
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
    }
    .form-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(167,157,224,.09), transparent 50%);
      pointer-events: none;
    }
    .form-ttl {
      font-family: var(--display);
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 6px;
      letter-spacing: -.01em;
      position: relative;
    }
    .form-sub { font-size: 14px; color: var(--t2); margin-bottom: 28px; position: relative; }
    .fgrid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      position: relative;
    }
    .fg { display: flex; flex-direction: column; gap: 6px; }
    .fg.full { grid-column: 1 / -1; }
    .fg label { font-size: 12px; font-weight: 700; color: var(--t2); text-transform: uppercase; letter-spacing: .07em; }
    .fg label .opt { color: var(--t3); font-weight: 500; text-transform: none; letter-spacing: 0; }
    .fg input, .fg select, .fg textarea {
      background: rgba(255,255,255,.04);
      border: 1px solid var(--border);
      border-radius: 11px;
      padding: 13px 15px;
      color: var(--t1);
      font-family: var(--body);
      font-size: 15px;
      outline: none;
      width: 100%;
      transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
    }
    .fg select option { background: var(--bg-2); color: var(--t1); }
    .fg input:focus, .fg select:focus, .fg textarea:focus {
      border-color: var(--border-a);
      background: rgba(255,255,255,.06);
      box-shadow: 0 0 0 3px rgba(167,157,224,.14);
    }
    .fg input::placeholder, .fg textarea::placeholder { color: var(--t3); }
    .fg textarea { resize: vertical; min-height: 110px; }
    .fsub {
      width: 100%;
      margin-top: 8px;
      background: linear-gradient(180deg, var(--cta-top) 0%, var(--cta-btm) 100%);
      color: var(--cta-ink);
      border: none;
      border-radius: var(--r-pill);
      padding: 16px;
      font-family: var(--body);
      font-size: 16px; font-weight: 700;
      cursor: pointer;
      box-shadow: var(--shadow-cta);
      transition: transform .25s var(--ease), box-shadow .25s var(--ease);
      position: relative;
    }
    .fsub:hover:not(:disabled) {
      transform: translateY(-2px);
      box-shadow: 0 1px 0 rgba(255,255,255,.65) inset, 0 20px 46px -12px rgba(167,157,224,.5);
    }
    .fsub:active { transform: translateY(0) scale(.99); }
    .fsub:disabled, .qsub:disabled { opacity: .65; cursor: wait; }

    /* ================================================
       FOOTER
    ================================================ */
    .footer {
      background: rgba(5,3,12,.4);
      border-top: 1px solid var(--border);
      padding: 76px 0 30px;
      position: relative;
    }
    .footer::before {
      content: '';
      position: absolute;
      top: 0; left: 50%; transform: translate(-50%, -50%);
      width: 56%; height: 1px;
      background: linear-gradient(90deg, transparent, var(--acc), transparent);
      opacity: .5;
    }
    .footer-cols {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 44px;
      margin-bottom: 48px;
    }
    .footer-brand p { font-size: 14.5px; color: var(--t2); line-height: 1.7; margin-top: 16px; max-width: 300px; }
    .social { display: flex; align-items: center; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
    .social-icon {
      width: 40px; height: 40px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 12px;
      background: var(--glass);
      border: 1px solid var(--border);
      color: var(--t2);
      transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
    }
    .social-icon:hover { color: var(--acc); border-color: var(--border-a); background: var(--glass-strong); transform: translateY(-2px); }
    .social-logo {
      height: 40px;
      display: flex; align-items: center; justify-content: center;
      padding: 0 14px;
      border-radius: 12px;
      background: #fff;
      border: 1px solid var(--border);
      transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
    }
    .social-logo:hover { transform: translateY(-2px); border-color: var(--border-a); box-shadow: 0 10px 24px -10px rgba(5,3,12,.5); }
    .social-logo img { height: 20px; width: auto; display: block; }
    .social-caption { font-size: 12px; color: var(--t3); margin-top: 10px; }
    .fcol h2 {
      font-size: 11.5px; font-weight: 700;
      font-family: var(--body);
      text-transform: uppercase; letter-spacing: .14em;
      color: var(--t1); margin-bottom: 16px;
    }
    .flinks { display: flex; flex-direction: column; gap: 10px; list-style: none; }
    .flinks a, .flinks li { font-size: 14.5px; color: var(--t2); transition: color .2s; }
    .flinks a:hover { color: var(--t1); }
    .footer-btm {
      border-top: 1px solid var(--border);
      padding-top: 26px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
    }
    .footer-btm p { font-size: 13px; color: var(--t3); }
    .badges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .badge {
      background: rgba(167,157,224,.08);
      border: 1px solid rgba(167,157,224,.26);
      color: var(--acc-l);
      padding: 5px 13px;
      border-radius: var(--r-pill);
      font-size: 11.5px; font-weight: 700;
      letter-spacing: .04em;
      white-space: nowrap;
    }

    /* ================================================
       MOBILE STICKY CTA
    ================================================ */
    .sticky-bar {
      display: none;
      position: fixed;
      inset: auto 10px 10px 10px;
      z-index: var(--z-sticky);
      background: var(--glass-nav);
      backdrop-filter: blur(20px) saturate(170%);
      -webkit-backdrop-filter: blur(20px) saturate(170%);
      border: 1px solid var(--border-s);
      border-radius: var(--r-pill);
      padding: 8px;
      box-shadow: 0 1px 0 rgba(255,255,255,.07) inset, 0 24px 60px -20px rgba(5,3,12,.85);
    }
    .sticky-bar-inner { display: flex; gap: 8px; }
    .sticky-bar a {
      flex: 1;
      display: flex; align-items: center; justify-content: center;
      gap: 8px; padding: 13px 8px;
      border-radius: var(--r-pill);
      font-size: 15px; font-weight: 700;
      white-space: nowrap;
    }
    .sb-call {
      background: linear-gradient(180deg, var(--cta-top), var(--cta-btm));
      color: var(--cta-ink);
      box-shadow: 0 1px 0 rgba(255,255,255,.5) inset;
      font-variant-numeric: tabular-nums;
    }
    .sb-quote { background: rgba(255,255,255,.07); color: var(--t1); border: 1px solid var(--border); }

    /* ================================================
       LIGHTBOX
    ================================================ */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: var(--z-lightbox);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 22px;
      background: rgba(7,5,14,.88);
      backdrop-filter: blur(16px) saturate(140%);
      -webkit-backdrop-filter: blur(16px) saturate(140%);
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s var(--ease), visibility 0s .3s;
    }
    .lightbox.open { opacity: 1; visibility: visible; transition: opacity .3s var(--ease); }
    .lb-head {
      width: 100%;
      max-width: 1060px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 14px;
    }
    .lb-title { font-family: var(--display); font-size: clamp(21px,3vw,28px); font-weight: 800; color: #fff; line-height: 1.05; }
    .lb-sub { font-size: 13.5px; color: var(--t2); margin-top: 3px; }
    .lb-counter { font-size: 13.5px; font-weight: 600; color: var(--t2); white-space: nowrap; font-variant-numeric: tabular-nums; }
    .lb-counter b { color: var(--acc-l); }
    .lb-close {
      position: absolute;
      top: 18px; right: 18px;
      width: 46px; height: 46px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      background: var(--glass);
      border: 1px solid var(--border-s);
      color: #fff;
      cursor: pointer;
      transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
      z-index: 3;
    }
    .lb-close:hover { background: var(--glass-strong); border-color: var(--border-a); transform: rotate(90deg); }
    .lb-stage {
      position: relative;
      width: 100%;
      max-width: 1060px;
      flex: 1;
      min-height: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .lb-img {
      max-width: 100%;
      max-height: 100%;
      width: auto; height: auto;
      object-fit: contain;
      border-radius: var(--r);
      border: 1px solid var(--border-s);
      box-shadow: 0 30px 80px -20px rgba(5,3,12,.9);
      background: var(--bg-2);
    }
    .lb-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px; height: 50px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      background: rgba(13,11,22,.72);
      border: 1px solid var(--border-s);
      color: #fff;
      cursor: pointer;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      transition: background .2s var(--ease), border-color .2s var(--ease);
      z-index: 2;
    }
    .lb-nav:hover { background: var(--acc-d); border-color: var(--acc-d); }
    .lb-prev { left: -6px; }
    .lb-next { right: -6px; }
    .lb-thumbs {
      display: flex;
      gap: 9px;
      margin-top: 16px;
      max-width: 1060px;
      width: 100%;
      overflow-x: auto;
      padding: 4px 2px 2px;
      scrollbar-width: thin;
      justify-content: center;
    }
    .lb-thumb {
      flex: 0 0 auto;
      width: 76px; height: 54px;
      border-radius: 9px;
      overflow: hidden;
      border: 2px solid transparent;
      opacity: .45;
      cursor: pointer;
      transition: opacity .2s var(--ease), border-color .2s var(--ease);
      padding: 0;
      background: var(--bg-2);
    }
    .lb-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .lb-thumb:hover { opacity: .85; }
    .lb-thumb.active { opacity: 1; border-color: var(--acc); }
    body.lb-lock { overflow: hidden; }

    /* ================================================
       SCROLL REVEAL (enhances visible defaults)
    ================================================ */
    .js .rev {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .8s var(--ease), transform .8s var(--ease);
    }
    .js .rev.in { opacity: 1; transform: none; }
    .js .d1 { transition-delay: .07s; }
    .js .d2 { transition-delay: .14s; }
    .js .d3 { transition-delay: .21s; }

    /* ================================================
       RESPONSIVE
    ================================================ */
    @media (max-width: 1024px) {
      .hero-layout { grid-template-columns: 1fr; gap: 44px; }
      .hero { min-height: 0; }
      .hero-qcard { justify-self: stretch; max-width: 560px; margin: 0 auto; }
      .about-grid, .area-grid { grid-template-columns: 1fr; gap: 52px; }
      .contact-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
      .footer-cols { grid-template-columns: 1fr 1fr; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .steps { grid-template-columns: 1fr 1fr; }
      .step:nth-child(2n) { border-right: none; }
      .step:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
      .work-featured { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
      .work-featured .work-card.wide { grid-column: 1 / -1; }
      .about-photo { width: 100%; max-width: 560px; margin: 0 auto; transform: none; }
    }
    @media (max-width: 768px) {
      body { font-size: 16px; }
      .wrap { padding: 0 20px; }
      #hdr { padding: 0 12px; }
      #hdr .hdr-inner { padding: 8px 8px 8px 14px; }
      .brand-sub { letter-spacing: .34em; }
      .nav-call span { display: none; }
      .nav-call { padding: 11px 13px; }
      .hero { padding: 120px 0 80px; }
      .hero-title { font-size: clamp(44px, 12.5vw, 54px); }
      .hero-ctas { flex-direction: column; align-items: stretch; }
      .hero-call { justify-content: center; }
      .btn { justify-content: center; }
      .hero-creds { gap: 8px 18px; }
      .cred { font-size: 12.5px; }
      .qrow { grid-template-columns: 1fr; }
      .trust-item { flex: 1 1 50%; min-width: 50%; border-bottom: 1px solid var(--border); font-size: 13px; }
      .trust-item:nth-child(2n) { border-right: none; }
      .trust-item:nth-last-child(-n+2) { border-bottom: none; }
      .services, .about, .process, .area { padding: 88px 0; }
      .reviews, .faq, .contact { padding: 88px 0; }
      .work { padding: 80px 0; }
      .svc-row, .svc-row.flip { grid-template-columns: 1fr; }
      .svc-row.flip .svc-copy { order: 1; }
      .svc-row.flip .svc-pic { order: 2; }
      .svc-pic { min-height: 200px; }
      .svc-pic::before, .svc-row.flip .svc-pic::before {
        background: linear-gradient(0deg, transparent 55%, var(--bg-1) 100%);
      }
      .svc-copy { padding: 26px 22px; }
      .svc-more { padding: 16px 20px; }
      .svc-more-lbl { width: 100%; margin: 0 0 4px; }
      .work-featured { grid-template-columns: 1fr; grid-auto-rows: 240px; }
      .work-card.wide { grid-column: auto; }
      .wc-item { flex-basis: 78vw; }
      .wc-nav { width: 40px; height: 40px; }
      .steps { grid-template-columns: 1fr; }
      .step { border-right: none; border-bottom: 1px solid var(--border); }
      .step:last-child { border-bottom: none; }
      .cities { grid-template-columns: 1fr 1fr; }
      .fgrid { grid-template-columns: 1fr; }
      .fg.full { grid-column: 1; }
      .form-card { padding: 26px 22px; }
      .hero-qcard { padding: 26px 20px 22px; }
      .footer-cols { grid-template-columns: 1fr; gap: 34px; }
      .footer-btm { flex-direction: column; text-align: center; }
      .sticky-bar { display: block; }
      body { padding-bottom: 84px; }
      .emg-inner { flex-direction: column; align-items: stretch; text-align: center; }
      .emg-text p { margin: 0 auto; }
      .emg-ctas { flex-direction: column; }
      .emg-phone { justify-content: center; }
      .lightbox { padding: 14px; }
      .lb-head { padding-right: 54px; }
      .lb-nav { width: 42px; height: 42px; }
      .lb-prev { left: 4px; }
      .lb-next { right: 4px; }
      .lb-thumbs { justify-content: flex-start; }
      .lb-thumb { width: 62px; height: 44px; }
      .radar-wrap { min-height: 380px; }
      .radar-scene { width: 290px; height: 290px; }
      .ring-4 { width: 290px; height: 290px; }
      .ring-3 { width: 230px; height: 230px; }
    }
    @media (max-width: 380px) {
      .badge-area { display: none; }
      .brand-name { font-size: 15px; }
      .brand-sub { font-size: 8.5px; }
      .hero-call { font-size: 17px; padding: 16px 22px; }
      .sb-call { font-size: 14px; }
      .sb-quote { font-size: 14px; }
    }
  