/* Generated by WebUp from src/data/site.json. Safe to edit. */
:root {
  --brand: #1D4ED8;
  --brand-text: #1D4ED8;
  --brand-on-surface: #1D4ED8;
  --on-brand: #ffffff;
  --accent: #1D4ED8;
  --bg: #ffffff;
  --bg-alt: #f7f9fe;
  --surface: #ffffff;
  --fg: #0d1220;
  --fg-muted: #4b5567;
  --fg-faint: #6b7687;
  --line: #cfd8ec;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --container: 1200px;
  --section-y: 64px;
  --hero-y: 80px;
  --font-heading: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  color-scheme: light;
}
@media (min-width: 768px) {
  :root { --section-y: 104px; --hero-y: 128px; }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-heading); margin: 0; font-weight: 800; }
p, ul, ol, dl, dd, dt, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
:where(a, button, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--brand-text);
  outline-offset: 3px;
  border-radius: 4px;
}
.qw-tabular { font-variant-numeric: tabular-nums; }
.qw-measure { max-width: 62ch; }
.qw-measure-wide { max-width: 74ch; }
.qw-container { max-width: var(--container); }
.qw-section { padding-block: var(--section-y); }
.qw-alt { background: var(--bg-alt); }
.qw-pagehead { padding-block: var(--hero-y) var(--section-y); }

.qw-h1 {
  font-size: clamp(2.07rem, 1.22rem + 2.65vw, 3.71rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.qw-h2 {
  font-size: clamp(1.54rem, 1.11rem + 1.22vw, 2.44rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.qw-h3 { font-size: 1.182rem; letter-spacing: -0.012em; }
.qw-wordmark { font-family: var(--font-heading); font-weight: 700; font-size: 1.0625rem; letter-spacing: -0.02em; color: var(--fg); }
.qw-logo { height: 40px; width: auto; object-fit: contain; }

.qw-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding-block: 14px;
}
.qw-header-floating {
  top: 12px; margin: 12px auto 0;
  width: calc(100% - 24px); max-width: var(--container);
  border: 1px solid var(--line); border-radius: var(--r-lg);
}
.qw-navlink {
  display: flex; align-items: center; min-height: 44px; padding: 0 12px;
  border-radius: var(--r-sm); font-size: 14px; font-weight: 500; color: var(--fg-muted);
  transition: color .2s cubic-bezier(.16,1,.3,1), background-color .2s cubic-bezier(.16,1,.3,1);
}
.qw-navlink:hover { color: var(--fg); background: var(--bg-alt); }
.qw-navlink-active { color: var(--fg); }
.qw-phonelink { display: inline-flex; align-items: center; min-height: 44px; font-size: 14px; font-weight: 600; color: var(--brand-text); }
.qw-burger {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: transparent; color: var(--fg); cursor: pointer;
}
.qw-burger .qw-burger-close { display: none; }
.qw-burger[aria-expanded="true"] .qw-burger-open { display: none; }
.qw-burger[aria-expanded="true"] .qw-burger-close { display: block; }
.qw-mobile-nav { border-top: 1px solid var(--line); background: var(--bg); max-height: 78vh; overflow-y: auto; overscroll-behavior: contain; }
.qw-mobile-nav[hidden] { display: none; }
.qw-mobile-group {
  margin-top: 14px; padding: 0 12px 4px; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--fg-faint);
}

/* Dropdowns: hover for a mouse, :focus-within for a keyboard. No script, and
   nothing that needs JavaScript to be reachable by tab. */
.qw-dropdown { position: relative; display: inline-flex; }
.qw-dropdown-caret { width: 14px; height: 14px; margin-left: 2px; transition: transform .2s cubic-bezier(.16,1,.3,1); }
.qw-dropdown:hover .qw-dropdown-caret,
.qw-dropdown:focus-within .qw-dropdown-caret { transform: rotate(180deg); }
.qw-dropdown-panel {
  position: absolute; top: 100%; left: 0; z-index: 60; min-width: 15rem;
  padding: 6px; border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--surface); box-shadow: 0 24px 48px -24px rgb(0 0 0 / .45);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s cubic-bezier(.16,1,.3,1), visibility .15s;
  max-height: 70vh; overflow-y: auto;
}
.qw-dropdown:hover .qw-dropdown-panel,
.qw-dropdown:focus-within .qw-dropdown-panel { opacity: 1; visibility: visible; transform: none; }
.qw-dropdown-link {
  display: flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 10px;
  border-radius: var(--r-sm); font-size: 14px; color: var(--fg-muted); transition: background-color .15s, color .15s;
}
.qw-dropdown-link:hover { background: var(--bg-alt); color: var(--fg); }
.qw-dropdown-all { font-weight: 600; color: var(--brand-on-surface); }

/* --- quote form --- */
.qw-form {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px;
  background: var(--surface); box-shadow: 0 1px 2px rgb(0 0 0 / .05), 0 20px 40px -28px rgb(0 0 0 / .4);
}
.qw-form-hero { position: relative; z-index: 2; }
.qw-formhead { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; color: var(--fg); letter-spacing: -0.02em; }
.qw-formsub { margin-top: 4px; font-size: 14px; color: var(--fg-muted); }
.qw-label { display: block; margin-bottom: 5px; font-size: 13px; font-weight: 500; color: var(--fg-muted); }
.qw-input {
  width: 100%; min-height: 48px; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--bg); color: var(--fg);
  /* 16px keeps iOS from zooming the viewport on focus. */
  font-family: var(--font-body); font-size: 16px; line-height: 1.4;
  transition: border-color .2s, box-shadow .2s;
}
.qw-input::placeholder { color: var(--fg-faint); }
.qw-input:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 22%, transparent);
}
.qw-textarea { min-height: 96px; resize: vertical; }
.qw-formnote { margin-top: 10px; font-size: 12px; color: var(--fg-faint); text-align: center; }
/* A real field, hidden from people and from assistive tech. Bots fill it. */
.qw-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --- map --- */
.qw-mapsection { padding-block: var(--section-y) 0; background: var(--bg-alt); border-top: 1px solid var(--line); }
.qw-map { position: relative; width: 100%; height: clamp(260px, 42vw, 420px); background: var(--bg); }
.qw-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: none; }
.qw-mapsection > div:last-child { padding-bottom: var(--section-y); }

