:root {
  --green: #0f5132;
  --deep: #073d2a;
  --leaf: #2e7d32;
  --gold: #d99a2b;
  --cream: #fbf3df;
  --mist: #edf5ef;
  --ink: #25302b;
  --muted: #65746c;
  --white: #ffffff;
  --line: rgba(15, 81, 50, 0.16);
  --shadow: 0 26px 70px rgba(7, 61, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Open Sans", Arial, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 142px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a,
.button,
.footer a {
  text-decoration: none;
}

.nav a {
  padding: 10px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
}

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

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

.button.light {
  color: var(--deep);
  background: var(--white);
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding: clamp(42px, 7vw, 94px) clamp(18px, 5vw, 78px);
  background:
    radial-gradient(circle at 16% 18%, rgba(217, 154, 43, 0.15), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, var(--cream) 45%, var(--mist) 100%);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(52px, 7vw, 98px) clamp(18px, 5vw, 78px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 61, 42, 0.96), rgba(15, 81, 50, 0.88)),
    var(--deep);
}

.page-hero h1,
.page-hero h2,
.page-hero .eyebrow {
  color: var(--white);
}

.page-hero .eyebrow {
  color: var(--gold);
}

.page-hero .panel,
.page-hero .panel h2,
.page-hero .panel h3,
.page-hero .panel p,
.page-hero .panel li {
  color: var(--ink);
}

.page-hero .panel h2,
.page-hero .panel h3 {
  color: var(--green);
}

.hero-copy,
.page-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green);
  font-family: Montserrat, Inter, Arial, sans-serif;
  line-height: 1.05;
}

h1 {
  max-width: 860px;
  font-size: clamp(2.8rem, 6vw, 6.5rem);
}

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

h3 {
  font-size: 1.26rem;
}

p {
  margin: 16px 0 0;
}

.lead {
  max-width: 720px;
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-image,
.page-image {
  overflow: hidden;
  border: 12px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--green);
}

.hero-image img,
.page-image img {
  width: 100%;
  height: clamp(420px, 54vw, 690px);
  object-fit: cover;
  object-position: center top;
}

.hero-card {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  max-width: 680px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-card span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 850;
  text-align: center;
}

.section {
  padding: clamp(56px, 7vw, 104px) clamp(18px, 5vw, 78px);
}

.section.alt {
  background: var(--mist);
}

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

.section.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, rgba(217, 154, 43, 0.18), transparent 30%),
    linear-gradient(135deg, var(--deep), var(--green));
}

.section.dark h2,
.section.dark h3 {
  color: var(--white);
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

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

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

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

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

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(7, 61, 42, 0.08);
}

.dark .card {
  color: var(--ink);
}

.card .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.research-note {
  max-width: 1040px;
  margin-top: 24px;
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 61, 42, 0.07);
}

.research-note strong,
.research-note span {
  display: block;
}

.research-note span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.research-note a {
  color: var(--green);
  font-weight: 750;
}

.price {
  margin-top: 22px;
  color: var(--green);
  font-size: 1.45rem;
  font-weight: 950;
}

.price span {
  display: block;
  color: var(--gold);
  font-size: 0.92rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.74fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.panel {
  padding: clamp(30px, 4vw, 48px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-content {
  max-width: 980px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 38px;
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
}

.legal-content h3 {
  margin-top: 26px;
}

.legal-content p,
.legal-content li {
  color: #425049;
}

.legal-content ul {
  padding-left: 22px;
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--cream);
}

.image-panel img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
}

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

.list li {
  position: relative;
  padding-left: 32px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 16px;
  height: 16px;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px var(--white);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.stats div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.stats strong {
  display: block;
  color: var(--gold);
  font-size: 1.8rem;
}

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

.contact-stats div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
}

.contact-stats strong {
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-stats span {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--white);
  font-weight: 750;
}

.form {
  display: grid;
  gap: 16px;
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--green);
  font-weight: 850;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.form button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.notice {
  display: none;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(217, 154, 43, 0.45);
  border-radius: 8px;
  color: var(--deep);
  background: var(--cream);
  font-weight: 800;
}

body.form-submitted .notice {
  display: block;
}

.notice:target {
  display: block;
}

.small {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px clamp(18px, 5vw, 78px);
  border-top: 1px solid var(--line);
  background: #fffdf8;
}

.footer img {
  width: 118px;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer a {
  color: var(--green);
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero,
  .page-hero,
  .split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-header {
    position: static;
  }

  .header-cta {
    display: none;
  }

  .hero-card,
  .stats,
  .grid.four,
  .grid.three,
  .grid.two,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-image img,
  .page-image img,
  .image-panel img {
    height: 390px;
  }
}
