/* ============================================
   Epic Plumbers — Redesign
   Friendly, photo-led, geometric sans
   ============================================ */

:root {
  /* Palette */
  --bg: #f5f1ea;           /* warm cream */
  --bg-2: #ece6db;         /* deeper cream */
  --surface: #ffffff;
  --ink: #0b1726;          /* near-black navy */
  --ink-2: #2a3344;
  --muted: #6b7280;
  --line: #e6e0d3;
  --line-2: #d8d1c1;

  --blue: #1f5fff;         /* primary action blue */
  --blue-deep: #0b3ec9;
  --blue-soft: #e6efff;
  --aqua: #6ec5d6;         /* secondary cool */
  --sun: #ffb547;          /* warm accent */
  --emergency: #e2382b;

  /* Type */
  --font-sans: "Plus Jakarta Sans", "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* Radii */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(11, 23, 38, 0.05);
  --sh-md: 0 6px 24px -8px rgba(11, 23, 38, 0.18);
  --sh-lg: 0 20px 50px -20px rgba(11, 23, 38, 0.25);

  /* Layout */
  --max: 1240px;
  --gutter: 28px;
}

@media (max-width: 720px) {
  :root { --gutter: 18px; }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(40px, 6.4vw, 92px); line-height: 0.98; letter-spacing: -0.035em; }
h2 { font-size: clamp(30px, 4.2vw, 60px); line-height: 1.02; letter-spacing: -0.03em; }
h3 { font-size: 20px; line-height: 1.25; }
p  { margin: 0; }

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

/* ============================================
   EMERGENCY STRIP
   ============================================ */
