:root {
  --green: #00885f;
  --green-dark: #006b4b;
  --orange: #d76d35;
  --orange-hot: #f16322;
  --ink: #2a241c;
  --muted: #5c5348;
  --paper: #f7f5ef;
  --white: #ffffff;
  --line: #e4dfd4;
  --shadow: 0 10px 30px rgba(42, 36, 28, 0.08);
  --radius: 14px;
  --max: 1080px;
  --font: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--green-dark); }
h1, h2, h3 { line-height: 1.2; color: var(--ink); margin: 0 0 0.6em; }
h1 { font-size: clamp(1.75rem, 5vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 1.9rem); color: var(--orange); }
p { margin: 0 0 1rem; }
.wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.narrow { width: min(100% - 2rem, 720px); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem; background: var(--green); color: #fff;
  padding: 0.6rem 1rem; border-radius: 8px; z-index: 1000;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 4.25rem; padding-block: 0.65rem;
}
.logo img { width: min(220px, 55vw); height: auto; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border: 1px solid var(--line);
  border-radius: 10px; background: var(--white); cursor: pointer;
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block; width: 1.15rem; height: 2px; background: var(--ink); border-radius: 2px;
  position: relative; transition: transform .2s ease;
}
.nav-toggle-bars::before, .nav-toggle-bars::after {
  content: ""; position: absolute; left: 0;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }

.site-nav {
  display: none; position: absolute; left: 0; right: 0; top: 100%;
  background: var(--white); border-bottom: 1px solid var(--line);
  padding: 0.75rem 1rem 1.1rem; flex-direction: column; gap: 0.35rem;
}
.site-nav.is-open { display: flex; }
.site-nav a {
  color: var(--ink); text-decoration: none; font-weight: 600;
  padding: 0.8rem 0.9rem; border-radius: 10px;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { background: #eef7f2; color: var(--green-dark); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem; min-height: 2.9rem; padding: 0.7rem 1.15rem;
  border-radius: 999px; font-weight: 700; text-decoration: none; border: 2px solid transparent;
}
.btn-pay, .site-nav .btn-pay {
  background: var(--orange); color: #fff !important; text-align: center;
}
.btn-pay:hover, .site-nav .btn-pay:hover { background: var(--orange-hot); color: #fff !important; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); color: #fff; }
.btn-secondary { background: transparent; color: var(--green-dark); border-color: var(--green); }
.btn-secondary:hover { background: #e7f4ee; color: var(--green-dark); }
.btn-pay-large {
  background: #228800; color: #fff !important; min-height: 3.4rem;
  padding: 0.9rem 1.6rem; font-size: 1.1rem; border-radius: 10px;
}
.btn-pay-large:hover { background: #1a6b00; color: #fff !important; }

.hero {
  background:
    linear-gradient(160deg, rgba(0,136,95,0.92), rgba(0,107,75,0.88)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 45%);
  color: #fff; padding: 3.25rem 0 3.5rem;
}
.hero h1, .hero .lede, .hero .eyebrow { color: #fff; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8rem;
  font-weight: 700; opacity: 0.92; margin-bottom: 0.75rem;
}
.lede { font-size: 1.08rem; max-width: 38rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.4rem; }
.hero .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.75); }
.hero .btn-secondary:hover { background: rgba(255,255,255,0.12); color: #fff; }

.section { padding: 3rem 0; }
.section-alt { background: var(--white); }
.section-intro { color: var(--muted); max-width: 40rem; }
.service-grid {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: grid; grid-template-columns: 1fr; gap: 0.75rem;
}
.service-grid li {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem 1.1rem; font-weight: 600; box-shadow: var(--shadow);
}
.review-grid { display: grid; gap: 1rem; margin-top: 1.25rem; }
blockquote {
  margin: 0; background: var(--white); border-left: 4px solid var(--green);
  border-radius: var(--radius); padding: 1.15rem 1.2rem; box-shadow: var(--shadow);
}
blockquote p { margin-bottom: 0.7rem; }
blockquote footer { color: var(--muted); font-size: 0.95rem; font-weight: 600; }
.section-cta {
  background: linear-gradient(180deg, #e8f5ef, #f7f5ef);
  text-align: center;
}
.contact-list {
  list-style: none; padding: 0; margin: 1.25rem auto 1.5rem;
  display: grid; gap: 0.55rem; font-size: 1.05rem; font-weight: 600;
}
.contact-list a { color: var(--green-dark); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.section-cta .hero-actions { justify-content: center; }

.pay-hero { padding-top: 2.5rem; padding-bottom: 3.5rem; }
.pay-action { margin: 1.5rem 0 2rem; }
.pay-alt {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem 1.3rem; box-shadow: var(--shadow); margin-bottom: 1.5rem;
}
.pay-alt h2 { font-size: 1.15rem; margin-bottom: 0.5rem; }
address { font-style: normal; font-weight: 600; line-height: 1.6; }
.pay-help { color: var(--muted); }

.site-footer {
  background: var(--green); color: #fff; padding: 1.4rem 0;
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem;
  justify-content: space-between; align-items: center;
}
.site-footer p { margin: 0; font-size: 0.95rem; }
.site-footer a { color: #fff; font-weight: 700; }

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex; position: static; flex-direction: row; align-items: center;
    gap: 0.2rem; border: 0; padding: 0; background: transparent;
  }
  .site-nav a { padding: 0.55rem 0.7rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 4.5rem 0; }
}

@media (min-width: 1100px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}
