/* =========================================================
   Tim Mobile Locksmith — global stylesheet
   Brand: Blue / Orange / White
   Mobile-first. Accessible. No external dependencies.
   ========================================================= */

:root {
  /* Brand palette */
  --color-blue: #1a4f8a;
  --color-blue-deep: #0d2f5e;
  --color-blue-soft: #E8F0FB;
  --color-orange: #f4a21a;
  --color-orange-deep: #e08a00;
  --color-orange-soft: #FFF2DC;
  --color-white: #FFFFFF;
  --color-off-white: #F7F9FC;

  /* Neutrals */
  --color-ink: #0d2f5e;
  --color-text: #2D3748;
  --color-text-muted: #5A6781;
  --color-border: #E1E7F0;
  --color-success: #1F8A4C;

  /* Type */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Sizing */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(20, 33, 61, 0.06), 0 1px 3px rgba(20, 33, 61, 0.05);
  --shadow-md: 0 4px 10px rgba(20, 33, 61, 0.08), 0 2px 6px rgba(20, 33, 61, 0.05);
  --shadow-lg: 0 20px 40px rgba(20, 33, 61, 0.12);

  /* Layout */
  --container: 1180px;
  --gutter: clamp(16px, 4vw, 32px);
  --header-h: 76px;
}

/* ----- Reset / base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-blue); text-decoration: none; }
a:hover { color: var(--color-blue-deep); text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-ink);
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* Skip link */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--color-ink); color: #fff;
  padding: 10px 16px; z-index: 1000;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

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

/* ----- Header / Navigation ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; color: var(--color-ink); }
.brand-mark {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: none;
}
.brand-mark img,
.brand-mark svg {
  width: 100%; height: 100%;
  display: block;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text small { font-weight: 500; font-size: 0.72rem; color: var(--color-text-muted); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__list { display: flex; list-style: none; margin: 0; padding: 0; gap: 4px; align-items: center; }
.nav__item { position: relative; }
.nav__link {
  display: inline-block;
  padding: 10px 14px;
  color: var(--color-ink);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
}
.nav__link:hover { background: var(--color-blue-soft); text-decoration: none; }
.nav__link[aria-current="page"] { color: var(--color-blue); background: var(--color-blue-soft); }

.nav__dropdown {
  position: absolute;
  top: 100%; left: 0;
  min-width: 240px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0; visibility: hidden;
  transform: translateY(6px);
  transition: opacity .14s ease, transform .14s ease, visibility .14s;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 9px 12px;
  color: var(--color-ink);
  font-size: 0.92rem;
  border-radius: 6px;
}
.nav__dropdown a:hover { background: var(--color-blue-soft); text-decoration: none; }
.nav__dropdown-section {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  padding: 10px 12px 4px;
}

/* Nested submenu (county -> cities) */
.nav__dropdown li.has-submenu { position: relative; }
.nav__dropdown-county {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  font-weight: 600 !important;
}
.nav__dropdown-county .caret { color: var(--color-orange); font-weight: 700; font-size: 1.1rem; line-height: 1; }
.nav__submenu {
  position: absolute;
  top: -8px;
  left: 100%;
  min-width: 220px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 8px;
  list-style: none;
  margin: 0 0 0 4px;
  opacity: 0; visibility: hidden;
  transform: translateX(6px);
  transition: opacity .14s ease, transform .14s ease, visibility .14s;
}
.nav__dropdown li.has-submenu:hover > .nav__submenu,
.nav__dropdown li.has-submenu:focus-within > .nav__submenu {
  opacity: 1; visibility: visible; transform: translateX(0);
}
.nav__submenu a {
  display: block;
  padding: 9px 12px;
  color: var(--color-ink);
  font-size: 0.92rem;
  border-radius: 6px;
}
.nav__submenu a:hover { background: var(--color-blue-soft); text-decoration: none; }

