/* ============================================================
   JP Bobcat Roofing Ltd — styles.css
   Aesthetic: "Solid & Weathertight" — architectural, blocky,
   charcoal + slate + copper/clay accent. Light theme with a
   dark hero and footer (per client brief).
   Vanilla CSS, no frameworks. All colours live in :root.
   ============================================================ */

:root {
  color-scheme: light;

  /* --- Brand core --- */
  --charcoal: #1A1A1A;
  --charcoal-2: #232427;      /* lifted charcoal for layered dark panels */
  --charcoal-3: #2c2e32;
  --slate: #3E4C59;
  --slate-2: #4c5b6a;
  --slate-tint: #eef1f4;      /* pale slate for section washes */
  --slate-line: #d9dee3;      /* hairline borders */
  --white: #FFFFFF;
  --paper: #f6f7f8;           /* off-white section background */

  /* --- Ink / text --- */
  --ink: #1A1A1A;
  --ink-soft: #47525c;
  --ink-mute: #717c86;
  --on-dark: #f4f5f6;
  --on-dark-soft: #b7bfc7;

  /* --- Accent: copper / clay --- */
  --accent: #C0703B;
  --accent-ink: #9a4c1a;      /* accessible copper for text on white */
  --accent-soft: #f3e6da;
  --accent-line: #e6cbb2;

  /* --- CTA / utility (fixed) --- */
  --wa: #25D366;
  --wa-deep: #128C4B;
  --review-google: #4285F4;
  --review-facebook: #1877F2;
  --review-yell: #FFDD00;

  /* --- Invera pattern aliases, mapped to this build --- */
  --brand-primary: var(--charcoal);
  --grey-text: var(--ink-mute);
  --black-card: #1f2730;      /* used by dark Leaflet popup */
  --black-border: #33404d;

  /* --- Type --- */
  --font-display: "Helvetica Neue", "Arial Nova", Helvetica, "Segoe UI", system-ui, Arial, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* --- Metrics --- */
  --wrap: 1180px;
  --wrap-wide: 1360px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 72px;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(26,26,26,0.06), 0 4px 14px rgba(26,26,26,0.05);
  --shadow-md: 0 10px 30px rgba(26,26,26,0.10);
  --shadow-lg: 0 24px 60px rgba(26,26,26,0.16);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

a { color: var(--accent-ink); text-decoration-thickness: 1px; text-underline-offset: 2px; }

button { font: inherit; cursor: pointer; touch-action: manipulation; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  /* inherit the section's text colour so headings read white on dark
     hero/banner/CTA panels and charcoal on white sections automatically */
  color: inherit;
  text-wrap: balance;
}

p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

section[id], [id] { scroll-margin-top: calc(var(--nav-h) + 20px); }

/* Focus */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ============================================================
   Layout helpers
   ============================================================ */
.wrap { width: min(100% - (var(--gutter) * 2), var(--wrap)); margin-inline: auto; }
.wrap--wide { max-width: var(--wrap-wide); width: min(100% - (var(--gutter) * 2), var(--wrap-wide)); margin-inline: auto; }

.section { padding: clamp(60px, 9vw, 120px) 0; }
.section--tight { padding: clamp(44px, 6vw, 76px) 0; }
.section--paper { background: var(--paper); }
.section--slate { background: var(--slate-tint); }
.section--dark { background: var(--charcoal); color: var(--on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }

/* Eyebrow label with leading rule */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}
.section--dark .eyebrow { color: #e0a069; }
.eyebrow--center { justify-content: center; }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 4.6vw, 3.1rem); text-transform: uppercase; }
.section-lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); margin: 0; }
.section--dark .section-lead { color: var(--on-dark-soft); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --_bg: var(--charcoal);
  --_fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--_fg);
  background: var(--_bg);
  border: 2px solid var(--_bg);
  border-radius: var(--radius);
  transition: transform 0.18s var(--ease), background-color 0.2s var(--ease),
              border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  will-change: transform;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--wa { --_bg: var(--wa); --_fg: #05391d; border-color: var(--wa); }
.btn--wa:hover { --_bg: var(--wa-deep); --_fg: #ffffff; border-color: var(--wa-deep); }

.btn--accent { --_bg: var(--accent); --_fg: #ffffff; border-color: var(--accent); }
.btn--accent:hover { --_bg: var(--accent-ink); border-color: var(--accent-ink); }

.btn--ghost { --_bg: transparent; --_fg: var(--charcoal); border-color: var(--charcoal); }
.btn--ghost:hover { --_bg: var(--charcoal); --_fg: var(--white); }

.btn--ghost-light { --_bg: transparent; --_fg: var(--white); border-color: rgba(255,255,255,0.55); }
.btn--ghost-light:hover { --_bg: var(--white); --_fg: var(--charcoal); border-color: var(--white); }

.btn--sm { padding: 11px 18px; font-size: 0.78rem; }

.cta-group { display: flex; flex-wrap: wrap; gap: 14px; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-ink);
  text-decoration: none;
}
.textlink svg { width: 18px; height: 18px; transition: transform 0.2s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }
.section--dark .textlink { color: #e5a870; }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-top: max(0px, env(safe-area-inset-top));
  transition: box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(0,0,0,0.35); }

.header-inner {
  width: min(100% - (var(--gutter) * 2), var(--wrap-wide));
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--white); }
.brand-logo {
  width: 46px; height: 46px;
  border-radius: 6px;
  object-fit: cover;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: #fff;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
}
.brand-sub {
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
  font-weight: 700;
}

.main-nav { display: flex; align-items: center; gap: 8px; }
.nav-list { list-style: none; display: flex; align-items: center; gap: 2px; }
.nav-link {
  display: inline-block;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  text-decoration: none;
  border-radius: var(--radius);
  position: relative;
  transition: color 0.18s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link[aria-current="page"]::after { transform: scaleX(1); }
.nav-link[aria-current="page"] { color: var(--white); }

.header-cta { display: inline-flex; }
.nav-cta { display: none; }   /* in-menu WhatsApp CTA — mobile only (desktop uses .header-cta) */

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border-radius: var(--radius);
  color: var(--white);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 24px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.22s var(--ease), opacity 0.18s var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .main-nav { position: static; }
  .nav-list {
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--charcoal-2);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 3px solid var(--accent);
    border-radius: 0 0 14px 14px;
    padding: 6px var(--gutter) 8px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  }
  .nav-list.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-link { display: block; padding: 14px 6px; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-list li:last-child .nav-link { border-bottom: 0; }   /* no dangling divider under the last item */
  .nav-link::after { display: none; }
  .nav-link[aria-current="page"] { color: var(--accent); }
  .nav-cta { display: block; padding: 14px 6px 6px; }
  .nav-cta .btn { width: 100%; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  color: var(--white);
  background: var(--charcoal);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* lighter overlay so more of the roof photo shows through, while the
     left side stays dark enough to keep the white heading legible */
  background:
    linear-gradient(90deg, rgba(20,20,20,0.82) 0%, rgba(20,20,20,0.60) 46%, rgba(20,20,20,0.30) 100%),
    linear-gradient(0deg, rgba(20,20,20,0.72) 0%, rgba(20,20,20,0.12) 42%);
}
.hero__bg { filter: brightness(1.08); }
.hero__inner {
  width: min(100% - (var(--gutter) * 2), var(--wrap-wide));
  margin-inline: auto;
  padding: clamp(70px, 12vw, 150px) 0 clamp(56px, 8vw, 110px);
  max-width: none;
}
.hero__content { max-width: 780px; }
.hero__title {
  font-size: clamp(2.4rem, 6.4vw, 4.9rem);
  text-transform: uppercase;
  line-height: 0.98;
  margin-bottom: 22px;
  color: var(--white);
  text-shadow: 0 2px 22px rgba(8, 8, 10, 0.55), 0 1px 2px rgba(8, 8, 10, 0.45);
}
/* lighter shadows keep the supporting hero text crisp over the bright photo */
.hero .eyebrow { text-shadow: 0 1px 10px rgba(8, 8, 10, 0.55); }
.hero__title .accent { color: #e59a5f; }
.hero__title-tail {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.05rem, 2.3vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--on-dark-soft);
}
.hero__nearme {
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  color: var(--on-dark);
  max-width: 640px;
  margin-bottom: 14px;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  text-shadow: 0 1px 12px rgba(8, 8, 10, 0.6);
}
.hero__tagline {
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  color: #cfd6dd;
  max-width: 600px;
  margin-bottom: 32px;
  text-shadow: 0 1px 12px rgba(8, 8, 10, 0.65);
}
.hero__cta { margin-bottom: 40px; }

.hero__trust {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  align-items: start;
  gap: 20px 36px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.trust-item { display: flex; flex-direction: column; gap: 3px; min-width: 0; }

/* Mobile: clean, aligned 2×2 grid with a copper accent divider per cell */
@media (max-width: 680px) {
  .hero__trust {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    width: 100%;
  }
  .trust-item {
    padding-left: 14px;
    border-left: 2px solid rgba(192, 112, 59, 0.7);
  }
}
.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.trust-item span { font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark-soft); }
.trust-stars { color: #f0b429; letter-spacing: 2px; font-size: 1.05rem; }

/* Roofline chevron divider */
.roofline {
  height: 16px;
  background-image: repeating-linear-gradient(135deg,
    var(--accent) 0, var(--accent) 2px,
    transparent 2px, transparent 14px);
  opacity: 0.9;
}
.roofline--slate {
  background-image: repeating-linear-gradient(135deg,
    var(--slate) 0, var(--slate) 2px,
    transparent 2px, transparent 14px);
}

/* Page banner (interior pages) */
.page-banner {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 120% at 85% -10%, rgba(192,112,59,0.22), transparent 55%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 16px);
}
.page-banner__inner {
  width: min(100% - (var(--gutter) * 2), var(--wrap));
  margin-inline: auto;
  padding: clamp(56px, 9vw, 104px) 0 clamp(44px, 6vw, 72px);
}
.page-banner__title { font-size: clamp(2rem, 5vw, 3.4rem); text-transform: uppercase; max-width: 900px; color: var(--white); }
.page-banner__lead { color: var(--on-dark-soft); max-width: 640px; font-size: 1.08rem; margin: 0; }
.breadcrumb { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-soft); margin-bottom: 18px; }
.breadcrumb a { color: var(--on-dark-soft); text-decoration: none; }
.breadcrumb a:hover { color: #e5a870; }

/* ============================================================
   Feature tiles (why choose us)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.feature {
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-line); }
.feature__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--charcoal);
  color: var(--accent);
  margin-bottom: 18px;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.16rem; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 8px; }
.feature p { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }

.section--dark .feature { background: var(--charcoal-2); border-color: rgba(255,255,255,0.1); }
.section--dark .feature:hover { border-color: rgba(192,112,59,0.5); }
.section--dark .feature h3 { color: var(--white); }
.section--dark .feature p { color: var(--on-dark-soft); }
.section--dark .feature__icon { background: rgba(255,255,255,0.06); }

/* ============================================================
   Services
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(16px, 2vw, 22px);
}
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.svc-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-line); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--accent-ink);
  margin-bottom: 14px;
}
.svc-card__icon { color: var(--slate); margin-bottom: 14px; }
.svc-card__icon svg { width: 34px; height: 34px; }
.svc-card h3 { font-size: 1.18rem; text-transform: uppercase; margin-bottom: 10px; }
.svc-card p { color: var(--ink-soft); font-size: 0.96rem; margin: 0 0 18px; }
.svc-card__more {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.svc-card__more svg { width: 16px; height: 16px; transition: transform 0.2s var(--ease); }
.svc-card:hover .svc-card__more svg { transform: translateX(4px); }

/* Detailed service blocks (services.html) */
.svc-detail {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: clamp(20px, 3vw, 44px);
  padding: clamp(34px, 5vw, 56px) 0;
  border-top: 1px solid var(--slate-line);
  align-items: start;
}
.svc-detail:last-child { border-bottom: 1px solid var(--slate-line); }
.svc-detail__index {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 0.8;
  color: var(--slate-line);
  -webkit-text-stroke: 1px var(--slate);
  letter-spacing: -0.04em;
}
.svc-detail__body { max-width: 720px; }
.svc-detail__body h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); text-transform: uppercase; margin-bottom: 8px; }
.svc-detail__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent-soft);
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.svc-detail__body p { color: var(--ink-soft); font-size: 1.04rem; }
.svc-points { list-style: none; display: grid; gap: 10px; margin: 18px 0 22px; }
.svc-points li { position: relative; padding-left: 30px; color: var(--ink-soft); }
.svc-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 16px; height: 16px;
  background: var(--accent);
  clip-path: polygon(43% 74%, 12% 46%, 22% 36%, 43% 55%, 78% 20%, 88% 30%);
}

