*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #2D7A3F;
  --green-mid: #3D9B50;
  --green-pale: #EBF6EE;
  --cream: #FAF7EF;
  --earth-light: #F4EDE0;
  --text: #1A2B1D;
  --text-mid: #456350;
  --text-muted: #718878;
  --white: #FFFFFF;
  --border: rgba(45,122,63,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
}

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 84px;
  padding: 0 6%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo img {
  width: clamp(160px, 16vw, 220px);
  display: block;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-mid);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover { color: var(--green); }

.nav-cta,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  padding: 6rem 8% 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  color: var(--green);
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

h1,
h2 {
  font-family: 'Playfair Display', serif;
  color: var(--text);
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.35rem, 4vw, 4rem);
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  margin-bottom: 1rem;
}

h3 {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.lead {
  max-width: 660px;
  color: var(--text-mid);
  font-size: 1.08rem;
  margin-bottom: 2rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: 0 18px 45px rgba(45,122,63,.08);
}

.metric {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.metric:last-child { border-bottom: 0; }

.metric strong {
  color: var(--green);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}

.metric span {
  color: var(--text-mid);
  font-size: .92rem;
}

main section {
  padding: 5rem 8%;
}

.section-light { background: var(--white); }
.section-green { background: var(--green-pale); }
.section-earth { background: var(--earth-light); }

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.4rem;
  margin-top: 2rem;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.6rem;
}

.card p,
.content p,
.content li {
  color: var(--text-mid);
}

.content {
  max-width: 980px;
}

.content ul {
  margin: 1rem 0 0 1.2rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  margin-top: 2rem;
}

.price-table th,
.price-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.price-table th {
  color: var(--green);
  background: var(--green-pale);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.price-table tr:last-child td { border-bottom: 0; }

.cta-band {
  background: var(--text);
  color: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
}

.cta-band h2,
.cta-band p { color: var(--white); }

.cta-band p {
  opacity: .78;
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.5rem;
}

.related-links a {
  color: var(--green);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  text-decoration: none;
}

footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 2.5rem 8%;
  color: var(--text-muted);
}

footer a {
  color: var(--text-mid);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 4rem 6%;
  }

  main section { padding: 4rem 6%; }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .nav-links { display: none; }
}

@media (max-width: 600px) {
  nav { padding: 0 4%; }
  .logo img { width: 150px; }
  .nav-cta { padding: 9px 14px; font-size: .82rem; }
  .hero-card,
  .cta-band { border-radius: 16px; }
}


/* Shared dropdown header and footer layout */
nav {
  min-height: 84px;
  height: auto;
}

.nav-links {
  align-items: center;
}

.nav-item {
  position: relative;
  padding: 1.9rem 0;
}

.nav-trigger,
.nav-links a {
  color: var(--text-mid);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-trigger {
  cursor: default;
}

.nav-item:hover .nav-trigger,
.nav-links a:hover {
  color: var(--green);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(26,43,29,.12);
  padding: .55rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s, transform .18s, visibility .18s;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: .55rem;
  border-radius: 10px;
  padding: .72rem .8rem;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--green-pale);
}

.menu-icon {
  width: 20px;
  display: inline-flex;
  justify-content: center;
  color: var(--green);
  font-weight: 900;
}

.metric {
  grid-template-columns: minmax(96px, max-content) 1fr;
  gap: 1.15rem;
  align-items: center;
}

.metric strong {
  line-height: 1;
  white-space: nowrap;
}

.metric span {
  display: block;
  line-height: 1.45;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 980px;
}

.footer-col h3 {
  color: var(--text);
  font-size: .95rem;
  margin-bottom: .9rem;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: var(--text-mid);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .55rem;
}

.footer-col a:hover {
  color: var(--green);
}

.footer-copy {
  margin-top: 2rem;
  font-size: .78rem;
}

@media (max-width: 900px) {
  nav {
    flex-wrap: wrap;
    padding-top: .8rem;
    padding-bottom: .8rem;
  }

  .nav-links {
    display: flex;
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .nav-item {
    padding: .4rem 0;
  }

  .dropdown-menu {
    left: 0;
    transform: translateY(8px);
  }

  .nav-item:hover .dropdown-menu {
    transform: translateY(0);
  }

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

.menu-svg {
  width: 13px;
  height: 13px;
  margin: 0 3.5px;
  color: var(--green);
  flex-shrink: 0;
}
