/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }

/* ===== NAV ===== */
#nav {
  background: rgba(253, 249, 243, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16, 185, 129, 0.08);
}
#nav.scrolled {
  background: rgba(253, 249, 243, 0.95);
  box-shadow: 0 1px 20px rgba(6, 78, 59, 0.06);
}
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #10B981;
  border-radius: 1px;
  transition: width 0.2s ease;
}
.nav-link:hover::after { width: 100%; }

/* ===== HERO ===== */
#hero {
  background: linear-gradient(135deg, #FDF9F3 0%, #F2FAF5 50%, #ECFDF5 100%);
}

/* ===== CARDS ===== */
.card { cursor: default; }
.card:hover { transform: translateY(-4px); }

/* ===== GALLERY ===== */
.gallery-item {
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ===== REVIEW CARDS ===== */
.review-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.review-card:hover { transform: translateY(-4px); }

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }
}

/* ===== MOBILE MENU ===== */
.mobile-link { transition: color 0.15s ease; }

/* ===== CONTACT FORM ===== */
#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #D1FAE5;
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: #064E3B;
  background: #FDF9F3;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#contact-form input:focus,
#contact-form textarea:focus {
  border-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: #6EE7B7;
}
#contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
#form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
#form-success.show { display: block; }
#form-success svg { color: #10B981; }
