:root {
  --brand: #97b957;
  --brand-dark: #5f7f2c;
  --ink: #17201b;
  --muted: #667266;
  --line: #dbe4d6;
  --paper: #ffffff;
  --soft: #f4f7ef;
  --cream: #fbfaf5;
  --accent: #b77932;
  --shadow: 0 20px 50px rgba(23, 32, 27, 0.14);
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Rubik", "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.8;
}

body.nav-open {
  overflow: hidden;
}

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

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

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 228, 214, 0.8);
  backdrop-filter: blur(18px);
}

.header-layout {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.brand {
  width: 178px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  color: #334033;
  font-size: 0.96rem;
  font-weight: 600;
  transition: background-color 160ms ease, color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--soft);
  color: var(--brand-dark);
}

.header-action,
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.header-action {
  padding: 0 16px;
  color: #fff;
  background: var(--ink);
  white-space: nowrap;
}

.header-action:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 118px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #151b19;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 10, 10, 0.36), rgba(7, 10, 10, 0.8)),
    linear-gradient(0deg, rgba(13, 18, 16, 0.45), rgba(13, 18, 16, 0.2));
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: center;
  padding-block: 70px;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.95rem;
  font-weight: 800;
}

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

h1 {
  margin-bottom: 6px;
  font-size: 4.6rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-subtitle {
  margin-bottom: 18px;
  color: #e2ecd3;
  font-size: 1.45rem;
  font-weight: 700;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 28px;
  color: #eef4ea;
  font-size: 1.12rem;
}

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

.btn {
  padding: 0 18px;
}

.btn-primary {
  color: #122012;
  background: var(--brand);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-summary {
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
}

.hero-summary img {
  width: 100%;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.summary-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.summary-row strong {
  font-size: 0.98rem;
}

.snapshot {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

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

.snapshot-grid div {
  min-height: 128px;
  padding: 26px;
  border-inline-start: 1px solid var(--line);
}

.snapshot-grid div:first-child {
  border-inline-start: 0;
}

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

.snapshot-grid strong {
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-size: 1.08rem;
}

.snapshot-grid span {
  color: var(--muted);
  font-size: 0.96rem;
}

.section {
  padding: 88px 0;
}

.about-section,
.contact-section {
  background: var(--cream);
}

.services-section {
  background: var(--paper);
}

.split-layout,
.commitment-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.commitment-copy h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.section-copy p,
.commitment-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.check-list li {
  position: relative;
  padding-inline-start: 32px;
  color: #324032;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.56em;
  inset-inline-start: 0;
  width: 18px;
  height: 18px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #e7f0d7;
}

.image-panel,
.commitment-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #dbe4d6;
}

.image-panel {
  aspect-ratio: 4 / 3;
}

.commitment-media {
  aspect-ratio: 16 / 10;
}

.image-panel img,
.commitment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.service-card {
  min-height: 280px;
  padding: 26px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(151, 185, 87, 0.7);
  box-shadow: 0 18px 36px rgba(23, 32, 27, 0.11);
}

.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--brand-dark);
  background: #e8f0dc;
  border-radius: 8px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

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

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  color: #4d612d;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.contact-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 16px;
  align-items: center;
  min-height: 98px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(23, 32, 27, 0.07);
}

.contact-card svg {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  padding: 12px;
  color: #fff;
  background: var(--brand-dark);
  border-radius: 8px;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-card strong {
  color: var(--ink);
  font-size: 1rem;
  word-break: break-word;
}

.address-card {
  cursor: default;
}

.site-footer {
  background: #17201b;
  color: #eef4ea;
}

.footer-layout {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
}

.footer-layout img {
  width: 190px;
}

.footer-layout p {
  margin: 0;
  color: #d9e5cf;
  font-size: 0.95rem;
}

@media (max-width: 1080px) {
  .header-layout {
    gap: 16px;
  }

  .brand {
    width: 154px;
  }

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

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-layout {
    min-height: 72px;
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    width: 138px;
  }

  .nav-toggle {
    display: grid;
  }

  .header-action {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    inset-inline: 14px;
    display: grid;
    justify-content: stretch;
    gap: 6px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  body.nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    justify-content: center;
  }

  .hero {
    min-height: calc(100svh - 116px);
  }

  .hero-layout,
  .split-layout,
  .commitment-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-layout {
    padding-block: 46px;
  }

  .hero-summary {
    max-width: 440px;
  }

  h1 {
    font-size: 3.1rem;
  }

  .hero-subtitle {
    font-size: 1.18rem;
  }

  .snapshot-grid {
    grid-template-columns: 1fr;
  }

  .snapshot-grid div {
    min-height: auto;
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }

  .snapshot-grid div:first-child {
    border-top: 0;
  }

  .section {
    padding: 64px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .commitment-copy h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 116px;
  }

  .hero-layout {
    padding-block: 36px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-summary {
    padding: 16px;
  }

  .hero-summary {
    display: none;
  }

  .summary-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .contact-card {
    grid-template-columns: 42px 1fr;
    padding: 15px;
  }

  .contact-card svg {
    width: 42px;
    height: 42px;
    padding: 10px;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }
}
