/* ══════════════════════════════════════════════════════════════════════════
   Moovers — Modernist design system.
   Imported from the "Moovers website redesign" Claude Design project
   (styles.css). Tokens and component classes below are the source of truth;
   page-level rules live in the second half of this file.
   ══════════════════════════════════════════════════════════════════════ */

:root {
  --color-bg: #ffffff;
  --color-surface: #f2f4f8;
  --color-text: #13294D;
  --color-accent: #E78A00; /* Moovers orange */
  --color-accent-2: #13294D; /* Moovers navy */
  --color-divider: color-mix(in srgb, #13294D 30%, transparent);

  --color-neutral-100: #f8f4f4;
  --color-neutral-200: #eae7e7;
  --color-neutral-300: #d7d3d3;
  --color-neutral-400: #bab6b6;
  --color-neutral-500: #9b9797;
  --color-neutral-600: #7d7979;
  --color-neutral-700: #605d5d;
  --color-neutral-800: #444141;
  --color-neutral-900: #2d2b2b;

  --color-accent-100: #fff4e0;
  --color-accent-200: #ffe5ba;
  --color-accent-300: #ffd188;
  --color-accent-400: #f8b043;
  --color-accent-500: #ef9711;
  --color-accent-600: #c97800;
  --color-accent-700: #a05f00;
  --color-accent-800: #714200;
  --color-accent-900: #472a00;

  --color-accent-2-100: #e9eef7;
  --color-accent-2-200: #d2dcec;
  --color-accent-2-300: #adc0dc;
  --color-accent-2-400: #7d97bf;
  --color-accent-2-500: #4c6a97;
  --color-accent-2-600: #34517c;
  --color-accent-2-700: #253e64;
  --color-accent-2-800: #13294D;
  --color-accent-2-900: #0c1b34;

  --font-heading: "Archivo", system-ui, sans-serif;
  --font-heading-weight: 800;
  --font-body: "Archivo", system-ui, sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;

  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;

  --shadow-sm: 0 1px 2px color-mix(in srgb, #2d2b2b 14%, transparent);
  --shadow-md: 0 3px 10px color-mix(in srgb, #2d2b2b 16%, transparent);
  --shadow-lg: 0 12px 32px color-mix(in srgb, #2d2b2b 22%, transparent);

  /* page rhythm */
  --edge: clamp(20px, 5vw, 72px);
  --wrap: 1200px;
  --section-y: clamp(44px, 6vw, 72px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  line-height: 1.12; letter-spacing: -0.015em; margin: 0 0 var(--space-2);
}
h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 25px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
p { margin: 0 0 var(--space-3); }
a { color: var(--color-accent-700); text-underline-offset: 3px; }
img { display: block; max-width: 100%; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent-600); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--color-accent) 30%, transparent); }

.text-muted { color: color-mix(in srgb, var(--color-text) 55%, transparent); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--color-accent); color: var(--color-accent-2);
  padding: 10px 16px; font-weight: var(--font-heading-weight); text-decoration: none;
}
.skip-link:focus-visible { left: 0; }

/* — rules — */
.hr { height: 2px; border: 0; margin: 0; background: var(--color-divider); }

/* — buttons — */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 14px; line-height: 1.2; color: var(--color-text);
  background: transparent; border: 1px solid transparent;
  padding: var(--space-2) calc(var(--space-3) * 1.2);
  border-radius: var(--radius-md);
}
.btn svg { display: block; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-primary { background: var(--color-accent); color: var(--color-accent-2); }
.btn-primary:hover { background: var(--color-accent-400); }
.btn-primary:active { background: var(--color-accent-600); }
.btn-secondary { border-color: var(--color-divider); }
.btn-secondary:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.btn-secondary:active { background: color-mix(in srgb, var(--color-text) 14%, transparent); }
.btn-ghost { color: var(--color-accent-700); padding-inline: var(--space-1); }
.btn-ghost:hover { background: color-mix(in srgb, var(--color-accent) 10%, transparent); }
.btn-lg { padding: 13px 22px; font-size: 15px; }

/* — forms — */
.field > label {
  display: block; font-size: 12px; margin-bottom: 5px;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}
.input {
  width: 100%; min-height: 36px; padding: 6px 10px; font: inherit;
  font-size: 14px; color: var(--color-text); caret-color: var(--color-accent);
  background: var(--color-surface);
  border: 1px solid var(--color-divider); border-radius: var(--radius-md);
}
.input:hover { border-color: color-mix(in srgb, var(--color-text) 45%, transparent); }
.input:focus-visible { border-color: var(--color-accent); outline-offset: 0; }

/* — cards — */
.card {
  display: flex; flex-direction: column; gap: var(--space-2);
  padding: var(--space-3); border-radius: var(--radius-md); background: var(--color-surface);
}
.elev-sm { box-shadow: var(--shadow-sm); }
.elev-md { box-shadow: var(--shadow-md); }
.elev-lg { box-shadow: var(--shadow-lg); }

/* — tags — */
.tag {
  display: inline-flex; align-items: center; font-size: 11px;
  letter-spacing: 0.02em; padding: 3px 10px;
  border-radius: calc(var(--radius-md) * 0.75);
}

/* — navigation — */
.nav {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-bottom: 2px solid var(--color-divider);
}
.nav a { color: inherit; text-decoration: none; font-size: 14px; }
.nav a:hover, .nav a[aria-current='page'] { color: var(--color-accent); }


/* ══════════════════════════════════════════════════════════════════════════
   Page chrome — header, mobile menu, footer
   ══════════════════════════════════════════════════════════════════════ */

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--edge); }

