/* ==========================================================================
   Callahan Plumbing & Drain — main stylesheet
   Design tokens follow the Nexar Conversion Engine build standard:
   trust palette (navy + action blue), high-contrast CTAs, mobile-first.
   ========================================================================== */

:root {
  /* Color tokens */
  --navy-900: #0B1526;
  --navy-800: #0F172A;
  --navy-700: #1E293B;
  --navy-600: #334155;
  --blue-700: #0369A1;
  --blue-600: #0284C7;
  --blue-100: #E0F2FE;
  --sky-400: #38BDF8;
  --cta: #C2410C;          /* primary action — deep orange, 5.4:1 on white text */
  --cta-hover: #9A3412;
  --red-600: #DC2626;
  --red-700: #B91C1C;
  --amber-400: #F59E0B;
  --ink: #0F172A;
  --ink-soft: #475569;
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --muted: #EEF2F7;
  --border: #E2E8F0;
  --success: #15803D;

  /* Type */
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", Arial, sans-serif;

  /* Rhythm */
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 2px 8px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 4px 14px rgba(15, 23, 42, 0.10);
  --container: 1160px;
  --sticky-cta-height: 64px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 0.5rem;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.6rem); font-weight: 700; letter-spacing: 0.01em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); font-weight: 700; letter-spacing: 0.01em; }
h3 { font-size: 1.35rem; font-weight: 600; }

p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; }

a { color: var(--blue-700); }
a:hover { color: var(--blue-600); }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.container--narrow { max-width: 860px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-800);
  color: #fff;
  padding: 10px 18px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Icons ---------- */
.icon { width: 20px; height: 20px; flex: none; }
.icon--sm { width: 16px; height: 16px; }
.icon--lg { width: 28px; height: 28px; }
.icon--xl { width: 48px; height: 48px; }

.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 17px; height: 17px; fill: var(--amber-400); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  min-height: 48px;
  transition: background-color 0.18s ease, border-color 0.18s ease,
              color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--cta);
  color: #fff;
}
.btn--primary:hover { background: var(--cta-hover); color: #fff; }

.btn--secondary {
  background: #fff;
  color: var(--navy-800);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover { border-color: var(--navy-600); color: var(--navy-800); }

.btn--emergency {
  background: #fff;
  color: var(--red-700);
  font-weight: 700;
  white-space: nowrap;
}
.btn--emergency:hover { background: #FEF2F2; color: var(--red-700); }

.btn--lg { padding: 16px 30px; font-size: 1.06rem; }
.btn--block { width: 100%; }

.btn--phone {
  background: transparent;
  color: var(--navy-800);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  gap: 12px;
  text-decoration: none;
}
.btn--phone:hover { background: var(--muted); color: var(--navy-800); }
.btn--phone .icon { width: 26px; height: 26px; color: var(--cta); }
.btn--phone__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.05;
  white-space: nowrap;
}
.btn--phone__label small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Utility bar ---------- */
.utility-bar {
  background: var(--navy-900);
  color: #CBD5E1;
  font-size: 0.84rem;
}
.utility-bar__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 7px;
}
.utility-bar__item { display: inline-flex; align-items: center; gap: 7px; margin: 0; white-space: nowrap; }
.utility-bar__item .icon { color: var(--sky-400); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 12px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark svg { width: 44px; height: 44px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand__tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-700);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 3px;
}

.site-nav { display: flex; gap: 26px; }
.site-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-600);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.site-nav a:hover { color: var(--navy-800); border-bottom-color: var(--cta); }

.site-header__actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 8px 20px 20px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 14px 4px;
  font-weight: 600;
  color: var(--navy-800);
  text-decoration: none;
  border-bottom: 1px solid var(--muted);
}
.mobile-nav__cta {
  margin-top: 14px;
  background: var(--cta);
  color: #fff !important;
  text-align: center;
  border-radius: var(--radius-sm);
  border-bottom: none !important;
  padding: 14px !important;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--navy-800);
  color: #E2E8F0;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: center;
  padding-block: 72px 84px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 600;
  color: #E2E8F0;
  margin: 0 0 20px;
}

.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 span { color: var(--sky-400); }

