/* Self-hosted Barlow — no third-party font request, faster first paint. */
@font-face{font-family:'Barlow';font-style:normal;font-weight:400;font-display:swap;src:url('fonts/barlow-latin-400-normal.woff2') format('woff2')}
@font-face{font-family:'Barlow';font-style:normal;font-weight:500;font-display:swap;src:url('fonts/barlow-latin-500-normal.woff2') format('woff2')}
@font-face{font-family:'Barlow';font-style:normal;font-weight:700;font-display:swap;src:url('fonts/barlow-latin-700-normal.woff2') format('woff2')}
@font-face{font-family:'Barlow Condensed';font-style:normal;font-weight:400;font-display:swap;src:url('fonts/barlow-condensed-latin-400-normal.woff2') format('woff2')}
@font-face{font-family:'Barlow Condensed';font-style:normal;font-weight:600;font-display:swap;src:url('fonts/barlow-condensed-latin-600-normal.woff2') format('woff2')}
/* Industry — design-system tokens and component classes. This file is the source of truth for the system's look; retune it here and see readme.md. */


:root {
  --color-bg: #f2f2f3;
  --color-surface: #e9e9ea;
  --color-text: #1d1f20;
  --color-accent: #5980a6;
  --color-accent-2: #728fab;
  --color-divider: color-mix(in srgb, #1d1f20 16%, transparent);

  /* Tonal ramps — generated in OKLCH on one shared lightness scale, so the
     same step of any role matches the others in visual value. */
  --color-neutral-100: #f5f5f8;
  --color-neutral-200: #e7e7ea;
  --color-neutral-300: #d4d4d7;
  --color-neutral-400: #b7b7ba;
  --color-neutral-500: #98989b;
  --color-neutral-600: #7a7a7d;
  --color-neutral-700: #5d5d60;
  --color-neutral-800: #424244;
  --color-neutral-900: #2b2b2d;

  --color-accent-100: #eef6ff;
  --color-accent-200: #d6ebff;
  --color-accent-300: #b5d9fd;
  --color-accent-400: #94bce3;
  --color-accent-500: #749dc4;
  --color-accent-600: #597ea3;
  --color-accent-700: #416180;
  --color-accent-800: #2c455d;
  --color-accent-900: #1d2d3d;

  --color-accent-2-100: #eef6ff;
  --color-accent-2-200: #d6ebff;
  --color-accent-2-300: #bdd8f2;
  --color-accent-2-400: #9ebbd8;
  --color-accent-2-500: #7e9cb8;
  --color-accent-2-600: #627d98;
  --color-accent-2-700: #486077;
  --color-accent-2-800: #314457;
  --color-accent-2-900: #1f2d3a;

  --font-heading: "Barlow Condensed", system-ui, sans-serif;
  --font-heading-weight: 600;
  --font-body: "Barlow", system-ui, sans-serif;

  --space-1: 3.4px;
  --space-2: 6.8px;
  --space-3: 10.2px;
  --space-4: 13.6px;
  --space-6: 20.4px;
  --space-8: 27.2px;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 7px;

  /* Elevation — derived from the ground: soft ink-tinted shadows on a
     light theme, a hairline edge + ambient darkness on a dark one. */
  --shadow-sm: 0 1px 2px color-mix(in srgb, #2b2b2d 14%, transparent);
  --shadow-md: 0 3px 10px color-mix(in srgb, #2b2b2d 16%, transparent);
  --shadow-lg: 0 12px 32px color-mix(in srgb, #2b2b2d 22%, transparent);
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: var(--font-heading-weight); }

.blueprint {
  position: relative;
  border: 1px solid var(--color-divider);
  border-radius: 0;
}
/* The overlay image treatments (halftone, duotone) clip their overlay
   (overflow:hidden); a blueprint wrapper draws its registration marks
   outside the box, so when both classes share a wrapper the frame must
   win. */
.blueprint.halftone, .blueprint.plate, .blueprint.duotone { overflow: visible; }
.blueprint > .corner {
  position: absolute; width: 11px; height: 11px;
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
}
.blueprint > .corner::before, .blueprint > .corner::after {
  content: ""; position: absolute; background: currentColor;
}
.blueprint > .corner::before { left: 5px; top: 0; width: 1px; height: 100%; }
.blueprint > .corner::after  { top: 5px; left: 0; width: 100%; height: 1px; }
.blueprint > .corner.tl { top: -6px; left: -6px; }
.blueprint > .corner.tr { top: -6px; right: -6px; }
.blueprint > .corner.bl { bottom: -6px; left: -6px; }
.blueprint > .corner.br { bottom: -6px; right: -6px; }

.duotone{position:relative;overflow:hidden}
.duotone::after{content:"";position:absolute;inset:0;pointer-events:none;
  background:var(--color-accent);mix-blend-mode:color}

/* ══════════════════════════════════════════════════════════════════════════
   Components — built with the tokens above. Plain CSS
   on plain HTML: no JavaScript, no build step. Each class is documented in
   readme.md and demonstrated in foundations/ and components/.
   ══════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-size: 15px; line-height: 1.55; font-weight: 400; }
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; }
h6 { letter-spacing: 0.08em; text-transform: uppercase; }
p { margin: 0 0 var(--space-3); }
a { color: var(--color-accent); text-underline-offset: 3px; }
img { display: block; max-width: 100%; }
figure { margin: 0; }
figcaption {
  font-size: 11px; margin-top: var(--space-1);
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
}
.text-muted { color: color-mix(in srgb, var(--color-text) 55%, transparent); }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--color-accent) 30%, transparent); }

/* — rules — */
.hr {
  height: 1px; border: 0; margin: var(--space-4) 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); /* matches the .input's 14px —
     the pair sits side by side in sign-up rows */
  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-bg); }
.btn-primary:hover { background: var(--color-accent-600); }
.btn-primary:active { background: var(--color-accent-700); }
.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); padding-inline: var(--space-1); }
.btn-ghost:hover { background: color-mix(in srgb, var(--color-accent) 10%, transparent); }
.btn-ghost:active { background: color-mix(in srgb, var(--color-accent) 18%, transparent); }
.btn-icon { width: 36px; height: 36px; padding: 0; }
.btn-block { width: 100%; margin-top: var(--space-2); }