.site-nav {
  position: sticky; top: 0; z-index: 60;
  background: var(--color-accent-2);
  color: #ffffff;
  border-bottom: 0;
  padding: 10px var(--edge);
  gap: clamp(14px, 2vw, 26px);
}
/* .nav a sets `color: inherit`, which would resolve to the body's navy inside
   the navy bar. Restate white here (same specificity, later in the cascade),
   then pull the CTA back to navy-on-orange. */
.site-nav a { color: #ffffff; }
/* `.nav a[aria-current='page']` turns links orange, which on the orange CTA
   button means orange-on-orange: the label vanished on /quote. Match its
   specificity so the button keeps navy text on every page and state. */
.site-nav .nav-cta,
.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current='page'] { color: var(--color-accent-2); }
.site-nav .nav-brand { display: inline-flex; align-items: center; margin-right: auto; }
.site-nav .nav-brand img { height: 40px; width: auto; }

.nav-links { display: flex; gap: clamp(14px, 2vw, 26px); align-items: center; }
.nav-links a { padding: 10px 0; color: #ffffff; }
.nav-links a:hover { color: var(--color-accent); }
.nav-links a[aria-current='page'] { color: var(--color-accent); }

.nav-phone {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  text-decoration: none; color: #ffffff;
  font-weight: 600; font-size: 14px; white-space: nowrap;
}
.nav-phone:hover { color: var(--color-accent); }

.nav-cta { padding: 12px 18px; }

.menu-btn {
  display: none; min-height: 44px;
  color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.4);
}
.menu-btn:hover { background: rgba(255, 255, 255, 0.12); }

.mobile-menu {
  position: sticky; top: 64px; z-index: 55;
  background: var(--color-accent-2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding: 0 var(--edge) 12px;
  display: flex; flex-direction: column;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  padding: 14px 0; color: #ffffff; text-decoration: none; font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a[aria-current='page'] { color: var(--color-accent); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .phone-word { display: none; }
}

/* section eyebrow — small caps label with the orange square */
.eyebrow {
  display: block; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-accent-700); margin-bottom: 14px;
}
.section-title { font-size: clamp(26px, 3.4vw, 40px); letter-spacing: -0.015em; margin: 0 0 32px; }

/* ══════════════════════════════════════════════════════════════════════════
   Starter Kit page
   ══════════════════════════════════════════════════════════════════════ */

