/* ==========================================================================
   Sterland Hart Contractor Template — main.css
   Mobile-first: base styles target 375px; min-width queries enhance upward.
   Client brand enters through three color tokens + one font token only.
   ========================================================================== */

:root {
  --c-primary: #D20A0A;
  --c-dark: #1B1B1B;
  --c-accent: #D20A0A;
  --c-ink: #1c1e21;
  --c-body: #45494e;
  --c-soft: #f5f6f7;
  --c-line: #e4e6e8;
  --c-white: #ffffff;
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(16, 18, 20, 0.08), 0 4px 14px rgba(16, 18, 20, 0.06);
  --shadow-md: 0 6px 24px rgba(16, 18, 20, 0.12);
  --shadow-lg: 0 16px 48px rgba(16, 18, 20, 0.18);
  --header-h: 64px;
  --section-y: clamp(56px, 9vw, 104px);
  --container: 1160px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--c-body);
  background: var(--c-white);
  line-height: 1.65;
  font-size: 16px;
  padding-bottom: 64px; /* room for the mobile sticky bar */
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; }
ul { list-style: none; }
.icon { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 2;
        stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

h1, h2, h3, h4 { color: var(--c-ink); line-height: 1.15; font-weight: 800;
                 letter-spacing: -0.015em; text-wrap: balance; }
h1 { font-size: clamp(2rem, 5.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: var(--section-y) 0; }
.section--soft { background: var(--c-soft); }
.section--dark { background: var(--c-dark); }
.section--dark h2, .section--dark h3 { color: var(--c-white); }
.section--dark p { color: rgba(255, 255, 255, 0.78); }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--c-primary); margin-bottom: 14px;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--c-accent); }
.section-head { max-width: 680px; margin-bottom: clamp(28px, 5vw, 52px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .kicker { justify-content: center; }
.section-head p { margin-top: 12px; font-size: 1.04rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 700; font-size: 0.95rem;
  padding: 15px 28px; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  min-height: 48px; text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--accent { background: var(--c-accent); color: var(--c-white); }
.btn--accent:hover { border-color: var(--c-white); }
.btn--ghost { background: transparent; color: var(--c-white); border-color: rgba(255,255,255,0.55); }
.btn--ghost:hover { border-color: var(--c-white); }
.btn--dark { background: var(--c-dark); color: var(--c-white); }
.btn .icon { font-size: 1.05em; }

/* ---------- Header (transparent over hero, solid white on scroll) ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(8px);
  border-bottom-color: var(--c-line); box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between;
                height: var(--header-h); gap: 16px; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 46px; width: auto; }
/* Logo swaps light (over hero) -> dark (scrolled / menu open).
   Qualified with `img` so these beat the base `.brand img` rule on specificity. */
.brand img.brand__dark { display: none; }
.brand img.brand__light { display: block; }
.site-header.scrolled .brand img.brand__dark, body.nav-open .brand img.brand__dark { display: block; }
.site-header.scrolled .brand img.brand__light, body.nav-open .brand img.brand__light { display: none; }
.nav { display: none; }
.header-cta { display: none; }

/* Header phone: a pressable button, white over the hero, distinct from the accent CTA */
.header-phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 800; font-size: 0.9rem; white-space: nowrap;
  padding: 9px 16px; border-radius: var(--radius);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.10); color: var(--c-white);
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.header-phone .icon { color: var(--c-white); }
.header-phone:hover { background: rgba(255, 255, 255, 0.20); border-color: var(--c-white); transform: translateY(-1px); }
.site-header.scrolled .header-phone {
  background: var(--c-white); color: var(--c-dark); border-color: var(--c-line);
}
.site-header.scrolled .header-phone .icon { color: var(--c-accent); }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0;
  padding: 10px; cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--c-white); border-radius: 2px;
                   transition: transform 0.22s ease, opacity 0.22s ease, background 0.2s ease; }
