
/* ============================================================
   Pride Energy Electrical Contractor — Stylesheet
   ============================================================ */

:root {
  --green-900: #123821;
  --green-800: #17532e;
  --green-700: #1c6f3a;
  --green-600: #228a45;
  --green-500: #2ea355;
  --gold-500: #f0b429;
  --gold-600: #d99a12;
  --ink-900: #171b1a;
  --ink-700: #33393a;
  --ink-500: #5c6566;
  --ink-300: #98a2a3;
  --paper-0: #ffffff;
  --paper-50: #f6f8f6;
  --paper-100: #eef2ee;
  --line: #e1e7e1;
  --shadow-sm: 0 1px 3px rgba(18, 56, 33, 0.08), 0 1px 2px rgba(18, 56, 33, 0.06);
  --shadow-md: 0 8px 24px rgba(18, 56, 33, 0.12);
  --shadow-lg: 0 20px 45px rgba(18, 56, 33, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink-700);
  background: var(--paper-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Oswald", "Inter", sans-serif;
  color: var(--ink-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.3rem, 4.2vw, 3.35rem); font-weight: 700; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.7rem, 3.1vw, 2.35rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--green-600); }
ul { padding-left: 1.2em; }
img { max-width: 100%; display: block; border-radius: var(--radius-sm); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.bg-paper {
  background-color: var(--paper-50);
  background-image: radial-gradient(circle, rgba(18,56,33,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}
.bg-green { background: linear-gradient(135deg, var(--green-800), var(--green-900)); color: #eef4ee; }
.bg-green h2, .bg-green h3 { color: #ffffff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Oswald", "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 12px;
}
.bg-green .eyebrow { color: var(--gold-500); }
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.lede {
  font-size: 1.1rem;
  color: var(--ink-500);
  max-width: 62ch;
}
.bg-green .lede { color: #d7e6da; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--green-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-600); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold-500); color: var(--ink-900); }
.btn-gold:hover { background: var(--gold-600); color: var(--ink-900); transform: translateY(-1px); }
.btn-primary::after, .btn-gold::after {
  content: "\2192";
  display: inline-block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.2s ease, opacity 0.2s ease, margin 0.2s ease;
}
.btn-primary:hover::after, .btn-gold:hover::after { max-width: 20px; opacity: 1; margin-left: 2px; }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn-outline-dark { background: transparent; border-color: var(--green-700); color: var(--green-700); }
.btn-outline-dark:hover { background: var(--green-700); color: #fff; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ---------- Top accent line ---------- */
.top-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-500) 35%, var(--green-600) 70%, var(--green-800));
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--ink-900);
  color: #cdd6cd;
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: #e9efe9; }
.topbar-links { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-links span, .topbar-links a { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Header / nav ---------- */
header.site-header {
  position: relative;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Oswald", sans-serif;
  color: var(--ink-900);
}
.brand-logo { display: flex; align-items: center; }
.brand-logo img {
  height: 48px;
  width: auto;
  border-radius: 6px;
  display: block;
}

nav.main-nav { display: flex; align-items: center; gap: 6px; }
nav.main-nav a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
nav.main-nav a:hover { background: var(--paper-100); color: var(--green-700); }
nav.main-nav a.active { color: var(--green-700); font-weight: 700; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink-900);
}
.nav-call svg { width: 18px; height: 18px; color: var(--green-700); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink-900);
  position: relative;
  transition: 0.2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 45%, var(--green-700) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(650px 420px at 82% 15%, rgba(240,180,41,0.28), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 76px 0 64px;
  position: relative;
}
.hero-logo {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 14px 22px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 26px;
}
.hero-logo img { height: 56px; width: auto; margin: 0; display: block; }
.hero h1 { color: #fff; }
.hero .lede { color: #dfeee2; font-size: 1.15rem; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}
.hero-badge svg { width: 16px; height: 16px; color: var(--gold-500); }
.hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255,255,255,0.12);
}
.hero-media::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-600));
  z-index: 2;
}
.hero-media img { border-radius: 0; margin: 0; }
.hero-media--crop { max-height: 620px; }
.hero-media--crop img { width: 100%; height: 620px; object-fit: cover; object-position: 50% 12%; }
@media (max-width: 720px) {
  .hero-media--crop, .hero-media--crop img { height: 380px; }
}
.hero-media--logo {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 44px;
}
.hero-media--logo img { width: 100%; max-width: 460px; height: auto; }
@media (max-width: 720px) {
  .hero-media--logo { padding: 40px 32px; }
}
.hero-media-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(15,25,17,0.72);
  color: #fff;
  font-size: 0.8rem;
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(3px);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: #fff;
  position: relative;
  margin-top: -34px;
  z-index: 5;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-700);
  padding: 22px 20px;
  border-left: 1px solid var(--line);
}
.trust-item:first-child { border-left: none; }
.trust-item svg { width: 24px; height: 24px; color: var(--green-700); flex-shrink: 0; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 26px; height: 26px; color: #fff; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-500); margin-bottom: 0; font-size: 0.96rem; }
.card a.card-link { display: inline-block; margin-top: 14px; font-weight: 700; font-size: 0.9rem; }

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 340px; object-fit: cover; margin: 0; border-radius: 0; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(10,20,12,0.82), transparent);
  color: #fff; padding: 34px 16px 14px;
  font-weight: 600; font-size: 0.92rem;
}
.gallery-item.tall img { height: 480px; }

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
}
.faq-item h3 { margin: 0; font: inherit; color: inherit; letter-spacing: normal; }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--ink-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-q .plus { font-size: 1.3rem; color: var(--green-700); transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 20px;
  color: var(--ink-500);
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 20px 20px; }

