/* =============================================================================
   GLO EPOXY — styles.css
   One stylesheet for the whole site. Edit tokens in :root to re-theme.

   Sections:
     1.  Design tokens (color, type, space, radius, shadow)
     2.  Reset & base
     3.  Layout helpers (.wrap, .section, grids)
     4.  Signature effects (sheen, squeegee rule, flake, poured edge)
     5.  Header / navigation / mobile menu
     6.  Buttons
     7.  Hero
     8.  Proof stat band
     9.  Section headings / eyebrows
     10. Service cards
     11. Warranty / guarantee callout
     12. Gallery (filter chips, grid, before/after slider)
     13. Testimonials
     14. Contact page (form, service-area list)
     15. CTA band
     16. Footer + mobile sticky call bar
     17. Utility + reveal animation + reduced motion
   ========================================================================== */

/* -----------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* --- Brand color: electric blue + black + white --- */
  --blue:        #1361FF;   /* brand accent, glows, big display accent   */
  --blue-strong: #0B4FE0;   /* button fill (white text ≈ 5.3:1)          */
  --blue-bright: #5B93FF;   /* icons / labels on near-black              */
  --blue-ink:    #0A3FBF;   /* link text on white ≈ 7.5:1                */
  --blue-glow:   rgba(19, 97, 255, .45);

  --ink:    #0A0B0D;        /* page black                                 */
  --ink-2:  #121419;        /* raised dark panel                         */
  --ink-3:  #1B1F27;        /* card on dark                              */
  --paper:  #FFFFFF;
  --paper-2:#F3F6FC;        /* light alternating section                 */

  --fg-ink:        #F5F7FA; /* text on dark                              */
  --fg-ink-muted:  #A8AFBD; /* muted text on dark ≈ 7:1                  */
  --fg-paper:      #0A0B0D; /* text on light                            */
  --fg-paper-muted:#525A6C; /* muted text on light ≈ 7:1                */

  --line:      rgba(255, 255, 255, .12);
  --line-2:    rgba(255, 255, 255, .22);
  --line-dark: rgba(10, 11, 13, .12);

  --focus: #5B93FF;

  /* --- Fluid type scale --- */
  --step--1: clamp(.83rem, .80rem + .12vw, .90rem);
  --step-0:  clamp(1rem,   .97rem + .18vw, 1.08rem);
  --step-1:  clamp(1.18rem, 1.09rem + .45vw, 1.45rem);
  --step-2:  clamp(1.42rem, 1.24rem + .90vw, 2rem);
  --step-3:  clamp(1.72rem, 1.40rem + 1.6vw, 2.75rem);
  --step-4:  clamp(2.10rem, 1.55rem + 2.7vw, 3.75rem);
  --step-5:  clamp(2.60rem, 1.70rem + 4.5vw, 5rem);
  --step-6:  clamp(3.00rem, 1.60rem + 7.0vw, 6.75rem);

  /* One superfamily: Archivo carries both display and text */
  --font-display: "Archivo", "Archivo Fallback", system-ui, sans-serif;
  --font-body: "Archivo", "Archivo Fallback", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* --- Spacing --- */
  --sp-1: .25rem;  --sp-2: .5rem;  --sp-3: .75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;   --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 6rem;    --sp-10: 8rem;

  --wrap: 1200px;
  --wrap-narrow: 780px;
  --pad-x: clamp(1.15rem, 5vw, 3.5rem);

  --r-sm: 8px;  --r: 14px;  --r-lg: 22px;  --r-pill: 999px;

  --shadow-1: 0 1px 2px rgba(10, 11, 13, .06), 0 4px 14px rgba(10, 11, 13, .06);
  --shadow-2: 0 12px 34px -12px rgba(10, 11, 13, .28);
  --shadow-blue: 0 14px 40px -12px var(--blue-glow);

  --header-h: 68px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--paper);
  color: var(--fg-paper);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