.site-header.scrolled .nav-toggle span, body.nav-open .nav-toggle span { background: var(--c-dark); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Menu open at the very top: give the bar a solid background so the X + nav read */
body.nav-open .site-header {
  background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(8px);
  border-bottom-color: var(--c-line);
}

.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 89;
  background: var(--c-white); border-bottom: 1px solid var(--c-line);
  padding: 8px 20px 20px; display: none; box-shadow: var(--shadow-md);
}
.nav-open .mobile-nav { display: block; }
.mobile-nav a { display: block; padding: 13px 4px; font-weight: 700; color: var(--c-ink);
                border-bottom: 1px solid var(--c-soft); }
.mobile-nav a[aria-current="page"] { color: var(--c-primary); }
.mobile-nav .btn { width: 100%; margin-top: 14px; }

/* Header phone: shown on mobile and wide desktop; hidden at mid widths where the
   full nav + CTA need the room (the number stays in the CTA flow, mobile bar, and footer) */
@media (min-width: 900px) and (max-width: 1139px) {
  .header-phone { display: none; }
}
/* Small phones: drop the header phone button so the larger logo has room
   (the bottom sticky bar still carries "Call Now") */
@media (max-width: 559px) {
  .header-phone { display: none; }
}

/* Mobile nav accordion groups (Services / Service Areas) */
.m-group .m-row { display: flex; align-items: center; border-bottom: 1px solid var(--c-soft); }
.m-group .m-row a { flex: 1; border-bottom: 0; }
.m-toggle { background: none; border: 0; padding: 12px 14px; cursor: pointer; color: var(--c-ink); }
.m-toggle .icon { font-size: 1.05rem; transition: transform 0.2s ease; }
.m-group.open .m-toggle .icon { transform: rotate(180deg); }
.m-sub { display: none; padding: 4px 0 8px 16px; border-bottom: 1px solid var(--c-soft); }
.m-group.open .m-sub { display: block; }
.m-sub a { font-weight: 500; font-size: 0.92rem; padding: 9px 4px; border-bottom: 0; }

@media (min-width: 900px) {
  body { padding-bottom: 0; }
  .nav-toggle, .mobile-nav { display: none !important; }
  .nav { display: flex; gap: clamp(14px, 2vw, 28px); align-items: center; height: var(--header-h);
         flex-wrap: nowrap; }
  .nav > a, .nav-item > a { font-weight: 600; font-size: 0.93rem; color: var(--c-white); position: relative;
                            display: inline-flex; align-items: center; gap: 5px;
                            white-space: nowrap; transition: color 0.2s ease; }
  .site-header.scrolled .nav > a, .site-header.scrolled .nav-item > a { color: var(--c-ink); }
  .nav > a::after, .nav-item > a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: -6px;
    height: 2px; background: var(--c-accent); transition: right 0.2s ease; }
  .nav > a:hover::after, .nav > a[aria-current="page"]::after,
  .nav-item:hover > a::after, .nav-item > a[aria-current="page"]::after { right: 0; }
  .header-cta { display: inline-flex; padding: 11px 20px; font-size: 0.88rem; white-space: nowrap; }
  .brand img { height: 54px; }

  /* Dropdowns */
  .nav-item { position: relative; display: flex; align-items: center; height: var(--header-h); }
  .nav-item .caret { font-size: 0.85rem; transition: transform 0.18s ease; }
  .nav-item:hover .caret, .nav-item:focus-within .caret { transform: rotate(180deg); }
  .dropdown {
    position: absolute; top: 100%; left: -18px; z-index: 95;
    min-width: 240px; padding: 10px; display: grid; gap: 2px;
    background: var(--c-white); border: 1px solid var(--c-line); border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  }
  .nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .dropdown a { display: block; padding: 9px 13px; border-radius: 7px; font-weight: 600;
                font-size: 0.88rem; color: var(--c-ink); white-space: nowrap; }
  .dropdown a::after { content: none; }
  .dropdown a:hover { background: var(--c-soft); color: var(--c-primary); }
  .dropdown__all { color: var(--c-primary) !important; border-bottom: 1px solid var(--c-line);
                   border-radius: 7px 7px 0 0 !important; margin-bottom: 4px; }
  .dropdown--2col { grid-template-columns: 1fr 1fr; min-width: 460px; }
  .dropdown--2col .dropdown__all { grid-column: 1 / -1; }
}

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative; display: flex; align-items: center;
  min-height: min(92vh, 760px); padding: calc(var(--header-h) + 48px) 0 56px;
  background: var(--c-dark);
  isolation: isolate; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(13, 15, 17, 0.93) 0%, rgba(13, 15, 17, 0.78) 46%, rgba(13, 15, 17, 0.42) 100%);
}
.hero__grid { display: grid; gap: 40px; }
.hero h1 { color: var(--c-white); }
.hero__sub { margin-top: 18px; font-size: clamp(1.02rem, 1.6vw, 1.18rem);
             color: rgba(255, 255, 255, 0.82); max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__promise { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
                 font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.hero__promise .icon { color: var(--c-accent); }

/* Hero lead form card */
.lead-card {
  background: var(--c-white); border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 28px 24px; max-width: 460px; width: 100%;
  border-top: 5px solid var(--c-accent);
}
.lead-card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.lead-card__sub { font-size: 0.88rem; margin-bottom: 18px; }
.lead-card .field { margin-bottom: 12px; }
.lead-card label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--c-ink);
                   margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.06em; }
