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

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

  body {
    overflow-x: hidden;
  }

  /* ─── Scroll Reveal ─── */
  .scroll-reveal {
    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);
  }

  .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; }

  /* ─── Hero Animations ─── */
  .hero-subtitle {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  }

  .hero-headline {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
  }

  .hero-body {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
  }

  .hero-cta {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
  }

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

  /* ─── Section Label ─── */
  .section-label {
    letter-spacing: 0.2em;
  }

  /* ─── Buttons ─── */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #F4845F 0%, #E85D75 100%);
    color: white;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(244, 132, 95, 0.3);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(244, 132, 95, 0.45);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #2D2D2D;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1.5px solid rgba(45, 45, 45, 0.2);
  }

  .btn-secondary:hover {
    border-color: #F4845F;
    color: #F4845F;
    transform: translateY(-2px);
  }

  /* ─── Input Fields ─── */
  .input-field {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E8E0DC;
    border-radius: 12px;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.95rem;
    color: #2D2D2D;
    background: #FDF8F5;
    transition: all 0.3s ease;
    outline: none;
  }

  .input-field::placeholder {
    color: #B8A8A0;
  }

  .input-field:focus {
    border-color: #F4845F;
    background: white;
    box-shadow: 0 0 0 4px rgba(244, 132, 95, 0.1);
  }

  select.input-field {
    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='%23B8A8A0' 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 16px center;
    padding-right: 40px;
  }

  /* ─── Service Cards ─── */
  .service-card {
    position: relative;
    overflow: hidden;
  }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F4845F, #E85D75);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .service-card:hover::after {
    transform: scaleX(1);
  }

  .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(244, 132, 95, 0.1) 0%, rgba(232, 93, 117, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(244, 132, 95, 0.2) 0%, rgba(232, 93, 117, 0.2) 100%);
    transform: scale(1.05);
  }

  /* ─── Gallery ─── */
  .gallery-item {
    position: relative;
    overflow: hidden;
  }

  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .gallery-item:hover::after {
    opacity: 1;
  }

  /* ─── Navbar ─── */
  #navbar {
    background: transparent;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  #navbar.scrolled {
    background: rgba(253, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
    padding-top: 0;
    padding-bottom: 0;
  }

  #navbar.scrolled .nav-logo-text {
    color: #1A1A1A;
  }

  .nav-link {
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, #F4845F, #E85D75);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

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

  /* ─── Scroll Indicator ─── */
  .scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }

  .scroll-indicator:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
  }

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

  .mobile-menu-link {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

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

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

  .mobile-menu-link:hover {
    transform: translateY(0) scale(1.05) !important;
  }

  /* ─── Testimonial Cards ─── */
  .testimonial-card {
    position: relative;
  }

  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    line-height: 1;
    color: rgba(244, 132, 95, 0.08);
    font-weight: 500;
    pointer-events: none;
  }

  /* ─── Decorative Blobs ─── */
  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.4;
  }

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

    .hero-body {
      font-size: 1.05rem;
    }

    .btn-primary, .btn-secondary {
      padding: 12px 24px;
      font-size: 0.9rem;
    }

    .section-label {
      font-size: 0.7rem;
    }

    .font-serif.text-4xl {
      font-size: 2.25rem;
    }

    .font-serif.text-5xl {
      font-size: 2.5rem;
    }
  }

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