/* =========================================================
   Key Crafters — fast, hand-coded styles
   Palette: black + green (matches existing brand)
   ========================================================= */

:root {
  --green: #16a34a;
  --green-dark: #15803d;
  --green-light: #22c55e;
  --green-glow: rgba(22, 163, 74, 0.45);
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;

  --ink: #0a0f0a;
  --ink-2: #141a14;
  --ink-3: #1f2a1f;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --paper: #ffffff;
  --paper-2: #f4f6f4;
  --paper-3: #e2e6e2;

  --text: #0a0f0a;
  --text-mute: #4b5550;
  --text-soft: #6b7570;
  --text-on-dark: #f4f6f4;
  --text-on-dark-mute: #b8c0b8;

  --danger: #dc2626;
  --warn: #f59e0b;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.12);
  --shadow-glow: 0 12px 40px var(--green-glow);

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Sora", "Inter", system-ui, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--green); color: #fff; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p  { margin: 0 0 1em; color: var(--text-mute); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Helpers */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-100);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--green-200);
}
.eyebrow.eyebrow-dark {
  background: rgba(22, 163, 74, 0.12);
  color: #86efac;
  border-color: rgba(22, 163, 74, 0.35);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(22,163,74,0.18);
}

.section { padding-block: clamp(60px, 9vw, 110px); }
.section-tight { padding-block: clamp(40px, 6vw, 70px); }
.section.dark { background: var(--ink); color: var(--text-on-dark); }
.section.dark p { color: var(--text-on-dark-mute); }
.section.muted { background: var(--paper-2); }

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head p { color: var(--text-soft); font-size: 1.05rem; }
.section.dark .section-head p { color: var(--text-on-dark-mute); }

.text-green { color: var(--green); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--paper-3);
}
.btn-ghost:hover { background: var(--paper-2); border-color: #c7ccc7; }

.btn-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-dark:hover { background: var(--ink-2); transform: translateY(-1px); }

.btn-on-dark {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
}
.btn-on-dark:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }

.btn-lg { padding: 1.05rem 1.6rem; font-size: 1.02rem; }
.btn .ico { width: 18px; height: 18px; }