.qw-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px; border-radius: var(--r-md);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  cursor: pointer; border: 1px solid transparent; text-align: center;
  transition: transform .2s cubic-bezier(.16,1,.3,1), background-color .2s, border-color .2s, color .2s, filter .2s;
}
.qw-btn:active { transform: scale(.98); }
.qw-btn-primary { background: linear-gradient(100deg, var(--brand), var(--accent)); color: var(--on-brand); }
.qw-btn-primary:hover { filter: brightness(1.08); }
.qw-btn-ghost { border-color: var(--line); color: var(--fg); background: transparent; }
.qw-btn-ghost:hover { border-color: var(--brand); color: var(--brand-text); }

.qw-icon { width: 18px; height: 18px; flex: none; }
.qw-icon-lg { width: 26px; height: 26px; color: var(--brand-on-surface); }
.qw-icon-check { width: 20px; height: 20px; color: var(--brand-on-surface); margin-top: 2px; }
.qw-icon-star { color: #f59e0b; }

.qw-hero { padding-block: var(--hero-y); position: relative; }
.qw-hero-centered { text-align: center; }
.qw-hero-media img, .qw-hero-media .qw-media-placeholder { border-radius: var(--r-lg); }

/* Hero with a full-bleed photograph behind the headline and the form. */
.qw-hero-photo { position: relative; isolation: isolate; overflow: hidden; }
.qw-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.qw-hero-photo::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(3,7,18,.86) 0%, rgba(3,7,18,.6) 46%, rgba(3,7,18,.4) 100%);
}
.qw-hero-photo .qw-h1, .qw-hero-photo p { color: #fff !important; }
.qw-hero-photo .qw-btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.qw-hero-photo .qw-btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); }
@media (max-width: 767px) {
  .qw-hero-photo::after { background: linear-gradient(180deg, rgba(3,7,18,.8), rgba(3,7,18,.62)); }
}
.qw-overlaycard {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(28px, 5vw, 56px); max-width: 46rem;
  box-shadow: 0 32px 64px -40px rgb(0 0 0 / .45);
}
.qw-bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.qw-bento-tile {
  background: var(--surface); border: 1px solid var(--line); box-shadow: 0 1px 2px rgb(0 0 0 / .05), 0 16px 32px -24px rgb(0 0 0 / .35);
  border-radius: var(--r-md); padding: 18px; color: var(--fg);
  transition: transform .2s cubic-bezier(.16,1,.3,1), border-color .2s;
}
.qw-bento-tile:hover { transform: translateY(-2px); border-color: var(--brand); }
.qw-bento-lead { grid-column: span 2; }
.qw-rulelist { border-top: 1px solid var(--line); }
.qw-ruleitem {
  display: flex; align-items: center; gap: 16px; padding: 18px 4px; min-height: 56px;
  border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 500; color: var(--fg);
  transition: padding-left .2s cubic-bezier(.16,1,.3,1), color .2s;
}
.qw-ruleitem:hover { padding-left: 12px; color: var(--brand-text); }

