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

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

  body {
    overflow-x: hidden;
  }

  ::selection {
    background: #D4A84B;
    color: #1A0A1E;
  }

  /* Navbar */
  #navbar {
    transition: background-color 0.5s ease, box-shadow 0.5s ease, padding 0.5s ease;
  }

  #navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(123, 45, 142, 0.08);
  }

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

  #navbar.scrolled .menu-line {
    background-color: #1A0A1E;
  }

  /* Hero animations */
  .hero-bg {
    animation: heroZoom 20s ease-out forwards;
  }

  @keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
  }

  .hero-overlay {
    animation: heroOverlay 1.5s ease-out forwards;
  }

  @keyframes heroOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .hero-headline {
    animation: heroFadeUp 1s ease-out 0.3s both;
  }

  .hero-subtitle {
    animation: heroFadeUp 1s ease-out 0.1s both;
  }

  .hero-desc {
    animation: heroFadeUp 1s ease-out 0.5s both;
  }

  .hero-cta {
    animation: heroFadeUp 1s ease-out 0.7s both;
  }

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

  /* Scroll line */
  .scroll-line {
    animation: scrollPulse 2s ease-in-out infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(1.2); }
  }

  /* Reveal animations */
  .reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .reveal-up {
    transform: translateY(40px);
  }

  .reveal-left {
    transform: translateX(-40px);
  }

  .reveal-right {
    transform: translateX(40px);
  }

  .reveal-up.revealed,
  .reveal-left.revealed,
  .reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
  }

  /* Amenity cards */
  .amenity-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

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

  /* Mobile menu */
  #mobile-menu {
    box-shadow: none;
  }

  #mobile-menu.open {
    box-shadow: 0 0 60px rgba(26, 10, 30, 0.1);
  }

  /* Form focus styles */
  input:focus, textarea:focus {
    border-bottom-color: #D4A84B !important;
  }

  /* Smooth scroll offset for fixed nav */
  section[id] {
    scroll-margin-top: 80px;
  }

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

    .hero-desc {
      font-size: 0.95rem;
    }
  }

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

  /* Subtle image hover */
  img {
    transition: filter 0.4s ease;
  }

  /* Print styles */
  @media print {
    #navbar, .scroll-line {
      display: none;
    }
    body {
      color: #000;
      background: #fff;
    }
  }