/* — 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; }
textarea.input { min-height: 90px; resize: vertical; }
.radio { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; }
.radio input, .seg-opt input {
  position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none;
}
.radio .dot {
  width: 16px; height: 16px; flex: none; border-radius: 50%;
  border: 1.5px solid var(--color-divider);
}
.radio:hover .dot { border-color: var(--color-accent); }
.radio input:checked + .dot {
  border-color: var(--color-accent); background: var(--color-accent);
  box-shadow: inset 0 0 0 4px var(--color-bg);
}
.radio input:focus-visible + .dot { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.seg {
  display: inline-flex; overflow: hidden;
  border: 1px solid var(--color-divider); border-radius: var(--radius-md);
}
.seg-opt {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; font-size: 13px; cursor: pointer;
}
.seg-opt + .seg-opt { border-left: 1px solid var(--color-divider); }
.seg-opt:has(input:checked) { background: var(--color-accent); color: var(--color-bg); }
.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; }

/* — cards — */
.card {
  display: flex; flex-direction: column; gap: var(--space-2);
  padding: var(--space-3); border-radius: var(--radius-md); background: var(--color-surface);
}
.card-kicker { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent); }
.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; }
.card-meta {
  display: flex; align-items: center; gap: 6px; font-size: 11px;
  color: color-mix(in srgb, var(--color-text) 50%, transparent);
}
.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);
}
.tag-accent { background: var(--color-accent-100); color: var(--color-accent-800); }
.tag-accent-2 { background: var(--color-accent-2-100); color: var(--color-accent-2-800); }
.tag-neutral { background: var(--color-neutral-100); color: var(--color-neutral-800); }
.tag-outline { border: 1px solid var(--color-accent); color: var(--color-accent); }

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

/* — tables — */
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
  text-align: left; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 60%, transparent);
  padding: var(--space-2); border-bottom: 1px solid var(--color-divider);
}
.table td {
  padding: var(--space-2);
  border-bottom: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
}
.table tbody tr:hover { background: color-mix(in srgb, var(--color-text) 4%, transparent); }

/* — dialog — */
.dialog-backdrop {
  position: fixed; inset: 0; display: grid; place-items: center;
  padding: var(--space-4);
  background: color-mix(in srgb, var(--color-neutral-900) 50%, transparent);
}
.dialog {
  width: min(440px, 100%); display: flex; flex-direction: column; gap: var(--space-3);
  padding: var(--space-4); border-radius: var(--radius-lg);
  background: var(--color-surface); box-shadow: var(--shadow-lg);
}
.dialog-title {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 20px;
}
.dialog-body { font-size: 14px; opacity: 0.85; }
.dialog-actions { display: flex; justify-content: flex-end; gap: var(--space-2); margin-top: var(--space-2); }