.emergency-strip {
  background: var(--ink);
  color: #fff;
  font-size: 13.5px;
  letter-spacing: 0.01em;
}
.emergency-strip .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px var(--gutter);
  flex-wrap: wrap;
}
.emergency-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--emergency);
  box-shadow: 0 0 0 0 rgba(226, 56, 43, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(226, 56, 43, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(226, 56, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(226, 56, 43, 0); }
}
.emergency-strip a {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
}
.emergency-strip strong { font-weight: 700; }

/* ============================================
   NAV
   ============================================ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.nav-wrap.is-scrolled { border-color: var(--line); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand .logo-slot {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 17px;
  position: relative;
  overflow: hidden;
}
.brand .logo-slot::after {
  content: "LOGO";
  position: absolute;
  bottom: -3px;
  right: 3px;
  font-family: var(--font-mono);
  font-size: 6px;
  opacity: 0.45;
  letter-spacing: 0;
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-2);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone {
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: var(--r-pill);
  color: var(--ink-2);
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18); }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
  font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: #1a2738; }
.btn-accent {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 22px -10px rgba(31, 95, 255, 0.55);
}
.btn-accent:hover { background: var(--blue-deep); }
.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-light {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
.btn-light:hover { border-color: var(--ink); }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 18px 28px; font-size: 16px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 56px var(--gutter) 80px;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.eyebrow .star { color: var(--sun); }

.hero h1 .accent {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 700;
}
.hero h1 .underline-mark {
  position: relative;
  display: inline-block;
}
.hero h1 .underline-mark::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: 4px;
  height: 14px;
  background: var(--sun);
  z-index: -1;
  border-radius: 6px;
  opacity: 0.65;
}

.hero-lede {
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 540px;
}
.hero-lede strong { color: var(--ink); }
.hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Trusted-by avatar row */
.trusted-row {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.avatars {
  display: flex;
  align-items: center;
}
.avatars .av {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  margin-left: -10px;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.avatars .av:first-child { margin-left: 0; }
.avatars .av:nth-child(1) { background: #ffd28a; }
.avatars .av:nth-child(2) { background: #b9d3ff; }
.avatars .av:nth-child(3) { background: #c5e8d2; }
.avatars .av:nth-child(4) { background: #f4c6b8; }
.avatars .av:nth-child(5) { background: var(--ink); color: var(--bg); font-family: var(--font-mono); font-size: 11px; }
.trusted-text { line-height: 1.25; }
.trusted-text .stars { color: var(--sun); font-size: 13px; letter-spacing: 2px; }
.trusted-text .label { font-size: 13.5px; color: var(--ink-2); font-weight: 600; margin-top: 2px; }
.trusted-text .label b { color: var(--ink); font-weight: 800; }

.hero-trust {
  margin-top: 36px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 28px;
  border-top: 1px dashed var(--line-2);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
}
.trust-item .ico {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-2);
  color: var(--blue-deep);
}

/* Hero image stack */
.hero-media {
  position: relative;
  aspect-ratio: 4 / 3.8;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.hero-floater {
  position: absolute;
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.hero-floater .num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--blue-deep);
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}
.hero-floater .num .unit {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}
.hero-floater .lbl { font-size: 12px; color: var(--muted); font-weight: 500; line-height: 1.2; max-width: 100px; }
.floater-a { bottom: 24px; left: -22px; }
.floater-b { top: 24px; right: -16px; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-media { aspect-ratio: 4 / 3; }
  .floater-a { left: 14px; bottom: 14px; }
  .floater-b { right: 14px; top: 14px; }
}
@media (max-width: 560px) {
  .hero { padding: 32px var(--gutter) 56px; }
  .hero-floater { padding: 10px 14px; }
  .hero-floater .num { font-size: 22px; }
  .hero-floater .num .unit { font-size: 12px; }
  .hero-floater .lbl { font-size: 11px; }
  .hero-lede { font-size: 17px; }
  .hero-cta .btn-lg { padding: 14px 20px; font-size: 14.5px; }
  .hero-cta .btn { flex: 1; min-width: 0; justify-content: center; }
  .hero-trust { gap: 14px 20px; }
  .trust-item { font-size: 12.5px; }
  .trusted-row { gap: 12px; }
}

/* ============================================
   STATS BAR — DEEP BLUE
   ============================================ */
.stats {
  background: linear-gradient(160deg, #1a4dd6 0%, #0b3ec9 60%, #0a2f9a 100%);
  color: #fff;
  border-radius: var(--r-lg);
  margin: 0 var(--gutter) 80px;
  max-width: calc(var(--max) - var(--gutter) * 2);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 36px 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(11, 62, 201, 0.45);
}
.stats::before, .stats::after {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  pointer-events: none;
}
.stats::before { background: rgba(255, 200, 69, 0.35); top: -140px; left: -120px; }
.stats::after { background: rgba(110, 197, 214, 0.35); bottom: -160px; right: -120px; }
.stat {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.14);
  padding: 4px 16px;
  position: relative;
  z-index: 1;
}
.stat:last-child { border-right: none; }
.stat .v {
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}
.stat .v .small { font-size: 0.55em; color: var(--sun); margin-left: 4px; font-weight: 600; }
.stat .l {
  margin-top: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.01em;
  font-weight: 500;
}

@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.14); padding-bottom: 24px; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 24px; }
}

/* ============================================
   TRUCK SHOWCASE STRIP
   ============================================ */
.truck-strip {
  position: relative;
  margin: 0 var(--gutter) 80px;
  max-width: calc(var(--max) - var(--gutter) * 2);
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: #0b1726;
}
.truck-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.truck-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,23,38,0.78) 0%, rgba(11,23,38,0.55) 40%, rgba(11,23,38,0) 70%);
  pointer-events: none;
}
.truck-strip .truck-overlay {
  position: absolute;
  left: 56px;
  bottom: 48px;
  z-index: 2;
  color: #fff;
  max-width: 480px;
}
.truck-strip .truck-overlay .tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sun);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.truck-strip .truck-overlay .tag::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--sun);
}
.truck-strip .truck-overlay h2 {
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
}
.truck-strip .truck-overlay p {
  margin-top: 16px;
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.5;
  max-width: 420px;
}
.truck-strip .truck-overlay .btn { margin-top: 24px; }

