.hero {
  position: relative;
  padding: var(--space-16) 0;
  background-color: var(--color-olive);
  color: var(--color-cream);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(45deg, rgba(107,122,60,0.9), rgba(200,134,46,0.8));
  z-index: 1;
}
.hero-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero h1 {
  color: var(--color-cream);
  font-size: 3.5rem;
  margin-bottom: var(--space-3);
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--space-4);
}
.testimonial {
  background: var(--color-cream);
  padding: var(--space-6);
  border-radius: var(--radius-asym);
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-accent);
  font-size: 6rem;
  color: var(--color-ochre);
  position: absolute;
  top: -20px;
  left: 20px;
  opacity: 0.3;
}
.faq-item {
  margin-bottom: var(--space-4);
  border-bottom: 1px solid #ddd;
  padding-bottom: var(--space-3);
}
.faq-item h3 {
  color: var(--color-rust);
  margin-bottom: var(--space-2);
}
.map-placeholder {
  background: var(--color-cream);
  height: 400px;
  border-radius: var(--radius-asym);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--color-olive);
  color: var(--color-olive);
  font-weight: 700;
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .hero { padding: var(--space-8) 0; }
}
