/* ============ BRAND TOKENS ============ */
:root {
  --forest: #1a4d2e;
  --lime: #c9e265;
  --sage: #2d7a4a;
  --deep-forest: #0d3320;
  --off-white: #faf9f5;
  --charcoal: #2a2a2a;
  --light-gray: #e5e5e0;

  --radius-sm: 8px;
  --radius-lg: 32px;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --space-12: 96px;
  --space-16: 128px;

  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 900;
  line-height: 1.15;
  color: var(--forest);
  margin: 0 0 var(--space-3);
}
h1 { font-size: 64px; letter-spacing: -1px; }
h2 { font-size: 44px; letter-spacing: 0; }
h3 { font-size: 28px; }
h4 { font-size: 20px; }
p { margin: 0 0 var(--space-2); }
ul { padding: 0; margin: 0; list-style: none; }

a {
  color: var(--sage);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--forest); text-decoration: underline; }

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}
.section { padding: var(--space-12) 0; }
.section-alt { background: #fff; }
.section-head {
  max-width: 720px;
  margin: 0 auto var(--space-8);
  text-align: center;
}
.section-sub {
  color: var(--charcoal);
  opacity: 0.8;
  font-size: 18px;
}
.eyebrow {
  display: inline-block;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--space-2);
}
.eyebrow.light { color: var(--lime); }

.grid { display: grid; gap: var(--space-3); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--forest);
  color: var(--lime);
}
.btn-primary:hover { background: var(--deep-forest); color: var(--lime); }
.btn-secondary {
  background: var(--lime);
  color: var(--forest);
}
.btn-secondary:hover { background: #b4ce51; color: var(--forest); }
.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--lime); }
.btn-block { width: 100%; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--deep-forest);
  color: var(--off-white);
  font-size: 14px;
  font-weight: 400;
}
.topbar a { color: var(--lime); font-weight: 900; letter-spacing: 1px; }
.topbar a:hover { color: var(--off-white); }
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  gap: var(--space-2);
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--off-white);
  border-bottom: 1px solid var(--light-gray);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) var(--space-3);
  gap: var(--space-3);
}
.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo-link:hover { text-decoration: none; }
.logo-link img { height: 56px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.nav a {
  color: var(--forest);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav a:hover { color: var(--sage); text-decoration: none; }
.nav .nav-cta { color: var(--lime); letter-spacing: 2px; }
.nav .nav-cta:hover { color: var(--lime); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: var(--space-1);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--forest);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  background: var(--off-white);
  padding: var(--space-12) 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-8);
  align-items: center;
}
.hero-text h1 { margin-bottom: var(--space-3); }
.hero-text .lead {
  font-size: 20px;
  color: var(--charcoal);
  max-width: 560px;
  margin-bottom: var(--space-4);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: 14px;
  color: var(--charcoal);
  font-weight: 400;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}
.hero-trust svg { flex-shrink: 0; color: var(--sage); }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--forest);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ CARD ============ */
.card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

/* ============ SERVICES ============ */
.services-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.service-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease;
}
.service-card:hover { border-color: var(--forest); }
.service-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--light-gray);
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-body { padding: var(--space-3) var(--space-4) var(--space-4); }
.service-card h3 { font-size: 22px; margin-bottom: var(--space-1); }
.service-card p { color: var(--charcoal); opacity: 0.85; margin: 0; font-size: 16px; line-height: 1.6; }

/* ============ BENEFITS (WHY) ============ */
.benefits-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.benefit {
  padding: var(--space-3);
  border-left: 3px solid var(--lime);
}
.benefit h4 {
  font-size: 20px;
  margin-bottom: var(--space-1);
  color: var(--forest);
  font-weight: 900;
}
.benefit p { color: var(--charcoal); opacity: 0.85; font-size: 16px; margin: 0; }

/* ============ PROCESS ============ */
.process-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.step {
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--lime);
  color: var(--forest);
  font-weight: 900;
  font-size: 24px;
  margin-bottom: var(--space-3);
}
.step h3 { font-size: 22px; margin-bottom: var(--space-1); }
.step p { color: var(--charcoal); opacity: 0.85; font-size: 16px; margin: 0; }

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--light-gray);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1 / 2; }

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.testimonial {
  margin: 0;
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}
.stars {
  color: var(--lime);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: var(--space-2);
}
.testimonial blockquote {
  margin: 0 0 var(--space-3);
  color: var(--charcoal);
  font-size: 18px;
  line-height: 1.6;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  border-top: 1px solid var(--light-gray);
  padding-top: var(--space-2);
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--forest);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1px;
}
.testimonial figcaption strong {
  display: block;
  color: var(--forest);
  font-weight: 900;
  font-size: 16px;
}
.testimonial figcaption span {
  color: var(--charcoal);
  opacity: 0.7;
  font-size: 14px;
}

/* ============ AREAS ============ */
.areas-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
  max-width: 880px;
  margin: 0 auto;
}
.areas-list li {
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: background 0.15s ease;
}
.areas-list li:hover { background: var(--forest); }
.areas-list li:hover a { color: var(--lime); }
.areas-list a,
.areas-list li {
  font-weight: 900;
  color: var(--forest);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.areas-list a {
  display: block;
  padding: var(--space-2) var(--space-3);
  text-decoration: none;
}
.areas-list a:hover { text-decoration: none; color: var(--lime); }

/* ============ QUOTE / CTA ============ */
.section-cta {
  background: var(--forest);
  color: var(--off-white);
}
.section-cta h2 { color: var(--off-white); }
.section-cta p { color: var(--off-white); opacity: 0.85; }
.section-cta .eyebrow { color: var(--lime); }
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}
.quote-copy .lead { font-size: 18px; line-height: 1.6; }
.quote-contact { margin-top: var(--space-4); }
.quote-contact li {
  padding: var(--space-1) 0;
  color: var(--off-white);
  opacity: 0.9;
  font-size: 16px;
}
.quote-contact strong {
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  display: inline-block;
  min-width: 72px;
}
.quote-contact a { color: var(--off-white); }
.quote-contact a:hover { color: var(--lime); text-decoration: underline; }