.hero__sub {
  font-size: 1.13rem;
  color: #CBD5E1;
  max-width: 54ch;
  margin-bottom: 24px;
}

.hero__checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.hero__checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #F1F5F9;
}
.hero__checks .icon { color: var(--sky-400); }

.hero__cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 12px; }

.hero__microcopy { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }
.hero .hero__microcopy, .hero__microcopy--light { color: #94A3B8; }

/* Hero form card */
.hero__form-card {
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 30px 28px;
  border-top: 5px solid var(--cta);
}
.form-card__title {
  font-size: 1.65rem;
  margin-bottom: 4px;
}
.form-card__sub { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 18px; }
.form-card__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin: 12px 0 0;
}
.form-card__note .icon { color: var(--success); }

/* ---------- Forms ---------- */
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-600);
}
.field__optional { font-weight: 400; color: var(--ink-soft); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  min-height: 48px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { min-height: 88px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.18);
}
.field.has-error input,
.field.has-error select { border-color: var(--red-600); }
.field__error {
  display: none;
  font-size: 0.8rem;
  color: var(--red-600);
  margin: 0;
}
.field.has-error .field__error { display: block; }

/* Contact-preference radios */
.field--choice { border: none; padding: 0; margin: 0; align-items: center; text-align: center; }
.field--choice legend {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-600);
  padding: 0;
  margin-bottom: 8px;
}
.choice-row { display: flex; gap: 10px; }
.choice {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.choice:hover { border-color: var(--blue-600); }
.choice:has(input:checked) {
  border-color: var(--blue-700);
  background: var(--blue-100);
  color: var(--blue-700);
}
.choice input {
  /* undo the generic .field input sizing so radios stay native-sized */
  width: 15px;
  height: 15px;
  min-height: 0;
  padding: 0;
  border: none;
  accent-color: var(--blue-700);
  margin: 0;
}
.choice span { white-space: nowrap; }

.lead-form__success { text-align: center; padding: 18px 6px 6px; }
.lead-form__success .icon--xl { color: var(--success); margin-inline: auto; margin-bottom: 12px; }
.lead-form__success h3 { font-size: 1.5rem; }
.lead-form__success p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding-block: 26px;
}
.trust-item { text-align: center; }
.trust-item__num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy-800);
  margin: 0;
  line-height: 1.1;
}
.trust-item__num span { color: var(--amber-400); font-size: 1.4rem; }
.trust-item__label { font-size: 0.84rem; color: var(--ink-soft); margin: 2px 0 0; }

/* ---------- Emergency bar ---------- */
.emergency-bar {
  background: var(--red-700);
  color: #fff;
}
.emergency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
}
.emergency-bar__text { display: flex; align-items: center; gap: 14px; }
.emergency-bar__text .icon { color: #FECACA; }
.emergency-bar__text p { margin: 0; font-size: 0.98rem; max-width: 62ch; }

/* ---------- Sections ---------- */
.section { padding-block: 84px; }
.section--muted { background: var(--muted); }
.section--navy {
  background: var(--navy-800);
  color: #CBD5E1;
}

.section__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section__eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 10px;
}
.section__eyebrow--light { color: var(--sky-400); }
.section__sub { color: var(--ink-soft); font-size: 1.05rem; margin: 10px 0 0; }

.section__cta { text-align: center; margin-top: 48px; }
.section__cta p { font-weight: 600; color: var(--ink-soft); margin-bottom: 14px; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { border-color: #94A3B8; }
.service-card--featured { border: 2px solid var(--red-600); }
.service-card__badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--red-600);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
}
.service-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--blue-100);
  color: var(--blue-700);
  border-radius: 12px;
  margin-bottom: 16px;
}
.service-card--featured .service-card__icon { background: #FEE2E2; color: var(--red-600); }
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 0.93rem; color: var(--ink-soft); flex: 1; margin-bottom: 16px; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--blue-700);
  text-decoration: none;
}
.service-card__link:hover { color: var(--blue-600); gap: 10px; }
.service-card__link { transition: gap 0.18s ease, color 0.18s ease; }

