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

html {
  min-height: 100vh;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #0f1a0f;
  background: #f5f7f2;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #0f1a0f;
  color: #eef3e5;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #eef3e5;
}

.logo-link img {
  max-width: 80px;
  width: 80px;
  height: auto;
  border-radius: 0;
}

.brand-name {
  font-size: 16px;
  letter-spacing: 0.4px;
}

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

.nav a {
  color: #eef3e5;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #eef3e5;
  border-radius: 2px;
}

.hero {
  padding: 90px 0 70px;
  background: radial-gradient(120% 120% at 20% 20%, #c9e7b5 0, #f5f7f2 55%, #f5f7f2 100%);
}

.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy h1 {
  font-size: 38px;
  line-height: 1.2;
  margin: 12px 0;
}

.lead {
  font-size: 18px;
  color: #2f362c;
  margin: 10px 0 22px;
}

.eyebrow {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #2f7a38;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
}

.primary {
  background: #2f7a38;
  color: #f7fdf4;
  box-shadow: 0 10px 30px rgba(47, 122, 56, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(47, 122, 56, 0.25);
}

.ghost {
  border: 1px solid #2f7a38;
  color: #2f7a38;
  background: transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.ghost:hover {
  background: #e5f3e0;
  transform: translateY(-2px);
}

.contact-meta {
  display: flex;
  gap: 18px;
  font-weight: 600;
  color: #1f2a1f;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.metric-card {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: #0f1a0f;
  color: #eef3e5;
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(15, 26, 15, 0.28);
}

.metric-card strong {
  font-size: 24px;
  display: block;
}

.section {
  padding: 78px 0;
}

.section.soft {
  background: #eef3e5;
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 40px;
}

.section-header h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

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

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.services-grid {
  gap: 24px;
}

.services-grid .card {
  position: relative;
  overflow: hidden;
  border: 1px solid #dfe7d8;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf4 100%);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.services-grid .card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 20% 10%, rgba(47, 122, 56, 0.1), transparent 48%);
  pointer-events: none;
}

.services-grid .card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(12, 18, 12, 0.06);
}

.services-grid .card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.services-grid .card p {
  color: #263026;
}

.services-grid .card:hover {
  transform: translateY(-4px);
  border-color: #c8d8c2;
  box-shadow: 0 18px 40px rgba(12, 18, 12, 0.08);
}

.card {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(12, 18, 12, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 20px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}

.steps {
  list-style: none;
  display: grid;
  gap: 12px;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  background: #fff;
  padding: 14px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(12, 18, 12, 0.05);
}

.steps span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2f7a38;
  color: #f7fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.note-card {
  background: #0f1a0f;
  color: #eef3e5;
  padding: 20px;
  border-radius: 16px;
  display: grid;
  gap: 10px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: start;
}

.testimonial-cards {
  display: grid;
  gap: 16px;
}

.testimonial-cards .card {
  background: #fff;
}

.testimonial-cards .author {
  font-weight: 700;
  color: #2f7a38;
}

.cta {
  background: #0f1a0f;
  color: #eef3e5;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

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

.footer {
  background: #081008;
  color: #eef3e5;
  padding: 40px 0 26px;
}

.footer .logo-link img {
  max-width: 72px;
  width: 72px;
  height: auto;
  border-radius: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  align-items: start;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.legal {
  text-align: center;
  color: #c7d1c2;
  margin-top: 16px;
}

.page-hero {
  padding: 70px 0;
  background: linear-gradient(135deg, #cde4be, #f5f7f2);
}

.page-hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.page-content {
  padding: 50px 0;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.form {
  display: grid;
  gap: 14px;
  max-width: 520px;
}

.form label {
  font-weight: 600;
  color: #0f1a0f;
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d7dfd2;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
}

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

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-row input {
  margin-top: 4px;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e5f3e0;
  color: #1f2a1f;
  font-weight: 600;
  font-size: 14px;
}

.list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.list li {
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e1e8dd;
}

.policy-section {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.policy-section h2 {
  font-size: 24px;
}

.policy-section h3 {
  font-size: 18px;
}

.thankyou {
  padding: 90px 0;
  text-align: center;
}

.thankyou .btn {
  margin-top: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.gallery-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(12, 18, 12, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(12, 18, 12, 0.12);
}

.gallery-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eef3e5;
}

.gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-image-wrapper img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(15, 26, 15, 0.1) 60%,
    rgba(15, 26, 15, 0.3) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-card figcaption {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
}

.gallery-card figcaption strong {
  font-size: 18px;
  font-weight: 700;
  color: #0f1a0f;
  letter-spacing: -0.2px;
}

.gallery-card figcaption span {
  font-size: 14px;
  color: #4a5548;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 64px;
    right: 20px;
    background: #0f1a0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .burger {
    display: flex;
  }

  .nav-container {
    padding: 12px 0;
  }

  .logo-link img {
    max-width: 70px;
    width: 70px;
  }

  .brand-name {
    font-size: 14px;
  }

  .hero {
    padding: 70px 0;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .metric-card {
    right: 10px;
  }
}

@media (max-width: 540px) {
  .hero-copy h1 {
    font-size: 30px;
  }

  .section {
    padding: 60px 0;
  }

  .page-hero h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .logo-link img {
    max-width: 65px;
    width: 65px;
  }

  .brand-name {
    font-size: 13px;
  }

  .footer .logo-link img {
    max-width: 60px;
    width: 60px;
  }
}

@media (max-width: 320px) {
  .brand-name {
    display: none;
  }

  .logo-link {
    gap: 0;
  }

  .logo-link img {
    max-width: 50px;
    width: 50px;
  }

  .footer .logo-link img {
    max-width: 55px;
    width: 55px;
  }
}