:root {
  --accent: #2B5F3E;
  --accent-dark: #234F33;
  --dark: #1a1a1a;
  --dark-mid: #2c2c2c;
  --grey: #4a4a4a;
  --grey-mid: #888888;
  --light: #f5f5f5;
  --white: #ffffff;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 6px;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
}

body.has-sticky-bar { padding-bottom: 64px; }

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

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); text-transform: uppercase; letter-spacing: 0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; text-transform: uppercase; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Topbar */
.topbar {
  background: var(--dark);
  color: var(--white);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
}

.topbar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.topbar a { color: var(--white); }
.topbar a:hover { color: #ccc; }

/* Header */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--dark);
}

.logo-link:hover { color: var(--dark); }

.logo-link img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.main-nav { display: none; }

.main-nav ul {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.main-nav a {
  color: var(--dark);
  font-weight: 500;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.main-nav a:hover,
.main-nav a.active { color: var(--accent); }

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  text-align: center;
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white) !important;
}

.btn-outline {
  background: transparent;
  color: var(--accent) !important;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white) !important;
}

.btn-white {
  background: var(--white);
  color: var(--accent) !important;
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--light);
  border-color: var(--light);
  color: var(--accent-dark) !important;
}

.header-cta { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--light);
  padding: 1rem 0;
}

.mobile-nav.is-open { display: block; }

.mobile-nav ul { display: flex; flex-direction: column; gap: 0; }

.mobile-nav a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--dark);
  font-weight: 500;
  border-bottom: 1px solid var(--light);
}

.mobile-nav a:hover { background: var(--light); color: var(--accent); }

.mobile-nav .btn {
  margin: 1rem 1.25rem 0;
  display: block;
}

/* Hero */
.hero {
  position: relative;
  background-color: var(--dark);
  background-image: linear-gradient(rgba(26, 26, 26, 0.75), rgba(26, 26, 26, 0.85)), url('/images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 3rem 0;
}

.hero-contact { min-height: 50vh; display: flex; align-items: center; }

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.hero h1 { color: var(--white); margin-bottom: 1rem; }

.hero-lead {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.hero-cta { margin-bottom: 1.5rem; }

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.trust-pill {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.hero-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.hero-form h2 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.form-subtext {
  font-size: 0.875rem;
  color: var(--grey);
  margin-bottom: 1rem;
}

/* Stats bar */
.stats-bar {
  background: var(--accent);
  color: var(--white);
  padding: 1.25rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-transform: uppercase;
}

.stat-item span { font-size: 0.8125rem; opacity: 0.9; }

/* Sections */
.section { padding: 3rem 0; }
.section-alt { background: var(--light); }
.section-header { text-align: center; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-header p { color: var(--grey); }

/* Cards grid */
.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.service-card:hover { transform: translateY(-4px); }

.service-card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }

.service-card-body { padding: 1.25rem; }

.service-card h3 { margin-bottom: 0.5rem; }

.service-card p {
  font-size: 0.9375rem;
  color: var(--grey);
  margin-bottom: 1rem;
}

.card-link {
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Why us */
.why-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.why-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why-features { display: grid; gap: 1.25rem; }

.why-feature h3 { color: var(--accent); }

/* Steps */
.steps-grid {
  display: grid;
  gap: 1.5rem;
}

.step-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Area chips */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.area-chip {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  transition: background var(--transition), color var(--transition);
}

.area-chip:hover {
  background: var(--accent);
  color: var(--white);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
}

.testimonial blockquote {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--grey);
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
}

/* CTA band */
.cta-band {
  background: var(--accent);
  color: var(--white);
  padding: 3rem 0;
}

.cta-band h2 { color: var(--white); text-align: center; margin-bottom: 0.5rem; }

.cta-band .form-subtext { color: rgba(255, 255, 255, 0.85); text-align: center; margin-bottom: 1.5rem; }

.cta-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
}

/* Map section */
.map-section { padding: 3rem 0; background: var(--light); }

.map-grid {
  display: grid;
  gap: 2rem;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

.contact-details h3 { margin-bottom: 1rem; }

.contact-details p { margin-bottom: 0.5rem; }

.contact-details a { font-weight: 600; }

/* FAQ */
.faq-list { display: grid; gap: 1rem; max-width: 800px; }

.faq-item {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-item h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }

.faq-item p { font-size: 0.9375rem; color: var(--grey); }

/* Benefits list */
.benefits-grid {
  display: grid;
  gap: 1.25rem;
}

.benefit-item {
  padding: 1.25rem;
  background: var(--light);
  border-radius: var(--radius);
}

/* Breadcrumb */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: var(--grey-mid);
}

.breadcrumb a { color: var(--grey); }
.breadcrumb span { margin: 0 0.375rem; }

/* Contact page */
.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-trust {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.contact-trust li {
  padding-left: 1.5rem;
  position: relative;
}

.contact-trust li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-col p,
.footer-col li { font-size: 0.875rem; color: #ccc; margin-bottom: 0.5rem; }

.footer-col a { color: #ccc; }
.footer-col a:hover { color: var(--white); }

.footer-col ul li { margin-bottom: 0.375rem; }

.footer-bottom {
  border-top: 1px solid var(--dark-mid);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--grey-mid);
}

.footer-bottom a { color: #ccc; }

/* Sticky bar */
.sticky-bar {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--accent);
  padding: 0.75rem 1rem;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.sticky-bar a {
  display: block;
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sticky-bar a:hover { opacity: 0.9; }

/* Page intro */
.page-intro { max-width: 800px; }

.content-grid { display: grid; gap: 2rem; }

/* Tablet */
@media (min-width: 768px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .map-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

/* Desktop */
@media (min-width: 1024px) {
  body.has-sticky-bar { padding-bottom: 0; }

  .sticky-bar { display: none; }

  .main-nav { display: block; }
  .header-cta { display: inline-block; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }

  .hero-grid { grid-template-columns: 1fr 400px; align-items: center; }
  .hero { padding: 4rem 0; }

  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr 400px; }
}
