/* ===== Tokens ===== */
:root {
  --red: #d81e26;
  --red-dark: #a4141b;
  --navy: #0c1624;
  --navy-soft: #16243a;
  --white: #ffffff;
  --concrete-100: #f3f4f5;
  --concrete-300: #d7dade;
  --concrete-500: #9aa1a9;
  --concrete-700: #565d66;
  --spray-blue: #4f86bd;
  --nav-bg: #fafafa;

  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

html, body { overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

section { position: relative; }

:focus-visible {
  outline: 3px solid var(--spray-blue);
  outline-offset: 3px;
}

button, input, textarea, select {
  font-family: inherit;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s var(--ease), background 0.18s var(--ease);
}
.btn:hover { transform: scale(1.04); }
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(216, 30, 38, 0.6);
}
.btn-primary:hover {
  box-shadow: 0 14px 32px -8px rgba(216, 30, 38, 0.8);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: var(--red);
  background: rgba(216,30,38,0.1);
  box-shadow: 0 10px 26px -10px rgba(216,30,38,0.55);
}
.btn-tel {
  font-family: var(--font-mono);
  color: var(--navy);
  border: 1px solid var(--concrete-300);
  padding: 12px 18px;
  border-radius: 3px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.btn-tel:hover {
  border-color: var(--red);
  background: rgba(216,30,38,0.06);
  transform: scale(1.03);
  box-shadow: 0 6px 18px -8px rgba(216,30,38,0.45);
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--nav-bg);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), padding 0.35s var(--ease);
  padding: 18px 0;
}
.nav.scrolled {
  box-shadow: 0 8px 24px -12px rgba(12,22,36,0.22);
  border-bottom-color: var(--concrete-300);
  padding: 10px 0;
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 42px;
  width: auto;
  transition: height 0.35s var(--ease);
}
.nav.scrolled .nav-logo img { height: 34px; }

.nav-links {
  display: none;
  align-items: center;
  gap: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--red); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: var(--red);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: none; align-items: center; }

.nav-toggle {
  display: inline-flex;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px 8px;
}

@media (min-width: 880px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--concrete-300);
  padding: 14px 24px 22px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--navy);
  padding: 12px 4px;
  border-bottom: 1px solid var(--concrete-100);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: color 0.2s var(--ease);
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .btn-tel { margin-top: 10px; text-align: center; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  isolation: isolate;
}

.hero-surface {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 34px),
    repeating-linear-gradient(25deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 34px),
    linear-gradient(150deg, #1b2738 0%, #0c1624 55%, #0a0f18 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(6,10,18,0.32) 0%, rgba(6,10,18,0.02) 24%, rgba(6,10,18,0.04) 68%, rgba(6,10,18,0.4) 100%);
}

/* scoped scrim sitting only behind the text column, so the video reads clearly everywhere else.
   heavy on the left — the video's white/red logo frames otherwise wash out the headline */
.hero-text-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  background: rgba(6,10,18,0.85);
}

.hero-clean-corner {
  position: absolute;
  right: -12%;
  bottom: -18%;
  width: 75%;
  height: 90%;
  z-index: -1;
  background: radial-gradient(ellipse at bottom right, rgba(216,30,38,0.16), transparent 60%);
}

.hero .wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 90px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 440px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  max-width: 15ch;
  text-shadow: 0 2px 22px rgba(6,10,18,0.9), 0 1px 4px rgba(6,10,18,0.7);
}
.hero h1 span {
  color: var(--red);
  display: block;
  text-shadow: 0 2px 22px rgba(6,10,18,0.95), 0 0 2px rgba(255,255,255,0.35);
}

.hero-sub {
  color: var(--white);
  font-size: 0.98rem;
  max-width: 38ch;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0,0,0,1), 0 0 20px rgba(0,0,0,0.95);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.hero-readout {
  font-family: var(--font-mono);
  color: var(--white);
  font-size: 0.8rem;
  text-shadow: 0 2px 8px rgba(0,0,0,1), 0 0 20px rgba(0,0,0,0.95);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.hero-readout .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #38d16a;
  box-shadow: 0 0 0 4px rgba(56,209,106,0.18);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.45; }
}

