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

        :root {
            --white: #FEFEFE;
            --cream: #FAF8F5;
            --blush: #F2E4DE;
            --rose: #D4A5A5;
            --rose-glow: rgba(212, 165, 165, 0.4);
            --sage: #A8B5A0;
            --sage-glow: rgba(168, 181, 160, 0.4);
            --charcoal: #2C2C2C;
            --soft-black: #1A1A1A;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--cream);
            color: var(--charcoal);
            overflow-x: hidden;
        }

        /* Normal cursor - custom cursor disabled */

        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--rose), var(--sage), var(--rose));
            background-size: 200% 100%;
            animation: gradientShift 3s ease infinite;
            z-index: 10001;
            transform-origin: left;
            transform: scaleX(0);
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Floating Particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--rose);
            border-radius: 50%;
            opacity: 0.3;
            animation: floatParticle 15s infinite ease-in-out;
        }

        .particle:nth-child(odd) {
            background: var(--sage);
            animation-duration: 20s;
        }

        @keyframes floatParticle {
            0%, 100% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% { opacity: 0.3; }
            90% { opacity: 0.3; }
            100% {
                transform: translateY(-100vh) rotate(720deg);
                opacity: 0;
            }
        }

        /* Custom Cursor - DISABLED */
        .cursor,
        .cursor-dot,
        .mouse-glow {
            display: none !important;
        }

        /* Legacy cursor styles - hidden */
        /*
            z-index: 1;
            filter: blur(40px);
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 30px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
        }

        .nav-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--white);
            text-decoration: none;
            letter-spacing: 0.1em;
            transition: text-shadow 0.3s ease;
        }

        .nav-logo:hover {
            text-shadow: 0 0 20px rgba(255,255,255,0.5);
        }

        .nav-links {
            display: flex;
            gap: 50px;
            list-style: none;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 0.05em;
            position: relative;
            padding: 5px 0;
            transition: text-shadow 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--white);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform: translateX(-50%);
            box-shadow: 0 0 10px rgba(255,255,255,0.5);
        }

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

        .nav-links a:hover {
            text-shadow: 0 0 15px rgba(255,255,255,0.5);
        }

        .nav-cta {
            padding: 14px 32px;
            background: var(--rose);
            border: none;
            color: var(--soft-black);
            font-family: 'Outfit', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            background: var(--white);
            color: var(--soft-black);
        }

        .nav-cta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-cta span::after {
            content: '→';
            font-size: 1em;
            transition: transform 0.3s ease;
        }

        .nav-cta:hover span::after {
            transform: translateX(4px);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
            overflow: hidden;
        }

        .hero-left {
            background: var(--soft-black);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 80px;
            position: relative;
        }

        .hero-left::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 1px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
        }

        /* Animated gradient overlay */
        .hero-left::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(212, 165, 165, 0.08) 0%, transparent 50%);
            animation: heroGradient 10s ease-in-out infinite alternate;
            pointer-events: none;
        }

        @keyframes heroGradient {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(10%, 10%) rotate(5deg); }
        }

        .hero-right {
            background: var(--soft-black);
            position: relative;
            overflow: hidden;
            perspective: 1000px;
        }

        /* Grain texture overlay */
        .hero-right::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            opacity: 0.03;
            pointer-events: none;
            z-index: 10;
        }

        /* 3D Gallery Container */
        .hero-gallery {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
        }

        /* Stacked Image Layers */
        .gallery-layer {
            position: absolute;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }

        .gallery-layer img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease, opacity 0.5s ease;
        }

        /* ========== BACK LAYER - Animated Ambient ========== */
        .gallery-layer-1 {
            width: 95%;
            height: 95%;
            top: 2.5%;
            left: 2.5%;
            transform: translateZ(-150px) scale(1.2);
            border-radius: 0;
        }

        .gallery-layer-1 img {
            filter: blur(25px) brightness(0.35) saturate(1.3);
            animation: kenBurnsAmbient 25s ease-in-out infinite;
        }

        @keyframes kenBurnsAmbient {
            0% {
                transform: scale(1.2) translate(0%, 0%);
                filter: blur(25px) brightness(0.35) saturate(1.3);
            }
            25% {
                transform: scale(1.35) translate(-3%, -2%);
                filter: blur(30px) brightness(0.3) saturate(1.4);
            }
            50% {
                transform: scale(1.25) translate(2%, 3%);
                filter: blur(20px) brightness(0.4) saturate(1.2);
            }
            75% {
                transform: scale(1.4) translate(-2%, 2%);
                filter: blur(28px) brightness(0.32) saturate(1.35);
            }
            100% {
                transform: scale(1.2) translate(0%, 0%);
                filter: blur(25px) brightness(0.35) saturate(1.3);
            }
        }

        /* Ambient light overlay */
        .gallery-layer-1::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 30% 20%, rgba(212, 165, 165, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(168, 181, 160, 0.1) 0%, transparent 50%);
            animation: lightShift 12s ease-in-out infinite;
        }

        @keyframes lightShift {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        /* ========== MIDDLE LAYER - Next Slide (Passive) ========== */
        .gallery-layer-2 {
            width: 32%;
            height: 50%;
            bottom: 10%;
            left: 4%;
            top: auto;
            transform: translateZ(-50px) rotateY(-6deg);
            opacity: 0.7;
            border-radius: 12px;
            box-shadow: -15px 20px 40px rgba(0,0,0,0.4);
            animation: passiveFloat 10s ease-in-out infinite;
        }

        @keyframes passiveFloat {
            0%, 100% {
                transform: translateZ(-50px) rotateY(-6deg) translateY(0px);
            }
            50% {
                transform: translateZ(-50px) rotateY(-4deg) translateY(-8px);
            }
        }

        .gallery-layer-2 img {
            filter: blur(2px) brightness(0.7) saturate(0.8);
            border-radius: 12px;
        }

        /* Soft dark overlay */
        .gallery-layer-2::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(0, 0, 0, 0.2) 0%,
                rgba(0, 0, 0, 0.4) 100%
            );
            border-radius: 12px;
            z-index: 1;
        }

        .gallery-layer-2::after {
            content: 'Sonraki';
            position: absolute;
            bottom: 12px;
            left: 12px;
            font-size: 0.6rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
            background: rgba(0,0,0,0.3);
            padding: 6px 10px;
            border-radius: 4px;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .gallery-layer-2:hover::after {
            background: rgba(212, 165, 165, 0.6);
            color: white;
        }

        .gallery-layer-2 {
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .gallery-layer-2:hover {
            opacity: 0.9 !important;
            transform: translateZ(-30px) rotateY(-3deg) scale(1.05) !important;
        }

        /* ========== FRONT LAYER - Active Main ========== */
        .gallery-layer-3 {
            width: 70%;
            height: 85%;
            top: 8%;
            right: 5%;
            transform: translateZ(50px) rotateY(3deg);
            border-radius: 16px;
            animation: breathingActive 8s ease-in-out infinite, glowPulse 5s ease-in-out infinite;
        }

        @keyframes breathingActive {
            0%, 100% {
                transform: translateZ(50px) rotateY(3deg) scale(1);
            }
            50% {
                transform: translateZ(55px) rotateY(2deg) scale(1.01);
            }
        }

        @keyframes glowPulse {
            0%, 100% {
                box-shadow:
                    25px 30px 60px rgba(0,0,0,0.5),
                    10px 10px 25px rgba(0,0,0,0.3),
                    0 0 0 rgba(212, 165, 165, 0);
            }
            50% {
                box-shadow:
                    30px 35px 80px rgba(0,0,0,0.55),
                    15px 15px 35px rgba(0,0,0,0.35),
                    0 0 60px rgba(212, 165, 165, 0.1);
            }
        }

        .gallery-layer-3 img {
            border-radius: 16px;
            animation: innerDrift 12s ease-in-out infinite;
        }

        @keyframes innerDrift {
            0%, 100% {
                transform: scale(1) translate(0%, 0%);
            }
            33% {
                transform: scale(1.02) translate(-0.5%, 0.3%);
            }
            66% {
                transform: scale(1.01) translate(0.3%, -0.3%);
            }
        }

        /* Subtle border */
        .gallery-layer-3::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            z-index: 2;
            pointer-events: none;
        }

        /* Light reflection on top */
        .gallery-layer-3::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 40%;
            background: linear-gradient(
                180deg,
                rgba(255,255,255,0.08) 0%,
                transparent 100%
            );
            border-radius: 16px 16px 0 0;
            pointer-events: none;
            z-index: 2;
        }

        /* ========== Hover Enhancements ========== */
        .hero-gallery:hover .gallery-layer-1 img {
            animation-play-state: paused;
            filter: blur(35px) brightness(0.25) saturate(1.5);
        }

        .hero-gallery:hover .gallery-layer-2 {
            animation-play-state: paused;
            opacity: 0.85;
            transform: translateZ(-30px) rotateY(-3deg) scale(1.03);
            box-shadow: -20px 25px 50px rgba(0,0,0,0.5);
        }

        .hero-gallery:hover .gallery-layer-2 img {
            filter: blur(1px) brightness(0.8) saturate(0.9);
        }

        .hero-gallery:hover .gallery-layer-3 {
            animation-play-state: paused;
            transform: translateZ(70px) rotateY(1deg) scale(1.02);
            box-shadow:
                30px 40px 80px rgba(0,0,0,0.55),
                15px 20px 40px rgba(0,0,0,0.35),
                0 0 80px rgba(212, 165, 165, 0.15);
        }

        .hero-gallery:hover .gallery-layer-3 img {
            animation-play-state: paused;
            transform: scale(1.05);
        }

        /* ========== Light Leak Effect ========== */
        .hero-light-leak {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 4;
            overflow: hidden;
        }

        .hero-light-leak::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background:
                radial-gradient(ellipse at 20% 30%, rgba(212, 165, 165, 0.08) 0%, transparent 40%),
                radial-gradient(ellipse at 80% 70%, rgba(168, 181, 160, 0.06) 0%, transparent 40%),
                radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
            animation: lightLeakDrift 20s ease-in-out infinite;
        }

        @keyframes lightLeakDrift {
            0%, 100% { transform: translate(0%, 0%) rotate(0deg); }
            33% { transform: translate(5%, -5%) rotate(2deg); }
            66% { transform: translate(-5%, 5%) rotate(-2deg); }
        }

        /* ========== Dust Particles ========== */
        .hero-dust {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 3;
            overflow: hidden;
        }

        .dust-particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            animation: dustFloat 15s linear infinite;
        }

        .dust-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 18s; }
        .dust-particle:nth-child(2) { left: 25%; animation-delay: -3s; animation-duration: 22s; }
        .dust-particle:nth-child(3) { left: 40%; animation-delay: -6s; animation-duration: 16s; }
        .dust-particle:nth-child(4) { left: 55%; animation-delay: -9s; animation-duration: 20s; }
        .dust-particle:nth-child(5) { left: 70%; animation-delay: -12s; animation-duration: 24s; }
        .dust-particle:nth-child(6) { left: 85%; animation-delay: -15s; animation-duration: 19s; }

        @keyframes dustFloat {
            0% {
                transform: translateY(100vh) translateX(0) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
                transform: translateY(80vh) translateX(10px) scale(1);
            }
            50% {
                opacity: 0.4;
                transform: translateY(40vh) translateX(-15px) scale(0.8);
            }
            90% {
                opacity: 0.2;
                transform: translateY(5vh) translateX(20px) scale(0.5);
            }
            100% {
                transform: translateY(-10vh) translateX(0) scale(0);
                opacity: 0;
            }
        }

        /* Large Typography Overlay */
        .hero-text-mask {
            position: absolute;
            bottom: 8%;
            left: 5%;
            z-index: 5;
            mix-blend-mode: difference;
            pointer-events: none;
        }

        .hero-text-mask h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(5rem, 15vw, 12rem);
            font-weight: 400;
            font-style: italic;
            color: var(--white);
            line-height: 0.85;
            letter-spacing: -0.03em;
            margin: 0;
            opacity: 0.9;
        }

        /* Vertical text accent */
        .hero-vertical-text {
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%) rotate(90deg);
            transform-origin: center;
            font-size: 0.7rem;
            letter-spacing: 0.4em;
            color: rgba(255,255,255,0.4);
            text-transform: uppercase;
            white-space: nowrap;
            z-index: 5;
        }

        /* Minimal badge */
        .hero-badge {
            position: absolute;
            top: 40px;
            left: 40px;
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 5;
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--rose);
            border-radius: 50%;
            animation: badgePulse 2s ease-in-out infinite;
        }

        @keyframes badgePulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        .hero-badge-text {
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
        }

        /* Counter badge */
        .hero-counter {
            position: absolute;
            bottom: 40px;
            right: 40px;
            text-align: right;
            z-index: 5;
        }

        .hero-counter-number {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 400;
            color: var(--white);
            line-height: 1;
            display: flex;
            align-items: baseline;
        }

        .hero-counter-number span {
            font-size: 1.5rem;
            margin-left: 5px;
            color: var(--rose);
        }

        .hero-counter-label {
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            color: rgba(255,255,255,0.4);
            text-transform: uppercase;
            margin-top: 8px;
        }

        /* Decorative line */
        .hero-line {
            position: absolute;
            background: linear-gradient(to bottom, transparent, var(--rose), transparent);
            z-index: 5;
        }

        .hero-line-1 {
            width: 1px;
            height: 120px;
            top: 60px;
            right: 100px;
            animation: lineGrow 2s ease-out forwards;
        }

        .hero-line-2 {
            width: 80px;
            height: 1px;
            bottom: 150px;
            left: 40px;
            background: linear-gradient(to right, var(--rose), transparent);
        }

        @keyframes lineGrow {
            from { transform: scaleY(0); opacity: 0; }
            to { transform: scaleY(1); opacity: 1; }
        }

        /* Scroll indicator */
        .hero-scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            z-index: 5;
        }

        .hero-scroll-indicator span {
            font-size: 0.65rem;
            letter-spacing: 0.3em;
            color: rgba(255,255,255,0.3);
            text-transform: uppercase;
        }

        .hero-scroll-indicator .scroll-line {
            width: 1px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            position: relative;
            overflow: hidden;
        }

        .hero-scroll-indicator .scroll-line::after {
            content: '';
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 50%;
            background: var(--rose);
            animation: scrollDown 2s ease-in-out infinite;
        }

        @keyframes scrollDown {
            0% { top: -50%; }
            100% { top: 150%; }
        }

        .hero-float-text {
            display: none;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 400;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }

        .hero-title .word {
            display: inline-block;
            overflow: hidden;
        }

        .hero-title .char {
            display: inline-block;
            transform: translateY(100%);
            opacity: 0;
            animation: charReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            text-shadow: 0 0 40px rgba(212, 165, 165, 0.3);
        }

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

        .hero-subtitle {
            font-size: 1rem;
            color: rgba(255,255,255,0.6);
            font-weight: 300;
            max-width: 400px;
            line-height: 1.8;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
            opacity: 0;
            animation: fadeInUp 1s ease 1s forwards;
        }

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

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 20px 45px;
            background: var(--rose);
            color: var(--white);
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            position: relative;
            overflow: hidden;
            z-index: 2;
            box-shadow:
                0 10px 30px rgba(212, 165, 165, 0.4),
                0 0 60px rgba(212, 165, 165, 0.2);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            opacity: 0;
            animation: fadeInUp 1s ease 1.2s forwards;
        }

        .hero-cta::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.5s ease;
        }

        .hero-cta:hover::before {
            left: 100%;
        }

        .hero-cta:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow:
                0 20px 50px rgba(212, 165, 165, 0.5),
                0 0 80px rgba(212, 165, 165, 0.3);
        }

        .hero-cta span {
            position: relative;
            z-index: 1;
        }

        .hero-cta svg {
            position: relative;
            z-index: 1;
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .hero-cta:hover svg {
            transform: translateX(8px);
        }

        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 80px;
            display: flex;
            align-items: center;
            gap: 15px;
            color: rgba(255,255,255,0.4);
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            z-index: 2;
        }

        .hero-scroll-line {
            width: 60px;
            height: 1px;
            background: rgba(255,255,255,0.2);
            position: relative;
            overflow: hidden;
        }

        .hero-scroll-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, var(--rose), transparent);
            animation: scrollLine 2s infinite;
        }

        @keyframes scrollLine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* Marquee Section */
        .marquee-section {
            padding: 50px 0;
            background: var(--white);
            overflow: hidden;
            position: relative;
        }

        .marquee-section::before,
        .marquee-section::after {
            content: '';
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
        }

        .marquee-section::before {
            left: 0;
            background: linear-gradient(90deg, var(--white), transparent);
        }

        .marquee-section::after {
            right: 0;
            background: linear-gradient(-90deg, var(--white), transparent);
        }

        .marquee {
            display: flex;
            animation: marquee 25s linear infinite;
        }

        .marquee:hover {
            animation-play-state: paused;
        }

        .marquee-content {
            display: flex;
            align-items: center;
            gap: 60px;
            flex-shrink: 0;
            padding-right: 60px;
        }

        .marquee-item {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-style: italic;
            color: var(--charcoal);
            white-space: nowrap;
            opacity: 0.6;
            transition: all 0.4s ease;
        }

        .marquee-item:hover {
            opacity: 1;
            color: var(--rose);
            text-shadow: 0 0 30px var(--rose-glow);
        }

        .marquee-dot {
            width: 10px;
            height: 10px;
            background: linear-gradient(135deg, var(--rose), var(--sage));
            border-radius: 50%;
            box-shadow: 0 0 20px var(--rose-glow);
            animation: pulse 2s ease infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.2); opacity: 1; }
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Services Section - Bento Grid */
        .services {
            padding: 120px 60px;
            background: var(--cream);
            position: relative;
            overflow: hidden;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 20%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(212, 165, 165, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(60px);
            animation: floatGlow 8s ease-in-out infinite;
        }

        @keyframes floatGlow {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-30px, 30px); }
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 1;
        }

        .section-label {
            font-size: 0.75rem;
            letter-spacing: 0.3em;
            color: var(--rose);
            text-transform: uppercase;
            margin-bottom: 20px;
            display: inline-block;
            position: relative;
        }

        .section-label::before,
        .section-label::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 40px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--rose));
        }

        .section-label::before {
            right: calc(100% + 20px);
            background: linear-gradient(90deg, transparent, var(--rose));
        }

        .section-label::after {
            left: calc(100% + 20px);
            background: linear-gradient(-90deg, transparent, var(--rose));
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 400;
            color: var(--charcoal);
        }

        /* Bento Grid Layout */
        .services-bento {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: repeat(3, minmax(200px, auto));
            gap: 20px;
            position: relative;
            z-index: 1;
        }

        .bento-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            background: var(--white);
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .bento-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.12), 0 0 80px rgba(212, 165, 165, 0.15);
        }

        /* Grid Positions */
        .bento-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 3; }
        .bento-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 2; }
        .bento-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
        .bento-item:nth-child(4) { grid-column: 6 / 13; grid-row: 2 / 3; }
        .bento-item:nth-child(5) { grid-column: 1 / 5; grid-row: 3 / 4; }
        .bento-item:nth-child(6) { grid-column: 5 / 13; grid-row: 3 / 4; }

        /* Background Image */
        .bento-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .bento-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transform: scale(1.1);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .bento-item:hover .bento-bg img {
            opacity: 1;
            transform: scale(1);
        }

        /* Gradient Overlay */
        .bento-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%);
            transition: opacity 0.6s ease;
        }

        .bento-item:nth-child(2) .bento-overlay {
            background: linear-gradient(135deg, rgba(168, 181, 160, 0.3) 0%, var(--cream) 100%);
        }

        .bento-item:nth-child(3) .bento-overlay {
            background: linear-gradient(135deg, rgba(212, 165, 165, 0.2) 0%, var(--white) 100%);
        }

        .bento-item:nth-child(4) .bento-overlay {
            background: linear-gradient(135deg, var(--white) 0%, rgba(212, 165, 165, 0.15) 100%);
        }

        .bento-item:nth-child(5) .bento-overlay {
            background: linear-gradient(135deg, rgba(168, 181, 160, 0.2) 0%, var(--white) 100%);
        }

        .bento-item:nth-child(6) .bento-overlay {
            background: linear-gradient(135deg, var(--blush) 0%, rgba(168, 181, 160, 0.1) 100%);
        }

        .bento-item:hover .bento-overlay {
            opacity: 0.15;
        }

        /* Content */
        .bento-content {
            position: relative;
            z-index: 2;
            height: 100%;
            padding: 35px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .bento-number {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-style: italic;
            color: var(--rose);
            opacity: 0.15;
            line-height: 1;
            transition: all 0.5s ease;
        }

        .bento-item:hover .bento-number {
            opacity: 0.4;
            transform: translateY(-10px);
            color: var(--white);
            text-shadow: 0 0 30px rgba(212, 165, 165, 0.5);
        }

        .bento-info {
            transition: all 0.5s ease;
        }

        .bento-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 400;
            color: var(--charcoal);
            margin-bottom: 12px;
            transition: all 0.5s ease;
        }

        .bento-item:hover .bento-title {
            color: var(--white);
            text-shadow: 0 2px 20px rgba(0,0,0,0.3);
        }

        .bento-desc {
            font-size: 0.9rem;
            color: rgba(44, 44, 44, 0.6);
            line-height: 1.6;
            max-width: 280px;
            opacity: 0.8;
            transition: all 0.5s ease;
        }

        .bento-item:hover .bento-desc {
            color: rgba(255, 255, 255, 0.85);
        }

        /* CTA Button */
        .bento-cta {
            position: absolute;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: var(--white);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: scale(0.5) rotate(-90deg);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            cursor: pointer;
        }

        .bento-item:hover .bento-cta {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }

        .bento-cta:hover {
            background: var(--rose);
            transform: scale(1.1) rotate(0deg) !important;
        }

        .bento-cta svg {
            width: 20px;
            height: 20px;
            stroke: var(--charcoal);
            transition: all 0.3s ease;
        }

        .bento-cta:hover svg {
            stroke: var(--white);
            transform: translateX(3px);
        }

        /* Icon decoration */
        .bento-icon {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(212, 165, 165, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s ease;
        }

        .bento-item:hover .bento-icon {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(15deg) scale(1.1);
        }

        .bento-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--rose);
            transition: all 0.5s ease;
        }

        .bento-item:hover .bento-icon svg {
            stroke: var(--white);
        }

        /* Special styling for large card */
        .bento-item:nth-child(1) .bento-title {
            font-size: 2.5rem;
        }

        .bento-item:nth-child(1) .bento-number {
            font-size: 6rem;
        }

        /* Horizontal card styling */
        .bento-item:nth-child(4) .bento-content,
        .bento-item:nth-child(6) .bento-content {
            flex-direction: row;
            align-items: flex-end;
            justify-content: space-between;
        }

        .bento-item:nth-child(4) .bento-number,
        .bento-item:nth-child(6) .bento-number {
            position: absolute;
            top: 25px;
            left: 35px;
        }

        /* Decorative elements */
        .bento-deco {
            position: absolute;
            width: 150px;
            height: 150px;
            border: 1px solid rgba(212, 165, 165, 0.2);
            border-radius: 50%;
            top: -75px;
            right: -75px;
            transition: all 0.6s ease;
        }

        .bento-item:hover .bento-deco {
            transform: scale(1.5);
            opacity: 0;
        }

        /* About Section */
        .about {
            padding: 150px 80px;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 100px;
            align-items: center;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .about-visual {
            position: relative;
            transform-style: preserve-3d;
        }

        .about-image-main {
            width: 100%;
            height: 600px;
            object-fit: cover;
            border-radius: 0 150px 0 0;
            box-shadow:
                0 30px 60px rgba(0,0,0,0.15),
                0 60px 120px rgba(0,0,0,0.1);
            transition: all 0.5s ease;
        }

        .about-visual:hover .about-image-main {
            box-shadow:
                0 40px 80px rgba(0,0,0,0.2),
                0 80px 160px rgba(0,0,0,0.15),
                0 0 100px rgba(212, 165, 165, 0.2);
        }

        .about-image-float {
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 250px;
            height: 300px;
            object-fit: cover;
            border: 10px solid var(--white);
            box-shadow:
                0 30px 60px rgba(0,0,0,0.15),
                0 0 60px rgba(212, 165, 165, 0.1);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            animation: floatImage 6s ease-in-out infinite;
        }

        @keyframes floatImage {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .about-visual:hover .about-image-float {
            transform: translateY(-30px) scale(1.05);
        }

        .about-stats {
            position: absolute;
            top: 50px;
            right: -30px;
            background: var(--soft-black);
            padding: 35px 45px;
            color: var(--white);
            box-shadow:
                0 20px 50px rgba(0,0,0,0.3),
                0 0 60px rgba(26, 26, 26, 0.2);
            transition: all 0.4s ease;
        }

        .about-stats:hover {
            transform: translateY(-10px);
            box-shadow:
                0 30px 70px rgba(0,0,0,0.4),
                0 0 80px rgba(26, 26, 26, 0.3);
        }

        .about-stats-number {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 400;
        }

        .about-stats-label {
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            opacity: 0.6;
        }

        .about-content {
            padding-right: 100px;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 2;
            color: rgba(44, 44, 44, 0.7);
            margin-bottom: 40px;
        }

        .about-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px 28px;
            background: var(--cream);
            font-size: 0.9rem;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }

        .about-feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 165, 165, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .about-feature:hover::before {
            left: 100%;
        }

        .about-feature:hover {
            transform: translateY(-5px);
            box-shadow:
                0 15px 40px rgba(0,0,0,0.1),
                0 0 40px rgba(212, 165, 165, 0.1);
        }

        .about-feature svg {
            width: 20px;
            height: 20px;
            stroke: var(--sage);
            transition: all 0.3s ease;
        }

        .about-feature:hover svg {
            stroke: var(--rose);
            transform: scale(1.2);
        }

        .about-cta {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            color: var(--charcoal);
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            padding-bottom: 5px;
            border-bottom: 2px solid var(--charcoal);
            transition: all 0.4s ease;
            position: relative;
        }

        .about-cta::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--rose), var(--sage));
            transition: width 0.4s ease;
            box-shadow: 0 0 10px var(--rose-glow);
        }

        .about-cta:hover::after {
            width: 100%;
        }

        .about-cta:hover {
            color: var(--rose);
        }

        .about-cta svg {
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .about-cta:hover svg {
            transform: translateX(8px);
        }

        /* Gallery Section */
        .gallery {
            padding: 150px 80px;
            background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%);
            position: relative;
            overflow: hidden;
        }

        .gallery::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(168, 181, 160, 0.1) 0%, transparent 60%);
            animation: galleryGradient 15s ease infinite alternate;
        }

        @keyframes galleryGradient {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-10%, 10%); }
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: repeat(4, 150px);
            gap: 20px;
            margin-top: 80px;
            position: relative;
            z-index: 1;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border-radius: 5px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .gallery-item:hover {
            z-index: 10;
            box-shadow:
                0 30px 60px rgba(0,0,0,0.2),
                0 0 80px rgba(212, 165, 165, 0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
            filter: saturate(0.9) brightness(0.95);
        }

        .gallery-item:hover img {
            transform: scale(1.2);
            filter: saturate(1.1) brightness(1);
        }

        .gallery-item-1 { grid-column: 1 / 5; grid-row: 1 / 3; }
        .gallery-item-2 { grid-column: 5 / 8; grid-row: 1 / 2; }
        .gallery-item-3 { grid-column: 8 / 13; grid-row: 1 / 3; }
        .gallery-item-4 { grid-column: 5 / 8; grid-row: 2 / 4; }
        .gallery-item-5 { grid-column: 1 / 5; grid-row: 3 / 5; }
        .gallery-item-6 { grid-column: 8 / 10; grid-row: 3 / 5; }
        .gallery-item-7 { grid-column: 10 / 13; grid-row: 3 / 5; }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.5s ease;
            display: flex;
            align-items: flex-end;
            padding: 30px;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-caption {
            color: var(--white);
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-style: italic;
            transform: translateY(20px);
            transition: transform 0.5s ease;
            text-shadow: 0 0 20px rgba(0,0,0,0.5);
        }

        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }

        /* Testimonial Section */
        .testimonial {
            padding: 180px 80px;
            background: var(--soft-black);
            position: relative;
            overflow: hidden;
        }

        .testimonial::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 50%, rgba(212, 165, 165, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(168, 181, 160, 0.05) 0%, transparent 50%);
            animation: testimonialGradient 10s ease infinite alternate;
        }

        @keyframes testimonialGradient {
            0% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        .testimonial-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Playfair Display', serif;
            font-size: 30rem;
            color: rgba(255,255,255,0.02);
            white-space: nowrap;
            text-shadow: 0 0 100px rgba(212, 165, 165, 0.05);
        }

        .testimonial-slider {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            z-index: 1;
        }

        .testimonial-track {
            position: relative;
            min-height: 350px;
        }

        .testimonial-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transform: translateY(40px) scale(0.95);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            pointer-events: none;
        }

        .testimonial-slide.active {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }

        .testimonial-slide.prev {
            opacity: 0;
            transform: translateY(-40px) scale(0.95);
        }

        .testimonial-quote {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 3vw, 2.8rem);
            font-weight: 400;
            font-style: italic;
            color: var(--white);
            line-height: 1.6;
            margin-bottom: 50px;
            text-shadow: 0 0 40px rgba(255,255,255,0.1);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 25px;
        }

        .testimonial-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--rose);
            box-shadow: 0 0 30px rgba(212, 165, 165, 0.3);
            transition: all 0.4s ease;
        }

        .testimonial-avatar:hover {
            transform: scale(1.1);
            box-shadow: 0 0 50px rgba(212, 165, 165, 0.5);
        }

        .testimonial-info {
            text-align: left;
        }

        .testimonial-name {
            color: var(--white);
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .testimonial-role {
            color: rgba(255,255,255,0.5);
            font-size: 0.85rem;
        }

        .testimonial-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            margin-top: 60px;
        }

        .testimonial-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.2);
            background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .testimonial-btn:hover {
            background: var(--rose);
            border-color: var(--rose);
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(212, 165, 165, 0.4);
        }

        .testimonial-btn svg {
            width: 20px;
            height: 20px;
            stroke: rgba(255,255,255,0.6);
            transition: stroke 0.3s ease;
        }

        .testimonial-btn:hover svg {
            stroke: var(--white);
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .testimonial-dot {
            width: 35px;
            height: 4px;
            background: rgba(255,255,255,0.2);
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border-radius: 2px;
        }

        .testimonial-dot:hover {
            background: rgba(255,255,255,0.4);
        }

        .testimonial-dot.active {
            background: linear-gradient(90deg, var(--rose), var(--sage));
            width: 60px;
            box-shadow: 0 0 20px var(--rose-glow);
        }

        /* Contact Section */
        .contact {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
        }

        .contact-info {
            background: var(--cream);
            padding: 100px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(212, 165, 165, 0.08) 0%, transparent 60%);
            animation: contactGradient 15s ease infinite;
        }

        @keyframes contactGradient {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(20%, 20%); }
        }

        .contact-info .section-title {
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .contact-details {
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            margin-bottom: 35px;
            padding: 20px;
            background: var(--white);
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .contact-item:hover {
            transform: translateX(10px);
            box-shadow:
                0 15px 40px rgba(0,0,0,0.1),
                -5px 0 30px rgba(212, 165, 165, 0.1);
        }

        .contact-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--blush), var(--cream));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(212, 165, 165, 0.2);
        }

        .contact-item:hover .contact-icon {
            background: linear-gradient(135deg, var(--rose), var(--sage));
            transform: rotate(10deg) scale(1.1);
            box-shadow: 0 10px 30px rgba(212, 165, 165, 0.4);
        }

        .contact-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--rose);
            transition: stroke 0.3s ease;
        }

        .contact-item:hover .contact-icon svg {
            stroke: var(--white);
        }

        .contact-label {
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            color: var(--rose);
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .contact-value {
            font-size: 1.1rem;
            color: var(--charcoal);
        }

        .contact-social {
            display: flex;
            gap: 12px;
            position: relative;
            z-index: 1;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 20px;
            background: var(--white);
            border: none;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--rose), var(--sage));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .social-link:hover::before {
            opacity: 1;
        }

        .social-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(212, 165, 165, 0.3);
        }

        .social-link svg {
            width: 22px;
            height: 22px;
            color: var(--charcoal);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
            flex-shrink: 0;
        }

        .social-link:hover svg {
            color: var(--white);
            transform: scale(1.1);
        }

        .social-label {
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            color: var(--charcoal);
            transition: color 0.4s ease;
            position: relative;
            z-index: 1;
            white-space: nowrap;
        }

        .social-link:hover .social-label {
            color: var(--white);
        }

        .contact-form-section {
            background: var(--white);
            padding: 100px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .form-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            margin-bottom: 50px;
        }

        .form-group {
            margin-bottom: 35px;
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 22px 0;
            background: transparent;
            border: none;
            border-bottom: 2px solid rgba(44, 44, 44, 0.15);
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            color: var(--charcoal);
            transition: border-color 0.4s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--rose);
        }

        .form-input::placeholder {
            color: rgba(44, 44, 44, 0.4);
            transition: all 0.3s ease;
        }

        .form-input:focus::placeholder {
            color: var(--rose);
            transform: translateX(10px);
        }

        .form-group::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--rose), var(--sage));
            transition: width 0.4s ease;
            box-shadow: 0 0 10px var(--rose-glow);
        }

        .form-group:focus-within::after {
            width: 100%;
        }

        textarea.form-input {
            resize: none;
            height: 130px;
        }

        .form-submit {
            padding: 22px 55px;
            background: var(--soft-black);
            color: var(--white);
            border: none;
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            letter-spacing: 0.12em;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .form-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--rose), var(--sage));
            transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 0;
        }

        .form-submit:hover::before {
            left: 0;
        }

        .form-submit:hover {
            transform: translateY(-5px);
            box-shadow:
                0 20px 50px rgba(0,0,0,0.25),
                0 0 60px rgba(212, 165, 165, 0.2);
        }

        .form-submit span {
            position: relative;
            z-index: 1;
        }

        /* Footer */
        .footer {
            background: var(--soft-black);
            padding: 70px 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 165, 165, 0.3), transparent);
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-logo:hover {
            text-shadow: 0 0 30px rgba(255,255,255,0.3);
        }

        .footer-copy {
            color: rgba(255,255,255,0.4);
            font-size: 0.85rem;
        }

        .footer-back-top {
            width: 55px;
            height: 55px;
            border: 1px solid rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            overflow: hidden;
        }

        .footer-back-top::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(to top, var(--rose), var(--sage));
            transition: height 0.4s ease;
        }

        .footer-back-top:hover::before {
            height: 100%;
        }

        .footer-back-top:hover {
            border-color: transparent;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(212, 165, 165, 0.3);
        }

        .footer-back-top svg {
            stroke: var(--white);
            width: 22px;
            height: 22px;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .footer-back-top:hover svg {
            transform: translateY(-3px);
        }

        /* Magnetic Effect Elements */
        .magnetic {
            display: inline-block;
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Scroll Reveal Animations - Default visible, JS adds animation */
        .reveal,
        .reveal-left,
        .reveal-right {
            opacity: 1;
            transform: none;
        }

        /* When JS is loaded, it adds 'js-enabled' to body */
        body.js-enabled .reveal {
            opacity: 0;
            transform: translateY(80px);
            transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        body.js-enabled .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        body.js-enabled .reveal-left {
            opacity: 0;
            transform: translateX(-80px);
            transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        body.js-enabled .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        body.js-enabled .reveal-right {
            opacity: 0;
            transform: translateX(80px);
            transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        body.js-enabled .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        /* Stagger animations */
        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }
        .stagger-5 { transition-delay: 0.5s; }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
            }

            .hero-right {
                display: none;
            }

            .nav {
                padding: 20px 30px;
            }

            .nav-links {
                display: none;
            }

            .hero-left {
                padding: 0 30px;
            }

            .section-header {
                padding: 0 30px;
            }

            .services {
                padding: 80px 20px;
            }

            .services-bento {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
                gap: 15px;
            }

            .bento-item {
                grid-column: auto !important;
                grid-row: auto !important;
                min-height: 220px;
            }

            .bento-item:nth-child(1) {
                grid-column: 1 / 3 !important;
                min-height: 280px;
            }

            .bento-item:nth-child(1) .bento-title {
                font-size: 1.8rem;
            }

            .bento-item:nth-child(1) .bento-number {
                font-size: 4rem;
            }

            .bento-content {
                padding: 25px;
            }

            .bento-title {
                font-size: 1.4rem;
            }

            .bento-number {
                font-size: 3rem;
            }

            .bento-desc {
                font-size: 0.8rem;
            }

            .bento-icon {
                width: 40px;
                height: 40px;
                top: 20px;
                right: 20px;
            }

            .bento-cta {
                width: 45px;
                height: 45px;
                bottom: 20px;
                right: 20px;
            }

            .about {
                grid-template-columns: 1fr;
                padding: 80px 30px;
            }

            .about-content {
                padding-right: 0;
            }

            .gallery {
                padding: 80px 30px;
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
            }

            .gallery-item {
                grid-column: auto !important;
                grid-row: auto !important;
                height: 250px;
            }

            .testimonial {
                padding: 100px 30px;
            }

            .testimonial-track {
                min-height: 300px;
            }

            .contact {
                grid-template-columns: 1fr;
            }

            .contact-info,
            .contact-form-section {
                padding: 60px 30px;
            }

            .contact-social {
                flex-wrap: wrap;
            }

            .footer {
                flex-direction: column;
                gap: 30px;
                text-align: center;
                padding: 50px 30px;
            }

            body {
                cursor: auto;
            }

            .cursor, .cursor-dot, .mouse-glow {
                display: none;
            }
        }

        @media (max-width: 600px) {
            .services-bento {
                grid-template-columns: 1fr;
            }

            .bento-item,
            .bento-item:nth-child(1) {
                grid-column: auto !important;
                min-height: 200px;
            }

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

            .testimonial-nav {
                gap: 15px;
            }

            .testimonial-btn {
                width: 40px;
                height: 40px;
            }

            .testimonial-dots {
                gap: 8px;
            }

            .testimonial-dot {
                width: 25px;
            }

            .testimonial-dot.active {
                width: 40px;
            }

            .contact-social {
                gap: 10px;
            }

            .social-link {
                padding: 12px 16px;
            }

            .social-label {
                font-size: 0.75rem;
            }
        }

        /* Menu Button for Mobile */
        .menu-btn {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 10px;
        }

        .menu-btn span {
            width: 25px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s ease;
        }

        @media (max-width: 1024px) {
            .menu-btn {
                display: flex;
            }
        }
    </style>

/* ======== ADDITIONAL STYLES FOR INNER PAGES ======== */

/* Inner Page Nav */
.nav-inner {
    background: var(--soft-black);
    mix-blend-mode: normal;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--soft-black);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-links {
    list-style: none;
    text-align: center;
    padding: 0;
}

.mobile-menu-links li {
    margin: 25px 0;
}

.mobile-menu-links a {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu-links a:hover {
    color: var(--rose);
}

/* Active nav link */
.nav-links a.active::after {
    width: 100%;
}

/* Page Banner */
.page-banner {
    height: 50vh;
    min-height: 400px;
    background: var(--soft-black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, rgba(212, 165, 165, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(168, 181, 160, 0.06) 0%, transparent 50%);
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner .section-label {
    color: var(--rose);
    margin-bottom: 20px;
}

.page-banner .section-title {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.page-banner-desc {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 60px;
    background: var(--cream);
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--rose);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--charcoal);
    opacity: 0.5;
    margin: 0 10px;
}

/* Services Page Grid */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 100px 60px;
    background: var(--cream);
}

@media (max-width: 1024px) {
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 60px 30px;
    }
}

@media (max-width: 600px) {
    .services-page-grid {
        grid-template-columns: 1fr;
    }
}

.service-page-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.service-page-card-img {
    height: 280px;
    overflow: hidden;
}

.service-page-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-page-card:hover .service-page-card-img img {
    transform: scale(1.1);
}

.service-page-card-body {
    padding: 30px;
}

.service-page-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.service-page-card-body p {
    color: rgba(44,44,44,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-page-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--rose);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: gap 0.3s ease;
}

.service-page-card-link:hover {
    gap: 15px;
}

/* Service Detail Page */
.service-detail {
    padding: 100px 60px;
    background: var(--cream);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .service-detail {
        padding: 60px 30px;
    }
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.service-detail-image {
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.service-detail-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 30px;
}

.service-detail-content p {
    color: rgba(44,44,44,0.7);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 30px;
}

.service-detail-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0;
}

.service-detail-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    font-size: 0.9rem;
    color: var(--charcoal);
}

.service-detail-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 45px;
    background: var(--rose);
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-top: 20px;
    transition: all 0.4s ease;
}