@media (max-width: 1024px) {
  /* Submenus inline expand on mobile */
  .nav__submenu {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(10, 77, 168, 0.04);
    opacity: 1; visibility: visible; transform: none;
    border-radius: 0;
    padding: 4px 8px 8px;
    margin: 0;
    display: none;
  }
  .nav__dropdown li.has-submenu.is-open > .nav__submenu { display: block; }
  .nav__dropdown-county { cursor: pointer; }
}

.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-orange);
  color: #fff;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(245, 130, 32, 0.3);
  transition: transform .12s ease, background .12s ease;
}
.header-cta:hover { background: var(--color-orange-deep); color: #fff; text-decoration: none; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none; border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  color: var(--color-ink);
  padding: 0;
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 0;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
    z-index: 49;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 0; width: 100%; }
  .nav__item { width: 100%; }
  .nav__link { width: 100%; padding: 14px 12px; border-bottom: 1px solid var(--color-border); border-radius: 0; }
  .nav__dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--color-off-white);
    opacity: 1; visibility: visible; transform: none;
    border-radius: 0;
    padding: 4px 8px 8px;
    display: none;
  }
  .nav__item.is-open > .nav__dropdown { display: block; }
  .header-cta { margin: 12px 0 0; justify-content: center; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, color .12s ease;
  text-decoration: none;
  line-height: 1;
  min-height: 48px;
  text-align: center;
}
.btn--primary { background: var(--color-orange); color: #fff; border-color: var(--color-orange); box-shadow: 0 6px 18px rgba(245, 130, 32, 0.32); }
.btn--primary:hover { background: var(--color-orange-deep); border-color: var(--color-orange-deep); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn--secondary { background: #fff; color: var(--color-blue); border-color: var(--color-blue); }
.btn--secondary:hover { background: var(--color-blue); color: #fff; text-decoration: none; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); color: #fff; text-decoration: none; }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; min-height: 56px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ----- Hero base ----- */
.hero { position: relative; overflow: hidden; }
.hero__inner { position: relative; z-index: 2; padding: clamp(48px, 8vw, 96px) 0; }
.hero__eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 { color: #fff; max-width: 22ch; }
.hero p.lead { color: rgba(255,255,255,0.92); font-size: 1.15rem; max-width: 56ch; margin-bottom: 28px; }

/* Variant: home — diagonal split with orange wedge */
.hero--home {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-deep) 100%);
  color: #fff;
}
.hero--home::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(245, 130, 32, 0.35), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(245, 130, 32, 0.18), transparent 50%);
  z-index: 1;
}
.hero--home::after {
  content: ""; position: absolute;
  right: -10%; bottom: -30%;
  width: 480px; height: 480px;
  background: var(--color-orange);
  border-radius: 50%;
  filter: blur(80px); opacity: 0.4;
  z-index: 1;
}
.hero--home .hero__inner { padding: clamp(60px, 9vw, 120px) 0; }
.hero--home .hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.hero-trust-row {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 22px; color: #fff;
  font-size: 0.95rem; font-weight: 600;
}
.hero-trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust-row svg { width: 18px; height: 18px; color: var(--color-orange); }

.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: #fff;
}
.hero-card h3 { color: #fff; margin: 0 0 14px; font-size: 1.1rem; }
.hero-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.hero-card ul li { display: flex; align-items: center; gap: 10px; font-size: 0.97rem; }
.hero-card ul li::before {
  content: "";
  width: 18px; height: 18px;
  background: var(--color-orange);
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'><path d='M6.5 11.5L3 8l1-1 2.5 2.5L12 4l1 1z'/></svg>");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
}

@media (max-width: 800px) {
  .hero--home .hero-grid { grid-template-columns: 1fr; }
}

/* Variant: solid blue with vertical orange accent bar (services parent) */
.hero--bar {
  background: var(--color-blue);
  color: #fff;
  border-bottom: 6px solid var(--color-orange);
}
.hero--bar .hero__inner { padding-left: 28px; }
.hero--bar::before {
  content: ""; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 8px;
  background: var(--color-orange);
  z-index: 2;
}

/* Variant: angled gradient (residential) */
.hero--angled {
  background:
    linear-gradient(115deg, var(--color-blue-deep) 0%, var(--color-blue) 55%, #1568cf 100%);
  color: #fff;
}
.hero--angled::after {
  content: ""; position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(245, 130, 32, 0.08) 18px, rgba(245, 130, 32, 0.08) 22px);
  z-index: 1;
}

/* Variant: orange-forward (commercial) */
.hero--orange {
  background: linear-gradient(160deg, var(--color-ink) 0%, #2a3a6b 50%, var(--color-orange-deep) 130%);
  color: #fff;
}
.hero--orange .hero__eyebrow {
  background: var(--color-orange);
}

/* Variant: split (automotive) */
.hero--split {
  background: var(--color-blue-deep);
  color: #fff;
}
.hero--split::before {
  content: ""; position: absolute;
  right: 0; top: 0; bottom: 0; width: 50%;
  background: linear-gradient(180deg, var(--color-orange) 0%, var(--color-orange-deep) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

/* Variant: city pages — half-content half-info-card */
.hero--city {
  background:
    linear-gradient(90deg, var(--color-blue) 0%, var(--color-blue-deep) 100%);
  color: #fff;
}
.hero--city .hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.hero--city::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(245, 130, 32, 0.18), transparent 40%);
  z-index: 1;
}
@media (max-width: 800px) {
  .hero--city .hero-grid { grid-template-columns: 1fr; }
}

/* Variant: circles (about) */
.hero--circles {
  background: var(--color-white);
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-border);
}
.hero--circles .hero__eyebrow { background: var(--color-blue-soft); color: var(--color-blue); }
.hero--circles h1 { color: var(--color-ink); }
.hero--circles p.lead { color: var(--color-text); }
.hero--circles::before {
  content: ""; position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--color-orange-soft) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero--circles::after {
  content: ""; position: absolute;
  left: -120px; bottom: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--color-blue-soft) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Variant: contact — minimal centered */
.hero--centered {
  background: linear-gradient(180deg, var(--color-off-white) 0%, #ffffff 100%);
  color: var(--color-ink);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.hero--centered h1 { color: var(--color-ink); margin-left: auto; margin-right: auto; }
.hero--centered p.lead { color: var(--color-text); margin-left: auto; margin-right: auto; }
.hero--centered .hero__eyebrow { background: var(--color-orange-soft); color: var(--color-orange-deep); }

/* Variant: blog — accent-bar typographic */
.hero--accent {
  background: var(--color-ink);
  color: #fff;
  border-top: 6px solid var(--color-orange);
}
.hero--accent .hero__eyebrow {
  background: transparent;
  color: var(--color-orange);
  padding: 0;
  border-left: 4px solid var(--color-orange);
  border-radius: 0;
  padding-left: 12px;
}

/* Variant: service area parent — geometric tile */
.hero--tiles {
  background: var(--color-blue);
  color: #fff;
  position: relative;
}
.hero--tiles::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}
.hero--tiles::after {
  content: ""; position: absolute;
  right: 8%; top: 40%;
  width: 120px; height: 120px;
  background: var(--color-orange);
  transform: rotate(20deg);
  border-radius: 24px;
  opacity: 0.85;
  z-index: 1;
}

/* ----- Generic section ----- */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section--alt { background: var(--color-off-white); }
.section--blue { background: var(--color-blue-soft); }
.section__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section__head p { color: var(--color-text-muted); font-size: 1.08rem; margin: 0; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--color-orange-deep); font-weight: 700;
  margin-bottom: 12px;
}

/* ----- Service category cards ----- */
.service-cards { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--color-blue-soft);
  color: var(--color-blue);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 { margin: 0 0 10px; }
.service-card p { color: var(--color-text-muted); margin: 0 0 16px; font-size: 0.97rem; }
.service-card__list { list-style: none; padding: 0; margin: 0 0 18px; font-size: 0.93rem; }
.service-card__list li { padding: 4px 0; color: var(--color-text); }
.service-card__list li::before { content: "→ "; color: var(--color-orange); font-weight: 700; }
.service-card .arrow { color: var(--color-orange); font-weight: 700; text-decoration: none; }
.service-card .arrow:hover { text-decoration: underline; }

/* ----- Trust strip ----- */
.trust-strip {
  background: var(--color-ink);
  color: #fff;
  padding: 28px 0;
}
.trust-strip__grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
}
.trust-strip__item strong { display: block; color: var(--color-orange); font-size: 1.4rem; }
.trust-strip__item span { color: rgba(255,255,255,0.8); font-size: 0.92rem; }

