
:root {
  --green: #1d5b3a;
  --green-dark: #123c29;
  --blue: #176b87;
  --cream: #f5f7f2;
  --ink: #18211b;
  --muted: #637068;
  --white: #ffffff;
  --border: #dfe7e1;
  --shadow: 0 18px 45px rgba(18, 60, 41, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-right: auto;
}
.mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue));
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 1.05rem; color: var(--green-dark); }
.brand-text small { color: var(--muted); margin-top: 4px; }

nav { display: flex; gap: 24px; }
nav a { text-decoration: none; color: #33433a; font-weight: 600; font-size: .95rem; }
nav a:hover { color: var(--green); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 700;
  color: var(--white);
  background: var(--green);
  border: 2px solid var(--green);
  transition: .18s ease;
}
.button:hover { transform: translateY(-1px); background: var(--green-dark); border-color: var(--green-dark); }
.header-button { min-height: 42px; padding: 0 16px; font-size: .92rem; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 15%, rgba(23,107,135,.22), transparent 28%),
    linear-gradient(135deg, #eef6ef 0%, #f8fbf8 55%, #e9f3f5 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -140px;
  bottom: -200px;
  border: 42px solid rgba(29,91,58,.08);
  border-radius: 50%;
}
.hero-inner {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 70px;
}
.eyebrow {
  margin: 0 0 12px;
  color: #d8efe3;
  font-size: .78rem;
  letter-spacing: .13em;
  font-weight: 800;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--green); }
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: .98;
  letter-spacing: -.045em;
  color: var(--green-dark);
}
.lead {
  max-width: 700px;
  margin: 24px 0 28px;
  font-size: 1.18rem;
  color: #4c5d53;
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button.secondary { background: transparent; color: var(--green); }
.button.secondary:hover { background: var(--green); color: white; }
.owner { margin-top: 18px; color: var(--muted); font-size: .92rem; }

.hero-panel {
  min-height: 370px;
  position: relative;
  display: grid;
  place-items: center;
}
.water-lines {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 2px solid rgba(23,107,135,.24);
  box-shadow:
    0 0 0 42px rgba(23,107,135,.08),
    0 0 0 86px rgba(29,91,58,.05);
}
.hero-card {
  position: relative;
  z-index: 2;
  width: min(320px, 92%);
  padding: 34px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
}
.hero-card span { display: block; color: #bcd8ca; }
.hero-card strong { display: block; font-size: 1.4rem; margin: 5px 0 14px; }
.hero-card a { display: block; font-size: 1.65rem; font-weight: 800; text-decoration: none; }

.quick-info { background: var(--green-dark); color: white; }
.info-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.info-grid > div { padding: 24px 20px; border-right: 1px solid rgba(255,255,255,.12); }
.info-grid > div:last-child { border-right: 0; }
.info-grid strong, .info-grid span { display: block; }
.info-grid span { color: #bed0c5; font-size: .9rem; margin-top: 2px; }

.section { padding: 92px 0; }
.section.alt { background: var(--cream); }
.section-heading { max-width: 730px; margin-bottom: 38px; }
.section h2, .cta h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--green-dark);
}
.section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; }

.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: white;
  box-shadow: 0 10px 30px rgba(18,60,41,.05);
}
.icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #edf5ef;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.card h3 { margin: 0 0 8px; color: var(--green-dark); font-size: 1.18rem; }
.card p { margin: 0; color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split p { color: var(--muted); }
.contact-box {
  padding: 38px;
  background: linear-gradient(135deg, var(--green-dark), #1c5a43);
  border-radius: 20px;
  box-shadow: var(--shadow);
  color: white;
}
.contact-box h3 { margin: 0 0 12px; font-size: 1.7rem; }
.big-phone { display: block; font-size: clamp(1.8rem,4vw,2.7rem); font-weight: 800; text-decoration: none; margin: 4px 0 12px; }
.email { color: #d6e9df; word-break: break-word; }

.address { padding-left: 18px; border-left: 4px solid var(--green); }
.area-graphic {
  min-height: 320px;
  border-radius: 22px;
  background:
    linear-gradient(rgba(18,60,41,.84), rgba(18,60,41,.84)),
    repeating-linear-gradient(45deg, #dcebe2 0 14px, #cfe2d6 14px 28px);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
}
.area-graphic .pin { font-size: 3.5rem; line-height: 1; color: #95d5b2; }
.area-graphic strong { font-size: 2rem; }
.area-graphic span { color: #cfe4d8; }

.cta { padding: 70px 0; background: linear-gradient(135deg, var(--blue), var(--green)); color: white; }
.cta h2 { color: white; max-width: 700px; }
.cta p { color: #e1f0ea; }
.cta-inner { display: grid; grid-template-columns: 1.4fr .6fr; gap: 60px; align-items: center; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; }
.button.light { background: white; border-color: white; color: var(--green-dark); }
.button.outline-light { background: transparent; border-color: white; color: white; }
.email-link { color: white; text-align: center; font-size: .88rem; word-break: break-word; }

footer { background: #0d281c; color: #c1d1c7; padding: 40px 0 22px; }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; }
.footer-inner > div { display: flex; flex-direction: column; }
.footer-inner strong { color: white; }
.copyright { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); font-size: .84rem; color: #8fa298; }

@media (max-width: 880px) {
  nav { display: none; }
  .hero-inner, .split, .cta-inner { grid-template-columns: 1fr; }
  .hero-inner { min-height: auto; padding: 70px 0; gap: 35px; }
  .hero-panel { min-height: 290px; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .info-grid > div:nth-child(2) { border-right: 0; }
  .cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .container { width: min(100% - 28px,1120px); }
  .brand-text small { font-size: .72rem; }
  .header-button { display: none; }
  .nav { min-height: 68px; }
  .hero h1 { font-size: 2.65rem; }
  .lead { font-size: 1.04rem; }
  .hero-panel { display: none; }
  .info-grid, .cards { grid-template-columns: 1fr; }
  .info-grid > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .section { padding: 68px 0; }
  .split { gap: 34px; }
  .contact-box { padding: 28px; }
  .footer-inner { flex-direction: column; }
  .actions .button { width: 100%; }
}
