  body {
            font-family: 'Inter', sans-serif;
            background-color: #FAFAF8;
            color: #3A3A3A;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
        }
        .marquee {
  display: inline-flex;
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Ensure seamless looping */
.marquee span {
  display: inline-block;
}

        /* Cursor Follower */
        .cursor-blur {
            position: fixed;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(218, 211, 200, 0.3); /* accent color */
            filter: blur(10px);
            pointer-events: none;
            transform: translate(-50%, -50%);
            transition: width 0.3s ease, height 0.3s ease;
            z-index: 9999;
        }
        
        /* Page transition styles */
        .page {
            display: none;
            animation: fadeIn 0.7s ease-in-out;
        }
        .page-active {
            display: block;
        }
        
        /* Active Nav Link */
        .nav-link.nav-active {
            color: #B8C4A2; /* sage */
            position: relative;
        }
        .nav-link.nav-active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 5px;
            height: 5px;
            background-color: #B8C4A2;
            border-radius: 50%;
        }
        
        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.75rem;
            border-radius: 9999px;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .btn-filled {
            background-color: #DAD3C8; /* accent */
            color: #3A3A3A;
        }
        .btn-filled:hover {
            background-color: #3A3A3A;
            color: #FAFAF8;
            box-shadow: 0 4px 15px rgba(218, 211, 200, 0.6);
        }
        .btn-outline {
            background-color: transparent;
            color: #3A3A3A;
            border: 1px solid #DAD3C8;
        }
        .btn-outline:hover {
            background-color: #DAD3C8;
            border-color: #DAD3C8;
        }
        
        /* Floating Labels for Forms */
        .floating-label-group {
            position: relative;
        }
        .floating-label-input {
            padding-top: 1.5rem;
            border: 1px solid #DAD3C8;
            border-radius: 8px;
            background-color: #FAFAF8; /* cream */
        }
        .floating-label-input:focus {
            outline: none;
            border-color: #B8C4A2;
            box-shadow: 0 0 0 2px rgba(184, 196, 162, 0.3);
        }
        .floating-label {
            position: absolute;
            top: 1rem;
            left: 1rem;
            color: #3A3A3A_80;
            transition: all 0.2s ease;
            pointer-events: none;
        }
        .floating-label-input:focus ~ .floating-label,
        .floating-label-input:not(:placeholder-shown) ~ .floating-label {
            top: 0.5rem;
            left: 1rem;
            font-size: 0.75rem;
            color: #B8C4A2;
        }

        /* Portfolio Masonry Grid */
        .masonry-grid {
            column-gap: 1.5rem;
            columns: 1;
        }
        @media (min-width: 640px) {
            .masonry-grid { columns: 2; }
        }
        @media (min-width: 1024px) {
            .masonry-grid { columns: 3; }
        }
        .masonry-item {
            break-inside: avoid;
            margin-bottom: 1.5rem;
        }

        /* Blog Post Content */
        .blog-content h3 {
            font-size: 1.875rem; /* 3xl */
            line-height: 2.25rem; /* 3xl */
            font-family: 'Cormorant Garamond', serif;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        .blog-content p {
            font-size: 1.125rem; /* lg */
            line-height: 1.75;
            font-weight: 300;
            margin-bottom: 1.5rem;
        }
        .blog-content blockquote {
            border-left: 4px solid #B8C4A2; /* sage */
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            font-size: 1.25rem;
            font-family: 'Cormorant Garamond', serif;
            color: #3A3A3A90;
        }
        
        /* Swiper Styles */
        .swiper-container {
            width: 100%;
            padding-bottom: 40px; /* Space for pagination */
        }
        .swiper-pagination-bullet {
            background: #DAD3C8;
            opacity: 0.6;
        }
        .swiper-pagination-bullet-active {
            background: #B8C4A2;
            opacity: 1;
        }