/* — blueprint frame: components are wireframe objects (see .blueprint
     and .corner above) — square, transparent, hairline-bordered — */
.card, .btn, .input, .tag, .seg, .dialog { border-radius: 0; }
.card, .dialog { background: transparent; border: 1px solid var(--color-divider); }
.btn { border: 1px solid var(--color-divider); }
.btn-primary { border-color: var(--color-accent); }
.btn-ghost { border-color: transparent; }

/* ══════════════════════════════════════════════════════════════════════
   E&L Cleaning Solutions — site chrome + responsive layer.
   Loaded after the Industry design-system tokens above.
   ══════════════════════════════════════════════════════════════════════ */

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body { overflow-x: clip; }
.page { min-height: 100vh; background: var(--color-bg); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--color-accent-900); color: #fff; padding: 10px 16px;
}
.skip:focus { left: 8px; top: 8px; }

.wrap { max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 24px; padding-right: 24px; }

/* ── top bar ───────────────────────────────────────────────────────── */
.topbar { background: var(--color-accent-900); color: var(--color-bg); }
.topbar-in {
  display: flex; align-items: center; gap: 20px;
  padding-top: 7px; padding-bottom: 7px;
  font-size: 12px; letter-spacing: 0.04em;
}
.tb-badge { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.12em; }
.tb-sep { opacity: 0.5; }
.tb-hours { opacity: 0.8; }
.topbar-in .tb-contact { margin-left: auto; display: flex; gap: 16px; align-items: center; }
.topbar a { color: var(--color-bg); text-decoration: none; font-weight: 500; }
.topbar a.tb-text { color: var(--color-accent-300); font-weight: 400; }

/* ── header ────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-divider);
}
.site-header .nav {
  display: flex; align-items: center; gap: var(--space-4);
  padding-top: var(--space-3); padding-bottom: var(--space-3);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--color-text); margin-right: auto; }
.brand-mark {
  width: 36px; height: 36px; flex: none; background: var(--color-accent); color: var(--color-bg);
  display: grid; place-items: center; font-family: var(--font-heading);
  font-weight: 600; font-size: 15px; letter-spacing: 0.02em;
}
.brand-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.brand-name { font-family: var(--font-heading); font-weight: 600; font-size: 18px; letter-spacing: 0.01em; }
.brand-sub { font-size: 10.5px; letter-spacing: 0.13em; text-transform: uppercase; color: color-mix(in srgb, var(--color-text) 55%, transparent); }

.mainnav { display: flex; align-items: center; gap: var(--space-4); font-size: 14px; }
.navlink { color: var(--color-text); text-decoration: none; padding: 4px 0; }
.navlink[data-accent] { color: var(--color-accent-700); font-weight: 500; }
.navlink:hover { color: var(--color-accent); }
.navlink.is-current { color: var(--color-accent); box-shadow: inset 0 -2px 0 var(--color-accent); }
.navcta { margin-left: var(--space-2); white-space: nowrap; }

.callbtn { display: none; }
.navtoggle {
  display: none; position: relative; width: 44px; height: 44px; flex: none;
  background: none; border: 1px solid var(--color-divider); cursor: pointer; padding: 0;
}
.navtoggle span {
  position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; margin-left: -10px;
  background: var(--color-text); transition: transform .18s ease, opacity .12s ease;
}
.navtoggle span:nth-child(1) { transform: translateY(-7px); }
.navtoggle span:nth-child(2) { transform: translateY(0); }
.navtoggle span:nth-child(3) { transform: translateY(7px); }
.navtoggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.navtoggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navtoggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

/* ── sticky mobile call/book bar ───────────────────────────────────── */
.bookbar { display: none; }
.bookbar a { text-decoration: none; }

/* ══════════════════════════════════════════════════════════════════════
   Responsive. The page markup carries inline styles from the design tool,
   so these overrides use !important deliberately.
   ══════════════════════════════════════════════════════════════════════ */

@media (max-width: 1040px) {
  .mainnav { gap: var(--space-3); font-size: 13.5px; }
}