@media (max-width: 620px) {
  .svc-detail { grid-template-columns: 1fr; gap: 14px; }
  .svc-detail__index { font-size: 3rem; }
}

/* ============================================================
   Split / about
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split__media::after {
  content: "";
  position: absolute;
  left: -1px; bottom: -1px;
  width: 42%; height: 6px;
  background: var(--accent);
}
.split__body h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); text-transform: uppercase; }
.split__body p { color: var(--ink-soft); }
.section--dark .split__body p { color: var(--on-dark-soft); }

@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

/* Stat band */
.stat-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  background: var(--charcoal-2);
  padding: 30px 24px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat strong .accent { color: var(--accent); }
.stat span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-soft); margin-top: 8px; display: block; }

/* Slim inline stat line (understated, on white) */
.statline {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid var(--slate-line);
  border-bottom: 1px solid var(--slate-line);
}
.statline li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 clamp(22px, 5vw, 54px);
}
.statline li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 34px;
  background: var(--slate-line);
}
.statline__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
.statline__num .u { color: var(--accent-ink); }
.statline__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 560px) {
  .statline { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 0; padding: 24px 0; }
  .statline li { padding: 0; }
  .statline li::after { display: none; }
}

/* Section divider — thin gradient hairline with a copper roof-peak accent */
.section-divider { padding: clamp(34px, 6vw, 68px) 0; }
.divider {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 660px;
  margin: 0 auto;
}
.divider__line { height: 1px; flex: 1 1 auto; }
.divider__line--left  { background: linear-gradient(90deg, transparent, var(--slate-line) 92%); }
.divider__line--right { background: linear-gradient(90deg, var(--slate-line) 8%, transparent); }
.divider__mark {
  flex: none;
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--slate-line);
  box-shadow: 0 8px 20px rgba(26, 26, 26, 0.10);
  animation: divider-ring 3.6s ease-in-out infinite;
}
.divider__logo { width: 38px; height: 38px; object-fit: contain; display: block; }
@keyframes divider-ring {
  0%, 100% { box-shadow: 0 8px 20px rgba(26, 26, 26, 0.10), 0 0 0 0 rgba(192, 112, 59, 0); }
  50%      { box-shadow: 0 8px 20px rgba(26, 26, 26, 0.10), 0 0 0 6px rgba(192, 112, 59, 0.12); }
}
@media (prefers-reduced-motion: reduce) {
  .divider__mark { animation: none; }
}
/* static variant — same badge, no pulse (used on recurring dividers) */
.section-divider--static .divider__mark { animation: none; }

