  /* Custom styles supplementing Tailwind */

  :root {
    --burgundy: #7B2D3B;
    --burgundy-dark: #5c1e28;
    --blush: #F5E6E0;
    --cream: #FAF7F4;
    --sand: #F5EDE6;
    --warmgray: #6B6560;
    --dark: #1E1A18;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

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

  body {
    overflow-x: hidden;
  }

  /* Section Labels */
  .section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    position: relative;
    padding-left: 40px;
  }

  .section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1.5px;
    background: var(--burgundy);
  }

  /* Navigation */
  #navbar {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  }

  #navbar.scrolled {
    background: rgba(250, 247, 244, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(30, 26, 24, 0.08);
  }

  .nav-link {
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--burgundy);
    transition: width 0.3s ease;
  }

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

  /* Mobile Menu */
  .menu-line {
    transition: all 0.3s ease;
  }

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

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

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

  #mobileMenu.open {
    opacity: 1;
    pointer-events: all;
  }

  .mobile-link {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

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

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

  /* Hero Animations */
  .hero-badge {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
  }

  .hero-badge {
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
  }

  #hero h1 {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.4s;
  }

  #hero p {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.6s;
  }

  #hero .flex.flex-wrap {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.8s;
  }

  #hero .flex.gap-12 {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 1s;
  }

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

  /* Scroll Indicator */
  .scroll-line {
    animation: scrollDown 1.5s ease-in-out infinite;
  }

  @keyframes scrollDown {
    0% { top: -16px; }
    100% { top: 48px; }
  }

  /* Service Cards */
  .service-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(123, 45, 59, 0.15);
  }

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

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

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

  ::-webkit-scrollbar-track {
    background: var(--cream);
  }

  ::-webkit-scrollbar-thumb {
    background: var(--burgundy);
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: var(--burgundy-dark);
  }

  /* Selection */
  ::selection {
    background: var(--burgundy);
    color: white;
  }

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

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

    #hero h1 {
      font-size: 3rem;
    }

    #hero h1 br {
      display: none;
    }

    .section-label {
      padding-left: 0;
    }

    .section-label::before {
      display: none;
    }
  }

  @media (max-width: 640px) {
    #hero h1 {
      font-size: 2.5rem;
    }
  }
