
    :root {
      --bg: #FAF8F5;
      --fg: #2C2C2C;
      --muted: #6B6B6B;
      --accent: #C5A059;
      --accent-light: #D4B87A;
      --card: #FFFFFF;
      --border: rgba(197, 160, 89, 0.2);
      --forest: #2F5233;
    }

    [data-theme="dark"] {
      --bg: #1C1C1C;
      --fg: #F5F1EB;
      --muted: #A0A0A0;
      --accent: #D4B87A;
      --accent-light: #C5A059;
      --card: #252525;
      --border: rgba(212, 184, 122, 0.2);
      --forest: #4A7A4F;
    }

    * {
      scrollbar-width: thin;
      scrollbar-color: var(--accent) var(--bg);
    }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--bg);
      color: var(--fg);
      overflow-x: hidden;
    }

    .font-display {
      font-family: 'Playfair Display', serif;
    }

    /* Hero Background Pattern */
    .hero-pattern {
      background-color: var(--bg);
      background-image: 
        radial-gradient(ellipse at 10% 90%, rgba(197, 160, 89, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 10%, rgba(47, 82, 51, 0.06) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23C5A059' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    }

    /* Glass Effect */
    .glass {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--border);
    }

    [data-theme="dark"] .glass {
      background: rgba(37, 37, 37, 0.9);
    }

    /* Buttons */
    .btn-primary {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
      color: white;
      padding: 16px 36px;
      border-radius: 4px;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-size: 0.875rem;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.6s;
    }

    .btn-primary:hover::before {
      left: 100%;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
    }

    .btn-secondary {
      background: transparent;
      color: var(--fg);
      padding: 16px 36px;
      border-radius: 4px;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-size: 0.875rem;
      border: 2px solid var(--fg);
      transition: all 0.3s ease;
    }

    .btn-secondary:hover {
      background: var(--fg);
      color: var(--bg);
    }

    /* Service Cards */
    .service-card {
      background: var(--card);
      border-radius: 12px;
      padding: 2rem;
      transition: all 0.4s ease;
      border: 1px solid transparent;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--forest));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-card:hover {
      transform: translateY(-8px);
      border-color: var(--border);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .service-card:hover .card-icon {
      background: var(--accent);
      color: white;
    }

    .card-icon {
      transition: all 0.4s ease;
    }

    /* Pricing Cards */
    .pricing-card {
      background: var(--card);
      border-radius: 16px;
      padding: 2.5rem;
      transition: all 0.4s ease;
      border: 1px solid var(--border);
      position: relative;
    }

    .pricing-card.featured {
      border: 2px solid var(--accent);
      transform: scale(1.03);
      box-shadow: 0 25px 50px rgba(197, 160, 89, 0.15);
    }

    .pricing-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .pricing-card.featured:hover {
      transform: scale(1.03) translateY(-10px);
    }

    /* Navigation */
    .nav-link {
      position: relative;
      padding: 8px 0;
      font-weight: 500;
    }

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

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

    /* Reveal Animations */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

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

    /* Staggered Children */
    .stagger-children > * {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .stagger-children.active > *:nth-child(1) { transition-delay: 0.05s; }
    .stagger-children.active > *:nth-child(2) { transition-delay: 0.1s; }
    .stagger-children.active > *:nth-child(3) { transition-delay: 0.15s; }
    .stagger-children.active > *:nth-child(4) { transition-delay: 0.2s; }
    .stagger-children.active > *:nth-child(5) { transition-delay: 0.25s; }
    .stagger-children.active > *:nth-child(6) { transition-delay: 0.3s; }

    .stagger-children.active > * {
      opacity: 1;
      transform: translateY(0);
    }

    /* Form Inputs */
    .form-input {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 14px 18px;
      transition: all 0.3s ease;
      color: var(--fg);
      width: 100%;
    }

    .form-input:focus {
      border-color: var(--accent);
      outline: none;
      box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
    }

    /* Modal */
    .modal {
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .modal.active {
      opacity: 1;
      visibility: visible;
    }

    .modal-content {
      transform: scale(0.9) translateY(20px);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .modal.active .modal-content {
      transform: scale(1) translateY(0);
    }

    /* Testimonial Slider */
    .testimonial-slider {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* Counter Animation */
    .counter {
      font-variant-numeric: tabular-nums;
    }

    /* Gold Line Accent */
    .gold-line {
      width: 60px;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--accent-light));
    }

    /* Floating Animation */
    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(2deg); }
    }

    .float {
      animation: float 6s ease-in-out infinite;
    }

    /* Success Message */
    .success-msg {
      opacity: 0;
      transform: scale(0.9);
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .success-msg.active {
      opacity: 1;
      transform: scale(1);
    }

    /* Mobile Menu */
    .mobile-menu {
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .mobile-menu.active {
      transform: translateX(0);
    }

    /* Reduced Motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      .float {
        animation: none;
      }
    }

    /* Image Placeholder Styles */
    .img-placeholder {
      background: linear-gradient(135deg, var(--beige-100) 0%, var(--beige-200) 100%);
      position: relative;
      overflow: hidden;
    }

    .img-placeholder::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255,255,255,0.3) 50%,
        transparent 60%
      );
      animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
      0% { transform: translateX(-100%) rotate(45deg); }
      100% { transform: translateX(100%) rotate(45deg); }
    }
  