a { color: var(--blue-ink); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { text-decoration: none; }

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

ul { list-style: none; }

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

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

.skip-link {
  position: absolute;
  left: 8px; top: -60px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: .7rem 1.1rem;
  border-radius: var(--r-sm);
  font-weight: 700;
  transition: top .18s ease;
}
.skip-link:focus { top: 8px; }

/* -----------------------------------------------------------------------------
   3. LAYOUT HELPERS
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: clamp(3.5rem, 9vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }

.section--dark {
  background: var(--ink);
  color: var(--fg-ink);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--paper-2 { background: var(--paper-2); }

.grid { display: grid; gap: clamp(1rem, 3vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.stack > * + * { margin-top: var(--sp-4); }
.lead { font-size: var(--step-1); color: var(--fg-paper-muted); }
.section--dark .lead { color: var(--fg-ink-muted); }

/* -----------------------------------------------------------------------------
   4. SIGNATURE EFFECTS  (the "wet resin" visual language)
   -------------------------------------------------------------------------- */

/* 4a. Moving glossy sheen — used on dark hero + dark bands */
.sheen { position: relative; overflow: hidden; isolation: isolate; }
.sheen::after {
  content: "";
  position: absolute;
  inset: -40% -10%;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(255, 255, 255, .07) 46%,
    rgba(91, 147, 255, .16) 50%,
    rgba(255, 255, 255, .05) 54%,
    transparent 62%);
  transform: translateX(-30%);
  animation: sheenSweep 9s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes sheenSweep {
  0%, 100% { transform: translateX(-35%); }
  50%      { transform: translateX(35%); }
}

/* 4b. Metallic-flake speckle for dark panels */
.flake {
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.20), transparent 60%),
    radial-gradient(1px 1px at 70% 60%, rgba(91,147,255,.28), transparent 60%),
    radial-gradient(1.5px 1.5px at 40% 80%, rgba(255,255,255,.14), transparent 60%),
    radial-gradient(1px 1px at 85% 25%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(1px 1px at 55% 15%, rgba(91,147,255,.22), transparent 60%);
  background-size: 240px 240px;
}

/* 4c. "Squeegee stroke" rule — glossy blue bar under section titles */
.stroke {
  display: block;
  width: 74px;
  height: 8px;
  border-radius: var(--r-pill);
  background: linear-gradient(180deg, var(--blue-bright), var(--blue) 45%, var(--blue-strong));
  box-shadow: 0 6px 18px -4px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,.5);
}

/* 4d. Poured-edge diagonal seam between sections */
.seam-top {
  clip-path: polygon(0 2.2vw, 100% 0, 100% 100%, 0 100%);
  margin-top: -2.2vw;
  position: relative;
  z-index: 1;
}

/* 4e. Gloss card border (blue gradient hairline + top highlight) */
.gloss {
  position: relative;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.gloss::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(91,147,255,.55), transparent 42%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* -----------------------------------------------------------------------------
   5. HEADER / NAV
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* transparent over dark hero, solid after scroll or on light pages */
.site-header[data-variant="over-dark"] { color: #fff; }
.site-header.is-scrolled,
.site-header[data-variant="solid"] {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  color: var(--fg-paper);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 6px 24px -18px rgba(10, 11, 13, .5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.32rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
}
.brand__mark {
  width: 30px; height: 30px;
  flex: none;
  border-radius: 8px;
  background: linear-gradient(150deg, var(--blue-bright), var(--blue) 55%, var(--blue-strong));
  box-shadow: 0 0 0 1px rgba(255,255,255,.18) inset, 0 6px 16px -6px var(--blue-glow);
  display: grid;
  place-items: center;
}
.brand__mark svg { width: 17px; height: 17px; }
.brand em { color: var(--blue-bright); font-style: normal; }
.site-header.is-scrolled .brand em,
.site-header[data-variant="solid"] .brand em { color: var(--blue-ink); }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.6vw, 2rem);
}
.nav__link {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: .96rem;
  padding: .4rem 0;
  position: relative;
  opacity: .82;
}
.nav__link:hover { opacity: 1; }
.nav__link[aria-current="page"] { opacity: 1; }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
}

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 800;
  font-size: .96rem;
  white-space: nowrap;
  text-decoration: none;
  color: inherit;
  padding: .55rem .95rem;
  border-radius: var(--r-pill);
  border: 1.5px solid currentColor;
}
.nav__phone svg { width: 15px; height: 15px; }
.nav__phone:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0; background: transparent;
  color: inherit;
  cursor: pointer;
  border-radius: var(--r-sm);
}
.nav-toggle svg { width: 26px; height: 26px; margin-inline: auto; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    color: var(--fg-ink);
    padding: .5rem var(--pad-x) 1.5rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__link {
    padding: 1rem .25rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.08rem;
    opacity: 1;
  }
  .nav__link[aria-current="page"]::after { display: none; }
  .nav__link[aria-current="page"] { color: var(--blue-bright); }
  .nav__phone {
    margin-top: 1rem;
    justify-content: center;
    padding: .9rem;
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    font-size: 1.05rem;
  }
}

