:root {
  --bg: #f3f6f4;
  --surface: #ffffff;
  --surface-alt: #e7efeb;
  --surface-soft: #f7faf8;
  --text: #112019;
  --muted: #4d5d55;
  --primary: #12724e;
  --primary-dark: #0d563a;
  --accent: #d9f267;
  --border: #d5e0db;
  --danger: #8d2f2f;
  --shadow: 0 18px 40px rgba(17, 32, 25, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
figure { margin: 0; }
figcaption { margin: 0; }
h1, h2, h3 { line-height: 1.1; margin: 0 0 1rem; }
.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}
.topbar {
  background: #0f1f18;
  color: #f5fbf8;
  font-size: 0.95rem;
}
.topbar__inner,
.header__inner,
.footer__inner,
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar__inner { padding: 0.75rem 0; }
.topbar a { color: var(--accent); font-weight: 700; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(243, 246, 244, 0.92);
  border-bottom: 1px solid rgba(17, 32, 25, 0.06);
}
.header__inner { padding: 1rem 0; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
}
.brand small {
  display: block;
  color: var(--muted);
  font-weight: 500;
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem 1.25rem;
  color: var(--muted);
  font-weight: 600;
}
.site-nav a.active {
  color: var(--primary-dark);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.button:hover { transform: translateY(-1px); }
.button--primary {
  background: var(--primary);
  color: #fff;
}
.button--primary:hover { background: var(--primary-dark); }
.button--secondary {
  background: transparent;
  border-color: var(--border);
}
.button--light {
  background: #fff;
  color: var(--primary-dark);
}
.button--sm { padding: 0.7rem 1rem; }
.button--full { width: 100%; }
.hero,
.page-hero {
  padding: 4.75rem 0 3rem;
}
.breadcrumb {
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb li + li::before {
  content: '›';
  color: var(--muted);
}
.breadcrumb a {
  color: var(--primary-dark);
}
.hero__grid,
.page-hero__grid,
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}
.page-hero__grid--media {
  align-items: stretch;
}
.hero-stack,
.proof-stack {
  display: grid;
  gap: 1rem;
}
.info-panel--compact {
  padding: 1.25rem 1.35rem;
}
.hero h1,
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
.hero__lede,
.page-hero__lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 60ch;
}
.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(18, 114, 78, 0.1);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.75rem 0;
}
.hero__highlights,
.checklist,
.info-panel ul,
.faq-list,
.pill-grid,
.contact-list,
.process-list,
.badge-list,
.highlight-list,
.proof-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero__highlights,
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero__highlights li,
.badge-list li,
.pill-grid span {
  padding: 0.7rem 0.95rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.hero-media,
.support-media {
  overflow: hidden;
}
.hero-media img,
.support-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.hero-media figcaption,
.support-media figcaption {
  padding: 0.9rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.hero-media--urgent {
  border-color: rgba(141, 47, 47, 0.16);
  background: linear-gradient(180deg, #fff, #fff7f7);
}
.hero-media--urgent figcaption {
  border-top: 1px solid rgba(141, 47, 47, 0.08);
}
.support-media--feature {
  position: relative;
}
.support-media--feature::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 242, 103, 0.55), rgba(217, 242, 103, 0));
  pointer-events: none;
}
.hero-card,
.card,
.info-panel,
.request-form,
.simple-page__card,
.notice-card,
.contact-card,
.hero-media,
.support-media {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card,
.info-panel,
.request-form,
.simple-page__card,
.notice-card,
.contact-card { padding: 1.5rem; }
.lead-form,
.request-form,
.request-form fieldset { display: grid; gap: 1rem; }
label,
legend {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}
fieldset {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
}
legend {
  padding: 0 0.35rem;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.checkbox {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-weight: 500;
}
.checkbox input {
  width: auto;
  margin-top: 0.25rem;
}
input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  background: #fbfcfc;
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
}
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(18, 114, 78, 0.18);
  border-color: var(--primary);
}
small,
.form-note,
.muted { color: var(--muted); }
.trust-strip,
.section,
.cta-band { padding: 1.5rem 0 4rem; }
.trust-strip__inner,
.card-grid,
.pill-grid,
.form-grid,
.process-grid,
.proof-grid,
.contact-grid,
.stat-grid {
  display: grid;
  gap: 1rem;
}
.trust-strip__inner { grid-template-columns: repeat(3, 1fr); }
.trust-strip__inner > div,
.card,
.process-step,
.stat-card {
  padding: 1.3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.card-grid { grid-template-columns: repeat(2, 1fr); }
.card-grid--three,
.process-grid,
.proof-grid,
.contact-grid,
.stat-grid { grid-template-columns: repeat(3, 1fr); }
.section-heading { max-width: 760px; margin-bottom: 2rem; }
.section-heading p:last-child { color: var(--muted); }
.section--alt { background: var(--surface-alt); }
.checklist li,
.info-panel li,
.process-list li,
.contact-list li,
.highlight-list li,
.proof-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.85rem;
}
.checklist li::before,
.info-panel li::before,
.process-list li::before,
.contact-list li::before,
.highlight-list li::before,
.proof-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}
.info-panel--accent,
.notice-card--accent {
  background: linear-gradient(180deg, #12382c, #0e281f);
  color: #f5fbf8;
}
.info-panel--accent li::before,
.notice-card--accent li::before { color: var(--accent); }
.notice-card--soft {
  background: #eef7f2;
}
.pill-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.faq-list { display: grid; gap: 1rem; }
details {
  padding: 1.15rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
.cta-band { padding-bottom: 5rem; }
.cta-band__inner {
  padding: 2rem;
  background: linear-gradient(135deg, #12724e, #0d563a);
  color: #fff;
  border-radius: var(--radius);
}
.meta-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}
.meta-item {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  border: 1px solid var(--border);
}
.meta-item strong,
.stat-card strong {
  display: block;
  margin-bottom: 0.25rem;
}
.stat-card strong {
  font-size: 1.1rem;
}
.placeholder {
  color: var(--primary-dark);
  font-weight: 700;
}
.placeholder-note {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(17, 32, 25, 0.12);
}
.contact-card__actions,
.card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.alert {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(141, 47, 47, 0.18);
  background: #fff7f7;
}
.alert strong {
  color: var(--danger);
}
.site-footer {
  padding: 2rem 0 3rem;
  background: #0f1f18;
  color: #d9e7e1;
}
.footer__inner { align-items: flex-start; }
.site-footer strong { display: block; margin-bottom: 0.75rem; }
.site-footer a { display: block; margin-bottom: 0.65rem; }
.site-footer .placeholder { color: #f5fbf8; }
.form-grid { grid-template-columns: repeat(2, 1fr); }
.form-grid__full { grid-column: 1 / -1; }
.split--wide-gap { gap: 2.5rem; }
.simple-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}
.simple-page__card { max-width: 760px; }
.service-card-grid {
  align-items: stretch;
}
.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  padding: 4.3rem 1.3rem 1.3rem;
  background:
    radial-gradient(circle at top right, rgba(217, 242, 103, 0.22), transparent 35%),
    linear-gradient(180deg, rgba(18, 114, 78, 0.08), rgba(18, 114, 78, 0) 6rem),
    var(--surface);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.service-card::after {
  position: absolute;
  top: 1.15rem;
  left: 1.25rem;
  min-width: 2.8rem;
  height: 2rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
  background: rgba(18, 114, 78, 0.1);
  border: 1px solid rgba(18, 114, 78, 0.16);
  z-index: 2;
}
.service-card--pumping::after { content: "01"; }
.service-card--inspection::after { content: "02"; }
.service-card--emergency::after { content: "03"; }
.service-card--maintenance::after { content: "04"; }
.service-card__media {
  margin: -4.3rem -1.3rem 0.35rem;
  border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 1rem 1rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(17, 32, 25, 0.06);
}
.service-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.service-card h3 {
  margin-bottom: 0;
}
.service-card p:not(.service-card__kicker) {
  color: var(--muted);
}
.service-card a {
  color: var(--primary-dark);
  font-weight: 700;
  margin-top: auto;
}
.service-card__kicker {
  margin-bottom: 0;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.service-card__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 0.35rem;
  display: grid;
  gap: 0.5rem;
}
.service-card__bullets li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.98rem;
}
.service-card__bullets li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--primary);
}
.visual-proof-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.visual-proof-band__item {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.visual-proof-band__item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.visual-proof-band__item figcaption {
  padding: 0.9rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.homepage-stat-grid {
  margin-top: 1rem;
}
.contact-card--trust {
  background: linear-gradient(180deg, #ffffff, #f5f9f7);
}
.mini-trust-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}
.mini-trust-item {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  border: 1px solid var(--border);
}
.mini-trust-item strong,
.mini-trust-item span {
  display: block;
}
.mini-trust-item strong {
  margin-bottom: 0.3rem;
}
.mini-trust-item span {
  color: var(--muted);
}
.trust-panel {
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(18, 114, 78, 0.12);
  background: linear-gradient(135deg, rgba(18, 114, 78, 0.1), rgba(217, 242, 103, 0.2));
}
.trust-panel--soft {
  background: linear-gradient(180deg, #ffffff, #eef7f2);
}
.proof-badges {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}
.proof-badges li {
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 114, 78, 0.1);
  box-shadow: 0 10px 24px rgba(17, 32, 25, 0.05);
}
.proof-badges--compact li {
  background: var(--surface-soft);
  box-shadow: none;
}
.card > :last-child,
.info-panel > :last-child,
.hero-card > :last-child,
.simple-page__card > :last-child,
details > :last-child,
.notice-card > :last-child,
.contact-card > :last-child { margin-bottom: 0; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .hero__grid,
  .page-hero__grid,
  .split,
  .trust-strip__inner,
  .card-grid,
  .card-grid--three,
  .pill-grid,
  .form-grid,
  .process-grid,
  .proof-grid,
  .contact-grid,
  .stat-grid,
  .checkbox-grid,
  .visual-proof-band {
    grid-template-columns: 1fr;
  }

  .header__inner,
  .topbar__inner,
  .footer__inner,
  .cta-band__inner,
  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header { position: static; }
}