.service-detail-cta:hover {
    background: var(--soft-black);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Gallery Page */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 80px 60px;
    background: var(--cream);
}

@media (max-width: 1024px) {
    .gallery-page-grid { grid-template-columns: repeat(2, 1fr); padding: 40px 20px; }
}

@media (max-width: 600px) {
    .gallery-page-grid { grid-template-columns: 1fr; }
}

.gallery-page-item {
    position: relative;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

.gallery-page-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-page-item:hover img {
    transform: scale(1.1);
}

.gallery-page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.gallery-page-item:hover .gallery-page-overlay {
    opacity: 1;
}

.gallery-page-overlay span {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 60px 30px 0;
    background: var(--cream);
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 1px solid rgba(44,44,44,0.1);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--charcoal);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--soft-black);
    color: var(--white);
    border-color: var(--soft-black);
}

/* Contact Page Full */
.contact-page {
    padding: 80px 60px;
    background: var(--cream);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .contact-page { padding: 40px 20px; }
    .contact-page-grid { grid-template-columns: 1fr; }
}

.contact-map {
    width: 100%;
    height: 400px;
    margin-top: 40px;
    background: var(--blush);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* About Page */
.about-page-section {
    padding: 100px 60px;
    background: var(--white);
}

.about-page-section:nth-child(even) {
    background: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .about-page-section { padding: 60px 30px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .team-grid { grid-template-columns: 1fr; }
}

.team-card {
    text-align: center;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.team-card-img {
    height: 300px;
    overflow: hidden;
}

.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-card-img img {
    transform: scale(1.08);
}

.team-card-body {
    padding: 25px;
}

.team-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.team-card-body p {
    color: var(--rose);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* Success/Error Messages */
.form-message {
    padding: 15px 25px;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.form-message-success {
    background: rgba(168,181,160,0.2);
    color: var(--charcoal);
    border-left: 4px solid var(--sage);
}

.form-message-error {
    background: rgba(212,165,165,0.2);
    color: var(--charcoal);
    border-left: 4px solid var(--rose);
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

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

/* Performance - GPU acceleration for animated elements */
.gallery-layer img,
.hero-left::after,
.particle,
.custom-cursor,
.cursor-dot {
    will-change: transform;
}
