/* ============================================================
   Broc's Rub N Scrub — Design System
   Premium exterior cleaning · Rochester, MN
   ============================================================ */

:root {
  /* Brand */
  --navy-900: #02132b;
  --navy-800: #002b5c;
  --navy-700: #0a2e5c;
  --navy-600: #0d3a72;
  --blue-500: #0082c8;
  --blue-400: #22a0e0;
  --crimson: #c41e4a;
  --crimson-dark: #a01040;
  --gold: #f5b301;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f5f8fc;
  --gray-100: #e8eef5;
  --gray-400: #8fa3bb;
  --gray-600: #5a6b80;
  --ink: #10203a;

  /* Type */
  --font-head: 'Archivo', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(2, 19, 43, 0.08);
  --shadow-md: 0 10px 34px rgba(2, 19, 43, 0.14);
  --shadow-lg: 0 24px 60px rgba(2, 19, 43, 0.22);
  --grad-blue: linear-gradient(135deg, var(--blue-500), var(--navy-800));
  --grad-navy: linear-gradient(160deg, var(--navy-700) 0%, var(--navy-900) 100%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--navy-800);
}
h1 { font-size: clamp(2.2rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.45rem); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
section { padding: clamp(64px, 9vw, 110px) 0; }

.kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 14px;
}
.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--gray-600); margin-top: 14px; font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 30px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--grad-blue);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 130, 200, 0.35);
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(0, 130, 200, 0.48); }
.btn-call {
  background: var(--crimson);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(196, 30, 74, 0.32);
}
.btn-call:hover { background: var(--crimson-dark); box-shadow: 0 12px 32px rgba(196, 30, 74, 0.45); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.2); }
.btn-light { background: var(--white); color: var(--navy-800); box-shadow: var(--shadow-sm); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(2, 19, 43, 0.06);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 78px;
}
.logo img { height: 46px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > li { position: relative; }
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  display: block;
  transition: color 0.2s ease, background 0.2s ease;
}
.main-nav a:hover { color: var(--blue-500); background: var(--off-white); }
.has-dropdown > a::after { content: " ▾"; font-size: 0.7em; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 250px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { padding: 10px 14px; border-radius: 8px; font-size: 0.92rem; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy-800);
  font-size: 1.02rem;
}
.header-phone svg { width: 18px; height: 18px; fill: var(--crimson); }
.header-cta .btn { padding: 12px 22px; font-size: 0.92rem; }

/* Mobile nav */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy-800); border-radius: 2px; transition: 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  background: var(--grad-navy);
  overflow: hidden;
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero-bg.svg") center/cover no-repeat;
  opacity: 0.5;
}
.hero::after {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  right: -220px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 130, 200, 0.35), transparent 65%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: var(--white); max-width: 780px; }
.hero h1 em { font-style: normal; color: var(--blue-400); }
.hero-sub { max-width: 620px; margin: 22px 0 30px; font-size: 1.14rem; color: rgba(255, 255, 255, 0.82); }
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.trust-bar { display: flex; flex-wrap: wrap; gap: 12px 30px; }
.trust-bar li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.88);
}
.trust-bar svg { width: 19px; height: 19px; fill: var(--blue-400); flex-shrink: 0; }

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-800);
  box-shadow: var(--shadow-sm);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  display: block;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card img { height: 300px; width: 100%; object-fit: cover; transition: transform 0.5s ease; opacity: 0.85; }
.service-card:hover img { transform: scale(1.05); }
.service-card .card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  background: linear-gradient(transparent, rgba(2, 19, 43, 0.95));
  color: var(--white);
}
.service-card h3 { color: var(--white); margin-bottom: 6px; }
.service-card p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.75); margin-bottom: 10px; }
.card-link { font-weight: 700; font-size: 0.9rem; color: var(--blue-400); }
.card-link::after { content: " →"; transition: 0.2s; }
.service-card:hover .card-link::after { padding-left: 4px; }