.kit-hero { background: var(--color-accent-2); color: #ffffff; }
.kit-hero .wrap {
  padding-block: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.kit-hero .tag {
  background: var(--color-accent); color: var(--color-accent-2);
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
.kit-hero h1 {
  font-size: clamp(32px, 4.8vw, 58px); line-height: 1.08; letter-spacing: -0.02em;
  margin: 18px 0 16px; color: #ffffff; max-width: 22ch;
}
.kit-hero h1 .accent { color: var(--color-accent); }
.kit-hero .lede {
  font-size: 17px; line-height: 1.6; max-width: 52ch;
  margin: 0 0 24px; color: rgba(255, 255, 255, 0.85);
}
.kit-hero .actions { display: flex; flex-wrap: wrap; gap: 12px; }
.kit-hero .btn-outline { border: 1px solid rgba(255, 255, 255, 0.6); color: #ffffff; }
.kit-hero .btn-outline:hover { background: rgba(255, 255, 255, 0.12); }
.kit-hero-art { display: flex; justify-content: center; }
.kit-hero-art img { width: min(100%, 380px); height: auto; }

.kit-contents { padding-block: var(--section-y); }
.kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 14px;
}
.kit-item { padding: 24px; gap: 12px; }
.kit-item img { width: 44px; height: 44px; }
.kit-item h3 { font-size: 20px; margin: 0; }
.kit-item p {
  font-size: 14.5px; line-height: 1.55; margin: 0;
  color: color-mix(in srgb, var(--color-text) 78%, transparent);
}
.kit-note {
  font-size: 13.5px; margin: 20px 0 0; max-width: 70ch;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}

.kit-request { padding-block: var(--section-y); }
.kit-request-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.kit-request-grid .section-title { margin-bottom: 12px; }
.kit-request-grid .lede { font-size: 16px; line-height: 1.6; max-width: 50ch; margin: 0; }

.kit-form {
  background: var(--color-surface);
  padding: clamp(20px, 3vw, 32px);
  display: flex; flex-direction: column; gap: 16px;
  max-width: 480px;
}
.kit-form .input { min-height: 48px; font-size: 16px; background: var(--color-bg); }
.kit-form button[type="submit"] {
  padding: 14px 20px; font-size: 15.5px; justify-content: flex-start;
}

.kit-thanks { max-width: 480px; padding: 28px; gap: 12px; }
.kit-thanks[hidden] { display: none; }
.kit-thanks h3 { font-size: 22px; margin: 0; }
.kit-thanks p { font-size: 15px; line-height: 1.6; margin: 0; }
.kit-thanks .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.kit-thanks .actions .btn { padding: 12px 20px; }

/* — footer — */
.site-footer { background: var(--color-accent-2); color: #ffffff; }
.site-footer .wrap { padding-block: clamp(40px, 5vw, 64px) 28px; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px; align-items: start;
}
.site-footer h6 { color: rgba(255, 255, 255, 0.6); margin-bottom: 10px; }
.site-footer img { height: 44px; width: auto; }
.footer-legal { font-size: 14px; margin: 16px 0 0; color: rgba(255, 255, 255, 0.75); line-height: 1.6; }
.footer-area { font-size: 14px; margin: 6px 0 0; color: rgba(255, 255, 255, 0.75); }
.footer-phone {
  display: block; padding: 8px 0 2px; color: #ffffff; text-decoration: none;
  font-size: 14.5px; font-weight: 600;
}
.footer-email { display: block; padding: 6px 0; color: #ffffff; text-decoration: none; font-size: 14.5px; }
.footer-phone:hover, .footer-email:hover { color: var(--color-accent); }
.footer-services { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.footer-services a {
  display: block; padding: 7px 0; color: #ffffff; text-decoration: none; font-size: 14px;
}
.footer-services a:hover { color: var(--color-accent); }
.footer-pitch {
  font-size: 14.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.75);
  margin: 0 0 16px; max-width: 32ch;
}
.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a { color: #ffffff; font-size: 14px; text-decoration: none; padding: 6px 0; }
.footer-social a:hover { color: var(--color-accent); }
.footer-rule { height: 1px; border: 0; background: rgba(255, 255, 255, 0.2); margin: 36px 0 16px; }
.footer-base {
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  align-items: center; justify-content: space-between;
}
.footer-base p { font-size: 13px; margin: 0; color: rgba(255, 255, 255, 0.6); }
.footer-base div { display: flex; gap: 20px; }
.footer-base a { font-size: 13px; color: rgba(255, 255, 255, 0.6); text-decoration: none; }
.footer-base a:hover { color: #ffffff; }

.kit-form[hidden] { display: none; }
.form-error {
  margin: 0; font-size: 14px; font-weight: 600;
  color: var(--color-accent-700);
}


/* ══════════════════════════════════════════════════════════════════════════
   Shared page pieces
   ══════════════════════════════════════════════════════════════════════ */

/* section on a navy ground — hero, closing banner, testimonials */
.on-navy { background: var(--color-accent-2); color: #ffffff; }
.on-navy h1, .on-navy h2, .on-navy h3 { color: #ffffff; }
.on-navy .eyebrow { color: var(--color-accent); }
.on-navy .lede { color: rgba(255, 255, 255, 0.85); }
.btn-outline { border: 1px solid rgba(255, 255, 255, 0.6); color: #ffffff; }
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }

.section { padding-block: var(--section-y); }

/* the orange offer strip above the nav */
.offer-banner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 46px; padding: 8px clamp(16px, 4vw, 32px);
  background: var(--color-accent); color: var(--color-accent-2);
  text-decoration: none; font-weight: 600; font-size: 14px; text-align: left;
}
.offer-banner:hover { background: var(--color-accent-400); }

/* full-bleed photo band between sections */
.photo-band {
  display: block; width: 100%;
  height: clamp(240px, 38vw, 520px);
  object-fit: cover; object-position: center 35%;
}

/* stat row */
.stats { padding-block: clamp(36px, 5vw, 56px); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 32px; }
.stat-num {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(32px, 3.4vw, 46px); line-height: 1;
  color: var(--color-accent-700); margin: 0;
  font-feature-settings: 'tnum' 1;
}
.stat-label {
  font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 70%, transparent); margin: 10px 0 0;
}

/* closing banner with a two-line headline */
.closing .wrap { padding-block: clamp(48px, 6vw, 80px); }
.closing h2 {
  font-size: clamp(30px, 4.2vw, 54px); line-height: 1.08;
  letter-spacing: -0.015em; margin: 0;
}
.closing h2 span { display: block; }
.closing h2 .accent { color: var(--color-accent); }
.closing .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* marker lists — orange square, check, or cross */
.marks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.marks li { display: flex; gap: 10px; font-size: 15px; line-height: 1.55; }
.marks .sq {
  display: inline-block; width: 9px; height: 9px;
  background: var(--color-accent); flex: none; margin-top: 6px;
}
.marks svg { flex: none; margin-top: 2px; }

/* details/summary accordions — FAQ and guide tips */
.accordion { max-width: 780px; }
.accordion details { border-top: 2px solid var(--color-divider); }
.accordion details:last-child { border-bottom: 2px solid var(--color-divider); }
.accordion summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 0; min-height: 44px; cursor: pointer;
  font-family: var(--font-heading); font-weight: var(--font-heading-weight); font-size: 17px;
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion .plus {
  /* summary is a flex container, so this span is already blockified and the
     [open] rotate below applies. Stated explicitly so the rotate keeps working
     if summary ever stops being flex — transform is a no-op on inline boxes. */
  display: inline-block;
  color: var(--color-accent-600); font-size: 22px; line-height: 1;
  transition: transform 0.15s ease;
}
@media (prefers-reduced-motion: reduce) { .accordion .plus { transition: none; } }
.accordion details[open] .plus { transform: rotate(45deg); }
.accordion .answer { padding: 0 0 18px; max-width: 65ch; }
.accordion .answer p { font-size: 15px; line-height: 1.6; margin: 0 0 10px; }
.accordion .answer p:last-child { margin-bottom: 0; }


/* ══════════════════════════════════════════════════════════════════════════
   Home
   ══════════════════════════════════════════════════════════════════════ */

.home-hero .wrap {
  padding-block: clamp(40px, 6vw, 80px) clamp(44px, 6vw, 80px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
.home-hero h1 {
  font-size: clamp(38px, 5.6vw, 68px); line-height: 1.06;
  letter-spacing: -0.02em; margin: 0 0 18px;
}
.home-hero h1 span { display: block; }
.home-hero h1 .accent { color: var(--color-accent); }
.home-hero .lede { font-size: 17px; line-height: 1.6; max-width: 50ch; margin: 0 0 22px; }
.home-hero .license {
  margin: 0; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.hero-form {
  background: var(--color-bg); color: var(--color-text);
  padding: clamp(20px, 3vw, 32px); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 16px;
  max-width: 480px; width: 100%; justify-self: end;
}
.hero-form h2 { font-size: 22px; margin: 0; }
.hero-form .input { min-height: 48px; font-size: 16px; }
.hero-form .hint {
  font-size: 12.5px; margin: 6px 0 0;
  color: color-mix(in srgb, var(--color-text) 65%, transparent);
}
.hero-form button[type="submit"] { padding: 14px 20px; font-size: 15.5px; justify-content: flex-start; }
.hero-form .callback {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 600; min-height: 44px;
  color: var(--color-accent-700); text-decoration: none;
}
.hero-form .callback:hover { text-decoration: underline; }
.hero-form .callback img { width: 18px; height: 18px; }

.svc-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 12px;
}
.svc-cards .card { padding: 24px; gap: 12px; }
.svc-cards img { width: 44px; height: 44px; }
.svc-cards h3 { font-size: 21px; margin: 0; }
.svc-cards p {
  font-size: 14.5px; line-height: 1.55; margin: 0; flex: 1;
  color: color-mix(in srgb, var(--color-text) 78%, transparent);
}
.svc-cards a { font-size: 14px; font-weight: 600; }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; align-items: center; }
.chip-row .btn { min-height: 44px; }
.chip-row .more { font-size: 14px; font-weight: 600; padding: 10px 8px; }

.testimonials .wrap { padding-block: var(--section-y); }
.testimonials h2 { margin-bottom: 8px; max-width: 24ch; }
.video-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 20px; max-width: 720px; margin-top: 32px;
}
.video-grid iframe {
  width: 100%; aspect-ratio: 9 / 16; height: auto; border: 0; background: #000000;
}

.kit-promo {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
.kit-promo .tag { font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.tag-accent { background: var(--color-accent-100); color: var(--color-accent-800); }
.kit-promo h2 { font-size: clamp(26px, 3.4vw, 40px); letter-spacing: -0.015em; margin: 16px 0 12px; }
.kit-promo .lede { font-size: 16px; line-height: 1.6; max-width: 52ch; margin: 0 0 24px; }
.kit-promo .actions { display: flex; flex-wrap: wrap; gap: 12px; }
.kit-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.kit-mini .card { align-items: flex-start; padding: 18px; gap: 10px; }
.kit-mini img { width: 38px; height: 38px; }
.kit-mini p {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 15px; margin: 0;
}

.area-finder { max-width: 560px; }
.area-finder .input { min-height: 48px; font-size: 16px; }
.area-result {
  display: flex; gap: 8px; align-items: flex-start;
  margin: 12px 0 0; font-weight: 600; font-size: 15px;
}
.area-result[hidden] { display: none; }
.area-result svg { flex: none; margin-top: 2px; }
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.area-chips .btn { min-height: 44px; }
.area-note {
  font-size: 13.5px; margin: 16px 0 0;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}

.pricing-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; }
.pricing-cols > div { border-top: 2px solid var(--color-divider); padding-top: 16px; }
.pricing-cols h3 { font-size: 19px; margin: 0 0 12px; }
.pricing-cols .marks li { font-size: 14.5px; }
.pricing-cols .after { display: inline-block; margin-top: 16px; font-size: 14px; font-weight: 600; }

.guide-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px; }
.guide-cards .card { text-decoration: none; color: inherit; }
.guide-cards .card:hover { box-shadow: var(--shadow-md); }
.guide-cards .go { font-size: 13px; font-weight: 600; color: var(--color-accent-700); }
.card-kicker { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent-700); }
.card-title {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 17px; line-height: 1.2;
}
.card-body { margin: 0; font-size: 13px; opacity: 0.8; flex: 1; }

.insta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.insta-grid img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }


/* ══════════════════════════════════════════════════════════════════════════
   About
   ══════════════════════════════════════════════════════════════════════ */

.page-hero .wrap { padding-block: clamp(40px, 6vw, 72px); }
.page-hero h1 {
  font-size: clamp(34px, 5vw, 60px); line-height: 1.06;
  letter-spacing: -0.02em; margin: 0 0 16px; max-width: 18ch;
}
.page-hero .lede { font-size: 17px; line-height: 1.6; max-width: 56ch; margin: 0 0 24px; }

.mission-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
.mission-grid h2 { font-size: clamp(26px, 3.4vw, 40px); letter-spacing: -0.015em; margin: 0 0 16px; }
.mission-grid p { font-size: 16px; line-height: 1.65; max-width: 56ch; margin: 0 0 14px; }
.mission-grid p:last-of-type { margin-bottom: 0; }
.mission-grid img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }

.section-lede {
  font-size: 16px; max-width: 58ch; margin: 0 0 32px;
  color: color-mix(in srgb, var(--color-text) 75%, transparent);
}

.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 14px;
}
.team-card { padding: 0; gap: 0; overflow: hidden; }
.team-card img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }
.team-card .body { padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.team-card .name {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 17px; margin: 0;
}
.team-card .role {
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--color-accent-700); margin: 0 0 6px;
}
.team-card .bio {
  font-size: 13.5px; line-height: 1.55; margin: 0;
  color: color-mix(in srgb, var(--color-text) 75%, transparent);
}


/* ══════════════════════════════════════════════════════════════════════════
   Services
   ══════════════════════════════════════════════════════════════════════ */

.jump-links { display: flex; flex-wrap: wrap; gap: 8px; }
.jump-links a {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: 10px 14px; border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff; text-decoration: none; font-size: 13.5px; font-weight: 600;
}
.jump-links a:hover { border-color: var(--color-accent); color: var(--color-accent); }

.svc { padding-block: clamp(40px, 5vw, 60px); }
.svc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(24px, 4vw, 56px);
}
.svc-num { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; }
.svc-num .sq { display: inline-block; width: 10px; height: 10px; background: var(--color-accent); }
.svc-num .n {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 15px; font-feature-settings: 'tnum' 1;
}
.svc h2 { font-size: clamp(25px, 3vw, 36px); letter-spacing: -0.015em; margin: 0 0 12px; }
.svc .blurb {
  font-size: 16px; line-height: 1.6; max-width: 52ch; margin: 0 0 20px;
  color: color-mix(in srgb, var(--color-text) 82%, transparent);
}
.svc-includes { align-self: center; }
.svc-includes h6 { margin-bottom: 12px; }
.svc-features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 14px 32px; border-top: 2px solid var(--color-divider); padding-top: 24px;
}
.svc-features > div { display: flex; gap: 10px; font-size: 15px; line-height: 1.55; }
.svc-features svg { flex: none; margin-top: 3px; }


