/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --green:    #2e8d44;
  --green-dk: #1f6530;
  --green-lt: #e8f5ec;
  --ink:      #1a1a1a;
  --ink-mid:  #444444;
  --rule:     #d6d6d6;
  --white:    #ffffff;
  --off:      #f7f7f5;

  --font-display: "franklin-gothic-std-cond", "Franklin Gothic Demi", Arial Narrow, sans-serif;
  --font-body:    "EB Garamond", Georgia, "Times New Roman", serif;

  --max: 1100px;
  --gap: clamp(1.5rem, 4vw, 3rem);
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 1vw + 0.85rem, 1.2rem);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.1rem, 4vw + 0.5rem, 3.4rem); }
h2 { font-size: clamp(1.55rem, 2.5vw + 0.4rem, 2.2rem); color: var(--ink); }
h3 { font-size: clamp(1.15rem, 1.5vw + 0.2rem, 1.4rem); color: var(--green-dk); }
p  { margin-bottom: 0.9em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
}

/* ── LAYOUT HELPERS ─────────────────────────────────── */
.container { width: min(var(--max), 100% - clamp(2rem, 8vw, 3.5rem)); margin-inline: auto; }
.section   { padding: clamp(2.75rem, 6vw, 5rem) 0; }
.section--alt { background: var(--off); }
.section--green { background: var(--green-lt); }

/* ── NAV ────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 1rem;
  padding-block: 0.4rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo img { height: 40px; width: 40px; }
.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.2;
}
.nav-wordmark span { display: block; font-size: 0.65rem; letter-spacing: 0.12em; color: var(--ink-mid); }
.nav-links { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.2rem); list-style: none; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: color 0.15s;
  padding: 0.4rem 0;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--green); }
.nav-links .nav-cta a {
  background: var(--green);
  color: var(--white);
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
}
.nav-links .nav-cta a:hover { background: var(--green-dk); color: var(--white); }

/* hamburger — enlarged hit area for mobile */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger { color: var(--ink); }
.hamburger:hover { color: var(--green); }
.hamburger svg { display: block; }
.hamburger .icon-close { display: none; }
.hamburger[aria-expanded="true"] .icon-menu { display: none; }
.hamburger[aria-expanded="true"] .icon-close { display: block; }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--rule);
  padding: 1rem clamp(1.25rem, 6vw, 1.75rem) 1.5rem;
  gap: 0.3rem;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid var(--rule);
}
.mobile-menu a:hover, .mobile-menu a[aria-current="page"] { color: var(--green); }
.mobile-menu .mobile-cta { border-bottom: none; }
.mobile-menu .mobile-cta a {
  display: block;
  text-align: center;
  background: var(--green);
  color: var(--white) !important;
  padding: 0.85rem 1.2rem;
  border-radius: 2px;
  margin-top: 0.6rem;
  border-bottom: none;
}
.mobile-menu.open { display: flex; }

/* ── HERO (home only) ──────────────────────────────── */
#home {
  background: var(--white);
  padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(2.5rem, 6vw, 5rem);
  border-bottom: 3px solid var(--green);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
}
.hero-text { max-width: 660px; }
.hero-text h1 { color: var(--ink); margin-bottom: 1rem; }
.hero-text h1 em { color: var(--green); font-style: normal; }
.hero-sub {
  font-size: clamp(1.05rem, 1.5vw + 0.3rem, 1.25rem);
  color: var(--ink-mid);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-stamp {
  width: clamp(96px, 12vw, 130px);
  height: clamp(96px, 12vw, 130px);
  border: 3px solid var(--green);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  flex-shrink: 0;
}
.hero-stamp strong {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  color: var(--green);
  line-height: 1;
}
.hero-stamp small {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-top: 0.3rem;
}

/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  background: var(--off);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-bottom: 3px solid var(--green);
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { color: var(--ink-mid); max-width: 640px; font-size: clamp(1.05rem, 1.2vw + 0.4rem, 1.2rem); }

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dk); }
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); }

/* ── TRUST BAR ──────────────────────────────────────── */
#trust {
  background: var(--ink);
  padding: 2.2rem 0;
}
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
}
.trust-item strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--green);
  line-height: 1;
}
.trust-item span {
  font-family: var(--font-display);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
}
.trust-divider {
  width: 1px; height: 44px;
  background: #444;
  flex-shrink: 0;
}