/* -----------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  --_bg: var(--blue-strong);
  --_fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .01em;
  line-height: 1;
  padding: 1rem 1.6rem;
  min-height: 48px;
  border-radius: var(--r);
  border: 1.5px solid transparent;
  background: var(--_bg);
  color: var(--_fg);
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-strong) 100%);
  box-shadow: var(--shadow-blue), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.btn--primary:hover { box-shadow: 0 18px 46px -12px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,.4); }

.btn--ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}
.btn--ghost:hover { background: rgba(127, 127, 127, .12); }

.btn--lg { padding: 1.15rem 2rem; font-size: 1.06rem; min-height: 54px; }
.btn--block { width: 100%; }

/* -----------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--fg-ink);
  padding-top: calc(var(--header-h) + clamp(2.5rem, 8vw, 5rem));
  padding-bottom: clamp(3rem, 9vw, 6.5rem);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(80% 60% at 78% 8%, rgba(19, 97, 255, .30), transparent 60%),
    radial-gradient(70% 60% at 12% 100%, rgba(19, 97, 255, .16), transparent 62%),
    linear-gradient(180deg, #0c0e13, #08090c);
}
.hero__bg::after { /* perspective floor grid */
  content: "";
  position: absolute;
  left: 50%; bottom: -12%;
  width: 180%;
  height: 62%;
  transform: translateX(-50%) perspective(760px) rotateX(62deg);
  transform-origin: center bottom;
  background-image:
    linear-gradient(rgba(91, 147, 255, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 147, 255, .16) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to top, #000 5%, transparent 78%);
          mask-image: linear-gradient(to top, #000 5%, transparent 78%);
}
.hero .wrap { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-bright);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--blue-bright);
}
.section--dark .eyebrow { color: var(--blue-bright); }
.section:not(.section--dark) .eyebrow { color: var(--blue-ink); }
.section:not(.section--dark) .eyebrow::before { background: var(--blue-ink); }