/* ---------- Before / After slider ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.ba-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 2.05;
  box-shadow: var(--shadow-md);
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 0 0 50%);
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.4);
}
.ba-handle::after {
  content: "⟷";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}
.ba-tag {
  position: absolute;
  top: 14px;
  padding: 5px 14px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--white);
  z-index: 2;
  pointer-events: none;
}
.ba-tag.before { left: 14px; background: rgba(2, 19, 43, 0.72); }
.ba-tag.after { right: 14px; background: var(--blue-500); }
.ba-caption { text-align: center; margin-top: 14px; font-weight: 600; color: var(--gray-600); font-size: 0.95rem; }

/* ---------- Plans ---------- */
.plans { background: var(--grad-navy); color: var(--white); position: relative; overflow: hidden; }
.plans::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  left: -200px;
  bottom: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 130, 200, 0.25), transparent 65%);
}
.plans .section-head h2, .plans .section-head p { color: var(--white); }
.plans .section-head p { color: rgba(255, 255, 255, 0.7); }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 26px; position: relative; z-index: 1; }
.plan {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(4px);
}
.plan:hover { transform: translateY(-6px); border-color: rgba(255, 255, 255, 0.3); }
.plan.featured {
  background: var(--white);
  color: var(--ink);
  border: none;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--crimson);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan h3 { color: var(--white); }
.plan.featured h3 { color: var(--navy-800); }
.plan-save {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--blue-400);
  margin: 6px 0 2px;
}
.plan.featured .plan-save { color: var(--blue-500); }
.plan-freq { font-size: 0.88rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 20px; }
.plan.featured .plan-freq { color: var(--gray-600); }
.plan ul { flex: 1; margin-bottom: 26px; display: grid; gap: 11px; }
.plan li { display: flex; gap: 10px; font-size: 0.94rem; align-items: flex-start; }
.plan li::before { content: "✓"; color: var(--blue-400); font-weight: 800; flex-shrink: 0; }
.plan.featured li::before { color: var(--blue-500); }
.plans-note { text-align: center; margin-top: 30px; font-size: 0.88rem; color: rgba(255, 255, 255, 0.55); position: relative; z-index: 1; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; counter-reset: step; }
.process-step {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 34px 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.6rem;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 12px;
}
.process-step p { color: var(--gray-600); font-size: 0.94rem; margin-top: 8px; }

/* ---------- Stats ---------- */
.stats-band { background: var(--grad-blue); color: var(--white); padding: 54px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; text-align: center; }
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 4.5vw, 3.2rem); }
.stat-label { font-size: 0.92rem; opacity: 0.85; font-weight: 600; }

/* ---------- Reviews ---------- */
.reviews-section { background: var(--off-white); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card blockquote { font-size: 0.98rem; color: var(--ink); flex: 1; }
.review-meta { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.95rem; }
.review-sub { font-size: 0.8rem; color: var(--gray-600); }
.reviews-cta { text-align: center; margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Areas ---------- */
.areas-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.areas-map iframe, .areas-map {
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-height: 380px;
}
.areas-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.areas-list a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.areas-list a:hover { background: var(--blue-500); color: var(--white); transform: translateX(4px); }
.areas-list svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--blue-500);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--gray-600); font-size: 0.97rem; }

/* ---------- Quote section ---------- */
.quote-section { background: var(--grad-navy); color: var(--white); position: relative; overflow: hidden; }
.quote-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  right: -250px;
  bottom: -250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 130, 200, 0.28), transparent 65%);
}
.quote-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; position: relative; z-index: 1; }
.quote-info h2 { color: var(--white); }
.quote-info p { color: rgba(255, 255, 255, 0.75); margin: 18px 0 28px; }
.quote-perks { display: grid; gap: 14px; }
.quote-perks li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; }
.quote-perks svg { width: 21px; height: 21px; fill: var(--blue-400); flex-shrink: 0; margin-top: 2px; }
.quote-phone-block { margin-top: 34px; }
.quote-phone-block a {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
}
.quote-phone-block a:hover { color: var(--blue-400); }
.quote-phone-block span { display: block; font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); }

