/* Home hero — aligned with React marketing sample */

body.site-home {
  background: #e8f5ee;
  font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
}

.site-home .page {
  max-width: none;
  background: #e8f5ee;
}

.site-home .hero-band {
  background: #e8f5ee;
  width: 100%;
  overflow: hidden;
}

.site-home .trust-band {
  background: #e8f5ee;
}

.site-home .dotwave {
  display: none;
}

.site-home .hero {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: 53fr 47fr;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
  max-width: none;
  margin: 0;
  width: 100%;
  background: #e8f5ee;
}

.site-home .hero-media {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  margin-left: -1%;
  min-height: 620px;
  background: #e8f5ee;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.site-home .hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  max-width: none;
  object-fit: cover;
  object-position: 52% center;
}

.site-home .hero-left {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
  width: auto;
  max-width: none;
  padding: 72px 48px 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}

.site-home .hero-left h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #0d1f14;
  margin: 0 0 20px;
}

.site-home .hero-left h1 .green {
  color: #1a7c44;
}

.site-home .hero-left > p {
  font-size: 16px;
  line-height: 1.65;
  color: #2d4a37;
  max-width: 540px;
  margin-bottom: 36px;
}

.site-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

.site-home .hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  min-width: 0;
  height: auto;
  box-shadow: none;
  transition: background 0.15s, color 0.15s, transform 0.1s;
}

.site-home .hero-actions .btn:not(.outline) {
  background: #1a7c44;
  color: #fff;
  border: 2px solid #1a7c44;
}

.site-home .hero-actions .btn:not(.outline):hover {
  background: #155f34;
  border-color: #155f34;
}

.site-home .hero-actions .btn.outline {
  background: transparent;
  color: #111;
  border: 2px solid #111;
}

.site-home .hero-actions .btn.outline:hover {
  background: #111;
  color: #fff;
}

.site-home .hero-highlights {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 20px;
}

.site-home .hero-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
}

.site-home .hero-highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid #b8deca;
  background: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a7c44;
  flex-shrink: 0;
}

.site-home .hero-highlight-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.site-home .hero-highlight-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0d1f14;
  line-height: 1.3;
}

.site-home .hero-highlight-text span {
  display: block;
  font-size: 12px;
  color: #3d6650;
  line-height: 1.3;
}

@media (max-width: 1100px) {
  .site-home .hero {
    grid-template-columns: 55fr 45fr;
  }

  .site-home .hero-left {
    padding: 60px 32px 48px;
  }

  .site-home .hero-highlights {
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .site-home .hero-highlights {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .site-home .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .site-home .hero-media {
    grid-column: 1;
    grid-row: 2;
    margin-left: 0;
    min-height: 0;
    height: 300px;
  }

  .site-home .hero-photo {
    min-height: 0;
    height: 100%;
    object-position: 50% center;
  }

  .site-home .hero-left {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: 100%;
    padding: 40px 20px 32px;
  }

  .site-home .hero-left h1 {
    font-size: clamp(30px, 8vw, 40px);
    letter-spacing: -1px;
  }

  .site-home .hero-left > p {
    max-width: none;
    font-size: 15px;
    margin-bottom: 28px;
  }

  .site-home .hero-actions {
    flex-direction: column;
    margin-bottom: 36px;
    gap: 12px;
  }

  .site-home .hero-actions .btn {
    width: 100%;
    white-space: normal;
  }

  .site-home .hero-highlights {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .site-home .hero-media {
    height: 260px;
  }

  .site-home .hero-left {
    padding: 32px 16px 28px;
  }
}