/* Header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.1rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand img { width: 38px; height: 38px; border-radius: 9px; }
.brand > span { display: inline-flex; flex-direction: column; line-height: 1; }
.brand small { font-family: var(--font-sans); font-size: 0.66rem; font-weight: 500; letter-spacing: 0.1em; color: var(--text-soft); text-transform: uppercase; margin-top: 4px; white-space: nowrap; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover { background: var(--paper-2); }

.nav-cta { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.nav-cta .phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.7rem;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}
.nav-cta .phone:hover { color: var(--green-dark); }
.nav-cta .btn { padding: 0.7rem 1.05rem; font-size: 0.92rem; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--paper-2);
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.menu-toggle svg { width: 22px; height: 22px; }

@media (max-width: 1100px) {
  .nav-cta .phone.desk { display: none; }
}
@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .brand small { display: none; }
}
@media (max-width: 420px) {
  .nav-cta .btn { padding: 0.6rem 0.9rem; font-size: 0.88rem; }
  .brand { font-size: 1rem; }
  .brand img { width: 34px; height: 34px; }
}
.nav-mobile {
  display: none;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: #fff;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; padding: 0.5rem var(--gutter) 1rem; margin: 0; }
.nav-mobile li a {
  display: block;
  padding: 0.85rem 0.5rem;
  font-weight: 500;
  border-bottom: 1px solid var(--paper-2);
}
.nav-mobile li:last-child a { border-bottom: 0; }

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 90% -10%, rgba(22,163,74,0.18), transparent 60%),
              radial-gradient(800px 500px at -10% 110%, rgba(22,163,74,0.12), transparent 60%),
              linear-gradient(180deg, #050805 0%, #0a0f0a 60%, #0a0f0a 100%);
  color: var(--text-on-dark);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-block: clamp(80px, 11vw, 140px);
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  margin-bottom: 1.1rem;
}
.hero h1 .accent {
  background: linear-gradient(180deg, #4ade80 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-on-dark-mute);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.2rem 2rem;
  color: var(--text-on-dark-mute);
  font-size: 0.95rem;
}
.hero-meta .item { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-meta .check {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(22,163,74,0.18);
  border: 1px solid rgba(22,163,74,0.5);
  border-radius: 999px;
  color: #86efac;
}
.hero-meta .check svg { width: 12px; height: 12px; }

/* Hero card */
.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}
.hero-card .top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.2rem;
}
.hero-card .top .live {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #86efac;
}
.hero-card .top .live::before {
  content: ""; width: 8px; height: 8px; border-radius: 999px;
  background: var(--green-light);
  box-shadow: 0 0 0 4px rgba(22,163,74,0.25);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(22,163,74,0.25); }
  50% { box-shadow: 0 0 0 9px rgba(22,163,74,0); }
}
.hero-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 0.4rem; }
.hero-card p.sub { color: var(--text-on-dark-mute); font-size: 0.95rem; margin-bottom: 1.5rem; }
.hero-card .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hero-card .row:last-child { border-bottom: 1px solid rgba(255,255,255,0.07); }
.hero-card .row .l { color: var(--text-on-dark-mute); font-size: 0.92rem; }
.hero-card .row .r { color: #fff; font-weight: 600; font-size: 0.95rem; }
.hero-card .actions {
  display: flex; gap: 0.6rem; margin-top: 1.4rem;
}
.hero-card .actions .btn { flex: 1; }

/* Marquee strip */
.strip {
  background: var(--ink-2);
  color: var(--text-on-dark-mute);
  border-block: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.strip-inner {
  display: flex;
  gap: 3.5rem;
  padding: 1rem 0;
  animation: scroll 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.strip span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 1rem;
}
.strip span::after {
  content: "";
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--green);
  display: inline-block;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.service-card {
  position: relative;
  padding: 28px 26px 26px;
  background: var(--paper);
  border: 1px solid var(--paper-3);
  border-radius: var(--radius-lg);
  transition: transform .25s ease, box-shadow .3s ease, border-color .25s ease;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute; inset: auto -40% -50% auto;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(22,163,74,0.18), transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--green-200);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::after { opacity: 1; }
.service-card .ico-wrap {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-50);
  color: var(--green-dark);
  border-radius: 14px;
  margin-bottom: 18px;
  transition: background .3s, color .3s;
  border: 1px solid var(--green-100);
}
.service-card:hover .ico-wrap {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.service-card .ico-wrap svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.18rem; margin-bottom: 0.45rem; }
.service-card p { color: var(--text-soft); font-size: 0.97rem; margin-bottom: 1rem; flex: 1; }
.service-card .more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 600; font-size: 0.92rem; color: var(--green-dark);
}
.service-card .more svg { width: 14px; height: 14px; transition: transform .25s; }
.service-card:hover .more svg { transform: translateX(4px); }

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.why-item {
  padding: 26px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--text-on-dark);
}
.why-item .num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--green-light);
  margin-bottom: 1rem;
}
.why-item h4 { color: #fff; margin-bottom: 0.5rem; font-size: 1.1rem; }
.why-item p { color: var(--text-on-dark-mute); font-size: 0.95rem; margin: 0; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin-top: 56px;
}
.stat {
  text-align: center;
  padding: 28px 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.stat .num .pl { color: var(--green-light); }
.stat .lbl {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.04em;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--paper-3);
  border-radius: var(--radius-lg);
  position: relative;
  display: flex; flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.testimonial:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial .stars { color: var(--green); font-size: 0.95rem; letter-spacing: 0.15em; margin-bottom: 0.85rem; }
.testimonial blockquote {
  margin: 0 0 1.2rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
  flex: 1;
}
.testimonial .who { display: flex; align-items: center; gap: 0.7rem; }
.testimonial .who .avatar {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.95rem;
  font-family: var(--font-display);
}
.testimonial .who .name { font-weight: 600; font-size: 0.95rem; }
.testimonial .who .role { font-size: 0.83rem; color: var(--text-soft); }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--paper-3);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 4px;
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 8px; top: 50%;
  width: 28px; height: 28px;
  background: var(--green-50);
  border-radius: 999px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2315803d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .25s ease;
}
.faq-item[open] summary::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2315803d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/></svg>");
}
.faq-item .faq-body {
  padding: 0 4px 24px;
  color: var(--text-mute);
  font-size: 1rem;
  line-height: 1.7;
}
.faq-item .faq-body p { margin: 0 0 0.8em; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* CTA panel */
.cta-panel {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 70px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-panel::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(ellipse 60% 60% at 100% 0%, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}
.cta-panel h2 { color: #fff; max-width: 720px; margin-inline: auto; }
.cta-panel p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 2rem; }
.cta-panel .btn-primary { background: #fff; color: var(--green-dark); box-shadow: 0 8px 26px rgba(0,0,0,0.18); }
.cta-panel .btn-primary:hover { background: #f0fdf4; }
.cta-panel .btn-on-dark { background: rgba(0,0,0,0.18); border-color: rgba(255,255,255,0.4); }
.cta-panel .btn-on-dark:hover { background: rgba(0,0,0,0.32); }
.cta-panel .actions { display: inline-flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }

/* Coverage / area */
.coverage-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 880px) { .coverage-grid { grid-template-columns: 1fr; } }
.coverage-grid .map {
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--paper-3);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.coverage-grid .areas {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 1.5rem;
}
.coverage-grid .pill {
  padding: 0.45rem 0.9rem;
  background: var(--paper);
  border: 1px solid var(--paper-3);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.coverage-grid .pill.primary { background: var(--green-50); color: var(--green-dark); border-color: var(--green-200); }

/* Footer */
.site-footer {
  background: #050805;
  color: var(--text-on-dark);
  padding-top: clamp(60px, 8vw, 90px);
  padding-bottom: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

.foot-grid h5 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin-bottom: 0.55rem; }
.foot-grid a { color: var(--text-on-dark-mute); font-size: 0.95rem; }
.foot-grid a:hover { color: #fff; }
.foot-grid .brand-block p { color: var(--text-on-dark-mute); margin-top: 1rem; max-width: 320px; font-size: 0.95rem; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-on-dark-mute);
}
.foot-bottom a:hover { color: #fff; }
.socials { display: flex; gap: 8px; }
.socials a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  transition: background .2s, border-color .2s, color .2s;
}
.socials a:hover { background: var(--green); border-color: var(--green); color: #fff; }
.socials svg { width: 16px; height: 16px; }

/* Quote form */
.form-card {
  background: #fff;
  border: 1px solid var(--paper-3);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}
.form-card .form-head { margin-bottom: 1.6rem; }
.form-card label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.form-card .field { margin-bottom: 1rem; }
.form-card .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
@media (max-width: 560px) { .form-card .row-2 { grid-template-columns: 1fr; } }
.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--paper-3);
  border-radius: 12px;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  outline: 0;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22,163,74,0.15);
}
.form-card textarea { min-height: 110px; resize: vertical; }
.form-card .submit-row { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; margin-top: 0.4rem; }
.form-card .helper { font-size: 0.85rem; color: var(--text-soft); }
.form-card .success {
  display: none;
  padding: 16px 20px;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  color: var(--green-dark);
  border-radius: 12px;
  font-weight: 500;
}
.form-card.sent .success { display: block; }
.form-card.sent form { display: none; }

/* Two-col with image */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split .copy h2 { margin-bottom: 1rem; }
.split .copy ul {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 1.8rem;
  display: grid;
  gap: 0.55rem;
}
.split .copy li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 1rem; color: var(--text);
}
.split .copy li svg {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  background: var(--green-50);
  border-radius: 999px;
  padding: 4px;
  color: var(--green-dark);
  margin-top: 2px;
}
.split .visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  border: 1px solid var(--paper-3);
}
.split .visual .badge {
  position: absolute; top: 18px; left: 18px;
  background: rgba(255,255,255,0.92);
  color: var(--green-dark);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 0.4rem;
}

