/* ==========================================================================
   Rhonda G House Cleaning — Longmont, CO
   Global stylesheet / design system
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette — matched to the Rhonda G logo: blues only */
  --brand:        #1668b8;   /* mop-handle blue    */
  --brand-dark:   #0f57a0;
  --brand-darker: #0b3f75;
  --brand-light:  #cdeff1;
  --brand-tint:   #e9f8f9;
  --accent:       #98e0e3;   /* light sky accent   */
  --accent-dark:  #6cc9cd;

  /* Neutrals */
  --ink:      #102a40;       /* near-black w/ blue undertone */
  --body:     #3c4f61;
  --muted:    #68798b;
  --line:     #d8ecee;
  --surface:  #ffffff;
  --surface-2:#f3fafb;
  --surface-3:#e8f6f7;

  /* Effects */
  --radius:   14px;
  --radius-lg:22px;
  --radius-sm:9px;
  --shadow-sm: 0 2px 8px rgba(13,43,71,.06);
  --shadow:    0 10px 30px rgba(13,43,71,.10);
  --shadow-lg: 0 24px 60px rgba(13,43,71,.16);
  --ring:     0 0 0 4px rgba(22,104,184,.18);

  /* Type */
  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --container: 1160px;
  --gap: clamp(1rem, 3vw, 2rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--surface);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-dark); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--brand); }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p  { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.35rem, 4vw, 2rem); }
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--tint  { background: var(--surface-2); }
.section--brand { background: linear-gradient(160deg, var(--brand-darker), var(--brand-dark)); color: #cdeff1; }
.section--brand h2, .section--brand h3 { color: #fff; }
.center { text-align: center; }
.narrow { max-width: 720px; margin-inline: auto; }
.grid { display: grid; gap: var(--gap); }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px)  { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 719px)  { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head);
  font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-dark); background: var(--brand-light);
  padding: .4rem .85rem; border-radius: 100px; margin-bottom: 1.1rem;
}
.section--brand .eyebrow { color: #fff; background: rgba(255,255,255,.14); }
.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p { color: var(--muted); font-size: 1.06rem; }
.section--brand .section-head p { color: #cdeff1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center; line-height: 1.2;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(22,104,184,.28); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(22,104,184,.36); }
.btn-accent { background: var(--accent); color: #0b2540; box-shadow: 0 8px 20px rgba(108,201,205,.35); }
.btn-accent:hover { background: var(--accent-dark); color: #082036; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--brand-dark); border-color: var(--brand); }
.btn-ghost:hover { background: var(--brand); color: #fff; }
.btn-white { background:#fff; color: var(--brand-dark); }
.btn-white:hover { background: var(--brand-tint); color: var(--brand-darker); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color:#fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background:#fff; color: var(--brand-dark); }
.btn-lg { padding: 1rem 2rem; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.topbar {
  background: var(--brand-darker); color: #cdeff1;
  font-size: .86rem; letter-spacing: .01em;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 40px; flex-wrap: wrap; }
.topbar a { color: #eef7fe; font-weight: 500; }
.topbar a:hover { color: #fff; }
.topbar__left { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: .4rem; }
.topbar__item svg { width: 15px; height: 15px; opacity: .85; }
.topbar__social { display: flex; gap: .7rem; }
.topbar__social a { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.12); }
.topbar__social svg { width: 14px; height: 14px; }
@media (max-width: 720px) { .topbar { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__logo { height: 50px; width: auto; }
@media (max-width: 480px) { .brand__logo { height: 42px; } }

.nav__links { display: flex; align-items: center; gap: .25rem; }
.nav__links a {
  font-family: var(--font-head); font-weight: 500; font-size: .96rem; color: var(--ink);
  padding: .55rem .8rem; border-radius: 8px;
}
.nav__links a:hover { background: var(--brand-tint); color: var(--brand-dark); }
.nav__links a.active { color: var(--brand-dark); }
.nav__links a.active::after {
  content: ""; display: block; height: 2px; border-radius: 2px; background: var(--brand);
  margin: 3px .8rem 0;
}
.nav__cta { display: flex; align-items: center; gap: .6rem; }

.nav__toggle {
  display: none; background: none; border: 0; width: 44px; height: 44px; border-radius: 10px;
  align-items: center; justify-content: center;
}
.nav__toggle span { position: relative; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }
.nav__toggle span::before, .nav__toggle span::after { content:""; position:absolute; left:0; width:24px; height:2px; background: var(--ink); border-radius:2px; transition:.2s; }
.nav__toggle span::before { top:-7px; } .nav__toggle span::after { top:7px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top:0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { top:0; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px); z-index: 45;
    background: #fff; box-shadow: var(--shadow-lg);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 5.5rem 1.4rem 2rem; transform: translateX(100%);
    transition: transform .28s cubic-bezier(.4,0,.2,1); overflow-y: auto;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__links { flex-direction: column; align-items: stretch; gap: .1rem; }
  .nav__links a { padding: .85rem .6rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__links a.active::after { display: none; }
  .nav__cta { flex-direction: column; align-items: stretch; margin-top: 1.2rem; }
  .nav__cta .btn { width: 100%; }
  body.nav-open { overflow: hidden; }
  .nav__scrim { position: fixed; inset: 0; background: rgba(13,43,71,.45); opacity: 0; visibility: hidden; transition: .28s; z-index: 40; }
  .nav__scrim.show { opacity: 1; visibility: visible; }
}
@media (min-width: 961px) {
  .nav__scrim { display: none; }
  /* One row: brand left — links + CTA buttons together on the right */
  .nav__menu { display: flex; align-items: center; gap: clamp(.6rem, 1.8vw, 1.5rem); margin-left: auto; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(108,201,205,.14), transparent 60%),
    linear-gradient(155deg, var(--brand-tint) 0%, #ffffff 55%);
}
.hero__inner { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; padding-block: clamp(3rem, 7vw, 5.5rem); }
@media (min-width: 900px) { .hero__inner { grid-template-columns: 1.05fr .95fr; } }
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 .accent { color: var(--brand); }
.hero__lead { font-size: 1.16rem; color: var(--body); max-width: 34ch; margin-bottom: 1.7rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.3rem 1.8rem; align-items: center; }
.hero__trust-item { display: inline-flex; align-items: center; gap: .5rem; font-size: .92rem; font-weight: 500; color: var(--body); }
.hero__trust-item svg { width: 20px; height: 20px; color: var(--brand); flex: none; }
.stars { color: var(--accent); letter-spacing: 2px; }

.hero__media { position: relative; }
.hero__photo {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: var(--brand-light);
}
.hero__badge {
  position: absolute; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: .85rem 1.1rem; display: flex; align-items: center; gap: .7rem;
}
.hero__badge svg { width: 34px; height: 34px; color: var(--brand); flex: none; }
.hero__badge strong { display: block; font-family: var(--font-head); color: var(--ink); font-size: 1.05rem; }
.hero__badge span { font-size: .8rem; color: var(--muted); }
.hero__badge--tl { top: 1.1rem; left: -1rem; }
.hero__badge--br { bottom: 1.3rem; right: -1rem; }
@media (max-width: 520px) { .hero__badge--tl, .hero__badge--br { position: static; margin: .6rem 0; } .hero__badge { display: inline-flex; } }

/* Static brand visual used in place of the hero photo */
.hero__photo--brand {
  background:
    radial-gradient(ellipse at 75% 15%, rgba(152, 224, 227, 0.18), transparent 55%),
    linear-gradient(160deg, #0b2036 0%, #0f3a60 70%, #1668b8 135%);
  display: grid; place-items: center;
}
.hero__visual { text-align: center; padding: 2rem; }
.hero__visual img { width: min(80%, 360px); margin: 0 auto 1.4rem; }
.hero__visual p {
  color: #d6f3f4; font-family: var(--font-head); font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; font-size: .82rem; margin: 0;
}

/* Real photos inside photo frames */
.svc-block__media { position: relative; }
.hero__photo > img,
.gallery-item > img,
.svc-block__media > img,
.svc-block__media > iframe,
.ba-card__img > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__photo { position: relative; }

/* ==========================================================================
   Photo placeholders (drop real photos in later)
   ========================================================================== */
.photo-ph {
  position: relative; display: grid; place-items: center; text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(22,104,184,.05) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, var(--brand-light), var(--brand-tint));
  color: var(--brand-dark); width: 100%; height: 100%; min-height: 180px;
  border-radius: inherit;
}
.photo-ph__inner { padding: 1rem; }
.photo-ph svg { width: 40px; height: 40px; opacity: .55; margin: 0 auto .5rem; }
.photo-ph small { display: block; font-size: .72rem; letter-spacing: .06em; opacity: .8; margin-top: .2rem; }
.photo-ph b { font-family: var(--font-head); font-size: .92rem; }

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-light); }

/* Service card */
.service-card { display: flex; flex-direction: column; }
.service-card__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--brand-tint); color: var(--brand); margin-bottom: 1.1rem;
}
.service-card__icon svg { width: 30px; height: 30px; }
.service-card h3 { margin-bottom: .5rem; }
.service-card p { color: var(--muted); font-size: .96rem; margin-bottom: 1.1rem; }
.service-card__link {
  margin-top: auto; font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  display: inline-flex; align-items: center; gap: .4rem;
}
.service-card__link svg { width: 16px; height: 16px; transition: transform .18s ease; }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* Feature (why-us) */
.feature { text-align: left; }
.feature__icon {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; color: var(--brand); box-shadow: var(--shadow-sm); margin-bottom: 1rem;
}
.section--brand .feature__icon { background: rgba(255,255,255,.12); color:#fff; box-shadow:none; }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: .4rem; }
.feature p { color: var(--muted); font-size: .96rem; }
.section--brand .feature p { color: #cdeff1; }

/* Step */
.step { position: relative; padding-left: 0; }
.step__num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--brand); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; display: grid; place-items: center;
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .96rem; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial { display: flex; flex-direction: column; gap: 1rem; }
.testimonial .stars { font-size: 1.1rem; }
.testimonial__quote { font-size: 1.02rem; color: var(--body); font-style: italic; }
.testimonial__person { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.testimonial__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--brand); color: #fff; font-family: var(--font-head); font-weight: 600;
}
.testimonial__name { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: .98rem; }
.testimonial__loc { font-size: .84rem; color: var(--muted); }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(108,201,205,.14), transparent 60%),
    linear-gradient(160deg, var(--brand-darker), var(--brand-dark));
  color: #cdeff1; text-align: center; padding: clamp(3rem, 7vw, 5rem) 0 clamp(3.4rem, 8vw, 5.5rem);
  position: relative;
}
.page-hero h1 { color: #fff; margin-bottom: .8rem; }
.page-hero p { max-width: 620px; margin-inline: auto; color: #cdeff1; font-size: 1.1rem; }
.breadcrumb { display: flex; justify-content: center; gap: .5rem; font-size: .86rem; margin-bottom: 1.2rem; color: #a9d8d0; }
.breadcrumb a { color: #cdeff1; } .breadcrumb a:hover { color:#fff; }
.breadcrumb span { opacity: .6; }

/* ==========================================================================
   Detailed service blocks
   ========================================================================== */
.svc-block { display: grid; gap: clamp(1.5rem,4vw,3rem); align-items: center; }
@media (min-width: 860px) {
  .svc-block { grid-template-columns: 1fr 1fr; }
  .svc-block--rev .svc-block__media { order: 2; }
}
.svc-block__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.svc-block__tag {
  display: inline-flex; align-items:center; gap:.5rem; font-family: var(--font-head); font-weight:600;
  color: var(--brand-dark); background: var(--brand-light); padding:.35rem .8rem; border-radius:100px;
  font-size:.82rem; margin-bottom: 1rem;
}
.svc-list { display: grid; gap: .6rem; margin: 1.2rem 0 1.5rem; }
.svc-list li { display: flex; gap: .65rem; align-items: flex-start; font-size: .98rem; }
.svc-list svg { width: 20px; height: 20px; color: var(--brand); flex: none; margin-top: 2px; }

/* ==========================================================================
   Pricing / info tiles
   ========================================================================== */
.info-tile { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; }
.info-tile h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.info-tile p { color: var(--muted); font-size: .94rem; }

/* ==========================================================================
   FAQ / accordion
   ========================================================================== */
.faq { max-width: 800px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: .8rem; overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; padding: 1.15rem 1.3rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__q:hover { color: var(--brand-dark); }
.faq__icon { flex: none; width: 22px; height: 22px; position: relative; }
.faq__icon::before, .faq__icon::after { content:""; position:absolute; background: var(--brand); border-radius:2px; transition:.25s; }
.faq__icon::before { top: 10px; left: 2px; right: 2px; height: 2px; }
.faq__icon::after  { left: 10px; top: 2px; bottom: 2px; width: 2px; }
.faq__item.open .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a-inner { padding: 0 1.3rem 1.2rem; color: var(--muted); font-size: .98rem; }

/* ==========================================================================
   Forms / GHL embed placeholders
   ========================================================================== */
.form-shell { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(1.4rem, 4vw, 2.4rem); }
.ghl-embed {
  position: relative; border: 2px dashed var(--brand); border-radius: var(--radius);
  background: var(--brand-tint); padding: 2.2rem 1.4rem; text-align: center; color: var(--brand-dark);
  min-height: 260px; display: grid; place-items: center;
}
.ghl-embed__badge {
  position: absolute; top: 10px; right: 12px; font-family: var(--font-head); font-weight:600;
  font-size: .66rem; letter-spacing: .1em; text-transform: uppercase;
  background: var(--brand); color:#fff; padding:.25rem .6rem; border-radius: 100px;
}
.ghl-embed svg { width: 46px; height: 46px; margin: 0 auto 1rem; opacity: .7; }
.ghl-embed h3 { color: var(--brand-darker); margin-bottom: .5rem; }
.ghl-embed p { color: var(--brand-dark); font-size: .95rem; max-width: 46ch; margin-inline: auto; }
.ghl-embed code { background: rgba(15,87,160,.12); padding: .1rem .4rem; border-radius: 6px; font-size: .85em; }
/* GHL iframes, once pasted, get clean sizing */
.ghl-embed iframe, .ghl-live iframe { width: 100% !important; border: 0; border-radius: var(--radius); }

/* ---------- Native fallback form (styled, in case owner wants HTML forms) ---------- */
.field { margin-bottom: 1.1rem; text-align: left; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: .4rem; }
.field .req { color: #d9534f; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; font-size: .98rem; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: var(--ring); }
.field textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .3rem; }

/* ==========================================================================
   Newsletter (footer)
   ========================================================================== */
.newsletter { background: linear-gradient(150deg, var(--brand), var(--brand-dark)); color:#fff; border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.6rem); box-shadow: var(--shadow); }
.newsletter h3 { color:#fff; font-size: 1.5rem; margin-bottom: .4rem; }
.newsletter p { color:#d6f3f4; margin-bottom: 1.3rem; }
.newsletter .ghl-embed { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.1); color:#eef7fe; min-height: auto; padding: 1.4rem; }
.newsletter .ghl-embed h3 { color:#fff; } .newsletter .ghl-embed p { color:#eef7fe; }
.newsletter .ghl-embed__badge { background:#fff; color: var(--brand-dark); }
/* simple inline fallback newsletter input */
.news-form { display: flex; gap: .6rem; flex-wrap: wrap; }
.news-form input { flex: 1 1 220px; padding: .8rem 1rem; border-radius: 100px; border: 0; font: inherit; }
.news-form .btn { flex: none; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background:
    radial-gradient(800px 300px at 15% 120%, rgba(108,201,205,.22), transparent 60%),
    linear-gradient(150deg, var(--brand-dark), var(--brand-darker));
  color:#fff; text-align:center; border-radius: var(--radius-lg); padding: clamp(2.4rem, 6vw, 4rem);
  box-shadow: var(--shadow);
}
.cta-band h2 { color:#fff; margin-bottom: .7rem; }
.cta-band p { color:#d6f3f4; max-width: 52ch; margin: 0 auto 1.6rem; font-size: 1.08rem; }
.cta-band__actions { display:flex; gap:.8rem; justify-content:center; flex-wrap: wrap; }

/* ==========================================================================
   Stats strip
   ========================================================================== */
.stats { display: grid; gap: 1.5rem; grid-template-columns: repeat(2,1fr); }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4,1fr); } }
.stat { text-align: center; }
.stat__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--brand); line-height: 1; }
.section--brand .stat__num { color: var(--accent); }
.stat__label { font-size: .9rem; color: var(--muted); margin-top: .3rem; }
.section--brand .stat__label { color:#cdeff1; }

/* ==========================================================================
   Logos / trust row
   ========================================================================== */
.trust-row { display: flex; flex-wrap: wrap; gap: 1rem 2.4rem; justify-content: center; align-items: center; }
.trust-chip { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 600; color: var(--body); font-size: .95rem; }
.trust-chip svg { width: 26px; height: 26px; color: var(--brand); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.gallery-item .photo-ph { min-height: 100%; }
.gallery-item__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .7rem .9rem;
  background: linear-gradient(transparent, rgba(11,63,117,.82)); color:#fff;
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
}
/* before/after */
.ba-grid { display: grid; gap: 1.5rem; }
@media (min-width: 720px) { .ba-grid { grid-template-columns: 1fr 1fr; } }
.ba-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background:#fff; border: 1px solid var(--line); }
.ba-card__imgs { display: grid; grid-template-columns: 1fr 1fr; }
.ba-card__img { position: relative; aspect-ratio: 1; }
.ba-card__img span { position: absolute; top: .6rem; left: .6rem; background: var(--ink); color:#fff; font-size:.7rem; font-weight:600; padding:.2rem .55rem; border-radius:100px; font-family: var(--font-head); letter-spacing:.05em; }
.ba-card__img:last-child span { background: var(--brand); }
.ba-card__body { padding: 1rem 1.2rem; }
.ba-card__body h3 { font-size: 1.05rem; margin-bottom: .2rem; }
.ba-card__body p { color: var(--muted); font-size: .9rem; }

/* Live embed shells (GHL widgets) */
.ghl-live { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(.6rem, 1.5vw, 1rem); box-shadow: var(--shadow-sm); }
.ghl-live--flush { background: transparent; border: 0; padding: 0; box-shadow: none; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: #b6c8da; padding-top: clamp(3rem, 6vw, 4.5rem); font-size: .95rem; }
.footer-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  background:
    radial-gradient(700px 260px at 12% 130%, rgba(152, 224, 227, 0.25), transparent 60%),
    linear-gradient(150deg, var(--brand), var(--brand-dark));
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem); box-shadow: var(--shadow);
}
.footer-cta h3 { color: #fff; font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin: 0 0 .25rem; }
.footer-cta p { color: #d6f3f4; margin: 0; }
.footer-brand .brand__logo { height: 64px; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 980px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer-brand .brand__name { color:#fff; } .footer-brand .brand__tag { color: var(--brand-light); }
.footer-brand p { margin: 1rem 0; max-width: 34ch; color:#9db2c6; }
.footer-social { display: flex; gap: .7rem; }
.footer-social a { display: inline-grid; place-items:center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); color:#cdeff1; }
.footer-social a:hover { background: var(--brand); color:#fff; }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color:#fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col a { color:#b6c8da; } .footer-col a:hover { color:#fff; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .8rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--brand-light); flex: none; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: 1.4rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .85rem; color: #8aa2b8;
}
.footer-bottom a { color: #8aa2b8; } .footer-bottom a:hover { color:#fff; }

/* ==========================================================================
   Legal pages (terms / privacy)
   ========================================================================== */
.legal { max-width: 820px; }
.legal h2 { font-size: 1.35rem; margin: 2.4rem 0 .8rem; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--body); }
.legal ul { list-style: disc; padding-left: 1.5rem; margin: 0 0 1rem; }
.legal li { margin-bottom: .45rem; }

/* ==========================================================================
   Mobile centering pass — when layouts stack into a single column,
   headings, copy, cards, footers and widget shells read centered.
   ========================================================================== */
@media (max-width: 899px) {
  /* Home hero */
  .hero__content { text-align: center; }
  .hero__cta, .hero__trust { justify-content: center; }
  .hero__media { text-align: center; }

  /* Alternating text/media blocks (services, about, contact, pay, estimate) */
  .svc-block > div:not(.svc-block__media) { text-align: center; }
  .svc-block__tag { margin-inline: auto; }
  .svc-list li { justify-content: center; }
  .svc-block .btn { margin-inline: auto; }
  .info-tile { text-align: center; }

  /* Icon info cards (contact / pay pages) — stack icon over centered text */
  .svc-block .card { flex-direction: column !important; align-items: center !important; text-align: center; gap: .7rem !important; }

  /* Founder signature block on the About page */
  .svc-block div[style*="border-top"] { justify-content: center; text-align: center; flex-direction: column; }
}

@media (max-width: 719px) {
  /* Cards, features, steps, before/after captions */
  .card, .service-card, .feature, .step { text-align: center; }
  .service-card__icon, .feature__icon, .step__num { margin-left: auto; margin-right: auto; }
  .service-card__link { justify-content: center; }
  .ba-card__body { text-align: center; }

  /* Widget shells */
  .form-shell { text-align: center; }
  .section-head { text-align: center; }
  .section-head p { margin-inline: auto; }
}

@media (max-width: 639px) {
  /* Footer */
  .footer-grid { text-align: center; }
  .footer-brand .brand { justify-content: center; width: 100%; }
  .footer-brand p { margin-inline: auto; }
  .footer-social { justify-content: center; }
  .footer-contact li { justify-content: center; text-align: left; }
  .footer-cta { flex-direction: column; text-align: center; justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ==========================================================================
   Utilities / motion
   ========================================================================== */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
/* Reveal is a progressive enhancement: hidden state only applies once JS marks
   the document with .js-anim, so no-JS users always see the content. */
.js-anim .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js-anim .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Skip link */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--brand); color:#fff; padding: .6rem 1rem; border-radius: 0 0 8px 0; z-index: 200; }
.skip-link:focus { left: 0; color:#fff; }

/* Floating mobile call button */
.fab-call {
  position: fixed; right: 16px; bottom: 16px; z-index: 45;
  width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color:#0b2540;
  display: none; place-items: center; box-shadow: var(--shadow-lg);
}
.fab-call svg { width: 26px; height: 26px; }
@media (max-width: 720px) { .fab-call { display: grid; } }
