  /* Base & Typography */
  html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body {
    overflow-x: hidden;
  }

  ::selection {
    background: #d9522a;
    color: #fefdfb;
  }

  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #fdf8f0;
  }
  ::-webkit-scrollbar-thumb {
    background: #e36d48;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #c43e1a;
  }

  /* Reveal Animations */
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    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-left {
    transform: translateX(-40px);
  }

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

  .reveal-scale {
    transform: scale(0.95);
  }

  .reveal-up.visible,
  .reveal-left.visible,
  .reveal-right.visible,
  .reveal-scale.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
  }

  /* Header scroll state */
  #site-header.scrolled {
    background: rgba(254, 253, 251, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(217, 82, 42, 0.1);
  }

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

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

  /* Hamburger animation */
  .menu-line:nth-child(1) {
    transform-origin: center;
  }
  .menu-line:nth-child(2) {
    transform-origin: center;
  }
  .menu-line:nth-child(3) {
    transform-origin: center;
  }

  body.menu-open .menu-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  body.menu-open .menu-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  body.menu-open .menu-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    width: 1.25rem;
  }

  /* Nav link hover underline */
  .nav-link {
    position: relative;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #d9522a;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-link:hover::after {
    width: 100%;
  }

  /* Mobile link underline */
  .mobile-link {
    position: relative;
  }
  .mobile-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: #d9522a;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
  }
  .mobile-link:hover::after {
    width: 100%;
  }

  /* Form focus styles */
  input:focus,
  select:focus,
  textarea:focus {
    box-shadow: 0 0 0 3px rgba(217, 82, 42, 0.15);
  }

  /* Image hover container */
  .rounded-2xl.overflow-hidden {
    overflow: hidden;
  }

  /* Smooth section transitions */
  section {
    position: relative;
  }

  /* Date input styling */
  input[type="date"] {
    color-scheme: light;
  }

  /* Reduce motion */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    html {
      scroll-behavior: auto;
    }
  }

  /* Print styles */
  @media print {
    #site-header,
    #mobile-menu,
    button,
    form {
      display: none !important;
    }
    body {
      color: #000;
      background: #fff;
    }
  }
