  /* Base & Utilities */
  html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body {
    overflow-x: hidden;
  }

  ::selection {
    background: #C4775B;
    color: #fff;
  }

  /* Scroll Reveal Animations */
  .reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .reveal-up.revealed,
  .reveal-scale.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  /* Staggered delays for service cards */
  .reveal-up:nth-child(1) { transition-delay: 0ms; }
  .reveal-up:nth-child(2) { transition-delay: 100ms; }
  .reveal-up:nth-child(3) { transition-delay: 200ms; }
  .reveal-up:nth-child(4) { transition-delay: 300ms; }
  .reveal-up:nth-child(5) { transition-delay: 400ms; }
  .reveal-up:nth-child(6) { transition-delay: 500ms; }

  /* Navbar */
  #navbar {
    background: transparent;
  }

  #navbar.scrolled {
    background: rgba(253, 248, 243, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  }

  /* Mobile Menu */
  #mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  /* Hero Image Hover */
  .reveal-scale > div:first-child:hover img {
    transform: scale(1.03);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .reveal-scale img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Smooth anchor offset */
  section[id] {
    scroll-margin-top: 80px;
  }

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #FDF8F3;
  }
  ::-webkit-scrollbar-thumb {
    background: #D4B088;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #C4775B;
  }

  /* Mobile link animation */
  .mobile-link {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
  }
  #mobile-menu.open .mobile-link {
    opacity: 1;
    transform: translateY(0);
  }
  #mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.05s; }
  #mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.1s; }
  #mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.15s; }
  #mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.2s; }
  #mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.25s; }

  /* Pulse animation for live dot */
  @keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(228, 121, 78, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(228, 121, 78, 0); }
    100% { box-shadow: 0 0 0 0 rgba(228, 121, 78, 0); }
  }
  .animate-pulse {
    animation: pulse-ring 2s infinite;
  }

  /* Service card tilt on hover */
  .group:hover .rounded-3xl {
    transform: translateY(-4px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .rounded-3xl {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Map container */
  .reveal-up iframe {
    border-radius: 1.5rem;
  }