/* ----- Why us / feature grid ----- */
.feature-grid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.feature {
  padding: 24px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.feature__icon {
  width: 44px; height: 44px;
  background: var(--color-orange-soft);
  color: var(--color-orange-deep);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { margin: 0 0 6px; font-size: 1.1rem; }
.feature p { margin: 0; color: var(--color-text-muted); font-size: 0.96rem; }

/* ----- City grid ----- */
.city-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.city-card {
  display: block;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  color: var(--color-ink);
  transition: border-color .12s ease, transform .12s ease;
}
.city-card:hover { border-color: var(--color-orange); transform: translateY(-2px); text-decoration: none; color: var(--color-ink); }
.city-card small { color: var(--color-text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.city-card h3 { margin: 4px 0 6px; font-size: 1.18rem; }
.city-card span { color: var(--color-orange); font-weight: 700; font-size: 0.9rem; }

/* ----- Testimonials ----- */
.testimonial-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.testimonial {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: relative;
}
.testimonial__stars { color: var(--color-orange); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial blockquote { margin: 0 0 16px; font-style: italic; color: var(--color-text); font-size: 1rem; line-height: 1.6; }
.testimonial cite { font-style: normal; font-weight: 700; color: var(--color-ink); display: block; }
.testimonial cite span { display: block; color: var(--color-text-muted); font-weight: 500; font-size: 0.88rem; }

/* ----- FAQ / Accordion ----- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
}
.faq__q {
  width: 100%;
  background: #fff;
  border: 0;
  padding: 18px 22px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: pointer;
  line-height: 1.4;
}
.faq__q:hover { background: var(--color-off-white); }
.faq__q::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-orange);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq__item.is-open .faq__q::after { content: "−"; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, padding .25s ease;
  padding: 0 22px;
  color: var(--color-text);
}
.faq__item.is-open .faq__a { max-height: 600px; padding: 0 22px 20px; }
.faq__a p { margin: 0 0 10px; }
.faq__a p:last-child { margin: 0; }

/* ----- Two-column layout ----- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* ----- CTA block ----- */
.cta-block {
  background: linear-gradient(120deg, var(--color-blue) 0%, var(--color-blue-deep) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.cta-block::after {
  content: ""; position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  background: var(--color-orange);
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(40px);
}
.cta-block h2 { color: #fff; max-width: 22ch; }
.cta-block p { color: rgba(255,255,255,0.9); margin-bottom: 24px; max-width: 48ch; }
.cta-block .btn-row { position: relative; z-index: 2; }

/* ----- Map embed ----- */
.map-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  background: var(--color-blue-soft);
}

/* ----- Service list (residential/commercial/auto category) ----- */
.svc-list { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.svc-list__item {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color .12s ease, transform .12s ease;
}
.svc-list__item:hover { border-color: var(--color-orange); transform: translateY(-2px); }
.svc-list__item h3 { margin: 0 0 8px; font-size: 1.08rem; }
.svc-list__item p { margin: 0; color: var(--color-text-muted); font-size: 0.95rem; }

/* ----- Breadcrumbs ----- */
.breadcrumbs {
  font-size: 0.88rem;
  padding: 14px 0;
  color: var(--color-text-muted);
}
.breadcrumbs a { color: var(--color-text-muted); }
.breadcrumbs a:hover { color: var(--color-blue); }
.breadcrumbs span[aria-current] { color: var(--color-ink); font-weight: 600; }
.breadcrumbs li { display: inline; }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; }
.breadcrumbs li + li::before { content: " / "; color: var(--color-border); padding: 0 6px; }

/* ----- Contact form ----- */
.form-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-row--2 { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-ink);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  color: var(--color-ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(10, 77, 168, 0.15);
}
.field textarea { min-height: 130px; resize: vertical; }

/* ----- Footer ----- */
.site-footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 24px;
  margin-top: 0;
}
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: var(--color-orange); text-decoration: none; }
.footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  margin-bottom: 32px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: 0.95rem; margin: 0 0 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; font-size: 0.93rem; }
.footer-grid p { font-size: 0.93rem; margin: 0 0 8px; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand-text small { color: rgba(255,255,255,0.6); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: rgba(255,255,255,0.6); font-size: 0.85rem;
}

/* ----- Utilities ----- */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0 !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ----- Brand partners (logos/badges row) ----- */
.brand-partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  align-items: center;
}
.brand-partner {
  padding: 18px 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  transition: border-color .12s ease, color .12s ease, transform .12s ease;
  font-size: 0.95rem;
}
.brand-partner:hover {
  border-color: var(--color-orange);
  color: var(--color-ink);
  transform: translateY(-2px);
}

/* ----- Neighborhoods grid (city pages) ----- */
.neighborhoods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 16px 0 24px;
}
.neighborhood {
  padding: 14px 16px;
  background: var(--color-blue-soft);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-orange);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  line-height: 1.5;
}
.neighborhood strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-ink);
  margin-bottom: 2px;
}

