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

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }

  body {
    overflow-x: hidden;
  }

  ::selection {
    background: rgba(201, 168, 76, 0.25);
    color: #1a2744;
  }

  /* Section Labels */
  .section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: #1a2744;
  }

  .section-desc {
    font-size: 1.05rem;
    color: #1a2744;
    opacity: 0.6;
    line-height: 1.7;
  }

  /* Navbar */
  #navbar {
    background: transparent;
  }

  #navbar.scrolled {
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(26, 39, 68, 0.06);
  }

  .nav-link {
    position: relative;
  }

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

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

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

  #mobile-menu.closed {
    opacity: 0;
    pointer-events: none;
  }

  .mobile-nav-link {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

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

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

  /* Hero Animations */
  .hero-tag {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.3s;
  }

  .hero-title {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.5s;
  }

  .hero-subtitle {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.7s;
  }

  .hero-cta {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.9s;
  }

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

  /* Service Cards */
  .service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.5s ease, border-color 0.5s ease;
  }

  .service-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Scroll Reveal */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

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

  /* CTA Primary */
  .cta-primary {
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
  }

  /* Scroll Indicator */
  .scroll-indicator {
    animation: fadeIn 1s ease forwards 1.5s;
    opacity: 0;
  }

  @keyframes fadeIn {
    to { opacity: 1; }
  }

  /* Smooth focus styles */
  input:focus, textarea:focus {
    outline: none;
  }

  /* Subtle gradient text for gold elements */
  .text-gold-gradient {
    background: linear-gradient(135deg, #f0d98c 0%, #c9a84c 50%, #b08d30 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

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

  ::-webkit-scrollbar-track {
    background: #faf6ee;
  }

  ::-webkit-scrollbar-thumb {
    background: #c9a84c;
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #b08d30;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    html {
      scroll-padding-top: 70px;
    }
  }