@media (max-width: 900px) {
  .g-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .g-3 { grid-template-columns: repeat(2, 1fr) !important; }
  .g-split { grid-template-columns: 1fr !important; }
  .wrap { padding-left: 20px; padding-right: 20px; }

  /* nav collapses into a panel */
  .navtoggle { display: block; }
  .callbtn {
    display: grid; place-items: center; width: 44px; height: 44px; flex: none;
    border: 1px solid var(--color-divider); color: var(--color-accent-700);
    text-decoration: none; margin-left: auto;
  }
  .brand { margin-right: 0; }
  .site-header .nav { gap: 10px; }
  .mainnav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--color-bg); border-bottom: 1px solid var(--color-divider);
    box-shadow: var(--shadow-lg);
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height .22s ease, visibility 0s linear .22s;
  }
  .site-header { position: sticky; }
  .site-header .nav { position: relative; }
  .mainnav.is-open { max-height: 78vh; overflow-y: auto; visibility: visible; transition: max-height .22s ease; }
  .navlink {
    padding: 15px 20px; font-size: 16px;
    border-top: 1px solid var(--color-divider);
  }
  .navlink.is-current { box-shadow: inset 3px 0 0 var(--color-accent); }
  .navcta { margin: 16px 20px 20px; justify-content: center; padding: 14px; font-size: 15px; }
}

@media (max-width: 780px) {
  /* two-up flex rows (hero copy + image, stat rows, button rows) stack */
  .fx { flex-wrap: wrap !important; }
  .tb-hours, .tb-sep { display: none; }
  .topbar-in { font-size: 11px; gap: 12px; }

  /* the design's 72px section rhythm is too airy on a phone */
  [style*="padding: 72px"] { padding-top: 44px !important; }
  [style*="margin: 72px auto 0"] { margin-top: 44px !important; }
}

