/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Brand Variables */
:root {
  --brand-green: #074328;
  --brand-green-2: #2f8f45;
  --brand-green-soft: #eef6ef;
  --brand-green-border: #d9e9dc;
  --text-dark: #1e1e1e;
  --text-muted: #5c5c5c;
  --white: #ffffff;
  --off-white: #fafaf7;
  --shadow-soft: 0 12px 30px rgba(7, 67, 40, 0.08);
  --shadow-light: 0 8px 20px rgba(7, 67, 40, 0.06);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1200px;
}

/* Typography */
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}

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

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

/* Utilities */
.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

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

.section-tint {
  background: var(--brand-green-soft);
}

.center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-green);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.82);
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--brand-green);
}

.section-subtext {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  color: var(--brand-green);
}

.text-link:hover {
  text-decoration: underline;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.96rem;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand-green);
  color: var(--white);
  border: 1px solid var(--brand-green);
}

.btn-primary:hover {
  background: #052f1d;
  border-color: #052f1d;
}

.btn-secondary {
  background: transparent;
  color: var(--brand-green);
  border: 1px solid var(--brand-green);
}

.btn-secondary:hover {
  background: var(--brand-green-soft);
}

.btn-light {
  background: var(--white);
  color: var(--brand-green);
  border: 1px solid var(--white);
}

.btn-light:hover {
  background: #f4f4f4;
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(7, 67, 40, 0.08);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 68px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--text-dark);
}

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

.header-cta {
  white-space: nowrap;
}

/* Hero */
.hero {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
  padding: 72px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--brand-green);
  max-width: 800px;
  margin-bottom: 20px;
}

.hero-text {
  max-width: 700px;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.tagline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}

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

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: var(--off-white);
  border: 1px solid var(--brand-green-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 32px;
  max-width: 420px;
}

.hero-card h3 {
  font-size: 1.35rem;
  color: var(--brand-green);
  margin-bottom: 14px;
}

.hero-card p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.hero-card ul {
  padding-left: 18px;
  color: var(--text-dark);
}

.hero-card li + li {
  margin-top: 8px;
}

/* Intro */
.intro-copy {
  text-align: center;
}

.intro-copy p {
  color: var(--text-muted);
  font-size: 1.06rem;
  margin-bottom: 16px;
}

/* Vertical cards */
.vertical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.feature-card {
  background: var(--white);
  padding: 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(7, 67, 40, 0.06);
}

.feature-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--brand-green-soft);
  color: var(--brand-green);
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-card h3 {
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--brand-green);
  margin-bottom: 14px;
}

.feature-card p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Generic card grids */
.card-grid {
  display: grid;
  gap: 22px;
  margin-top: 46px;
}

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

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

.info-card {
  background: var(--white);
  border: 1px solid rgba(7, 67, 40, 0.06);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-light);
}

.info-card h3 {
  font-size: 1.18rem;
  color: var(--brand-green);
  margin-bottom: 12px;
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* CTA Section */
.cta-section {
  background: var(--white);
}

.cta-box {
  background: linear-gradient(135deg, var(--brand-green) 0%, #0b5b36 100%);
  border-radius: 28px;
  padding: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: var(--shadow-soft);
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 760px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  min-width: 220px;
}

/* Contact preview */
.contact-preview {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--brand-green);
  margin-bottom: 14px;
}

.contact-copy p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.contact-form {
  background: var(--off-white);
  border: 1px solid var(--brand-green-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-light);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #d8dfd8;
  background: var(--white);
  font: inherit;
  color: var(--text-dark);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-green-2);
}

.form-btn {
  width: 100%;
}

/* Footer */
.site-footer {
  background: var(--brand-green);
  color: var(--white);
  padding-top: 42px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-inner h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.footer-inner p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
}

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

.footer-bottom {
  padding: 18px 0 26px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-grid,
  .contact-preview,
  .cta-box,
  .vertical-grid,
  .six-grid,
  .four-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-content: flex-start;
  }

  .cta-box {
    padding: 36px;
  }

  .cta-actions {
    min-width: auto;
  }
}

@media (max-width: 860px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

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

  .logo img {
    height: 58px;
  }

  .hero-card,
  .feature-card,
  .info-card,
  .contact-form {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .container,
  .narrow {
    width: min(100% - 24px, var(--max-width));
  }

  .section {
    padding: 60px 0;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .cta-box {
    padding: 28px 22px;
    border-radius: 20px;
  }

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

  .footer-links {
    gap: 14px;
  }
}