/* ==========================================================================
   Legacy Cleaning — site styles
   Headings: Poppins Bold · Body: Lato · Accent: Bebas Neue
   Brand: #324158 navy · #FFFFFF · accent #0ca9d5 · backup accent #FFBD59
   ========================================================================== */

:root {
  --navy: #324158;
  --navy-deep: #253247;
  --navy-ink: #1b2536;
  --white: #ffffff;
  --accent: #0ca9d5;
  --accent-ink: #0779a0;      /* accent darkened for text/links on white (AA) */
  --accent-soft: #e3f5fb;
  --gold: #ffbd59;
  --gold-soft: #fff4e2;
  --mist: #f4f7fa;
  --line: #dfe6ed;
  --text: #324158;
  --text-muted: #5a6780;
  --on-dark-muted: #c3cddb;

  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Lato', system-ui, sans-serif;
  --font-accent: 'Bebas Neue', 'Oswald', Impact, sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 18px 40px -18px rgba(27, 37, 54, .35);
  --shadow-sm: 0 6px 18px -8px rgba(27, 37, 54, .25);
  --container: 1180px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-y: clamp(56px, 8vw, 96px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
img { height: auto; }
a { color: var(--accent-ink); text-underline-offset: 3px; }
a:hover { color: var(--navy); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  margin: 0 0 .6em;
  letter-spacing: -.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.3rem); }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm); }
.skip-link:focus { top: 12px; color: #fff; }

.icon { width: 1.1em; height: 1.1em; flex: none; }

/* ---------- Accent type ---------- */
.eyebrow {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  letter-spacing: .08em;
  color: var(--accent-ink);
  margin: 0 0 .5rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--accent); border-radius: 2px; }
.on-dark .eyebrow, .page-hero .eyebrow, .hero .eyebrow { color: var(--accent); }
.lead { font-size: 1.2rem; color: var(--text-muted); max-width: 62ch; }

.stars { display: inline-flex; gap: 2px; color: var(--gold); vertical-align: -2px; }
.stars svg { width: 1em; height: 1em; fill: currentColor; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: .9rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; line-height: 1.2;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: var(--navy-ink); box-shadow: 0 8px 20px -10px rgba(12, 169, 213, .8); }
.btn--primary:hover { background: #22b8e2; color: var(--navy-ink); }
.btn--gold { background: var(--gold); color: var(--navy-ink); }
.btn--gold:hover { background: #ffc873; color: var(--navy-ink); }
.btn--outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--ghost-light { border-color: rgba(255, 255, 255, .55); color: #fff; background: transparent; }
.btn--ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn--sm { padding: .65rem 1.15rem; font-size: .95rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .7; cursor: wait; transform: none; }

.text-link { display: inline-flex; align-items: center; gap: .35rem; font-weight: 700; text-decoration: none; color: var(--accent-ink); }
.text-link .icon { transition: transform .15s ease; }
.text-link:hover .icon { transform: translateX(3px); }

/* ---------- Top bar & header ---------- */
.topbar { background: var(--navy-ink); color: var(--on-dark-muted); font-size: .9rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 38px; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__item .icon { color: var(--accent); }
.topbar__phone { color: #fff; font-weight: 700; text-decoration: none; }
.topbar__phone:hover { color: var(--accent); }

.site-header { position: sticky; top: 0; z-index: 50; background: var(--white); border-bottom: 1px solid var(--line); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--navy); }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; letter-spacing: -.01em; }
.brand__name span { color: var(--accent-ink); }

.site-nav { display: flex; align-items: center; gap: 1.75rem; }
.nav-list { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav-list > li { position: relative; display: flex; align-items: center; }
.nav-list a { display: block; padding: .6rem .8rem; color: var(--navy); font-family: var(--font-head); font-weight: 600; font-size: .98rem; text-decoration: none; border-radius: var(--radius-sm); }
.nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--accent-ink); }
.sub-toggle { background: none; border: 0; color: var(--navy); padding: .4rem; margin-left: -.5rem; cursor: pointer; border-radius: 6px; }
.sub-toggle svg { width: 12px; height: 12px; transition: transform .15s ease; }
.sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.sub-menu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 260px;
  list-style: none; margin: 0; padding: .5rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.sub-menu--wide { min-width: 300px; }
.sub-menu a { font-family: var(--font-body); font-weight: 700; font-size: .98rem; padding: .55rem .8rem; }
.sub-menu a:hover { background: var(--mist); }
.has-sub:hover > .sub-menu, .has-sub:focus-within > .sub-menu, .has-sub.is-open > .sub-menu { opacity: 1; visibility: visible; transform: none; }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--navy); text-decoration: none; white-space: nowrap; }
.nav-phone .icon { color: var(--accent-ink); }