@media (max-width: 620px) {
  .g-4, .g-3, .g-2 { grid-template-columns: 1fr !important; }
  .wrap { padding-left: 18px; padding-right: 18px; }
  .brand-sub { display: none; }
  .brand-name { font-size: 15px; }

  /* keep the floating widget from covering the last CTA */
  body { padding-bottom: 64px; }
  .bookbar {
    display: grid; grid-template-columns: 1fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    border-top: 1px solid var(--color-divider);
    box-shadow: 0 -2px 12px color-mix(in srgb, #2b2b2d 18%, transparent);
    font-family: var(--font-heading); font-size: 15px;
  }
  .bookbar-call { background: var(--color-bg); color: var(--color-text); padding: 15px 8px; text-align: center; }
  .bookbar-cta { background: var(--color-accent); color: var(--color-bg); padding: 15px 8px; text-align: center; font-weight: 600; }
}

@media (max-width: 420px) {
  .tb-badge { letter-spacing: 0.06em; }
}

/* Tap targets: anything that reads as a button gets real height on touch */
@media (pointer: coarse) {
  .btn, .navlink, .bookbar a { min-height: 44px; }
}

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

/* Button rows: stack to full width on narrow phones so no CTA is cramped. */
@media (max-width: 520px) {
  .btnrow { flex-direction: column !important; align-items: stretch !important; }
  .btnrow > .btn, .btnrow > a { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════════════
   Selectable options (price builder). The prerendered markup keeps its
   inline "unselected" styling; .is-on paints the selected state.
   ══════════════════════════════════════════════════════════════════════ */
.optbtn { transition: background .12s ease, border-color .12s ease, color .12s ease; }
.optbtn:hover { border-color: var(--color-accent) !important; }
.optbtn.is-on {
  border-color: var(--color-accent) !important;
  background: var(--color-accent) !important;
  color: var(--color-bg) !important;
}
.optbtn.is-on [data-mark] {
  background: var(--color-bg) !important;
  color: var(--color-accent-700) !important;
  border-color: var(--color-bg) !important;
}
.optbtn.is-on * { color: inherit !important; }

.faq-a[hidden] { display: none; }

/* ── booking page ──────────────────────────────────────────────────── */
.spec-carry {
  border: 1px solid var(--color-accent);
  background: var(--color-accent-100);
  padding: var(--space-5); margin-bottom: var(--space-6);
}
.spec-carry-h { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 8px; }
.spec-carry-t { font-size: 15px; margin: 0 0 var(--space-3); }
.jobber-placeholder { border: 1px dashed var(--color-divider); padding: var(--space-6); }
.jobber-placeholder h3 { margin-top: 0; }
.jobber-placeholder iframe, #main iframe { width: 100%; border: 0; min-height: 720px; }

/* ══════════════════════════════════════════════════════════════════════
   Booking assistant
   ══════════════════════════════════════════════════════════════════════ */
.elbot { position: fixed; right: 20px; bottom: 20px; z-index: 80; font-size: 14px; }
.elbot-mark {
  width: 26px; height: 26px; flex: none; display: grid; place-items: center;
  border: 1px solid currentColor; font-family: var(--font-heading);
  font-size: 11px; letter-spacing: .02em;
}
.elbot-launch {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  background: var(--color-accent); color: var(--color-bg);
  border: 1px solid var(--color-accent-700); padding: 12px 18px;
  font-family: var(--font-heading); font-size: 14.5px; letter-spacing: .02em;
  box-shadow: var(--shadow-md);
}
.elbot-launch:hover { background: var(--color-accent-600); }
.elbot.is-open .elbot-launch { display: none; }

.elbot-panel[hidden] { display: none; }
.elbot-panel {
  display: flex; flex-direction: column;
  width: min(390px, calc(100vw - 32px)); height: min(620px, calc(100vh - 120px));
  background: var(--color-bg); border: 1px solid var(--color-divider);
  box-shadow: var(--shadow-lg);
}
.elbot-head {
  display: flex; align-items: center; gap: 10px; flex: none;
  padding: 12px 14px; background: var(--color-accent-900); color: var(--color-bg);
}
.elbot-title { display: flex; flex-direction: column; line-height: 1.2; font-family: var(--font-heading); }
.elbot-title small { font-size: 11px; opacity: .7; font-family: var(--font-body); letter-spacing: .04em; }
.elbot-call { margin-left: auto; color: var(--color-accent-300); text-decoration: none; font-size: 13px; }
.elbot-close {
  background: none; border: 0; color: var(--color-bg); font-size: 22px;
  line-height: 1; cursor: pointer; padding: 0 2px; opacity: .8;
}
.elbot-close:hover { opacity: 1; }

.elbot-log { flex: 1 1 auto; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.msg { max-width: 84%; padding: 9px 12px; line-height: 1.5; white-space: pre-wrap; }
.msg-bot { background: var(--color-surface); align-self: flex-start; }
.msg-user { background: var(--color-accent); color: var(--color-bg); align-self: flex-end; }
.msg-card {
  align-self: stretch; max-width: 100%;
  background: var(--color-accent-100); border: 1px solid var(--color-accent-300);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12.5px;
}
.elbot-typing { display: flex; gap: 4px; align-items: center; }
.elbot-typing i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent-600);
  animation: elblink 1.2s infinite;
}
.elbot-typing i:nth-child(2) { animation-delay: .2s; }
.elbot-typing i:nth-child(3) { animation-delay: .4s; }
@keyframes elblink { 0%, 60%, 100% { opacity: .25; } 30% { opacity: 1; } }

.elbot-chips { flex: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0 14px 10px; }
.chip {
  cursor: pointer; background: none; color: var(--color-accent-700);
  border: 1px solid var(--color-accent-300); padding: 6px 10px;
  font-family: inherit; font-size: 13px;
}
.chip:hover { background: var(--color-accent-100); }

.elbot-form { flex: none; display: flex; gap: 8px; padding: 10px 14px 14px; border-top: 1px solid var(--color-divider); }
.elbot-input {
  flex: 1 1 auto; min-width: 0; padding: 9px 10px; font: inherit; font-size: 15px;
  background: var(--color-surface); border: 1px solid var(--color-divider); color: var(--color-text);
}
.elbot-input:focus-visible { border-color: var(--color-accent); }
.elbot-send {
  cursor: pointer; background: var(--color-accent); color: var(--color-bg);
  border: 0; padding: 9px 16px; font-family: var(--font-heading); font-size: 14px;
}

@media (max-width: 620px) {
  .elbot { right: 12px; bottom: 74px; }
  .elbot-launch { padding: 10px 14px; font-size: 13.5px; }
  .elbot-panel { height: min(560px, calc(100vh - 150px)); }
}

/* ── brand lockup ─────────────────────────────────────────────────── */
.brand { flex-direction: column; align-items: flex-start; gap: 3px; }
.brand-logo {
  display: block; height: auto;
  width: clamp(148px, 17vw, 216px);
}
.brand-logo-footer { width: 190px; margin-bottom: 2px; }
.brand .brand-sub { padding-left: 2px; }
@media (max-width: 620px) {
  .brand-logo { width: 138px; }
  .brand-logo-footer { width: 170px; }
}

/* The design system tints photos with the accent colour. That suited the
   stock images; with real job photos the point is to show the actual
   result, so the tint comes off. Keep the blueprint frame. */
.duotone::after { display: none; }

/* ── Map embeds ────────────────────────────────────────────────────────
   The rule above forces every iframe inside #main to min-height 720px,
   which is right for the Jobber booking embed and far too tall for a map.
   Maps carry .mapembed and set their own height. */
#main .mapembed iframe { min-height: 0; height: auto; }

/* ── Employment application form ───────────────────────────────────────
   Deliberately plain and high-contrast. Someone is filling this in on a
   phone, possibly at the end of a shift; legibility beats styling. */
.afhead { border-bottom: 1px solid var(--color-divider); padding-bottom: var(--space-8); }
.afcrumbs { font-family: var(--font-heading); font-size: 11.5px; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: var(--space-4); }
.afcrumbs a { color: var(--color-accent-700); }
.afcrumbs span[aria-hidden] { opacity: .45; margin: 0 8px; }
.afcrumbs > span:last-child { opacity: .6; }
.afkicker { font-family: var(--font-heading); font-size: 11.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--color-accent-700); }
.afhead h1 { font-size: clamp(30px, 4.5vw, 54px); line-height: 1.03; text-transform: uppercase;
  margin: var(--space-3) 0 var(--space-4); }
.afdek { font-size: 17px; line-height: 1.6; max-width: 36em; margin: 0 0 10px;
  color: color-mix(in srgb, var(--color-text) 78%, transparent); }
.afdek a { color: var(--color-accent-700); }
.afsmall { font-size: 15px; }

.afsec { border-top: 1px solid var(--color-divider); margin-top: var(--space-8); padding-top: var(--space-6); }
.afsec:first-of-type { border-top: 0; }
.afsec-h { font-size: clamp(21px, 2.2vw, 26px); text-transform: uppercase; letter-spacing: -.01em;
  margin: 0 0 var(--space-3); }
.afsec-n { font-family: var(--font-heading); font-size: 11.5px; letter-spacing: .16em;
  color: var(--color-accent-700); display: block; margin-bottom: 6px; }
.afsec-i { font-size: 15.5px; line-height: 1.62; max-width: 40em; margin: 0 0 var(--space-5);
  color: color-mix(in srgb, var(--color-text) 78%, transparent); }

.afgrid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4) var(--space-5); }
.affield { display: flex; flex-direction: column; margin-bottom: var(--space-4); }
.affield.afwide, .afgrid .afwide { grid-column: 1 / -1; }
.affield label, .afgroup legend { font-family: var(--font-heading); font-size: 12.5px;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; padding: 0; }
.afreq { color: #b4451f; }
.afhint { font-size: 14px; line-height: 1.5; margin-bottom: 8px;
  color: color-mix(in srgb, var(--color-text) 62%, transparent); }

.applyform input[type=text], .applyform input[type=tel], .applyform input[type=email],
.applyform input[type=date], .applyform select, .applyform textarea {
  font: inherit; font-size: 16px; /* 16px stops iOS zooming on focus */
  padding: 11px 12px; border: 1px solid var(--color-divider); background: #fff;
  color: var(--color-text); border-radius: 0; width: 100%; }
.applyform textarea { line-height: 1.55; resize: vertical; }
.applyform input:focus-visible, .applyform select:focus-visible,
.applyform textarea:focus-visible, .applyform button:focus-visible {
  outline: 2px solid var(--color-accent-700); outline-offset: 2px; }
.applyform input[aria-invalid="true"], .applyform textarea[aria-invalid="true"] {
  border-color: #b4451f; box-shadow: inset 0 0 0 1px #b4451f; }

.afgroup { border: 0; margin: 0 0 var(--space-5); padding: 0; }
.afopts { display: flex; flex-wrap: wrap; gap: 8px; }
.afopt { display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  border: 1px solid var(--color-divider); background: #fff; padding: 9px 13px;
  font-size: 15px; line-height: 1.2; text-transform: none; letter-spacing: 0;
  font-family: var(--font-body, inherit); margin: 0; }
.afopt:hover { border-color: var(--color-accent-700); }
.afopt input { accent-color: var(--color-accent-700); width: 16px; height: 16px; margin: 0; }
.afopt:has(input:checked) { border-color: var(--color-accent-700);
  background: color-mix(in srgb, var(--color-accent-700) 8%, #fff); }
.afopt:has(input:focus-visible) { outline: 2px solid var(--color-accent-700); outline-offset: 2px; }

.afcheck { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; line-height: 1.6;
  max-width: 44em; cursor: pointer; margin-bottom: var(--space-6); text-transform: none;
  letter-spacing: 0; font-family: inherit; }
.afcheck input { margin-top: 3px; width: 18px; height: 18px; flex: 0 0 auto;
  accent-color: var(--color-accent-700); }

.afnotice, .afeeo { border-left: 3px solid var(--color-accent-700);
  background: color-mix(in srgb, var(--color-accent-700) 5%, transparent);
  padding: var(--space-4) var(--space-5); margin: 0 0 var(--space-5); max-width: 44em; }
.afeeo { border-left-color: color-mix(in srgb, var(--color-text) 30%, transparent);
  background: color-mix(in srgb, var(--color-text) 4%, transparent); }
.afnotice h3, .afeeo h3 { font-family: var(--font-heading); font-size: 12.5px; letter-spacing: .12em;
  text-transform: uppercase; margin: 0 0 8px; }
.afnotice p, .afeeo p { font-size: 14.5px; line-height: 1.6; margin: 0 0 10px; }
.afnotice p:last-child, .afeeo p:last-child { margin-bottom: 0; }
.afnotice a, .afeeo a { color: var(--color-accent-700); }

.afsubmit { margin-top: var(--space-6); }
.afsend { font-size: 16px; padding: 15px 26px; cursor: pointer; }
.afsubmit .afsmall { margin-top: 12px; color: color-mix(in srgb, var(--color-text) 70%, transparent); }
.afsubmit .afsmall a { color: var(--color-accent-700); }

.afresult { margin-top: var(--space-5); padding: var(--space-5); font-size: 16px; line-height: 1.6;
  border: 1px solid var(--color-accent-700);
  background: color-mix(in srgb, var(--color-accent-700) 7%, transparent); max-width: 44em; }
.afresult.is-bad { border-color: #b4451f; background: color-mix(in srgb, #b4451f 7%, transparent); }
.afresult[hidden] { display: none !important; }

/* The honeypot must be reachable by a bot parsing the HTML but never
   visible or focusable for a person — so it is moved off-screen rather
   than display:none, which some bots detect. */
.afpot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 720px) {
  .afgrid { grid-template-columns: 1fr; }
  .afopt { padding: 11px 14px; }   /* bigger tap targets on a phone */
  .afsend { width: 100%; justify-content: center; }
}

/* Breathing room between questions. Without this the last row of one
   option group sits almost against the next question's legend, which
   makes a long form read as an undifferentiated wall. */
.applyform .afgroup { margin-bottom: 28px; }
.applyform .afgroup legend { margin-bottom: 8px; }
.applyform .affield { margin-bottom: 22px; }
.applyform .afgrid { margin-bottom: 4px; }

@media (max-width: 720px) {
  /* Keep the send button clear of the sticky call/book bar. */
  .applyform { padding-bottom: 96px; }
}

/* Full-sentence questions read as prose, not as a field label. */
.applyform .afgroup.aflong legend {
  text-transform: none; letter-spacing: 0; font-size: 16.5px;
  font-family: inherit; line-height: 1.55; max-width: 44em; margin-bottom: 10px; }

/* ── Plan cards (residential) ──────────────────────────────────────────
   These four described a plan and then dead-ended — nothing in the section
   was clickable. The whole card is now the link, so it needs to look and
   behave like one. */
/* Column flex so the cue can sit at the bottom of every card — the
   four cards have different amounts of text, and cues at four
   different heights read as untidy. */
a.plancard { display: flex; flex-direction: column; text-decoration: none;
  color: inherit; position: relative;
  transition: border-color .15s ease, transform .15s ease; }
a.plancard:hover { border-color: var(--color-accent-700); transform: translateY(-2px); }
a.plancard:focus-visible { outline: 2px solid var(--color-accent-700); outline-offset: 3px; }
.plancard-go { display: block; margin-top: auto; padding-top: var(--space-4);
  font-family: var(--font-heading); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--color-accent-700); }
a.plancard:hover .plancard-go { text-decoration: underline; }
@media (hover: none) {
  a.plancard:hover { transform: none; }   /* no hover lift on touch */
}