.lead-card input, .lead-card textarea {
  width: 100%; font-family: var(--font); font-size: 0.95rem; color: var(--c-ink);
  padding: 12px 14px; border: 1.5px solid var(--c-line); border-radius: 8px; background: #fafbfb;
}
.lead-card input:focus, .lead-card textarea:focus { outline: 2px solid var(--c-primary); border-color: transparent; }
.lead-card .consent { display: flex; gap: 9px; align-items: flex-start; font-size: 0.72rem;
                      line-height: 1.45; margin: 10px 0 8px; text-transform: none;
                      font-weight: 400; letter-spacing: normal; }
.lead-card .consent input { width: auto; margin-top: 2px; }
.lead-card__legal { font-size: 0.7rem; line-height: 1.45; color: var(--c-body); margin: 4px 0 14px; }
.lead-card__legal a { color: var(--c-primary); text-decoration: underline; }
.lead-card .btn { width: 100%; }
.lead-card__note {
  margin-top: 12px; text-align: center; font-size: 0.72rem; font-weight: 600;
  color: var(--c-body); background: var(--c-soft); border-radius: 6px; padding: 7px 10px;
}

/* ---------- Legal pages (Privacy / Terms) ---------- */
.legal { max-width: 760px; margin: 0 auto; }
.legal__meta { font-size: 0.82rem; color: var(--c-body); margin-bottom: 24px; }
.legal h2 { font-size: 1.2rem; margin: 30px 0 10px; }
.legal p, .legal li { font-size: 0.95rem; line-height: 1.7; color: var(--c-body); }
.legal ul { margin: 8px 0 8px 1.1rem; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--c-primary); text-decoration: underline; }
.legal .includes-list { margin: 16px 0; }
.legal .includes-list li { margin-bottom: 0; }
.page-hero .page-hero__brand { margin-top: 6px; color: var(--c-white); font-weight: 700; font-size: 1.15rem; }

@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 56px; }
  .lead-card { justify-self: end; }
}

/* ---------- Desktop: lift the trust badges into first view ----------
   The tall lead form was stretching the hero so the dark .badge-row fell
   below the fold on load. Desktop only (>=980px): trim the hero's excess
   top/bottom padding and tighten the form's internal spacing a touch so the
   badges show as soon as the page opens. Mobile spacing is left as-is. */
