:root {
  --leaf: #4d9f3b;
  --leaf-dark: #174a31;
  --forest: #10251b;
  --mint: #edf8e8;
  --mint-strong: #cceabe;
  --sun: #f1b846;
  --clay: #c86c48;
  --ink: #14201a;
  --muted: #5f6f66;
  --line: #dde8dc;
  --paper: #fffdf7;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(20, 54, 35, 0.14);
  --radius: 8px;
  --max: 1520px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% -10%, rgba(241, 184, 70, 0.18), transparent 34%),
    linear-gradient(180deg, #f6fbf0 0, var(--paper) 360px),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2 + 24px));
  background: rgba(255, 253, 247, 0.92);
  border-bottom: 1px solid rgba(23, 74, 49, 0.1);
  backdrop-filter: blur(18px);
}

.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-link img,
.footer-brand img {
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(77, 159, 59, 0.18);
}

.brand-link span,
.footer-brand span {
  display: grid;
  gap: 0;
}

.brand-link strong,
.footer-brand strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand-link small,
.footer-brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--leaf-dark);
  background: var(--mint);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--leaf-dark);
  border: 1px solid var(--leaf-dark);
}

.site-nav .nav-cta:hover {
  color: var(--white);
  background: #0f3724;
}

.nav-toggle {
  display: none;
}

.page {
  overflow: hidden;
}

.section,
.hero,
.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: 44px;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 40px;
  padding: 44px;
  background:
    linear-gradient(135deg, rgba(237, 248, 232, 0.86), rgba(255, 253, 247, 0.96)),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(23, 74, 49, 0.09);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-brand-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 12px 8px 8px;
  color: var(--leaf-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-brand-line img {
  border-radius: 50%;
  background: var(--white);
}

.hero > *,
.grid > *,
.highlight-panel > *,
.contact-simple-grid > *,
.contact-grid > *,
.contact-cta > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  color: var(--leaf-dark);
  background: var(--mint);
  border: 1px solid var(--mint-strong);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: 3.45rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.24;
}

.lead {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero .lead {
  max-width: 650px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--leaf-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(23, 74, 49, 0.06);
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--leaf-dark);
  border: 1px solid var(--leaf-dark);
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(23, 74, 49, 0.18);
}

.button:hover {
  background: #0f3724;
}

.button.secondary {
  color: var(--leaf-dark);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--mint);
}

.hero-visual {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px -12px -16px 42px;
  background: linear-gradient(135deg, rgba(77, 159, 59, 0.18), rgba(241, 184, 70, 0.22));
  border-radius: 26px;
  transform: rotate(-2deg);
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 420px;
  min-height: 360px;
  object-fit: cover;
  object-position: 68% center;
  border: 1px solid rgba(23, 74, 49, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-service-card {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 18px;
  max-width: 250px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(23, 74, 49, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.hero-service-card strong {
  line-height: 1.2;
}

.hero-service-card span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.quality-note {
  position: absolute;
  z-index: 3;
  left: 22px;
  bottom: 20px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  max-width: 310px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-left: 5px solid var(--sun);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quality-note img {
  border-radius: 50%;
}

.quality-note strong,
.quality-note small {
  display: block;
}

.quality-note strong {
  line-height: 1.2;
}

.quality-note small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.86rem;
}

.client-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.client-strip-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) 1fr;
  gap: 28px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 24px;
}

.strip-label {
  margin: 0 0 4px;
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.client-strip strong {
  display: block;
  color: var(--ink);
  line-height: 1.3;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.client-logo {
  min-height: 110px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(23, 74, 49, 0.06);
}

.client-logo img {
  max-height: 78px;
  width: auto;
  object-fit: contain;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin-bottom: 34px;
}

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

.mission-section {
  padding-top: 46px;
  padding-bottom: 46px;
}

.mission-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(23, 74, 49, 0.06);
}

.mission-panel p {
  color: var(--muted);
}

.mission-panel p:last-child {
  margin-bottom: 0;
}

.mission-points {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mission-points li {
  padding: 16px;
  background: #f7fbf4;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 650;
}

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

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

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

.card,
.policy-card,
.contact-panel,
.highlight-panel,
.contact-cta {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card {
  padding: 24px;
  box-shadow: 0 12px 34px rgba(23, 74, 49, 0.06);
}

.card-accent {
  display: block;
  width: 42px;
  height: 5px;
  margin-bottom: 20px;
  background: var(--leaf);
  border-radius: 999px;
}

.card:nth-child(2n) .card-accent {
  background: var(--sun);
}

.card:nth-child(3n) .card-accent {
  background: var(--clay);
}

.card p,
.policy-card p,
.contact-panel p,
.highlight-panel p,
.contact-cta p {
  color: var(--muted);
}

.service-band {
  background: #f0f7ec;
  border-block: 1px solid var(--line);
}

.service-band .section {
  padding-top: 62px;
  padding-bottom: 62px;
}

.highlight-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 32px;
  align-items: center;
  padding: 34px;
}

.check-list,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--leaf);
  border-bottom: 3px solid var(--leaf);
  transform: rotate(-45deg);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.68em;
  width: 8px;
  height: 8px;
  background: var(--sun);
  border-radius: 50%;
}

.contact-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 72px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-cta h2 {
  margin-bottom: 10px;
}

.contact-cta p:last-child {
  margin-bottom: 0;
}

.page-hero {
  padding-top: 54px;
  padding-bottom: 32px;
}

.page-hero .lead {
  margin-bottom: 0;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 26px;
  align-items: start;
}

.policy-card {
  padding: 32px;
}

.policy-card h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card ul {
  padding-left: 20px;
  color: var(--muted);
}

.policy-card a {
  color: var(--leaf-dark);
  font-weight: 850;
}

.policy-aside {
  position: sticky;
  top: 96px;
  padding: 24px;
  background: var(--leaf-dark);
  color: var(--white);
  border-radius: var(--radius);
}

.policy-aside p {
  color: rgba(255, 255, 255, 0.82);
}

.policy-aside a {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-weight: 850;
}

.contact-page {
  background:
    linear-gradient(180deg, rgba(237, 248, 232, 0.7), rgba(255, 253, 247, 0) 360px),
    var(--paper);
}

.contact-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px 24px 34px;
}

.contact-hero h1 {
  margin-bottom: 14px;
  font-size: 3.6rem;
  line-height: 1;
}

.contact-hero .lead {
  max-width: 760px;
  margin-bottom: 0;
}

.contact-simple-section {
  padding-top: 28px;
}

.contact-simple-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr) minmax(280px, 0.8fr);
  gap: 20px;
  align-items: stretch;
}