/* Value list */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.value {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 20px;
}
.value h3 { font-size: 1.05rem; text-transform: uppercase; margin-bottom: 6px; }
.value p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.filter-btn {
  padding: 9px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--white);
  border: 1.5px solid var(--slate-line);
  border-radius: 999px;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.filter-btn:hover { border-color: var(--charcoal); color: var(--charcoal); }
.filter-btn[aria-pressed="true"] { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }

.masonry { columns: 3 260px; column-gap: 16px; }
.masonry .gitem { break-inside: avoid; margin-bottom: 16px; }
.gitem {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--slate-tint);
  border: 1px solid var(--slate-line);
  cursor: zoom-in;
}
.gitem img { width: 100%; height: auto; display: block; transition: transform 0.5s var(--ease); }
.gitem:hover img { transform: scale(1.05); }
.gitem__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 16px 14px;
  font-size: 0.82rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(20,20,20,0.85), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.gitem:hover .gitem__cap, .gitem:focus-visible .gitem__cap { opacity: 1; transform: translateY(0); }
.gitem[hidden] { display: none; }

@media (max-width: 640px) { .masonry { columns: 2 150px; column-gap: 12px; } .masonry .gitem { margin-bottom: 12px; } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(15,15,15,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: min(1100px, 94vw);
  max-height: 82vh;
  width: auto; height: auto;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}
.lightbox__cap {
  position: absolute;
  bottom: 22px; left: 0; right: 0;
  text-align: center;
  color: var(--on-dark-soft);
  font-size: 0.9rem;
  padding: 0 24px;
}
.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  display: grid; place-items: center;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background-color 0.2s var(--ease);
}
.lb-btn:hover { background: rgba(255,255,255,0.22); }
.lb-btn svg { width: 26px; height: 26px; }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
.lb-close { top: 18px; right: 18px; transform: none; width: 48px; height: 48px; }
@media (max-width: 640px) { .lb-prev { left: 6px; } .lb-next { right: 6px; } }