.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: #fff; border-radius: 10px; cursor: pointer; position: relative; }
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after { position: absolute; left: 12px; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; content: ""; }
.nav-toggle__bars { top: 22px; }
.nav-toggle__bars::before { left: 0; top: -6px; }
.nav-toggle__bars::after { left: 0; top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1020px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: .5rem var(--gutter) 1.25rem; max-height: calc(100vh - 110px); overflow-y: auto;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-list > li { flex-wrap: wrap; justify-content: space-between; border-bottom: 1px solid var(--line); }
  .nav-list > li > a { padding: .95rem 0; flex: 1; }
  .sub-toggle { margin: 0; padding: .8rem; }
  .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 .75rem .5rem; min-width: 0; width: 100%; display: none; }
  .has-sub:hover > .sub-menu, .has-sub:focus-within > .sub-menu { display: none; }
  .has-sub.is-open > .sub-menu { display: block; }
  .nav-cta { flex-direction: column; align-items: stretch; padding-top: 1rem; }
  .nav-cta .btn { width: 100%; }
  .nav-phone { justify-content: center; padding: .5rem; }
}
@media (max-width: 600px) {
  .topbar__item--hide-sm { display: none; }
  .brand__name { font-size: 1.1rem; }
  .brand img { width: 44px; height: 44px; }
  .site-header__inner { min-height: 66px; }
}

/* ---------- Sections ---------- */
.section { padding: var(--section-y) 0; }
.section--mist { background: var(--mist); }
.section--tight-top { padding-top: clamp(12px, 1.5vw, 20px); }
.section--tight-bottom { padding-bottom: clamp(20px, 2.5vw, 32px); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: var(--on-dark-muted); }
.h-accent { color: var(--accent); }
.h-small { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }

/* Services page: two picture columns, and picture-beside-text rows */
.service-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); }
.service-col { margin: 0; }
.service-col__media { aspect-ratio: 4 / 3; border-radius: var(--radius); margin-bottom: 1rem; box-shadow: var(--shadow-sm); background: var(--img) center / cover no-repeat, linear-gradient(135deg, var(--navy) 0%, var(--navy-ink) 100%); }
.service-col h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); margin-bottom: .4rem; }
.service-col p { color: var(--text-muted); margin: 0; }
@media (max-width: 700px) { .service-cols { grid-template-columns: 1fr; } }

/* Wide banner image with centred text underneath */
.banner-media { aspect-ratio: 3 / 1; border-radius: var(--radius); box-shadow: var(--shadow-sm); background: var(--img) center / cover no-repeat, linear-gradient(135deg, var(--navy) 0%, var(--navy-ink) 100%); }
.banner-media__text { margin: clamp(1.25rem, 2.5vw, 1.75rem) auto 0; text-align: center; }
@media (max-width: 700px) { .banner-media { aspect-ratio: 16 / 9; } }

