:root {
  --ink: #15211d;
  --muted: #5f6d67;
  --paper: #f4f7f2;
  --white: #ffffff;
  --line: #dbe2dc;
  --brand: #0d7652;
  --brand-strong: #095b41;
  --fresh: #94bd37;
  --sun: #f1c94a;
  --steel: #263532;
  --soft: #eaf0e9;
  --danger: #c7552c;
  --shadow: 0 18px 40px rgba(18, 31, 28, .12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(244, 247, 242, .96) 34rem),
    var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-weight: 760;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.45rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: .65rem .9rem;
  color: var(--white);
  background: var(--brand-strong);
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.topbar {
  color: var(--white);
  background: #111a17;
  font-size: .88rem;
}

.topbar-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(21, 33, 29, .08);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 26px rgba(17, 26, 23, .06);
}

.header-inner {
  width: min(100% - 32px, var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  font-weight: 800;
  line-height: 1.05;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-strong), var(--brand) 58%, var(--fresh));
  border-radius: 7px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(9, 91, 65, .22);
}

.brand small {
  display: block;
  margin-top: .12rem;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: .15rem;
}

.primary-nav a {
  padding: .62rem .78rem;
  border-radius: 6px;
  color: #23312d;
  font-size: .95rem;
  font-weight: 700;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color: var(--brand-strong);
  background: rgba(13, 118, 82, .09);
}

.primary-nav .nav-cta {
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 10px 20px rgba(9, 91, 65, .16);
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible {
  color: var(--white);
  background: var(--brand-strong);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 50px;
  padding: .82rem 1.08rem;
  border: 0;
  border-radius: 7px;
  color: var(--white);
  background: var(--brand);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(9, 91, 65, .18);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--brand-strong);
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(9, 91, 65, .22);
}

.button.secondary {
  color: var(--ink);
  background: var(--sun);
  box-shadow: 0 12px 24px rgba(154, 118, 10, .15);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .42);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: clamp(480px, 68svh, 600px);
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #18221f;
  border-bottom: 1px solid rgba(21, 33, 29, .12);
}

.hero.compact {
  min-height: clamp(380px, 52svh, 480px);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 46%, rgba(13, 118, 82, .26) 0, rgba(13, 118, 82, 0) 34%),
    linear-gradient(90deg, rgba(10, 20, 17, .92) 0%, rgba(10, 20, 17, .68) 45%, rgba(10, 20, 17, .18) 100%),
    linear-gradient(0deg, rgba(10, 20, 17, .62) 0%, rgba(10, 20, 17, .08) 46%);
}

.hero-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 5rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: 1rem;
  color: var(--brand-strong);
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: .7rem;
  height: .7rem;
  background: var(--sun);
  border-radius: 50%;
}

.hero .eyebrow,
.section.steel .eyebrow {
  color: #e9f7d7;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.2rem;
  margin: 1.2rem 0;
  font-size: 0.92rem;
}

.hero-trust .stars {
  color: var(--sun);
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(241, 201, 74, 0.4);
}

.hero-trust .trust-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.hero-trust .trust-text strong {
  color: var(--white);
  font-weight: 900;
}

.hero-trust .trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem;
  border-radius: 99px;
  background: rgba(148, 189, 55, 0.18);
  color: #aae444;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(148, 189, 55, 0.3);
}

.hero-trust .badge-dot {
  width: 7px;
  height: 7px;
  background-color: var(--fresh);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.hero-trust .badge-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background-color: var(--fresh);
  opacity: 0.6;
  animation: pulse-dot 1.8s infinite ease-in-out;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.hero p {
  max-width: 720px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.06rem, 1.7vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .95);
  font-weight: 800;
  font-size: 1.05rem;
}

.hero-points span::before {
  content: "✓";
  color: var(--sun);
  font-weight: 900;
  margin-right: .5rem;
  font-size: 1.15rem;
}