/* ============================================================
   Gallery carousel (slider with arrows, dots + counter)
   ============================================================ */
.carousel {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}
.carousel__viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-line);
  box-shadow: var(--shadow-md);
  background: var(--charcoal);
}
.carousel__track {
  display: flex;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}
.carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
  position: relative;
  background: var(--charcoal);
}
.carousel__slide img {
  width: 100%;
  height: clamp(280px, 54vw, 620px);
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}
.carousel__hint {
  text-align: center;
  margin: 14px 0 0;
  font-size: 0.84rem;
  color: var(--ink-mute);
}
.carousel__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 46px 22px 16px;
  color: #fff;
  font-size: 0.94rem;
  background: linear-gradient(0deg, rgba(20, 20, 20, 0.86), transparent);
}
.carousel__arrow {
  flex: none;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-md);
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.carousel__arrow:hover { background: var(--accent); transform: translateY(-2px); }
.carousel__arrow:active { transform: translateY(0); }
.carousel__arrow svg { width: 24px; height: 24px; }

.carousel__counter {
  text-align: center;
  margin: 20px 0 12px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.86rem;
  color: var(--ink-mute);
}
.carousel__counter .cur { color: var(--accent-ink); }

.carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.carousel__dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--slate-line);
  border: 0;
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.carousel__dot:hover { background: var(--slate-2); }
.carousel__dot[aria-current="true"] { background: var(--accent); transform: scale(1.3); }