@media (max-width: 880px) {
  .truck-strip {
    margin: 0 0 56px;
    border-radius: 0;
    aspect-ratio: 4 / 3;
  }
  .truck-strip::after {
    background: linear-gradient(180deg, rgba(11,23,38,0) 30%, rgba(11,23,38,0.85) 85%);
  }
  .truck-strip .truck-overlay {
    left: var(--gutter);
    right: var(--gutter);
    bottom: 28px;
    max-width: none;
  }
  .truck-strip .truck-overlay p { font-size: 15px; max-width: none; }
}
@media (max-width: 480px) {
  .truck-strip { aspect-ratio: 4 / 3.4; }
  .truck-strip .truck-overlay h2 { font-size: 26px; }
}
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.sec-head .tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sec-head .tag::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--blue-deep);
}
.sec-head .sub {
  max-width: 460px;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
}
.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }

@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .section-tight { padding: 32px 0; }
  .sec-head { margin-bottom: 32px; gap: 16px; }
  .sec-head .sub { font-size: 15px; }
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 28px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  position: relative;
  overflow: hidden;
}
.svc:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.svc .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.svc .ico-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  display: grid; place-items: center;
  margin: 16px 0 22px;
}
.svc h3 { margin-bottom: 8px; letter-spacing: -0.02em; }
.svc p { color: var(--ink-2); font-size: 14.5px; line-height: 1.5; }
.svc-cta {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.svc.emergency {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.svc.emergency .num { color: var(--sun); }
.svc.emergency .ico-wrap { background: rgba(255,255,255,0.08); color: var(--sun); }
.svc.emergency p { color: rgba(245,241,234,0.7); }
.svc.emergency .svc-cta { color: var(--sun); }
.svc.emergency:hover { background: #18253a; }

@media (max-width: 880px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================
   OUR WORK GALLERY
   ============================================ */
.work {
  background: var(--bg-2);
  padding: 96px 0;
  border-radius: var(--r-xl);
  margin: 0 var(--gutter);
}
.work .container { padding: 0 48px; }
.work-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.work-card {
  background: var(--surface);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
}
.work-card.big { grid-row: span 2; }
.work-photo {
  aspect-ratio: 4 / 3;
  position: relative;
}
.work-card.big .work-photo { aspect-ratio: 4 / 5.4; }
.work-meta { padding: 18px 20px 20px; }
.work-card .work-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--blue-deep);
  text-transform: uppercase;
}
.work-card h3 { margin-top: 6px; font-size: 18px; }
.work-card .work-sub {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}
@media (max-width: 880px) {
  .work { padding: 56px 0; margin: 0; border-radius: 0; }
  .work .container { padding: 0 var(--gutter); }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-card.big { grid-row: auto; grid-column: span 2; }
}

/* Real photo fill (work cards, hero, etc) */
.photo-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand .logo-img {
  height: 64px;
  width: auto;
  display: block;
}
.footer .brand .logo-img { filter: brightness(1.05); }

/* ============================================
   PHOTO PLACEHOLDER
   ============================================ */
.photo-slot {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(31, 95, 255, 0.07) 0,
      rgba(31, 95, 255, 0.07) 12px,
      rgba(31, 95, 255, 0.12) 12px,
      rgba(31, 95, 255, 0.12) 24px
    ),
    linear-gradient(160deg, #c5d4e8 0%, #8fa6c5 100%);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}
.photo-slot.tone-warm {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(178, 99, 24, 0.07) 0,
      rgba(178, 99, 24, 0.07) 12px,
      rgba(178, 99, 24, 0.13) 12px,
      rgba(178, 99, 24, 0.13) 24px
    ),
    linear-gradient(160deg, #e8d3b8 0%, #c0a17b 100%);
}
.photo-slot.tone-dark {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.05) 0,
      rgba(255,255,255,0.05) 12px,
      rgba(255,255,255,0.10) 12px,
      rgba(255,255,255,0.10) 24px
    ),
    linear-gradient(160deg, #2a3344 0%, #0b1726 100%);
  color: var(--bg);
}
.photo-slot .slot-inner {
  background: var(--bg);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--ink);
  font-weight: 600;
}

/* ============================================
   BEFORE / AFTER
   ============================================ */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ba-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.ba-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  aspect-ratio: 2 / 1.1;
  position: relative;
}
.ba-photos.ba-combined {
  grid-template-columns: 1fr;
}
.ba-photos > div { position: relative; overflow: hidden; }
.ba-photos img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ba-photos .label {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(11,23,38,0.85);
  color: var(--bg);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.ba-photos .label.after { background: var(--blue); left: auto; right: 12px; }
.ba-photos.ba-combined .label.combined { background: rgba(11,23,38,0.85); }
.ba-meta { padding: 22px 24px 24px; }
.ba-meta h3 { font-size: 19px; }
.ba-meta p { font-size: 14.5px; color: var(--ink-2); margin-top: 8px; line-height: 1.5; }
.ba-meta .ba-cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--blue-deep);
  text-transform: uppercase;
  margin-top: 16px;
  display: block;
}
@media (max-width: 880px) {
  .ba-grid { grid-template-columns: 1fr; }
}

