  /* Custom styles */
  html {
    scroll-behavior: smooth;
  }

  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Scroll reveal */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

  /* Hero animations */
  .hero-anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .hero-anim.animated {
    opacity: 1;
    transform: translateY(0);
  }

  /* Floating blobs */
  .hero-blob {
    animation: float 8s ease-in-out infinite;
  }

  .blob-1 {
    animation-delay: 0s;
  }

  .blob-2 {
    animation-delay: -3s;
    animation-duration: 10s;
  }

  .blob-3 {
    animation-delay: -5s;
    animation-duration: 12s;
  }

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

  /* Navbar scroll state */
  #navbar.scrolled {
    background: rgba(253, 248, 243, 0.92);
    backdrop-blur-lg;
    box-shadow: 0 1px 20px rgba(193, 102, 107, 0.08);
  }

  /* Nav link underline */
  .nav-link {
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C1666B;
    transition: width 0.3s ease;
    border-radius: 1px;
  }

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

  /* Mobile link */
  .mobile-link {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f5f5f5;
  }

  .mobile-link:last-child {
    border-bottom: none;
  }

  /* Custom select arrow */
  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='%239ca3af' 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");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 2.5rem;
  }

  /* Selection color */
  ::selection {
    background: #EDB4A6;
    color: #602F31;
  }
