/* ============================================================
   Spotless360 — Home styles
   Brand: bright green + forest green + gold, bold rounded type
============================================================ */
:root {
  --green:        #16a637;   /* bright brand green (CTAs) */
  --green-hover:  #12902f;
  --green-dark:   #2f5d1e;   /* forest green (top bar / accents) */
  --gold:         #c6a13a;
  --ink:          #16211a;
  --body:         #48564d;
  --muted:        #7a887f;
  --line:         #e4ebe4;
  --bg:           #ffffff;
  --bg-alt:       #f3f8f2;
  --wa:           #25d366;
  --radius:       16px;
  --radius-sm:    10px;
  --shadow:       0 18px 40px -18px rgba(24,60,24,.28);
  --shadow-sm:    0 6px 18px -8px rgba(24,60,24,.25);
  --container:    1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .brand, .btn { font-family: "Poppins", sans-serif; color: var(--ink); }
h1 { font-weight: 800; line-height: 1.08; letter-spacing: -.5px; }
h2 { font-weight: 700; font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.15; letter-spacing: -.4px; }
h3 { font-weight: 700; font-size: 1.18rem; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.container--narrow { max-width: 800px; }
.txt-green { color: var(--green); }
.txt-green-dark { color: var(--green-dark); }
.txt-gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--green    { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn--green:hover { background: var(--green-hover); }
.btn--whatsapp { background: var(--wa); color: #fff; box-shadow: var(--shadow-sm); }
.btn--whatsapp:hover { background: #1fbe5b; }
.btn--ghost    { background: #fff; color: var(--green-dark); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); }
.btn--block    { width: 100%; padding: 16px; font-size: 1.05rem; }

.eyebrow { font-family: "Poppins"; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  font-size: .78rem; color: var(--green); margin-bottom: 10px; }
.eyebrow--light { color: #bff0c2; }
.stars { color: var(--gold); letter-spacing: 2px; }
.check { color: var(--green); font-weight: 800; }

/* ---------- Top bar (animated marquee) ---------- */
.topbar { background: var(--green-dark); color: #fff; font-family: "Poppins"; overflow: hidden; }
.topbar__marquee { display: flex; overflow: hidden; white-space: nowrap; }
.topbar__track { display: flex; flex-shrink: 0; align-items: center;
  animation: topbar-scroll 22s linear infinite; will-change: transform; }
.topbar__item { padding-block: 9px; padding-inline: 2.2rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .4px; }
.topbar__item a { color: inherit; font-weight: 700; }
.topbar__ico { color: #ff3b30; }
@media (hover: hover) and (pointer: fine) {
  .topbar:hover .topbar__track { animation-play-state: paused; }
}

@keyframes topbar-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .topbar__track { animation: none; }
  .topbar__marquee { justify-content: center; }
}

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header__inner { display: flex; align-items: center; gap: 20px; padding-block: 12px; }
.brand img { height: 52px; width: auto; }
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a { font-family: "Poppins"; font-weight: 600; font-size: .98rem; color: var(--ink);
  padding: 6px 0; position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--green); transition: width .2s ease; }
.nav a:hover { color: var(--green); }
.nav a:hover::after { width: 100%; }
.header__cta { padding: 11px 20px; font-size: .95rem; }

/* ---------- Services dropdown ---------- */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-drop-toggle { display: inline-flex; align-items: center; gap: 5px;
  font-family: "Poppins"; font-weight: 600; font-size: .98rem; color: var(--ink);
  background: none; border: 0; cursor: pointer; padding: 6px 0; }
.nav-drop-toggle:hover { color: var(--green); }
.nav-drop-toggle .caret { transition: transform .2s ease; }

.dropdown { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 320px; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); padding: 10px; display: grid; gap: 2px; z-index: 60;
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s ease, transform .18s ease; }
.dropdown::before { content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px; background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
/* bridge so hover doesn't drop while moving cursor to the panel */
.nav-item::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 16px; }

.nav-item.has-dropdown:hover .dropdown,
.nav-item.open .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-item.has-dropdown:hover .caret,
.nav-item.open .caret { transform: rotate(180deg); }

.dropdown__item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 11px;
  transition: background .15s ease; }
.dropdown__item::after { display: none; }              /* kill nav underline */
.dropdown__item:hover { background: var(--bg-alt); }
.dropdown__ico { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(22,166,55,.12); color: var(--green); }
.dropdown__txt { display: flex; flex-direction: column; line-height: 1.25; }
.dropdown__txt strong { font-family: "Poppins"; font-weight: 600; font-size: .92rem; color: var(--ink); }
.dropdown__txt small { font-size: .78rem; color: var(--muted); }
.dropdown__all { display: block; text-align: center; margin-top: 4px; padding: 11px;
  font-family: "Poppins"; font-weight: 600; font-size: .9rem; color: #fff; background: var(--green);
  border-radius: 11px; }
.dropdown__all::after { display: none; }
.dropdown__all:hover { background: var(--green-hover); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 6px; margin-left: auto; position: relative; z-index: 70; }
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { background:
  radial-gradient(1100px 500px at 85% -10%, rgba(22,166,55,.10), transparent 60%),
  linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
  padding-block: clamp(38px, 6vw, 68px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: start; }
.hero__eyebrow { font-family: "Poppins"; font-weight: 700; color: #d23b1e; font-size: .95rem; margin-bottom: 14px; }
.hero__title { font-size: clamp(2rem, 4.6vw, 3.25rem); margin-bottom: 18px; }
.hero__lead { font-size: 1.1rem; max-width: 40ch; margin-bottom: 22px; }

/* Google Reviews badge (hero) */
.hero__greviews { display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin: 6px 0 26px; padding: 12px 20px; border-radius: 14px;
  background: #fff; box-shadow: 0 8px 22px rgba(0,0,0,.22); }
.greviews__word { font-family: "Poppins", sans-serif; font-weight: 500;
  font-size: 1.7rem; letter-spacing: -1px; line-height: 1; }
.greviews--b { color: #4285F4; } .greviews--r { color: #EA4335; }
.greviews--y { color: #FBBC05; } .greviews--g { color: #34A853; }
.greviews__label { font-family: "Poppins", sans-serif; font-weight: 600;
  color: #5f6368; font-size: 1.4rem; line-height: 1; }
.greviews__stars { color: #FBBC05; font-size: 1.3rem; letter-spacing: 3px; }
/* Google wordmark reused inline in the Testimonials intro line */
.section__intro .greviews__word { font-size: 1.05em; letter-spacing: -.3px; vertical-align: baseline; }
/* The one commercial promise in the hero: a solid badge, not a fourth tick, so
   it never reads as just another line in the list. */
.hero__deal { display: inline-block; margin-bottom: 18px; padding: 11px 20px;
  border-radius: 999px; background: var(--green); color: #fff;
  font-family: "Poppins", sans-serif; font-weight: 800; font-size: 1.02rem;
  letter-spacing: .02em; box-shadow: var(--shadow-sm); }
.hero__points { list-style: none; display: grid; gap: 10px; margin-bottom: 26px; }
.hero__points li { display: flex; gap: 10px; align-items: center; font-weight: 500; color: var(--ink); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.hero__trust { font-size: .95rem; color: var(--body); }
.hero__trust strong { color: var(--ink); }

/* Offer form card */
.offer-heading { font-family: "Poppins", sans-serif; font-weight: 700; color: #fff;
  font-size: 1.9rem; line-height: 1.15; margin-bottom: 16px; }
.offer-card { background: #fff; border: 1px solid var(--line); border-radius: 22px;
  box-shadow: var(--shadow); padding: 26px 24px; }
.offer-card__title { font-size: 1.4rem; margin-bottom: 6px; }
.offer-card__sub { font-size: .9rem; color: var(--muted); margin-bottom: 18px; }

.offer-form { display: grid; gap: 14px; }
.offer-form__services { border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px; display: grid; gap: 9px; background: var(--bg-alt); }
.offer-form__services legend { font-family: "Poppins"; font-weight: 600; font-size: .92rem;
  color: var(--ink); padding: 0 6px; }
.offer-form__services label { display: flex; gap: 9px; align-items: center; font-size: .92rem; cursor: pointer; }
.offer-form__services input { width: 17px; height: 17px; accent-color: var(--green); }
.offer-form__services small { color: var(--muted); font-size: .8rem; }

.field { display: grid; gap: 5px; }
.field label { font-family: "Poppins"; font-weight: 600; font-size: .85rem; color: var(--ink); }
.field input, .field textarea {
  width: 100%; padding: 11px 13px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .95rem; color: var(--ink); background: #fff; transition: border .18s, box-shadow .18s; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,166,55,.14); }
.field-row { display: grid; grid-template-columns: 1fr .55fr; gap: 12px; }
.req { color: #d23b1e; }
.offer-form__fine { font-size: .74rem; color: var(--muted); text-align: center; margin-top: 2px; }

/* ---------- Offer package selector (injected by script.js) ---------- */
.pkg-select { border: 0; padding: 0; display: grid; gap: 10px; }
.pkg-select > legend { font-family: "Poppins", sans-serif; font-weight: 600; font-size: .92rem;
  color: var(--ink); margin-bottom: 2px; }
.pkg-option { position: relative; display: flex; align-items: center; gap: 12px;
  padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; cursor: pointer; transition: border-color .18s, box-shadow .18s, background .18s; }
.pkg-option:hover { border-color: var(--green); }
.pkg-option input { width: 18px; height: 18px; flex: none; accent-color: var(--green); cursor: pointer; }
.pkg-option__main { display: flex; flex-direction: column; gap: 3px; flex: 1 1 auto; }
.pkg-option__name { font-family: "Poppins", sans-serif; font-weight: 600; font-size: .92rem;
  color: var(--ink); line-height: 1.25; }
.pkg-price { font-family: "Poppins", sans-serif; font-weight: 800; font-size: 1.12rem;
  color: var(--green); flex: none; }
.pkg-badge { align-self: flex-start; font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: .62rem; letter-spacing: .04em; text-transform: uppercase; color: #fff;
  background: var(--green); padding: 2px 8px; border-radius: 999px; }
.pkg-badge--value { background: var(--gold); }

/* Info dot + "what's included" tooltip on each package */
.pkg-option__name { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pkg-info { display: inline-flex; flex: none; cursor: pointer; }  /* static: tip anchors to .pkg-option */
.pkg-info__ico { width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid var(--muted);
  background: transparent; color: var(--muted); font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: .64rem; line-height: 1; display: grid; place-items: center;
  transition: border-color .15s, background-color .15s, color .15s, transform .15s, box-shadow .15s; }
/* Hover/open flips it to a filled dot — a border tint alone was too faint at 16px. */
.pkg-info:hover .pkg-info__ico,
.pkg-info:focus-visible .pkg-info__ico,
.pkg-info.is-open .pkg-info__ico { border-color: var(--green-dark); background: var(--green-dark);
  color: #fff; transform: scale(1.18); box-shadow: 0 0 0 3px rgba(47,93,30,.16); }
.pkg-info:focus { outline: none; }
.pkg-info:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; border-radius: 50%; }
@media (prefers-reduced-motion: reduce) { .pkg-info__ico { transition: none; } }

.pkg-tip { position: absolute; left: 12px; right: 12px; bottom: calc(100% + 8px);
  background: var(--ink); color: #fff; border-radius: 10px; padding: 11px 13px;
  font-family: "Inter", system-ui, sans-serif; font-weight: 400; font-size: .78rem; line-height: 1.45;
  text-align: left; box-shadow: var(--shadow); z-index: 80;
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(4px);
  transition: opacity .16s ease, transform .16s ease; }
.pkg-tip ul { list-style: none; display: grid; gap: 5px; margin: 0; padding: 0; }
.pkg-tip li { position: relative; padding-left: 15px; }
.pkg-tip li::before { content: "\2713"; position: absolute; left: 0; color: #5fd97b; font-weight: 700; }
/* Click-only: hover just tints the dot. An open panel absorbs its own clicks, or they
   would fall through to the controls underneath it. */
.pkg-info:focus-visible .pkg-tip,
.pkg-info.is-open .pkg-tip { opacity: 1; visibility: visible; transform: translateY(0);
  pointer-events: auto; }

/* First card has no room above it inside the form — drop its tip below instead. */
.pkg-option:first-of-type .pkg-tip { bottom: auto; top: calc(100% + 8px); }
/* Selected state (radio checked) */
.pkg-option:has(input:checked) { border-color: var(--green); background: var(--bg-alt);
  box-shadow: 0 0 0 3px rgba(22,166,55,.14); }
.pkg-option input:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.pkg-select.has-error .pkg-option { border-color: #d23b1e; }
.pkg-error { font-size: .8rem; color: #d23b1e; font-weight: 600; margin-top: 2px; }

/* "Other services you may need…" — hidden until a package is chosen, then reveals */
.other-services { display: grid; gap: 10px; overflow: hidden;
  max-height: 0; opacity: 0; margin-top: -14px; /* cancel form gap while collapsed */
  transition: max-height .4s ease, opacity .3s ease, margin-top .4s ease; }
.other-services.is-visible { max-height: 320px; opacity: 1; margin-top: 0; }
.other-services__title { font-family: "Poppins", sans-serif; font-weight: 600; font-size: .9rem; color: var(--ink); }
.other-services__opts { display: grid; gap: 8px; }
.other-services__opt { display: flex; align-items: center; gap: 9px; font-size: .92rem;
  color: var(--body); cursor: pointer; }
.other-services__opt input { width: 17px; height: 17px; accent-color: var(--green); cursor: pointer; }
.other-services__note { font-size: .82rem; color: var(--muted); line-height: 1.4; }

/* Assurance badge at the bottom of the form card */
.form-assurance { display: flex; align-items: center; justify-content: center; gap: 8px;
  text-align: center; font-family: "Poppins", sans-serif; font-weight: 600; font-size: .8rem;
  color: var(--green-dark); background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 10px 12px; margin-top: 2px; }
.form-assurance__ico { color: var(--green); font-weight: 800; }

/* ---------- Inner page hero ---------- */
.page-hero { background:
  radial-gradient(900px 420px at 88% -20%, rgba(22,166,55,.12), transparent 60%),
  linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
  padding: clamp(30px, 5vw, 56px) 0 clamp(34px, 5vw, 52px); }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 14px; font-family: "Poppins"; font-weight: 500; }
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 4px; }
.page-hero__title { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 800; margin-bottom: 14px; }
.page-hero__lead { font-size: 1.08rem; max-width: 62ch; margin-bottom: 22px; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }

.chip-nav { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-nav a { font-family: "Poppins"; font-weight: 600; font-size: .88rem; color: var(--green-dark);
  background: #fff; border: 1.5px solid var(--line); padding: 8px 16px; border-radius: 999px;
  transition: border .18s, color .18s, background .18s; }
.chip-nav a:hover { border-color: var(--green); color: var(--green); background: var(--bg-alt); }

/* ---------- Service detail ---------- */
.svc { padding-block: clamp(42px, 6vw, 72px); scroll-margin-top: 90px; }
.svc--alt { background: var(--bg-alt); }
.svc__grid { display: grid; grid-template-columns: 1.55fr .85fr; gap: 42px; align-items: start; }
.svc__head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.svc__ico { flex: 0 0 62px; width: 62px; height: 62px; border-radius: 15px; display: grid; place-items: center;
  background: rgba(22,166,55,.12); color: var(--green); }
.svc__head h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.svc__head .eyebrow { margin-bottom: 2px; }
.svc__lead { font-size: 1.05rem; margin-bottom: 26px; max-width: 60ch; }
.svc__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 34px; }
.svc__cols h3 { font-size: 1.05rem; margin-bottom: 12px; color: var(--ink); }
.svc__note { font-size: .82rem; color: var(--muted); line-height: 1.5; margin-top: 12px; }
.ticks { list-style: none; display: grid; gap: 9px; }
.ticks li { position: relative; padding-left: 28px; font-size: .96rem; color: var(--body); }
.ticks li::before { content: "\2714"; position: absolute; left: 0; top: 1px; color: var(--green); font-weight: 800; }

.svc__aside { background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-sm); padding: 24px 22px; position: sticky; top: 96px; }
.svc--alt .svc__aside { box-shadow: var(--shadow); }
.svc__aside h3 { margin-bottom: 8px; }
.svc__aside p { font-size: .92rem; color: var(--muted); margin-bottom: 16px; }
.svc__aside .btn { margin-bottom: 10px; }
.svc__call { display: block; text-align: center; font-family: "Poppins"; font-weight: 600;
  font-size: .9rem; color: var(--green-dark); margin-top: 4px; }
.svc__call:hover { color: var(--green); }

/* ---------- Service hero (inner) ---------- */
.svc-hero { background:
  radial-gradient(900px 460px at 88% -20%, rgba(22,166,55,.12), transparent 60%),
  linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
  padding: clamp(28px, 4vw, 46px) 0 clamp(40px, 6vw, 64px); }
.svc-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: start; }
.svc-hero__title { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 800; margin: 8px 0 16px; }
.svc-hero__lead { font-size: 1.08rem; max-width: 44ch; margin-bottom: 22px; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 18px; box-shadow: var(--shadow-sm); position: relative; }
.step__num { width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: #fff;
  font-family: "Poppins"; font-weight: 700; display: grid; place-items: center; margin-bottom: 14px; }
.step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.step p { font-size: .88rem; }

/* ---------- Benefit list (icon rows) ---------- */
.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 30px; }
.benefit { display: flex; gap: 14px; align-items: flex-start; }
.benefit__ico { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(22,166,55,.12); color: var(--green); }
.benefit h3 { font-size: 1.05rem; margin-bottom: 4px; }
.benefit p { font-size: .93rem; }

/* ---------- Blog listing ---------- */
/* auto-fit + centred, so the grid reads as intentional whether the blog has one
   post or nine. With 3+ it is identical to the old repeat(3, 1fr). */
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 364px));
  justify-content: center; gap: 24px; }
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease; }
a.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card__thumb { aspect-ratio: 16 / 9; display: grid; place-items: center; color: #fff; position: relative;
  background: linear-gradient(150deg, var(--green-dark) 0%, #1f4214 60%, #16321a 100%); }
.post-card__thumb svg { opacity: .9; }
.post-card__thumb::after { content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 30px 30px; opacity: .5; }
.post-card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.post-card__cat { font-family: "Poppins"; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  font-size: .72rem; color: var(--green); margin-bottom: 8px; }
.post-card h3 { font-size: 1.12rem; line-height: 1.3; margin-bottom: 8px; color: var(--ink); }
.post-card__excerpt { font-size: .92rem; flex: 1; }
.post-card__meta { margin-top: 14px; font-size: .82rem; color: var(--muted);
  display: flex; align-items: center; gap: 8px; }
.post-card__link { margin-top: 12px; font-family: "Poppins"; font-weight: 600; color: var(--green); font-size: .9rem; }
.post-card--soon { opacity: .96; }
.post-card--soon .post-card__thumb { background: linear-gradient(150deg, #5a6a5c 0%, #3e4a40 100%); }
.badge-soon { display: inline-block; font-family: "Poppins"; font-weight: 600; font-size: .72rem;
  color: var(--green-dark); background: var(--bg-alt); border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 999px; margin-top: 12px; }

/* Featured post */
.post-featured { display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  margin-bottom: 34px; transition: transform .2s ease, box-shadow .2s ease; }
a.post-featured:hover { transform: translateY(-4px); }
.post-featured__thumb { min-height: 260px; display: grid; place-items: center; color: #fff; position: relative;
  background: linear-gradient(150deg, var(--green-dark) 0%, #1f4214 60%, #16321a 100%); }
.post-featured__thumb::after { content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 32px 32px; opacity: .5; }
.post-featured__body { padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.post-featured__body h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin: 8px 0 12px; }
.post-featured__body p { margin-bottom: 16px; }

/* ---------- Article ---------- */
.article-hero { background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
  padding: clamp(26px, 4vw, 44px) 0 clamp(24px, 4vw, 38px); }
.article-hero__cat { font-family: "Poppins"; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  font-size: .76rem; color: var(--green); margin: 10px 0 8px; }
.article-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; max-width: 20ch; margin-bottom: 14px; }
.article-hero__meta { font-size: .9rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 6px 14px; }
.article { padding-block: clamp(34px, 5vw, 56px); }
.article__body { max-width: 760px; margin: 0 auto; }
.article__body h2 { font-size: 1.5rem; margin: 34px 0 12px; }
.article__body h3 { font-size: 1.15rem; margin: 24px 0 8px; }
.article__body p { margin-bottom: 16px; font-size: 1.03rem; }
.article__body ul, .article__body ol { margin: 0 0 16px 22px; display: grid; gap: 8px; }
.article__body li { font-size: 1.03rem; }
.article__body blockquote { margin: 22px 0; padding: 16px 22px; border-left: 4px solid var(--green);
  background: var(--bg-alt); border-radius: 0 12px 12px 0; font-size: 1.05rem; color: var(--ink); }
.article__cta { max-width: 760px; margin: 34px auto 0; background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; text-align: center; }
.article__cta h3 { margin-bottom: 8px; }
.article__cta p { margin-bottom: 16px; color: var(--body); }
.article__cta .btn { margin: 0 6px 8px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--green-dark); color: #fff; }
.trust-strip__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px;
  padding-block: 15px; font-family: "Poppins"; font-weight: 600; font-size: .92rem; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(48px, 7vw, 84px); }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 42px; }
/* Longer heading than the rest — needs more room to stay on one line. */
#testimonials .section__head { max-width: 740px; }
.section__intro { margin-top: 10px; font-size: 1.05rem; }

/* ---------- Cards grid ---------- */
.cards { display: grid; gap: 22px; }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
/* Home services: 2 cards on top, 3 on bottom (6-col base) */
.cards--split { grid-template-columns: repeat(6, 1fr); }
.cards--split > .card:nth-child(1),
.cards--split > .card:nth-child(2) { grid-column: span 3; }
.cards--split > .card:nth-child(n+3) { grid-column: span 2; }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card__icon { width: 62px; height: 62px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(22,166,55,.12); color: var(--green); margin-bottom: 16px; }
/* Custom circular badge icons (their own background + gold ring) */
.svc__ico--badge, .card__icon--badge { background: none; border-radius: 0; }
.dropdown__ico--badge { background: none; }
.svc__ico--badge img, .card__icon--badge img,
.dropdown__ico--badge img { width: 100%; height: 100%; object-fit: contain; display: block; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .93rem; flex: 1; }
.card__link { margin-top: 14px; font-family: "Poppins"; font-weight: 600; color: var(--green); font-size: .92rem; }
.card__link:hover { color: var(--green-hover); }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.about__copy p { margin-bottom: 14px; }
.about__stats { display: flex; gap: 28px; margin: 22px 0 24px; flex-wrap: wrap; }
.about__stats div { display: flex; flex-direction: column; }
.about__stats strong { font-family: "Poppins"; font-size: 1.5rem; color: var(--green-dark); }
.about__stats span { font-size: .82rem; color: var(--muted); }
.about__media { display: grid; place-items: center; }
.about__media img { width: min(380px, 100%); border-radius: 24px;
  background: #fff; padding: 30px; box-shadow: var(--shadow); }

/* Video placeholder */
.video-ph { position: relative; width: 100%; aspect-ratio: 16 / 10; border: 0; cursor: pointer;
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background:
    radial-gradient(120% 120% at 30% 0%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(155deg, var(--green-dark) 0%, #1f4214 55%, #16321a 100%);
  transition: transform .2s ease, box-shadow .2s ease; }
.video-ph::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 34px 34px; opacity: .5; }
.video-ph:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.video-ph:hover .video-ph__play { transform: scale(1.08); background: var(--green); }
.video-ph__badge { position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: "Poppins"; font-weight: 600; font-size: .78rem; letter-spacing: .4px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
  padding: 6px 12px; border-radius: 999px; }
.video-ph__play { z-index: 2; width: 78px; height: 78px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.16); border: 2px solid rgba(255,255,255,.55);
  color: #fff; padding-left: 4px; transition: transform .2s ease, background .2s ease;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,.5); }
.video-ph__label { z-index: 2; font-family: "Poppins"; font-weight: 700; font-size: 1.15rem; color: #fff; }
.video-ph__note { z-index: 2; font-size: .82rem; color: var(--gold); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }

/* ---------- Testimonials ---------- */
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); }
.review .stars { font-size: 1.05rem; }
.review p { margin: 12px 0; color: var(--ink); font-size: .96rem; }
.review footer { font-family: "Poppins"; font-weight: 600; font-size: .88rem; color: var(--body); }

/* ---------- Video reviews (home testimonials) ---------- */
/* Source clips are portrait 1080x1440, so the frames are locked to 3/4 and the
   letterbox is black rather than the card white. */
.reviews-video { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px; max-width: 820px; margin-inline: auto; }
.review-video { margin: 0; border-radius: 18px; overflow: hidden; background: #000;
  box-shadow: var(--shadow-sm); }
.review-video video { width: 100%; height: auto; aspect-ratio: 3 / 4; display: block;
  object-fit: cover; background: #000; }

@media (max-width: 620px) {
  .reviews-video { grid-template-columns: 1fr; max-width: 420px; gap: 18px; }
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px 18px; box-shadow: var(--shadow-sm); }
.faq__item summary { font-family: "Poppins"; font-weight: 600; color: var(--ink); font-size: 1rem;
  padding: 15px 30px 15px 0; cursor: pointer; list-style: none; position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--green); font-weight: 700; transition: transform .2s; }
.faq__item[open] summary::after { content: "\2013"; }
.faq__item p { padding: 0 0 16px; font-size: .95rem; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(160deg, var(--green-dark) 0%, #244a17 100%); color: #eaf6e8; }
.contact h2 { color: #fff; }
.contact__grid { display: grid; grid-template-columns: 1fr .85fr; gap: 44px; align-items: center; }
.contact__copy p { color: #d3e6cf; margin-bottom: 20px; }
.contact__list { list-style: none; display: grid; gap: 12px; margin-bottom: 24px; }
.contact__list li { display: flex; gap: 12px; align-items: center; font-size: 1.02rem; }
.contact__list span { color: var(--gold); font-size: 1.2rem; width: 24px; }
.contact__list a:hover { text-decoration: underline; }
.contact__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.contact__card { background: #fff; border-radius: 20px; padding: 26px 24px; box-shadow: var(--shadow); }
.contact__card h3 { margin-bottom: 16px; }

/* ---------- Footer ---------- */
.footer { background: #12261a; color: #b9c9bd; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; padding-block: 52px; }
.footer__brand img { height: 104px; width: auto; margin-bottom: 14px; border-radius: 16px; }
.footer__brand p { font-size: .9rem; margin-bottom: 12px; max-width: 32ch; text-transform: uppercase; letter-spacing: .3px; }
.footer__badges { font-family: "Poppins"; font-weight: 600; font-size: .8rem; color: var(--gold); letter-spacing: .5px; }
/* Where We Serve — city list + note (mobile & desktop) */
.footer__areas { border-top: 1px solid rgba(255,255,255,.08); margin-top: 8px; padding-top: 28px; }
.footer__areas h4 { font-family: "Poppins", sans-serif; font-weight: 600; font-size: .95rem; color: #fff; margin-bottom: 12px; }
.footer__cities { font-size: .82rem; line-height: 1.95; color: #b9c9bd; }
.footer__areas-note { font-size: .82rem; line-height: 1.6; color: #8fa595; margin-top: 14px; max-width: 78ch; }
.footer__col h4 { color: #fff; font-family: "Poppins"; font-size: .95rem; margin-bottom: 14px; }
.footer__col a, .footer__col span { display: block; font-size: .9rem; margin-bottom: 9px; color: #b9c9bd; }
.footer__col a:hover { color: var(--green); }
/* Centered contact block (hours + phone + WhatsApp) — shown on mobile only */
.footer__contact { display: none; text-align: center; padding-top: 22px; }
.footer__hours { color: #fff; font-family: "Poppins", sans-serif; font-size: .98rem; line-height: 1.5; margin-bottom: 12px; }
.footer__hours strong { font-weight: 600; }
.footer__contact-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 26px; }
.footer__contact-links a { font-family: "Poppins", sans-serif; font-weight: 600; font-size: .92rem; color: var(--gold); }
.footer__contact-links a:hover { color: var(--green); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.09); }
.footer__bottom p { padding-block: 18px; font-size: .82rem; text-align: center; color: #8ba090; }

/* ---------- Floating WhatsApp ---------- */
.fab-whatsapp { position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 24px -6px rgba(37,211,102,.6);
  transition: transform .18s ease; }
.fab-whatsapp:hover { transform: scale(1.08); }

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 32px; }
  .about__media img.about__photo { aspect-ratio: auto; height: 340px; object-fit: cover; object-position: center 30%; }
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .cards--split { grid-template-columns: repeat(2, 1fr); }
  .cards--split > .card:nth-child(n) { grid-column: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .svc__grid { grid-template-columns: 1fr; gap: 28px; }
  .svc__aside { position: static; }
  .svc-hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .post-featured { grid-template-columns: 1fr; }
  .post-featured__thumb { min-height: 200px; }
}

@media (max-width: 720px) {
  .topbar__item { padding-inline: 1.4rem; }
  .hero__deal { font-size: .9rem; padding: 10px 16px; margin-bottom: 16px; }
  .hero__greviews { gap: 10px; padding: 10px 16px; margin-bottom: 22px; }
  .greviews__word { font-size: 1.45rem; }
  .greviews__label { font-size: 1.2rem; }
  .greviews__stars { font-size: 1.05rem; letter-spacing: 2px; }
  .header__cta { display: none; }
  .header { backdrop-filter: none; }   /* avoid creating a containing block for the fixed nav */
  .nav { position: fixed; inset: 0 0 0 auto; width: min(82vw, 320px); height: 100dvh; z-index: 55;
    overflow-y: auto; flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; padding: 88px 26px 32px; margin: 0;
    box-shadow: -12px 0 40px -14px rgba(0,0,0,.3);
    transform: translateX(100%); transition: transform .28s ease; }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.1rem; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: none; }   /* replaced by the bottom "More" button + slide-up sheet */
  body.menu-open { overflow: hidden; }

  /* Dropdown becomes an inline accordion inside the mobile menu */
  .nav-item { display: block; }
  .nav-drop-toggle { width: 100%; justify-content: space-between; font-size: 1.1rem;
    padding: 12px 0; border-bottom: 1px solid var(--line); }
  .dropdown { position: static; width: 100%; box-shadow: none; border: 0;
    padding: 4px 0 8px; background: transparent; opacity: 1; visibility: visible;
    max-height: 0; overflow: hidden; pointer-events: auto; transition: max-height .28s ease; }
  /* override desktop centering transform so items don't shift off-panel */
  .dropdown,
  .nav-item.open .dropdown,
  .nav-item.has-dropdown:hover .dropdown { transform: none; left: auto; }
  .dropdown::before, .nav-item::after { display: none; }
  .nav-item.open .dropdown { max-height: 520px; }
  .nav-item.has-dropdown:hover .dropdown { max-height: 0; }   /* hover shouldn't open on touch */
  .nav-item.open.has-dropdown .dropdown { max-height: 520px; }
  .dropdown__item { padding: 10px 8px; }
  .dropdown__all { margin-top: 6px; }
}

@media (max-width: 560px) {
  .cards--4, .cards--3, .cards--2, .cards--split { grid-template-columns: 1fr; }
  .trust-strip__inner { font-size: .8rem; gap: 8px 18px; }
  .about__stats { gap: 18px; }
  .hero__actions .btn, .contact__actions .btn { flex: 1; }
  .svc__cols { grid-template-columns: 1fr; gap: 20px; }
  .svc__head { gap: 12px; }
  .svc__ico { flex-basis: 52px; width: 52px; height: 52px; }
  .steps { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  /* Footer (mobile): logo centered full-width on top; tagline (left) and
     Services (right) start at the same top level. Keeps 2 columns. */
  .footer__grid { grid-template-columns: 1fr 1fr; column-gap: 20px; row-gap: 22px; }
  .footer__brand { display: contents; }
  .footer__brand img { grid-column: 1 / -1; justify-self: center; height: 150px; margin: 0 0 4px; }
  .footer__brand p { grid-column: 1; grid-row: 2; margin-bottom: 10px; }
  .footer__badges { grid-column: 1; grid-row: 3; align-self: start; }
  .footer__grid > .footer__col:nth-of-type(2) { grid-column: 2; grid-row: 2 / span 2; }
  .footer__grid > .footer__col:nth-of-type(3),
  .footer__grid > .footer__col:nth-of-type(4) { display: none; }
  .footer__contact { display: block; margin-top: 6px; }
  .topbar__track { animation-duration: 44s; }
  .topbar__item { padding-inline: 0.9rem; }
}

/* ============================================================
   Mobile bottom tab bar (app-style) — injected by script.js,
   shown only on phones. Home · Services · Call · Book · More
============================================================ */
.bottom-nav { display: none; }

@media (max-width: 720px) {
  .bottom-nav {
    display: flex;
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 58;
    justify-content: space-around;
    align-items: center;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 12px 32px -10px rgba(24,60,24,.35);
    padding: 8px 6px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .bottom-nav__item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    min-width: 0;
    background: none;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    color: #6b7280;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: .68rem;
    line-height: 1;
    padding: 4px 2px;
    transition: color .18s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .bottom-nav__item:hover,
  .bottom-nav__item:focus-visible { color: var(--green); }
  .bottom-nav__item.is-active { color: var(--green); }

  .bottom-nav__ico { display: grid; place-items: center; }
  .bottom-nav__item svg {
    width: 24px; height: 24px;
    fill: none; stroke: currentColor;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  }

  /* Elevated central Call button */
  .bottom-nav__call { margin-top: -30px; }
  .bottom-nav__call .bottom-nav__ico {
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--green); color: #fff;
    border: 4px solid #fff;
    box-shadow: 0 10px 22px -6px rgba(22,166,55,.7);
  }
  .bottom-nav__call svg { width: 26px; height: 26px; fill: #fff; stroke: none; }
  .bottom-nav__call .bottom-nav__label { color: var(--green); margin-top: 2px; }

  /* Keep page content and the floating WhatsApp clear of the bar */
  body { padding-bottom: 92px; }
  .fab-whatsapp { bottom: 96px; }

  /* Hide the bar while the slide-out menu is open */
  body.menu-open .bottom-nav { display: none; }
}

/* ============================================================
   Slide-up menu (bottom sheet) — opened by the "More" button
============================================================ */
.sheet-backdrop {
  position: fixed; inset: 0;
  background: rgba(16, 33, 26, .5);
  opacity: 0; pointer-events: none;
  transition: opacity .28s ease;
  z-index: 90;
}
.sheet-backdrop.open { opacity: 1; pointer-events: auto; }

.sheet {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 100;
  background: #fff;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -18px 44px -16px rgba(16,33,26,.4);
  max-height: 88vh;
  display: flex; flex-direction: column;
  transform: translateY(100%);
  transition: transform .32s cubic-bezier(.22,.61,.36,1);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.sheet.open { transform: translateY(0); }

.sheet__handle {
  width: 44px; height: 5px; border-radius: 3px;
  background: #d6e0d6; margin: 10px auto 2px;
  flex: none;
}
.sheet__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 22px 12px;
  flex: none;
}
.sheet__title { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.35rem; color: var(--ink); }
.sheet__close {
  background: none; border: 0; cursor: pointer; color: var(--muted);
  padding: 6px; display: grid; place-items: center; border-radius: 8px;
}
.sheet__close svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.sheet__close:hover { color: var(--ink); }

.sheet__body {
  overflow-y: auto;
  padding: 0 22px 22px;
  -webkit-overflow-scrolling: touch;
}
.sheet__link {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 2px;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: 1.15rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.sheet__link:hover, .sheet__link:focus-visible { color: var(--green); }
.sheet__link .chev { width: 20px; height: 20px; flex: none; fill: none; stroke: #b7c3b7; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sheet__link:hover .chev { stroke: var(--green); }

.sheet__section {
  font-family: "Poppins", sans-serif; font-weight: 700; font-size: .78rem;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted);
  padding: 20px 2px 6px;
}
.sheet__link--sub { font-weight: 500; font-size: 1.05rem; color: var(--body); }

.sheet__call {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 22px;
  padding: 16px;
  background: var(--green); color: #fff;
  font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.15rem;
  border-radius: 14px;
  box-shadow: 0 12px 26px -10px rgba(22,166,55,.7);
}
.sheet__call:hover { background: var(--green-hover); }
.sheet__call svg { width: 22px; height: 22px; fill: #fff; }

body.sheet-open { overflow: hidden; }
body.sheet-open .bottom-nav { display: none; }

/* ============================================================
   Header mobile CTAs — Call + Schedule (injected by script.js)
============================================================ */
.header-mcta { display: none; }

@media (max-width: 720px) {
  .header-mcta {
    display: flex; align-items: center; gap: 8px;
    margin-left: auto;
  }
  .header-mcta__btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 14px; border-radius: 11px;
    font-family: "Poppins", sans-serif; font-weight: 700; font-size: .84rem;
    white-space: nowrap; color: #fff;
    box-shadow: var(--shadow-sm);
    transition: background .18s ease, transform .15s ease;
  }
  .header-mcta__btn:active { transform: translateY(1px); }
  .header-mcta__btn svg { width: 16px; height: 16px; flex: none; }
  .header-mcta__call { background: var(--green); }
  .header-mcta__call:hover { background: var(--green-hover); }
  .header-mcta__call svg { fill: #fff; }
  .header-mcta__book { background: var(--green-dark); }
  .header-mcta__book:hover { background: #264c18; }
  .header-mcta__book svg { fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
}

/* Very small phones: tighten so both buttons fit */
@media (max-width: 390px) {
  .header-mcta { gap: 6px; }
  .header-mcta__btn { padding: 8px 11px; font-size: .78rem; gap: 5px; }
  .header .brand img { width: 140px; height: auto; }
}

/* ============================================================
   Promo modal (home only) — appears 5s after load
============================================================ */
.promo {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: 20px;
  background: rgba(9, 16, 9, .64);
  opacity: 0; visibility: hidden;
  transition: opacity .8s ease, visibility .8s ease;
}
.promo.open { opacity: 1; visibility: visible; }

.promo__card {
  position: relative; width: 100%; max-width: 420px;
  background: #182818; color: #fff;
  border: 1px solid rgba(120, 200, 120, .18);
  border-radius: 20px;
  padding: 42px 28px 28px; text-align: center;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.7);
  opacity: 0; transform: translateY(16px) scale(.98);
  transition: transform .8s cubic-bezier(.16,1,.3,1), opacity .8s ease;
}
.promo.open .promo__card { opacity: 1; transform: none; }

.promo__close {
  position: absolute; top: 14px; right: 14px;
  background: none; border: 0; cursor: pointer;
  color: rgba(255,255,255,.6);
  padding: 6px; display: grid; place-items: center; border-radius: 8px;
}
.promo__close:hover { color: #fff; background: rgba(255,255,255,.08); }
.promo__close svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

.promo__ico {
  width: 66px; height: 66px; border-radius: 50%;
  margin: 0 auto 18px; display: grid; place-items: center;
  background: rgba(22,166,55,.16);
  border: 1px solid rgba(22,166,55,.45);
}
.promo__ico svg { width: 30px; height: 30px; fill: none; stroke: var(--green); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.promo__title {
  font-family: "Poppins", sans-serif; font-weight: 800;
  font-size: 1.7rem; line-height: 1.15; color: #fff; margin-bottom: 10px;
}
.promo__text { color: rgba(255,255,255,.72); font-size: .98rem; line-height: 1.5; margin-bottom: 26px; }

.promo__btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 15px 16px; border-radius: 12px;
  font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.02rem;
  transition: background .18s ease;
}
.promo__btn + .promo__btn { margin-top: 12px; }
.promo__btn svg { width: 20px; height: 20px; flex: none; }
.promo__btn--primary { background: var(--green); color: #fff; }
.promo__btn--primary:hover { background: var(--green-hover); }
.promo__btn--primary svg { fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.promo__btn--secondary { background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.promo__btn--secondary:hover { background: rgba(255,255,255,.12); }
.promo__btn--secondary svg { fill: #fff; }

body.promo-open { overflow: hidden; }

/* ============================================================
   Real photos — About image + "Our Work" carousel
============================================================ */
.about__media img.about__photo {
  width: 100%; max-width: none; padding: 0; background: none;
  border-radius: 24px; box-shadow: var(--shadow);
  aspect-ratio: 4 / 5; object-fit: cover;
}
/* Desktop: match the photo height to the text column (aligned top & bottom) */
@media (min-width: 961px) {
  .about__grid { align-items: stretch; }
  .about__media { position: relative; }
  .about__media img.about__photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    aspect-ratio: auto; object-fit: cover; object-position: center 35%;
  }
}

/* ---------- "Our Work" carousel — one square photo at a time ---------- */
/* Grid areas, so the arrows sit OUTSIDE the photo and can move below it on
   narrow screens without touching the markup order. */
.carousel { display: grid; align-items: center; justify-content: center;
  grid-template-columns: auto minmax(0, 620px) auto;
  grid-template-areas: "prev view next"
                       "status status status";
  column-gap: 16px; row-gap: 12px; max-width: 780px; margin-inline: auto; }
.carousel__viewport { grid-area: view; overflow: hidden; border-radius: 18px;
  box-shadow: var(--shadow-sm); background: #fff; }
.carousel__track { display: flex; will-change: transform;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1); }
.carousel__slide { flex: 0 0 100%; margin: 0; min-width: 0; }
.carousel__slide img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover;
  display: block; }

.carousel__nav { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%;
  cursor: pointer; display: grid; place-items: center; color: var(--green-dark);
  background: #fff; box-shadow: var(--shadow-sm);
  transition: background-color .18s, color .18s, border-color .18s; }
.carousel__nav:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.carousel__nav:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.carousel__nav--prev { grid-area: prev; }
.carousel__nav--next { grid-area: next; }

/* Slide counter — also the aria-live region announcing each change. */
.carousel__status { grid-area: status; text-align: center; font-family: "Poppins", sans-serif;
  font-weight: 600; font-size: .82rem; color: var(--muted); }

/* Narrow screens: photo full width, controls in a row underneath. */
@media (max-width: 700px) {
  .carousel { grid-template-columns: auto 1fr auto;
    grid-template-areas: "view view view"
                         "prev status next";
    column-gap: 10px; }
  .carousel__nav { width: 40px; height: 40px; }
}
@media (prefers-reduced-motion: reduce) { .carousel__track { transition: none; } }

/* ============================================================
   Photo hero modifier — dark image background + white text.
   Reusable on the home hero (.hero) and any service hero (.svc-hero).
   Placed last so it overrides the base .hero / .svc-hero backgrounds.
============================================================ */
.hero--photo {
  position: relative;
  background:
    linear-gradient(180deg, rgba(16,33,26,.86) 0%, rgba(16,33,26,.72) 50%, rgba(16,33,26,.82) 100%),
    url("assets/airduct-residential.jpg") center 28% / cover no-repeat;
}
/* Brand gold, same token as the reviews heading — replaces the promo orange
   that came with the old "special offers" eyebrow copy. */
.hero--photo .hero__eyebrow { color: var(--gold); }
.hero--photo .hero__title,
.hero--photo .svc-hero__title { color: #fff; }
.hero--photo .hero__lead,
.hero--photo .svc-hero__lead { color: rgba(255,255,255,.85); }
.hero--photo .hero__points li { color: #fff; }
/* Over the dark photo hero the badge needs a deeper shadow to separate. */
.hero--photo .hero__deal { box-shadow: 0 6px 20px -6px rgba(0,0,0,.55); }
.hero--photo .hero__trust { color: rgba(255,255,255,.85); }
.hero--photo .hero__trust strong { color: #fff; }
.hero--photo .breadcrumb,
.hero--photo .breadcrumb a { color: rgba(255,255,255,.8); }
.hero--photo .breadcrumb a:hover { color: #fff; }

/* ============================================================
   Single blog article — TOC / authority / TL;DR / aside layout
   Only the article page uses these; every value is an existing token.
============================================================ */

/* Reading progress: fixed above the sticky header, width driven by script.js */
.read-progress { position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 120;
  background: transparent; pointer-events: none; }
.read-progress__bar { height: 100%; width: 0; background: var(--green);
  transition: width .1s linear; }

.article-hero__badge { display: inline-block; margin-left: 8px; padding: 2px 9px;
  border-radius: 999px; background: var(--green); color: #fff; font-size: .62rem;
  letter-spacing: .06em; vertical-align: middle; }
.article-hero__dek { font-size: 1.1rem; color: var(--body); max-width: 62ch;
  margin: 0 0 22px; }

/* Author + dates: says who wrote this before the reader commits to reading. */
.authority { display: flex; flex-wrap: wrap; gap: 18px 30px; align-items: center;
  justify-content: space-between; padding: 16px 0 0; border-top: 1px solid var(--line); }
.authority__who { display: flex; align-items: center; gap: 12px; }
.authority__avatar { flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-dark); color: #fff; display: grid; place-items: center;
  font-family: "Poppins", sans-serif; font-weight: 700; font-size: .82rem; }
.authority__meta { display: flex; flex-direction: column; line-height: 1.35; }
.authority__by { font-size: .74rem; text-transform: uppercase; letter-spacing: .07em;
  color: var(--muted); }
.authority__name { font-family: "Poppins", sans-serif; font-size: .96rem; color: var(--ink); }
.authority__creds { font-size: .82rem; color: var(--muted); }
.authority__dates { display: flex; gap: 26px; }
.authority__dates > div { display: flex; flex-direction: column; }
.authority__lbl { font-size: .7rem; text-transform: uppercase; letter-spacing: .07em;
  color: var(--muted); }
.authority__val { font-family: "Poppins", sans-serif; font-weight: 600; font-size: .88rem;
  color: var(--ink); }
.authority__val--upd { color: var(--green); }

.article-featured { margin: 0; padding-block: 26px 0; }
.article-featured img { width: 100%; height: auto; border-radius: 18px;
  box-shadow: var(--shadow-sm); }
.article-featured figcaption { margin-top: 10px; font-size: .84rem; color: var(--muted);
  text-align: center; }

/* Three columns on desktop: TOC, article, aside. The article keeps a readable
   measure while the rails carry navigation and the CTA. */
.article-shell { display: grid; grid-template-columns: 200px minmax(0, 720px) 260px;
  gap: 40px; justify-content: center; padding-block: clamp(30px, 4vw, 50px); }

.toc-col { position: sticky; top: 100px; align-self: start; }
.toc-col__label { font-family: "Poppins", sans-serif; font-weight: 600; font-size: .74rem;
  text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 12px; }
.toc-list { list-style: none; display: grid; gap: 2px; border-left: 2px solid var(--line); }
.toc-list a { display: block; padding: 6px 0 6px 14px; margin-left: -2px;
  border-left: 2px solid transparent; font-size: .86rem; color: var(--body);
  transition: color .15s, border-color .15s; }
.toc-list a:hover { color: var(--green-dark); }
.toc-list a.is-current { color: var(--green-dark); font-weight: 600;
  border-left-color: var(--green); }

.article-main > :first-child { margin-top: 0; }
.article-main h2 { font-size: 1.5rem; margin: 38px 0 12px; scroll-margin-top: 100px; }
.article-main h3 { font-size: 1.15rem; margin: 26px 0 8px; }
.article-main p { margin-bottom: 16px; font-size: 1.03rem; }
.article-main ul, .article-main ol { margin: 0 0 18px 22px; display: grid; gap: 8px; }
.article-main li { font-size: 1.03rem; }
.h2-num { display: inline-block; margin-right: 10px; font-size: .72rem; font-weight: 700;
  color: var(--green); vertical-align: 3px; }

/* Short answer, kept self-contained so a featured snippet or an AI summary can
   lift it without needing the paragraphs around it. */
.tldr { background: var(--bg-alt); border: 1px solid var(--line);
  border-left: 4px solid var(--green); border-radius: var(--radius-sm);
  padding: 18px 22px; margin-bottom: 26px; scroll-margin-top: 100px; }
.tldr__label { font-family: "Poppins", sans-serif; font-weight: 700; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .08em; color: var(--green-dark);
  margin-bottom: 8px; }
.tldr__body { font-size: 1.05rem; margin: 0; color: var(--ink); }

.inline-cta { display: flex; flex-wrap: wrap; gap: 14px 20px; align-items: center;
  justify-content: space-between; margin: 30px 0; padding: 18px 22px;
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); }
.inline-cta__text { margin: 0; font-size: .98rem; }

.faq-list { display: grid; gap: 10px; margin-bottom: 34px; }
.faq-list .faq { border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; padding: 14px 18px; }
.faq-list .faq summary { font-family: "Poppins", sans-serif; font-weight: 600;
  font-size: .98rem; color: var(--ink); cursor: pointer; }
.faq-list .faq[open] summary { margin-bottom: 10px; color: var(--green-dark); }
.faq-list .faq p { margin: 0; font-size: .98rem; }

.author-bio { display: flex; gap: 18px; margin: 34px 0; padding: 22px;
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); }
.author-bio__photo { flex: none; width: 66px; height: 66px; border-radius: 50%;
  background: var(--green-dark); color: #fff; display: grid; place-items: center;
  font-family: "Poppins", sans-serif; font-weight: 700; }
.author-bio h3 { margin: 0 0 2px; font-size: 1.08rem; }
.author-bio__creds { font-size: .84rem; color: var(--muted); margin-bottom: 10px; }
.author-bio p { font-size: .95rem; margin-bottom: 10px; }
.author-bio__links { font-size: .88rem; color: var(--muted); margin: 0; }
.author-bio__links a { color: var(--green-dark); font-weight: 600; }

.references { margin: 34px 0; scroll-margin-top: 100px; }
.references h3 { font-size: 1.05rem; margin-bottom: 12px; }
.references ol { margin: 0 0 12px 20px; display: grid; gap: 10px; }
.references li { font-size: .9rem; color: var(--body); }
.references a { color: var(--green-dark); text-decoration: underline; }
.src-tag { display: inline-block; margin-left: 6px; padding: 1px 7px; border-radius: 999px;
  background: var(--bg-alt); border: 1px solid var(--line); font-size: .68rem;
  font-weight: 700; color: var(--muted); }
.references__note { font-size: .84rem; color: var(--muted); margin: 0; }

.aside-col { position: sticky; top: 100px; align-self: start; display: grid; gap: 16px; }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow-sm); }
.aside-card--cta { background: var(--bg-alt); }
.aside-card h4 { font-size: 1rem; margin-bottom: 6px; }
.aside-card p { font-size: .88rem; color: var(--body); margin-bottom: 12px; }
.aside-card__phone { font-size: .84rem; color: var(--muted); text-align: center;
  margin: 10px 0 0; }
.aside-card__phone a { color: var(--green-dark); font-weight: 700; }
.btn--block { width: 100%; justify-content: center; }
.aside-links { list-style: none; display: grid; gap: 10px; margin: 0; }
.aside-links a { display: flex; flex-direction: column; font-family: "Poppins", sans-serif;
  font-weight: 600; font-size: .88rem; color: var(--ink); line-height: 1.3; }
.aside-links a:hover { color: var(--green); }
.aside-links span { font-family: "Inter", sans-serif; font-weight: 400; font-size: .78rem;
  color: var(--muted); margin-top: 2px; }

/* Sticky CTA: revealed by script.js once the reader is into the article, and
   dismissable, since it shares the bottom-right corner with the WhatsApp FAB. */
.sticky-cta { position: fixed; left: 50%; transform: translateX(-50%); bottom: 18px;
  z-index: 95; display: flex; align-items: center; gap: 16px;
  max-width: min(620px, calc(100vw - 32px)); padding: 12px 16px; background: #fff;
  border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow); }
.sticky-cta[hidden] { display: none; }
.sticky-cta__text { margin: 0; font-size: .88rem; }
.sticky-cta__close { flex: none; width: 28px; height: 28px; border: 0; border-radius: 50%;
  background: var(--bg-alt); color: var(--body); font-size: 1.1rem; line-height: 1;
  cursor: pointer; }
.sticky-cta__close:hover { background: var(--line); }

@media (max-width: 1180px) {
  .article-shell { grid-template-columns: 190px minmax(0, 700px); }
  .aside-col { display: none; }
}
@media (max-width: 960px) {
  .article-shell { grid-template-columns: minmax(0, 1fr); max-width: 720px; }
  .toc-col { position: static; }
  .toc-list { display: flex; flex-wrap: wrap; gap: 4px 6px; border-left: 0; }
  .toc-list a { border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px;
    margin-left: 0; font-size: .8rem; }
  .toc-list a.is-current { border-color: var(--green); }
}
@media (max-width: 560px) {
  .authority { gap: 14px; }
  .authority__dates { gap: 18px; }
  .author-bio { flex-direction: column; gap: 12px; }
  .sticky-cta { gap: 10px; padding: 10px 12px; border-radius: var(--radius); }
  .sticky-cta__text { font-size: .8rem; }
  /* .btn is nowrap site-wide, and this CTA carries a long service name that
     otherwise pushes past the viewport. Let it wrap and fill the card. */
  .article__cta .btn { white-space: normal; width: 100%; line-height: 1.25; }
}
@media (prefers-reduced-motion: reduce) { .read-progress__bar { transition: none; } }