/* ---------- Service area ---------- */
.county-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.county-pill {
  background: var(--paper-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-700);
  display: flex;
  align-items: center;
  gap: 10px;
}
.county-pill svg { width: 16px; height: 16px; color: var(--green-700); flex-shrink: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: start; }
.contact-info-card {
  background: var(--paper-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.contact-row { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-row svg { width: 22px; height: 22px; color: var(--green-700); flex-shrink: 0; margin-top: 2px; }
.contact-row strong { display: block; color: var(--ink-900); font-size: 0.95rem; }
.contact-row span, .contact-row a { color: var(--ink-500); font-size: 0.92rem; }

form.quote-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--ink-700); }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink-900);
  background: var(--paper-50);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--green-500);
  outline-offset: 1px;
  background: #fff;
}
.form-note { font-size: 0.8rem; color: var(--ink-300); margin-top: 10px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--green-700), var(--green-900));
  color: #fff;
  border-radius: var(--radius);
  padding: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: #dcece0; margin: 0; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--ink-900);
  color: #b9c2ba;
  padding: 60px 0 24px;
  border-top: 3px solid var(--gold-500);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr; gap: 36px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo-badge {
  background: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  display: inline-flex;
  box-shadow: var(--shadow-sm);
}
.footer-logo-badge img { height: 40px; width: auto; display: block; }
footer.site-footer .footer-heading { color: #fff; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; font-weight: 600; }
footer.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
footer.site-footer a { color: #b9c2ba; font-size: 0.92rem; }
footer.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #8b968c;
}
.social-row { display: flex; gap: 10px; margin-top: 6px; }
.social-row a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.social-row svg { width: 16px; height: 16px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  color: #fff;
  padding: 46px 0 42px;
  overflow: hidden;
  border-bottom: 3px solid var(--gold-500);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 300px at 88% 0%, rgba(240,180,41,0.22), transparent 60%);
  pointer-events: none;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero .lede { color: #fff; }
.breadcrumbs { font-size: 0.85rem; color: #cfe3d3; margin-bottom: 14px; }
.breadcrumbs a { color: #e9f4ea; }
.breadcrumbs span { opacity: 0.6; margin: 0 6px; }

/* ---------- Misc ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.service-photo { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
@media (min-width: 721px) {
  .service-photo { max-height: 460px; }
  .service-photo img { width: 100%; height: 460px; object-fit: cover; margin: 0; }
}
.icon-panel {
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.icon-panel svg { width: 110px; height: 110px; color: rgba(255,255,255,0.92); }
@media (min-width: 721px) {
  .icon-panel { height: 460px; }
  .icon-panel svg { width: 140px; height: 140px; }
}
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.testimonial-stars { color: var(--gold-500); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-quote { color: var(--ink-900); font-size: 1rem; line-height: 1.6; margin-bottom: 18px; flex-grow: 1; }
.testimonial-quote::before { content: open-quote; }
.testimonial-quote::after { content: close-quote; }
.testimonial-name { font-family: "Oswald", sans-serif; font-weight: 600; color: var(--ink-900); }
.testimonial-project { color: var(--ink-500); font-size: 0.88rem; margin-top: 2px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  background: var(--paper-100);
}
.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 0;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 34px 16px 12px;
  background: linear-gradient(to top, rgba(18,56,33,0.85), rgba(18,56,33,0));
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 12, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 60px 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 82vh; margin: 0; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox-caption { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: #fff; font-size: 0.95rem; padding: 0 60px; }
.lightbox-close {
  position: absolute; top: 18px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: none; color: #fff;
  font-size: 1.6rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item img { height: 260px; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 280px; }
}
.check-list svg { width: 20px; height: 20px; color: var(--green-700); flex-shrink: 0; margin-top: 2px; }
.divider { height: 1px; background: var(--line); margin: 56px 0; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tag { background: var(--paper-100); border-radius: 999px; padding: 6px 14px; font-size: 0.82rem; font-weight: 600; color: var(--ink-700); }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: "Oswald", sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--gold-500); }
.stat-label { font-size: 0.85rem; color: #d7e6da; text-transform: uppercase; letter-spacing: 0.05em; }

/* Skip link for accessibility */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--green-700); color: #fff; padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-media { order: -1; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2n+1) { border-left: none; }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .county-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  nav.main-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-call span.long { display: none; }
  .brand-logo img { height: 34px; }
  .hero-logo { padding: 10px 16px; margin-bottom: 18px; }
  .hero-logo img { height: 38px; }
  .topbar { font-size: 0.72rem; }
  .topbar .container { padding-top: 6px; padding-bottom: 6px; gap: 4px; }
  .topbar-links { gap: 12px; }
  .topbar-links.topbar-secondary { display: none; }
  .topbar-loc { display: none; }
  .topbar-links { font-size: 0.78rem; gap: 12px; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-left: none !important; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: none; }
  .trust-strip { margin-top: -22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .county-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }

  nav.main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 10px 20px 18px;
    box-shadow: var(--shadow-md);
  }
  nav.main-nav.open a { padding: 12px 6px; border-bottom: 1px solid var(--paper-100); }
}

