:root {
  --ink: #18302d;
  --muted: #5e6d68;
  --paper: #fbfcfa;
  --surface: #ffffff;
  --line: #dfe8e2;
  --accent: #1c7f73;
  --accent-dark: #125c54;
  --gold: #d8902f;
  --navy: #203f59;
  --danger: #b95635;
  --shadow: 0 14px 35px rgba(24, 48, 45, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 0.94rem;
}

.topbar-inner,
.nav-inner,
.wrap {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.topbar a {
  font-weight: 700;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 252, 250, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.btn,
button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover,
button:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn.secondary:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(24, 48, 45, 0.92) 0%, rgba(24, 48, 45, 0.76) 45%, rgba(24, 48, 45, 0.3) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.24) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.16) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #2c6b63, #d8efe8 62%, #f5c774);
  color: #fff;
}

.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.72fr);
  gap: 44px;
  align-items: center;
  padding: 72px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 0.88rem;
  font-weight: 900;
  color: #f9d589;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  max-width: 740px;
  font-size: clamp(2.2rem, 4.8vw, 4.7rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

h3 {
  font-size: 1.24rem;
}

.hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-actions .btn.secondary {
  background: rgba(255, 255, 255, 0.95);
}

.lead-panel {
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.lead-panel h2,
.lead-panel h3 {
  font-size: 1.36rem;
  margin-bottom: 8px;
}

.lead-panel p {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0 0 16px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfdcd5;
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 104px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(28, 127, 115, 0.18);
  border-color: var(--accent);
}

.hidden {
  display: none;
}

.form-note,
.success-note {
  color: var(--muted);
  font-size: 0.86rem;
}

.success-note {
  display: none;
  margin: 10px 0 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.band {
  padding: 64px 0;
}

.band.alt {
  background: #eef6f2;
}

.section-head {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin-bottom: 28px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px #fff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.76fr);
  gap: 36px;
  align-items: start;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.proof-item {
  padding: 18px;
  background: #fff;
}

.proof-item strong {
  display: block;
  color: var(--accent-dark);
  font-size: 1.28rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-links a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-decoration: none;
  font-weight: 800;
  color: var(--ink);
}

.city-links a:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.cta-band {
  background: var(--navy);
  color: #fff;
  padding: 42px 0;
}

.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-band p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta-band .btn.secondary {
  min-width: 176px;
}

.breadcrumbs {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.page-hero {
  background: #e9f3ef;
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.84);
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

@media (max-width: 860px) {
  .topbar-inner,
  .nav-inner,
  .cta-band .wrap,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-inner {
    padding: 12px 0;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .hero .wrap,
  .split,
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .hero .wrap {
    padding: 48px 0;
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .topbar-inner,
  .nav-inner,
  .wrap {
    width: min(100% - 24px, 1140px);
  }

  .topbar-inner {
    display: grid;
    gap: 4px;
  }

  .brand {
    align-items: flex-start;
  }

  .hero-actions {
    display: grid;
  }

  .lead-panel {
    padding: 18px;
  }

  .band {
    padding: 44px 0;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }
}