/* Mobile hero gallery (before/after slider) */
.hero-gallery-mobile {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}
.hero-gallery-mobile .side {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.hero-gallery-mobile .side .lbl {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 2px;
  color: var(--white);
}
.hero-gallery-mobile .side.before {
  background: linear-gradient(160deg, #8b8175, #6e685f 60%, #59544c);
}
.hero-gallery-mobile .side.before .lbl { background: rgba(0,0,0,0.4); }
.hero-gallery-mobile .side.after {
  background: linear-gradient(160deg, #fbfcfd, #eef1f3 55%, #dfe4e8);
  clip-path: inset(0 0 0 var(--cut, 50%));
}
.hero-gallery-mobile .side.after .lbl { background: var(--red); }
.hero-gallery-mobile .side.photo {
  background-size: cover;
  background-position: center;
}
.hero-gallery-mobile .handle {
  position: absolute;
  inset: 0;
  width: 4px;
  background: var(--red);
  left: var(--cut, 50%);
  margin: 0 -2px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.hero-gallery-mobile .handle::after {
  content: '⟨  ⟩';
  position: absolute;
  font-size: 24px;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  font-weight: bold;
  letter-spacing: -4px;
}

@media (max-width: 700px) {
  .hero-gallery-mobile {
    display: none;
  }
  .hero-video { display: none; }
  .hero-overlay { display: none; }
  .hero-clean-corner { display: none; }
  .hero-surface {
    background:
      repeating-linear-gradient(115deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 34px),
      repeating-linear-gradient(25deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 34px),
      linear-gradient(150deg, #3a6690 0%, #274a6b 55%, #16324d 100%);
  }
}

/* placed after all base .hero-* rules above so these overrides actually win the
   cascade on matching viewports, instead of losing to later same-specificity rules */
@media (max-width: 700px) {
  .hero .wrap { padding-top: 96px; padding-bottom: 56px; }
  .hero-content { max-width: 100%; gap: 14px; }
  /* portrait crops the 16:9 logo video into a blurry mess behind the text —
     drop it on phones and let the navy gradient surface carry the hero
     (script.js also skips loading the file on small screens) */
  .hero-video { display: none; }
  .hero-text-scrim {
    width: 100%;
    background: linear-gradient(180deg, rgba(6,10,18,0.7) 0%, rgba(6,10,18,0.4) 50%);
  }
  .hero-sub { max-width: 100%; }
  .hero-text-scrim { background: none; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 26px;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    padding: 13px 20px;
    font-size: 0.82rem;
  }
}

/* ===== Powered By brand strip ===== */
.brand-strip {
  background: var(--concrete-100);
  border-bottom: 1px solid var(--concrete-300);
  padding-top: 22px;
  overflow: hidden;
}
.brand-label {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--concrete-500);
  text-align: center;
}
.brand-track {
  display: flex;
  width: max-content;
  animation: brand-scroll 26s linear infinite;
}
.brand-row {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 0 32px 26px;
}
.brand-row img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter 0.25s var(--ease);
}
.brand-row img:hover { filter: grayscale(0) opacity(1); }
@keyframes brand-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-20%); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: 0.08s; }
.reveal-2 { transition-delay: 0.16s; }
.reveal-3 { transition-delay: 0.24s; }
.reveal-4 { transition-delay: 0.32s; }

/* ===== Section shell ===== */
.section {
  padding: 100px 0;
}
@media (max-width: 700px) {
  .section { padding: 64px 0; }
}
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
@media (max-width: 700px) {
  .section-head { margin-bottom: 32px; }
}
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  margin-top: 14px;
  color: var(--navy);
}
.section-head p {
  margin-top: 16px;
  color: var(--concrete-700);
  font-size: 1.05rem;
}
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-dark .section-head h2 { color: var(--white); }
.section-dark .section-head p { color: var(--concrete-300); }

/* diagonal seam between sections, echoes the roofline sweep in the logo — cuts up
   into the section above so stacked blocks don't read as flat template rectangles */
.section-cut {
  position: relative;
  clip-path: polygon(0 36px, 100% 0, 100% 100%, 0 100%);
  margin-top: -36px;
  padding-top: 136px;
}
@media (max-width: 700px) {
  .section-cut {
    clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%);
    margin-top: -20px;
    padding-top: 84px;
  }
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  gap: 1px;
  background: var(--concrete-300);
  border: 1px solid var(--concrete-300);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