/* ══════════════════════════════════════════════════════════════════════════
   Quote
   ══════════════════════════════════════════════════════════════════════ */

.light-hero { padding-block: clamp(40px, 6vw, 64px) clamp(24px, 3vw, 36px); }
.light-hero h1 {
  font-size: clamp(32px, 4.6vw, 56px); line-height: 1.08;
  letter-spacing: -0.02em; margin: 0 0 14px; max-width: 20ch;
}
.light-hero .lede { font-size: 17px; line-height: 1.6; max-width: 54ch; margin: 0; }

.quote-section { padding-block: 0 var(--section-y); }
.quote-form { display: flex; flex-direction: column; gap: 28px; }
.quote-form[hidden] { display: none; }
.quote-block { border-top: 2px solid var(--color-divider); padding-top: 24px; }
.quote-block h2 { font-size: clamp(22px, 2.6vw, 30px); margin: 0 0 20px; }
.quote-fields {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 18px 28px;
}
/* grid items default to min-width:auto, so an input with a wide intrinsic
   size (date, tel) can force the column past the viewport */
.quote-fields > .field { min-width: 0; }
.quote-fields .input { min-height: 48px; font-size: 16px; }
/* Mobile Safari gives date inputs an intrinsic width wider than the grid
   column and centres the value. Pin the width and align it like every other
   field. `-webkit-date-and-time-value` is the inner text box on iOS. */