@media (max-width: 680px) {
  .carousel { gap: 0; }
  .carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px; height: 44px;
    background: rgba(20, 20, 20, 0.72);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
  }
  .carousel__arrow--prev { left: 10px; }
  .carousel__arrow--next { right: 10px; }
  .carousel__arrow:hover { transform: translateY(-50%); background: var(--accent); }
}

@media (prefers-reduced-motion: reduce) {
  .carousel__track { transition: none; }
  .carousel__arrow, .carousel__dot { transition: none; }
}

/* ============================================================
   Reviews
   ============================================================ */
.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 34px;
  padding: 26px 30px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}
.reviews-summary .big { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1; }
.reviews-summary .stars { color: #f0b429; font-size: 1.2rem; letter-spacing: 2px; }
.reviews-summary p { margin: 0; color: var(--on-dark-soft); font-size: 0.92rem; }
.reviews-summary .textlink { color: #e5a870; margin-left: auto; }

.reviews-grid { columns: 3 300px; column-gap: 20px; }
@media (max-width: 900px) { .reviews-grid { columns: 2 260px; } }
@media (max-width: 560px) { .reviews-grid { columns: 1; } }

.review-card {
  position: relative;
  break-inside: avoid;
  margin-bottom: 20px;
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-top: 3px solid var(--slate-line);
  border-radius: var(--radius-lg);
  padding: 26px 24px 22px;
  box-shadow: var(--shadow-sm);
}
.review-card[data-source="google"]   { border-top-color: var(--review-google);
  background: linear-gradient(180deg, rgba(66,133,244,0.05), transparent 42%), var(--white); }
.review-card[data-source="facebook"] { border-top-color: var(--review-facebook);
  background: linear-gradient(180deg, rgba(24,119,242,0.05), transparent 42%), var(--white); }
.review-card[data-source="yell"]     { border-top-color: var(--review-yell);
  background: linear-gradient(180deg, rgba(255,221,0,0.07), transparent 42%), var(--white); }

.review-badge { position: absolute; top: 18px; right: 18px; width: 24px; height: 24px; }
.review-stars { color: #f0b429; letter-spacing: 2px; font-size: 1rem; margin-bottom: 12px; }
.review-text { color: var(--ink); font-size: 0.98rem; margin-bottom: 16px; }
.review-author { display: flex; flex-direction: column; gap: 2px; }
.review-name { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.02em; }
.review-source-label { color: var(--grey-text); font-size: 0.78rem; }

.review-card.teaser { break-inside: auto; margin: 0; height: 100%; }
.reviews-teaser-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

/* Auto-scrolling review carousel (home) — CSS-only marquee.
   Cards use margin-right (not gap) so the -50% loop is perfectly seamless:
   two identical card sets ⇒ total width = 16×(card+margin), -50% = one set. */
.review-marquee {
  position: relative;
  overflow: hidden;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.review-marquee__track {
  display: flex;
  align-items: stretch;      /* all cards match the tallest ⇒ uniform height */
  width: max-content;
  animation: review-marquee 65s linear infinite;
}
.review-marquee:hover .review-marquee__track,
.review-marquee:focus-within .review-marquee__track { animation-play-state: paused; }
.review-marquee .review-card {
  flex: 0 0 360px;
  width: 360px;
  max-width: 82vw;
  margin: 0 20px 0 0;        /* margin (not gap) keeps the -50% loop seamless */
  break-inside: auto;
}
@keyframes review-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 480px) {
  .review-marquee .review-card { flex-basis: 300px; width: 300px; }
}
@media (prefers-reduced-motion: reduce) {
  .review-marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .review-marquee__track { animation: none; }
}

/* ============================================================
   FAQ (native details)
   ============================================================ */
.faq-list { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--slate-line); }
.faq-item { border-bottom: 1px solid var(--slate-line); }
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "";
  flex: none;
  width: 22px; height: 22px;
  background: var(--accent);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11 5h2v6h6v2h-6v6h-2v-6H5v-2h6z'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.25s var(--ease);
}
.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-item__body { padding: 0 4px 24px; color: var(--ink-soft); max-width: 720px; }
.faq-item__body p { margin: 0; }

/* ============================================================
   Coverage / where we work
   ============================================================ */
.leaflet-container { background: #1d2733; }
.leaflet-popup-content-wrapper {
  background: var(--black-card);
  color: var(--on-dark);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.leaflet-popup-content-wrapper a { color: #e5a870; }
.leaflet-popup-tip { background: var(--black-card); }
#map {
  height: 480px;
  border-radius: 12px;
  border: 1px solid var(--slate-line);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  /* Contain Leaflet's internal high z-indexes (panes/controls up to ~1000)
     in their own stacking context so they can't render over the sticky nav. */
  position: relative;
  z-index: 0;
  isolation: isolate;
}
/* belt-and-braces: keep the sticky header above the map layer */
.site-header { z-index: 200; }

.coverage-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.coverage-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.coverage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-line); }
.coverage-card__pin { color: var(--accent); }
.coverage-card__pin svg { width: 26px; height: 26px; }
.coverage-card h3 { font-size: 1.15rem; text-transform: uppercase; margin: 4px 0 2px; }
.coverage-card p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }
.coverage-card__go { margin-top: 8px; font-family: var(--font-display); font-weight: 700; font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-ink); }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 8px 16px;
  border: 1.5px solid var(--slate-line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--slate);
  text-decoration: none;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.chip:hover { border-color: var(--accent); color: var(--accent-ink); background: var(--accent-soft); }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.contact-card--primary { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.contact-card--primary h3, .contact-card--primary .contact-value { color: var(--white); }
.contact-card--primary p { color: var(--on-dark-soft); }
.contact-card__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 10px; background: var(--slate-tint); color: var(--slate); }
.contact-card--primary .contact-card__icon { background: rgba(255,255,255,0.1); color: var(--wa); }
.contact-card__icon svg { width: 26px; height: 26px; }
.contact-card h3 { font-size: 1.1rem; text-transform: uppercase; margin: 0; }
.contact-card p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }
.contact-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: -0.01em;
  word-break: break-word;
}
.contact-value:hover { color: var(--accent-ink); }
.contact-card--primary .contact-value:hover { color: var(--wa); }
.contact-card .btn { margin-top: auto; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(90% 140% at 100% 0%, rgba(192,112,59,0.28), transparent 55%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 18px);
}
.cta-band__inner {
  width: min(100% - (var(--gutter) * 2), var(--wrap));
  margin-inline: auto;
  padding: clamp(56px, 8vw, 96px) 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.9rem); text-transform: uppercase; color: var(--white); margin: 0; }