.service-col {
  background: var(--white);
  padding: 44px 40px;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
@media (max-width: 700px) {
  .service-col { padding: 32px 24px; }
}
.service-col:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(12,22,36,0.25);
  z-index: 1;
}
.service-col .tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  display: inline-block;
}
.service-col.residential .tag { background: rgba(216,30,38,0.1); color: var(--red); }
.service-col.commercial .tag { background: rgba(12,22,36,0.08); color: var(--navy); }

.service-col h3 {
  font-size: 1.7rem;
  margin: 16px 0 22px;
}

.service-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.02rem;
  color: var(--navy);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--concrete-100);
}
.service-list li:last-child { border-bottom: none; padding-bottom: 0; }
.service-list li a { transition: color 0.2s var(--ease); }
.service-list li a:hover { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.service-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--concrete-100);
  color: var(--red);
}
.service-col.commercial .service-icon { color: var(--navy); }

/* ===== Gallery / before-after ===== */
.gallery-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

.baCard {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
  box-shadow: 0 18px 40px -20px rgba(12,22,36,0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.baCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 52px -18px rgba(12,22,36,0.4);
}
.baCard .side {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.baCard .side .lbl {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 2px;
  color: var(--white);
}
.side.before {
  background:
    repeating-linear-gradient(48deg, rgba(0,0,0,0.12) 0 2px, transparent 2px 6px),
    repeating-linear-gradient(-24deg, rgba(60,45,30,0.18) 0 3px, transparent 3px 9px),
    linear-gradient(160deg, #8b8175, #6e685f 60%, #59544c);
}
.side.before .lbl { background: rgba(0,0,0,0.4); }

.side.after {
  background: linear-gradient(160deg, #fbfcfd, #eef1f3 55%, #dfe4e8);
  clip-path: inset(0 0 0 var(--cut, 50%));
}
.side.after .lbl { background: var(--red); }

/* real job photos — now real <img> children filling the side, with the label above */
.side.photo { background-size: cover; background-position: center; }
.side.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.baCard .side .lbl,
.hero-gallery-mobile .side .lbl { position: relative; z-index: 1; }

.baCard .handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--cut, 50%);
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(12,22,36,0.15);
  transform: translateX(-50%);
}
.baCard .handle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 8px 18px -6px rgba(0,0,0,0.5);
}
.baCard .handle::before {
  content: "\2194";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-52%);
  color: var(--white);
  font-size: 1.2rem;
  z-index: 2;
  font-weight: 700;
}

.baCard .job-tag {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--font-display);
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  font-size: 1.15rem;
  z-index: 3;
  pointer-events: none;
}

.gallery-note {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--concrete-500);
  font-family: var(--font-mono);
}

.gallery-cta {
  margin-top: 44px;
  text-align: center;
}

.ph-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(216,30,38,0.85);
  border: 1px dashed rgba(255,255,255,0.6);
  padding: 5px 10px;
  border-radius: 3px;
  pointer-events: none;
}

/* ===== Why us ===== */
.pillars {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
}
.pillar {
  background: var(--navy-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 32px 28px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
@media (max-width: 700px) {
  .pillar { padding: 26px 22px; }
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(216,30,38,0.5);
  box-shadow: 0 20px 44px -18px rgba(0,0,0,0.5);
}
.pillar .service-icon { background: rgba(216,30,38,0.14); color: var(--red); margin-bottom: 18px; }
.pillar h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 10px; }
.pillar p { color: var(--concrete-300); font-size: 0.98rem; margin: 0; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 0.85fr 1.15fr; }
}

.contact-info h2 { color: var(--navy); }
.contact-list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 20px; }
.contact-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--navy);
  transition: color 0.2s var(--ease);
  overflow-wrap: anywhere;
}
.contact-list a:hover { color: var(--red); }
.contact-list .service-icon { background: var(--concrete-100); }

