/* ── Base ── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { overflow-x: hidden; }

/* ── Blobs ── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: blobFloat 12s ease-in-out infinite;
}
.blob-burgundy { background: #7B2D3B; }
.blob-blush { background: #ec7d52; }
.blob-warm { background: #ea946c; }
.blob-white { background: #ffffff; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ── Nav ── */
#nav {
  background: rgba(254, 252, 251, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123, 45, 59, 0.08);
}
#nav.scrolled {
  background: rgba(254, 252, 251, 0.95);
  box-shadow: 0 4px 24px rgba(123, 45, 59, 0.08);
}

/* ── Mobile Menu ── */
.mobile-link {
  display: block;
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  transition: background 0.2s;
}
.mobile-link:hover { background: rgba(123, 45, 59, 0.06); }

/* ── Stat Cards ── */
.stat-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(123, 45, 59, 0.15);
}

/* ── Service Cards ── */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(123, 45, 59, 0.2);
}

/* ── Area Tags ── */
.area-tag {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.area-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(123, 45, 59, 0.12);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  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; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── Mobile ── */
@media (max-width: 767px) {
  .stat-card { border-radius: 1.25rem !important; }
  h1 { font-size: 2.25rem !important; }
  h2 { font-size: 2rem !important; }
}
