  /* ===== BASE & RESET ===== */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body {
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  ::selection {
    background: #B8603C;
    color: #F5EDE4;
  }

  /* ===== SCROLLBAR ===== */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #F5EDE4;
  }
  ::-webkit-scrollbar-thumb {
    background: #DFCBB5;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #B8603C;
  }

  /* ===== NAVBAR SCROLL STATE ===== */
  #navbar.scrolled {
    background: rgba(253, 251, 249, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(223, 203, 181, 0.4);
  }

  #navbar.scrolled .font-display,
  #navbar.scrolled .text-charcoal-900 {
    color: #1A1714 !important;
  }

  #navbar.scrolled .menu-line {
    background: #1A1714 !important;
  }

  /* ===== MOBILE MENU ===== */
  #mobileMenu.open {
    opacity: 1;
    pointer-events: all;
  }

  .menu-line:nth-child(3) {
    transform-origin: center;
  }

  #menuBtn.active .menu-line:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }
  #menuBtn.active .menu-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  #menuBtn.active .menu-line:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
    width: 1.25rem;
  }

  .mobile-link {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  #mobileMenu.open .mobile-link {
    opacity: 1;
    transform: translateY(0);
  }

  #mobileMenu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
  #mobileMenu.open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
  #mobileMenu.open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
  #mobileMenu.open .mobile-link:nth-child(4) { transition-delay: 0.25s; }
  #mobileMenu.open .mobile-link:nth-child(5) { transition-delay: 0.3s; }

  /* ===== HERO ANIMATIONS ===== */
  .hero-eyebrow {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.3s;
  }

  .reveal-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .reveal-up.visible,
  .reveal-left.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }

  .delay-100 { transition-delay: 0.1s; }
  .delay-200 { transition-delay: 0.2s; }
  .delay-300 { transition-delay: 0.3s; }
  .delay-400 { transition-delay: 0.4s; }

  /* ===== HERO ANIMATIONS (initial load) ===== */
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ===== SCROLL INDICATOR ===== */
  @keyframes scrollDot {
    0% { top: -16px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 40px; opacity: 0; }
  }

  .animate-scroll-dot {
    animation: scrollDot 1.8s ease-in-out infinite;
  }

  /* ===== SERVICE CARDS ===== */
  .service-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .service-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===== FORM STYLES ===== */
  input:focus,
  select:focus,
  textarea:focus {
    border-color: #B8603C !important;
    box-shadow: 0 0 0 3px rgba(184, 96, 60, 0.1);
  }

  select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23B8603C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    #hero h1 {
      font-size: 2.75rem;
    }

    .reveal-left {
      transform: translateY(24px);
    }

    /* Floating card on mobile */
    .absolute.-bottom-6.-left-6 {
      position: relative;
      bottom: auto;
      left: auto;
      margin-top: 1.5rem;
      max-width: 100%;
    }

    /* Quote card on mobile */
    .absolute.-bottom-6.-left-6.bg-sand-50 {
      position: relative;
      bottom: auto;
      left: auto;
      margin-top: 1.5rem;
      max-width: 100%;
    }
  }

  @media (max-width: 640px) {
    #hero h1 {
      font-size: 2.25rem;
    }

    .font-display.text-4xl {
      font-size: 2rem;
    }

    section {
      padding-left: 1.25rem;
      padding-right: 1.25rem;
    }

    .max-w-7xl {
      padding-left: 0;
      padding-right: 0;
    }
  }

  /* ===== PRINT ===== */
  @media print {
    #navbar, .animate-scroll-dot, button {
      display: none;
    }
    body {
      background: white;
      color: black;
    }
  }
