  /* ── Reset & Base ── */
  *, *::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;
  }

  ::selection {
    background: rgba(139, 26, 43, 0.5);
    color: #fff;
  }

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

  .animate-fade-up {
    animation-name: fadeUp;
    animation-duration: 0.8s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }

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

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

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }
  .reveal-delay-6 { transition-delay: 0.6s; }

  /* ── Navbar ── */
  #navbar {
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }

  #navbar.scrolled {
    background: rgba(10, 10, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.3);
  }

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

  .menu-line:nth-child(3) {
    transition-delay: 0s;
  }

  #menuBtn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
  }

  #menuBtn.active .menu-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  #menuBtn.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -3px);
    width: 1.4rem;
    margin-right: 0;
    margin-left: auto;
  }

  .mobile-link {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s 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; }

  /* ── Hero ── */
  #heroImg {
    transition: transform 8s ease;
  }

  #hero:hover #heroImg {
    transform: scale(1.08);
  }

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

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .service-card:hover::before {
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.3), transparent);
  }

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

  /* ── Custom Scrollbar ── */
  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: #0a0a0e;
  }

  ::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #8B1A2B, #C9A96E);
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #b52042, #e8d5a3);
  }

  /* ── Select styling ── */
  select option {
    background: #1a1a1f;
    color: #fff;
  }

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

    .hero-title br {
      display: none;
    }

    .hero-title span {
      font-size: 2.2rem;
    }
  }

  @media (min-width: 768px) and (max-width: 1023px) {
    .hero-title {
      font-size: 4rem;
    }
  }