.service-map {
  margin-top: 28px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--concrete-300);
}
.service-map iframe { display: block; filter: grayscale(0.2) contrast(1.02); }
.map-caption {
  margin: 0;
  padding: 12px 16px;
  background: var(--concrete-100);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--concrete-700);
  text-align: center;
}
.map-caption strong { color: var(--navy); font-weight: 700; }

.form-card {
  background: var(--concrete-100);
  border-radius: 10px;
  padding: 36px;
  border: 1px solid var(--concrete-300);
}
@media (max-width: 700px) {
  .form-card { padding: 22px; }
}
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr; margin-bottom: 18px; }
@media (min-width: 560px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}
label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--concrete-700);
  margin-bottom: 8px;
}
input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--concrete-300);
  border-radius: 5px;
  font-size: 16px;
  background: var(--white);
  color: var(--navy);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(216,30,38,0.12);
  outline: none;
}
textarea { resize: vertical; min-height: 110px; }

.form-status {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--concrete-700);
  min-height: 1.4em;
}
.form-status.success { color: #1a8a4a; font-weight: 600; }

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  color: var(--concrete-300);
  padding: 56px 0 28px;
}
.footer-top {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 760px) {
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
}
.footer-logo img { height: 46px; width: auto; margin-bottom: 14px; }
.footer-col .footer-h {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 14px;
}
.footer-col a, .footer-col p { display: block; margin-bottom: 10px; font-size: 0.95rem; overflow-wrap: anywhere; }
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--concrete-500);
  font-family: var(--font-mono);
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 9px 16px;
  border-radius: 3px;
  font-size: 0.85rem;
}
.social-btn:hover { border-color: var(--spray-blue); color: var(--spray-blue); }

/* ===== Skip link ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 0 0 4px 0;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

/* ===== Subpages (services / locations / accessibility) ===== */
.page-hero {
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 34px),
    linear-gradient(150deg, #1b2738 0%, #0c1624 55%, #0a0f18 100%);
  color: var(--white);
  padding: 150px 0 64px;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--white);
  max-width: 22ch;
}
.page-hero .crumbs {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--concrete-500);
  margin-bottom: 18px;
}
.page-hero .crumbs a { color: var(--concrete-300); }
.page-hero .crumbs a:hover { color: var(--red); }
.page-hero .lede {
  color: var(--concrete-300);
  font-size: 1.05rem;
  max-width: 58ch;
  margin-top: 18px;
}
.page-body { padding: 72px 0; }

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-bottom: 48px;
}
@media (min-width: 780px) {
  .work-grid { grid-template-columns: 1fr 1fr; }
}
.work-pair {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--concrete-100);
  box-shadow: 0 14px 32px -20px rgba(12,22,36,0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.work-pair:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px -18px rgba(12,22,36,0.4);
}
.work-pair-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--navy);
}
.work-pair-img {
  position: relative;
  overflow: hidden;
}
.work-pair-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.work-pair-img .tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(6,10,18,0.75);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.work-pair-img .tag-after {
  background: var(--red);
}
.work-pair figcaption {
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--concrete-700);
}
.service-photo {
  max-width: 760px;
  margin: 0 0 40px;
}
.page-body h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--navy);
  margin: 40px 0 16px;
}
.page-body h2:first-child { margin-top: 0; }
.page-body p { color: var(--concrete-700); max-width: 68ch; }

/* Numbered process steps on service pages */
.process-steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 20px 0 8px;
  max-width: 68ch;
}
.process-steps li {
  position: relative;
  counter-increment: step;
  padding: 0 0 18px 48px;
  color: var(--concrete-700);
  font-size: 0.98rem;
}
.process-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Price-anchor callout */
.page-body .price-note {
  background: var(--concrete-100);
  border-left: 4px solid var(--red);
  padding: 14px 18px;
  border-radius: 4px;
  color: var(--navy);
  font-weight: 500;
  margin: 8px 0 8px;
}