.quote-fields input[type="date"] {
  width: 100%; max-width: 100%; min-width: 0;
  -webkit-appearance: none; appearance: none;
  text-align: left;
}
.quote-fields input[type="date"]::-webkit-date-and-time-value {
  text-align: left; margin: 0;
}
.quote-fields input[type="date"]::-webkit-calendar-picker-indicator {
  margin-inline-start: auto;
}
.quote-fields textarea.input { min-height: 110px; }
.field-wide { grid-column: 1 / -1; }
.field-legend {
  display: block; font-size: 12px; margin-bottom: 8px;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}
.field-legend.strong { font-size: 13px; font-weight: 600; color: var(--color-text); }
.field-help {
  font-size: 13px; margin: 0 0 10px; max-width: 70ch;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}
.seg { display: inline-flex; flex-wrap: wrap; border: 1px solid var(--color-divider); overflow: hidden; }
.seg-opt {
  display: inline-flex; align-items: center; gap: 6px; min-height: 44px;
  padding: 7px 12px; font-size: 13px; cursor: pointer;
}
.seg-opt input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.seg-opt + .seg-opt { border-left: 1px solid var(--color-divider); }
.seg-opt:has(input:checked) { background: var(--color-accent); color: var(--color-accent-2); }
.seg-opt:not(:has(input:checked)):hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.seg-opt:has(input:focus-visible) { outline: 2px solid var(--color-accent); outline-offset: -2px; }