.hero h1 {
  font-size: clamp(2.4rem, 1.5rem + 3.3vw, 4.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin: 1.1rem 0 1.2rem;
}
.hero h1 .hl {
  color: var(--blue-bright);
  -webkit-text-stroke: 0;
}
.hero__sub {
  font-size: var(--step-1);
  color: var(--fg-ink-muted);
  max-width: 46ch;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}
.hero__assure {
  margin-top: 1.5rem;
  font-size: .92rem;
  color: var(--fg-ink-muted);
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.2rem;
}
.hero__assure b { color: #fff; font-weight: 700; }

/* hero visual panel */
.hero__panel {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: linear-gradient(155deg, #1c2740 0%, #0e1626 45%, #0a0f1a 100%);
  box-shadow: var(--shadow-2), inset 0 1px 0 rgba(255, 255, 255, .10);
}
.hero__panel img { width: 100%; height: 100%; object-fit: cover; }
.hero__panel::after { /* wet reflection pooled at base */
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 44%;
  background: radial-gradient(120% 80% at 32% 120%, rgba(19, 97, 255, .42) 0%, rgba(19, 97, 255, .10) 42%, transparent 72%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero__chip {
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 2;
  background: rgba(10, 11, 13, .72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: .7rem .9rem;
  font-size: .82rem;
  line-height: 1.35;
  color: var(--fg-ink);
}
.hero__chip b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .02em;
  color: var(--blue-bright);
}

/* Inner-page dark header block */
.page-head {
  background: var(--ink);
  color: var(--fg-ink);
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 7vw, 4.5rem));
  padding-bottom: clamp(2.5rem, 7vw, 4.5rem);
}
.page-head .hero__bg { opacity: .8; }
.page-head .wrap { position: relative; z-index: 1; }
.page-head h1 {
  font-size: var(--step-5);
  text-transform: uppercase;
  color: #fff;
  margin: 1rem 0 1rem;
}
.page-head p { max-width: 54ch; color: var(--fg-ink-muted); font-size: var(--step-1); }
.page-head .stroke { margin-bottom: 1.4rem; }
.breadcrumb {
  font-size: .82rem;
  color: var(--fg-ink-muted);
  margin-top: 1.4rem;
}
.breadcrumb a { color: var(--fg-ink-muted); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* -----------------------------------------------------------------------------
   8. PROOF STAT BAND
   -------------------------------------------------------------------------- */
.proof {
  background: var(--ink-2);
  color: var(--fg-ink);
  border-block: 1px solid var(--line);
}
.proof .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof__item {
  padding: clamp(1.6rem, 4vw, 2.4rem) clamp(1rem, 3vw, 1.75rem);
  border-left: 1px solid var(--line);
}
.proof__item:first-child { border-left: 0; }
.proof__item b {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.proof__item span { font-size: .9rem; color: var(--fg-ink-muted); }
@media (max-width: 720px) {
  .proof .wrap { grid-template-columns: repeat(2, 1fr); }
  .proof__item:nth-child(3) { border-left: 0; }
  .proof__item:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* -----------------------------------------------------------------------------
   9. SECTION HEADINGS
   -------------------------------------------------------------------------- */
.s-head { max-width: 60ch; margin-bottom: clamp(2rem, 5vw, 3rem); }
.s-head .stroke { margin-top: 1rem; }
.s-head h2 { font-size: var(--step-4); text-transform: uppercase; margin-top: .6rem; }
.s-head p { margin-top: 1rem; }
.s-head--center { margin-inline: auto; text-align: center; }
.s-head--center .stroke { margin-inline: auto; }

/* -----------------------------------------------------------------------------
   10. SERVICE CARDS
   -------------------------------------------------------------------------- */
.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform .16s ease, box-shadow .2s ease, border-color .2s ease;
}
a.svc-card, .svc-card a { text-decoration: none; color: inherit; }
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: rgba(19, 97, 255, .4);
}
.svc-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(150deg, #14203a, #0b1220);
  overflow: hidden;
}
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 55%, rgba(91, 147, 255, .22) 78%, transparent 92%);
}
.svc-card__icon {
  position: absolute;
  left: 12px; top: 12px;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(10, 11, 13, .62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line-2);
}
.svc-card__icon svg { width: 20px; height: 20px; color: var(--blue-bright); }
.svc-card__body { padding: 1.25rem 1.35rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.svc-card__body h3 { font-size: var(--step-1); }
.svc-card__body p { font-size: .95rem; color: var(--fg-paper-muted); }
.svc-card__more {
  margin-top: auto;
  padding-top: .75rem;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue-ink);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.svc-card:hover .svc-card__more svg { transform: translateX(3px); }
.svc-card__more svg { width: 14px; height: 14px; transition: transform .16s ease; }

/* detailed list variant on Services page */
.svc-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) clamp(220px, 30%, 340px);
  gap: 1.5rem;
  padding: 2.2rem 0;
  border-top: 1px solid var(--line-dark);
  align-items: start;
}
.svc-row:last-child { border-bottom: 1px solid var(--line-dark); }
.svc-row__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--blue);
  line-height: 1;
}
.svc-row h3 { font-size: var(--step-2); text-transform: uppercase; }
.svc-row p { margin-top: .5rem; color: var(--fg-paper-muted); max-width: 62ch; }
.svc-row__tags { margin-top: .8rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.svc-row__media {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, #14203a, #0b1220);
  border: 1px solid var(--line-dark);
}
.svc-row__media img { width: 100%; height: 100%; object-fit: cover; }
.tag {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: var(--r-pill);
  background: rgba(19, 97, 255, .10);
  color: var(--blue-ink);
}
@media (max-width: 820px) {
  .svc-row { grid-template-columns: 48px 1fr; gap: .5rem 1rem; }
  .svc-row__media { grid-column: 1 / -1; margin-top: 1rem; aspect-ratio: 16 / 9; }
}
@media (max-width: 560px) {
  .svc-row { grid-template-columns: 1fr; gap: .4rem; }
  .svc-row__num { font-size: 1.5rem; }
}

/* -----------------------------------------------------------------------------
   11. WARRANTY CALLOUT
   -------------------------------------------------------------------------- */
.warranty {
  position: relative;
  border-radius: var(--r-lg);
  padding: clamp(1.8rem, 5vw, 3rem);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-strong) 55%, #072e8f 100%);
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-blue);
}
.warranty::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.28), transparent 70%);
}
.warranty__grid {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: center;
}
.warranty__badge {
  width: 96px; height: 96px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .35);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: .9;
  text-align: center;
}
.warranty__badge b { display: block; font-size: 2.1rem; }
.warranty__badge span { font-size: .7rem; letter-spacing: .12em; }
.warranty h2 { font-size: var(--step-3); text-transform: uppercase; color: #fff; }
.warranty p { margin-top: .5rem; color: rgba(255, 255, 255, .9); max-width: 52ch; }
.warranty .btn--ghost { color: #fff; border-color: #fff; }
.warranty .btn--ghost:hover { background: rgba(255, 255, 255, .16); }
@media (max-width: 820px) {
  .warranty__grid { grid-template-columns: 1fr; text-align: left; }
}

/* -----------------------------------------------------------------------------
   12. GALLERY
   -------------------------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2rem;
}
.chip {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .86rem;
  letter-spacing: .02em;
  padding: .6rem 1.05rem;
  min-height: 42px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line-dark);
  background: var(--paper);
  color: var(--fg-paper);
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.chip:hover { border-color: var(--blue); }
.chip[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.75rem, 2vw, 1.25rem);
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: linear-gradient(150deg, #14203a, #0b1220);
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-dark);
}
.gallery-item.is-hidden { display: none; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem .9rem .8rem;
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(10, 11, 13, .82), transparent);
}
.gallery-item figcaption span {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: .2rem;
}

/* Before / after slider */
.ba {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-2);
  touch-action: pan-y;
  user-select: none;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__label {
  position: absolute;
  top: 12px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .6rem;
  border-radius: var(--r-pill);
  background: rgba(10, 11, 13, .7);
  color: #fff;
}
.ba__label--before { left: 12px; }
.ba__label--after { right: 12px; }
.ba__line {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos, 50%);
  width: 3px;
  background: var(--blue);
  box-shadow: 0 0 16px 2px var(--blue-glow);
  transform: translateX(-50%);
}
.ba__handle {
  position: absolute;
  top: 50%; left: var(--pos, 50%);
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue);
  display: grid;
  place-items: center;
  color: var(--blue-ink);
  box-shadow: var(--shadow-2);
}
.ba__handle svg { width: 22px; height: 22px; }
.ba__range { /* visually hidden but keyboard-usable */
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}
.ba__range:focus-visible + .ba__line { outline: 3px solid var(--focus); }

