:root {
  --green: #006b33;
  --green-2: #0b7d43;
  --leaf: #8ccf68;
  --red: #e0001b;
  --gold: #c7a14a;
  --ink: #10231d;
  --muted: #53655e;
  --soft: #f4f8f5;
  --paper: #ffffff;
  --line: #d9e4dd;
  --shadow: 0 18px 48px rgba(16, 35, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(224, 0, 27, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  transform: translateY(-150%);
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  background: var(--green);
  color: white;
  font-size: 0.93rem;
}

.topbar-inner,
.nav-inner,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-row,
.social-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar a {
  text-decoration: none;
}

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

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

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: min(270px, 58vw);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--green);
  font-size: 1.35rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-menu a {
  color: var(--ink);
  font-weight: 720;
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--green);
}

.nav-menu .button,
.nav-menu .button:hover {
  color: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--green);
  color: white;
  font-weight: 780;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--green-2);
  box-shadow: 0 10px 26px rgba(0, 107, 51, 0.2);
}

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

.button-secondary:hover {
  background: var(--soft);
  color: var(--green);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, 76vh, 840px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.84) 36%, rgba(255,255,255,0.18) 66%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--green), var(--leaf), var(--red));
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 6rem 0 5rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.45rem, 4.8vw, 4.55rem);
}

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

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.lead {
  max-width: 680px;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.hero-actions,
.section-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.7rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-item {
  padding: 1.6rem;
  background: white;
}

.trust-item strong {
  display: block;
  color: var(--green);
  font-size: 1.15rem;
}

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

.section-soft {
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-head p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.info-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 26px rgba(16, 35, 29, 0.06);
}

.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--soft);
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.2rem;
}

.service-card p,
.info-card p,
.contact-panel p {
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.portrait-wrap {
  position: relative;
}

.portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 8% -5% -5% 8%;
  z-index: -1;
  border-radius: 8px;
  background: var(--green);
}

.portrait-wrap img {
  width: 100%;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.3rem 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.8rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--red);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.info-card {
  padding: 1.25rem;
}

.page-hero {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: linear-gradient(120deg, var(--soft), #fff 56%, rgba(140, 207, 104, 0.22));
}

.breadcrumb {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--green);
  text-decoration: none;
}

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

.article-body {
  max-width: 760px;
}

.article-body p {
  color: var(--muted);
  font-size: 1.05rem;
}

.article-body h2 {
  margin-top: 2.4rem;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
}

.side-panel {
  position: sticky;
  top: 118px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.2rem;
  background: white;
  box-shadow: 0 8px 26px rgba(16, 35, 29, 0.06);
}

.side-panel a {
  display: block;
  margin-top: 0.7rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1rem;
}

.contact-panel {
  padding: 1.25rem;
}

.contact-panel dl {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.contact-panel dt {
  color: var(--green);
  font-weight: 850;
}

.contact-panel dd {
  margin: 0;
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
  filter: saturate(0.9);
}

.form-shell {
  display: grid;
  gap: 0.8rem;
}

.form-shell label {
  display: grid;
  gap: 0.35rem;
  font-weight: 750;
}

.form-shell input,
.form-shell textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem 0.9rem;
  font: inherit;
}

.form-shell textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  padding: 3rem 0 1.4rem;
  background: var(--ink);
  color: white;
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-grid a {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-menu {
    position: absolute;
    inset: 88px 20px auto 20px;
    display: none;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav-menu[data-open] {
    display: grid;
  }

  .hero {
    min-height: auto;
    background-image: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.84)),
      var(--hero-image);
    background-position: 63% center;
  }

  .trust-strip,
  .service-grid,
  .info-grid,
  .split,
  .content-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 0.9rem;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 560px) {
  .topbar-inner,
  .nav-inner,
  .section-inner,
  .footer-inner,
  .hero-content {
    width: min(100% - 28px, 1180px);
  }

  .topbar-inner {
    justify-content: stretch;
    text-align: left;
  }

  .topbar .social-row,
  .topbar .contact-row span {
    display: none;
  }

  .contact-row {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.86rem;
  }

  .nav-inner {
    min-height: 74px;
  }

  .nav-menu {
    inset: 74px 14px auto 14px;
  }

  .brand img {
    width: min(220px, 64vw);
  }

  .hero-content {
    padding: 3rem 0 2.5rem;
  }

  h1 {
    font-size: clamp(2rem, 10.2vw, 2.75rem);
  }

  .lead {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }
}