/* Service detail page */
.svc-hero {
  background: var(--ink);
  color: #fff;
  padding-block: clamp(60px, 8vw, 110px);
  background-image:
    radial-gradient(900px 400px at 100% 0%, rgba(22,163,74,0.18), transparent 60%);
}
.svc-hero h1 { color: #fff; }
.svc-hero p { color: var(--text-on-dark-mute); font-size: 1.1rem; max-width: 640px; }
.svc-hero .crumbs { color: var(--text-on-dark-mute); font-size: 0.85rem; margin-bottom: 1rem; }
.svc-hero .crumbs a { color: #86efac; }

.svc-body { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
@media (max-width: 900px) { .svc-body { grid-template-columns: 1fr; } }
.svc-body article p { font-size: 1.05rem; color: var(--text); line-height: 1.75; }
.svc-body article h2 { font-size: 1.6rem; margin-top: 2.5rem; }
.svc-body article h3 { font-size: 1.2rem; margin-top: 1.8rem; }
.svc-body article ul { padding-left: 0; list-style: none; display: grid; gap: 0.6rem; }
.svc-body article ul li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  color: var(--text);
}
.svc-body article ul li::before {
  content: ""; flex: 0 0 auto;
  width: 18px; height: 18px; margin-top: 4px;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}
.aside-card {
  position: sticky; top: 92px;
  background: var(--paper-2);
  border: 1px solid var(--paper-3);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.aside-card h4 { font-size: 1.1rem; margin-bottom: 0.8rem; }
.aside-card p { color: var(--text-soft); font-size: 0.95rem; }
.aside-card .btn { width: 100%; margin-top: 0.6rem; }

/* Generic utility */
.hide { display: none !important; }
.center { text-align: center; }
.mt-lg { margin-top: 2rem; }
.mt-xl { margin-top: 3rem; }

/* =========================================================
   Imagery — added in round 3
   ========================================================= */

/* Hero background photograph */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: #0a0f0a;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  pointer-events: none;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 75% 60%, rgba(22,163,74,0.14), transparent 70%);
}

/* Hero floating cutout (key fob) */
.hero-cutout {
  position: absolute;
  width: clamp(120px, 16vw, 220px);
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.5));
}
.hero-cutout--top-right {
  top: 18%;
  right: -2%;
  transform: rotate(-12deg);
}
@media (max-width: 980px) {
  .hero-cutout--top-right { display: none; }
}

