:root {
  --green: #0d3b2e;
  --green-hover: #14513f;
  --ink: #161613;
  --muted: #5a5b50;
  --cream: #f7f5f0;
  --soft: #eeece4;
  --line: #e5e2d9;
  --pale: #cfd8dc;
  --white: #ffffff;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: var(--green); }
a:hover { color: var(--green-hover); }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--green);
}
.skip-link:focus { top: 12px; }

.site-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -.02em;
  text-decoration: none;
  white-space: nowrap;
}
.brand img { width: 76px; height: 76px; object-fit: contain; }
.brand span span { color: var(--ink); }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a { color: var(--ink); font-size: 15px; font-weight: 600; text-decoration: none; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--green); }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1.5px solid var(--green);
  border-radius: 5px;
  padding: 14px 28px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.button:hover, .button:focus-visible { background: var(--green-hover); border-color: var(--green-hover); color: var(--white); }
.button:active { transform: translateY(1px); }
.button:disabled { cursor: wait; opacity: .72; }
.button-small { padding: 10px 20px; font-size: 14px; }
.button-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.button-outline:hover, .button-outline:focus-visible { background: var(--ink); border-color: var(--ink); }
.button-row { display: flex; flex-wrap: wrap; gap: 16px; }

.hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 58px 64px 90px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}
.eyebrow-pill {
  display: inline-block;
  margin: 0 0 24px;
  padding: 7px 14px;
  border-radius: 100px;
  background: var(--pale);
  color: var(--green);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0 0 24px;
  color: var(--green);
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.06;
  letter-spacing: -.025em;
}
.lead { max-width: 560px; margin: 0 0 36px; color: #48493f; font-size: 19px; line-height: 1.65; }
.hero-image, .why-image { margin: 0; border-radius: 12px; overflow: hidden; background: #d9d7cf; aspect-ratio: 4/3; }
.hero-image img, .why-image img { width: 100%; height: 100%; display: block; object-fit: cover; }

.stats { padding: 28px 64px; background: var(--green); }
.stats-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; color: #e9ede9; }
.stats-inner div { min-width: 0; text-align: center; }
.stats-inner strong { display: block; color: var(--white); font-size: 28px; }
.stats-inner span { display: block; margin-top: 4px; font-size: 13px; opacity: .78; }

.section { max-width: 1400px; margin: 0 auto; padding: 96px 64px; }
.section-heading { max-width: 650px; margin: 0 auto 56px; text-align: center; }
.eyebrow { margin: 0 0 12px; color: var(--green); font-size: 13px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.section h2, .why-section h2, .contact-section h2 {
  margin: 0;
  font-size: clamp(32px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -.015em;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { padding: 32px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.service-card img { display: block; width: 52px; height: 52px; margin-bottom: 20px; }
.service-card h3 { margin: 0 0 10px; color: var(--green); font-size: 20px; }
.service-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

.why-section { padding: 96px 64px; background: var(--soft); }
.why-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.why-section h2 { margin-bottom: 28px; }
.benefit-list { display: flex; flex-direction: column; gap: 22px; }
.benefit-list article { display: flex; gap: 16px; }
.benefit-list article > span { width: 6px; flex: 0 0 6px; border-radius: 3px; background: var(--green); }
.benefit-list h3 { margin: 0 0 5px; font-size: 17px; }
.benefit-list p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

.coverage { max-width: 1000px; text-align: center; }
.coverage h2 { margin-bottom: 20px; }
.coverage > p:last-child { max-width: 680px; margin: 0 auto; color: var(--muted); font-size: 17px; line-height: 1.7; }

.contact-section { padding: 96px 64px; background: var(--green); }
.contact-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.eyebrow-light { color: var(--pale); }
.contact-copy h2 { margin-bottom: 20px; color: var(--white); }
.contact-copy > p:not(.eyebrow) { max-width: 470px; margin: 0 0 32px; color: #c8d2ce; font-size: 17px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 16px; color: var(--white); }
.contact-details p { display: flex; gap: 12px; align-items: center; margin: 0; }
.contact-details p > span { width: 8px; height: 8px; flex: 0 0 8px; border-radius: 50%; background: var(--pale); }
.contact-details a { color: var(--white); }

.contact-form { position: relative; display: flex; flex-direction: column; gap: 16px; padding: 36px; border-radius: 10px; background: var(--white); }
.field label { display: block; margin-bottom: 6px; color: var(--ink); font-size: 13px; font-weight: 650; }
.field label span { color: #77786f; font-weight: 500; }
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8d6cd;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
}
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 3px solid rgba(13, 59, 46, .18); border-color: var(--green); }
.honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-button { width: 100%; margin-top: 4px; }
.form-status { min-height: 20px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.form-status.is-success { color: #136c3b; font-weight: 650; }
.form-status.is-error, .form-error { color: #a52424; font-weight: 650; }
.form-error a { color: inherit; }

.site-footer { padding: 32px 64px; background: var(--cream); }
.site-footer > div { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.site-footer strong { color: var(--green); font-size: 15px; }
.site-footer span { color: #77786f; font-size: 13px; }

@media (max-width: 980px) {
  .site-header { padding-inline: 32px; flex-wrap: wrap; }
  .site-nav { order: 3; width: 100%; justify-content: center; padding-bottom: 6px; }
  .hero, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 32px 72px; }
  .hero-copy { max-width: 720px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .section, .why-section, .contact-section { padding: 76px 32px; }
  .why-image { max-width: 720px; }
}

@media (max-width: 640px) {
  .site-header { padding: 14px 20px; gap: 16px; }
  .brand img { width: 58px; height: 58px; }
  .header-quote { display: none; }
  .site-nav { justify-content: flex-start; gap: 20px; overflow-x: auto; }
  .site-nav a { font-size: 14px; }
  .hero { padding: 38px 20px 60px; gap: 40px; }
  .hero h1 { font-size: 40px; }
  .lead { font-size: 17px; }
  .button-row .button { width: 100%; }
  .stats { padding: 26px 20px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .stats-inner strong { font-size: 24px; }
  .section, .why-section, .contact-section { padding: 64px 20px; }
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card { padding: 26px; }
  .why-grid, .contact-grid { gap: 42px; }
  .contact-form { padding: 26px 20px; }
  .site-footer { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