/* -----------------------------------------------------------------------------
   13. TESTIMONIALS
   -------------------------------------------------------------------------- */
.quote {
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section--dark .quote {
  background: var(--ink-3);
  border-color: var(--line);
  color: var(--fg-ink);
}
.quote__stars { display: flex; gap: 2px; color: var(--blue); }
.quote__stars svg { width: 18px; height: 18px; }
.quote blockquote { font-size: 1.05rem; line-height: 1.55; }
.quote figcaption { font-size: .88rem; color: var(--fg-paper-muted); }
.section--dark .quote figcaption { color: var(--fg-ink-muted); }
.quote figcaption b { color: inherit; font-weight: 800; display: block; font-size: .95rem; }

/* -----------------------------------------------------------------------------
   14. CONTACT
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label {
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .02em;
}
.field .req { color: var(--blue-ink); }
.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--fg-paper);
  background: var(--paper);
  border: 1.5px solid var(--line-dark);
  border-radius: var(--r);
  padding: .85rem .9rem;
  min-height: 48px;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(19, 97, 255, .16);
}
.field .hint { font-size: .82rem; color: var(--fg-paper-muted); }
.field .err {
  font-size: .82rem;
  font-weight: 600;
  color: #B4231B;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #B4231B;
  box-shadow: 0 0 0 4px rgba(180, 35, 27, .14);
}

.form-summary {
  border: 1.5px solid #B4231B;
  background: #FEF2F1;
  color: #7A160F;
  border-radius: var(--r);
  padding: 1rem 1.1rem;
}
.form-summary h2 { font-size: 1.05rem; color: #7A160F; }
.form-summary ul { margin-top: .5rem; padding-left: 1.1rem; list-style: disc; }
.form-summary a { color: #7A160F; }
.form-summary[hidden] { display: none; }

.contact-aside {
  background: var(--ink);
  color: var(--fg-ink);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}
.contact-aside h2 { color: #fff; font-size: var(--step-2); text-transform: uppercase; }
.contact-aside .big-call {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  color: #fff;
  text-decoration: none;
  margin: .5rem 0 .25rem;
}
.contact-aside .big-call svg { width: 26px; height: 26px; color: var(--blue-bright); }
.contact-aside dl { margin-top: 1.25rem; display: grid; gap: .9rem; }
.contact-aside dt {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-bright);
}
.contact-aside dd { color: var(--fg-ink-muted); margin-top: .1rem; }

.area-list {
  columns: 2;
  column-gap: 2rem;
  margin-top: 1rem;
}
.area-list li {
  break-inside: avoid;
  padding: .4rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.area-list li svg { width: 14px; height: 14px; color: var(--blue-ink); flex: none; }
@media (max-width: 520px) { .area-list { columns: 1; } }

/* -----------------------------------------------------------------------------
   15. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--ink);
  color: var(--fg-ink);
  text-align: center;
}
.cta-band h2 { font-size: var(--step-4); text-transform: uppercase; color: #fff; }
.cta-band p { color: var(--fg-ink-muted); margin: 1rem auto 1.75rem; max-width: 46ch; }
.cta-band .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
}

/* -----------------------------------------------------------------------------
   16. FOOTER + MOBILE CALL BAR
   -------------------------------------------------------------------------- */
.site-footer {
  background: #08090c;
  color: var(--fg-ink-muted);
  padding-block: clamp(2.5rem, 6vw, 4rem) 6rem;
  border-top: 1px solid var(--line);
}
.site-footer .wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 760px) { .site-footer .wrap { grid-template-columns: 1fr; gap: 1.75rem; } }
.site-footer .brand { color: #fff; margin-bottom: .9rem; }
.site-footer h3 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .8rem;
}
.site-footer a { color: var(--fg-ink-muted); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer li { padding: .3rem 0; }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
}

.call-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: 0;
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem .5rem;
  font-weight: 800;
  font-size: .95rem;
  text-decoration: none;
  color: #fff;
  min-height: 56px;
}
.call-bar a svg { width: 18px; height: 18px; }
.call-bar a + a { border-left: 1px solid var(--line); }
.call-bar a.is-call { background: var(--blue); }
@media (max-width: 860px) {
  .call-bar { display: flex; }
  /* keep page content clear of the fixed call bar */
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
  .site-footer { padding-bottom: clamp(2.5rem, 6vw, 4rem); }
}

/* -----------------------------------------------------------------------------
   17. UTILITIES + REVEAL + REDUCED MOTION
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-6 { margin-bottom: var(--sp-6); }
.narrow-measure { max-width: 62ch; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .sheen::after,
  .gallery-item img,
  .svc-card { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .gallery-item:hover img { transition: none; }
}

/* Archivo fallback metrics to reduce layout shift before webfont loads */
@font-face {
  font-family: "Archivo Fallback";
  src: local("Arial Bold"), local("Helvetica Neue Bold");
  font-weight: 700 900;
  size-adjust: 97%;
  ascent-override: 92%;
}