.qw-card { background: var(--surface); border: 1px solid var(--line); box-shadow: 0 1px 2px rgb(0 0 0 / .05), 0 16px 32px -24px rgb(0 0 0 / .35); border-radius: var(--r-lg); padding: 26px; }
.qw-service-card { position: relative; transition: transform .2s cubic-bezier(.16,1,.3,1), border-color .2s; }
.qw-service-card:hover { transform: translateY(-3px); border-color: var(--brand); }
.qw-stretch::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.qw-cardlink { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--brand-on-surface); }
.qw-price { font-size: 14px; font-weight: 600; color: var(--fg); font-variant-numeric: tabular-nums; }
.qw-stepnum {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  border-radius: var(--r-md); background: color-mix(in srgb, var(--brand) 14%, transparent);
  color: var(--brand-on-surface); font-weight: 700; font-size: 15px;
}
.qw-factcard { padding: 22px; }
.qw-facthead { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--fg-faint); }
.qw-reviewcard { text-align: center; display: flex; flex-direction: column; align-items: center; padding: clamp(28px, 5vw, 56px); }
.qw-hourscard { align-self: start; }
.qw-hourrow { padding-block: 8px; border-bottom: 1px solid var(--line); }

.qw-strip { border-block: 1px solid var(--line); padding-block: 22px; background: var(--bg-alt); }
.qw-arealink {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 16px;
  border: 1px solid var(--line); border-radius: var(--r-md); font-size: 14px; font-weight: 500;
  color: var(--fg); background: var(--surface);
  transition: border-color .2s, color .2s, transform .2s cubic-bezier(.16,1,.3,1);
}
.qw-arealink:hover { border-color: var(--brand); color: var(--brand-text); transform: translateY(-1px); }
.qw-tag {
  display: inline-flex; align-items: center; padding: 7px 12px; border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  color: var(--brand-on-surface); font-size: 13px; font-weight: 500;
}
.qw-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface); font-size: 14px; font-weight: 600; color: var(--fg);
}
.qw-crumbs { padding-block: 16px; border-bottom: 1px solid var(--line); font-size: 13px; color: var(--fg-muted); }
.qw-footlink { color: var(--fg-muted); transition: color .2s; }
.qw-footlink:hover { color: var(--brand-text); text-decoration: underline; text-underline-offset: 3px; }

.qw-faq { border-top: 1px solid var(--line); }
.qw-faqitem { border-bottom: 1px solid var(--line); }
.qw-faqq {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 60px; padding-block: 18px; font-family: var(--font-heading);
  font-size: 17px; font-weight: 600; color: var(--fg); cursor: pointer; list-style: none;
}
.qw-faqq::-webkit-details-marker { display: none; }
.qw-faqq::after {
  content: ""; width: 11px; height: 11px; flex: none;
  border-right: 2px solid var(--fg-faint); border-bottom: 2px solid var(--fg-faint);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .2s cubic-bezier(.16,1,.3,1);
}
.qw-faqitem[open] .qw-faqq::after { transform: rotate(-135deg) translate(-4px, -4px); }
.qw-faqa { padding-bottom: 22px; display: flex; flex-direction: column; gap: 12px; }

.qw-ctapanel {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
  padding: clamp(28px, 4vw, 48px); border-radius: var(--r-lg);
  background: color-mix(in srgb, var(--brand) 10%, var(--bg-alt));
  border: 1px solid color-mix(in srgb, var(--brand) 26%, transparent);
}

.qw-footer { border-top: 1px solid var(--line); background: var(--bg-alt); padding-block: 56px 28px; }
.qw-foothead { font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--fg-faint); }
.qw-footbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line);
}

.qw-stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: flex; gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(12px); border-top: 1px solid var(--line);
}
/* Every template gets the call bar on a phone, not just the conversion-first
   one. On a small screen the phone is the conversion, whatever the layout. */