.contact-intro-card,
.contact-details-card,
.contact-address-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 14px 34px rgba(23, 74, 49, 0.07);
}

.contact-intro-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-intro-card img {
  margin-bottom: 18px;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(77, 159, 59, 0.16);
}

.contact-intro-card p,
.contact-address-card p {
  color: var(--muted);
}

.contact-intro-card .button {
  margin-top: auto;
}

.contact-detail-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.contact-detail-list div {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail-list div:last-child {
  border-bottom: 0;
}

.contact-detail-list dt {
  color: var(--leaf-dark);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-detail-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}

.contact-detail-list a {
  color: var(--leaf-dark);
  text-decoration: none;
}

.address-line {
  color: var(--ink) !important;
  font-size: 1.35rem;
  line-height: 1.35;
  font-weight: 850;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 24px;
}

.contact-panel {
  padding: 30px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-item {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: #f7fbf4;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-item strong {
  color: var(--leaf-dark);
}

.contact-item a {
  font-weight: 850;
  text-decoration: none;
}

.map-placeholder {
  min-height: 330px;
  display: grid;
  align-content: end;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(77, 159, 59, 0.18), rgba(241, 184, 70, 0.22)),
    linear-gradient(90deg, rgba(23, 74, 49, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 74, 49, 0.08) 1px, transparent 1px),
    var(--white);
  background-size: auto, 34px 34px, 34px 34px, auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(23, 74, 49, 0.08);
}

.map-placeholder h2 {
  max-width: 440px;
  margin-bottom: 8px;
  font-size: 2.35rem;
}

.map-placeholder p {
  max-width: 460px;
  color: var(--muted);
}

.site-footer {
  margin-top: 40px;
  color: var(--white);
  background: var(--forest);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.7fr 0.9fr;
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 24px;
}

.footer-grid p,
.footer-grid small {
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid h2 {
  margin-bottom: 12px;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  width: fit-content;
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px 24px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero,
  .highlight-panel,
  .mission-panel,
  .policy-layout,
  .contact-simple-grid,
  .contact-grid,
  .contact-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 30px;
    padding: 34px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .page-hero h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-photo {
    height: 380px;
    min-height: 330px;
  }

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

  .policy-aside {
    position: static;
  }

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

  .contact-cta .action-row {
    margin-top: 0;
  }

  .contact-intro-card .button {
    margin-top: 12px;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
  }

  .brand-link strong {
    font-size: 0.92rem;
  }

  .brand-link small {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 4px;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

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

  .nav-toggle em {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .site-nav {
    position: absolute;
    top: 73px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header[data-open="true"] .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .section,
  .hero,
  .page-hero {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    display: block;
    padding-top: 36px;
    padding: 28px 18px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .hero-copy,
  .hero-visual {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    font-size: 2.75rem;
    line-height: 1;
  }

  .page-hero h1 {
    font-size: 2.45rem;
  }

  h2,
  .map-placeholder h2 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.04rem;
  }

  .contact-hero {
    width: 100%;
    max-width: 100%;
    padding: 44px 18px 18px;
  }

  .contact-hero h1 {
    font-size: 2.55rem;
  }

  .contact-simple-section {
    padding-top: 18px;
  }

  .contact-intro-card,
  .contact-details-card,
  .contact-address-card {
    padding: 22px;
  }

  .address-line {
    font-size: 1.18rem;
  }

  .client-logos,
  .grid.four,
  .grid.two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .action-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual::before {
    inset: 18px -10px -10px 34px;
    border-radius: 24px;
  }

  .hero-photo {
    height: 280px;
    min-height: 280px;
    border-radius: 22px;
  }

  .hero-brand-line {
    font-size: 0.82rem;
  }

  .hero-service-card {
    position: relative;
    top: auto;
    right: auto;
    margin: -20px 12px 0 auto;
    max-width: none;
  }

  .quality-note {
    position: relative;
    left: auto;
    bottom: auto;
    margin: -26px 14px 0;
    max-width: none;
  }

  .contact-cta {
    margin-top: 54px;
    padding: 28px;
  }

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

@media (max-width: 460px) {
  .brand-link img {
    width: 46px;
    height: 46px;
  }

  .brand-link strong {
    max-width: 170px;
    display: block;
  }

  .hero-photo {
    height: 250px;
    min-height: 250px;
  }

  h1 {
    font-size: 2.38rem;
  }

  .quality-note {
    grid-template-columns: 36px 1fr;
    margin-left: 8px;
    margin-right: 8px;
  }

  .quality-note img {
    width: 36px;
    height: 36px;
  }
}