/* ── SERVICES ───────────────────────────────────────── */
.section-header { max-width: 620px; margin-bottom: var(--gap); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  background: var(--rule);
  border: 1.5px solid var(--rule);
}
.service-card {
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
.service-icon {
  width: 40px; height: 40px;
  background: var(--green-lt);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.service-icon svg { width: 22px; height: 22px; fill: var(--green); }
.service-card h3 { margin-bottom: 0.5rem; }

/* ── HOW IT WORKS / PROCESS ──────────────────────────── */
#how, .process-section {
  background: var(--green-lt);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.25rem;
  margin-top: var(--gap);
}
.how-step { position: relative; }
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--green);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.how-step h3 { margin-bottom: 0.4rem; }

/* ── COVERAGE ───────────────────────────────────────── */
.towns-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.75rem;
}
.towns-col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dk);
  border-bottom: 2px solid var(--green);
  padding-bottom: 0.4rem;
  margin-bottom: 0.8rem;
}
.towns-col ul { list-style: none; }
.towns-col ul li {
  font-size: 1rem;
  color: var(--ink-mid);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--rule);
}
.towns-col ul li:last-child { border-bottom: none; }

/* ── ABOUT ──────────────────────────────────────────── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about-sidebar {
  background: var(--off);
  border-left: 4px solid var(--green);
  padding: 1.75rem;
}
.about-sidebar h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dk);
  margin-bottom: 0.8rem;
}
.cred-list { list-style: none; }
.cred-list li {
  font-size: 0.98rem;
  color: var(--ink-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.cred-list li:last-child { border-bottom: none; }
.cred-list li::before { content: "✓"; color: var(--green); font-weight: bold; flex-shrink: 0; }

/* ── CONTACT PAGE EXTRAS ─────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
  background: var(--rule);
  border: 1.5px solid var(--rule);
  margin-top: var(--gap);
}
.contact-card {
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
.contact-card h3 { margin-bottom: 0.5rem; }
.contact-card a { color: var(--green-dk); font-weight: 600; word-break: break-word; }
.contact-card a:hover { text-decoration: underline; }

/* ── CTA BAND ───────────────────────────────────────── */
#contact-cta {
  background: var(--green);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  text-align: center;
}
#contact-cta h2 { color: var(--white); margin-bottom: 0.75rem; }
#contact-cta p  { color: rgba(255,255,255,0.85); max-width: 520px; margin-inline: auto; margin-bottom: 2rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; }
.btn-white { background: var(--white); color: var(--green); }
.btn-white:hover { background: var(--off); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.contact-note { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-top: 1.5rem; }
.contact-email { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-top: 1.2rem; }
.contact-email strong { color: var(--white); user-select: all; }

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 2rem 0;
  color: #888;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.6rem; }
.footer-logo img { height: 28px; width: 28px; filter: brightness(0) invert(1) opacity(0.6); }
.footer-brand {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}
.footer-info { font-size: 0.85rem; text-align: right; line-height: 1.7; }
.footer-info a { color: #aaa; }
.footer-info a:hover { color: var(--green); }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stamp { flex-direction: row; gap: 0.6rem; width: auto; height: auto; border-radius: 999px; padding: 0.6rem 1.25rem; }
  .hero-stamp small { margin-top: 0; }
  .about-inner { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-info { text-align: left; }
  .contact-actions { flex-direction: column; align-items: stretch; }
  .contact-actions .btn { width: 100%; }
}
@media (min-width: 681px) {
  .mobile-menu { display: none !important; }
}
@media (max-width: 680px) {
  .eyebrow { font-size: 0.85rem; }
  .hero-sub, .page-hero p { font-size: 1.15rem; }
  .trust-item strong { font-size: 1.9rem; }
  .trust-item span { font-size: 0.78rem; }
  .service-card h3, .how-step h3 { font-size: 1.2rem; }
  .towns-col ul li, .cred-list li { font-size: 1.05rem; }
  .footer-info { font-size: 0.95rem; }
  .btn { font-size: 0.9rem; padding: 0.9rem 1.4rem; }
}

/* ── FOCUS / ACCESSIBILITY ──────────────────────────── */
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