/* ----- Sticky mobile call bar ----- */
.mobile-call-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--color-orange);
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.18);
}
.mobile-call-bar:hover { background: var(--color-orange-deep); color: #fff; text-decoration: none; }
.mobile-call-bar svg { vertical-align: middle; margin-right: 8px; width: 20px; height: 20px; }
@media (max-width: 800px) {
  .mobile-call-bar { display: block; }
  body { padding-bottom: 64px; }
}

/* ----- Founder card (About page) ----- */
.founder-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--color-blue-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 24px 0;
}
.founder-card__avatar {
  flex-shrink: 0;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-deep) 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 2rem;
  position: relative;
}
.founder-card__avatar::after {
  content: "";
  position: absolute;
  right: -2px; bottom: -2px;
  width: 22px; height: 22px;
  background: var(--color-orange);
  border-radius: 50%;
  border: 3px solid var(--color-blue-soft);
}
.founder-card h3 { margin: 0 0 6px; }
.founder-card p { margin: 0 0 8px; color: var(--color-text); font-size: 0.97rem; }
@media (max-width: 600px) {
  .founder-card { flex-direction: column; gap: 16px; }
}

/* ----- Authority links callout ----- */
.authority-links {
  background: var(--color-off-white);
  border-left: 3px solid var(--color-blue);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}
