:root {
  --ink: #17201d;
  --muted: #5c6863;
  --line: #dbe3df;
  --paper: #f7faf8;
  --white: #ffffff;
  --green: #0d7b53;
  --green-dark: #095b3e;
  --amber: #d99b3d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 28px;
  background: rgba(247, 250, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand,
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

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

.brand-mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(13, 123, 83, 0.14);
}

nav a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  max-height: 860px;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 20, 17, 0.82), rgba(10, 20, 17, 0.45) 46%, rgba(10, 20, 17, 0.05));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100vh - 64px);
  max-width: 760px;
  flex-direction: column;
  justify-content: center;
  padding: 64px 28px 96px;
  margin-left: max(0px, calc((100vw - 1180px) / 2));
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 20px;
  font-size: 56px;
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
}

.band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: -48px auto 0;
  position: relative;
  z-index: 2;
  background: var(--line);
  border: 1px solid var(--line);
}

.stats div {
  min-height: 112px;
  padding: 24px;
  background: var(--white);
}

.stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 24px;
}

.stats span,
.service-grid p,
.contact-copy p,
.site-footer,
.form-status {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  max-width: 1180px;
  padding: 84px 28px;
  margin: 0 auto;
}

.section-heading {
  max-width: 680px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.service-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.visual-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 42px;
  align-items: center;
  padding-top: 28px;
}

.visual-copy p {
  color: var(--muted);
  line-height: 1.62;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 14px 12px 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.check-list li::before {
  position: absolute;
  left: 14px;
  color: var(--green);
  content: "✓";
  font-weight: 700;
}

.feature-image {
  margin: 0;
}

.feature-image img,
.reassurance-band img {
  display: block;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.feature-image img {
  aspect-ratio: 4 / 3;
  box-shadow: 0 22px 60px rgba(23, 32, 29, 0.14);
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.audience-list div {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.local-seo {
  border-top: 1px solid var(--line);
}

.local-seo .section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.62;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.city-grid a {
  display: grid;
  gap: 8px;
  min-height: 138px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.city-grid a:hover {
  border-color: rgba(13, 123, 83, 0.55);
}

.city-grid strong {
  font-size: 18px;
}

.city-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.reassurance-band {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(0, 0.9fr);
  gap: 42px;
  align-items: center;
  max-width: 1180px;
  padding: 28px;
  margin: 0 auto 36px;
  background: #eaf2ee;
  border: 1px solid var(--line);
}

.reassurance-band img {
  aspect-ratio: 16 / 10;
}

.reassurance-copy {
  padding: 18px 10px;
}

.reassurance-copy p {
  color: var(--muted);
  line-height: 1.62;
}

.contact-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  max-width: 1180px;
  padding: 64px 28px 80px;
  margin: 0 auto 48px;
  border-top: 1px solid var(--line);
}

.contact-email {
  margin-top: 18px;
  font-weight: 700;
}

.contact-email a {
  color: var(--green-dark);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfdfc;
  border: 1px solid #cbd6d1;
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.choice-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 2px 0 0;
  border: 0;
}

.choice-group legend {
  grid-column: 1 / -1;
  padding: 0 0 2px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.choice-group label {
  display: block;
}

.choice-group input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.choice-group span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  background: #fbfdfc;
  border: 1px solid #cbd6d1;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.choice-group input:checked + span {
  color: var(--green-dark);
  background: #edf7f2;
  border-color: var(--green);
  box-shadow: inset 0 0 0 1px var(--green);
}

.choice-group input:focus-visible + span {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.full {
  grid-column: 1 / -1;
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.consent input {
  min-height: 18px;
  margin-top: 2px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--muted);
}

.legal-page,
.city-page {
  max-width: 940px;
  padding: 72px 28px 96px;
  margin: 0 auto;
}

.legal-page h1,
.city-page h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 44px;
  line-height: 1.08;
}

.legal-page h2,
.city-page h2 {
  margin-top: 34px;
  font-size: 24px;
}

.legal-page p,
.city-page p,
.city-page li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.66;
}

.legal-note {
  padding: 14px 16px;
  background: #fff7e8;
  border: 1px solid #efd3a6;
  border-radius: 8px;
}

.city-content {
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 14px 18px;
  }

  .hero,
  .hero-content {
    min-height: 720px;
  }

  .hero-overlay {
    background: rgba(10, 20, 17, 0.72);
  }

  .hero-content {
    padding: 42px 20px 90px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  .band,
  .service-grid,
  .visual-section,
  .split,
  .audience-list,
  .city-grid,
  .reassurance-band,
  .contact-band,
  .lead-form,
  .choice-group {
    grid-template-columns: 1fr;
  }

  .band {
    margin: -38px 18px 0;
  }

  .section,
  .contact-band {
    padding: 60px 20px;
  }

  .visual-section {
    padding-top: 24px;
  }

  .reassurance-band {
    margin: 0 18px 28px;
    padding: 18px;
  }

  .site-footer {
    flex-direction: column;
  }

  .legal-page,
  .city-page {
    padding: 50px 20px 76px;
  }

  .legal-page h1,
  .city-page h1 {
    font-size: 34px;
  }
}