.consent {
  grid-column: 1 / -1; display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px; line-height: 1.55; cursor: pointer;
  color: color-mix(in srgb, var(--color-text) 75%, transparent);
}
.consent input {
  width: 20px; height: 20px; margin-top: 1px;
  accent-color: var(--color-accent-600); flex: none;
}
.quote-submit { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 24px; }
.quote-submit button { padding: 14px 24px; font-size: 15.5px; }
.quote-submit .note {
  font-size: 13.5px; color: color-mix(in srgb, var(--color-text) 70%, transparent);
}

.quote-thanks { max-width: 560px; padding: 32px; gap: 14px; }
.quote-thanks[hidden] { display: none; }
.quote-thanks h2 { font-size: 26px; margin: 0; }
.quote-thanks p { font-size: 15.5px; line-height: 1.6; margin: 0; }
.quote-thanks .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.quote-thanks .actions .btn { padding: 12px 20px; }

.estimator { background: var(--color-surface); }
.estimator .wrap { padding-block: var(--section-y); }
.estimator h2 { font-size: clamp(24px, 3vw, 36px); letter-spacing: -0.015em; margin: 0 0 8px; }
.estimator .lede {
  font-size: 15.5px; max-width: 58ch; margin: 0 0 24px;
  color: color-mix(in srgb, var(--color-text) 75%, transparent);
}
.estimator-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 32px; align-items: start;
}
.estimator-controls { display: flex; flex-direction: column; gap: 18px; }
.estimator-out { background: var(--color-bg); padding: 28px; box-shadow: var(--shadow-sm); }
.estimator-out .cap {
  font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase;
  margin: 0 0 10px; color: color-mix(in srgb, var(--color-text) 65%, transparent);
}
.estimator-out .range {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: clamp(34px, 4vw, 48px); line-height: 1.05; margin: 0 0 10px;
  color: var(--color-accent-700); font-feature-settings: 'tnum' 1;
}
.estimator-out .note {
  font-size: 14px; line-height: 1.55; margin: 0 0 18px;
  color: color-mix(in srgb, var(--color-text) 75%, transparent);
}