/* ============================================
   WHY EPIC
   ============================================ */
.why {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line-2);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
}
.why-item:last-child { border-bottom: none; }
.why-item .check {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: grid; place-items: center;
}
.why-item h3 { font-size: 22px; letter-spacing: -0.02em; }
.why-item p { margin-top: 8px; color: var(--ink-2); font-size: 15px; line-height: 1.55; max-width: 460px; }

.why-aside {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: sticky;
  top: 100px;
  overflow: hidden;
  position: relative;
}
.why-aside::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 95, 255, 0.4), transparent 70%);
}
.why-aside h3 { font-size: 28px; letter-spacing: -0.025em; max-width: 280px; }
.why-aside p { margin-top: 14px; color: rgba(245,241,234,0.7); font-size: 14.5px; line-height: 1.55; }
.why-aside .ws-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.why-aside .ws {
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  padding: 18px 16px;
}
.why-aside .ws .v { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.why-aside .ws .l { font-size: 12px; color: rgba(245,241,234,0.6); margin-top: 4px; }
.why-aside .ws .v.sun { color: var(--sun); }
.why-aside .ws .v.aqua { color: var(--aqua); }
.why-aside .btn { margin-top: 28px; width: 100%; justify-content: center; }
@media (max-width: 880px) {
  .why { grid-template-columns: 1fr; }
  .why-aside { position: static; }
}

/* ============================================
   SERVICE AREA
   ============================================ */
.area {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-xl);
  padding: 80px 56px;
  margin: 0 var(--gutter);
  position: relative;
  overflow: hidden;
}
.area::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 95, 255, 0.18), transparent 60%);
}
.area .container { position: relative; }
.area .sec-head .tag { color: var(--aqua); }
.area .sec-head .tag::before { background: var(--aqua); }
.area .sec-head h2 { color: var(--bg); }
.area .sec-head .sub { color: rgba(245,241,234,0.65); }
.cities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.city {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 22px 22px;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.city:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}
.city .name { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.city .county { font-size: 12px; color: rgba(245,241,234,0.5); margin-top: 4px; font-family: var(--font-mono); letter-spacing: 0.06em; }

.area-foot {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.area-foot p { color: rgba(245,241,234,0.65); font-size: 14.5px; max-width: 540px; }

@media (max-width: 880px) {
  .area { padding: 56px 28px; margin: 0; border-radius: 0; }
  .cities { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   REVIEWS — GOOGLE STYLE
   ============================================ */
.reviews-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.rating-big {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px 28px;
}
.rating-big .g-icon {
  width: 44px; height: 44px;
}
.rating-big .num { font-size: 56px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--ink); }
.rating-big .meta .stars { color: #fbbc04; font-size: 18px; letter-spacing: 2px; }
.rating-big .meta .src { font-size: 13px; color: var(--muted); margin-top: 6px; font-weight: 500; }
.rating-big .meta .src a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 2px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.review .head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.review .av.c1 { background: #4285f4; }
.review .av.c2 { background: #db4437; }
.review .av.c3 { background: #0f9d58; }
.review .av.c4 { background: #f4b400; }
.review .av.c5 { background: #ab47bc; }
.review .head .who-meta { line-height: 1.25; }
.review .head .name { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.review .head .meta { font-size: 12.5px; color: var(--muted); margin-top: 1px; }
.review .head .g-mark {
  margin-left: auto;
  width: 18px; height: 18px;
  opacity: 0.85;
}
.review .stars-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review .stars { color: #fbbc04; font-size: 14px; letter-spacing: 2px; }
.review .when {
  font-size: 12.5px;
  color: var(--muted);
}
.review .quote {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  letter-spacing: -0.002em;
}
.review .helpful {
  font-size: 12px;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.review .helpful svg { opacity: 0.6; }
@media (max-width: 880px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--line-2);
  padding: 4px 0;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .ic {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}
.faq-item[open] .ic {
  transform: rotate(45deg);
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.faq-item .ans {
  padding: 0 0 24px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 560px;
}

@media (max-width: 880px) {
  .faq { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================
   BIG CTA — DEEP BLUE
   ============================================ */
.bigcta {
  background: linear-gradient(160deg, #1a4dd6 0%, #0b3ec9 60%, #0a2f9a 100%);
  color: #fff;
  border-radius: var(--r-xl);
  margin: 0 var(--gutter);
  padding: 88px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bigcta::before, .bigcta::after {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
}
.bigcta::before { background: rgba(255, 200, 69, 0.35); top: -140px; left: -120px; }
.bigcta::after { background: rgba(110, 197, 214, 0.35); bottom: -180px; right: -120px; }
.bigcta .inner { position: relative; max-width: 820px; margin: 0 auto; }
.bigcta .tag { color: #ffc845; }
.bigcta .tag::before { background: #ffc845 !important; }
.bigcta h2 { color: #fff; }
.bigcta h2 .em { font-style: italic; color: #ffc845; }
.bigcta p { color: rgba(255,255,255,0.85) !important; }
.bigcta .btn-ghost { border-color: rgba(255,255,255,0.4); color: #fff; }
.bigcta .btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.bigcta .meta { color: rgba(255,255,255,0.55) !important; }
.bigcta .actions {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.bigcta .meta {
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

@media (max-width: 880px) {
  .bigcta { padding: 56px 28px; margin: 0; border-radius: 0; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ci-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-2);
  align-items: start;
}
.ci-row:first-of-type { padding-top: 0; }
.ci-row:last-of-type { border-bottom: none; }
.ci-row .ic {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--bg-2);
  color: var(--blue-deep);
  display: grid; place-items: center;
}
.ci-row h4 { font-size: 14px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--muted); font-weight: 600; font-family: var(--font-mono); }
.ci-row p, .ci-row a { margin-top: 6px; font-size: 16px; line-height: 1.5; font-weight: 500; }

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-mono);
}
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ink);
  background: var(--surface);
}
.field textarea { min-height: 110px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; }
.form-foot { margin-top: 14px; font-size: 12.5px; color: var(--muted); text-align: center; }
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--bg);
  margin-top: 80px;
  padding: 72px var(--gutter) 28px;
}
@media (max-width: 720px) {
  .footer { margin-top: 40px; padding: 48px var(--gutter) 24px; }
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer .brand { color: var(--bg); }
.footer .brand .logo-slot { background: var(--bg); color: var(--ink); }
.footer .brand .logo-slot::after { color: var(--ink); opacity: 0.5; }
.footer p.tagline {
  margin-top: 18px;
  color: rgba(245,241,234,0.65);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 360px;
}
.footer .fphone { margin-top: 22px; font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.footer h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245,241,234,0.5);
  font-family: var(--font-mono);
  font-weight: 600;
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  color: rgba(245,241,234,0.85);
  font-size: 14.5px;
  transition: color 0.15s ease;
}
.footer ul a:hover { color: var(--bg); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(245,241,234,0.55);
}
.footer-bottom .links { display: flex; gap: 24px; }
.footer-bottom .links a:hover { color: var(--bg); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer .brand .logo-img { height: 56px !important; }
  .footer .fphone { font-size: 20px; }
  .footer-bottom { font-size: 12px; gap: 8px; }
  .footer-bottom .links { gap: 16px; }
}

/* Mobile-friendly nav tweaks */
@media (max-width: 880px) {
  .nav { padding: 12px var(--gutter); gap: 12px; }
  .nav-actions .live-pill { display: none; }
  .brand .logo-img { height: 54px; }
}
@media (max-width: 480px) {
  .nav-phone-label { display: none; }
  .brand .logo-img { height: 46px; }
  .nav .btn-sm { padding: 8px 12px; font-size: 13px; }
  .emergency-strip { font-size: 12.5px; }
  .emergency-strip .row { gap: 10px; padding: 8px var(--gutter); }
}

/* Mobile sections */
@media (max-width: 880px) {
  .stats { margin-bottom: 56px; padding: 28px 8px; }
  .stats .stat .v { font-size: 32px; }
  .work { padding: 56px 0; margin: 0; border-radius: 0; }
  .work .container { padding: 0 var(--gutter); }
  .area { padding: 48px var(--gutter); margin: 0; border-radius: 0; }
  .bigcta { padding: 56px var(--gutter); margin: 0; border-radius: 0; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; padding: 22px 4px; }
  .stats .stat { padding: 4px 8px; }
  .stats .stat .v { font-size: 28px; }
  .stats .stat .l { font-size: 11.5px; margin-top: 6px; }
  .services-grid { gap: 12px; }
  .svc { padding: 22px 22px 22px; }
  .ba-meta { padding: 18px 20px 20px; }
  .area { padding: 40px var(--gutter); }
  .cities { gap: 8px; }
  .city { padding: 16px 18px; }
  .city .name { font-size: 17px; }
  .bigcta { padding: 48px var(--gutter); }
  .bigcta h2 { font-size: 32px; }
  .why-aside { padding: 28px 24px; }
  .form { padding: 20px; }
  .rating-big { padding: 18px 20px; gap: 14px; }
  .rating-big .num { font-size: 44px; }
  .rating-big .g-icon { width: 36px; height: 36px; }
  .review { padding: 20px 20px 18px; }
  .review .quote { font-size: 14px; }
  .ci-row { gap: 14px; padding: 18px 0; }
  .ci-row p, .ci-row a { font-size: 15px; }
}

/* Sticky mobile call bar */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--ink);
  padding: 12px 16px;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.18);
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 13px 10px;
  border-radius: var(--r-lg);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.mobile-cta .cta-call {
  background: var(--accent);
  color: var(--ink);
}
.mobile-cta .cta-quote {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
@media (max-width: 720px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 76px; }
}

/* Order on mobile: copy first, image after */
@media (max-width: 880px) {
  .hero-media { order: 2; }
  .hero-copy { order: 1; }
}


/* ============================================
   SERVICE PAGES
   ============================================ */
.service-hero {
  padding: 80px 0 58px;
  background:
    radial-gradient(circle at 8% 15%, rgba(31,95,255,.12), transparent 32%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: center;
}
.service-hero-copy h1 {
  margin-top: 18px;
  max-width: 820px;
}
.service-lede {
  margin-top: 24px;
  max-width: 720px;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink-2);
}
.service-hero-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--surface);
  min-height: 440px;
}
.service-hero-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.service-card-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--sh-md);
  color: var(--ink-2);
}
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 52px;
  align-items: start;
}
.service-sub { margin-top: 18px; max-width: 760px; }
.service-checklist {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.service-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--r-md);
  font-weight: 600;
  color: var(--ink-2);
}
.service-checklist svg { color: var(--blue); flex: 0 0 auto; }
.service-aside {
  position: sticky;
  top: 104px;
  background: var(--ink);
  color: white;
  padding: 30px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}
.service-aside p { color: rgba(255,255,255,.72); margin: 12px 0 22px; }
.service-process-wrap { background: var(--ink); color: white; padding: 72px 0; }
.service-process-wrap .sub { color: rgba(255,255,255,.68); }
.service-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.service-step {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 26px;
}
.service-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 18px;
}
.service-step p { color: rgba(255,255,255,.8); }
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin-bottom: 12px;
  box-shadow: var(--sh-sm);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
}
.faq-list p { margin-top: 12px; color: var(--muted); }
@media (max-width: 920px) {
  .service-hero-grid, .service-layout, .service-process { grid-template-columns: 1fr; }
  .service-aside { position: static; }
  .service-checklist { grid-template-columns: 1fr; }
  .service-hero-card, .service-hero-card img { min-height: 320px; height: 320px; }
}