.media-rows { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.media-row { display: grid; grid-template-columns: minmax(0, 300px) 1fr; gap: clamp(1.25rem, 3vw, 2rem); align-items: center; margin: 0; }
.media-row__media { aspect-ratio: 4 / 3; border-radius: var(--radius); box-shadow: var(--shadow-sm); background: var(--img) center / cover no-repeat, linear-gradient(135deg, var(--navy) 0%, var(--navy-ink) 100%); }
.media-row h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); margin-bottom: .45rem; }
.media-row p { color: var(--text-muted); font-size: 1.12rem; margin: 0 0 .6rem; }
.media-row p:last-child { margin-bottom: 0; }
@media (max-width: 700px) { .media-row { grid-template-columns: 1fr; } }
.section-head { max-width: 760px; margin: 0 0 clamp(28px, 4vw, 48px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p:last-child { margin-bottom: 0; }

.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split--reverse > :first-child { order: 2; }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
}

/* Service detail pages: everything centred */
.section--centered { text-align: center; }
.section--centered .lead, .section--centered > .container > p { margin-inline: auto; }
.section--centered .check-list { justify-items: center; max-width: 820px; margin-inline: auto; }
.section--centered .check-list li { justify-content: center; text-align: left; }
.section--centered .card { text-align: center; align-items: center; }
.section--centered .steps li { text-align: center; }
.section--centered .chip-list { justify-content: center; }

.check-list { list-style: none; padding: 0; display: grid; gap: .6rem; }
.check-list li { display: flex; gap: .65rem; align-items: flex-start; }
.check-list .icon { color: var(--accent-ink); margin-top: .3rem; }
.section--navy .check-list .icon { color: var(--accent); }
.section--navy .check-list li { color: #fff; }

.prose { max-width: 72ch; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.3em; }
.prose img { border-radius: var(--radius); margin: 1.5em 0; }
.prose blockquote { margin: 1.5em 0; padding: 1rem 1.25rem; border-left: 4px solid var(--gold); background: var(--gold-soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

/* ---------- Home hero ---------- */
.hero { position: relative; color: #fff; background: var(--navy-ink); overflow: hidden; isolation: isolate; }
.hero__media, .hero__media video, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(27, 37, 54, .94) 0%, rgba(37, 50, 71, .82) 45%, rgba(50, 65, 88, .45) 100%); }
.hero__inner { display: grid; grid-template-columns: 1.25fr .75fr; gap: 48px; align-items: center; padding: clamp(64px, 11vw, 128px) var(--gutter); }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 4.1rem); margin-bottom: .35em; }
.hero h1 .accent { color: var(--accent); }
.hero__lead { font-size: clamp(1.1rem, 1.8vw, 1.3rem); color: #e4eaf2; max-width: 56ch; }
.hero__actions, .page-hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1.8rem; }

.trust-row { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; font-weight: 700; font-size: .98rem; }
.trust-row li { display: inline-flex; align-items: center; gap: .5rem; color: #fff; }
.trust-row .icon { color: var(--accent); }

.hero-card { background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18); border-radius: var(--radius); padding: 1.75rem; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.hero-card__stat { font-family: var(--font-accent); font-size: 4.5rem; line-height: .9; color: var(--gold); margin: 0; }
.hero-card__label { font-family: var(--font-accent); font-size: 1.5rem; letter-spacing: .05em; color: #fff; margin: .2rem 0 .8rem; }
.hero-card p { color: #dbe3ee; font-size: .98rem; }
.hero-card hr { border: 0; border-top: 1px solid rgba(255, 255, 255, .18); margin: 1.2rem 0; }
.hero-card .check-list li { color: #fff; font-size: .98rem; }
.hero-card .check-list .icon { color: var(--accent); }
@media (max-width: 900px) { .hero__inner { grid-template-columns: 1fr; } .hero-card { max-width: 480px; } }

/* Quote form in the home hero: tighter so it starts above the fold */
.hero .hero__inner { grid-template-columns: 1fr minmax(0, 540px); gap: clamp(28px, 4vw, 56px); padding-block: clamp(32px, 5vw, 56px); }
.hero-quote { padding: clamp(1.2rem, 2.5vw, 1.6rem); scroll-margin-top: 90px; }
.hero-quote h2 { font-size: clamp(1.25rem, 2vw, 1.5rem); color: var(--navy); margin: 0 0 .8rem; }
.hero-quote .form-note { margin-bottom: .7rem; font-size: .85rem; }
.hero-quote .form-grid { gap: .7rem .9rem; }
.hero-quote .field label { font-size: .88rem; margin-bottom: .2rem; }
.hero-quote .field input, .hero-quote .field select, .hero-quote .field textarea { padding: .6rem .8rem; }
.hero-quote .field textarea { min-height: 0; height: 48px; resize: none; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.hero-quote .field textarea:focus { white-space: normal; overflow: auto; }
.hero-quote .field--pair { grid-column: auto; }
.hero-quote .form-note { display: none; }
.hero-quote .consent { margin: .9rem 0 .3rem; padding: .75rem; }
.hero-quote .consent label { font-size: .78rem; line-height: 1.4; }
.hero-quote .btn--block { padding: .85rem; }
@media (max-width: 900px) { .hero .hero__inner { grid-template-columns: 1fr; } }

/* ---------- Home service tiles (photo boxes, description on hover) ---------- */
.service-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.service-tile--window-cleaning, .service-tile--gutter-cleaning { grid-column: 1 / -1; }
.service-tile {
  --ease: cubic-bezier(.22, .61, .36, 1);
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 230px; border-radius: var(--radius); color: #fff; text-decoration: none;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-ink) 100%);
  box-shadow: var(--shadow-sm);
}
.service-tile::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--img) center / cover no-repeat; transition: transform .8s var(--ease); }
/* A solid tint (not a gradient) so the darkening fades smoothly. */
.service-tile::after { content: ""; position: absolute; inset: 0; z-index: -1; background-color: rgba(27, 37, 54, .5); transition: background-color .6s var(--ease); }
.service-tile__body { display: flex; flex-direction: column; align-items: center; padding: clamp(1.2rem, 2.5vw, 1.8rem); }
.service-tile__title { margin: 0; color: #fff; font-size: clamp(1.3rem, 2.2vw, 1.7rem); text-shadow: 0 2px 12px rgba(0, 0, 0, .35); }
.service-tile__desc { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .6s var(--ease), opacity .35s ease; }
.service-tile__desc > div { overflow: hidden; min-height: 0; }
.service-tile__desc p { margin: 0; padding-top: .5rem; color: #e4eaf2; font-size: 1.02rem; max-width: 52ch; transform: translateY(8px); transition: transform .6s var(--ease); }
.service-tile__arrow { display: grid; place-items: center; margin-top: .75rem; width: 2.4rem; height: 2.4rem; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .45); color: var(--accent); transition: background-color .4s ease, border-color .4s ease, color .4s ease; }
.service-tile__arrow .icon { width: 1.1rem; height: 1.1rem; }
.service-tile:hover::before, .service-tile:focus-visible::before { transform: scale(1.05); }
.service-tile:hover::after, .service-tile:focus-visible::after { background-color: rgba(27, 37, 54, .78); }
.service-tile:hover .service-tile__desc, .service-tile:focus-visible .service-tile__desc { grid-template-rows: 1fr; opacity: 1; transition: grid-template-rows .6s var(--ease), opacity .5s ease .15s; }
.service-tile:hover .service-tile__desc p, .service-tile:focus-visible .service-tile__desc p { transform: none; }
.service-tile:hover .service-tile__arrow, .service-tile:focus-visible .service-tile__arrow { background-color: var(--accent); border-color: var(--accent); color: var(--navy-ink); }
.service-tile:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
/* Touch screens can't hover, so show the description there all the time. */
@media (hover: none) {
  .service-tile__desc { grid-template-rows: 1fr; opacity: 1; }
  .service-tile__desc p { transform: none; }
}
@media (max-width: 640px) {
  .service-tiles { grid-template-columns: 1fr; }
  .service-tile { min-height: 190px; }
}

/* ---------- "Why homeowners choose us" stepper ---------- */
.reasons__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; }
.reason {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 340px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.reason__media { background: var(--img) center / cover no-repeat, linear-gradient(135deg, var(--navy) 0%, var(--navy-ink) 100%); }
.reason__body { display: flex; flex-direction: column; justify-content: center; padding: clamp(1.5rem, 3.5vw, 2.75rem); }
.reason__count { font-family: var(--font-accent); letter-spacing: .06em; font-size: 1.05rem; color: var(--accent-ink); margin-bottom: .4rem; }
.reason__body h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: .6rem; }
.reason__body p:last-child { margin: 0; color: var(--text-muted); font-size: 1.05rem; }
/* Without JS every reason stays on the page; the stepper shows one at a time. */
.reason__hint { display: none; margin: 1.1rem 0 0; font-weight: 700; color: var(--accent-ink); font-size: .98rem; }
.reason__hint .icon { width: 1em; height: 1em; flex: none; transition: transform .25s ease; }
.reasons.is-stepped .reason { display: none; }
.reasons.is-stepped .reason.is-current { display: grid; animation: reason-in .45s cubic-bezier(.22, .61, .36, 1) both; }
.reasons.is-stepped .reason__hint { display: inline-flex; align-items: center; gap: .45rem; }
@keyframes reason-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
/* The whole box is the button once the stepper is running. */
.reasons.is-stepped .reasons__list { cursor: pointer; border-radius: var(--radius); transition: transform .25s ease, box-shadow .25s ease; }
.reasons.is-stepped .reasons__list:hover { transform: translateY(-3px); }
.reasons.is-stepped .reasons__list:hover .reason { box-shadow: var(--shadow); border-color: #c8d6e2; }
.reasons.is-stepped .reasons__list:hover .reason__hint .icon { transform: translateX(4px); }
.reasons.is-stepped .reasons__list:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.reasons__cta {
  display: flex; align-items: center; justify-content: center; gap: .6rem; min-height: 340px;
  border-radius: var(--radius); background: var(--gold); color: var(--navy-ink); text-decoration: none;
  font-family: var(--font-head); font-weight: 700; font-size: clamp(1.5rem, 3.4vw, 2.4rem); text-align: center;
  padding: 2rem; box-shadow: var(--shadow-sm); transition: background .25s ease, transform .25s ease;
  animation: reason-in .45s cubic-bezier(.22, .61, .36, 1) both;
}
.reasons__cta .icon { width: 1em; height: 1em; }
.reasons__cta:hover { background: #ffc873; transform: translateY(-3px); }
.reasons__cta:focus-visible { outline: 3px solid var(--navy); outline-offset: 4px; }
@media (max-width: 760px) {
  .reason { grid-template-columns: 1fr; min-height: 0; }
  .reason__media { min-height: 200px; }
  .reasons__cta { min-height: 220px; }
}

/* ---------- Home review strip (thin, auto-scrolling) ---------- */
#reviews, #services { scroll-margin-top: var(--header-h, 80px); }
#reviews { overflow: hidden; }
.review-strip { background: var(--mist); padding: clamp(28px, 4vw, 44px) 0; overflow: hidden; }
.review-strip__head { text-align: center; }
.review-strip__head h2 { font-size: clamp(1.3rem, 2.6vw, 2rem); margin: 0; }
@media (min-width: 700px) { .review-strip__head h2 { white-space: nowrap; } }
.review-strip__stat { display: inline-flex; align-items: center; gap: .6rem; margin: 1.1rem 0 1.4rem; font-family: var(--font-accent); font-size: 1.6rem; letter-spacing: .04em; color: var(--navy); }
.review-strip__stat .stars { color: var(--gold); }
.marquee { display: flex; width: max-content; }
.marquee + .marquee { margin-top: 1rem; }
.marquee__track { list-style: none; margin: 0; padding: 0 0 4px; display: flex; gap: 1rem; padding-right: 1rem; animation: marquee-right var(--marquee-speed, 70s) linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee-right { from { transform: translateX(-100%); } to { transform: translateX(0); } }
.review-card--mini { width: 480px; flex: none; padding: .8rem 1.3rem; gap: .35rem; }
.review-card--mini::before { display: none; }
.review-card__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.review-card--mini p { margin: 0; font-size: .95rem; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.review-card__name { font-weight: 700; color: var(--navy); font-size: .88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 600px) { .review-card--mini { width: 320px; } }
/* Middle row: taller cards so longer reviews fit. */
.marquee--tall .review-card--mini { width: 540px; min-height: 210px; padding: 1.3rem 1.4rem; }
.marquee--tall .review-card--mini p { -webkit-line-clamp: 6; }
@media (max-width: 600px) { .marquee--tall .review-card--mini { width: 340px; } }
.hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); }

/* ---------- Reviews page hero (fills the first screen) ---------- */
.fold-hero {
  position: relative; isolation: isolate; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  min-height: calc(100svh - var(--top-offset, 120px));
  padding: clamp(3rem, 8vw, 6rem) var(--gutter) clamp(4.5rem, 9vw, 7rem);
  color: #fff; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-ink) 100%);
}
.fold-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--img) center / cover no-repeat; }
.fold-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(27, 37, 54, .62); }
.fold-hero__inner { max-width: min(900px, 92vw); }
.fold-hero h1 { color: #fff; font-size: clamp(2.2rem, 6vw, 4.2rem); margin-bottom: .3em; text-shadow: 0 2px 18px rgba(0, 0, 0, .35); }
.fold-hero .stars { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--gold); }
.fold-hero__lead { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: #e4eaf2; margin: 0 auto; max-width: 52ch; }
.fold-hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.8rem; }
.fold-hero__scroll {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: clamp(1.25rem, 3vw, 2.25rem);
  display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .5); color: #fff; animation: scroll-nudge 2.2s ease-in-out infinite;
}
.fold-hero__scroll svg { width: 1.5rem; height: 1.5rem; }
.fold-hero__scroll:hover { background: var(--accent); border-color: var(--accent); color: var(--navy-ink); }
@keyframes scroll-nudge { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }
/* Keep the arrow clear of the fixed "Call" bar on phones. */
@media (max-width: 700px) { .fold-hero__scroll { bottom: 84px; } .fold-hero { padding-bottom: 9rem; } }

/* ---------- Inner page hero ---------- */
.page-hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; isolation: isolate; }
.page-hero::before { content: ""; position: absolute; right: -120px; top: -160px; width: 460px; height: 460px; border-radius: 50%; border: 60px solid rgba(12, 169, 213, .12); z-index: -1; }
.page-hero--image::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(27, 37, 54, .94) 0%, rgba(37, 50, 71, .85) 50%, rgba(50, 65, 88, .55) 100%); }
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-hero__inner { padding: clamp(56px, 9vw, 104px) var(--gutter); max-width: var(--container); }
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero__lead { font-size: clamp(1.08rem, 1.7vw, 1.25rem); color: #e4eaf2; max-width: 60ch; }
.page-hero__lead a { color: #fff; }
.page-hero--compact .page-hero__inner { padding-block: clamp(44px, 7vw, 72px); }
/* Slim, centred dark band with light text and no decoration (blog index). */
.page-hero--accent { background: var(--navy); text-align: center; }
.page-hero--accent::before, .page-hero--accent::after { content: none; }
.page-hero--accent .page-hero__inner { padding-block: clamp(28px, 4vw, 44px); margin-inline: auto; }
.page-hero--accent h1 { color: var(--accent); max-width: none; font-size: clamp(1.9rem, 4vw, 2.9rem); }
.page-hero--accent .page-hero__lead { color: #e4eaf2; max-width: 62ch; margin-inline: auto; margin-bottom: 0; }

.breadcrumbs { font-size: .92rem; margin-bottom: 1rem; color: var(--on-dark-muted); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0; }
.breadcrumbs li + li::before { content: "/"; margin-right: .4rem; opacity: .6; }
.breadcrumbs a { color: #fff; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.card-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; display: flex; flex-direction: column; gap: .4rem; transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease; }
.card:hover { box-shadow: var(--shadow-sm); border-color: #c8d6e2; }
.card h3 { margin-bottom: .3rem; }
.card h3 a { color: inherit; text-decoration: none; }
.card h3 a::after { content: ""; position: absolute; inset: 0; }
.card--link { position: relative; }
.card--link:hover { transform: translateY(-3px); }
.card p { color: var(--text-muted); margin-bottom: .6rem; }
.card .text-link { margin-top: auto; }
.card__icon { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-ink); margin-bottom: .6rem; }
.card__icon svg { width: 28px; height: 28px; }
.card__tag { font-family: var(--font-accent); letter-spacing: .06em; font-size: 1.05rem; color: var(--accent-ink); }
/* Tag on its own line, directly under the card title */
.card__tag--under { display: block; margin: -.15rem 0 .5rem; }

/* ---------- Steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; counter-reset: step; }
.steps li { position: relative; padding: 1.5rem 1.5rem 1.4rem; border-radius: var(--radius); background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); counter-increment: step; }
.steps li::before { content: "0" counter(step); font-family: var(--font-accent); font-size: 3rem; line-height: 1; color: var(--gold); display: block; margin-bottom: .5rem; }
.steps--plain li::before { content: none; }
.steps h3 { color: #fff; margin-bottom: .35rem; }
.steps p { margin: 0; }
.section--mist .steps li, .section:not(.section--navy) .steps li { background: #fff; border-color: var(--line); }
.section:not(.section--navy) .steps h3 { color: var(--navy); }
.section:not(.section--navy) .steps li::before { color: var(--accent-ink); }

/* ---------- Stat strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-top: 2rem; }
.stat { border-left: 3px solid var(--accent); padding: .2rem 0 .2rem 1rem; }
.stat__num { font-family: var(--font-accent); font-size: 2.8rem; line-height: 1; color: var(--navy); display: block; }
.section--navy .stat__num { color: var(--gold); }
.stat__label { font-weight: 700; font-size: .95rem; }

/* ---------- Area chips / lists ---------- */
.area-groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.area-group { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.area-group--featured { background: var(--navy); color: #fff; border-color: var(--navy); }
.area-group--featured h2, .area-group--featured h3 { color: #fff; }
.area-group--featured p { color: var(--on-dark-muted); }
.chip-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.chip-list a, .chip-list span { display: inline-flex; align-items: center; gap: .35rem; padding: .5rem .9rem; border-radius: 999px; background: var(--mist); border: 1px solid var(--line); color: var(--navy); font-weight: 700; font-size: .95rem; text-decoration: none; }
.chip-list a:hover { background: var(--accent-soft); border-color: var(--accent); }
.chip-list .icon { color: var(--accent-ink); width: 1em; height: 1em; }
.chip-list--dark a { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .2); color: #fff; }
.chip-list--dark a:hover { background: var(--accent); color: var(--navy-ink); }
.chip-list--dark .icon { color: var(--accent); }
.chip-list--dark a:hover .icon { color: var(--navy-ink); }
.area-group--featured .chip-list a { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .2); color: #fff; }
.area-group--featured .chip-list a:hover { background: var(--accent); color: var(--navy-ink); }
.area-group--featured .chip-list .icon { color: var(--accent); }
.area-group--featured .chip-list a:hover .icon { color: var(--navy-ink); }

.feature-area { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center; background: var(--navy); color: #fff; border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.5rem); margin-top: 2rem; position: relative; overflow: hidden; }
.feature-area::after { content: ""; position: absolute; right: -60px; bottom: -80px; width: 240px; height: 240px; border-radius: 50%; border: 36px solid rgba(12, 169, 213, .15); }
.feature-area p { color: var(--on-dark-muted); margin: 0; }
.feature-area__title { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: #fff !important; margin-bottom: .35rem !important; }
.feature-area .btn { position: relative; z-index: 1; }
@media (max-width: 700px) { .feature-area { grid-template-columns: 1fr; } }

/* Full-width version of .feature-area: spans the whole screen, content stays in the container. */
.feature-band { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.feature-band::after { content: ""; position: absolute; right: -60px; bottom: -80px; width: 240px; height: 240px; border-radius: 50%; border: 36px solid rgba(12, 169, 213, .15); }
.feature-band__inner { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center; padding-block: clamp(2rem, 4.5vw, 3rem); position: relative; z-index: 1; }
.feature-band p { color: var(--on-dark-muted); margin: 0; }
.feature-band__title { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.3rem, 2.4vw, 1.75rem); color: #fff; margin-bottom: .35rem !important; }
@media (max-width: 700px) { .feature-band__inner { grid-template-columns: 1fr; } }

/* ---------- City sections (Macomb page) ---------- */
.city-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; padding: clamp(28px, 4vw, 44px) 0; border-top: 1px solid var(--line); }
.city-block:first-of-type { border-top: 0; }
.city-block img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); }
.city-block--noimg { grid-template-columns: 1fr; }
@media (max-width: 800px) { .city-block { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; margin: 0; display: flex; flex-direction: column; gap: .8rem; position: relative; }
.review-card::before { content: "\201C"; position: absolute; right: 1.2rem; top: .2rem; font-family: var(--font-head); font-size: 4rem; color: var(--accent-soft); line-height: 1; }
.review-card blockquote { margin: 0; font-size: 1.02rem; }
.review-card figcaption { margin-top: auto; font-weight: 700; color: var(--navy); }
.review-card figcaption span { display: block; font-weight: 400; color: var(--text-muted); font-size: .92rem; }

.fold-hero-stat { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.fold-hero-stat .num { font-family: var(--font-accent); font-size: 4.5rem; line-height: .9; color: var(--gold); }
.fold-hero-stat .stars { font-size: 1.6rem; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: .9rem; max-width: 860px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.5rem; border-left: 4px solid var(--accent); }
.faq-item h3 { margin-bottom: .45rem; font-size: 1.12rem; }
.faq-answer p { margin: 0; color: var(--text-muted); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(110deg, var(--navy-deep), var(--navy)); color: #fff; position: relative; overflow: hidden; }
.cta-band__inner { position: relative; max-width: 760px; text-align: center; padding-block: clamp(40px, 6vw, 64px); }
.cta-band__title { font-family: var(--font-accent); font-size: clamp(2rem, 4.5vw, 2.9rem); line-height: 1; letter-spacing: .03em; color: #fff; margin: 0 0 .4rem; }
.cta-band__sub { color: var(--on-dark-muted); margin: 0; }
.cta-band__phone { margin: .6rem 0 0; font-weight: 700; color: var(--on-dark-muted); }
.cta-band__phone a { display: inline-flex; align-items: center; gap: .4rem; color: #fff; }
.cta-band__form { margin-top: clamp(1.5rem, 3vw, 2.25rem); text-align: left; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Quote form ---------- */
.quote-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .quote-wrap { grid-template-columns: 1fr; } }
.quote-stack { max-width: 720px; }
.quote-stack .section-head { margin-bottom: clamp(20px, 3vw, 32px); }
.quote-card { background: #fff; color: var(--text); border-radius: var(--radius); padding: clamp(1.4rem, 3.5vw, 2.2rem); box-shadow: var(--shadow); border-top: 5px solid var(--accent); }
.form-note { font-size: .92rem; color: var(--text-muted); margin-bottom: 1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.1rem; }
.field--full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 700; font-size: .95rem; margin-bottom: .35rem; color: var(--navy); }
.req { color: #c2410c; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--navy);
  padding: .8rem .9rem; border: 1.5px solid #c9d4df; border-radius: var(--radius-sm); background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(12, 169, 213, .18); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23324158' stroke-width='1.8'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; background-size: 12px; padding-right: 2.4rem; }

.choice-group { border: 0; padding: 0; margin: 0; min-width: 0; }
.choice-group legend { padding: 0; font-weight: 700; font-size: .95rem; margin-bottom: .35rem; color: var(--navy); }
.choice-hint { font-weight: 400; color: var(--text-muted); font-size: .85em; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
@media (max-width: 420px) { .choice-grid { grid-template-columns: 1fr; } }
.choice { display: flex; align-items: center; gap: .6rem; padding: .6rem .75rem; border: 1.5px solid #c9d4df; border-radius: var(--radius-sm); cursor: pointer; font-size: .95rem; line-height: 1.25; color: var(--navy); transition: border-color .15s ease, background .15s ease; }
.choice input { width: 18px; height: 18px; flex: none; margin: 0; accent-color: var(--accent-ink); cursor: pointer; }
.choice:hover { border-color: var(--accent); }
.choice:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.choice:has(input:focus-visible) { box-shadow: 0 0 0 4px rgba(12, 169, 213, .18); }
.choice-group.has-error .choice { border-color: #c2410c; }
.choice-group .field-error { margin: .4rem 0 0; }
.hero-quote .choice-group legend { font-size: .88rem; margin-bottom: .2rem; }
.hero-quote .choice { padding: .45rem .7rem; font-size: .9rem; }

.consent { display: flex; gap: .75rem; align-items: flex-start; margin: 1.3rem 0 .4rem; padding: 1rem; background: var(--mist); border-radius: var(--radius-sm); }
.consent input { width: 22px; height: 22px; flex: none; margin-top: 2px; accent-color: var(--accent-ink); cursor: pointer; }
.consent label { font-size: .88rem; line-height: 1.5; color: var(--text-muted); cursor: pointer; }
.consent.has-error { outline: 2px solid #c2410c; }
.field-error { color: #b3380b; font-weight: 700; font-size: .92rem; margin: .2rem 0 .8rem; }
.quote-form .btn--block { margin-top: .9rem; font-size: 1.05rem; padding: 1rem; }
.form-status { margin: .9rem 0 0; font-weight: 700; }
.form-status.is-error { color: #b3380b; }
.form-status a { color: inherit; }
.form-success { text-align: center; padding: 2rem 1rem; }
.form-success .icon { width: 56px; height: 56px; color: #fff; background: var(--accent-ink); border-radius: 50%; padding: 12px; margin: 0 auto 1rem; }
.form-success p { color: var(--text-muted); }
.form-success__title { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--navy) !important; margin-bottom: .4rem; }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.5rem; }
/* Home page: keep the cards centred when there are fewer than three. */
.post-grid--center .post-grid { grid-template-columns: repeat(auto-fit, minmax(290px, 360px)); justify-content: center; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.post-card__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.post-card__body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.post-card__date { font-family: var(--font-accent); letter-spacing: .06em; color: var(--accent-ink); margin-bottom: .3rem; }
.post-card__title { font-size: 1.2rem; }
.post-card__title a { color: var(--navy); text-decoration: none; }
.post-card__title a:hover { color: var(--accent-ink); }
.post-card p { color: var(--text-muted); }
.post-card .text-link { margin-top: auto; }

.post-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 960px) { .post-layout { grid-template-columns: 1fr; } }
.post-meta { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; color: var(--on-dark-muted); font-size: .95rem; margin: 0; }
.post-hero-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); margin-bottom: 2rem; }
.post-aside { position: sticky; top: 100px; display: grid; gap: 1.25rem; }
.aside-box { background: var(--mist); border-radius: var(--radius); padding: 1.4rem; }
.aside-box--navy { background: var(--navy); color: #fff; }
.aside-box--navy p { color: var(--on-dark-muted); }
.aside-title { font-family: var(--font-accent); font-size: 1.5rem; letter-spacing: .04em; margin-bottom: .6rem; color: inherit; }
.aside-box ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.aside-box li a { font-weight: 700; text-decoration: none; color: var(--navy); }
.aside-box li a:hover { color: var(--accent-ink); }
.aside-box .btn { width: 100%; margin-top: .5rem; }
.empty-state { text-align: center; padding: 3rem 1rem; background: var(--mist); border-radius: var(--radius); }

/* ---------- Legal ---------- */
.legal h2 { font-size: 1.35rem; margin-top: 2em; }
.legal p, .legal li { color: #44516a; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: clamp(64px, 12vw, 140px) var(--gutter); }
.notfound__code { font-family: var(--font-accent); font-size: clamp(6rem, 18vw, 10rem); line-height: .9; color: var(--accent); margin: 0; }
.notfound .chip-list { justify-content: center; margin-top: 1.5rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-ink); color: var(--on-dark-muted); padding-top: clamp(48px, 7vw, 80px); font-size: .98rem; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr .8fr; gap: 2rem; padding-bottom: 3rem; }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } .site-footer__brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .site-footer__grid { grid-template-columns: 1fr; } }
.brand--footer { color: #fff; margin-bottom: 1rem; }
.brand--footer .brand__name span { color: var(--accent); }
.site-footer p { max-width: 38ch; }
.footer-title { font-family: var(--font-accent); font-size: 1.4rem; letter-spacing: .06em; color: #fff; margin-bottom: .8rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.site-footer a { color: var(--on-dark-muted); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-badges { margin: 1rem 0 !important; }
.footer-badges li { display: inline-flex; align-items: center; gap: .5rem; color: #fff; font-weight: 700; }
.footer-badges .icon { color: var(--accent); }
.footer-phone { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: #fff !important; }
.footer-phone .icon { color: var(--accent); }
.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 1.25rem 0; font-size: .9rem; }
.site-footer__bottom p { margin: 0; max-width: none; }

.mobile-call { display: none; }
@media (max-width: 700px) {
  .mobile-call {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
    background: var(--accent); color: var(--navy-ink); font-family: var(--font-head); font-weight: 700;
    padding: .9rem; border-radius: 999px; text-decoration: none; box-shadow: 0 10px 24px -8px rgba(27, 37, 54, .5);
  }
  .site-footer { padding-bottom: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  /* The service tiles keep their gentle hover fade on purpose. */
  *:not(.service-tile, .service-tile *), *:not(.service-tile)::before, *:not(.service-tile)::after { transition: none !important; }
  /* The slow, hover-pausable review strip keeps moving on purpose. */
  *:not(.marquee__track, .reason, .reasons__cta), *::before, *::after { animation: none !important; }
}
