/* BUTTONS */
.btn-primary {
  background: var(--terra);
  color: white;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--terra-light);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

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

/* SECTIONS */
.section {
  padding: 100px 5%;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
  max-width: 600px;
}

/* UTILS */
.placeholder-notice {
  background: rgba(184, 92, 56, 0.08);
  border: 1px dashed rgba(184, 92, 56, 0.3);
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 13px;
  color: var(--terra);
  text-align: center;
  margin: 40px 5% 0;
  font-weight: 500;
}

/* Scroll animations */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 900px) {
  .why-grid,
  .services-grid,
  .testimonials-grid,
  .faq-grid,
  .about-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .hero-img-col {
    display: none;
  }

  .about-badge {
    right: 0;
  }

  .about-content {
    padding-left: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .nav-phone {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:first-child {
    grid-column: span 1;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
  }
}