@media (max-width: 767px) {
  body { padding-bottom: 84px; }
  .qw-stickybar { display: flex; }

  /* Thumbs, not cursors: full-width primary actions, nothing cramped. */
  .qw-btn { width: 100%; min-height: 52px; }
  .qw-hero .qw-btn, .qw-form .qw-btn { width: 100%; }
  .qw-ctapanel .qw-btn, .qw-hero-centered .qw-btn { width: 100%; }
  .qw-arealink, .qw-tag { min-height: 46px; }
  .qw-navlink { min-height: 48px; font-size: 15px; }
  .qw-form { padding: 18px; border-radius: var(--r-md); }
  .qw-faqq { min-height: 56px; font-size: 16px; }
  /* Cards stop hovering on a device with no hover. */
  .qw-service-card:hover, .qw-arealink:hover, .qw-bento-tile:hover { transform: none; }
}

@media (hover: none) {
  .qw-dropdown-panel { display: none; }
}

.qw-media { object-fit: cover; }
.qw-media-placeholder {
  width: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 26%, var(--bg-alt)) 0%, color-mix(in srgb, var(--accent) 18%, var(--bg-alt)) 100%);
  filter: hue-rotate(var(--shift, 0deg));
  border: 1px solid var(--line);
}
.qw-prose p { color: var(--fg-muted); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

.qw-skip{position:absolute;left:-9999px}.qw-skip:focus{left:12px;top:12px;z-index:100;padding:10px 16px;background:var(--brand);color:var(--on-brand);border-radius:var(--r-sm)}
/* Preview utility layer — the exported project compiles these with Tailwind. */
.block{display:block}
.flex{display:flex}
.flex-col{flex-direction:column}
.flex-wrap{flex-wrap:wrap}
.font-bold{font-weight:700}
.font-medium{font-weight:500}
.font-semibold{font-weight:600}
.gap-1{gap:0.25rem}
.gap-10{gap:2.5rem}
.gap-12{gap:3rem}
.gap-2{gap:0.5rem}
.gap-2\.5{gap:0.625rem}
.gap-3{gap:0.75rem}
.gap-4{gap:1rem}
.gap-6{gap:1.5rem}
.gap-x-6{column-gap:1.5rem}
.gap-y-2{row-gap:0.5rem}
.grid{display:grid}
.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}
.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.h-full{height:100%}
.hidden{display:none}
.inline-flex{display:inline-flex}
.items-baseline{align-items:baseline}
.items-center{align-items:center}
.items-start{align-items:flex-start}
.justify-between{justify-content:space-between}
.justify-center{justify-content:center}
.leading-relaxed{line-height:1.65}
.leading-snug{line-height:1.35}
.leading-tight{line-height:1.2}
.ml-auto{margin-left:auto}
.mt-1{margin-top:0.25rem}
.mt-10{margin-top:2.5rem}
.mt-2{margin-top:0.5rem}
.mt-3{margin-top:0.75rem}
.mt-4{margin-top:1rem}
.mt-5{margin-top:1.25rem}
.mt-6{margin-top:1.5rem}
.mt-8{margin-top:2rem}
.mx-auto{margin-left:auto;margin-right:auto}
.no-underline{text-decoration-line:none}
.px-5{padding-left:1.25rem;padding-right:1.25rem}
.py-4{padding-top:1rem;padding-bottom:1rem}
.text-\[12px\]{font-size:12px}
.text-\[13px\]{font-size:13px}
.text-\[14px\]{font-size:14px}
.text-\[15px\]{font-size:15px}
.text-\[17px\]{font-size:17px}
.text-\[var\(--brand\)\]{color:var(--brand)}
.text-\[var\(--fg\)\]{color:var(--fg)}
.text-\[var\(--fg-faint\)\]{color:var(--fg-faint)}
.text-\[var\(--fg-muted\)\]{color:var(--fg-muted)}
.text-center{text-align:center}
.tracking-tight{letter-spacing:-0.02em}
.uppercase{text-transform:uppercase}
.w-full{width:100%}
@media (min-width:640px){
.sm\:col-span-2{grid-column:span 2/span 2}
.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.sm\:inline-flex{display:inline-flex}
}
@media (min-width:768px){
.md\:flex{display:flex}
.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.md\:hidden{display:none}
.md\:inline-flex{display:inline-flex}
.md\:px-8{padding-left:2rem;padding-right:2rem}
}
@media (min-width:1024px){
.lg\:col-span-5{grid-column:span 5/span 5}
.lg\:col-span-7{grid-column:span 7/span 7}
.lg\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}
.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
}
