.page-template-template-home .site-content .ast-container {
  display: block !important;
}

.home-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 67, 50, 0.88) 0%,
    rgba(27, 67, 50, 0.65) 50%,
    rgba(64, 145, 108, 0.45) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding: 0 1.5rem;
}

.home-hero-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.1;
}

.home-hero-sub {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 2.5rem;
  line-height: 1.5;
}

.home-hero-cta {
  display: inline-block;
  background: var(--brand-gold);
  color: var(--brand-green-deep);
  padding: 0.85rem 2.5rem;
  border-radius: 8px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.home-hero-cta:hover {
  background: #c9a067;
  color: var(--brand-green-deep);
  transform: translateY(-2px);
}

.home-services {
  padding: 5rem 1.5rem;
  background: var(--brand-bg);
}

.home-about {
  padding: 5rem 1.5rem;
  background: var(--brand-surface);
}

.home-container {
  max-width: 1120px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-green-deep);
  text-align: center;
  margin: 0 0 0.75rem;
}

.section-sub {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  color: var(--brand-text-muted);
  text-align: center;
  margin: 0 0 3rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  box-shadow: var(--brand-shadow-md);
  transform: translateY(-3px);
}

.service-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-green-deep);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.service-card-excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--brand-text-muted);
  margin: 0 0 1.25rem;
  flex: 1;
}

.service-card-link {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-green);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}

.service-card-link::after {
  content: '→';
  transition: transform 0.2s;
}

.service-card:hover .service-card-link::after {
  transform: translateX(4px);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text .section-title {
  text-align: left;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--brand-text);
  margin: 0 0 1.25rem;
}

.about-cta {
  display: inline-block;
  background: var(--brand-green-deep);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s;
}

.about-cta:hover {
  background: var(--brand-green);
  color: #fff;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--brand-radius);
  object-fit: cover;
}

.home-cta {
  background: var(--brand-green-deep);
  padding: 5rem 1.5rem;
  text-align: center;
}

.home-cta-content {
  max-width: 560px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
}

.cta-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 2rem;
}

.cta-button {
  display: inline-block;
  background: var(--brand-gold);
  color: var(--brand-green-deep);
  padding: 0.9rem 2.75rem;
  border-radius: 8px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.cta-button:hover {
  background: #c9a067;
  color: var(--brand-green-deep);
  transform: translateY(-2px);
}

@media (max-width: 1023px) {
  .home-hero {
    min-height: 240px;
  }
  .home-hero-title {
    font-size: 2.5rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .home-hero {
    min-height: 220px;
  }
  .home-hero-title {
    font-size: 1.75rem;
  }
  .home-hero-sub {
    font-size: 1rem;
  }
  .home-hero-cta {
    padding: 0.7rem 1.75rem;
    font-size: 0.9rem;
  }
  .home-services,
  .home-about,
  .home-cta {
    padding: 3rem 0.75rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .section-sub {
    margin-bottom: 2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-image {
    order: -1;
  }
  .cta-title {
    font-size: 1.5rem;
  }
}