/* Why-Us split layout — image collage on the left */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-top: clamp(28px, 5vw, 48px);
}
@media (max-width: 980px) {
  .why-split { grid-template-columns: 1fr; }
}

.why-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 180px 180px;
  gap: 12px;
  position: relative;
}
.why-collage figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius-md); }
.why-collage figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.why-collage figure:hover img { transform: scale(1.04); }
.why-collage figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
  pointer-events: none;
}
.why-collage .a { grid-column: 1; grid-row: 1 / span 2; }
.why-collage .b { grid-column: 2; grid-row: 1; }
.why-collage .c { grid-column: 2; grid-row: 2 / span 2; }
.why-collage .d { grid-column: 1; grid-row: 3; }
.why-collage .badge {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}
@media (max-width: 600px) {
  .why-collage { grid-template-rows: 130px 130px 130px; }
}

/* "Recent work" gallery section */
.work-gallery {
  background: #0a0f0a;
  color: var(--text-on-dark);
  padding-block: clamp(60px, 9vw, 110px);
  position: relative;
  overflow: hidden;
}
.work-gallery::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(900px 500px at 100% 0%, rgba(22,163,74,0.12), transparent 60%);
  pointer-events: none;
}
.work-gallery .section-head h2 { color: #fff; }
.work-gallery .section-head p { color: var(--text-on-dark-mute); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 130px;
  gap: 12px;
  margin-top: clamp(28px, 5vw, 48px);
}
.gallery-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #141a14;
  border: 1px solid rgba(255,255,255,0.06);
}
.gallery-grid figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.78));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex; align-items: center; gap: 0.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-grid figcaption .tag {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.gallery-grid figure:hover figcaption,
.gallery-grid figure:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* 12-col placement for varied mosaic */
.gallery-grid .g-1 { grid-column: span 6; grid-row: span 2; }   /* big lead */
.gallery-grid .g-2 { grid-column: span 3; grid-row: span 2; }
.gallery-grid .g-3 { grid-column: span 3; grid-row: span 2; }
.gallery-grid .g-4 { grid-column: span 4; grid-row: span 2; }
.gallery-grid .g-5 { grid-column: span 4; grid-row: span 2; }
.gallery-grid .g-6 { grid-column: span 4; grid-row: span 2; }
.gallery-grid .g-7 { grid-column: span 3; grid-row: span 2; }
.gallery-grid .g-8 { grid-column: span 3; grid-row: span 2; }
.gallery-grid .g-9 { grid-column: span 3; grid-row: span 2; }
.gallery-grid .g-10 { grid-column: span 3; grid-row: span 2; }

@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(6, 1fr); }
  .gallery-grid > * { grid-column: span 3 !important; grid-row: span 2 !important; }
  .gallery-grid figcaption {
    opacity: 1; transform: none;
    padding: 8px 10px; font-size: 0.72rem;
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  }
  .gallery-grid figcaption .tag { font-size: 0.62rem; padding: 0.18rem 0.42rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .gallery-grid > * { grid-column: span 1 !important; }
}