/* FAQ */
.faq-q {
  font-size: 1.08rem;
  color: var(--navy);
  margin: 24px 0 6px;
  font-weight: 700;
}
.faq-a { margin-top: 0; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  max-width: 640px;
}
@media (min-width: 700px) {
  .check-list { grid-template-columns: 1fr 1fr; }
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--navy);
  font-size: 0.98rem;
}
.check-list li::before {
  content: "\2713";
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}
.cta-band {
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  padding: 40px 36px;
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cta-band h2 { color: var(--white); margin: 0; font-size: 1.5rem; }
.cta-band .hero-actions { margin: 0; }
.related-links {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--concrete-300);
}
.related-links h2 { font-size: 1.1rem; }
.related-links ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.related-links li a {
  display: inline-block;
  border: 1px solid var(--concrete-300);
  border-radius: 3px;
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.related-links li a:hover { border-color: var(--red); color: var(--red); }

/* footer link columns added for services + cities */
@media (min-width: 960px) {
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}

/* ===== Nav services dropdown ===== */
.nav-drop { position: relative; }
.nav-drop > a .caret {
  display: inline-block;
  font-size: 0.7em;
  margin-left: 4px;
  transition: transform 0.2s var(--ease);
}
.nav-drop:hover > a .caret,
.nav-drop:focus-within > a .caret { transform: rotate(180deg); }
.drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  min-width: 250px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--concrete-300);
  border-radius: 6px;
  box-shadow: 0 18px 40px -18px rgba(12,22,36,0.35);
}
.nav-drop:hover .drop-menu,
.nav-drop:focus-within .drop-menu { display: flex; }
.drop-menu a {
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 0.82rem;
  white-space: nowrap;
}
.drop-menu a::after { display: none; }
.drop-menu a:hover { background: var(--concrete-100); }

/* mobile menu: service sub-links under the Services entry */
.mobile-menu a.sub {
  padding-left: 22px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--concrete-700);
}

/* ===== Floating Widgets ===== */

/* ADA Accessibility Widget - Bottom Left */
.a11y-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 200;
  font-family: var(--font-base);
}

.a11y-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.2s var(--ease);
  padding: 0;
}

.a11y-toggle svg {
  stroke: var(--white);
  width: 22px;
  height: 22px;
}

.a11y-toggle:hover {
  background: var(--navy);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.a11y-panel {
  position: absolute;
  bottom: 68px;
  left: 0;
  width: 260px;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  display: none;
}

.a11y-toggle[aria-expanded="true"] + .a11y-panel {
  display: block;
}

.a11y-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--concrete-200);
  padding-bottom: 8px;
}

.a11y-header h2 {
  font-size: 0.95rem;
  color: var(--navy);
  margin: 0;
  font-weight: 700;
}

.a11y-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--concrete-500);
  padding: 0;
}

.a11y-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.a11y-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.a11y-check {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.a11y-label {
  font-size: 0.9rem;
  color: var(--navy);
}

.a11y-footer {
  font-size: 0.8rem;
  text-align: center;
  color: var(--concrete-600);
  border-top: 1px solid var(--concrete-200);
  padding-top: 8px;
}

.a11y-footer p {
  margin: 0 0 4px;
}

.a11y-footer a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

.a11y-footer a:hover {
  text-decoration: underline;
}

/* Floating Call Button - Bottom Right */
.floating-call-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 199;
}

.floating-call-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(216, 30, 38, 0.3);
  transition: all 0.2s var(--ease);
  animation: pulse-button 2s ease-in-out infinite;
}

.floating-call-button a:hover {
  background: var(--navy);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  animation: none;
}

@keyframes pulse-button {
  0%, 100% { box-shadow: 0 4px 12px rgba(216, 30, 38, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(216, 30, 38, 0.5); }
}


/* ===== Accessibility Feature Classes ===== */
/* Bigger Text: bump the root font size only. Headings/body use rem, so they
   scale up proportionally. Do NOT set em font-sizes on h1/h2/h3 here — em is
   relative to the parent and REPLACES (shrinks) the real heading sizes. */
html.a11y-big-text { font-size: 118.75%; }

html.a11y-high-contrast {
  --navy: #000;
  --white: #fff;
  --red: #c41e3a;
  --concrete-100: #f0f0f0;
  --concrete-200: #ddd;
  --concrete-300: #999;
  --concrete-500: #666;
  --concrete-600: #555;
  --concrete-700: #333;
}

html.a11y-reduce-motion,
html.a11y-reduce-motion * {
  animation: none !important;
  transition: none !important;
}