/* Compact rows for smaller everyday jobs */
.services-more { margin-top: 40px; }
.services-more__title {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.services-list { list-style: none; }
.services-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--border);
}
.services-list__row h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 4px;
}
.services-list__row p { font-size: 0.93rem; color: var(--ink-soft); margin: 0; max-width: 72ch; }
.services-list__row .service-card__link { white-space: nowrap; }

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 56px;
  align-items: start;
}
.section--navy h2 { color: #fff; }
.why-copy__lead { font-size: 1.08rem; color: #CBD5E1; max-width: 62ch; margin-bottom: 34px; }

.why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 30px; margin-bottom: 36px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-point__icon {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--sky-400);
  border: 1px solid rgba(56, 189, 248, 0.25);
}
.why-point__icon svg { width: 24px; height: 24px; }
.why-point h3 { color: #fff; font-size: 1.18rem; margin-bottom: 5px; }
.why-point p { font-size: 0.92rem; color: #94A3B8; margin: 0; }

.why-cta { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }

.owner-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--sky-400);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.owner-card__label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sky-400);
  margin: 0 0 14px;
}
.owner-card blockquote { margin: 0 0 18px; }
.owner-card blockquote p {
  font-size: 1.02rem;
  font-style: italic;
  color: #E2E8F0;
  margin: 0;
}
.owner-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.owner-card__role { font-size: 0.84rem; color: #94A3B8; margin: 2px 0 14px; }
.owner-card__extra {
  font-size: 0.88rem;
  color: #94A3B8;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 14px;
  margin-bottom: 16px;
}
.owner-card__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sky-400);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 999px;
  padding: 4px 11px;
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.review-card__stars { margin-bottom: 12px; }
.review-card__text { font-size: 0.95rem; color: var(--navy-600); flex: 1; margin-bottom: 18px; }
.review-card__meta { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}
.review-card__name { font-weight: 700; margin: 0; font-size: 0.94rem; }
.review-card__loc { font-size: 0.8rem; color: var(--ink-soft); margin: 0; }

/* ---------- Process ---------- */
.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  counter-reset: step;
  margin-bottom: 60px;
}
.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.process-step__num {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.process-step h3 { margin-bottom: 8px; }
.process-step p { font-size: 0.94rem; color: var(--ink-soft); margin: 0; }

/* Pricing panel */
.pricing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 40px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 5px solid var(--blue-700);
  border-radius: var(--radius);
  padding: 38px 40px;
  box-shadow: var(--shadow-md);
}
.pricing-panel h3 { font-size: 1.6rem; }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.pricing-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.97rem;
  color: var(--navy-600);
}
.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230369A1' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-panel__fit {
  margin: 18px 0 0;
  padding: 14px 16px;
  background: var(--muted);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  color: var(--navy-600);
}
.pricing-panel__cta { text-align: center; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.pricing-panel__hint { font-weight: 700; font-size: 1.05rem; margin: 0; }

/* ---------- Book online ---------- */
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 48px;
  align-items: start;
}
.booking-info__urgent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--red-700);
  margin-bottom: 26px;
}
.booking-info__urgent .icon { color: var(--red-600); margin-top: 2px; }
.booking-info__urgent a { color: var(--red-700); font-weight: 700; }
.booking-info h3 { margin-bottom: 12px; }
.booking-info__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.booking-info__list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.97rem;
  color: var(--navy-600);
}
.booking-info__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230369A1' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.booking-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--cta);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
}
.booking-widget .calendly-inline-widget { width: 100%; height: 660px; }
.booking-fallback {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 34px 30px;
}
.booking-fallback h3 { margin-bottom: 4px; }

/* ---------- Service area ---------- */
.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 56px;
  align-items: center;
}
.area-copy > p { color: var(--ink-soft); max-width: 58ch; }
.towns {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0;
}
.towns li {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px 10px 34px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy-600);
}
.towns li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230369A1' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.area-note { font-size: 0.92rem; }

/* Recent-work panel (replaces decorative map) */
.jobs-log {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 26px 20px;
}
.jobs-log h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.jobs-log__list { list-style: none; }
.jobs-log__list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--muted);
}
.jobs-log__list li:last-child { border-bottom: none; }
.jobs-log__job { font-weight: 700; font-size: 0.97rem; margin: 0; }
.jobs-log__meta { font-size: 0.85rem; color: var(--ink-soft); margin: 2px 0 0; }
.jobs-log__note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin: 8px 0 0;
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy-800);
  transition: background-color 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item summary:hover { background: var(--bg); }
