  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }

  body {
    overflow-x: hidden;
  }

  /* Selection */
  ::selection {
    background: rgba(123, 45, 59, 0.15);
    color: #7B2D3B;
  }

  /* Scrollbar */
  ::-webkit-scrollbar {
    width: 6px;
  }
  ::-webkit-scrollbar-track {
    background: #FDF8F5;
  }
  ::-webkit-scrollbar-thumb {
    background: #E8BFB5;
    border-radius: 3px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #7B2D3B;
  }

  /* Navbar */
  #navbar {
    background: rgba(253, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232, 191, 181, 0.3);
  }

  #navbar.scrolled {
    box-shadow: 0 1px 30px rgba(123, 45, 59, 0.06);
  }

  .nav-link {
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #7B2D3B;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  /* Hero animations */
  .hero-eyebrow {
    animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
  }

  .hero-title {
    animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
  }

  .hero-subtitle {
    animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards;
  }

  .hero-cta {
    animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
  }

  #scroll-indicator {
    animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s forwards;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Section reveals */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
  .scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
  .scroll-reveal:nth-child(4) { transition-delay: 0.3s; }
  .scroll-reveal:nth-child(5) { transition-delay: 0.4s; }
  .scroll-reveal:nth-child(6) { transition-delay: 0.5s; }

  /* Section typography */
  .section-eyebrow {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .section-title {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
  }

  .scroll-reveal.revealed .section-eyebrow,
  .scroll-reveal.revealed .section-title {
    opacity: 1;
    transform: translateY(0);
  }

  /* Service cards */
  .service-card {
    transition: background 0.5s ease, transform 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-4px);
  }

  /* Gallery */
  .gallery-item {
    position: relative;
    cursor: pointer;
  }

  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(123, 45, 59, 0);
    transition: background 0.4s ease;
    pointer-events: none;
  }

  .gallery-item:hover::after {
    background: rgba(123, 45, 59, 0.08);
  }

  /* Testimonial cards */
  .testimonial-card {
    transition: transform 0.4s ease, background 0.4s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-4px);
  }

  /* Buttons */
  .btn-primary {
    position: relative;
    overflow: hidden;
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .btn-primary:hover::before {
    opacity: 1;
  }

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

  .menu-line {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  #menu-toggle.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
  }
  #menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
    width: 0;
  }
  #menu-toggle.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -3px);
  }

  .mobile-nav-link {
    position: relative;
  }

  /* Form */
  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='%236B6560' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 3rem;
    }

    .section-title {
      font-size: 2.5rem;
    }

    .service-card {
      padding: 2rem !important;
    }
  }

  @media (max-width: 480px) {
    .hero-title {
      font-size: 2.25rem;
    }

    .section-title {
      font-size: 2rem;
    }
  }