/* ══════════════════════════════════════════════════════════════════════════
   Moving guide
   ══════════════════════════════════════════════════════════════════════ */

.checklist { padding-block: clamp(24px, 3vw, 40px) var(--section-y); }
.checklist-head {
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  align-items: center; justify-content: space-between;
  border-top: 2px solid var(--color-divider); padding-top: 24px; margin-bottom: 8px;
}
.checklist-head h2 { font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.015em; margin: 0; }
.checklist-head .right { display: flex; align-items: center; gap: 16px; }
.checklist-count {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 15px; margin: 0; color: var(--color-accent-700);
  font-feature-settings: 'tnum' 1;
}
.phases { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 28px; }
.phase { border-top: 2px solid var(--color-divider); padding-top: 16px; }
.phase h3 { font-size: 18px; margin: 0 0 4px; }
.phase .sub {
  font-size: 13px; margin: 0 0 14px;
  color: color-mix(in srgb, var(--color-text) 65%, transparent);
}
.phase .items { display: flex; flex-direction: column; gap: 4px; }
.phase label {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 8px 0; min-height: 40px; cursor: pointer;
  font-size: 15px; line-height: 1.5;
}
.phase input {
  width: 20px; height: 20px; margin-top: 2px;
  accent-color: var(--color-accent-600); flex: none;
}
.phase input:checked + span { text-decoration: line-through; opacity: 0.55; }