.faq-item__body { padding: 0 22px 20px; }
.faq-item__body p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--navy-900);
  color: #CBD5E1;
  padding-block: 84px;
}
.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 56px;
  align-items: start;
}
.final-cta h2 { color: #fff; }
.final-cta__copy > p { font-size: 1.08rem; max-width: 50ch; }

.contact-options { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
.contact-option {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #E2E8F0;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}
.contact-option:hover { background: rgba(255, 255, 255, 0.10); border-color: rgba(56, 189, 248, 0.5); color: #fff; }
.contact-option__icon {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  background: rgba(56, 189, 248, 0.15);
  color: var(--sky-400);
  border-radius: 10px;
}
.contact-option__icon svg { width: 24px; height: 24px; }
.contact-option span:last-child { display: flex; flex-direction: column; font-size: 0.92rem; }
.contact-option strong { font-size: 1.05rem; color: #fff; }

.final-cta__reassure { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.final-cta__reassure li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
}
.final-cta__reassure li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2338BDF8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.final-cta__form {
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 32px 30px;
  border-top: 5px solid var(--cta);
}
.final-cta__form .form-card__title { margin-bottom: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: #94A3B8;
  padding-top: 64px;
  font-size: 0.92rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.site-footer h3 {
  color: #fff;
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.site-footer a { color: #CBD5E1; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__tag { color: var(--sky-400); }
.site-footer__blurb { margin: 16px 0; max-width: 36ch; }
.site-footer__license { font-size: 0.82rem; color: #64748B; }
.site-footer__contact strong { color: #fff; font-size: 1.05rem; }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  padding-block: 20px;
  font-size: 0.82rem;
  color: #64748B;
}
.site-footer__bottom p { margin: 0; }

/* ---------- Mobile sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 110;
  display: none;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -1px 6px rgba(15, 23, 42, 0.10);
  padding-bottom: env(safe-area-inset-bottom);
}
.sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 6px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  min-height: var(--sticky-cta-height);
}
.sticky-cta__btn--call { background: var(--cta); color: #fff; }
.sticky-cta__btn--text { background: #fff; color: var(--navy-800); }
.sticky-cta__btn--book { background: var(--navy-800); color: #fff; }

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

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .trust-strip__inner { grid-template-columns: repeat(3, 1fr); row-gap: 22px; }
  .hero__inner { grid-template-columns: 1fr; gap: 44px; padding-block: 56px 64px; }
  .hero__form-card { max-width: 560px; }
  .why-grid { grid-template-columns: 1fr; gap: 44px; }
  .owner-card { max-width: 480px; margin-inline: auto; }
  .final-cta__inner { grid-template-columns: 1fr; }
  .final-cta__form { max-width: 640px; }
}

@media (max-width: 960px) {
  .utility-bar__item--hide-mobile { display: none; }
}

@media (max-width: 860px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .pricing-panel { grid-template-columns: 1fr; padding: 30px 26px; }
  .area-grid { grid-template-columns: 1fr; gap: 40px; }
  .jobs-log { max-width: 560px; }
  .services-list__row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .booking-grid { grid-template-columns: 1fr; gap: 36px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .emergency-bar__inner { flex-direction: column; text-align: center; }
  .emergency-bar__text { flex-direction: column; }
}

@media (max-width: 640px) {
  .section { padding-block: 60px; }
  .utility-bar__inner { justify-content: center; }
  .btn--phone__label small { display: none; }
  .btn--phone__label { font-size: 1.05rem; }
  .btn--phone { padding: 8px 8px; gap: 8px; }
  .brand__name { font-size: 1.3rem; }
  .brand__tag { font-size: 0.62rem; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-points { grid-template-columns: 1fr; }
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .towns { grid-template-columns: repeat(2, 1fr); }
  .lead-form__row { grid-template-columns: 1fr; }
  .hero__cta-row .btn { width: 100%; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* show sticky bar, pad page bottom so content isn't hidden */
  .sticky-cta { display: grid; }
  body { padding-bottom: var(--sticky-cta-height); }
}