.hero-stats {
  width: min(100%, 640px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.2rem;
  gap: 1.5rem;
}

.hero-stats div {
  background: transparent;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  color: var(--sun);
  font-weight: 900;
}

.hero-stats span {
  margin-top: .4rem;
  color: rgba(255, 255, 255, .85);
  font-size: .95rem;
  font-weight: 800;
}

.page-path {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 1rem 0;
  color: var(--muted);
  font-size: .92rem;
}

.page-path a {
  color: var(--brand-strong);
  font-weight: 700;
}

.service-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.service-strip-inner {
  min-height: 68px;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  align-items: center;
  justify-content: center;
}

.service-strip span {
  padding: .46rem .68rem;
  border-radius: 999px;
  color: var(--brand-strong);
  background: rgba(13, 118, 82, .09);
  font-size: .88rem;
  font-weight: 850;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section.tight {
  padding: clamp(2.8rem, 6vw, 5rem) 0;
}

.section.alt {
  background: #ffffff;
}

.section.steel {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 118, 82, .28), rgba(13, 118, 82, 0) 36%),
    var(--steel);
}

.wrap {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .75fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

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

.section.steel .section-head p,
.section.steel .muted {
  color: rgba(255, 255, 255, .76);
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.service-card,
.step,
.district-card,
.faq-item,
.contact-panel,
.feature,
.local-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 31, 28, .06);
}

.service-card,
.step,
.district-card,
.feature,
.local-box {
  padding: 1.3rem;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 6px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--sun));
}

.service-card h3,
.step h3,
.district-card h3,
.feature h3,
.local-box h3 {
  margin-bottom: .55rem;
}

.service-card p,
.step p,
.district-card p,
.feature p,
.local-box p {
  color: var(--muted);
}

.service-card strong,
.feature strong {
  color: var(--brand-strong);
}

.card-link {
  display: inline-flex;
  margin-top: .8rem;
  color: var(--brand-strong);
  font-weight: 850;
}

.step-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 7px;
  color: var(--ink);
  background: var(--sun);
  font-weight: 900;
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 2 / 1;
  background: var(--soft);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame img,
.gallery img {
  transition: transform .35s ease;
}

.media-frame:hover img,
.gallery img:hover {
  transform: scale(1.035);
}

.check-list {
  display: grid;
  gap: .72rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: .7rem;
  align-items: start;
}

.check-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: .12rem;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--sun) 0 38%, var(--brand) 39% 100%);
}

.district-card {
  display: flex;
  min-height: 166px;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(150deg, rgba(13, 118, 82, .08), rgba(255, 255, 255, 0) 44%),
    var(--white);
}

.district-card:hover {
  border-color: rgba(13, 118, 82, .45);
  transform: translateY(-2px);
  transition: transform .18s ease, border-color .18s ease;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1rem;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-stack {
  display: grid;
  gap: 1rem;
}

.faq-list {
  display: grid;
  gap: .8rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 850;
}

.faq-item p {
  padding: 0 1.1rem 1rem;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 1rem;
}

.contact-panel {
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
  background: rgba(255, 255, 255, .96);
}

.contact-list {
  display: grid;
  gap: .75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.contact-list strong {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}

label {
  display: grid;
  gap: .4rem;
  color: var(--muted);
  font-weight: 800;
  font-size: .9rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: .72rem .8rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

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

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

.form-note {
  margin: .9rem 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.local-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1rem;
  align-items: start;
}

.local-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 1rem;
}

.content-block {
  font-size: 1.03rem;
}

.content-block p {
  color: var(--muted);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1.4rem;
}

.mini-grid article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
}

.mini-grid strong,
.mini-grid span {
  display: block;
}

.mini-grid strong {
  color: var(--brand-strong);
}

.mini-grid span {
  margin-top: .3rem;
  color: var(--muted);
  font-size: .92rem;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}

.area-tags span {
  padding: .4rem .58rem;
  border-radius: 7px;
  color: var(--brand-strong);
  background: rgba(13, 118, 82, .1);
  font-weight: 800;
}

.site-footer {
  padding: 3rem 0;
  color: rgba(255, 255, 255, .78);
  background: #111a17;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(2, minmax(180px, .35fr));
  gap: 1.5rem;
}

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

.footer-links {
  display: grid;
  gap: .45rem;
}

.mini {
  font-size: .9rem;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    padding: .5rem;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-open .primary-nav {
    display: flex;
  }

  .section-head,
  .media-split,
  .contact-grid,
  .local-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .local-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    display: block;
    padding: .45rem 0;
  }

  .hero {
    min-height: 660px;
  }

  .hero.compact {
    min-height: 560px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions .button {
    min-width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .grid.three,
  .grid.four,
  .gallery,
  .form-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .gallery img {
    min-height: 220px;
  }
}