/* ══════════════════════════════════════════════════════════════════════════
   Service and service-area landing pages
   ══════════════════════════════════════════════════════════════════════ */

.crumbs { border-bottom: 1px solid var(--color-divider); }
.crumbs .wrap {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding-block: 12px; font-size: 13px;
}
.crumbs a { color: var(--color-accent-700); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs .sep { color: color-mix(in srgb, var(--color-text) 40%, transparent); }
.crumbs [aria-current] { color: color-mix(in srgb, var(--color-text) 65%, transparent); }

.lp-hero .wrap { padding-block: clamp(36px, 5vw, 64px); }
.lp-hero h1 {
  font-size: clamp(30px, 4.4vw, 52px); line-height: 1.07;
  letter-spacing: -0.02em; margin: 0 0 16px; max-width: 20ch;
}
.lp-hero .lede { font-size: 17px; line-height: 1.6; max-width: 58ch; margin: 0 0 24px; }
.lp-hero .actions { display: flex; flex-wrap: wrap; gap: 12px; }

.lp-body { padding-block: var(--section-y); }
.lp-grid {
  display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px); align-items: start;
}
@media (max-width: 860px) { .lp-grid { grid-template-columns: minmax(0, 1fr); } }

.lp-section + .lp-section { margin-top: 36px; }
.lp-section h2 { font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -0.015em; margin: 0 0 12px; }
.lp-section p { font-size: 16px; line-height: 1.65; margin: 0 0 14px; max-width: 68ch; }
.lp-section p:last-child { margin-bottom: 0; }

.lp-aside { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 860px) { .lp-aside { position: static; } }
.lp-card { background: var(--color-surface); padding: 22px; }
.lp-card h3 { font-size: 17px; margin: 0 0 12px; }
.lp-card .btn { width: 100%; margin-top: 4px; }

.lp-facts { list-style: none; margin: 0; padding: 0; font-size: 14.5px; }
.lp-facts li { display: flex; gap: 10px; padding: 7px 0; line-height: 1.5; }
.lp-facts li + li { border-top: 1px solid var(--color-divider); }
.lp-facts .k { flex: none; width: 82px; color: color-mix(in srgb, var(--color-text) 60%, transparent); }
.lp-facts .v { min-width: 0; }

.linkgrid { display: flex; flex-wrap: wrap; gap: 8px; }
.linkgrid a {
  display: inline-flex; align-items: center; min-height: 40px;
  padding: 8px 12px; font-size: 13.5px; text-decoration: none;
  color: var(--color-text); border: 1px solid var(--color-divider);
}
.linkgrid a:hover { border-color: var(--color-accent); color: var(--color-accent-700); }

.lp-related { border-top: 2px solid var(--color-divider); padding-block: var(--section-y); }
.lp-related h2 { font-size: clamp(20px, 2.4vw, 26px); margin: 0 0 6px; }
.lp-related .hint {
  font-size: 14.5px; margin: 0 0 18px;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}
.lp-related + .lp-related { border-top: 1px solid var(--color-divider); }

/* the /areas directory */
.dir-county { margin-top: 36px; }
.dir-county h2 { font-size: clamp(20px, 2.4vw, 26px); margin: 0 0 14px; }
.dir-cols { columns: 4 180px; column-gap: 28px; }
.dir-cols a {
  display: block; padding: 5px 0; font-size: 14.5px;
  text-decoration: none; color: var(--color-text);
  break-inside: avoid;
}
.dir-cols a:hover { color: var(--color-accent-700); text-decoration: underline; }

/* service section CTA plus its "more" link: a wrapping row so the link sits
   beside the button on desktop and drops below it on narrow screens, rather
   than being nudged with a margin that breaks at small widths */
.svc-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; }
.svc-cta .more { font-size: 14px; font-weight: 600; }
