/* ==========================================================
   Fix-It Fox Handyman — design system
   navy / orange / white / light neutrals · mobile-first
   ========================================================== */
:root {
  --navy-950: #001a45;
  --navy-900: #022451;
  --navy-800: #0b2552;
  --navy-700: #0f2f66;
  --navy-600: #173d7d;
  --blue: #1f5fd6;
  --link-blue: #1668e3;
  --orange: #ff5a14;
  --orange-600: #f04a06;
  --orange-grad: linear-gradient(180deg, #ff6b1f 0%, #f5500a 100%);
  --peach: #fdece0;
  --peach-2: #fff4ec;
  --ice: #e7eef8;
  --ice-2: #f3f6fb;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --line: #e3e8ef;
  --ink: #0f1f3d;
  --ink-2: #34425c;
  --muted: #5b677d;
  --star: #fdb022;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(15, 31, 61, .06);
  --shadow: 0 10px 30px rgba(15, 31, 61, .09);
  --shadow-lg: 0 24px 60px rgba(15, 31, 61, .14);
  --ff-head: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1200px;
  --gutter: 16px;
  color-scheme: light;
}
@media (min-width: 700px) { :root { --gutter: 28px; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body { margin: 0; font-family: var(--ff-body); font-size: 16px; line-height: 1.6; color: var(--ink-2); background: var(--bg); overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--ff-head); color: var(--navy-800); line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul, ol { padding: 0; margin: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }
.sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 999; background: var(--navy-800); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip:focus { left: 8px; }
.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: calc(860px + var(--gutter) * 2); }
.center { text-align: center; }
.c-orange { color: var(--orange); }
.ph { background: repeating-linear-gradient(135deg, rgba(255, 90, 20, .08) 0 6px, rgba(255, 90, 20, .16) 6px 12px); border-radius: 4px; padding: 0 .3em; outline: 1px dashed rgba(255, 90, 20, .55); outline-offset: 0; }
.h-xl { font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 800; }
.h-lg { font-size: clamp(1.6rem, 3.4vw, 2.35rem); font-weight: 800; }
.sub { color: var(--muted); font-size: 1.05rem; max-width: 640px; margin: 0 auto 2rem; }
section { position: relative; }

/* ---------- eyebrow / decorative ---------- */
.eyebrow { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 0 .6rem; font-family: var(--ff-head); font-weight: 700; font-size: .85rem; letter-spacing: .22em; text-transform: uppercase; color: var(--orange); }
.eyebrow__line { display: inline-block; width: 34px; height: 2px; background: var(--orange); border-radius: 2px; }
.eyebrow--left { justify-content: flex-start; }
.eyebrow--light .eyebrow__line { width: min(90px, 12vw); }
.swoosh { position: absolute; left: -2%; right: -2%; bottom: -.28em; width: 104%; height: .32em; overflow: visible; }
.u-orange-under, .u-under-light { position: relative; display: inline-block; white-space: nowrap; }
.u-orange-under { color: var(--orange); }
.sparks { display: inline-block; flex: none; }
.sparks--r { transform: scaleX(-1); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 12px 24px; border-radius: 10px; border: 2px solid transparent; font-family: var(--ff-head); font-weight: 600; font-size: 1rem; line-height: 1.1; text-decoration: none; white-space: nowrap; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn .ic { transition: transform .15s ease; }
.btn:hover .ic { transform: translateX(3px); }
.btn--orange { background: var(--orange-grad); color: #fff; box-shadow: 0 8px 20px rgba(245, 80, 10, .28); }
.btn--orange:hover { box-shadow: 0 12px 26px rgba(245, 80, 10, .36); }
.btn--navy { background: var(--navy-800); color: #fff; }
.btn--blue { background: var(--link-blue); color: #fff; border-radius: 8px; min-height: 42px; padding: 10px 20px; font-family: var(--ff-body); }
.btn--ghost-light { border-color: rgba(255, 255, 255, .85); color: #fff; background: rgba(255, 255, 255, .06); }
.btn--outline-navy { border-color: var(--navy-800); color: var(--navy-800); background: #fff; }
.btn--caps { text-transform: uppercase; font-size: .92rem; letter-spacing: .02em; border-radius: 999px; }
.btn--lg { min-height: 54px; padding: 14px 30px; font-size: 1.05rem; }
.btn--xl { min-height: 60px; padding: 16px 44px; font-size: 1.2rem; border-radius: 12px; }
.btn--block { width: 100%; }

/* ---------- top bar & header ---------- */
.topbar { background: var(--navy-900); color: #dbe5f5; font-size: .85rem; }
.topbar__in { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 38px; }
.topbar__in > span { display: inline-flex; align-items: center; gap: 6px; }
.topbar__links { display: none !important; gap: 22px !important; }
.topbar__links a { text-decoration: none; display: inline-flex; align-items: center; gap: 6px; color: #fff; }
.topbar__links a:hover { color: #ffb792; }
@media (min-width: 900px) { .topbar__links { display: inline-flex !important; } }
@media (max-width: 480px) { .topbar { font-size: .78rem; } }

.hdr { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); transition: box-shadow .2s; }
.hdr.has-open-nav { z-index: 90; }
.hdr.has-open-nav .hdr__burger { position: relative; z-index: 61; }
.hdr.is-scrolled { box-shadow: 0 6px 24px rgba(15, 31, 61, .08); }
.hdr__in { display: flex; align-items: center; gap: 20px; min-height: 76px; }
.brand { flex: none; }
.brand__logo { width: 128px; height: auto; }
@media (min-width: 1100px) { .brand__logo { width: 146px; } }
.hdr__cta { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.hdr__cta > .btn { display: none; }
.hdr__phone { display: none; align-items: center; gap: 10px; text-decoration: none; color: var(--navy-800); line-height: 1.15; }
.hdr__phone small { display: block; color: var(--muted); font-size: .75rem; }
.hdr__phone strong { font-family: var(--ff-head); font-size: 1.02rem; }
.hdr__phone-ic { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--peach); color: var(--orange); }
.hdr__burger { display: grid; place-items: center; width: 46px; height: 46px; border: 0; border-radius: 10px; background: var(--ice-2); color: var(--navy-800); }
.nav { position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw); background: #fff; padding: 88px 20px 24px; transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; box-shadow: var(--shadow-lg); z-index: 60; }
.nav.is-open { transform: none; }
.nav__list > li { border-bottom: 1px solid var(--line); }
.nav__item > a { white-space: nowrap; display: flex; justify-content: space-between; align-items: center; padding: 14px 4px; font-family: var(--ff-head); font-weight: 600; color: var(--navy-800); text-decoration: none; }
.nav__item > a[aria-current] { color: var(--orange); }
.mega, .drop { display: none; }
.nav__item.is-open .mega, .nav__item.is-open .drop { display: block; padding: 0 0 12px 6px; }
.mega__grid a, .drop a { display: flex; align-items: center; gap: 10px; padding: 8px 4px; text-decoration: none; color: var(--ink-2); font-size: .95rem; }
.mega__grid a .ic { color: var(--orange); flex: none; }
.mega__all { font-weight: 700; color: var(--navy-800) !important; }
.nav__mobile-cta { display: grid; gap: 10px; margin-top: 20px; }
.nav-open-bg { position: fixed; inset: 0; background: rgba(2, 20, 50, .45); z-index: 55; }
@media (min-width: 560px) { .hdr__cta > .btn { display: inline-flex; } }
@media (min-width: 1100px) {
  .hdr__burger, .nav__mobile-cta { display: none; }
  .hdr__phone { white-space: nowrap; }
  .nav { position: static; transform: none; width: auto; padding: 0; background: none; box-shadow: none; overflow: visible; margin-left: 10px; }
  .nav__list { display: flex; gap: 2px; }
  .nav__list > li { border: 0; position: relative; }
  .nav__item > a { padding: 26px 11px; gap: 4px; font-size: .95rem; }
}
@media (min-width: 1340px) { .hdr__phone { display: flex; } }
@media (min-width: 1100px) {
  .nav__item > a:hover { color: var(--orange); }
  .nav__item > a .ic { width: 15px; height: 15px; opacity: .7; }
  .mega, .drop { position: absolute; top: 100%; left: -10px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-lg); padding: 14px !important; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .15s ease; display: block; }
  .drop { min-width: 250px; }
  .mega { width: 560px; }
  .mega__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 10px; }
  .mega__grid a, .drop a { border-radius: 8px; padding: 9px 10px; }
  .mega__grid a:hover, .drop a:hover { background: var(--ice-2); color: var(--navy-800); }
  .nav__item:hover > .mega, .nav__item:hover > .drop, .nav__item:focus-within > .mega, .nav__item:focus-within > .drop { opacity: 1; visibility: visible; transform: none; }
}

/* ---------- breadcrumbs ---------- */
.crumbs { background: var(--bg-soft); border-bottom: 1px solid var(--line); font-size: .86rem; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 0; }
.crumbs li + li::before { content: "›"; margin-right: 6px; color: var(--muted); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--orange); }
.crumbs [aria-current] { color: var(--navy-800); font-weight: 600; }

/* ==========================================================
   1. HERO  — “Home Repairs Done Right.”
   ========================================================== */
.hero { background: var(--navy-900); color: #fff; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(3, 30, 74, .78) 0%, rgba(3, 30, 74, .86) 55%, rgba(3, 30, 74, .96) 100%); }
.hero__in { padding: 56px var(--gutter) 40px; min-height: 560px; display: flex; flex-direction: column; justify-content: center; }
.hero__h { color: #fff; font-weight: 800; text-transform: uppercase; font-size: clamp(2.5rem, 7.2vw, 4.4rem); line-height: 1.02; letter-spacing: -.005em; margin-bottom: 18px; }
.hero__eyebrow { display: block; font-size: clamp(.8rem, 1.4vw, 1rem); letter-spacing: .04em; font-weight: 700; margin-bottom: 16px; color: #fff; }
.hero__p { max-width: 520px; font-size: 1.08rem; color: #e5ecf8; margin-bottom: 26px; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero__checks { display: flex; flex-wrap: wrap; gap: 8px 24px; font-weight: 600; font-size: .95rem; }
.hero__checks li { display: inline-flex; align-items: center; gap: 7px; }
.hero__checks .ic { color: var(--orange); }
.hero__area { margin: 34px 0 0; font-size: .92rem; color: #dbe5f5; }
@media (min-width: 900px) {
  .hero::before { background: linear-gradient(90deg, rgba(2, 30, 76, .97) 0%, rgba(3, 32, 80, .9) 30%, rgba(5, 38, 88, .55) 48%, rgba(5, 38, 88, 0) 64%); }
  .hero__media { left: 30%; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 22%); mask-image: linear-gradient(90deg, transparent 0, #000 22%); }
  .hero__img { object-position: center 30%; }
  .hero__in { min-height: 600px; padding-top: 70px; padding-bottom: 46px; }
  .hero__in > * { max-width: 560px; }
}

/* ==========================================================
   2. TRUST STRIP — “Lexington Home Repairs. Foxed.”
   ========================================================== */
.trust { padding: 28px 0; background: #fff; }
.trust__card { display: grid; grid-template-columns: auto 1fr; gap: 14px 18px; align-items: center; background: #f3f6fa; border-radius: 4px 4px 0 0; border-bottom: 6px solid var(--navy-800); padding: 20px; }
.trust__fox { width: 70px; }
.trust__h { font-family: var(--ff-head); font-weight: 700; color: var(--navy-800); font-size: clamp(1.25rem, 2.2vw, 1.6rem); margin: 0 0 4px; line-height: 1.2; }
.trust__sub { margin: 0; font-size: .92rem; color: var(--ink-2); }
.trust__items { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; font-size: .82rem; line-height: 1.25; color: var(--navy-800); font-weight: 500; }
.trust__items li { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 4px 8px; }
.trust__items li + li { border-left: 1px solid #cfd7e3; }
.trust__items .ic { color: var(--orange); }
.trust__items li:nth-child(2) .ic, .trust__items li:nth-child(3) .ic { color: var(--navy-800); }
.trust__items li:nth-child(2) .ic { color: var(--orange); }
.trust__card > .btn { grid-column: 1 / -1; }
@media (min-width: 1000px) {
  .trust__card { grid-template-columns: auto 1fr auto auto; padding: 22px 26px; gap: 22px; }
  .trust__fox { width: 78px; padding-right: 18px; border-right: 1px solid #cfd7e3; box-sizing: content-box; }
  .trust__items { grid-column: auto; grid-template-columns: repeat(3, 128px); }
  .trust__h { white-space: nowrap; font-size: 1.45rem; }
  .trust__items li:first-child { border-left: 1px solid #cfd7e3; }
  .trust__card > .btn { grid-column: auto; }
}

/* ==========================================================
   3. HOW CAN WE HELP — navy tiles
   ========================================================== */
.help { background: radial-gradient(900px 400px at 0% 0%, #0b3470 0%, rgba(11, 52, 112, 0) 70%), var(--navy-900); padding: 64px 0 60px; color: #fff; }
.help__h { color: #fff; text-align: center; margin-bottom: .35em; }
.help__sub { text-align: center; color: #d5def0; margin-bottom: 30px; }
.help__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.tile { display: flex; flex-direction: column; height: 100%; border-radius: 10px; overflow: hidden; background: #0b2c5f; border: 1px solid rgba(255, 255, 255, .16); text-decoration: none; color: #fff; transition: transform .18s ease, box-shadow .18s ease, border-color .18s; }
.tile:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0, 0, 0, .35); border-color: rgba(255, 138, 76, .7); }
.tile__img { display: block; aspect-ratio: 16 / 6.2; overflow: hidden; }
.tile__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.tile:hover .tile__img img { transform: scale(1.05); }
.tile__bar { display: flex; align-items: center; gap: 10px; padding: 12px; flex: 1; }
.tile__ic { color: var(--orange); flex: none; }
.tile__ic .ic { width: 24px; height: 24px; }
.tile__name { font-family: var(--ff-head); font-weight: 600; font-size: .86rem; line-height: 1.2; flex: 1; }
.tile__go { flex: none; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--orange-grad); }
.help__more { text-align: center; margin: 26px 0 0; }
.help__more a { color: #fff; font-weight: 600; display: inline-flex; gap: 8px; align-items: center; text-decoration-color: rgba(255, 90, 20, .8); text-underline-offset: 5px; }
@media (min-width: 800px) {
  .help__grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .tile__img { aspect-ratio: 16 / 5.6; }
  .tile__bar { padding: 14px 16px; min-height: 76px; }
  .tile__name { font-size: .95rem; }
}

/* ==========================================================
   4. WHY CHOOSE — van photo card
   ========================================================== */
.why { padding: 64px 0; background: var(--bg-soft); }
.why__card { background: #fff; border-radius: 4px; box-shadow: var(--shadow-sm); overflow: hidden; display: grid; }
.why__copy { padding: 34px 22px 36px; }
.why__lead { font-size: 1.05rem; max-width: 560px; color: var(--ink-2); }
.why__feats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 16px; margin: 26px 0 30px; text-align: center; }
.why__feats h3 { font-size: .96rem; font-weight: 700; margin: 12px 0 6px; }
.why__feats p { font-size: .85rem; line-height: 1.45; color: var(--ink-2); margin: 0; }
.circ { display: inline-grid; place-items: center; width: 66px; height: 66px; border-radius: 50%; }
.circ--blue { background: var(--ice); color: var(--navy-700); }
.circ--peach { background: var(--peach); color: var(--orange); }
.circ--sm { width: 52px; height: 52px; }
.why__btn { min-width: 250px; }
.why__media { position: relative; min-height: 280px; }
.why__media img { width: 100%; height: 100%; object-fit: cover; }
.why__sparks { position: absolute; z-index: 2; left: 14px; top: 12%; }
@media (min-width: 980px) {
  .why__card { grid-template-columns: 1.12fr 1fr; }
  .why__copy { padding: 44px 10px 44px 46px; position: relative; z-index: 2; }
  .why__feats { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .why__btn { margin-left: 120px; }
  .why__media { margin-left: -90px; }
  .why__media img { position: absolute; inset: 0; border-radius: 48% 0 0 44% / 60% 0 0 40%; -webkit-mask-image: radial-gradient(140% 120% at 100% 50%, #000 62%, transparent 62.3%); mask-image: radial-gradient(140% 120% at 100% 50%, #000 62%, transparent 62.3%); border-radius: 0; }
  .why__sparks { left: 13%; top: 20%; }
}

/* ==========================================================
   5. SPECIAL OFFER — coupon
   ========================================================== */
.offer { padding: 64px 0; background: #fff; }
.offer__card { position: relative; background: linear-gradient(180deg, #f9fbfe, #f4f7fb); border: 1px solid #e8edf4; border-radius: 4px; padding: 32px 22px 26px; display: grid; gap: 36px; overflow: hidden; }
.offer__deco { position: absolute; color: #d9e3f1; }
.offer__deco--wrench { right: 26px; top: 10px; }
.offer__deco--house { right: 40px; bottom: 16px; }
.pill-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--peach); color: var(--orange); font-family: var(--ff-head); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .02em; padding: 8px 18px; border-radius: 999px; margin-bottom: 14px; }
.offer__h { font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 800; line-height: 1.02; margin: 0 0 16px; }
.offer__h .c-orange { display: block; }
.offer__p { font-size: 1.05rem; color: var(--ink-2); max-width: 520px; }
.offer__feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; text-align: center; font-size: .86rem; font-weight: 600; color: var(--navy-800); line-height: 1.25; margin: 20px 0 28px; max-width: 500px; }
.offer__feats li { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 0 8px; }
.offer__feats li + li { border-left: 1px solid #dde4ee; }
.offer__cta { display: flex; align-items: center; gap: 10px; max-width: 500px; justify-content: center; }
.offer__cta .btn { flex: 1; max-width: 390px; }
.offer__limited { display: flex; align-items: center; justify-content: center; gap: 8px; max-width: 500px; font-size: .9rem; color: var(--ink-2); margin: 12px 0 0; }
.offer__fine { font-size: .78rem; color: var(--muted); margin: 10px 4px 0; }
.offer__art { position: relative; display: grid; place-items: center; padding: 20px 0; }
.blob { position: absolute; border-radius: 50%; }
.blob--blue { width: 74%; aspect-ratio: 1.25; background: #d9e6fa; left: -2%; top: 16%; border-radius: 55% 45% 50% 50% / 60% 55% 45% 40%; }
.blob--orange { width: 40%; aspect-ratio: 1.1; background: var(--orange); right: 6%; top: -2%; border-radius: 40% 60% 30% 70% / 50% 40% 60% 50%; transform: rotate(-12deg); }
.dots { position: absolute; left: 4%; bottom: 8%; width: 70px; height: 60px; background-image: radial-gradient(var(--orange) 1.6px, transparent 1.8px); background-size: 12px 12px; opacity: .8; }
.offer__sparks { position: absolute; left: 2%; top: 8%; }
.coupon { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; width: min(100%, 470px); background: linear-gradient(160deg, #0d2d63 0%, #06214f 100%); border-radius: 18px; color: #fff; box-shadow: 0 26px 50px rgba(3, 24, 60, .35); transform: rotate(-2deg); overflow: visible; }
.coupon::before, .coupon::after { content: ""; position: absolute; width: 22px; height: 22px; border-radius: 50%; background: #eef3fa; right: calc(38% - 11px); }
.coupon::before { top: -11px; } .coupon::after { bottom: -11px; }
.coupon__main { padding: 22px 16px 22px 22px; }
.coupon__logo { width: 148px; margin-bottom: 8px; }
.coupon__amt { font-family: var(--ff-head); font-weight: 800; font-size: clamp(2.6rem, 7vw, 3.6rem); line-height: 1; margin: 0 0 6px; letter-spacing: -.02em; }
.coupon__head { font-family: var(--ff-head); font-weight: 700; font-size: clamp(1.05rem, 2.4vw, 1.3rem); margin: 0 0 10px; }
.coupon__terms { font-size: .78rem; line-height: 1.45; color: #d6e0f2; margin: 0; }
.coupon__stub { width: 38%; min-width: 130px; border-left: 2px dashed rgba(255, 255, 255, .45); display: grid; place-items: end center; padding: 10px 6px 12px; }
.coupon__fox { width: 100%; max-width: 180px; filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .25)); }
.coupon { grid-template-columns: 1fr 31%; width: min(100%, 520px); }
.coupon::before, .coupon::after { right: calc(31% - 11px); }
.coupon__stub { width: auto; }
@media (min-width: 980px) {
  .offer__card { grid-template-columns: 1fr 1.02fr; padding: 34px 40px 30px 54px; align-items: center; }
  .offer__art { min-height: 380px; }
}

/* ==========================================================
   6. PROCESS
   ========================================================== */
.process { padding: 70px 0 80px; background: linear-gradient(180deg, #fff 0%, #fff 70%, var(--ice-2) 100%); overflow: hidden; }
.process::after { content: ""; position: absolute; left: -10%; right: -10%; bottom: -60px; height: 160px; border-radius: 50%; background: #eef3fa; z-index: 0; }
.process .wrap { position: relative; z-index: 1; }
.process__grid { display: grid; gap: 22px; margin-top: 10px; }
.step { position: relative; background: #fff; border-radius: 14px; box-shadow: var(--shadow); padding: 26px 22px 28px; }
.step h3 { font-size: 1.15rem; font-weight: 700; margin: 18px 0 10px; }
.step p { font-size: .93rem; margin: 0; }
.step__ic { position: relative; display: grid; place-items: center; width: 70px; height: 70px; border-radius: 50%; background: var(--ice); color: var(--orange); }
.step__n { position: absolute; top: -6px; right: -12px; width: 28px; height: 28px; border-radius: 50%; background: var(--orange-grad); color: #fff; font: 700 .9rem/28px var(--ff-head); text-align: center; }
.step__arrow { display: none; }
.step--navy { background: linear-gradient(170deg, #0f3372, #062254); color: #fff; overflow: visible; padding-right: 44%; min-height: 290px; }
.step--navy h3 { color: #fff; font-size: 1.35rem; margin-top: 12px; }
.step--navy p { color: #dce5f5; margin-bottom: 18px; }
.step__logo { width: 130px; }
.step__fox { position: absolute; right: -8px; bottom: -8px; width: 48%; max-width: 230px; filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .25)); }
.step__sparks { position: absolute; right: 16px; top: -24px; transform: scaleX(-1); }
@media (min-width: 700px) { .process__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) {
  .process__grid { grid-template-columns: 1fr 1fr 1fr 1.62fr; gap: 34px; align-items: stretch; }
  .step__arrow { display: block; position: absolute; right: -32px; top: 50px; width: 30px; height: 10px; background: linear-gradient(90deg, var(--orange) 50%, transparent 0) 0 50% / 7px 2px repeat-x; }
  .step__arrow::after { content: ""; position: absolute; right: -2px; top: 1px; width: 7px; height: 7px; border-top: 2px solid var(--orange); border-right: 2px solid var(--orange); transform: rotate(45deg); }
  .step--navy { padding: 26px 40% 26px 26px; }
  .step__fox { right: -34px; bottom: -10px; width: 50%; max-width: 250px; }
  .step--navy p { max-width: 230px; }
}

/* ==========================================================
   7. VIDEO TESTIMONIALS
   ========================================================== */
.vids { padding: 70px 0; background: radial-gradient(800px 300px at 90% 100%, #eef3fb, transparent 70%), #fff; }
.vids__h { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.vids__h .sparks { display: none; }
@media (min-width: 700px) { .vids__h .sparks { display: inline-block; } }
.carousel { position: relative; }
.carousel__track { display: grid; grid-auto-flow: column; grid-auto-columns: 82%; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 6px 2px 10px; overscroll-behavior-x: contain; }
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > li { scroll-snap-align: start; }
@media (min-width: 700px) { .carousel__track { grid-auto-columns: calc(50% - 8px); } }
@media (min-width: 1000px) { .vids__track { grid-auto-columns: calc(25% - 11px); } }
.car-btn { position: absolute; top: 44%; z-index: 3; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; border: 0; background: #fff; color: var(--navy-800); box-shadow: 0 6px 18px rgba(15, 31, 61, .18); }
.car-btn--prev { left: -6px; } .car-btn--next { right: -6px; }
@media (min-width: 1260px) { .car-btn--prev { left: -22px; } .car-btn--next { right: -22px; } }
.car-btn--sm { width: 40px; height: 40px; }
.car-btn[disabled] { opacity: .35; cursor: default; }
.dots-nav { display: flex; justify-content: center; gap: 10px; margin: 18px 0 26px; }
.dots-nav button { width: 9px; height: 9px; padding: 0; border-radius: 50%; border: 0; background: #cdd5e1; }
.dots-nav button[aria-current="true"] { background: var(--orange); }
.vcard { position: relative; border-radius: 12px; overflow: hidden; background: #0e2447; box-shadow: var(--shadow); aspect-ratio: 190 / 236; }
.vcard__media { position: absolute; inset: 0; padding: 0; border: 0; background: none; width: 100%; }
.vcard__media img { width: 100%; height: 100%; object-fit: cover; }
.vcard__play[hidden] { display: none; }
.vcard__play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 22%; aspect-ratio: 1; height: auto; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .96); color: #1d2533; border: 3px solid rgba(30, 36, 50, .75); box-shadow: 0 6px 16px rgba(0, 0, 0, .25); padding-left: 4px; }
.vcard__who { position: absolute; left: 10px; right: 10px; bottom: 12px; display: flex; align-items: center; gap: 8px; background: #fff; border-radius: 8px; padding: 8px 10px; box-shadow: 0 4px 12px rgba(0, 0, 0, .12); font-size: .78rem; line-height: 1.2; }
.vcard__who strong { display: block; color: var(--navy-800); font-size: .82rem; }
.vcard__who small { color: var(--muted); }
.vcard__who .stars { margin-left: auto; }
.vcard__av, .rcard__av { flex: none; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--navy-800); color: #fff; }
.stars { display: inline-flex; gap: 1px; flex: none; }
.sample-tag { position: absolute; top: 10px; left: 10px; background: rgba(2, 20, 50, .7); color: #fff; font-size: .68rem; font-weight: 600; padding: 3px 8px; border-radius: 99px; letter-spacing: .03em; }

/* ==========================================================
   8. LATEST REVIEWS widget
   ========================================================== */
.revw { padding: 20px 0 70px; background: #f7f8fa; }
.revw__card { background: #fff; border: 1px solid #e4e7ec; border-radius: 6px; padding: 26px 18px; font-family: var(--ff-body); }
.revw__h { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #10183a; margin-bottom: 18px; }
.revw__tabs { display: flex; gap: 6px; overflow-x: auto; border-bottom: 1px solid #e4e7ec; scrollbar-width: none; margin-bottom: 18px; }
.revw__tabs button { display: inline-flex; align-items: center; gap: 8px; border: 0; background: none; padding: 10px 14px 12px; font-weight: 500; color: #1d2433; white-space: nowrap; border-bottom: 3px solid transparent; margin-bottom: -1px; }
.revw__tabs button[aria-selected="true"] { color: var(--link-blue); border-color: var(--link-blue); }
.revw__sum { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; }
.revw__sum > span { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 1.05rem; color: #1d2433; }
.revw__sum strong { font-weight: 700; font-size: 1.15rem; }
.revw__sum .sep { color: #b8bec9; }
.revw__track { grid-auto-columns: 88%; }
@media (min-width: 700px) { .revw__track { grid-auto-columns: calc(50% - 8px); } }
@media (min-width: 1000px) { .revw__track { grid-auto-columns: calc(33.333% - 10px); } .revw__card { padding: 30px 34px; } }
.rcard { border: 1px solid #e4e7ec; border-radius: 8px; padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; background: #fff; }
.rcard__top { display: flex; align-items: center; gap: 10px; line-height: 1.2; }
.rcard__top strong { display: block; color: #1d2433; font-size: .95rem; }
.rcard__top small { color: var(--muted); font-size: .8rem; }
.rcard__src { margin-left: auto; }
.rcard p { font-size: .92rem; color: #2f3747; margin: 0; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.rcard__more { color: var(--link-blue); font-size: .9rem; font-weight: 500; text-decoration: none; margin-top: auto; }
.rcard[hidden] { display: none; }

/* ==========================================================
   9. ZIP CHECK — “See If We Serve Your Area”
   ========================================================== */
.zip { background: linear-gradient(180deg, #f5f7fa 0%, #eceff4 100%); padding: 44px 0 0; overflow: hidden; }
.zip::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: linear-gradient(90deg, var(--orange) 0 40%, var(--navy-800) 40%); }
.zip::after { content: ""; display: block; height: 58px; background: var(--navy-900); margin-top: 20px; clip-path: ellipse(75% 100% at 50% 100%); }
.zip__in { display: grid; gap: 24px; align-items: center; }
.zip__kicker { display: flex; align-items: center; gap: 6px; font-family: var(--ff-head); font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .03em; font-size: .98rem; margin: 0 0 4px; }
.sparks--k { width: 26px; margin-left: -4px; transform: scaleX(-1) rotate(8deg); }
.zip__h { font-size: clamp(2rem, 4.2vw, 2.8rem); font-weight: 800; line-height: 1.05; margin: 0 0 10px; }
.brush { position: relative; display: inline-block; color: #fff; padding: .02em .35em .1em; margin-top: 6px; z-index: 0; }
.brush::before { content: ""; position: absolute; inset: 0 -4px; z-index: -1; background: var(--orange); border-radius: 6px 14px 8px 16px / 16px 8px 14px 6px; transform: rotate(-1.5deg); box-shadow: 6px 2px 0 -1px rgba(255, 90, 20, .35); }
.zip__sub { font-size: .92rem; color: var(--ink-2); margin: 10px 0 0; }
.zip__form, .phero__zip { display: flex; flex-wrap: wrap; gap: 10px; }
.zip__field { flex: 1 1 200px; min-width: 0; display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #dde3ec; border-radius: 10px; padding: 0 14px; min-height: 56px; box-shadow: var(--shadow-sm); }
.zip__field .ic { color: var(--orange); flex: none; }
.zip__field input { border: 0; outline: 0; font: inherit; font-size: 1.05rem; width: 100%; background: transparent; color: var(--ink); min-height: 52px; }
.zip__form .btn { min-height: 56px; flex: 1 1 180px; }
.zip__result { min-height: 1.4em; margin: 8px 0 0; font-weight: 600; font-size: .95rem; }
.zip__result.ok { color: #0f7a3d; } .zip__result.no { color: #b54708; }
.zip__badges { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 12px; font-size: .84rem; font-weight: 600; color: var(--navy-800); }
.zip__badges li { display: inline-flex; align-items: center; gap: 8px; }
.zip__badges li + li { padding-left: 18px; border-left: 1px solid #cfd7e3; }
.zip__badges .ic { color: var(--navy-800); }
.zip__art { position: relative; display: flex; align-items: flex-end; justify-content: space-between; gap: 0; margin-right: calc(-1 * var(--gutter)); }
.smap { width: min(340px, 62%); }
.zip__fox { position: relative; width: min(190px, 38%); margin-left: -18px; margin-top: 60px; }
.speech { position: absolute; right: 18%; top: -58px; width: 150px; background: #fff; border: 2px solid var(--navy-800); border-radius: 50% / 46%; padding: 12px 12px; font-family: var(--ff-head); font-style: italic; font-weight: 700; font-size: .8rem; line-height: 1.2; text-align: center; color: var(--navy-800); transform: rotate(-6deg); box-shadow: 0 4px 10px rgba(0, 0, 0, .06); }
.speech::after { content: ""; position: absolute; left: 30%; bottom: -12px; border: 8px solid transparent; border-top: 12px solid var(--navy-800); border-bottom: 0; transform: rotate(18deg); }
@media (min-width: 1000px) {
  .zip { padding-top: 34px; }
  .zip__in { grid-template-columns: 1fr 1.2fr 1fr; gap: 26px; }
  .zip__form { flex-wrap: nowrap; }
  .zip__form .btn { flex: 0 0 auto; }
  .zip__badges { flex-wrap: nowrap; gap: 14px; font-size: .78rem; }
  .zip__badges li + li { padding-left: 14px; }
  .zip__h { font-size: 2.35rem; }
  .zip__art { position: static; justify-content: flex-start; margin-right: 0; padding-right: 120px; }
  .smap { width: 100%; max-width: 330px; }
  .zip__fox { position: absolute; right: 0; bottom: 60px; width: 185px; margin: 0; }
  .zip__fox .speech { right: 78%; top: -4px; width: 140px; }
}

/* ---------- area links ---------- */
.areas { padding: 70px 0; }
.areas__list { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; }
.areas__list a { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; text-decoration: none; background: #fff; transition: .15s; }
.areas__list a:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-2px); }
.areas__list .ic { color: var(--orange); flex: none; }
.areas__list strong { display: block; color: var(--navy-800); font-family: var(--ff-head); font-weight: 600; }
.areas__list small { color: var(--muted); font-size: .8rem; }
.areas__also { text-align: center; color: var(--muted); font-size: .92rem; margin: 22px auto 0; max-width: 820px; }
.areas__also a { color: var(--navy-800); font-weight: 600; }

/* ---------- property manager band ---------- */
.pmband { padding: 70px 0; background: var(--bg-soft); }
.pmband__in { display: grid; gap: 30px; align-items: center; }
.pmband__media img { border-radius: var(--r-lg); box-shadow: var(--shadow); width: 100%; }
.checks { display: grid; gap: 10px; margin: 18px 0 26px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; color: var(--ink); }
.checks .ic { color: var(--orange); flex: none; margin-top: 3px; }
@media (min-width: 900px) { .pmband__in { grid-template-columns: 1fr 1fr; gap: 56px; } }

/* ---------- FAQ ---------- */
.faq { padding: 70px 0; }
.faq__list { margin-top: 26px; display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--line); border-radius: 12px; background: #fff; transition: box-shadow .15s; }
.faq__item[open] { box-shadow: var(--shadow); border-color: #d5dde8; }
.faq__item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 20px; cursor: pointer; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item h3 { font-size: 1.02rem; font-weight: 600; margin: 0; }
.faq__pm { position: relative; flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--peach); }
.faq__pm::before, .faq__pm::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--orange); transform: translate(-50%, -50%); }
.faq__pm::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .2s; }
.faq__item[open] .faq__pm::after { transform: translate(-50%, -50%); }
.faq__a { padding: 0 20px 18px; }
.faq__a p { margin: 0; }

/* ---------- resources ---------- */
.res { padding: 70px 0; background: var(--bg-soft); }
.cards3 { display: grid; gap: 20px; margin-top: 26px; }
@media (min-width: 800px) { .cards3 { grid-template-columns: repeat(3, 1fr); } }
.pcard a { display: flex; flex-direction: column; height: 100%; background: #fff; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); text-decoration: none; transition: .15s; }
.pcard a:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.pcard img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }
.pcard__body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.pcard small { color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; }
.pcard h3 { font-size: 1.1rem; margin: 6px 0 8px; }
.pcard p { font-size: .92rem; color: var(--muted); }
.pcard__more { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--navy-800); }

/* ---------- CTA band & footer ---------- */
.cta-band { background: linear-gradient(120deg, #0f3372, var(--navy-900)); color: #fff; padding: 44px 0; }
.cta-band__in { display: grid; gap: 20px; align-items: center; }
.cta-band__h { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: .3em; }
.cta-band p { color: #d5def0; margin: 0; }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 12px; }
@media (min-width: 900px) { .cta-band__in { grid-template-columns: 1fr auto; } }
.ftr { background: var(--navy-950); color: #c6d2e6; padding: 56px 0 90px; font-size: .93rem; }
.ftr__grid { display: grid; gap: 34px; }
.ftr__logo { width: 170px; margin-bottom: 16px; }
.ftr__h { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 14px; }
.ftr ul li { margin-bottom: 8px; }
.ftr a { color: #c6d2e6; text-decoration: none; }
.ftr a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--orange); }
.ftr__contact li { display: flex; align-items: center; gap: 10px; }
.ftr__contact .ic { color: var(--orange); flex: none; }
.ftr__base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 40px; padding-top: 20px; font-size: .84rem; }
.ftr .ph { color: #fff; }
@media (min-width: 800px) { .ftr__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } .ftr { padding-bottom: 40px; } }
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: grid; grid-template-columns: 1fr 1.6fr; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(15, 31, 61, .1); padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); gap: 8px; }
.mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; border-radius: 10px; text-decoration: none; font-family: var(--ff-head); font-weight: 600; color: var(--navy-800); background: var(--ice-2); }
.mobile-bar__cta { background: var(--orange-grad) !important; color: #fff !important; }
@media (min-width: 800px) { .mobile-bar { display: none; } }

/* ==========================================================
   Fix-It Fox AI assistant
   ========================================================== */
.fox-ai { position: fixed; right: 14px; bottom: 80px; z-index: 70; }
@media (min-width: 800px) { .fox-ai { right: 22px; bottom: 22px; } }
.fox-ai__launch { display: flex; align-items: center; gap: 0; border: 0; background: none; padding: 0; }
.fox-ai__face { width: 64px; height: 64px; object-fit: contain; background: #fff; border-radius: 50%; padding: 5px; box-shadow: 0 10px 26px rgba(3, 24, 60, .28); border: 3px solid var(--orange); transition: transform .2s; }
.fox-ai__launch:hover .fox-ai__face { transform: rotate(-6deg) scale(1.05); }
.fox-ai__bubble { order: -1; margin-right: 10px; background: var(--navy-800); color: #fff; font-family: var(--ff-head); font-weight: 600; font-size: .85rem; padding: 9px 14px; border-radius: 14px 14px 4px 14px; box-shadow: var(--shadow); white-space: nowrap; }
.fox-ai.is-open .fox-ai__bubble { display: none; }
@media (max-width: 480px) { .fox-ai__bubble { display: none; } }
.fox-ai__panel { position: fixed; right: 10px; left: 10px; bottom: 10px; max-height: min(640px, calc(100vh - 20px)); display: flex; flex-direction: column; background: #fff; border-radius: 18px; box-shadow: 0 30px 70px rgba(3, 24, 60, .35); overflow: hidden; }
@media (min-width: 560px) { .fox-ai__panel { left: auto; right: 22px; bottom: 100px; width: 390px; } }
.fox-ai__panel[hidden] { display: none; }
.fox-ai__hd { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: linear-gradient(120deg, #0f3372, var(--navy-900)); color: #fff; }
.fox-ai__hd strong { display: block; font-family: var(--ff-head); }
.fox-ai__hd small { color: #c8d4ea; }
.fox-ai__avatar { width: 42px; height: 42px; background: #fff; border-radius: 50%; padding: 3px; object-fit: contain; }
.fox-ai__x { margin-left: auto; border: 0; background: rgba(255, 255, 255, .12); color: #fff; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; }
.fox-ai__log { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: var(--bg-soft); min-height: 220px; }
.msg { max-width: 86%; padding: 10px 14px; border-radius: 14px; font-size: .92rem; line-height: 1.45; }
.msg--bot { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; color: var(--ink); }
.msg--me { align-self: flex-end; background: var(--navy-800); color: #fff; border-bottom-right-radius: 4px; }
.msg a { color: var(--orange-600); font-weight: 600; }
.msg--me a { color: #ffd3bd; }
.fox-ai__chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 14px 0; }
.fox-ai__chips button { border: 1px solid #f8c6ad; background: var(--peach-2); color: var(--orange-600); border-radius: 99px; padding: 6px 12px; font-size: .82rem; font-weight: 600; }
.fox-ai__form { display: flex; gap: 8px; padding: 12px 14px; }
.fox-ai__form input { flex: 1; min-height: 46px; border: 1px solid var(--line); border-radius: 12px; padding: 0 14px; font: inherit; font-size: 16px; }
.fox-ai__form button { width: 46px; border: 0; border-radius: 12px; background: var(--orange-grad); color: #fff; display: grid; place-items: center; }
.fox-ai__note { font-size: .72rem; color: var(--muted); padding: 0 16px 12px; margin: 0; }

/* ==========================================================
   Inner pages
   ========================================================== */
.phero { background: linear-gradient(180deg, #fff 0%, var(--ice-2) 100%); padding: 40px 0 44px; overflow: hidden; }
.phero__in { display: grid; gap: 30px; align-items: center; }
.phero__kicker { font-family: var(--ff-head); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; font-size: .78rem; color: var(--muted); margin-bottom: 10px; }
.phero__h { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.06; }
.phero__h em { font-style: normal; color: var(--orange); display: block; }
.phero__lead { font-size: 1.08rem; max-width: 560px; }
.phero__zip { max-width: 560px; margin-top: 8px; }
.phero__zip .btn { flex: 1 1 200px; min-height: 56px; }
.phero__badges { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 22px; font-size: .78rem; font-weight: 600; color: var(--navy-800); line-height: 1.2; }
.phero__badges li { display: flex; align-items: center; gap: 8px; }
.phero__badges .ic { color: var(--navy-800); flex: none; }
.phero__media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.phero .hero__btns { margin-top: 10px; }
@media (min-width: 960px) {
  .phero { padding: 56px 0 60px; }
  .phero__in { grid-template-columns: 1fr 1.1fr; gap: 50px; }
  .phero__media img { border-radius: 30px 0 0 30px; margin-right: calc(-1 * var(--gutter)); width: calc(100% + var(--gutter)); max-width: none; }
}

.section { padding: 64px 0; }
.section--soft { background: var(--bg-soft); }
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); font-weight: 700; margin: 1.8em 0 .5em; }
.prose h3 { font-size: 1.2rem; font-weight: 700; margin: 1.5em 0 .4em; }
.prose ul { list-style: disc; padding-left: 1.2em; margin-bottom: 1em; }
.prose li { margin-bottom: .4em; }
.prose a { color: var(--orange-600); font-weight: 600; }
.split { display: grid; gap: 40px; }
@media (min-width: 960px) { .split { grid-template-columns: 1.55fr 1fr; gap: 56px; align-items: start; } }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 24px; box-shadow: var(--shadow-sm); position: sticky; top: 100px; }
.aside-card--navy { background: linear-gradient(170deg, #0f3372, #062254); color: #dce5f5; border: 0; }
.aside-card--navy h2, .aside-card--navy h3 { color: #fff; }
.aside-card img.aside-fox { width: 130px; margin: -10px auto 6px; }
.inc-grid { display: grid; gap: 12px; margin: 20px 0 10px; }
@media (min-width: 640px) { .inc-grid { grid-template-columns: 1fr 1fr; } }
.inc-grid li { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; font-weight: 500; color: var(--ink); }
.inc-grid .ic { color: var(--orange); flex: none; margin-top: 2px; }
.kw-note { font-size: .8rem; color: var(--muted); }
.svc-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); margin-top: 26px; }
.svc-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; text-decoration: none; transition: .15s; }
.svc-card:hover { border-color: #f8b896; box-shadow: var(--shadow); transform: translateY(-3px); }
.svc-card img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; }
.svc-card__b { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.svc-card__b h3 { display: flex; align-items: center; gap: 10px; font-size: 1.08rem; margin: 0; }
.svc-card__b h3 .ic { color: var(--orange); }
.svc-card__b p { font-size: .9rem; color: var(--muted); margin: 0; }
.svc-card__more { margin-top: auto; padding-top: 8px; font-weight: 600; color: var(--navy-800); display: inline-flex; align-items: center; gap: 6px; font-size: .92rem; }
.team-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); margin-top: 20px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; text-align: center; }
.tcard__ph { aspect-ratio: 1 / 1; background: linear-gradient(160deg, var(--ice), #d4e0f2); display: grid; place-items: center; position: relative; }
.tcard__ph svg { width: 44%; color: #9fb3d3; }
.tcard__ph span { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); font-size: .7rem; font-weight: 600; background: rgba(255, 255, 255, .85); color: var(--muted); padding: 3px 10px; border-radius: 99px; white-space: nowrap; }
.tcard--mascot .tcard__ph { background: linear-gradient(160deg, #fff1e7, #ffd9c2); }
.tcard--mascot img { width: 78%; margin-top: 10%; }
.tcard__b { padding: 16px 16px 20px; }
.tcard__b h3 { font-size: 1.02rem; margin-bottom: 2px; }
.tcard__b .role { color: var(--orange-600); font-weight: 600; font-size: .86rem; margin-bottom: 8px; }
.tcard__b p { font-size: .86rem; color: var(--muted); margin: 0; }
.group-h { margin-top: 44px; font-size: 1.3rem; }
.note-box { border: 1px dashed #f3a57e; background: var(--peach-2); color: #7a3a14; border-radius: 12px; padding: 14px 18px; font-size: .9rem; }

/* ---------- estimate funnel ---------- */
.funnel { padding: 40px 0 80px; background: var(--bg-soft); min-height: 70vh; }
.funnel__card { background: #fff; border-radius: 20px; box-shadow: var(--shadow); max-width: 880px; margin: 0 auto; overflow: hidden; }
.funnel__top { background: linear-gradient(120deg, #0f3372, var(--navy-900)); color: #fff; padding: 24px 24px 20px; display: flex; gap: 16px; align-items: center; }
.funnel__top h1 { color: #fff; font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 0 0 4px; }
.funnel__top p { margin: 0; color: #cfdaee; font-size: .92rem; }
.funnel__top img { width: 76px; flex: none; }
.progress { display: flex; gap: 6px; padding: 16px 24px 0; }
.progress li { flex: 1; font-size: .72rem; font-weight: 600; color: var(--muted); text-align: center; }
.progress li::before { content: ""; display: block; height: 6px; border-radius: 6px; background: #e3e8ef; margin-bottom: 6px; }
.progress li.done::before, .progress li.cur::before { background: var(--orange); }
.progress li.cur { color: var(--navy-800); }
@media (max-width: 560px) { .progress li span { display: none; } }
.fstep { padding: 24px; border: 0; margin: 0; }
.fstep[hidden] { display: none; }
.fstep legend, .fstep h2 { font-family: var(--ff-head); font-size: 1.3rem; font-weight: 700; color: var(--navy-800); margin-bottom: 6px; padding: 0; }
.fstep .hint { color: var(--muted); font-size: .92rem; margin-bottom: 18px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 700px) { .choice-grid { grid-template-columns: repeat(4, 1fr); } .choice-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; pointer-events: none; }
.choice label { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; min-height: 104px; padding: 14px 10px; border: 2px solid var(--line); border-radius: 14px; cursor: pointer; font-weight: 600; font-size: .9rem; color: var(--navy-800); background: #fff; transition: .12s; }
.choice label .ic { color: var(--orange); }
.choice input:checked + label { border-color: var(--orange); background: var(--peach-2); box-shadow: 0 0 0 3px rgba(255, 90, 20, .15); }
.choice input:focus-visible + label { outline: 3px solid var(--orange); outline-offset: 2px; }
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-weight: 600; color: var(--navy-800); font-size: .92rem; }
.field input, .field textarea, .field select { font: inherit; font-size: 16px; border: 1px solid #d5dce6; border-radius: 10px; padding: 12px 14px; min-height: 50px; background: #fff; color: var(--ink); }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); outline: 0; box-shadow: 0 0 0 3px rgba(255, 90, 20, .15); }
.field .err { color: #b42318; font-size: .82rem; display: none; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid textarea { border-color: #d92d20; }
.row2 { display: grid; gap: 0 14px; } @media (min-width: 640px) { .row2 { grid-template-columns: 1fr 1fr; } }
.fnav { display: flex; justify-content: space-between; gap: 12px; padding: 0 24px 26px; }
.fnav .btn[hidden] { display: none; }
.btn--back { background: #fff; border-color: var(--line); color: var(--navy-800); }
.review-list { display: grid; gap: 8px; background: var(--bg-soft); border-radius: 12px; padding: 16px 18px; font-size: .94rem; }
.review-list div { display: grid; grid-template-columns: 130px 1fr; gap: 10px; }
.review-list dt { font-weight: 600; color: var(--navy-800); } .review-list dd { margin: 0; }
.funnel__done { padding: 40px 24px; text-align: center; }
.funnel__done img { width: 150px; margin: 0 auto 10px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; margin: 22px auto 0; font-size: .86rem; color: var(--muted); max-width: 880px; }
.trust-row li { display: flex; align-items: center; gap: 6px; } .trust-row .ic { color: var(--orange); }
.contact-cards { display: grid; gap: 16px; } @media (min-width: 800px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }
.ccard { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.ccard .circ { margin-bottom: 12px; }
.ccard h2 { font-size: 1.1rem; }
.post-hero img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 16 / 7; object-fit: cover; margin: 10px 0 20px; }
.meta { color: var(--muted); font-size: .88rem; }
.related { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.related a { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 99px; background: var(--ice-2); color: var(--navy-800); text-decoration: none; font-weight: 600; font-size: .88rem; }
.related a:hover { background: var(--peach); color: var(--orange-600); }

/* ---------- small-screen refinements ---------- */
@media (max-width: 799px) {
  .tile__name br { display: none; }
  .tile__name { font-size: .8rem; }
  .tile__bar { padding: 10px; gap: 8px; }
  .tile__go { width: 26px; height: 26px; }
  .tile__ic .ic { width: 20px; height: 20px; }
}
@media (max-width: 560px) {
  .eyebrow { font-size: .74rem; letter-spacing: .14em; gap: 10px; }
  .eyebrow__line { width: 22px; }
  .hero__in { min-height: 0; padding-top: 44px; }
  .coupon__main { padding: 18px 12px 18px 16px; }
  .coupon__logo { width: 118px; }
}
.page-estimate .cta-band { display: none; }
.fox-ai.bubble-off .fox-ai__bubble { opacity: 0; pointer-events: none; }
.fox-ai__bubble { transition: opacity .4s; }

/* ==========================================================
   v2 — logo, heroes, service sections, team, blog, projects,
   popups, forms, and the "Schedule Your Service" flow
   ========================================================== */
.brand__logo { width: 124px; }
@media (min-width: 1100px) { .brand__logo { width: 150px; } }
.h-md { font-size: clamp(1.25rem, 2.2vw, 1.5rem); font-weight: 700; }
.section--navy { background: radial-gradient(900px 380px at 100% 0%, #123f82 0%, rgba(18,63,130,0) 70%), var(--navy-900); color: #d5def0; }
.btn--sm { min-height: 38px; padding: 8px 14px; font-size: .85rem; border-radius: 8px; }
.btn--wide { min-width: min(100%, 272px); }
.empty { text-align: center; color: var(--muted); padding: 24px; }
.chip { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); background: #fff; color: var(--navy-800); border-radius: 99px; padding: 8px 16px; font-weight: 600; font-size: .88rem; text-decoration: none; white-space: nowrap; transition: .15s; }
.chip:hover { border-color: var(--orange); }
.chip.is-on { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.chip--sm { padding: 4px 12px; font-size: .78rem; background: var(--peach); border-color: transparent; color: var(--orange-600); }

/* ---------- inner-page hero (clean, representative photo) ---------- */
.phero { background: linear-gradient(180deg, #fff 0%, var(--ice-2) 100%); padding: 32px 0 48px; overflow: hidden; }
.phero__kicker { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 99px; padding: 6px 14px; box-shadow: var(--shadow-sm); letter-spacing: .08em; color: var(--navy-800); }
.phero__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,90,20,.18); }
.phero__h { margin-top: 14px; }
.phero__media { position: relative; }
.phero__frame { position: relative; z-index: 1; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16 / 11; background: var(--ice); }
.phero__frame img { width: 100%; height: 100%; object-fit: cover; }
.phero__media img { border-radius: 0; box-shadow: none; margin: 0; max-width: 100%; }
.phero__blob { position: absolute; z-index: 0; right: -40px; top: -30px; width: 55%; aspect-ratio: 1; border-radius: 42% 58% 60% 40% / 45% 45% 55% 55%; background: var(--orange); opacity: .95; }
.phero__chip { position: absolute; z-index: 2; left: 14px; bottom: -18px; display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 16px; padding: 10px 16px 10px 10px; box-shadow: var(--shadow-lg); }
.phero__chip img { width: 44px; height: 44px; object-fit: contain; border-radius: 50%; background: var(--peach); padding: 3px; }
.phero__chip strong { display: block; font-family: var(--ff-head); color: var(--navy-800); font-size: .92rem; line-height: 1.1; }
.phero__chip small { color: var(--orange-600); font-weight: 600; font-size: .78rem; }
@media (min-width: 960px) {
  .phero { padding: 52px 0 70px; }
  .phero__in { grid-template-columns: 1fr 1.08fr; gap: 56px; }
  .phero__media img { width: 100%; margin: 0; border-radius: 0; }
  .phero__chip { left: -26px; bottom: 28px; }
}

/* ---------- service page sections ---------- */
.svc-intro { display: grid; gap: 34px; }
@media (min-width: 960px) { .svc-intro { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; } }
.signs { display: grid; gap: 12px; margin-top: 18px; }
.signs li { display: flex; align-items: center; gap: 16px; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: 14px; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm); }
.signs__n { flex: none; font-family: var(--ff-head); font-weight: 800; color: var(--orange); font-size: 1.1rem; width: 36px; }
.svc-inc { position: relative; background: var(--ice-2); border-radius: 22px; padding: 28px 24px; }
.inc-list { display: grid; gap: 10px; margin: 14px 0 0; }
.inc-list li { display: flex; gap: 10px; font-weight: 500; color: var(--ink); }
.inc-list .ic { color: var(--orange); flex: none; margin-top: 3px; }
.svc-inc__tile { margin-top: 20px; border-radius: 14px; overflow: hidden; aspect-ratio: 16 / 6; }
.svc-inc__tile img { width: 100%; height: 100%; object-fit: cover; }
.howto { display: grid; gap: 16px; margin-top: 28px; counter-reset: s; }
@media (min-width: 800px) { .howto { grid-template-columns: repeat(4, 1fr); } }
.howto li { position: relative; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; padding: 24px 20px; }
.howto h3 { color: #fff; font-size: 1.08rem; margin: 14px 0 6px; }
.howto p { color: #c9d5ea; font-size: .92rem; margin: 0; }
.howto__n { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--orange-grad); color: #fff; font: 800 1.1rem var(--ff-head); box-shadow: 0 6px 16px rgba(245,80,10,.35); }
.foxtip { display: flex; gap: 16px; align-items: center; background: linear-gradient(120deg, var(--peach-2), #fff); border: 1px solid #fbd2bb; border-radius: 18px; padding: 18px 20px; margin: 28px 0; }
.foxtip__fox { width: 84px; flex: none; }
.foxtip p { margin: 0; }
.foxtip__h { font-family: var(--ff-head); font-weight: 700; color: var(--orange-600); margin-bottom: 4px !important; }

/* ---------- projects ---------- */
.prj-grid { display: grid; gap: 20px; margin-top: 26px; }
@media (min-width: 700px) { .prj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .prj-grid { grid-template-columns: repeat(3, 1fr); } }
.prj a { display: flex; flex-direction: column; height: 100%; background: #fff; border-radius: 18px; overflow: hidden; text-decoration: none; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: .18s; }
.prj a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prj__img { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.prj__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.prj a:hover .prj__img img { transform: scale(1.05); }
.prj__b { padding: 16px 18px 20px; }
.prj__b small { display: inline-flex; align-items: center; gap: 4px; color: var(--orange-600); font-weight: 600; font-size: .78rem; }
.prj__b h3 { font-size: 1.1rem; margin: 6px 0; }
.prj__b p { font-size: .9rem; color: var(--muted); margin: 0; }
.prj[hidden], .pcard[hidden] { display: none; }
.csteps { display: grid; gap: 16px; }
.csteps > div { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px; }
.csteps h2 { font-size: 1.2rem; margin: 12px 0 6px; }

/* ---------- filter bar (blog / projects) ---------- */
.filterbar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin: 34px 0 6px; }
.search { flex: 1 1 260px; max-width: 380px; display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0 14px; box-shadow: var(--shadow-sm); }
.search .ic { color: var(--orange); }
.search input { border: 0; outline: 0; font: inherit; font-size: 16px; min-height: 48px; width: 100%; background: transparent; }
.chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 2px; }

/* ---------- blog ---------- */
.feat { display: grid; background: #fff; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; text-decoration: none; box-shadow: var(--shadow-sm); transition: .18s; }
.feat:hover { box-shadow: var(--shadow); }
.feat__img { aspect-ratio: 16 / 9; overflow: hidden; }
.feat__img img { width: 100%; height: 100%; object-fit: cover; }
.feat__b { padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.feat__b small { color: var(--orange-600); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .74rem; }
.feat__b h2 { margin: 8px 0 10px; }
@media (min-width: 900px) { .feat { grid-template-columns: 1.15fr 1fr; } .feat__img { aspect-ratio: auto; min-height: 340px; } .feat__b { padding: 40px; } }
.pcard img { aspect-ratio: 16 / 9; }
.post-hd { padding: 40px 0 0; background: linear-gradient(180deg, var(--ice-2), #fff 70%); }
.post-hd .meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.post-hd__lead { font-size: 1.15rem; color: var(--ink-2); }
.post-hd__by { display: flex; align-items: center; gap: 12px; margin: 18px 0 26px; }
.post-hd__by img { width: 46px; height: 46px; border-radius: 50%; background: var(--peach); padding: 3px; object-fit: contain; }
.post-hd__by strong { display: block; color: var(--navy-800); }
.post-hd__by small { color: var(--muted); }
.post-hd__img img { width: 100%; border-radius: 24px; aspect-ratio: 21 / 9; object-fit: cover; box-shadow: var(--shadow); }
.newsletter { display: grid; gap: 16px; align-items: center; background: #fff; border-radius: 22px; padding: 26px; box-shadow: var(--shadow-sm); max-width: 1000px; }
.newsletter > img { width: 64px; height: 64px; background: var(--peach); border-radius: 50%; padding: 5px; object-fit: contain; }
.newsletter h2 { margin: 0 0 4px; }
.newsletter__f { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter__f input { flex: 1 1 220px; min-height: 50px; border: 1px solid var(--line); border-radius: 10px; padding: 0 14px; font: inherit; font-size: 16px; }
@media (min-width: 900px) { .newsletter { grid-template-columns: auto 1fr 1.2fr; } }

/* ---------- team / sheriff ---------- */
.teamband { padding: 72px 0; background: #fff; }
.teamband__in { display: grid; gap: 36px; align-items: center; }
@media (min-width: 960px) { .teamband__in { grid-template-columns: 1.15fr 1fr; gap: 56px; } }
.teamband__media { position: relative; }
.teamband__media > img { width: 100%; border-radius: 24px; box-shadow: var(--shadow-lg); }
.sheriff-chip { position: absolute; right: 14px; bottom: -20px; display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 16px; padding: 10px 14px 10px 10px; box-shadow: var(--shadow-lg); }
.sheriff-chip > img { width: 46px; height: 46px; border-radius: 50%; background: var(--peach); padding: 3px; object-fit: contain; }
.sheriff-chip strong { display: block; font-family: var(--ff-head); color: var(--navy-800); line-height: 1.1; }
.sheriff-chip small { color: var(--orange-600); font-weight: 700; font-size: .78rem; }
.faces { display: flex; align-items: center; margin: 18px 0 24px; }
.faces li { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; border: 3px solid #fff; box-shadow: var(--shadow-sm); margin-left: -12px; background: var(--ice); }
.faces li:first-child { margin-left: 0; }
.faces img { width: 100%; height: 100%; object-fit: cover; }
.faces__more { display: grid; place-items: center; background: var(--navy-800) !important; color: #fff; font-weight: 700; font-size: .9rem; }
.sheriff { background: linear-gradient(120deg, #fff 0%, var(--peach-2) 100%); }
.sheriff__in { display: grid; gap: 30px; align-items: center; }
@media (min-width: 900px) { .sheriff__in { grid-template-columns: 360px 1fr; gap: 56px; } }
.sheriff__art { position: relative; max-width: 320px; margin: 0 auto; }
.sheriff__art > img { filter: drop-shadow(0 18px 30px rgba(3,24,60,.2)); }
.sheriff__badge { position: absolute; left: 44%; top: 50%; filter: drop-shadow(0 4px 8px rgba(0,0,0,.25)); transform: rotate(-12deg); }
.tcard__ph img { width: 100%; height: 100%; object-fit: cover; }
.tcard { box-shadow: var(--shadow-sm); transition: .18s; }
.tcard:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.fleet { display: grid; gap: 16px; margin-top: 24px; }
@media (min-width: 700px) { .fleet { grid-template-columns: repeat(3, 1fr); } }
.fleet img { width: 100%; border-radius: 18px; aspect-ratio: 16 / 10; object-fit: cover; box-shadow: var(--shadow-sm); }

/* ---------- careers & forms ---------- */
.why-grid { display: grid; gap: 16px; margin-top: 26px; }
@media (min-width: 800px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-grid li { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px; text-align: center; }
.why-grid h3 { font-size: 1.05rem; margin: 12px 0 6px; }
.why-grid p { font-size: .9rem; margin: 0; }
.jobs { display: grid; gap: 12px; margin: 18px 0 10px; }
.jobs li { display: flex; justify-content: space-between; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.jobs h3 { font-size: 1.05rem; margin: 0 0 4px; }
.jobs p { margin: 0; font-size: .9rem; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 26px; box-shadow: var(--shadow); }
.form-card.aside-card { position: static; }
.stack { display: grid; gap: 0; }
.form-done { background: #ecfdf3; border: 1px solid #abefc6; color: #067647; border-radius: 12px; padding: 16px 18px; }
.contact-photo img { width: 100%; border-radius: 22px; box-shadow: var(--shadow); margin-bottom: 14px; }

/* ==========================================================
   Popups
   ========================================================== */
body.modal-open { overflow: hidden; }
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 16px; background: rgba(2, 18, 45, .55); opacity: 0; transition: opacity .2s; }
.modal.is-open { opacity: 1; }
.modal[hidden] { display: none; }
.modal__card { position: relative; width: min(100%, 860px); max-height: calc(100vh - 32px); overflow: auto; background: #fff; border-radius: 22px; box-shadow: 0 40px 90px rgba(2, 18, 45, .45); transform: translateY(14px) scale(.98); transition: transform .22s; }
.modal.is-open .modal__card { transform: none; }
.modal__card--book { display: grid; }
.modal__card--sm { width: min(100%, 460px); }
.modal__side { display: none; }
@media (min-width: 760px) { .modal__card--book { grid-template-columns: 1fr 1.15fr; } .modal__side { display: block; } .modal__side img { width: 100%; height: 100%; object-fit: cover; } }
.modal__body { padding: 32px 28px 26px; }
.modal__kicker { display: inline-flex; align-items: center; gap: 6px; color: var(--orange-600); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.modal__h { font-size: 1.7rem; font-weight: 800; margin-bottom: 6px; }
.modal__p { color: var(--muted); }
.modal__alt { font-size: .88rem; color: var(--muted); margin: 14px 0 0; text-align: center; }
.modal__alt a { color: var(--navy-800); font-weight: 600; }
.modal__fox img { width: 70px; height: 70px; border-radius: 50%; background: var(--peach); padding: 5px; object-fit: contain; margin-bottom: 10px; }
.modal__x { position: absolute; right: 12px; top: 12px; z-index: 3; width: 40px; height: 40px; border-radius: 50%; border: 0; background: var(--ice-2); color: var(--navy-800); display: grid; place-items: center; }
.modal__x--light { background: rgba(255,255,255,.15); color: #fff; }
.modal__card--offer { width: min(100%, 640px); background: linear-gradient(150deg, #0f3372, #04204f); color: #fff; overflow: hidden; }
.offer-pop { display: grid; grid-template-columns: 1fr; position: relative; }
.offer-pop::before { content: ""; position: absolute; right: -70px; top: -70px; width: 260px; height: 260px; border-radius: 50%; background: var(--orange); opacity: .9; }
.offer-pop__copy { position: relative; padding: 36px 30px 30px; }
.offer-pop__kicker { display: inline-block; background: rgba(255,255,255,.12); padding: 6px 14px; border-radius: 99px; font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.offer-pop__amt { font-family: var(--ff-head); font-weight: 800; font-size: clamp(3rem, 10vw, 4.4rem); line-height: 1; margin: 14px 0 4px; }
.offer-pop__head { font-family: var(--ff-head); font-weight: 700; font-size: 1.3rem; margin-bottom: 8px; }
.offer-pop__terms { color: #c9d5ea; font-size: .88rem; max-width: 330px; }
.offer-pop__no { display: block; margin-top: 12px; border: 0; background: none; color: #c9d5ea; text-decoration: underline; font-size: .85rem; }
.offer-pop__fox { position: relative; display: none; }
@media (min-width: 600px) { .offer-pop { grid-template-columns: 1.4fr 1fr; } .offer-pop__fox { display: flex; align-items: flex-end; padding: 20px 16px 0 0; } .offer-pop__fox img { filter: drop-shadow(0 12px 20px rgba(0,0,0,.35)); } }

/* ==========================================================
   Schedule Your Service  (4 steps)
   ========================================================== */
.bare-hdr { background: #fff; border-bottom: 5px solid var(--orange); box-shadow: 0 2px 10px rgba(15,31,61,.06); }
.bare-hdr__in { display: flex; justify-content: space-between; align-items: center; min-height: 82px; gap: 12px; }
.bare-hdr__logo { width: 136px; height: auto; }
.bare-hdr__phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-head); font-weight: 800; color: var(--navy-800); font-size: clamp(1.05rem, 3vw, 1.7rem); text-decoration: none; white-space: nowrap; }
.bare-hdr__phone .ic { color: var(--orange); }
.bare-ftr { text-align: center; font-size: .84rem; color: var(--muted); padding: 26px 0 40px; background: #fff; }
.bare-ftr a { color: var(--orange-600); font-weight: 600; }
.bare-ftr p { margin: 10px 0 0; font-size: .78rem; }
.sched { padding: 34px 0 70px; background-color: #edf1f6; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.55) 0 22px, rgba(255,255,255,0) 22px 60px); min-height: 70vh; }
.sched__h { text-align: center; font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 16px; }
.sched__card { max-width: 1040px; margin: 0 auto; background: #fff; box-shadow: 0 16px 40px rgba(15,31,61,.12); padding: 32px 18px 26px; }
@media (min-width: 700px) { .sched__card { padding: 50px 56px 34px; } }
.sdots { display: flex; max-width: 560px; margin: 0 auto 26px; }
.sdots li { position: relative; flex: 1; display: flex; flex-direction: column; align-items: center; }
.sdots li:not(:last-child)::after { content: ""; position: absolute; top: 13px; left: calc(50% + 14px); right: calc(-50% + 14px); height: 4px; background: #e6e9ef; border-radius: 4px; }
.sdots li.done:not(:last-child)::after { background: var(--orange); }
.sdots__c { position: relative; z-index: 1; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; border: 2px solid #dfe3ea; background: #fff; color: transparent; }
.sdots li.done .sdots__c { background: var(--orange); border-color: var(--orange); color: #fff; }
.sdots li.cur .sdots__c { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.sdots__l { font-size: .72rem; font-weight: 600; color: var(--muted); margin-top: 6px; }
.sdots li.cur .sdots__l { color: var(--navy-800); }
@media (max-width: 480px) { .sdots__l { display: none; } }
.sstep { border: 0; padding: 0; margin: 0; min-width: 0; }
.sstep[hidden] { display: none; }
.sstep__h { display: block; width: 100%; text-align: center; font-family: var(--ff-head); font-weight: 700; color: var(--navy-800); font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 0 0 22px; padding: 0; }
.sstep__h--sm { font-size: 1.3rem; margin-bottom: 6px; }
.zipbox { position: relative; max-width: 560px; margin: 0 auto; display: block; }
.zipbox input { width: 100%; min-height: 56px; padding: 0 170px 0 16px; border: 1px solid #cfd6e0; border-radius: 8px; background: #f7f9fb; font: inherit; font-size: 16px; }
.zipbox input:focus { outline: 0; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,90,20,.15); background: #fff; }
.zipbox .btn { position: absolute; right: 8px; top: 9px; }
.zipbox .err { margin-top: 6px; }
@media (max-width: 480px) { .zipbox input { padding-right: 16px; } .zipbox .btn { position: static; width: 100%; margin-top: 10px; } }
.snav { display: flex; align-items: center; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.snav--center { flex-direction: column; gap: 14px; }
.snav--split { justify-content: space-between; }
.snav__cancel, .snav__back { border: 0; background: none; color: var(--navy-800); font-weight: 600; text-decoration: none; padding: 8px; }
.snav__back:hover, .snav__cancel:hover { color: var(--orange-600); }
.req-note { font-size: .78rem; color: var(--muted); margin-bottom: 14px; }
.slabel { font-weight: 600; color: var(--navy-800); font-size: .95rem; margin-bottom: 10px; }
.ssub { font-size: 1.15rem; margin: 28px 0 4px; }
.svc-pick { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 700px) { .svc-pick { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.svc-opt { position: relative; }
.svc-opt input { position: absolute; opacity: 0; pointer-events: none; }
.svc-opt label { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; min-height: 110px; padding: 14px 8px; text-align: center; background: #fff; border: 1px solid #dfe3ea; border-radius: 6px; box-shadow: 0 3px 8px rgba(15,31,61,.08); font-size: .84rem; font-weight: 600; color: #1d2433; cursor: pointer; transition: .12s; }
.svc-opt label .ic { color: #1d2433; }
.svc-opt label:hover { border-color: #9fb0c8; }
.svc-opt input:checked + label { border: 2px solid var(--navy-800); background: #eef2f8; box-shadow: none; }
.svc-opt input:checked + label .ic { color: var(--navy-800); }
.svc-opt input:focus-visible + label { outline: 3px solid var(--orange); outline-offset: 2px; }
.svc-opt__tick { position: absolute; top: 6px; right: 6px; width: 18px; height: 18px; border-radius: 50%; background: var(--navy-800); color: #fff; display: none; place-items: center; }
.svc-opt input:checked + label .svc-opt__tick { display: grid; }
.err--group { display: none; color: #b42318; font-size: .85rem; margin: 8px 0 0; }
.sched__intro { max-width: 620px; margin: 0 auto 20px; font-size: .92rem; color: var(--ink-2); }
.sched__intro a { color: var(--orange-600); font-weight: 600; }
.cal { display: flex; align-items: center; gap: 8px; justify-content: center; }
.cal__nav { flex: none; display: flex; flex-direction: column; align-items: center; gap: 2px; border: 0; background: none; color: var(--navy-800); padding: 6px; }
.cal__nav small { font-size: .7rem; }
.cal__nav[disabled] { opacity: .3; cursor: default; }
.cal__grid { display: grid; grid-template-columns: repeat(var(--cols, 5), minmax(0, 1fr)); gap: 10px; flex: 1; max-width: 640px; }
.cal__d { text-align: center; margin: 0 0 8px; line-height: 1.2; }
.cal__d strong { display: block; color: var(--ink); font-size: .95rem; font-weight: 600; }
.cal__d small { color: var(--muted); font-size: .8rem; }
.cal__col { display: grid; gap: 10px; align-content: start; }
.slot { display: block; width: 100%; min-height: 40px; border-radius: 4px; border: 2px solid var(--navy-800); background: var(--navy-800); color: #fff; font-weight: 700; font-size: .82rem; transition: .12s; }
.slot:hover { background: var(--navy-600); border-color: var(--navy-600); }
.slot.is-on { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,90,20,.25); }
.slot--na { display: grid; place-items: center; background: #fff; border: 1px solid #c7cdd6; color: #9aa3b1; font-weight: 500; }
.cal__picked { font-weight: 700; color: var(--navy-800); min-height: 1.5em; margin: 14px 0 0; }
.visitbox { max-width: 560px; margin: 0 auto 26px; background: #edf1f6; border-radius: 16px; padding: 18px 22px; text-align: center; }
.visitbox h2 { font-size: 1.05rem; margin: 0 0 6px; }
.visitbox p { font-size: .9rem; margin: 0; }
.visitbox__appt { margin-top: 8px !important; color: var(--navy-800); }
.contact-grid { display: grid; gap: 26px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.25fr 1fr; gap: 40px; } }
.field--half { max-width: 50%; }
@media (max-width: 640px) { .field--half { max-width: none; } }
.row2--addr { grid-template-columns: 1.5fr 1fr; }
@media (max-width: 640px) { .row2--addr { grid-template-columns: 1fr; } }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .8rem; color: var(--ink-2); line-height: 1.45; margin: 8px 0 10px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--orange); flex: none; }
.consent a { color: var(--orange-600); }
.visit-card { background: #edf1f6; border-radius: 12px; padding: 12px 12px 18px; align-self: start; }
.visit-card img { width: 100%; border-radius: 8px; aspect-ratio: 16 / 10; object-fit: cover; margin-bottom: 12px; }
.visit-card h3 { font-size: 1rem; margin: 0 6px 6px; }
.visit-card p { font-size: .86rem; margin: 0 6px; }
.sched__done { text-align: center; padding: 20px 0; }
.sched__done > img { width: 150px; margin: 0 auto 10px; }
.sched__proof { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .8rem; font-style: italic; font-weight: 600; color: var(--navy-800); margin: 26px 0 0; text-align: center; }
.sched__proof img { width: 26px; height: 26px; }
.page-schedule .fox-ai { bottom: 22px; }
.phero__chip img { width: 44px !important; height: 44px; margin: 0 !important; max-width: none; }
.field { min-width: 0; }
.field input, .field select, .field textarea { width: 100%; max-width: 100%; min-width: 0; }
.field input[type=file] { padding: 10px; font-size: 14px; }

.review-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(min(100%,260px),1fr)); gap:20px; list-style:none; padding:0; }
.review-grid blockquote { margin:16px 0; }
/* ==========================================================
   Fix-It Fox AI assistant (v4) — compact, voice-enabled
   ========================================================== */
.fox-ai { position: fixed; right: 10px; bottom: 72px; z-index: 70; }
@media (min-width: 800px) { .fox-ai { right: 16px; bottom: 12px; } }
.page-schedule .fox-ai { bottom: 12px; }
.fox-ai__launch { position: relative; display: flex; align-items: flex-end; border: 0; background: none; padding: 0; cursor: pointer; }
.fox-ai__body { position: relative; width: 60px; filter: drop-shadow(0 8px 12px rgba(3,24,60,.28)); transition: transform .25s; transform-origin: 50% 100%; }
@media (min-width: 800px) { .fox-ai__body { width: 76px; } }
.fox-ai__mascot { width: 100%; height: auto; }
.fox-ai__launch:hover .fox-ai__body { transform: rotate(-5deg) scale(1.05); }
.fox-ai__ping { position: absolute; right: 4px; top: 16%; width: 12px; height: 12px; border-radius: 50%; background: #22c55e; border: 2px solid #fff; }
.fox-ai__ping::after { content: ""; position: absolute; inset: -2px; border-radius: 50%; background: #22c55e; animation: ffping 2s infinite; }
@keyframes ffping { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(2.6); opacity: 0; } }
.fox-ai__bubble { order: -1; position: relative; margin: 0 -8px 40% 0; display: flex; flex-direction: column; text-align: left; background: #fff; color: var(--navy-800); border: 2px solid var(--navy-800); border-radius: 14px 14px 4px 14px; padding: 7px 11px; box-shadow: var(--shadow); max-width: 190px; opacity: 0; transform: translateY(6px); transition: .35s; pointer-events: none; }
.fox-ai__bubble strong { font-family: var(--ff-head); font-size: .84rem; line-height: 1.2; }
.fox-ai__bubble span { font-size: .72rem; color: var(--ink-2); }
.fox-ai__bubble::after { content: ""; position: absolute; right: 8px; bottom: -9px; border: 6px solid transparent; border-top: 8px solid var(--navy-800); border-bottom: 0; }
.fox-ai.bubble-in:not(.bubble-off):not(.is-open) .fox-ai__bubble { opacity: 1; transform: none; }
.fox-ai.is-open .fox-ai__launch { opacity: 0; pointer-events: none; }
@media (max-width: 480px) { .fox-ai__bubble span { display: none; } }

.fox-ai__panel { position: fixed; z-index: 80; inset: 0; display: flex; background: #fff; overflow: hidden; }
.fox-ai__panel[hidden] { display: none; }
body.ai-lock { overflow: hidden; }
@media (min-width: 701px) {
  .fox-ai__panel { inset: auto 16px 16px auto; width: 380px; height: min(580px, calc(100vh - 32px)); border-radius: 20px; box-shadow: 0 24px 64px rgba(3,24,60,.34); animation: ffin .2s ease; }
  .fox-ai.is-wide .fox-ai__panel { inset: 24px; width: auto; height: auto; max-width: 1080px; margin-left: auto; }
  .fox-ai.is-wide::before { content: ""; position: fixed; inset: 0; z-index: 79; background: rgba(2,18,45,.5); }
}
@keyframes ffin { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
.fox-ai__side { display: none; }
.fox-ai.is-wide .fox-ai__side { display: flex; flex-direction: column; align-items: center; text-align: center; width: 270px; flex: none; padding: 26px 20px; background: radial-gradient(260px 200px at 50% 30%, #1a4a93, transparent 70%), linear-gradient(170deg, #0f3372, #04204f); color: #d5def0; }
@media (max-width: 900px) { .fox-ai.is-wide .fox-ai__side { display: none; } }
.fox-ai__side-fox { width: 170px; filter: drop-shadow(0 14px 22px rgba(0,0,0,.35)); }
.fox-ai__side h2 { color: #fff; margin: 10px 0 2px; font-size: 1.4rem; }
.fox-ai__side-role { color: #ffb792; font-weight: 600; font-size: .82rem; }
.fox-ai__side ul { display: grid; gap: 8px; margin: 14px 0; width: 100%; text-align: left; font-size: .86rem; }
.fox-ai__side li { display: flex; gap: 10px; align-items: center; background: rgba(255,255,255,.07); border-radius: 10px; padding: 9px 11px; }
.fox-ai__side li svg { color: var(--orange); flex: none; }
.fox-ai__side-note { margin-top: auto; font-size: .8rem; }
.fox-ai__side-note a { color: #ffb792; font-weight: 600; }
.fox-ai__main { position: relative; flex: 1; display: flex; flex-direction: column; min-width: 0; }
.fox-ai__hd { display: flex; align-items: center; gap: 8px; padding: 10px 10px 10px 12px; background: linear-gradient(120deg, #0f3372, var(--navy-900)); color: #fff; }
.fox-ai__hd > div { flex: 1; min-width: 0; line-height: 1.2; }
.fox-ai__hd strong { display: block; font-family: var(--ff-head); font-size: .98rem; }
.fox-ai__hd small { color: #c8d4ea; font-size: .72rem; display: inline-flex; align-items: center; gap: 6px; }
.fox-ai__dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.25); }
.fox-ai.is-listening .fox-ai__dot { background: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.3); animation: ffblink 1s infinite; }
.fox-ai.is-speaking .fox-ai__dot { background: var(--orange); box-shadow: 0 0 0 3px rgba(255,90,20,.3); }
@keyframes ffblink { 50% { opacity: .35; } }
.fox-ai__face { position: relative; flex: none; }
.fox-ai__avatar { width: 36px; height: 36px; background: #fff; border-radius: 50%; padding: 3px; object-fit: contain; transition: transform .2s; }
.fox-ai.is-speaking .fox-ai__avatar { animation: fftalk .35s infinite alternate; }
@keyframes fftalk { from { transform: scale(1) rotate(-2deg); } to { transform: scale(1.07) rotate(2deg); } }
.fox-ai__eq { position: absolute; right: -4px; bottom: -3px; display: none; gap: 1.5px; align-items: flex-end; height: 12px; background: var(--orange); border-radius: 6px; padding: 2px 3px; }
.fox-ai__eq i { width: 2px; background: #fff; border-radius: 2px; animation: ffeq .6s infinite alternate; }
.fox-ai__eq i:nth-child(2) { animation-delay: .2s; } .fox-ai__eq i:nth-child(3) { animation-delay: .4s; }
.fox-ai.is-speaking .fox-ai__eq, .fox-ai.is-listening .fox-ai__eq { display: flex; }
.fox-ai.is-listening .fox-ai__eq { background: #ef4444; }
@keyframes ffeq { from { height: 2px; } to { height: 8px; } }
.fox-ai__btn { flex: none; width: 32px; height: 32px; border: 0; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; }
.fox-ai__btn:hover { background: rgba(255,255,255,.22); }
.fox-ai__btn .spk-x { display: none; }
.fox-ai.is-muted [data-ai-mute] .spk-x { display: inline; } .fox-ai.is-muted [data-ai-mute] .spk-w { display: none; }
@media (max-width: 700px) { .fox-ai__btn--expand { display: none; } }
.fox-ai__tools { display: flex; gap: 4px; padding: 8px 8px; background: #fff; border-bottom: 1px solid var(--line); }
.fox-ai__tools > * { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 6px 2px; border: 0; background: none; border-radius: 10px; color: var(--navy-800); font-size: .7rem; font-weight: 600; text-decoration: none; transition: .15s; }
.fox-ai__tools > *:hover { background: var(--ice-2); }
.fox-ai__tools svg { color: var(--orange); }
.fox-ai__tools .is-talk { background: var(--peach-2); }
.fox-ai__tools .is-talk.on { background: var(--orange); color: #fff; } .fox-ai__tools .is-talk.on svg { color: #fff; }
.fox-ai__tools [hidden] { display: none; }
.fox-ai__log { flex: 1; overflow-y: auto; padding: 14px 12px; display: flex; flex-direction: column; gap: 10px; background: var(--bg-soft); }
.fox-ai.is-wide .fox-ai__log { padding: 22px clamp(16px, 4vw, 44px); }
.fox-ai__welcome { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; font-size: .88rem; color: var(--ink); }
.fox-ai__welcome p { margin: 0; }
.fox-ai__welcome[hidden] { display: none; }
.msg { display: flex; gap: 6px; align-items: flex-end; max-width: 100%; }
.msg__av { width: 24px; height: 24px; border-radius: 50%; background: #fff; padding: 2px; object-fit: contain; flex: none; box-shadow: var(--shadow-sm); }
.msg__b { max-width: min(86%, 620px); padding: 8px 12px; border-radius: 14px; font-size: .88rem; line-height: 1.45; }
.msg__b p { margin: 0 0 5px; } .msg__b p:last-child { margin: 0; }
.msg__b ul { list-style: disc; padding-left: 1.15em; margin: 3px 0 6px; }
.msg--bot .msg__b { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; color: var(--ink); }
.msg--me { justify-content: flex-end; }
.msg--me .msg__b { background: var(--navy-800); color: #fff; border-bottom-right-radius: 4px; }
.msg__b a { color: var(--orange-600); font-weight: 600; }
.msg--me .msg__b a { color: #ffd3bd; }
.msg__imgs { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 5px; }
.msg__imgs img { width: 84px; height: 84px; object-fit: cover; border-radius: 8px; }
.msg__note { opacity: .7; }
.typing { display: inline-flex; gap: 3px; margin-right: 6px; vertical-align: middle; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: fftype 1.2s infinite; }
.typing i:nth-child(2) { animation-delay: .15s; } .typing i:nth-child(3) { animation-delay: .3s; }
@keyframes fftype { 0%, 60%, 100% { transform: translateY(0); opacity: .45; } 30% { transform: translateY(-4px); opacity: 1; } }
.typing__t { color: var(--muted); font-size: .8rem; }
.bookcard { display: flex; gap: 10px; align-items: center; margin-top: 8px; padding: 10px; border-radius: 12px; background: linear-gradient(120deg, #ecfdf3, #fff); border: 1px solid #abefc6; }
.bookcard img { width: 42px; }
.bookcard div { display: flex; flex-direction: column; line-height: 1.3; }
.bookcard strong { color: #067647; font-family: var(--ff-head); font-size: .9rem; }
.bookcard span { font-size: .8rem; color: var(--ink); }
.bookcard small { color: var(--muted); font-size: .72rem; }
.fox-ai__voice { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: linear-gradient(120deg, #0f3372, #04204f); color: #fff; }
.fox-ai__voice[hidden] { display: none; }
.fox-ai__voice p { flex: 1; margin: 0; font-size: .82rem; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fox-ai__wave { display: flex; gap: 3px; align-items: center; height: 24px; }
.fox-ai__wave i { width: 3px; height: 6px; border-radius: 3px; background: #ffb792; }
.fox-ai.is-listening .fox-ai__wave i, .fox-ai.is-speaking .fox-ai__wave i { animation: ffwave .8s infinite ease-in-out alternate; }
.fox-ai.is-listening .fox-ai__wave i { background: #fca5a5; }
.fox-ai__wave i:nth-child(2n) { animation-delay: .15s; } .fox-ai__wave i:nth-child(3n) { animation-delay: .3s; } .fox-ai__wave i:nth-child(4n) { animation-delay: .45s; }
@keyframes ffwave { from { height: 4px; } to { height: 22px; } }
.fox-ai__voice-stop { border: 1px solid rgba(255,255,255,.4); background: none; color: #fff; border-radius: 99px; padding: 5px 10px; font-size: .72rem; font-weight: 600; white-space: nowrap; }
.fox-ai__chips { display: flex; flex-wrap: wrap; gap: 5px; padding: 7px 10px 0; background: #fff; }
.fox-ai__chips:empty { display: none; }
.fox-ai__chips button { border: 1px solid #f8c6ad; background: var(--peach-2); color: var(--orange-600); border-radius: 99px; padding: 5px 11px; font-size: .76rem; font-weight: 600; }
.fox-ai__chips button:hover { background: var(--peach); }
.fox-ai__form { padding: 8px 10px 4px; background: #fff; }
.fox-ai__thumbs { display: flex; gap: 6px; margin-bottom: 6px; }
.fox-ai__thumbs[hidden], .fox-ai__thumbs:empty { display: none; }
.fox-ai__thumb { position: relative; }
.fox-ai__thumb img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.fox-ai__thumb button { position: absolute; top: -6px; right: -6px; width: 20px; height: 20px; border-radius: 50%; border: 0; background: var(--navy-800); color: #fff; font-size: 13px; line-height: 1; }
.fox-ai__row { display: flex; align-items: flex-end; gap: 4px; border: 1.5px solid var(--line); border-radius: 14px; padding: 4px; transition: border-color .15s; }
.fox-ai__row:focus-within { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,90,20,.12); }
.fox-ai__attach, .fox-ai__mic { flex: none; width: 36px; height: 36px; border: 0; border-radius: 10px; display: grid; place-items: center; color: var(--navy-800); background: var(--ice-2); cursor: pointer; }
.fox-ai__attach:hover, .fox-ai__mic:hover { color: var(--orange-600); background: var(--peach); }
.fox-ai__mic.on { background: #ef4444; color: #fff; animation: ffpulse 1.2s infinite; }
@keyframes ffpulse { 0% { box-shadow: 0 0 0 0 rgba(239,68,68,.5); } 100% { box-shadow: 0 0 0 10px rgba(239,68,68,0); } }
.fox-ai__mic[hidden] { display: none; }
.fox-ai__attach input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.fox-ai__row textarea { flex: 1; min-width: 0; border: 0; outline: 0; resize: none; font: inherit; font-size: 16px; line-height: 1.35; padding: 7px 4px; max-height: 120px; background: transparent; }
.fox-ai__send { flex: none; width: 36px; height: 36px; border: 0; border-radius: 10px; background: var(--orange-grad); color: #fff; display: grid; place-items: center; }
.fox-ai__form.is-busy .fox-ai__send { opacity: .5; pointer-events: none; }
.fox-ai__note { font-size: .66rem; color: var(--muted); padding: 2px 12px 8px; margin: 0; background: #fff; text-align: center; }
.fox-ai__drop { position: absolute; inset: 0; z-index: 5; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: rgba(255,244,236,.94); border: 3px dashed var(--orange); color: var(--orange-600); font-family: var(--ff-head); }
.fox-ai__drop.on { display: flex; }

/* ==========================================================
   v5 — page-type heroes + new sections
   ========================================================== */
.hk { display: inline-flex; align-items: center; gap: 9px; font-family: var(--ff-head); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--navy-800); background: #fff; border: 1px solid var(--line); border-radius: 99px; padding: 6px 14px; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.hk__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,90,20,.18); }
.hk--light { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; box-shadow: none; }
.hk--white { background: #fff; color: var(--orange-600); border: 0; }
.hk--white .hk__dot { background: var(--navy-800); box-shadow: 0 0 0 4px rgba(11,37,82,.15); }
.linkish { border: 0; background: none; color: var(--orange-600); font-weight: 700; text-decoration: underline; padding: 0; }
[data-filter-hide][hidden] { display: none !important; }

/* 1 — service */
.hs { position: relative; overflow: hidden; background: radial-gradient(700px 420px at 90% 10%, #16478f 0%, rgba(22,71,143,0) 70%), linear-gradient(160deg, #0b2a5e, #03183f); color: #d5def0; padding: 40px 0 60px; }
.hs::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.07) 1.2px, transparent 1.4px); background-size: 22px 22px; mask-image: linear-gradient(90deg, #000, transparent 60%); -webkit-mask-image: linear-gradient(90deg, #000, transparent 60%); }
.hs__in-grid { position: relative; display: grid; gap: 40px; align-items: center; }
@media (min-width: 960px) { .hs { padding: 56px 0 76px; } .hs__in-grid { grid-template-columns: 1.05fr 1fr; gap: 56px; } }
.hs__tag { display: inline-flex; align-items: center; gap: 10px; color: #ffb792; font-weight: 700; font-size: .92rem; margin-bottom: 16px; }
.hs__ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--orange-grad); color: #fff; box-shadow: 0 8px 18px rgba(245,80,10,.35); }
.hs__h { color: #fff; font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.05; margin-bottom: 14px; }
.hs__in { display: block; color: var(--orange); }
.hs__lead { font-size: 1.08rem; max-width: 560px; color: #d5def0; }
.qb { display: flex; flex-wrap: wrap; gap: 8px; background: #fff; border-radius: 16px; padding: 8px; max-width: 560px; margin-top: 22px; box-shadow: 0 16px 40px rgba(0,0,0,.25); }
.qb__f { flex: 1 1 200px; display: flex; flex-direction: column; justify-content: center; padding: 2px 10px; }
.qb__l { font-size: .7rem; font-weight: 700; color: var(--orange-600); text-transform: uppercase; letter-spacing: .08em; }
.qb__f input { border: 0; outline: 0; font: inherit; font-size: 17px; color: var(--ink); padding: 2px 0; background: transparent; width: 100%; }
.qb .btn { flex: 1 1 200px; min-height: 54px; }
.hs__res { color: #fff; min-height: 1.4em; }
.hs__res.ok { color: #86efac; } .hs__res.no { color: #fdba74; }
.hs__checks { display: flex; flex-wrap: wrap; gap: 8px 22px; font-weight: 600; font-size: .9rem; color: #fff; }
.hs__checks li { display: inline-flex; align-items: center; gap: 6px; } .hs__checks .ic { color: var(--orange); }
.hs__media { position: relative; }
.hs__frame { position: relative; border-radius: 26px; overflow: hidden; aspect-ratio: 5 / 4; box-shadow: 0 30px 60px rgba(0,0,0,.35); }
.hs__frame::after { content: ""; position: absolute; inset: 0; border-radius: 26px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.15); }
.hs__media::before { content: ""; position: absolute; inset: 18px -14px -14px 18px; border: 3px solid var(--orange); border-radius: 28px; }
.hs__frame img { width: 100%; height: 100%; object-fit: cover; }
.hs__call { position: absolute; left: -12px; bottom: 26px; display: flex; align-items: center; gap: 10px; background: #fff; color: var(--navy-800); border-radius: 14px; padding: 10px 14px; box-shadow: var(--shadow-lg); text-decoration: none; font-family: var(--ff-head); font-weight: 700; }
.hs__call .ic { color: var(--orange); } .hs__call small { display: block; font-family: var(--ff-body); font-weight: 500; font-size: .72rem; color: var(--muted); }
.hs__fox { position: absolute; right: -6px; bottom: -34px; width: 104px; filter: drop-shadow(0 10px 16px rgba(0,0,0,.35)); }
@media (max-width: 600px) { .hs__fox { width: 76px; right: 4px; } .hs__call { left: 8px; } }

/* 2 — services hub */
.hh { background: linear-gradient(180deg, #fff, var(--ice-2)); padding: 48px 0 60px; }
.hh__grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 960px) { .hh__grid { grid-template-columns: 1fr 1.05fr; gap: 56px; } }
.hh__h { font-size: clamp(2.3rem, 5.5vw, 3.8rem); font-weight: 800; line-height: 1.02; }
.hh__lead { font-size: 1.08rem; max-width: 520px; }
.hh__tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hh__tiles a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; aspect-ratio: 1; padding: 10px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 20px; text-decoration: none; font-weight: 700; font-size: .86rem; color: var(--navy-800); box-shadow: var(--shadow-sm); transition: .18s; }
.hh__tiles a span { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; background: var(--peach); color: var(--orange); transition: .18s; }
.hh__tiles li:nth-child(even) a span { background: var(--ice); color: var(--navy-700); }
.hh__tiles a:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--orange); }
.hh__tiles a:hover span { background: var(--orange); color: #fff; }
@media (max-width: 480px) { .hh__tiles a { font-size: .74rem; border-radius: 14px; } .hh__tiles a span { width: 42px; height: 42px; } }

/* 3 — location */
.hl { position: relative; padding: 44px 0 34px; background-color: #f4f7fb; background-image: linear-gradient(rgba(11,37,82,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(11,37,82,.05) 1px, transparent 1px); background-size: 34px 34px; }
.hl__grid { display: grid; gap: 34px; align-items: center; }
@media (min-width: 960px) { .hl__grid { grid-template-columns: 1.1fr 1fr; gap: 50px; } }
.hl__h { font-size: clamp(2.2rem, 5.2vw, 3.5rem); font-weight: 800; line-height: 1.04; }
.hl__lead { font-size: 1.05rem; max-width: 560px; }
.hl__areas { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.hl__areas li { background: #fff; border: 1px solid var(--line); border-radius: 99px; padding: 5px 12px; font-size: .82rem; font-weight: 600; color: var(--navy-800); }
.hl__media { position: relative; max-width: 480px; margin: 0 auto; width: 100%; }
.hl__circle { aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 10px solid #fff; box-shadow: 0 0 0 4px var(--orange), var(--shadow-lg); }
.hl__circle img { width: 100%; height: 100%; object-fit: cover; }
.hl__map { position: absolute; left: -14px; bottom: -10px; width: 46%; background: #fff; border-radius: 18px; padding: 8px; box-shadow: var(--shadow-lg); }
.hl__map .smap { width: 100%; }
.hl__pin { position: absolute; top: -12px; right: -8px; display: inline-flex; align-items: center; gap: 4px; background: var(--navy-800); color: #fff; font-size: .74rem; font-weight: 700; border-radius: 99px; padding: 5px 10px; }
.hl__facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 34px; }
@media (min-width: 900px) { .hl__facts { grid-template-columns: repeat(4, 1fr); } }
.hl__facts li { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 16px; padding: 14px 16px; box-shadow: var(--shadow-sm); }
.hl__facts .ic { color: var(--orange); flex: none; }
.hl__facts strong { display: block; color: var(--navy-800); font-family: var(--ff-head); font-size: .98rem; }
.hl__facts small { color: var(--muted); font-size: .76rem; }

/* 4 — areas hub */
.ha { background: linear-gradient(150deg, #0f3372, #03183f); color: #d5def0; padding: 48px 0 60px; overflow: hidden; }
.ha__grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 960px) { .ha__grid { grid-template-columns: 1.05fr 1fr; gap: 56px; } }
.ha__h { color: #fff; font-size: clamp(2.2rem, 5.2vw, 3.5rem); font-weight: 800; line-height: 1.04; }
.ha__lead { font-size: 1.06rem; max-width: 540px; }
.ha__zip { display: flex; flex-wrap: wrap; gap: 10px; max-width: 540px; }
.ha__zip .btn { flex: 1 1 180px; min-height: 56px; }
.ha .zip__result { color: #fff; } .ha .zip__result.ok { color: #86efac; }
.ha__stats { display: flex; gap: 28px; margin-top: 18px; }
.ha__stats strong { display: block; font-family: var(--ff-head); font-size: 2rem; color: #fff; line-height: 1; }
.ha__stats span { font-size: .8rem; }
.ha__map { position: relative; background: #fff; border-radius: 28px; padding: 22px 22px 10px; box-shadow: 0 30px 60px rgba(0,0,0,.3); }
.ha__map .smap { width: 100%; }
.ha__fox { position: absolute; right: -10px; bottom: -20px; width: 120px; }

/* 5 — about */
.hab { position: relative; background: var(--navy-900); color: #fff; padding: 120px 0 0; overflow: hidden; }
.hab__bg { position: absolute; inset: 0; }
.hab__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hab::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(3,24,63,.25) 0%, rgba(3,24,63,.55) 45%, rgba(3,24,63,.96) 100%); }
.hab__copy { position: relative; z-index: 2; text-align: center; max-width: 860px; }
@media (min-width: 900px) { .hab { padding-top: 240px; } }
.hab__h { color: #fff; font-size: clamp(2.5rem, 6.5vw, 4.6rem); font-weight: 800; line-height: 1; }
.hab__lead { font-size: 1.12rem; color: #e1e8f5; max-width: 680px; margin: 0 auto; }
.hab__stats { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(2, 1fr); background: #fff; border-radius: 22px 22px 0 0; margin-top: 40px; box-shadow: 0 -10px 40px rgba(0,0,0,.18); }
@media (min-width: 800px) { .hab__stats { grid-template-columns: repeat(4, 1fr); } }
.hab__stats li { padding: 22px 16px; text-align: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hab__stats strong { display: block; font-family: var(--ff-head); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--orange); line-height: 1.05; }
.hab__stats span { color: var(--navy-800); font-weight: 600; font-size: .86rem; }

/* 6 — team */
.ht { background: radial-gradient(700px 400px at 50% 100%, #1a4a93 0%, rgba(26,74,147,0) 70%), linear-gradient(180deg, #0b2a5e, #03183f); color: #d5def0; padding: 52px 0 64px; overflow: hidden; }
.ht__in { text-align: center; }
.ht__h { color: #fff; font-size: clamp(2.3rem, 5.5vw, 3.8rem); font-weight: 800; line-height: 1.04; }
.ht__lead { max-width: 620px; margin: 0 auto 30px; font-size: 1.06rem; }
.ht__mosaic { display: grid; gap: 18px; align-items: center; }
@media (min-width: 900px) { .ht__mosaic { grid-template-columns: 1fr 240px 1fr; } }
.ht__faces { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.ht__faces li { width: 74px; height: 74px; border-radius: 50%; overflow: hidden; border: 3px solid rgba(255,255,255,.9); box-shadow: 0 8px 18px rgba(0,0,0,.3); transition: transform .2s; }
.ht__faces li:nth-child(3n) { border-color: var(--orange); }
.ht__faces li:hover { transform: translateY(-4px) scale(1.06); }
.ht__faces img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) { .ht__faces li { width: 88px; height: 88px; } .ht__faces li:nth-child(even) { margin-top: 26px; } }
.ht__sheriff { position: relative; order: -1; }
@media (min-width: 900px) { .ht__sheriff { order: 0; } }
.ht__sheriff > img { width: 170px; margin: 0 auto; filter: drop-shadow(0 16px 26px rgba(0,0,0,.4)); }
.ht__star { position: absolute; left: 50%; top: 50%; transform: translate(-6px, -4px) rotate(-12deg); }
.ht__sheriff p { margin: 6px 0 0; } .ht__sheriff strong { display: block; color: #fff; font-family: var(--ff-head); } .ht__sheriff small { color: #ffb792; font-weight: 700; }

/* 7 — blog */
.hb { position: relative; background: linear-gradient(180deg, #fff6ef, #fff); padding: 54px 0 40px; overflow: hidden; }
.hb::before { content: ""; position: absolute; left: -120px; top: -120px; width: 340px; height: 340px; border-radius: 50%; background: rgba(255,90,20,.08); }
.hb__in { position: relative; text-align: center; max-width: 860px; }
.hb__h { font-size: clamp(2.3rem, 5.5vw, 3.8rem); font-weight: 800; line-height: 1.04; }
.hb__h .c-orange { display: block; }
.hb__lead { font-size: 1.08rem; max-width: 600px; margin: 0 auto 24px; }
.hb__filter { flex-direction: column; justify-content: center; margin: 0; }
.hb__filter .chips { justify-content: center; flex-wrap: wrap; overflow: visible; }
.search--lg { max-width: 620px; width: 100%; margin: 0 auto; border-radius: 16px; padding: 4px 18px; box-shadow: var(--shadow); }
.search--lg input { min-height: 56px; font-size: 17px; }
.hb__latest { margin: 18px 0 0; font-size: .9rem; }
.hb__latest a { color: var(--navy-800); font-weight: 700; }
.hb__fox { position: absolute; right: 3%; bottom: -8px; width: 150px; display: none; }
@media (min-width: 1100px) { .hb__fox { display: block; } }
.blog-list-h { margin: 34px 0 0; font-size: 1.4rem; }

/* 8 — careers */
.hc { background: linear-gradient(135deg, #ff6b1f 0%, #f04a06 60%, #d93d00 100%); color: #fff; padding: 52px 0 64px; overflow: hidden; }
.hc__grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 960px) { .hc__grid { grid-template-columns: 1fr 1.05fr; gap: 56px; } }
.hc__h { color: #fff; font-size: clamp(2.5rem, 6vw, 4.2rem); font-weight: 800; line-height: 1; }
.hc__lead { font-size: 1.1rem; color: #fff1e8; max-width: 520px; }
.hc__collage { position: relative; min-height: 340px; }
.hc__p { position: absolute; border-radius: 20px; overflow: hidden; border: 6px solid #fff; box-shadow: 0 24px 50px rgba(80,20,0,.35); }
.hc__p img { width: 100%; height: 100%; object-fit: cover; }
.hc__p--1 { left: 0; top: 0; width: 76%; aspect-ratio: 16 / 10; transform: rotate(-3deg); }
.hc__p--2 { right: 0; top: 34%; width: 44%; aspect-ratio: 1; transform: rotate(4deg); }
.hc__p--3 { left: 16%; bottom: 0; width: 40%; aspect-ratio: 4 / 3; transform: rotate(2deg); }
@media (min-width: 960px) { .hc__collage { min-height: 440px; } }

/* 9 — property management */
.hp { background: linear-gradient(160deg, #0b2a5e, #021232); color: #d5def0; padding: 52px 0 64px; overflow: hidden; }
.hp__grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 960px) { .hp__grid { grid-template-columns: 1.05fr .95fr; gap: 56px; } }
.hp__h { color: #fff; font-size: clamp(2.1rem, 5vw, 3.3rem); font-weight: 800; line-height: 1.06; }
.hp__lead { font-size: 1.06rem; max-width: 560px; }
.hp__card { position: relative; background: #fff; color: var(--ink); border-radius: 22px; padding: 16px; box-shadow: 0 30px 70px rgba(0,0,0,.4); max-width: 460px; margin: 0 auto; transform: rotate(1.5deg); }
.hp__card-hd { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-weight: 700; color: var(--navy-800); font-size: .9rem; margin-bottom: 12px; }
.hp__card-hd span { display: inline-flex; align-items: center; gap: 6px; } .hp__card-hd .ic { color: var(--orange); }
.hp__pill { background: #dcfce7; color: #166534; border-radius: 99px; padding: 4px 10px; font-size: .74rem; }
.hp__photo { border-radius: 14px; overflow: hidden; aspect-ratio: 16 / 8; margin-bottom: 12px; }
.hp__photo img { width: 100%; height: 100%; object-fit: cover; }
.hp__card ul { display: grid; gap: 8px; }
.hp__card li { display: flex; gap: 8px; align-items: center; font-size: .9rem; padding: 8px 10px; border-radius: 10px; background: var(--bg-soft); }
.hp__card li .ic { color: #16a34a; }
.hp__card-ft { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 12px; font-size: .78rem; color: var(--muted); }
.hp__card-ft span { display: inline-flex; align-items: center; gap: 5px; }
.hp__ex { position: absolute; top: -12px; left: 16px; margin: 0; background: var(--orange); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; border-radius: 99px; padding: 3px 10px; }

/* 10 — contact */
.hco { background: linear-gradient(180deg, #fff, var(--ice-2)); padding: 48px 0 60px; }
.hco__grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 960px) { .hco__grid { grid-template-columns: 1.1fr .9fr; gap: 50px; } }
.hco__h { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; line-height: 1; }
.hco__lead { font-size: 1.08rem; }
.hco__tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 18px; }
.hco__tiles > * { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 16px; text-align: left; text-decoration: none; color: var(--navy-800); box-shadow: var(--shadow-sm); transition: .18s; font: inherit; }
.hco__tiles > *:hover { transform: translateY(-3px); border-color: var(--orange); box-shadow: var(--shadow); }
.hco__tiles .circ { width: 46px; height: 46px; margin-bottom: 6px; }
.hco__tiles strong { font-family: var(--ff-head); } .hco__tiles small { color: var(--muted); font-size: .8rem; }
.hco__media img { width: 100%; border-radius: 28px; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; object-fit: cover; }
@media (max-width: 959px) { .hco__media img { aspect-ratio: 16 / 10; } }

/* 11 — centered (faq / reviews) */
.hce { position: relative; padding: 56px 0 50px; overflow: hidden; text-align: center; }
.hce--soft { background: radial-gradient(600px 300px at 50% 0%, var(--peach) 0%, rgba(253,236,224,0) 70%), #fff; }
.hce--navy { background: radial-gradient(700px 400px at 50% 0%, #1a4a93 0%, rgba(26,74,147,0) 70%), linear-gradient(180deg, #0b2a5e, #03183f); color: #d5def0; }
.hce--navy .hce__h { color: #fff; }
.hce__in { position: relative; max-width: 820px; }
.hce__h { font-size: clamp(2.3rem, 5.5vw, 3.8rem); font-weight: 800; line-height: 1.04; }
.hce__lead { font-size: 1.08rem; max-width: 620px; margin: 0 auto 22px; }
.hce__btns { justify-content: center; }
.hce__none { margin-top: 12px; }
.hce__fox { position: absolute; right: 4%; bottom: -10px; width: 130px; display: none; }
@media (min-width: 1100px) { .hce__fox { display: block; } }
.faq[hidden], .faq__item[hidden] { display: none; }

/* 12 — projects gallery */
.hg { background: linear-gradient(180deg, #fff, var(--ice-2)); padding: 48px 0 60px; overflow: hidden; }
.hg__grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 960px) { .hg__grid { grid-template-columns: .95fr 1.05fr; gap: 50px; } }
.hg__h { font-size: clamp(2.2rem, 5.2vw, 3.5rem); font-weight: 800; line-height: 1.04; }
.hg__lead { font-size: 1.06rem; max-width: 500px; }
.hg__mosaic { display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: 150px 150px 150px; gap: 12px; }
.hg__m { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.hg__m img { width: 100%; height: 100%; object-fit: cover; }
.hg__m--1 { grid-row: 1 / 3; } .hg__m--2 { grid-row: 1 / 2; } .hg__m--3 { grid-row: 2 / 4; } .hg__m--4 { grid-row: 3 / 4; grid-column: 1; }
@media (max-width: 600px) { .hg__mosaic { grid-template-rows: 110px 110px 110px; } }

/* ---------- shared new sections ---------- */
.fcta { background: linear-gradient(120deg, #ff6b1f, #f04a06); color: #fff; padding: 34px 0; overflow: hidden; }
.fcta__in { display: grid; gap: 18px; align-items: center; text-align: center; }
@media (min-width: 900px) { .fcta__in { grid-template-columns: 170px 1fr auto; text-align: left; } }
.fcta__fox { width: 130px; margin: -10px auto -34px; filter: drop-shadow(0 12px 18px rgba(80,20,0,.35)); }
@media (min-width: 900px) { .fcta__fox { width: 160px; margin: -30px 0 -60px; } }
.fcta__h { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: 4px; }
.fcta p { margin: 0; color: #fff1e8; }
.fcta__btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.vday { background: #fff; }
.vday__line { display: grid; gap: 16px; margin-top: 30px; position: relative; }
@media (min-width: 900px) { .vday__line { grid-template-columns: repeat(5, 1fr); } .vday__line::before { content: ""; position: absolute; left: 10%; right: 10%; top: 27px; height: 3px; background: repeating-linear-gradient(90deg, var(--orange) 0 10px, transparent 10px 18px); } }
.vday__line li { position: relative; text-align: center; padding: 0 6px; }
.vday__ic { position: relative; z-index: 1; display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 12px; border-radius: 50%; background: #fff; border: 3px solid var(--orange); color: var(--orange); box-shadow: var(--shadow-sm); }
.vday__line li:nth-child(even) .vday__ic { border-color: var(--navy-800); color: var(--navy-800); }
.vday h3 { font-size: 1.02rem; margin-bottom: 4px; }
.vday p { font-size: .88rem; margin: 0; color: var(--muted); }
.values__grid { display: grid; gap: 16px; margin-top: 28px; }
@media (min-width: 800px) { .values__grid { grid-template-columns: repeat(4, 1fr); } }
.values__c { position: relative; border-radius: 22px; padding: 26px 22px; overflow: hidden; }
.values__c--light { background: var(--ice-2); color: var(--ink-2); }
.values__c--navy { background: linear-gradient(160deg, #0f3372, #04204f); color: #d5def0; }
.values__c--navy h3 { color: #fff; }
.values__c .ic { color: var(--orange); margin-bottom: 12px; }
.values__c h3 { font-size: 1.12rem; margin-bottom: 6px; }
.values__c p { margin: 0; font-size: .92rem; }
.values__n { position: absolute; right: 16px; top: 10px; font-family: var(--ff-head); font-weight: 800; font-size: 2.6rem; opacity: .1; }
.promise { background: var(--peach-2); padding: 50px 0; }
.promise__in { display: grid; gap: 20px; align-items: center; max-width: 980px; }
@media (min-width: 800px) { .promise__in { grid-template-columns: 200px 1fr; gap: 40px; } }
.promise__fox { width: 170px; margin: 0 auto; }
.promise blockquote { margin: 0; }
.promise blockquote p { font-family: var(--ff-head); font-weight: 700; font-size: clamp(1.3rem, 2.8vw, 1.9rem); color: var(--navy-800); line-height: 1.3; }
.promise cite { color: var(--orange-600); font-style: normal; font-weight: 700; }
.hb__filter .search { flex: none; } .hb__filter { gap: 16px; }
@media (max-width: 899px) { .hab::before { background: linear-gradient(180deg, rgba(3,24,63,.55) 0%, rgba(3,24,63,.82) 40%, rgba(3,24,63,.97) 100%); } }
/* smart forms */
.addr-list { position: absolute; left: 0; right: 0; top: 100%; z-index: 30; margin-top: 4px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg); overflow: hidden; }
.addr-list[hidden] { display: none; }
.addr-list li { display: flex; flex-direction: column; padding: 10px 14px; cursor: pointer; border-bottom: 1px solid var(--line); }
.addr-list li:last-child { border: 0; }
.addr-list li:hover, .addr-list li.on { background: var(--peach-2); }
.addr-list strong { color: var(--navy-800); font-size: .92rem; } .addr-list small { color: var(--muted); font-size: .78rem; }
.email-hint { border: 0; background: none; padding: 4px 0 0; color: var(--orange-600); font-weight: 600; font-size: .82rem; text-align: left; text-decoration: underline; cursor: pointer; }
.email-hint[hidden] { display: none; }
.row2--city { grid-template-columns: 2fr 1fr; }
.h4-inline { font: inherit; font-weight: 500; color: inherit; margin: 0; letter-spacing: 0; }
.near { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 6px 14px; margin: 10px 0 20px; }
.prose .near { list-style: none; padding: 0; }
.near a { display: inline-flex; align-items: center; gap: 6px; font-size: .9rem; font-weight: 600; color: var(--navy-800) !important; text-decoration: none; }
.near a:hover { color: var(--orange-600) !important; }
.near .ic { color: var(--orange); flex: none; }
.svc-cat { font-size: 1.4rem; margin: 42px 0 0; padding-bottom: 8px; border-bottom: 2px solid var(--line); }
@media (min-width: 1100px) {
  .mega { width: min(1060px, 94vw); left: 50%; transform: translate(-50%, 6px); }
  .nav__item:hover > .mega, .nav__item:focus-within > .mega { transform: translate(-50%, 0); }
  .has-mega { position: static !important; }
  .mega__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px 18px; }
  .mega__all { grid-column: 1 / -1; }
}
.mega__h { font-family: var(--ff-head); font-weight: 700; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-600); margin: 4px 10px 4px; }
.mega__col a { padding: 6px 10px !important; font-size: .88rem !important; }
.loc-cat { font-size: 1rem !important; margin: 16px 0 4px !important; color: var(--orange-600) !important; }

/* reviews (v2) */
.revw__muted { color: var(--muted); font-size: .95rem; }
.rcard__av { color: #fff; font-weight: 700; font-family: var(--ff-head); font-size: 1rem; }
.rcard__av--img { object-fit: cover; padding: 0; }
.rcard.open p { -webkit-line-clamp: unset; display: block; }
button.rcard__more { border: 0; background: none; padding: 0; text-align: left; cursor: pointer; font: inherit; color: var(--link-blue); font-size: .9rem; font-weight: 500; }
.rcard--sample { border-style: dashed; background: #fbfcfe; }
.rcard--sample strong { color: var(--muted) !important; }
.revw__note { font-size: .8rem; color: var(--muted); text-align: center; margin: 0; }

/* reels */
.reels { padding: 64px 0; background: linear-gradient(180deg, #fff, var(--ice-2)); overflow: hidden; }
.reels__hd { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 22px; }
.reels__hd p { margin: 0; color: var(--muted); max-width: 560px; }
.reels__hd .h-lg { margin-bottom: 6px; }
.reels__nav { display: none; gap: 8px; }
.reels__nav .car-btn { position: static; }
@media (min-width: 800px) { .reels__nav { display: flex; } }
.reels__track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(170px, 42%); gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 4px 2px 12px; margin-right: calc(-1 * var(--gutter)); }
.reels__track::-webkit-scrollbar { display: none; }
@media (min-width: 700px) { .reels__track { grid-auto-columns: 220px; margin-right: 0; } }
.reel { scroll-snap-align: start; }
.reel__btn { position: relative; display: block; width: 100%; aspect-ratio: 9 / 16; border: 0; padding: 0; border-radius: 20px; overflow: hidden; background: var(--navy-900); cursor: pointer; box-shadow: var(--shadow); transition: transform .2s; }
.reel__btn:hover { transform: translateY(-4px); }
.reel__btn img { width: 100%; height: 100%; object-fit: cover; }
.reel__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, transparent 30%, transparent 55%, rgba(2,18,45,.9) 100%); }
.reel__ba { position: absolute; top: 12px; left: 12px; display: inline-flex; align-items: center; gap: 5px; background: rgba(255,255,255,.95); color: var(--navy-800); border-radius: 99px; padding: 4px 10px; font-size: .7rem; }
.reel__ba b:last-child { color: var(--orange-600); }
.reel__play { position: absolute; left: 50%; top: 44%; transform: translate(-50%, -50%); width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.2); backdrop-filter: blur(4px); color: #fff; border: 2px solid rgba(255,255,255,.8); padding-left: 4px; }
.reel__meta { position: absolute; left: 12px; right: 12px; bottom: 14px; text-align: left; color: #fff; }
.reel__meta strong { display: block; font-family: var(--ff-head); font-size: .95rem; line-height: 1.2; }
.reel__meta small { display: inline-flex; align-items: center; gap: 4px; font-size: .75rem; opacity: .85; }
.reel__soon { position: absolute; top: 12px; right: 12px; background: var(--orange); color: #fff; font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; border-radius: 99px; padding: 3px 8px; }
.reel__ba + .reel__play + .reel__meta + .reel__soon { top: 42px; left: 12px; right: auto; }
.rv { position: fixed; inset: 0; z-index: 120; background: #000; }
.rv[hidden] { display: none; }
.rv__feed { height: 100%; overflow-y: auto; scroll-snap-type: y mandatory; scrollbar-width: none; }
.rv__feed::-webkit-scrollbar { display: none; }
.rv__item { position: relative; height: 100%; scroll-snap-align: start; display: grid; place-items: center; }
.rv__item video, .rv__item > img { height: 100%; max-width: 100%; aspect-ratio: 9 / 16; object-fit: cover; }
.rv__soon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(0,0,0,.6); color: #fff; padding: 10px 18px; border-radius: 99px; font-weight: 700; }
.rv__meta { position: absolute; left: 50%; bottom: 90px; transform: translateX(-50%); width: min(92%, 420px); color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.6); }
.rv__meta h3 { color: #fff; font-size: 1.2rem; margin: 6px 0 2px; }
.rv__meta p { margin: 0 0 4px; font-size: .9rem; }
.rv__meta a { color: #ffb792; font-weight: 700; }
.rv__ba { display: inline-block; background: var(--orange); border-radius: 99px; padding: 3px 10px; font-size: .75rem; font-weight: 700; text-shadow: none; }
.rv__x, .rv__snd { position: absolute; top: 16px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255,255,255,.18); color: #fff; display: grid; place-items: center; font-size: 20px; z-index: 2; }
.rv__x { right: 16px; } .rv__snd { right: 72px; }
.rv__cta { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 2; }
/* Diana avatar */
.fox-ai__avatar--d { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; padding: 0; background: linear-gradient(135deg, #ff7a2e, #e94a06); color: #fff; font-family: var(--ff-head); font-weight: 800; font-size: 1.05rem; border: 2px solid #fff; }
.fox-ai__badge { position: absolute; left: -6px; bottom: -4px; width: 20px; height: 20px; background: #fff; border-radius: 50%; padding: 1px; object-fit: contain; box-shadow: 0 1px 3px rgba(0,0,0,.3); }
.msg__av--d { display: grid; place-items: center; background: linear-gradient(135deg, #ff7a2e, #e94a06) !important; color: #fff; font-family: var(--ff-head); font-weight: 800; font-size: .72rem; }
.ftr__h, .modal__h, .fox-ai__side-name { font-family: var(--ff-head); line-height: 1.15; }
.ftr__h { color: #fff; font-size: 1rem; font-weight: 700; margin: 0 0 14px; }
.modal__h { color: var(--navy-800); }
.fox-ai__side-name { color: #fff; margin: 10px 0 2px; font-size: 1.4rem; font-weight: 700; }
.smap-grid { display: grid; gap: 28px; margin-top: 24px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.smap-col h2 { font-size: 1.1rem; border-bottom: 2px solid var(--orange); padding-bottom: 6px; }
.smap-col li { margin: 6px 0; } .smap-col a { color: var(--navy-800); text-decoration: none; } .smap-col a:hover { color: var(--orange-600); text-decoration: underline; }
.real-projects__grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:28px; margin:28px 0; }
.real-project { min-width:0; background:#fff; border:1px solid var(--line); border-radius:18px; overflow:hidden; }
.real-project__copy { padding:24px 24px 12px; }
.real-project__copy h3 { margin:0 0 10px; }
.real-project__copy h3 a { color:var(--navy-800); text-decoration:none; }
.real-project__status { color:var(--orange-600); font-size:.8rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; }
.project-photos { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin:24px 0; align-items:start; }
.project-photos figure { margin:0; min-width:0; background:var(--ice); border-radius:12px; overflow:hidden; }
.project-photos img { display:block; width:100%; height:auto; }
.project-photos figcaption { padding:12px; background:var(--navy-800); color:#fff; font-weight:700; text-align:center; }
.project-photos--single { grid-template-columns:minmax(0,1fr); max-width:640px; margin-inline:auto; }
.real-project .project-photos { margin:12px; }
.real-project__link { display:inline-block; margin:8px 24px 24px; font-weight:700; }
@media(max-width:700px) { .real-projects__grid { grid-template-columns:1fr; } .real-project__copy { padding:20px 16px 8px; } }
@media(max-width:420px) { .project-photos { gap:6px; } .project-photos figcaption { font-size:.8rem; padding:10px 4px; } }

/* Property manager onboarding and work order forms */
.pmf { background: #fff; padding: 0; position: relative; z-index: 2; }
.pmf__steps { display: grid; gap: 12px; margin-top: -34px; }
@media (min-width: 860px) { .pmf__steps { grid-template-columns: repeat(3, 1fr); } }
.pmf__steps a { position: relative; display: flex; flex-direction: column; gap: 6px; height: 100%; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); text-decoration: none; color: var(--ink-2); transition: .18s; }
.pmf__steps a:hover { transform: translateY(-3px); border-color: var(--orange); }
.pmf__steps .is-on a { border: 2px solid var(--orange); background: var(--peach-2); }
.pmf__n { position: absolute; right: 16px; top: 12px; font-family: var(--ff-head); font-weight: 800; font-size: 1.8rem; color: var(--navy-800); opacity: .12; }
.pmf__ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--navy-800); color: #fff; }
.pmf__steps .is-on .pmf__ic { background: var(--orange); }
.pmf__steps strong { font-family: var(--ff-head); color: var(--navy-800); font-size: 1.08rem; }
.pmf__steps small { font-size: .86rem; }
.pmf__steps em { font-style: normal; font-weight: 700; color: var(--orange-600); font-size: .88rem; display: inline-flex; align-items: center; gap: 4px; margin-top: auto; }
.pmf-aside { display: grid; gap: 16px; align-content: start; }
.pmf-aside img { border-radius: 18px; width: 100%; }
.wo-h { font-size: 1.05rem; margin: 18px 0 10px; padding-top: 14px; border-top: 1px solid var(--line); }
.stack .wo-h:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.wo-emergency { display: flex; gap: 12px; align-items: flex-start; background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; border-radius: 14px; padding: 14px 16px; margin-bottom: 16px; }
.wo-emergency[hidden] { display: none; }
.wo-emergency a { color: #991b1b; font-weight: 800; }
.wo-flow { display: grid; gap: 10px; }
.wo-flow li { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; }
.wo-flow .ic { color: var(--orange); flex: none; margin-top: 2px; }
.wo-flow strong { display: block; color: var(--navy-800); }
.wo-flow small { color: var(--muted); }
.checks-grid { border: 0; padding: 0; margin: 0 0 16px; display: grid; gap: 8px; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.checks-grid legend { font-weight: 600; color: var(--navy-800); font-size: .92rem; margin-bottom: 8px; padding: 0; }
.checks-grid label { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; font-size: .9rem; cursor: pointer; }
.checks-grid input { accent-color: var(--orange); width: 17px; height: 17px; }