.cta-band p { color: var(--on-dark-soft); margin: 14px 0 0; }
.cta-band__actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta-band__actions .btn { width: 100%; }
@media (max-width: 760px) { .cta-band__inner { grid-template-columns: 1fr; } .cta-band__actions { align-items: stretch; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--charcoal); color: var(--on-dark-soft); }
.footer-top {
  width: min(100% - (var(--gutter) * 2), var(--wrap-wide));
  margin-inline: auto;
  padding: clamp(50px, 7vw, 84px) 0 44px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(28px, 4vw, 56px);
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-about { font-size: 0.94rem; max-width: 34ch; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 8px;
  color: var(--on-dark);
  background: rgba(255,255,255,0.06);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer-social a:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; }

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { color: var(--on-dark-soft); text-decoration: none; font-size: 0.94rem; transition: color 0.18s var(--ease); }
.footer-col a:hover { color: var(--accent); }

.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; }
.footer-contact svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--accent); }
.footer-contact a { color: var(--on-dark); text-decoration: none; }
.footer-contact a:hover { color: var(--accent); }

/* Footer logo stamp (static, centered above the copyright line) */
.footer-stamp { display: flex; justify-content: center; padding: 4px 0 30px; }
.footer-stamp__badge {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-stamp__logo {
  width: 30px; height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);        /* charcoal icon → white for the dark footer */
  opacity: 0.9;
}

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom__inner {
  width: min(100% - (var(--gutter) * 2), var(--wrap-wide));
  margin-inline: auto;
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--on-dark-soft); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }

/* ============================================================
   WhatsApp float
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: max(20px, calc(20px + env(safe-area-inset-bottom)));
  z-index: 90;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(18,140,75,0.45);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa);
  animation: wa-pulse 2.4s var(--ease) infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.has-js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .has-js .reveal { opacity: 1; transform: none; transition: none; }
  .whatsapp-float::after { animation: none; }
  .gitem img, .btn, .feature, .svc-card, .coverage-card { transition: none; }
}

/* ============================================================
   Utilities
   ============================================================ */
.stack-sm > * + * { margin-top: 12px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.center { text-align: center; }
.lead { font-size: 1.12rem; color: var(--ink-soft); }
.prose p { color: var(--ink-soft); }
.prose p:last-child { margin-bottom: 0; }
.divider-list { display: flex; flex-wrap: wrap; gap: 8px 18px; list-style: none; }
.divider-list li { position: relative; padding-right: 18px; color: var(--ink-soft); font-size: 0.94rem; }
.divider-list li:not(:last-child)::after { content: "•"; position: absolute; right: 4px; color: var(--accent); }