/* Coverage right-side image stack */
.coverage-photo-stack {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  margin-top: 1.4rem;
}
.coverage-photo-stack figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius-md); }
.coverage-photo-stack figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.coverage-photo-stack .lead {
  grid-column: 1 / span 2;
  height: 220px;
}
.coverage-photo-stack .a { height: 140px; }
.coverage-photo-stack .b { height: 140px; }

/* Form-side imagery */
.quote-side-img {
  margin-top: 1.6rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
  background: #141a14;
}
.quote-side-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.quote-side-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0) 50%, rgba(22,163,74,0.25) 100%);
}

/* Section background photo for CTA */
.cta-panel.cta-photo {
  background-color: #15803d;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

/* Service-card image header */
.service-card .card-photo {
  display: block;
  margin: -1.8rem -1.8rem 1.2rem;
  height: 150px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  position: relative;
}
.service-card .card-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(5,8,5,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 96vw;
  max-height: 92vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox .lb-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.lightbox .lb-close:hover { background: rgba(255,255,255,0.2); }

/* ============================================================ */
/* Round 4 — Conversion components                              */
/* ============================================================ */

/* Trust badges row (under hero CTAs) */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
  align-items: center;
}
.tb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: var(--text-on-dark);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.tb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
}
.tb-icon svg { width: 16px; height: 16px; }
.tb-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  color: var(--text-on-dark);
}
.tb-text strong { font-weight: 600; font-size: 0.82rem; }
.tb-text span { font-size: 0.7rem; color: var(--text-on-dark-mute); margin-top: 1px; font-weight: 400; }
.tb-stars {
  color: #fbbf24;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

/* Hero card live availability widget */
.hero-card .pulse {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--green-light);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: kc-pulse 2s infinite;
  vertical-align: middle;
  margin-right: 0.4rem;
}
.hero-card[data-availability="amber"] .pulse { background: #f59e0b; box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); animation-name: kc-pulse-amber; }
.hero-card[data-availability="closed"] .pulse { background: #ef4444; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); animation: none; }
@keyframes kc-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@keyframes kc-pulse-amber {
  0%   { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}
.day-label { font-weight: 600; }

.hero-card-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  padding: 0.55rem 1rem;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 999px;
  transition: background .2s, transform .2s;
}
.hero-card-wa:hover { background: #1ebe57; transform: translateY(-1px); }
.hero-card-wa svg { width: 16px; height: 16px; }

/* WhatsApp button variant (used in CTA panel + anywhere) */
.btn-wa {
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
}
.btn-wa:hover { background: #1ebe57; border-color: #1ebe57; transform: translateY(-1px); }
.btn-wa svg { vertical-align: middle; margin-right: 0.4rem; }

/* Postcode coverage check */
.postcode-check {
  margin-top: 1.5rem;
  background: #fff;
  border: 1px solid var(--green-200);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
}
.postcode-check label {
  display: block;
  font-size: 0.92rem;
  color: var(--green-dark);
  margin-bottom: 0.55rem;
  font-weight: 600;
}
.pc-input {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: stretch;
}
.pc-input input {
  flex: 1 1 180px;
  min-width: 0;
  padding: 0.7rem 0.9rem;
  background: #fafbfa;
  border: 1px solid #d4dbd4;
  border-radius: 10px;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  text-transform: uppercase;
}
.pc-input input::placeholder { color: #9aa39a; text-transform: none; }
.pc-input input:focus { outline: 2px solid var(--green); outline-offset: 2px; border-color: var(--green); }
.pc-input button {
  flex: 0 0 auto;
  padding: 0.7rem 1.4rem;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  transition: background .2s, transform .2s;
}
.pc-input button:hover { background: var(--green-dark); transform: translateY(-1px); }
.pc-result {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #4a554a;
  min-height: 1.4em;
  line-height: 1.45;
}
.pc-result.is-in { color: var(--green-dark); font-weight: 600; }
.pc-result.is-out { color: #b91c1c; font-weight: 600; }
.pc-result.is-error { color: #92400e; font-weight: 600; }

/* Areas toggle (collapsible town pill list) */
.areas-toggle {
  margin-top: 1.5rem;
  border: 1px solid var(--paper-3, #d4dbd4);
  border-radius: 12px;
  background: var(--paper, #f7f9f7);
  padding: 0.4rem 1rem;
}
.areas-toggle > summary {
  cursor: pointer;
  padding: 0.7rem 0;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.areas-toggle > summary::-webkit-details-marker { display: none; }
.areas-toggle > summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green-light);
  transition: transform .2s;
  line-height: 1;
}
.areas-toggle[open] > summary::after { content: '−'; }
.areas-toggle .area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0.4rem 0 0.9rem;
}
.areas-toggle .area-pills .pill {
  padding: 0.45rem 0.9rem;
  background: #fff;
  border: 1px solid var(--paper-3, #d4dbd4);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
}
.areas-toggle .area-pills .pill.primary { background: var(--green-50); color: var(--green-dark); border-color: var(--green-200); }

/* Coverage map */
.coverage-map-wrap {
  margin-top: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0f1410;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  position: relative;
  z-index: 0; /* Contain Leaflet panes (z-index 200-700) so they sit below the sticky header. */
  isolation: isolate;
}
.coverage-map {
  width: 100%;
  height: 380px;
  background: #0f1410;
}
.coverage-map.is-loading::before {
  content: 'Loading map…';
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-on-dark-mute);
  font-size: 0.9rem;
}
/* Override Leaflet defaults to fit dark theme attribution */
.coverage-map .leaflet-control-attribution {
  background: rgba(15,20,16,0.85) !important;
  color: #c0c8c0 !important;
  font-size: 10px !important;
  padding: 2px 6px !important;
}
.coverage-map .leaflet-control-attribution a {
  color: var(--green-light) !important;
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 0.85rem 1.1rem;
  background: rgba(15,20,16,0.7);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: var(--text-on-dark-mute);
}
.map-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.lg-dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.15);
}
.lg-dot.lg-base { background: var(--green-light); width: 14px; height: 14px; }
.lg-dot.lg-radius {
  background: rgba(34, 197, 94, 0.18);
  border: 2px solid rgba(34, 197, 94, 0.7);
  box-shadow: none;
}

/* Fair-pricing reassurance section */
.pricing-promise {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.pp-item {
  background: #fff;
  border: 1px solid var(--green-200);
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pp-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(22,163,74,0.12);
  border-color: var(--green);
}
.pp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-dark);
  margin-bottom: 0.9rem;
}
.pp-icon svg { width: 22px; height: 22px; }
.pp-item h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  color: var(--ink);
}
.pp-item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #4a554a;
}
.pricing-cta {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: #4a554a;
}
.pricing-cta > p a { color: var(--green-dark); font-weight: 600; }
.pricing-cta .actions { display: inline-flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-top: 0.6rem; }
.pricing-cta .btn-primary { color: #fff; }
.pricing-cta .btn-ghost {
  background: transparent;
  border: 1px solid var(--green-200);
  color: var(--green-dark);
}
.pricing-cta .btn-ghost:hover { background: var(--green-50); }

/* Sticky mobile bar (Call + WhatsApp) */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.35);
  padding: 8px;
  gap: 8px;
}
.mb-btn {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 0.6rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  line-height: 1.1;
  min-height: 56px;
}
.mb-btn svg { width: 22px; height: 22px; flex: 0 0 auto; }
.mb-call { background: var(--green); }
.mb-call:hover, .mb-call:active { background: var(--green-dark); }
.mb-wa { background: #25D366; }
.mb-wa:hover, .mb-wa:active { background: #1ebe57; }
.mb-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.mb-text .line1 { font-size: 0.72rem; font-weight: 500; opacity: 0.85; letter-spacing: 0.02em; }
.mb-text .line2 { font-size: 0.95rem; font-weight: 700; }

@media (max-width: 768px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 76px; }
}

/* Responsive adjustments */
@media (max-width: 720px) {
  .trust-badges { gap: 0.45rem; margin-top: 1.1rem; }
  .tb { font-size: 0.74rem; padding: 0.4rem 0.7rem; }
  .tb-icon svg { width: 14px; height: 14px; }
  .coverage-map { height: 300px; }
  .map-legend { gap: 0.8rem; font-size: 0.75rem; }
  .pp-item { padding: 1.2rem 1rem; }
  .pricing-promise { gap: 0.9rem; }
}

/* ============================================================ */
/* LOCATION × SERVICE SEO PAGES                                  */
/* ============================================================ */

.loc-hero {
  position: relative;
  padding: 4.5rem 0 3rem;
  background: linear-gradient(180deg, #f7f9f7 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.loc-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  line-height: 1.1;
  margin: .8rem 0 1rem;
  letter-spacing: -0.01em;
}
.loc-hero p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-mute);
  max-width: 60ch;
}
.loc-hero p strong { color: var(--text); }
.loc-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 880px) {
  .loc-hero-grid { grid-template-columns: 1fr; }
  .loc-hero { padding: 3rem 0 2rem; }
}
.loc-hero-img {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  aspect-ratio: 4 / 3;
}
.loc-hero-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.loc-hero-meta {
  display: flex; flex-wrap: wrap; gap: .55rem;
  margin-top: 1.4rem;
}
.loc-pill {
  display: inline-flex; align-items: center;
  background: var(--green-50);
  color: var(--green-dark);
  border: 1px solid var(--green-200);
  padding: .35rem .75rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
}
.loc-pill strong { font-weight: 700; margin-right: .15rem; }