.quote-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 34px;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.quote-form h3 { margin-bottom: 6px; }
.quote-form > p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-weight: 600; font-size: 0.84rem; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.95rem;
  background: var(--off-white);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--blue-500);
  background: var(--white);
}
.service-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.service-checks label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 12px;
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.service-checks label:has(input:checked) { border-color: var(--blue-500); background: #eaf5fc; }
.service-checks input { accent-color: var(--blue-500); }
.quote-form .btn { width: 100%; margin-top: 8px; }
.form-success { text-align: center; padding: 30px 10px; display: none; }
.form-success.show { display: block; }
.form-success .big { font-size: 2.6rem; margin-bottom: 10px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--grad-navy);
  color: var(--white);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -200px;
  top: -250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 130, 200, 0.3), transparent 65%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); max-width: 800px; }
.page-hero p { max-width: 640px; margin-top: 18px; color: rgba(255, 255, 255, 0.8); font-size: 1.1rem; }
.page-hero .hero-ctas { margin-top: 30px; margin-bottom: 0; }
.breadcrumbs { font-size: 0.85rem; margin-bottom: 20px; color: rgba(255, 255, 255, 0.6); }
.breadcrumbs a { color: rgba(255, 255, 255, 0.85); font-weight: 600; }
.breadcrumbs a:hover { color: var(--blue-400); }

/* ---------- Content blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.check-list { display: grid; gap: 13px; margin-top: 22px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.check-list svg { width: 21px; height: 21px; fill: var(--blue-500); flex-shrink: 0; margin-top: 3px; }
.prose p { margin-bottom: 16px; color: var(--gray-600); font-size: 1.03rem; }
.prose h2 { margin: 34px 0 16px; }
.prose h3 { margin: 26px 0 12px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-blue); color: var(--white); text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 560px; margin: 0 auto 30px; }
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.75); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 50px; }
.footer-brand img { height: 52px; width: auto; background: var(--white); padding: 8px 12px; border-radius: 10px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.92rem; margin-bottom: 16px; }
.footer-phone { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--white); }
.footer-phone:hover { color: var(--blue-400); }
.site-footer h4 { color: var(--white); font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: 0.92rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--blue-400); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  font-size: 0.83rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--blue-400); }

/* ---------- Sticky mobile bar + floating quote ---------- */
.sticky-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1100;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(2, 19, 43, 0.35);
  box-shadow: 0 -6px 24px rgba(2, 19, 43, 0.2);
}
.sticky-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 10px calc(16px + env(safe-area-inset-bottom, 0px));
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
}
.sticky-bar svg { width: 19px; height: 19px; fill: currentColor; }
.sticky-call { background: var(--crimson); }
.sticky-quote { background: var(--grad-blue); }

.float-quote {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--crimson);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  padding: 16px 26px;
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(196, 30, 74, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: pulse 2.6s ease-in-out infinite;
}
.float-quote:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(196, 30, 74, 0.55); }
.float-quote svg { width: 18px; height: 18px; fill: currentColor; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 14px 38px rgba(196, 30, 74, 0.45); }
  50% { box-shadow: 0 14px 38px rgba(196, 30, 74, 0.45), 0 0 0 14px rgba(196, 30, 74, 0); }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .float-quote { animation: none; }
}

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.gallery-grid img {
  border-radius: var(--radius-sm);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .main-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 26px 22px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    overflow-y: auto;
    z-index: 999;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.08rem; padding: 14px 12px; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 18px;
    min-width: 0;
  }
  .dropdown a { font-size: 0.98rem; color: var(--gray-600); }
  .nav-toggle { display: flex; }
  .header-phone span { display: none; }
  .header-cta .btn { display: none; }
}
@media (max-width: 860px) {
  .quote-wrap, .areas-wrap, .split { grid-template-columns: 1fr; }
  .split.rev-mobile > *:first-child { order: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sticky-bar { display: grid; }
  .float-quote { display: none; }
  body { padding-bottom: 64px; }
  .hero { min-height: 0; padding: 130px 0 70px; }
}
@media (max-width: 560px) {
  .form-row, .service-checks, .areas-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-ctas .btn { width: 100%; }
  .logo img { height: 38px; }
}