@media (min-width: 980px) {
  .hero { padding: calc(var(--header-h) + 10px) 0 16px; }
  .lead-card { padding: 20px 22px; }
  .lead-card__sub { margin-bottom: 12px; }
  .lead-card .field { margin-bottom: 9px; }
  .lead-card__note { margin-top: 8px; }
}

/* ---------- Trust badge row ---------- */
.badge-row { background: var(--c-dark); border-top: 1px solid rgba(255,255,255,0.08); }
.badge-row__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.badge {
  display: flex; align-items: center; gap: 12px; padding: 18px 14px;
  color: var(--c-white); font-weight: 700; font-size: 0.82rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.badge .icon { font-size: 1.5rem; color: var(--c-accent); }
@media (min-width: 760px) {
  .badge-row__grid { grid-template-columns: repeat(4, 1fr); }
  .badge { justify-content: center; padding: 22px 14px; font-size: 0.88rem; }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid--3 { grid-template-columns: repeat(3, 1fr); }
                            .grid--4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 640px) and (max-width: 979px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 12px; font-size: 1.45rem;
  background: color-mix(in srgb, var(--c-primary) 10%, white); color: var(--c-primary);
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.92rem; }
.card--service .card__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
                             font-size: 0.85rem; font-weight: 700; color: var(--c-primary); }

/* ---------- Stats band ---------- */
.stats { background: var(--c-dark); position: relative; overflow: hidden; }
.stats::before {
  content: ""; position: absolute; inset: 0; opacity: 0.05; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.9) 1px, transparent 1px);
  background-size: 22px 22px;
}
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 16px;
               text-align: center; position: relative; }
.stat__num { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; color: var(--c-white);
             letter-spacing: -0.02em; }
.stat__num .suffix { color: var(--c-accent); }
.stat__label { margin-top: 4px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
               text-transform: uppercase; color: rgba(255,255,255,0.6); }