.quote-form {
  background: var(--off-white);
  color: var(--charcoal);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
}
.form-row { margin-bottom: var(--space-2); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
.form-row label {
  display: block;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-1);
  color: var(--forest);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 16px;
  background: #fff;
  color: var(--charcoal);
  transition: border-color 0.15s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--forest);
}
.form-note {
  margin: var(--space-2) 0 0;
  font-size: 14px;
  text-align: center;
  color: var(--charcoal);
}
.form-note.success { color: var(--sage); }
.form-note.error { color: #b91c1c; }

/* ============ FAQ ============ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  margin-bottom: var(--space-1);
}
.faq summary {
  font-weight: 900;
  color: var(--forest);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 24px;
  color: var(--forest);
  font-weight: 900;
  margin-left: var(--space-2);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin: var(--space-2) 0 0;
  color: var(--charcoal);
  opacity: 0.85;
  font-size: 16px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--deep-forest);
  color: var(--off-white);
  padding: var(--space-8) 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-6);
}
.footer-col img { height: 56px; margin-bottom: var(--space-2); filter: brightness(1.1); }
.footer-tag {
  color: var(--off-white);
  opacity: 0.75;
  font-size: 15px;
  max-width: 320px;
}
.footer-col h5 {
  color: var(--lime);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 var(--space-2);
}
.footer-col ul li { padding: var(--space-1) 0; font-size: 15px; }
.footer-col a { color: var(--off-white); opacity: 0.8; }
.footer-col a:hover { color: var(--lime); opacity: 1; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-3) 0;
}
.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: var(--off-white);
  opacity: 0.6;
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--light-gray);
  padding: var(--space-2) 0;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--charcoal);
}
.breadcrumb a { color: var(--sage); }
.breadcrumb a:hover { color: var(--forest); text-decoration: none; }
.breadcrumb span { color: var(--forest); }

/* wide variant of areas-list for sibling-combo link grids */
.areas-list-wide { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 720px) {
  .areas-list-wide { grid-template-columns: 1fr; }
}

/* ============ COMPACT HERO (location/service pages) ============ */
.hero-compact { padding: var(--space-8) 0; }
.hero-compact h1 { font-size: 52px; }
.section-head-hero { padding-bottom: 0; }

/* ============ INLINE CTA ROW ============ */
.cta-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.cta-inline h2 { margin-bottom: var(--space-1); }
.cta-inline p { margin-bottom: 0; font-size: 18px; }
.cta-buttons { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.btn-outline-light {
  background: transparent;
  color: var(--off-white);
  border-color: var(--lime);
}
.btn-outline-light:hover { background: var(--lime); color: var(--forest); }

/* ============ SERVICE CARD AS LINK ============ */
.service-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.service-card-link:hover { text-decoration: none; }
.services-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ============ INCLUDED LIST (service page) ============ */
.included-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}
.included-list li {
  position: relative;
  padding: var(--space-2) var(--space-2) var(--space-2) var(--space-4);
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 16px;
  line-height: 1.5;
}
.included-list li::before {
  content: "";
  position: absolute;
  left: var(--space-2);
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}

/* ============ LOCATIONS HUB GRID ============ */
.areas-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.area-card {
  display: block;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease;
}
.area-card:hover {
  border-color: var(--forest);
  text-decoration: none;
  color: inherit;
}
.area-card h3 {
  font-size: 24px;
  margin-bottom: var(--space-1);
  color: var(--forest);
}
.area-card .area-meta {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 900;
  margin-bottom: var(--space-2);
}
.area-card p {
  color: var(--charcoal);
  opacity: 0.85;
  font-size: 15px;
  margin-bottom: var(--space-2);
}
.area-link {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sage);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  h3 { font-size: 24px; }
  .hero-compact h1 { font-size: 40px; }
  .section { padding: var(--space-8) 0; }
  .hero { padding: var(--space-8) 0; }
  .hero-inner { grid-template-columns: 1fr; gap: var(--space-4); }
  .hero-visual { aspect-ratio: 4 / 3; max-width: 560px; margin: 0 auto; }
  .services-grid,
  .services-grid-3,
  .benefits-grid,
  .process-grid,
  .testimonials-grid,
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .areas-list { grid-template-columns: repeat(3, 1fr); }
  .included-list { grid-template-columns: 1fr; }
  .cta-inline { flex-direction: column; align-items: flex-start; }
  .quote-inner { grid-template-columns: 1fr; gap: var(--space-4); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  h1 { font-size: 40px; letter-spacing: -1px; }
  h2 { font-size: 32px; }
  h3 { font-size: 22px; }
  .topbar-item:first-child { display: none; }
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--off-white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-2) var(--space-3);
    border-bottom: 1px solid var(--light-gray);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--light-gray);
  }
  .nav a:last-child {
    border-bottom: 0;
    margin-top: var(--space-1);
    text-align: center;
  }
  .services-grid,
  .services-grid-3,
  .benefits-grid,
  .process-grid,
  .testimonials-grid,
  .areas-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1 / 1; }
  .areas-list { grid-template-columns: repeat(2, 1fr); }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