.authority-links strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-ink);
  margin-bottom: 6px;
}
.authority-links ul { list-style: none; padding: 0; margin: 0; }
.authority-links li { padding: 3px 0; font-size: 0.95rem; }

/* ----- Footer popular pages cloud ----- */
.footer-cloud {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  margin-top: 24px;
}
.footer-cloud h4 {
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}
.footer-cloud-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-cloud-list a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid transparent;
}
.footer-cloud-list a:hover {
  color: var(--color-orange);
  border-bottom-color: var(--color-orange);
  text-decoration: none;
}

/* ----- Blog article styles ----- */
.article-body {
  max-width: 760px;
  margin: 0 auto;
}
.article-body p,
.article-body ul,
.article-body ol {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text);
}
.article-body h2 {
  margin-top: 2.2em;
  font-size: 1.55rem;
}
.article-body h3 {
  margin-top: 1.8em;
  font-size: 1.18rem;
}
.article-body blockquote {
  border-left: 4px solid var(--color-orange);
  padding: 8px 0 8px 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--color-text);
  background: var(--color-orange-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding-right: 16px;
}
.article-meta {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

/* ----- Print ----- */
@media print {
  .site-header, .site-footer, .hero, .cta-block, .nav-toggle, .mobile-call-bar { display: none !important; }
  a { color: #000 !important; }
}
