/* =========================================================================
   Shiftify Removals — main stylesheet
   Hand-written, lean, single file. Navy + Orange brand.
   ========================================================================= */

/* ---------- Self-hosted fonts (variable — one file per family) ---------- */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url('../fonts/manrope.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/inter.woff2') format('woff2');
}

/* ---------- Design tokens ---------- */
:root {
  --navy: #202327;        /* logo charcoal — headers, footer, dark sections */
  --navy-light: #31363E;  /* lighter charcoal — gradients / hover */
  --orange: #F5811E;      /* logo orange — buttons, accents */
  --orange-dark: #D46A10; /* CTA hover */
  --blue: #B35A0C;        /* text links (readable brand orange) */
  --ink: #1A1D21;         /* body text */
  --muted: #6A7079;       /* logo grey — secondary text */
  --bg: #F6F7F9;          /* light section backgrounds */
  --white: #FFFFFF;
  --green: #16A34A;       /* checkmarks / "included" ticks */
  --border: #E4E6EA;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(32, 35, 39, 0.08);
  --shadow-md: 0 6px 24px rgba(32, 35, 39, 0.10);
  --shadow-lg: 0 18px 48px rgba(32, 35, 39, 0.16);
  --maxw: 1180px;
  --font-head: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--orange-dark); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.15; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }
.icon { width: 20px; height: 20px; flex: 0 0 auto; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.section { padding: clamp(48px, 8vw, 88px) 0; }
.section--bg { background: var(--bg); }
.section--navy { background: var(--navy); color: #DCE6F2; }
.section--navy h2, .section--navy h3 { color: #fff; }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
}
.section-lead { color: var(--muted); max-width: 640px; margin: 0 auto 2.5rem; font-size: 1.06rem; }
.section--navy .section-lead { color: #A9BBD1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer; transition: all .15s ease;
  white-space: nowrap; line-height: 1;
}
.btn--primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--orange-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: var(--bg); color: var(--navy); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy); color: #C6D4E6; font-size: .85rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 8px 20px; max-width: var(--maxw); margin-inline: auto; }
.topbar a { color: #fff; font-weight: 600; }
.topbar__item { display: inline-flex; align-items: center; gap: .4rem; }
.topbar__badge { background: rgba(255,106,61,.16); color: #FFB69C; padding: 2px 10px; border-radius: 999px; font-weight: 600; }
.topbar__right { display: flex; gap: 1.4rem; align-items: center; }

/* ---------- Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 12px 20px; max-width: var(--maxw); margin-inline: auto; }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--navy); }
.brand:hover { color: var(--navy); }
.brand__mark { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; background: var(--navy); border-radius: 8px; color: #fff; }
.brand__mark svg { color: var(--orange); width: 20px; height: 20px; }
.brand em { color: var(--orange); font-style: normal; }

.nav__menu { display: flex; align-items: center; gap: .3rem; list-style: none; }
.nav__menu a { color: var(--ink); font-weight: 600; font-size: .96rem; padding: .5rem .7rem; border-radius: var(--radius-sm); display: inline-flex; align-items: center; gap: .25rem; }
.nav__menu a:hover { color: var(--navy); background: var(--bg); }
.nav__actions { display: flex; align-items: center; gap: .75rem; }
.nav__phone { font-family: var(--font-head); font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: .4rem; }
.nav__phone:hover { color: var(--orange-dark); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > .dropdown { position: absolute; top: 100%; left: 0; min-width: 220px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: .5rem; list-style: none; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .16s ease; }
.has-dropdown:hover > .dropdown, .has-dropdown:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: .5rem .7rem; }
.dropdown .chevron { width: 16px; height: 16px; }

/* WordPress-generated menu (Appearance → Menus) — match the designed dropdown look.
   WP outputs .menu-item-has-children and .sub-menu; mirror .has-dropdown / .dropdown. */
.nav__menu .menu-item-has-children { position: relative; }
.nav__menu .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: .5rem; list-style: none; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all .16s ease; z-index: 60;
}
.nav__menu .menu-item-has-children:hover > .sub-menu,
.nav__menu .menu-item-has-children:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__menu .sub-menu a { display: block; padding: .5rem .7rem; }
.nav__menu .menu-item-has-children > a::after {
  content: ""; display: inline-block; width: .42em; height: .42em; margin-left: .35em;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg); opacity: .65;
}

/* Mobile toggle */
.nav__toggle { display: none; background: none; border: none; color: var(--navy); cursor: pointer; padding: 6px; }
.nav__toggle svg { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media > img, .hero__media > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__media > .hero__video { z-index: 1; } /* video overlays the poster once it plays */
.hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, rgba(32,35,39,.94) 0%, rgba(32,35,39,.82) 45%, rgba(32,35,39,.62) 100%); }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; padding: clamp(48px, 7vw, 84px) 20px; max-width: var(--maxw); margin-inline: auto; }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero__sub { font-size: 1.15rem; color: #C6D4E6; margin-bottom: 1.5rem; max-width: 520px; }
.hero__usps { list-style: none; display: grid; gap: .6rem; margin-bottom: 1.5rem; }
.hero__usps li { display: flex; align-items: center; gap: .6rem; font-weight: 500; color: #EAF1F9; }
.hero__usps .icon { color: var(--green); background: rgba(34,160,107,.18); border-radius: 50%; padding: 3px; width: 24px; height: 24px; }
.hero__ratings { display: flex; align-items: center; gap: .5rem; color: #FFD9CC; font-weight: 600; font-size: .95rem; }
.hero__ratings .stars { display: inline-flex; color: #FFB020; }
.hero__ratings .stars .icon { width: 18px; height: 18px; fill: currentColor; stroke: none; }

/* ---------- Quote form card ---------- */
.quote-card { background: #fff; color: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 1.6rem; }
.quote-card__head { margin-bottom: 1rem; }
.quote-card__head h3 { color: var(--navy); margin-bottom: .2rem; font-size: 1.4rem; }
.quote-card__head p { color: var(--muted); font-size: .92rem; margin: 0; }
.field { margin-bottom: .85rem; }
.field label { display: block; font-weight: 600; font-size: .82rem; color: var(--navy); margin-bottom: .3rem; }
.field input, .field select {
  width: 100%; padding: .75rem .85rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .98rem; color: var(--ink); background: #fff; transition: border-color .15s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,106,61,.15); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.field--hp { position: absolute; left: -9999px; }
.quote-card small { display: block; color: var(--muted); font-size: .78rem; margin-top: .6rem; text-align: center; }
.quote-note { color: var(--green); font-weight: 600; }

/* ---------- Trust badges ---------- */
.trust { background: var(--white); border-bottom: 1px solid var(--border); }
.trust__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.4rem 2.6rem; padding: 22px 20px; max-width: var(--maxw); margin-inline: auto; }
.trust__item { display: inline-flex; align-items: center; gap: .5rem; color: var(--muted); font-weight: 600; font-size: .95rem; }
.trust__item .icon { color: var(--green); }
.trust__item strong { color: var(--navy); }

/* ---------- Cards grid (USP / services) ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .16s, box-shadow .16s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,106,61,.12); color: var(--orange); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.card__icon .icon { width: 24px; height: 24px; }
.card h3 { color: var(--navy); margin-bottom: .4rem; }
.card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* Service card link */
.scard { display: flex; flex-direction: column; }
.scard a.scard__link { margin-top: 1rem; color: var(--orange-dark); font-weight: 700; font-family: var(--font-head); display: inline-flex; align-items: center; gap: .35rem; }
.scard a.scard__link:hover { gap: .6rem; }

/* ---------- SEO long-form content ---------- */
.prose { max-width: 820px; margin-inline: auto; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; color: var(--navy-light); }
.prose p, .prose li { color: var(--ink); }
.prose ul { list-style: none; display: grid; gap: .5rem; margin: 1rem 0; }
.prose ul li { display: flex; align-items: flex-start; gap: .6rem; }
.prose ul li::before { content: ""; }
.prose ul li .icon { color: var(--green); margin-top: 3px; }

/* ---------- Values ---------- */
.value { text-align: center; }
.value__icon { width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 50%; background: rgba(255,255,255,.08); color: var(--orange); display: inline-flex; align-items: center; justify-content: center; }
.value h3 { color: #fff; }
.value p { color: #A9BBD1; font-size: .95rem; }

/* ---------- CTA section ---------- */
.cta { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 100%); color: #fff; border-radius: var(--radius); padding: clamp(32px, 5vw, 56px); text-align: center; box-shadow: var(--shadow-md); }
.cta h2 { color: #fff; }
.cta p { color: #C6D4E6; max-width: 520px; margin: 0 auto 1.6rem; }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #A9BBD1; padding: clamp(40px, 6vw, 64px) 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.footer__grid h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer__grid ul { list-style: none; display: grid; gap: .6rem; }
.footer__grid a { color: #A9BBD1; font-size: .95rem; }
.footer__grid a:hover { color: var(--orange); }
.footer__about p { font-size: .92rem; line-height: 1.7; }
.footer__contact li { display: flex; align-items: center; gap: .5rem; }
.footer__map { margin-top: 2.5rem; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.12); line-height: 0; box-shadow: var(--shadow-md); }
.footer__map iframe { display: block; width: 100%; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding: 1.4rem 0; font-size: .85rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; }

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: #fff; border-top: 1px solid var(--border); box-shadow: 0 -4px 16px rgba(32,35,39,.1); padding: 8px; gap: 8px; }
.mobile-bar .btn { flex: 1; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; padding: clamp(48px, 7vw, 72px) 0; text-align: center; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #C6D4E6; max-width: 620px; margin: .5rem auto 0; }
/* Editable background image variant (Service Page → Hero background image). */
.page-hero--img { background-size: cover; background-position: center; background-repeat: no-repeat; }
.page-hero--img::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,32,51,.74), rgba(23,32,51,.86)); z-index: 0; }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumbs { color: #8DA3BE; font-size: .85rem; margin-bottom: .8rem; }
.breadcrumbs a { color: #C6D4E6; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: .8rem; overflow: hidden; background: #fff; }
.faq__q { width: 100%; text-align: left; background: none; border: none; padding: 1.1rem 1.3rem; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__q .icon { transition: transform .2s; color: var(--orange); }
.faq__item.open .faq__q .icon { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 1.3rem; color: var(--muted); }
.faq__item.open .faq__a { max-height: 500px; padding-bottom: 1.1rem; }

/* ---------- Locations grid ---------- */
.loc-card { display: block; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow-sm); transition: all .16s; }
.loc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.loc-card h3 { display: flex; align-items: center; gap: .5rem; margin-bottom: .3rem; }
.loc-card h3 .icon { color: var(--orange); }
.loc-card p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- Alert / notice ---------- */
.notice { background: rgba(34,160,107,.1); border: 1px solid rgba(34,160,107,.3); color: #167C50; padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; font-weight: 600; }

/* ---------- Utilities ---------- */
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.hide-mobile { display: initial; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  /* On mobile, show the quote form first, then the headline/USPs. */
  .hero__form { order: -1; }
  .hero__content { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__menu, .nav__phone { display: none; }
  .nav__actions .btn--primary { display: none; } /* CTA covered by hamburger + sticky bottom bar */
  .nav__toggle { display: inline-flex; }
  .site-header.nav-open .nav__menu {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); padding: .5rem;
  }
  .site-header.nav-open .nav__menu a { padding: .8rem 1rem; }
  .has-dropdown > .dropdown,
  .nav__menu .menu-item-has-children > .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 1rem; }
  .topbar__right .topbar__item--hours { display: none; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .icard h4 { min-width: 0; }
  .field--row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 64px; } /* room for sticky bar */
  .hide-mobile { display: none; }
}

/* =========================================================================
   Hippo-inspired components (v2): photo hero, stats, story, numbered values,
   what's-included, testimonials, photo CTA.
   ========================================================================= */

/* Hero photo darker overlay for text legibility over a photo */
.hero__overlay { background: linear-gradient(105deg, rgba(32,35,39,.95) 0%, rgba(32,35,39,.86) 40%, rgba(32,35,39,.55) 100%); }
.hero__media img { filter: saturate(1.05); }

/* Trustpilot-style pill in hero */
.trust-pill { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); padding: .4rem .8rem; border-radius: 999px; font-size: .85rem; font-weight: 600; color: #fff; margin-bottom: 1.1rem; }
.trust-pill .stars { display: inline-flex; color: #FFB020; }
.trust-pill .stars .icon { width: 15px; height: 15px; fill: currentColor; stroke: none; }

/* ---------- Stats band ---------- */
.stats { background: var(--orange); }
.stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: var(--maxw); margin-inline: auto; padding: 32px 20px; }
.stat { text-align: center; color: #fff; }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1; }
.stat__label { font-size: .9rem; opacity: .95; margin-top: .35rem; font-weight: 600; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.25); }

/* ---------- Story split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split__badge { position: absolute; bottom: -18px; left: -18px; background: var(--navy); color: #fff; border-radius: var(--radius); padding: 1rem 1.2rem; box-shadow: var(--shadow-md); font-family: var(--font-head); }
.split__badge strong { display: block; font-size: 1.8rem; color: var(--orange); line-height: 1; }
.split__badge span { font-size: .82rem; color: #C6D4E6; }
.mini-values { display: grid; gap: 1rem; margin-top: 1.5rem; }
.mini-value { display: flex; gap: .9rem; align-items: flex-start; }
.mini-value .card__icon { margin: 0; flex: 0 0 auto; width: 42px; height: 42px; }
.mini-value h4 { font-family: var(--font-head); color: var(--navy); margin: 0 0 .2rem; font-size: 1.05rem; }
.mini-value p { margin: 0; color: var(--muted); font-size: .92rem; }

/* ---------- Numbered core values (01 / 02 / 03) ---------- */
.vnum { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2.4rem 1.6rem 1.6rem; box-shadow: var(--shadow-sm); transition: transform .16s, box-shadow .16s; }
.vnum:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.vnum__badge { position: absolute; top: -22px; left: 1.6rem; width: 46px; height: 46px; border-radius: 12px; background: var(--orange); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.vnum h3 { color: var(--navy); margin-bottom: .4rem; }
.vnum p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- What's included ---------- */
.included__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.included__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 3/2.4; object-fit: cover; }
.included__list { list-style: none; display: grid; gap: .85rem; margin: 1.4rem 0; }
.included__list li { display: flex; align-items: center; gap: .7rem; font-weight: 500; color: var(--ink); }
.included__list .icon { color: #fff; background: var(--green); border-radius: 50%; padding: 3px; width: 24px; height: 24px; flex: 0 0 auto; }
.price-badge { display: inline-flex; align-items: baseline; gap: .4rem; background: var(--bg); border: 1px dashed var(--orange); border-radius: var(--radius); padding: .8rem 1.2rem; margin-bottom: 1rem; }
.price-badge b { font-family: var(--font-head); font-size: 1.6rem; color: var(--navy); }
.price-badge span { color: var(--muted); font-size: .9rem; }

/* ---------- Testimonials ---------- */
.review-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.review-stars { display: inline-flex; color: #FFB020; margin-bottom: .8rem; }
.review-stars .icon { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.review-card p { color: var(--ink); font-size: .98rem; }
.review__author { display: flex; align-items: center; gap: .7rem; margin-top: auto; padding-top: 1rem; }
.review__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 700; display: inline-flex; align-items: center; justify-content: center; font-size: .95rem; }
.review__name { font-weight: 700; color: var(--navy); font-size: .92rem; line-height: 1.2; }
.review__loc { color: var(--muted); font-size: .82rem; }

/* ---------- Photo CTA ---------- */
.cta--photo { position: relative; overflow: hidden; color: #fff; }
.cta--photo .cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta--photo .cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta--photo .cta__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(32,35,39,.95), rgba(49,54,62,.86)); }
.cta--photo .cta__inner { position: relative; z-index: 1; }

/* ---------- Responsive for v2 ---------- */
@media (max-width: 980px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .stat:nth-child(3) { border-left: none; }
  .split, .included__grid { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__badge { left: auto; right: 16px; bottom: 16px; }
}
@media (max-width: 760px) {
  .stats__inner { grid-template-columns: 1fr 1fr; }
  .vnum__badge { top: -20px; }
}

/* =========================================================================
   Plan v2 additions: marquee, hero chips, header shrink, 6-card numbered
   grid, why-choose split, reviews carousel, areas teaser.
   ========================================================================= */

/* ---------- Header shrink on scroll ---------- */
.site-header.shrink { box-shadow: var(--shadow-sm); }
.site-header.shrink .nav { padding-top: 6px; padding-bottom: 6px; }
.site-header .nav { transition: padding .18s ease; }

/* ---------- Hero floating trust chips ---------- */
.hero__chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.chip { display: inline-flex; align-items: center; gap: .45rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: #fff; font-weight: 600; font-size: .82rem; padding: .45rem .8rem; border-radius: 999px; }
.chip .icon { width: 16px; height: 16px; }
.chip--green .icon { color: #5BE1A0; }
.chip--star { color: #FFD9CC; }
.chip--star .icon { color: #FFB020; fill: currentColor; stroke: none; }
h1 .hl { color: var(--orange); }

/* ---------- Marquee ticker ---------- */
.marquee { background: var(--navy); border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); overflow: hidden; padding: 14px 0; }
.marquee__track { display: flex; width: max-content; gap: 0; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 1.6rem; padding: 0 1.6rem; color: #DCE6F2; font-family: var(--font-head); font-weight: 700; font-size: 1rem; white-space: nowrap; }
.marquee__sep { color: var(--orange); font-size: 1.1rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- 6-card numbered "one price" grid ---------- */
.grid--6 { grid-template-columns: repeat(3, 1fr); }
.feature { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform .16s, box-shadow .16s; }
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature__num { font-family: var(--font-head); font-weight: 800; font-size: .95rem; color: var(--orange); letter-spacing: .05em; }
.feature__icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,92,53,.12); color: var(--orange); display: inline-flex; align-items: center; justify-content: center; margin: .5rem 0 .8rem; }
.feature h3 { color: var(--navy); font-size: 1.12rem; margin-bottom: .3rem; }
.feature p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ---------- Why-choose split (checklist + photo) ---------- */
.why__list { list-style: none; display: grid; gap: 1rem; margin: 1.4rem 0 1.6rem; }
.why__list li { display: flex; gap: .8rem; align-items: flex-start; }
.why__list .icon { color: #fff; background: var(--green); border-radius: 50%; padding: 4px; width: 26px; height: 26px; flex: 0 0 auto; margin-top: 2px; }
.why__list b { display: block; color: var(--navy); font-family: var(--font-head); font-size: 1.02rem; }
.why__list span { color: var(--muted); font-size: .93rem; }
.why__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ---------- Reviews carousel (auto-scroll marquee) ---------- */
.reviews__head { display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.rating-badge { display: inline-flex; align-items: center; gap: .5rem; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: .5rem 1rem; box-shadow: var(--shadow-sm); font-weight: 700; color: var(--navy); }
.rating-badge .stars { display: inline-flex; color: #FFB020; }
.rating-badge .stars .icon { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.reviews__viewport { overflow: hidden; margin-top: 2rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.reviews__track { display: flex; gap: 1.4rem; width: max-content; animation: marquee 46s linear infinite; }
.reviews__viewport:hover .reviews__track { animation-play-state: paused; }
.reviews__track .review-card { width: 360px; flex: 0 0 auto; }
@media (max-width: 760px) { .reviews__track .review-card { width: 280px; } }

/* ---------- Service page: intro pills + CTA row ---------- */
.sp-pills { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.4rem 0 1.6rem; padding: 0; }
.sp-pills li { display: inline-flex; align-items: center; gap: .5rem; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: .55rem 1.05rem; font-weight: 600; font-size: .92rem; color: var(--navy); box-shadow: 0 1px 2px rgba(32,35,39,.05); }
.sp-pills li .icon { width: 17px; height: 17px; color: var(--orange); stroke-width: 2.4; flex: 0 0 auto; }
.sp-cta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 1.5rem; }
.sp-phone { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--navy); white-space: nowrap; }
.sp-phone .icon { width: 20px; height: 20px; color: var(--orange); }
.sp-phone:hover { color: var(--orange); }

/* ---------- Logo carousels (brands + certifications) ---------- */
.logos__viewport { margin-top: 1.8rem; }
.logos__track { gap: 3.5rem; align-items: center; animation-duration: 34s; }
.logo-slide { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; height: 62px; }
.logo-slide img { max-height: 52px; width: auto; max-width: 170px; object-fit: contain; filter: grayscale(100%); opacity: .72; transition: opacity .2s, filter .2s; }
.logo-slide img:hover { filter: none; opacity: 1; }
.logos__track--color .logo-slide img { filter: none; opacity: 1; }
@media (max-width: 760px) {
  .logos__track { gap: 2.2rem; }
  .logo-slide { height: 50px; }
  .logo-slide img { max-height: 40px; max-width: 130px; }
  .sp-phone { font-size: 1.08rem; }
}

/* ---------- Google-style reviews widget (service pages) ---------- */
.grev__header { margin-bottom: 2.2rem; }
.grev__wrap { display: flex; align-items: center; gap: 2.4rem; }
.grev__summary { flex: 0 0 190px; text-align: center; }
.grev__word { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; letter-spacing: .02em; color: var(--navy); text-transform: uppercase; }
.grev__stars { display: flex; justify-content: center; gap: 2px; margin: .45rem 0 .55rem; }
.grev__based { display: block; color: var(--muted); font-size: .95rem; }
.grev__based strong { color: var(--navy); }
.grev__google { display: inline-block; margin-top: .7rem; }
.grev__viewport { flex: 1 1 auto; min-width: 0; margin-top: 0; }
.grev__track { gap: 1.1rem; animation-duration: 55s; align-items: stretch; }
.grev-card { width: 300px; flex: 0 0 auto; background: #f3f4f6; border-radius: 14px; padding: 1.25rem 1.3rem; display: flex; flex-direction: column; }
.grev-card__top { display: flex; align-items: center; gap: .6rem; }
.grev-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.grev-card__id { display: flex; flex-direction: column; min-width: 0; flex: 1 1 auto; }
.grev-card__name { font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: .95rem; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.grev-card__when { color: var(--muted); font-size: .8rem; }
.grev-card__src { flex: 0 0 auto; display: flex; }
.grev-card__stars { display: flex; align-items: center; gap: 2px; margin: .7rem 0 0; }
.grev-card__verified { display: inline-flex; margin-left: .35rem; }
.grev-card__text { color: var(--ink); font-size: .92rem; line-height: 1.55; margin: .65rem 0 0; display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
@media (max-width: 860px) {
  .grev__wrap { flex-direction: column; gap: 1.5rem; align-items: stretch; }
  .grev__summary { flex: none; }
  .grev__viewport { width: 100%; }
}
@media (max-width: 760px) {
  .grev-card { width: 265px; }
}

/* ---------- Locations archive: featured grid + county directory ---------- */
.loc-featured { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; margin-top: 2rem; }
.loc-fcard { display: block; background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--orange); border-radius: var(--radius); padding: 1.3rem 1.4rem; box-shadow: var(--shadow-sm); transition: transform .16s, box-shadow .16s; }
a.loc-fcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.loc-fcard__region { display: block; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: .35rem; }
.loc-fcard h3 { color: var(--navy); font-size: 1.2rem; margin: 0 0 .3rem; }
.loc-fcard p { color: var(--muted); font-size: .9rem; margin: 0 0 .5rem; line-height: 1.5; }
.loc-fcard__areas { display: block; color: var(--navy); font-size: .8rem; font-weight: 600; }

.loc-directory { margin-top: 2.4rem; }
.loc-group { margin-bottom: 2.6rem; }
.loc-group:last-child { margin-bottom: 0; }
.loc-group__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; border-bottom: 2px dashed #d7deea; padding-bottom: .7rem; margin-bottom: 1.2rem; }
.loc-group__head h2 { margin: 0; font-size: 1.4rem; color: var(--navy); }
.loc-group__count { flex: 0 0 auto; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.loc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: .8rem; }
.loc-item { display: flex; align-items: center; justify-content: space-between; gap: .8rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .8rem 1rem; box-shadow: var(--shadow-sm); transition: border-color .14s, transform .14s, box-shadow .14s; }
a.loc-item:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.loc-item__text { display: flex; flex-direction: column; min-width: 0; }
.loc-item__name { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: .95rem; line-height: 1.2; }
.loc-item__pc { color: var(--muted); font-size: .78rem; margin-top: 2px; }
.loc-item__arrow { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,92,53,.1); color: var(--orange); display: inline-flex; align-items: center; justify-content: center; }
.loc-item__arrow .icon { width: 16px; height: 16px; }
@media (max-width: 560px) { .loc-grid { grid-template-columns: 1fr; } }

/* ---------- Areas teaser ---------- */
.areas__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; margin: 1.8rem 0; }
.area-link { display: flex; align-items: center; gap: .5rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .8rem 1rem; font-weight: 600; color: var(--navy); box-shadow: var(--shadow-sm); transition: all .14s; }
.area-link:hover { border-color: var(--orange); color: var(--navy); transform: translateY(-2px); }
.area-link .icon { color: var(--orange); width: 18px; height: 18px; }

/* ---------- v2 responsive ---------- */
@media (max-width: 980px) {
  .grid--6 { grid-template-columns: repeat(2, 1fr); }
  .areas__grid { grid-template-columns: repeat(3, 1fr); }
  .why .split { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .grid--6 { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .area-link { min-width: 0; padding: .7rem .8rem; font-size: .9rem; }
  .area-link .icon { flex: 0 0 auto; }
}

/* ---------- Designed content blocks ---------- */
/* Icon feature card — icon badge + heading, vertically centered side by side */
.icard { display: flex; gap: .85rem; align-items: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.15rem; box-shadow: var(--shadow-sm); transition: transform .16s, box-shadow .16s; }
.icard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.icard .card__icon { margin: 0; width: 46px; height: 46px; flex: 0 0 auto; }
.icard h4 { font-family: var(--font-head); color: var(--navy); margin: 0; font-size: 1rem; line-height: 1.3; }

/* Service card — header row (icon + title side by side), then body */
.svc-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform .16s, box-shadow .16s; }
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.svc-card__head { display: flex; align-items: center; gap: .8rem; margin-bottom: .9rem; }
.svc-card__head .card__icon { margin: 0; width: 46px; height: 46px; flex: 0 0 auto; }
.svc-card__head h3 { margin: 0; color: var(--navy); font-size: 1.15rem; }
.svc-card p { color: var(--muted); font-size: .95rem; margin: 0; }
.svc-card .check-cards { margin: 1rem 0 0; }

/* Beautiful bullet cards */
.check-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; margin: 1.3rem 0; padding: 0; list-style: none; }
.check-cards--1 { grid-template-columns: 1fr; }
.check-cards--3 { grid-template-columns: repeat(3, 1fr); }
.check-cards li { display: flex; align-items: center; gap: .75rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .7rem .95rem; box-shadow: var(--shadow-sm); font-weight: 500; color: var(--ink); font-size: .94rem; line-height: 1.35; }
.check-cards .cbadge { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--green); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.check-cards .cbadge .icon { width: 15px; height: 15px; }
.check-cards--warn .cbadge { background: var(--orange-dark); }
.section--navy .check-cards li { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: #EAF1F9; }
@media (max-width: 980px) { .check-cards--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .check-cards, .check-cards--3 { grid-template-columns: 1fr; } }

/* Chip tags */
.chip-list { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.2rem 0; padding: 0; list-style: none; }
.chip-list li { display: inline-flex; align-items: center; gap: .5rem; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: .5rem 1rem; font-weight: 600; color: var(--navy); font-size: .92rem; box-shadow: var(--shadow-sm); }
.chip-list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex: 0 0 auto; }

/* Intro trust row (light chips) */
.trust-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.3rem; }
.trust-row span { display: inline-flex; align-items: center; gap: .45rem; background: var(--bg); border: 1px solid var(--border); border-radius: 999px; padding: .5rem 1rem; font-weight: 600; font-size: .9rem; color: var(--navy); }
.trust-row span .icon { width: 18px; height: 18px; color: var(--orange); }

/* Callout panel */
.panel { background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--orange); border-radius: var(--radius); padding: 1.5rem 1.8rem; box-shadow: var(--shadow-sm); }
.panel > :first-child { margin-top: 0; }
.panel > :last-child { margin-bottom: 0; }

/* ---------- SEO content: green-tick lists + comparison table ---------- */
.tick-list { list-style: none; display: grid; gap: .6rem; margin: 1.1rem 0 1.4rem; padding: 0; }
.tick-list.two-col { grid-template-columns: 1fr 1fr; gap: .6rem 1.8rem; }
.tick-list li { position: relative; padding-left: 1.9rem; color: var(--ink); }
.tick-list li::before { content: ""; position: absolute; left: 2px; top: .32em; width: 13px; height: 7px; border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green); transform: rotate(-45deg); }
.section--navy .tick-list li { color: #DCE6F2; }

.compare-wrap { overflow-x: auto; margin: 1.4rem 0; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 480px; box-shadow: var(--shadow-sm); border-radius: var(--radius); overflow: hidden; }
.compare-table th, .compare-table td { text-align: left; padding: .85rem 1.1rem; border-bottom: 1px solid var(--border); font-size: .97rem; }
.compare-table thead th { background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 700; }
.compare-table tbody tr:nth-child(even) { background: var(--bg); }
.compare-table td:first-child { font-weight: 600; color: var(--navy); }

@media (max-width: 760px) { .tick-list.two-col { grid-template-columns: 1fr; } }

/* ---------- Two-column page layouts (contact / service / location) ---------- */
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.cols-2--sidebar { grid-template-columns: 1.4fr .9fr; }
.cols-2--sidebar .sp-intro__form { position: sticky; top: 90px; }
@media (max-width: 860px) {
  .cols-2, .cols-2--sidebar { grid-template-columns: 1fr; gap: 2rem; }
  /* On mobile, show the quote form first, then the intro content. */
  .cols-2--form-first .sp-intro__form { order: -1; position: static; }
  .cols-2--form-first .sp-intro__content { order: 0; }
}

/* ---------- Dark header + brand wordmark (matches logo) ---------- */
.site-header { background: rgba(32, 35, 39, .97); border-bottom: 1px solid rgba(255,255,255,.08); }
.site-header.shrink { box-shadow: 0 3px 14px rgba(0,0,0,.35); }
.brand { color: #fff; }
.brand em { color: var(--orange); font-style: normal; }
.brand__mark { background: var(--orange); }
.brand__mark svg { color: #fff; }
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__word b { font-family: var(--font-head); font-weight: 800; letter-spacing: .04em; font-size: 1.3rem; }
.brand__word small { font-family: var(--font-head); font-weight: 700; letter-spacing: .28em; font-size: .6rem; color: #9AA0A6; text-transform: uppercase; margin-top: 3px; }
.nav__menu > li > a { color: #E7E9EC; }
.nav__menu > li > a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav__phone { color: #E7E9EC; }
.nav__phone:hover { color: var(--orange); }
.nav__toggle { color: #E7E9EC; }
.custom-logo { max-height: 46px; width: auto; }
@media (max-width: 760px) {
  .site-header.nav-open .nav__menu { background: #202327; border-color: rgba(255,255,255,.08); }
  .site-header.nav-open .nav__menu > li > a { color: #E7E9EC; }
  .nav__menu .sub-menu { background: #2A2E34; border-color: rgba(255,255,255,.1); }
  .nav__menu .sub-menu a { color: #D7DADE; }
}

/* Footer brand tagline */
.footer__tagline { color: var(--orange); font-family: var(--font-head); font-weight: 700; font-size: .82rem; letter-spacing: .04em; margin: .6rem 0 .8rem; }

/* Reduced motion — hide autoplay video + stop marquees */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__media video { display: none; }
  .marquee__track, .reviews__track { animation: none; }
}