@media (min-width: 760px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Story split ---------- */
.split { display: grid; gap: 36px; align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: 14px; box-shadow: var(--shadow-md); width: 100%;
                    aspect-ratio: 9 / 7; object-fit: cover; }
.split__media::after {
  content: ""; position: absolute; left: -14px; bottom: -14px; width: 45%; height: 45%;
  border: 3px solid var(--c-accent); border-radius: 14px; z-index: -1;
}
.split__body p + p { margin-top: 14px; }
.split__body .btn { margin-top: 24px; }
@media (min-width: 920px) {
  .split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .split--flip .split__media { order: 2; }
}

/* ---------- Our Story: brand / logo-card variant ---------- */
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.split--brand .split__media::after { display: none; } /* drop the photo accent bracket */
.split--brand .logo-card {
  display: flex; align-items: center; justify-content: center;
  background: var(--c-soft); border: 1px solid var(--c-line);
  border-radius: 14px; padding: clamp(28px, 5vw, 52px); box-shadow: var(--shadow-sm);
}
.split--brand .logo-card img {
  width: 100%; max-width: 380px; height: auto;
  aspect-ratio: auto; object-fit: contain; border-radius: 0; box-shadow: none;
}

/* ---------- Global tail: reviews ---------- */
.reviews { background: var(--c-soft); }
.review-card { display: flex; flex-direction: column; height: 100%; }
.review-card .stars { display: flex; gap: 3px; color: #f5a623; font-size: 1.05rem; margin-bottom: 14px; }
.review-card .stars .icon { fill: currentColor; stroke: none; }
.review-card blockquote { font-size: 0.95rem; font-style: normal; flex: 1; }
.review-card figcaption { margin-top: 16px; font-size: 0.82rem; font-weight: 700; color: var(--c-ink); }
.review-card figcaption span { display: block; font-weight: 500; color: var(--c-body); }

/* ---------- Global tail: process ---------- */
.process__grid { counter-reset: step; }
.process-step { position: relative; padding-left: 0; }
.process-step::before {
  counter-increment: step; content: "0" counter(step);
  display: block; font-size: 2.8rem; font-weight: 800; line-height: 1;
  color: var(--c-primary); margin-bottom: 12px;
}
.process-step h3 { margin-bottom: 8px; }
.process-step p { font-size: 0.92rem; }
@media (min-width: 760px) {
  .process-step:not(:last-child)::after {
    content: ""; position: absolute; top: 22px; right: -16px; width: 32px; height: 2px;
    background: var(--c-line);
  }
}

/* ---------- Global tail: service areas band ---------- */
.areas-band { border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.areas-band .container { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 8px; }
.areas-band__label { display: inline-flex; align-items: center; gap: 8px; font-weight: 800;
                     font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em;
                     color: var(--c-ink); margin-right: 8px; }
.areas-band__label .icon { color: var(--c-accent); }
.area-chip { display: inline-block; padding: 7px 14px; border-radius: 999px; font-size: 0.82rem;
             font-weight: 600; background: var(--c-soft); color: var(--c-body);
             border: 1px solid var(--c-line); }

/* ---------- Global tail: CTA banner ---------- */
.cta-banner { background: linear-gradient(115deg, var(--c-primary), color-mix(in srgb, var(--c-primary) 72%, black)); }
.cta-banner .container { display: grid; gap: 24px; text-align: center; justify-items: center; }
.cta-banner h2 { color: var(--c-white); }
.cta-banner p { color: rgba(255,255,255,0.85); margin-top: 8px; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-banner .btn--accent { background: var(--c-white); color: var(--c-primary); }
@media (min-width: 880px) {
  .cta-banner .container { grid-template-columns: 1fr auto; text-align: left; justify-items: start; align-items: center; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--c-dark); color: rgba(255,255,255,0.72); padding: 56px 0 0; }
.footer-grid { display: grid; gap: 36px; padding-bottom: 44px; }
.footer-brand img { height: 58px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 300px; }
.site-footer h4 { color: var(--c-white); font-size: 0.85rem; text-transform: uppercase;
                  letter-spacing: 0.12em; margin-bottom: 16px; }
.site-footer li { margin-bottom: 10px; font-size: 0.9rem; }
.site-footer a { color: rgba(255,255,255,0.72); }
.site-footer a:hover { color: var(--c-white); }
.footer-brand .footer-contact { margin-top: 16px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact .icon { color: var(--c-accent); margin-top: 4px; }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0;
                font-size: 0.78rem; display: flex; flex-wrap: wrap; gap: 8px 24px;
                justify-content: space-between; }
.footer-socials { display: flex; gap: 14px; margin-top: 18px; }
.footer-socials a { display: inline-flex; width: 38px; height: 38px; border-radius: 50%;
                    border: 1px solid rgba(255,255,255,0.25); align-items: center;
                    justify-content: center; font-size: 1rem; }
.footer-hours-head { margin-top: 24px; }
@media (min-width: 880px) { .footer-grid { grid-template-columns: 1.4fr 0.95fr 1.2fr 1.1fr 1.05fr; gap: 30px; } }

/* ---------- Floating quote button (desktop) ---------- */
.float-cta {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  display: none; align-items: center; gap: 9px;
  background: var(--c-accent); color: var(--c-white); font-weight: 700; font-size: 0.9rem;
  padding: 15px 22px; border-radius: 999px; box-shadow: var(--shadow-lg);
  border: 2px solid transparent;
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.float-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-cta.visible:hover { transform: translateY(-2px); border-color: var(--c-white); }
@media (min-width: 900px) { .float-cta { display: inline-flex; } }

/* ---------- Mobile sticky bottom bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
  display: grid; grid-template-columns: 1fr 1fr; height: 60px;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.16);
}
.mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 8px;
                font-weight: 800; font-size: 0.92rem; }
.mobile-bar__call { background: var(--c-dark); color: var(--c-white); }
.mobile-bar__quote { background: var(--c-accent); color: var(--c-white); }
@media (min-width: 900px) { .mobile-bar { display: none; } }

/* ---------- Inner-page hero ---------- */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 64px) 0 64px;
  background: var(--c-dark); isolation: isolate; overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1;
                     background: rgba(13, 15, 17, 0.85); }
.page-hero h1 { color: var(--c-white); max-width: 720px; }
.page-hero p { margin-top: 14px; color: rgba(255,255,255,0.8); max-width: 620px;
               font-size: 1.02rem; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.page-hero .crumbs { display: flex; flex-wrap: wrap; gap: 6px; font-size: 0.78rem;
                     font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
                     color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.page-hero .crumbs a { color: rgba(255,255,255,0.8); }
.page-hero .crumbs span::before { content: "/"; margin: 0 6px; color: rgba(255,255,255,0.35); }

/* ---------- Services hub page ---------- */
.service-block h3 { display: flex; align-items: center; gap: 12px; }
.service-block h3 .icon { color: var(--c-primary); font-size: 1.3rem; }
.service-block .long { margin-top: 10px; font-size: 0.94rem; }

/* ---------- Service detail page ---------- */
.service-detail { display: grid; gap: 36px; align-items: start; }
.service-detail__body p + p { margin-top: 14px; }
.includes-list { margin-top: 14px; display: grid; gap: 10px; }
.includes-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; }
.includes-list .icon { color: var(--c-primary); margin-top: 4px; }
.cta-card { text-align: center; border-top: 5px solid var(--c-accent); position: sticky; top: calc(var(--header-h) + 20px); }
.cta-card .card__icon { margin: 0 auto 16px; }
.cta-card p { margin: 8px 0 18px; font-size: 0.88rem; }
.cta-card .btn { width: 100%; }
.cta-card .btn + .btn { margin-top: 10px; }
@media (min-width: 920px) { .service-detail { grid-template-columns: 1.5fr 0.9fr; gap: 56px; } }

/* ---------- About: owners (text left, photo right) ---------- */
.owners-list { display: grid; gap: 28px; }
.owner-card { display: grid; gap: 0; align-items: stretch; text-align: left;
              padding: 0; overflow: hidden; }
.owner-card__body { padding: 28px 30px; }
.owner-card__body h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
.owner-card .role { font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
                    letter-spacing: 0.1em; color: var(--c-primary); margin: 4px 0 12px; }
.owner-card p { font-size: 0.95rem; }
.owner-card__bio p { font-size: 0.95rem; }
.owner-card__bio p + p { margin-top: 12px; }
.owner-card__media { position: relative; aspect-ratio: 1 / 1; min-height: 300px; background: var(--c-soft); }
.owner-card__media img { position: absolute; inset: 0; width: 100%; height: 100%;
                         object-fit: cover; object-position: center; }
@media (min-width: 760px) {
  .owner-card { grid-template-columns: 1.05fr 0.95fr; }
  .owner-card__media { order: 2; }
}

/* ---------- About: inline pull-quote ---------- */
.pull-quote { max-width: 820px; margin: 0 auto; padding: 8px 0 8px 28px;
              border-left: 4px solid var(--c-accent); }
.pull-quote p { font-size: clamp(1.3rem, 2.6vw, 1.8rem); font-weight: 700; line-height: 1.3;
                color: var(--c-ink); letter-spacing: -0.01em; }
.pull-quote cite { display: block; margin-top: 14px; font-style: normal; font-weight: 700;
                   font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
                   color: var(--c-primary); }

/* ---------- About: Working With Us (promise grid, no icons) ---------- */
.promise { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius);
           padding: 24px 26px; border-top: 3px solid var(--c-accent); }
.promise h3 { font-size: 1.1rem; margin-bottom: 8px; }
.promise p { font-size: 0.94rem; }

/* ---------- Service area page ---------- */
.map-embed { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-md);
             border: 1px solid var(--c-line); }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }
.area-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.area-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.area-services-label { font-weight: 800; font-size: 1.05rem; color: var(--c-ink); margin-bottom: 18px;
                       letter-spacing: -0.01em; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; gap: 32px; }
.info-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; }
.info-card .card__icon { width: 46px; height: 46px; font-size: 1.25rem; margin: 0; }
.info-card h3 { font-size: 1rem; margin-bottom: 4px; }
.info-card p, .info-card a { font-size: 0.92rem; }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 1.05fr 0.95fr; align-items: start; } }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; }
.gallery-item img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%;
                    transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 24px 14px 12px;
  background: linear-gradient(transparent, rgba(13,15,17,0.85));
  color: var(--c-white); font-size: 0.78rem; font-weight: 600;
}
@media (min-width: 880px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

/* ---------- Reveal animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px);
            transition: opacity 0.55s ease, transform 0.55s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal-stagger > * { opacity: 0; transform: translateY(22px);
                        transition: opacity 0.5s ease, transform 0.5s ease; }
  .reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
  .reveal-stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
  .reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
  .reveal-stagger.in > *:nth-child(4) { transition-delay: 0.24s; }
  .reveal-stagger.in > *:nth-child(5) { transition-delay: 0.32s; }
  .reveal-stagger.in > *:nth-child(6) { transition-delay: 0.4s; }
}

/* ---------- FAQ (home, with FAQPage schema) ---------- */
.faq-list { max-width: 840px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--c-line); border-radius: var(--radius); background: var(--c-white); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center;
                    justify-content: space-between; gap: 16px; padding: 18px 22px;
                    font-weight: 700; color: var(--c-ink); font-size: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--c-primary);
                              transition: transform 0.2s ease; }