/* Local-context aside inside the article body */
.local-context {
  margin: 2.5rem 0;
  padding: 1.6rem 1.6rem 1.4rem;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: 14px;
}
.local-context h2 {
  margin-top: 0 !important;
  font-size: 1.35rem !important;
}
.local-context p { margin-bottom: 0; }
.local-context a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem 1.4rem;
  margin-top: 1rem;
}
@media (max-width: 600px) { .lc-grid { grid-template-columns: 1fr; } }
.lc-stat {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  padding: .55rem 0;
  border-bottom: 1px dashed rgba(22,163,74,0.25);
  font-size: .92rem;
}
.lc-stat:last-child { border-bottom: 0; }
.lc-l { color: var(--text-mute); }
.lc-r { font-weight: 600; color: var(--text); text-align: right; }

/* FAQ list (used on location pages) */
.faq-list {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: border-color .15s ease;
}
.faq-item:hover { border-color: rgba(22,163,74,0.35); }
.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 2.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item > div {
  padding: 0 1.2rem 1.1rem;
  color: var(--text-mute);
  line-height: 1.6;
}

/* Aside service list on location pages */
.aside-svc-list {
  list-style: none;
  padding: 0;
  margin: .4rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.aside-svc-list li a {
  display: block;
  padding: .55rem .7rem;
  background: #f7faf7;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  transition: all .15s ease;
}
.aside-svc-list li a:hover {
  background: var(--green-50);
  border-color: var(--green-200);
  color: var(--green-dark);
  transform: translateX(2px);
}

/* Town hub: service cards grid */
.loc-svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.loc-svc-card {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: 1.4rem 1.3rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  transition: all .2s ease;
}
.loc-svc-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(22,163,74,0.12);
}
.loc-svc-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-family: var(--font-display);
  line-height: 1.3;
}
.loc-svc-card p {
  margin: 0;
  color: var(--text-mute);
  font-size: .88rem;
  line-height: 1.5;
}
.loc-svc-arrow {
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 600;
  font-size: .85rem;
}

