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

        :root {
            --bg-primary: #fafafa;
            --bg-secondary: #ffffff;
            --bg-dark: #0a0a0a;
            --text-primary: #111111;
            --text-secondary: #666666;
            --text-light: #999999;
            --accent: #c9a962;
            --accent-dark: #b8984d;
            --border: #e8e8e8;
            --border-light: #f2f2f2;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            cursor: none;
        }

        /* Custom Cursor */
        .cursor {
            width: 12px;
            height: 12px;
            background: var(--accent);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
        }

        .cursor.hover {
            width: 60px;
            height: 60px;
            background: transparent;
            border: 1px solid var(--accent);
        }

        .cursor-dot {
            width: 4px;
            height: 4px;
            background: var(--text-primary);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 10000;
        }

        /* Grain Overlay */
        .grain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9998;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            mix-blend-mode: difference;
        }

        nav.scrolled {
            background: rgba(250, 250, 250, 0.9);
            backdrop-filter: blur(20px);
            mix-blend-mode: normal;
            padding: 1.25rem 4rem;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: white;
            text-decoration: none;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        nav.scrolled .logo {
            color: var(--text-primary);
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            position: relative;
            padding: 0.5rem 0;
        }

        nav.scrolled .nav-links a {
            color: var(--text-secondary);
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .nav-cta {
            padding: 0.875rem 2rem;
            background: transparent;
            color: white;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            border: 1px solid rgba(255,255,255,0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        nav.scrolled .nav-cta {
            color: var(--text-primary);
            border-color: var(--text-primary);
        }

        .nav-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--accent);
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .nav-cta:hover::before {
            left: 0;
        }

        .nav-cta:hover {
            color: white;
            border-color: var(--accent);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            background: var(--bg-dark);
            display: flex;
            align-items: center;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.6;
            transform: scale(1.1);
            animation: heroZoom 20s ease-in-out infinite alternate;
        }

        @keyframes heroZoom {
            to { transform: scale(1); }
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 0 4rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-label {
            font-size: 0.75rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 2rem;
            font-weight: 600;
            display: inline-block;
            overflow: hidden;
        }

        .hero-label span {
            display: inline-block;
            animation: labelReveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            transform: translateY(100%);
        }

        @keyframes labelReveal {
            to { transform: translateY(0); }
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(4rem, 10vw, 9rem);
            font-weight: 400;
            line-height: 0.95;
            letter-spacing: -3px;
            color: white;
            margin-bottom: 2rem;
            overflow: hidden;
        }

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

        .hero-title .line span {
            display: block;
            transform: translateY(100%);
            animation: titleReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .hero-title .line:nth-child(2) span {
            animation-delay: 0.1s;
        }

        @keyframes titleReveal {
            to { transform: translateY(0); }
        }

        .hero-title em {
            font-style: italic;
            color: var(--accent);
        }

        .hero-description {
            font-size: 1.25rem;
            color: rgba(255,255,255,0.7);
            max-width: 500px;
            line-height: 1.8;
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeIn 1s ease 0.8s forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .hero-cta {
            display: flex;
            gap: 2rem;
            align-items: center;
            opacity: 0;
            animation: fadeIn 1s ease 1s forwards;
        }

        .btn-primary {
            padding: 1.25rem 3rem;
            background: var(--accent);
            color: white;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: none;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(201, 169, 98, 0.3);
        }

        .btn-text {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .btn-text:hover {
            color: white;
        }

        .btn-text .arrow {
            width: 40px;
            height: 1px;
            background: currentColor;
            position: relative;
            transition: width 0.3s ease;
        }

        .btn-text .arrow::after {
            content: '';
            position: absolute;
            right: 0;
            top: -3px;
            width: 8px;
            height: 8px;
            border-top: 1px solid currentColor;
            border-right: 1px solid currentColor;
            transform: rotate(45deg);
        }

        .btn-text:hover .arrow {
            width: 60px;
        }

        /* Floating Elements */
        .floating-shapes {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
        }

        .shape {
            position: absolute;
            border: 1px solid rgba(201, 169, 98, 0.2);
            animation: float 10s ease-in-out infinite;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            top: 20%;
            right: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            bottom: 20%;
            right: 20%;
            animation-delay: -3s;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            top: 50%;
            right: 5%;
            animation-delay: -6s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            color: rgba(255,255,255,0.5);
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            z-index: 2;
        }

        .mouse {
            width: 26px;
            height: 40px;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 13px;
            position: relative;
        }

        .mouse-wheel {
            width: 2px;
            height: 6px;
            background: var(--accent);
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            animation: scrollWheel 2s ease-in-out infinite;
        }

        @keyframes scrollWheel {
            0%, 100% { top: 8px; opacity: 1; }
            50% { top: 18px; opacity: 0; }
        }

        /* Marquee Section */
        .marquee-section {
            padding: 4rem 0;
            background: var(--bg-dark);
            overflow: hidden;
            border-top: 1px solid rgba(255,255,255,0.1);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .marquee {
            display: flex;
            animation: marquee 30s linear infinite;
            white-space: nowrap;
        }

        .marquee-content {
            display: flex;
            gap: 4rem;
            padding-right: 4rem;
        }

        .marquee-item {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            color: rgba(255,255,255,0.3);
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .marquee-item::after {
            content: '•';
            color: var(--accent);
        }

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

        /* Section Styles */
        section {
            padding: 10rem 4rem;
            position: relative;
        }

        .section-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto 8rem;
            align-items: end;
        }

        .section-label {
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 1.5rem;
            display: block;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 400;
            line-height: 1;
            letter-spacing: -2px;
        }

        .section-description {
            color: var(--text-secondary);
            font-size: 1.125rem;
            line-height: 1.8;
            max-width: 500px;
        }

        /* Services - Horizontal Scroll */
        .services {
            background: var(--bg-primary);
            overflow: hidden;
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .services-scroll {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 2rem;
        }

        .services-scroll::-webkit-scrollbar {
            display: none;
        }

        .service-card {
            flex: 0 0 400px;
            background: var(--bg-secondary);
            padding: 4rem 3rem;
            scroll-snap-align: start;
            border: 1px solid var(--border);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        a.service-card {
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--accent);
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 0;
        }

        .service-card:hover::before {
            transform: translateY(0);
        }

        .service-card > * {
            position: relative;
            z-index: 1;
        }

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

        .service-card:hover .service-number,
        .service-card:hover .service-title,
        .service-card:hover .service-description {
            color: white;
        }

        .service-number {
            font-size: 0.875rem;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 2rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .service-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
            line-height: 1.1;
            transition: color 0.3s ease;
        }

        .service-description {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.8;
            transition: color 0.3s ease;
        }

        /* Legacy horizontal scroll only — do not target premium grid SVGs */
        .services-scroll .service-icon {
            position: absolute;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            border: 1px solid currentColor;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            opacity: 0;
            transform: scale(0);
            transition: all 0.4s ease;
        }

        .services-scroll .service-card:hover .service-icon {
            opacity: 1;
            transform: scale(1);
        }

        /* Work Section — editorial slider (no edge fades on images); autoplay in JS */
        .work {
            background: var(--bg-secondary);
            overflow-x: hidden;
        }

        .work-showcase {
            position: relative;
            width: 100%;
        }

        .work-showcase__inner {
            width: 100%;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            padding-top: 0.25rem;
        }

        .work-showcase__inner::before {
            content: '';
            display: block;
            width: 100%;
            height: 1px;
            margin-bottom: 1.25rem;
            background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 98, 0.45) 20%, rgba(201, 169, 98, 0.45) 80%, transparent 100%);
            opacity: 0.9;
        }

        .work-showcase__viewport {
            position: relative;
            overflow: hidden;
            outline: none;
            cursor: grab;
            touch-action: pan-y;
            border-radius: 4px;
        }

        .work-showcase__viewport:active {
            cursor: grabbing;
        }

        .work-showcase__track {
            display: flex;
            align-items: stretch;
            gap: 1rem;
            padding-bottom: 0.5rem;
            justify-content: flex-start;
            will-change: transform;
            transition: transform 0.85s cubic-bezier(0.33, 1, 0.32, 1);
        }

        @media (prefers-reduced-motion: reduce) {
            .work-showcase__track {
                transition-duration: 0.01ms;
            }
        }

        .work-slide.work-item {
            position: relative;
            flex: 0 0 auto;
            width: auto;
            min-width: 0;
            height: auto;
            aspect-ratio: 2 / 3;
            min-height: 320px;
            max-height: min(480px, 68vh);
            overflow: hidden;
            cursor: none;
            background: #0a0a0a;
            border-radius: 6px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow:
                0 2px 8px rgba(0, 0, 0, 0.04),
                0 16px 40px -12px rgba(0, 0, 0, 0.1);
            transition: opacity 0.5s ease, border-color 0.45s ease, box-shadow 0.5s ease, transform 0.5s ease;
            opacity: 0.97;
        }

        .work-slide.work-item.is-active {
            opacity: 1;
            border-color: rgba(201, 169, 98, 0.35);
            box-shadow:
                0 4px 16px rgba(0, 0, 0, 0.06),
                0 24px 56px -16px rgba(0, 0, 0, 0.14),
                0 0 0 1px rgba(201, 169, 98, 0.18);
            transform: translateY(-2px);
            z-index: 2;
        }

        .work-slide.work-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .work-slide.work-item:hover img {
            transform: scale(1.04);
        }

        .work-slide.work-item .work-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 38%, transparent 62%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: clamp(1.25rem, 3vw, 2rem);
            opacity: 0;
            transition: opacity 0.5s cubic-bezier(0.33, 1, 0.32, 1);
            pointer-events: none;
        }

        .work-slide.work-item.is-active .work-overlay,
        .work-slide.work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-slide.work-item .work-category {
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 0.5rem;
            transform: translateY(12px);
            transition: transform 0.45s ease;
        }

        .work-slide.work-item.is-active .work-category,
        .work-slide.work-item:hover .work-category {
            transform: translateY(0);
        }

        .work-slide.work-item .work-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.35rem, 2.6vw, 2rem);
            font-weight: 600;
            color: #c9a962;
            letter-spacing: -0.5px;
            transform: translateY(10px);
            transition: transform 0.45s ease 0.05s, color 0.35s ease;
        }

        .work-slide.work-item.is-active .work-title,
        .work-slide.work-item:hover .work-title {
            transform: translateY(0);
        }

        .work-slide.work-item:hover .work-title {
            color: #ffffff;
        }

        .work-showcase__toolbar {
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            padding: 2rem 0 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            width: 100%;
        }

        .work-showcase__counter {
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.9375rem;
            font-weight: 500;
            letter-spacing: 0.12em;
            color: var(--text-secondary);
        }

        .work-showcase__counter-current {
            color: var(--text-primary);
            font-variant-numeric: tabular-nums;
            font-size: 1.125rem;
        }

        .work-showcase__counter-sep {
            margin: 0 0.35rem;
            opacity: 0.45;
        }

        .work-showcase__dots {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            flex: 1;
            justify-content: center;
            min-width: 0;
            padding: 0.35rem 0.75rem;
            background: rgba(0, 0, 0, 0.02);
            border-radius: 100px;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        .work-showcase__dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            border: none;
            padding: 0;
            background: rgba(0, 0, 0, 0.12);
            cursor: pointer;
            transition: background 0.35s ease, transform 0.35s ease, width 0.35s ease;
        }

        .work-showcase__dot:hover {
            background: rgba(0, 0, 0, 0.22);
        }

        .work-showcase__dot.is-active {
            background: var(--accent);
            width: 22px;
            border-radius: 100px;
            box-shadow: 0 0 0 2px rgba(201, 169, 98, 0.2);
        }

        .work-showcase__arrows {
            display: flex;
            gap: 0.35rem;
        }

        .work-showcase__arrow {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: 1px solid rgba(0, 0, 0, 0.08);
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(8px);
            color: var(--text-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: border-color 0.35s ease, color 0.35s ease, background 0.35s ease, transform 0.2s ease, box-shadow 0.35s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .work-showcase__arrow:hover {
            border-color: rgba(201, 169, 98, 0.5);
            color: var(--accent-dark);
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        }

        .work-showcase__arrow:active {
            transform: scale(0.96);
        }

        .work-cursor {
            position: fixed;
            width: 100px;
            height: 100px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
            pointer-events: none;
            opacity: 0;
            transform: scale(0);
            transition: opacity 0.3s ease, transform 0.3s ease;
            z-index: 100;
        }

        .work-cursor.active {
            opacity: 1;
            transform: scale(1);
        }

        /* Stats Section */
        .stats {
            background: var(--bg-dark);
            color: white;
            padding: 8rem 4rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -2rem;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60px;
            background: rgba(255,255,255,0.1);
        }

        .stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 5rem;
            font-weight: 400;
            line-height: 1;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, white 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 0.875rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
        }

        /* Process - Timeline */
        .process {
            background: var(--bg-primary);
        }

        .process-timeline {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 1px;
            background: var(--border);
            transform: translateX(-50%);
        }

        .process-step {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 6rem;
            position: relative;
        }

        .process-step:last-child {
            margin-bottom: 0;
        }

        .process-step:nth-child(even) .process-content {
            grid-column: 2;
        }

        .process-step:nth-child(even) .process-visual {
            grid-column: 1;
            grid-row: 1;
            text-align: right;
        }

        .process-node {
            position: absolute;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--bg-primary);
            border: 2px solid var(--accent);
            border-radius: 50%;
            z-index: 2;
        }

        .process-node::after {
            content: '';
            position: absolute;
            inset: 4px;
            background: var(--accent);
            border-radius: 50%;
            transform: scale(0);
            transition: transform 0.3s ease;
        }

        .process-step:hover .process-node::after {
            transform: scale(1);
        }

        .process-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 6rem;
            font-weight: 300;
            color: var(--border);
            line-height: 1;
            margin-bottom: 1rem;
        }

        .process-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }

        .process-description {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.8;
        }

        /* Testimonials - Carousel */
        .testimonials {
            background: var(--bg-secondary);
            overflow: hidden;
        }

        .testimonials-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .testimonial-slide {
            flex: 0 0 100%;
            padding: 0 4rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .testimonial-image {
            aspect-ratio: 4/5;
            overflow: hidden;
            position: relative;
        }

        .testimonial-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-quote-mark {
            position: absolute;
            top: 2rem;
            left: 2rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 12rem;
            color: var(--accent);
            opacity: 0.2;
            line-height: 1;
        }

        .testimonial-content {
            padding: 2rem 0;
        }

        .testimonial-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            line-height: 1.3;
            margin-bottom: 3rem;
            letter-spacing: -1px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .author-line {
            width: 60px;
            height: 1px;
            background: var(--accent);
        }

        .author-name {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .author-role {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        .testimonial-nav {
            display: flex;
            gap: 1rem;
            margin-top: 4rem;
        }

        .nav-btn {
            width: 60px;
            height: 60px;
            border: 1px solid var(--border);
            background: transparent;
            cursor: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

        /* CTA Section */
        .cta {
            padding: 12rem 4rem;
            background: var(--bg-dark);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-bg {
            position: absolute;
            inset: 0;
            opacity: 0.1;
        }

        .cta-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 400;
            margin-bottom: 2rem;
            letter-spacing: -2px;
            line-height: 1.1;
        }

        .cta-title em {
            font-style: italic;
            color: var(--accent);
        }

        .cta-description {
            color: rgba(255,255,255,0.6);
            font-size: 1.25rem;
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem 4rem;
            background: var(--accent);
            color: white;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: white;
            transition: left 0.4s ease;
            z-index: 0;
        }

        .cta-btn:hover::before {
            left: 0;
        }

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

        .cta-btn:hover {
            color: var(--text-primary);
        }

        /* Footer */
        footer {
            padding: 6rem 4rem 3rem;
            background: var(--bg-primary);
            border-top: 1px solid var(--border);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 6rem;
            max-width: 1400px;
            margin: 0 auto 6rem;
        }

        .footer-brand .logo {
            display: inline-block;
            margin-bottom: 2rem;
            font-size: 2rem;
        }

        .footer-brand p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.8;
            max-width: 350px;
        }

        .footer-column h4 {
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-primary);
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 1rem;
        }

        .footer-column a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 1rem;
            position: relative;
            display: inline-block;
        }

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

        .footer-column a:hover {
            color: var(--text-primary);
        }

        .footer-column a:hover::after {
            width: 100%;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 3rem;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        .footer-social {
            display: flex;
            gap: 2rem;
        }

        .footer-social a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s ease;
        }

        .footer-social a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat-item:not(:last-child)::after {
                display: none;
            }

            .testimonial-slide {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .process-timeline::before {
                left: 0;
            }

            .process-step {
                grid-template-columns: 1fr;
                padding-left: 3rem;
            }

            .process-step:nth-child(even) .process-content,
            .process-step:nth-child(even) .process-visual {
                grid-column: 1;
            }

            .process-node {
                left: 0;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            body {
                cursor: auto;
            }

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

            nav {
                padding: 1.5rem 2rem;
            }

            .nav-links {
                display: none;
            }

            section {
                padding: 6rem 2rem;
            }

            .hero {
                padding: 6rem 2rem;
            }

            .hero-content {
                padding: 0;
            }

            .section-header {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .work-showcase__toolbar {
                flex-direction: column;
                align-items: stretch;
                padding-left: 0;
                padding-right: 0;
            }

            .work-showcase__dots {
                order: -1;
                justify-content: center;
            }

            .work-showcase__arrows {
                justify-content: center;
            }

            .work-slide.work-item {
                cursor: pointer;
                min-height: 260px;
                max-height: min(440px, 62vh);
            }

            .services-scroll {
                padding: 0 2rem;
            }

            .service-card {
                flex: 0 0 300px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

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

            .footer-bottom {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }
        }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .parallax {
            will-change: transform;
        }
    
        /* ============================================
           REDESIGNED SERVICES SECTION - PREMIUM GRID
           ============================================ */

        .services {
            background: linear-gradient(180deg, var(--bg-primary) 0%, #f5f5f5 100%);
            padding: 12rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border), transparent);
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .services-header {
            text-align: center;
            margin-bottom: 6rem;
        }

        .services-header .section-label {
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .services-header .section-title {
            font-size: clamp(3.5rem, 8vw, 6rem);
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .services-header .section-subtitle {
            color: var(--text-secondary);
            font-size: 1.25rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 300;
        }

        /* Premium Grid Layout */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
        }

        /* Service Cards */
        .service-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            padding: 3.5rem 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: none;
            display: flex;
            flex-direction: column;
            min-height: 420px;
        }

        .service-card:nth-child(1) { grid-column: span 1; }
        .service-card:nth-child(2) { grid-column: span 1; }
        .service-card:nth-child(3) { grid-column: span 1; }
        .service-card:nth-child(4) { grid-column: span 2; }
        .service-card:nth-child(5) { grid-column: span 1; }

        /* Card Background Effects */
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            opacity: 0;
            transform: none;
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 0;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }

        .service-card:hover::before {
            opacity: 1;
            transform: none;
        }
        .service-card:hover::after {
            opacity: 1;
            transform: scale(1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
            border-color: var(--accent);
        }

        /* Card Content */
        .service-content {
            position: relative;
            z-index: 2;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* Icon Container */
        .service-icon-wrap {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(201, 169, 98, 0.12) 0%, rgba(250, 250, 250, 0.9) 100%);
            border: 1px solid rgba(17, 17, 17, 0.08);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-icon-wrap::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover .service-icon-wrap {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            transform: scale(1.1) rotate(-5deg);
        }

        .service-card:hover .service-icon-wrap::before { opacity: 1; }

        .service-icon {
            width: 34px;
            height: 34px;
            stroke: var(--text-primary);
            stroke-width: 1.65;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            opacity: 1;
            transform: none;
            transition: stroke 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover .service-icon {
            stroke: white;
            transform: scale(1.08);
        }

        /* Service Number */
        .service-number {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 3px;
            color: var(--accent);
            margin-bottom: 1rem;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .service-number::before {
            content: '';
            width: 20px;
            height: 1px;
            background: currentColor;
            transition: width 0.4s ease;
        }

        .service-card:hover .service-number { color: rgba(255, 255, 255, 0.9); }
        .service-card:hover .service-number::before { width: 40px; }

        /* Service Title */
        .service-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.25rem;
            font-weight: 500;
            margin-bottom: 1.25rem;
            letter-spacing: -0.5px;
            line-height: 1.1;
            color: #c9a962;
            transition: color 0.4s ease;
        }

        .service-card:hover .service-title { color: white; }

        /* Service Description */
        .service-description {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            transition: color 0.4s ease;
            flex: 1;
        }

        .service-card:hover .service-description { color: rgba(255, 255, 255, 0.85); }

        /* Service Tags */
        .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: auto;
        }

        .service-tag {
            font-size: 0.75rem;
            padding: 0.4rem 1rem;
            background: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: 20px;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-tag {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.9);
        }

        /* Arrow Link */
        .service-link {
            position: absolute;
            bottom: 2.5rem;
            right: 2.5rem;
            width: 50px;
            height: 50px;
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 3;
            background: var(--bg-secondary);
        }

        .service-link svg {
            width: 20px;
            height: 20px;
            stroke: var(--text-primary);
            stroke-width: 2;
            fill: none;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-link {
            background: white;
            border-color: white;
            transform: translateX(5px);
        }

        .service-card:hover .service-link svg {
            stroke: var(--accent);
            transform: translateX(2px);
        }

        /* Featured Card (Wide) */
        .service-card.featured {
            background: linear-gradient(135deg, var(--bg-secondary) 0%, #f8f8f8 100%);
        }

        .service-card.featured::before {
            background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
        }

        .service-card.featured .service-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .service-card.featured .service-main {
            display: flex;
            flex-direction: column;
        }

        .service-card.featured .service-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .service-visual-inner {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.05) 100%);
            border: 1px solid rgba(201, 169, 98, 0.2);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card.featured:hover .service-visual-inner {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            transform: scale(1.05) rotate(3deg);
        }

        .service-visual-inner .service-visual-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: inherit;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card.featured:hover .service-visual-inner .service-visual-img {
            transform: scale(1.06);
        }

        /* Decorative Elements */
        .services-decoration {
            position: absolute;
            top: 10%;
            right: 5%;
            width: 300px;
            height: 300px;
            border: 1px solid var(--border);
            border-radius: 50%;
            opacity: 0.5;
            pointer-events: none;
            animation: slowRotate 30s linear infinite;
        }

        .services-decoration-2 {
            position: absolute;
            bottom: 10%;
            left: 5%;
            width: 200px;
            height: 200px;
            border: 1px solid var(--border);
            border-radius: 50%;
            opacity: 0.3;
            pointer-events: none;
            animation: slowRotate 25s linear infinite reverse;
        }

        @keyframes slowRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Responsive Services Grid */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .service-card:nth-child(4) { grid-column: span 2; }

            .service-card.featured .service-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .service-visual-inner {
                width: 150px;
                height: 150px;
            }
        }

        @media (max-width: 768px) {
            .services {
                padding: 6rem 2rem;
            }

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

            .service-card,
            .service-card:nth-child(4) {
                grid-column: span 1;
                min-height: auto;
            }

            .service-card.featured .service-content {
                grid-template-columns: 1fr;
            }

            .service-title {
                font-size: 1.75rem;
            }
        }