.faq-item[open] summary .faq-icon { transform: rotate(45deg); }
.faq-item__answer { padding: 0 22px 20px; font-size: 0.95rem; }

/* ---------- Footer: hours, CTA buttons, all-services list ---------- */
.footer-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.footer-cta .btn { padding: 12px 18px; font-size: 0.85rem; }
.footer-cta .btn--phone { background: var(--c-white); color: var(--c-dark); }
.footer-cta .btn--phone:hover { background: rgba(255,255,255,0.88); }
.footer-hours li { display: flex; justify-content: space-between; gap: 16px; }
.footer-hours .day { color: rgba(255,255,255,0.72); }
.footer-hours .time { color: var(--c-white); font-weight: 600; white-space: nowrap; }
.footer-hours .time--closed { color: rgba(255,255,255,0.5); font-weight: 500; }
/* Services: single straight column; tight line-height within a wrapped name,
   clear gap between services */
.footer-services li { margin-bottom: 11px; line-height: 1.25; }

/* ---------- Utilities ---------- */
.mt-24 { margin-top: 24px; }
.center { text-align: center; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 38px; }

/* --- production: GHL form embed wrapper (added by build-deploy.py) --- */
/* The card design lives HERE, in code we control: the GHL form is set BARE (white, no
   border, no shadow, transparent edges) and this box supplies the white card, red top
   banner, shadow and rounded corners. White-form-on-white-box hides the iframe's actual
   width, so there is no edge mismatch -- and the card shows instantly while fields load. */
.lead-card--embed{position:relative;max-width:550px;width:100%;min-height:400px;background:#fff;border-radius:14px;border-top:5px solid #d20a0a;box-shadow:0 16px 48px rgba(16,18,20,.18);overflow:hidden;}
.lead-card--embed iframe{display:block;width:100%;background:transparent;transition:opacity .35s ease;}
.lead-card--embed.js-pending iframe{opacity:0;}
.lead-card--embed.is-loaded iframe{opacity:1;}
@media (prefers-reduced-motion:reduce){.lead-card--embed.js-pending iframe{opacity:1;}}