/* Areas master index */
.areas-index .county-block { margin-bottom: 2.4rem; }
.areas-index h2 {
  font-size: 1.4rem;
  margin: 0 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--green-200);
  display: flex;
  align-items: baseline;
  gap: .6rem;
}
.areas-index h2 small {
  font-size: .8rem;
  font-weight: 400;
  color: var(--text-mute);
}
.loc-grid-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .35rem .9rem;
}
.loc-grid-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .5rem;
  padding: .35rem 0;
  border-bottom: 1px dashed rgba(0,0,0,0.05);
}
.loc-grid-list li a {
  color: var(--text);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
}
.loc-grid-list li a:hover { color: var(--green-dark); text-decoration: underline; }
.loc-dist {
  font-size: .75rem;
  color: var(--text-mute);
  font-variant-numeric: tabular-nums;
}

/* Crumb tweaks for location pages */
.crumbs {
  font-size: .82rem;
  color: var(--text-mute);
  margin-bottom: 1rem;
}
.crumbs a {
  color: var(--text-mute);
  text-decoration: none;
}
.crumbs a:hover { color: var(--green-dark); text-decoration: underline; }

/* === Soro blog widget mount ============================================ */
.soro-blog-mount{
  min-height: 320px;
  margin: 0 auto;
  max-width: 980px;
}
.soro-blog-mount:empty{
  display: grid;
  place-items: center;
  color: var(--text-muted, #6b7280);
  font-size: .95rem;
}
.soro-blog-mount:empty::after{
  content: "Loading articles…";
}
.soro-blog-mount iframe,
.soro-blog-mount > div{
  width: 100%;
  border: 0;
}

/* === Mobile sticky call-bar (fixes giant unstyled phone bug) =========== */
.call-bar{
  display: none; /* hidden on desktop — header already shows the phone number */
}
@media (max-width: 720px){
  .call-bar{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 90;
    padding: .85rem 1.1rem;
    border-radius: 999px;
    background: #16a34a;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(22,163,74,.35), 0 2px 6px rgba(0,0,0,.18);
    -webkit-tap-highlight-color: transparent;
  }
  .call-bar:hover,
  .call-bar:focus{
    background: #15803d;
    color: #fff;
  }
  .call-bar svg{
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  /* Lift footer content above the bar so nothing is hidden behind it. */
  .site-footer{
    padding-bottom: 96px;
  }
}

/* === Accessible skip link =============================================== */
.skip-link{
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-120%);
  background: #0a0f0a;
  color: #fff;
  padding: .85rem 1.25rem;
  border-radius: 0 0 8px 0;
  z-index: 999;
  text-decoration: none;
  font-weight: 700;
  transition: transform .15s ease;
}
.skip-link:focus,
.skip-link:focus-visible{
  transform: translateY(0);
  outline: 3px solid #16a34a;
  outline-offset: 2px;
  color: #fff;
}

/* Footer headings (promoted from h5 to h3 for accessibility — keep size visual) */
.site-footer .col h3{
  font-family: var(--font-display, 'Sora', system-ui, sans-serif);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-on-dark-mute, #9ca3af);
  margin: 0 0 .8rem 0;
}
/* Live availability card heading (promoted from h3 to h2) */
.hero-card .hero-card-h{
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 .25rem 0;
  letter-spacing: -.01em;
}
