:root {
  /* --bg: #f7faf7; */
  --bg: rgb(241,237,202);
  --surface: #ffffff;
  --text: #17211d;
  --muted: #5a6a61;
  --brand: #157347;
  --brand-dark: #0f5836;
  --border: #dce7df;
  --shadow: 0 8px 24px rgba(12, 37, 23, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

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

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--brand);
}

.hero {
  padding: 64px 0 56px;
}

.hero-image {
  width: min(960px, 82%);
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 8px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}

.hero-copy {
  max-width: 62ch;
  color: var(--muted);
}

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

.contact-column {
  width: 100%;
  min-width: min(100%, 480px);
}

.contact-form {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.contact-form label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  padding: 10px 12px;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

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

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  border-color: var(--border);
  background: #fff;
}

.btn-secondary:hover {
  border-color: #b9ccbf;
}

.btn-block {
  width: 100%;
}

.highlights {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.highlights li {
  padding: 7px 10px;
  background: #eaf4ed;
  border-radius: 999px;
  font-size: 0.9rem;
  color: #234331;
  font-weight: 600;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.small-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 10px;
}

.section {
  padding: 54px 0;
}

.alt {
  background: #edf4ef;
}

.cards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}

.split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
  align-items: start;
}

.check-list {
  margin: 14px 0 0;
  padding-left: 18px;
}

.check-list li {
  margin-bottom: 8px;
}

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

.photos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding-top: 10px;
}

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

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--brand);
}

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

.quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  color: var(--muted);
  font-weight: 600;
}

.quote {
  font-style: italic;
}

.cta {
  padding-top: 62px;
  padding-bottom: 62px;
}

.cta .eyebrow {
  display: inline-block;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  color: var(--brand-dark);
  background: rgba(21, 115, 71, 0.1);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(21, 115, 71, 0.22);
}

.cta-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: center;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-brand p {
  margin: 0;
}

.footer-credit {
  margin: 0;
  text-align: right;
}

.footer-meta {
  text-align: right;
}

.footer-version {
  color: var(--muted);
  font-weight: 600;
}

.footer-credit a {
  color: var(--brand);
  font-weight: 600;
}

.footer-credit a:hover {
  color: var(--brand-dark);
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-image {
    width: 100%;
    margin: 0;
  }

  .hero-image img {
    width: 100%;
    border-radius: 0;
  }

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

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 16px 0;
  }

  .footer-credit {
    text-align: center;
  }

  .footer-meta {
    text-align: center;
  }
}
