﻿/* CSS Resets & Base Variables */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Palette extracted strictly from the Design System */
            --color-black: #0a0a0a;         /* Base / rgb(10, 10, 10) */
            --color-slate-blue: #333F48;    /* Dark accent / rgb(51, 63, 72) */
            --color-warm-grey: #7E7F74;     /* Neutral accent / rgb(126, 127, 116) */
            --color-muted-brown: #A18269;   /* Highlight / rgb(161, 130, 105) */
            --color-accent: #A18269;        /* Primary accent per brand spec */
            --color-accent-hover: #8F725A;  /* Hover accent / slightly darker */
            --color-light-grey: #CBCBC4;    /* Secondary text / rgb(203, 203, 196) */
            --color-cream: #FEFEEA;         /* Primary text / rgb(254, 254, 234) */
            
            --font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        }

        html {
            scroll-behavior: smooth;
            background-color: var(--color-black);
        }

        body {
            width: 100%;
            font-family: var(--font-family);
            background-color: var(--color-black);
            overflow-x: hidden;
            color: var(--color-cream);
            -webkit-font-smoothing: antialiased;
        }

        /* Hero Layout Constraints */
        .hero-section {
            position: relative;
            width: 100vw;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        /* Ambient Video Background */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            transform: scale(1.02); /* Prevents raw edges */
        }

        .hero-bg video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Allowing the overlay color below to dictate the discretion */
        }

        /* Color Overlay for Readability */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            /* The exact layer color requested, ensuring the video remains discreetly visible */
            background-color: #1e272e;
            opacity: 0.85; 
        }

        /* Typography Composition Container */
        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 1100px;
            padding: 0 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Massive Neo-Grotesk Title */
        .hero-title {
            font-size: clamp(49px, 7.5vw, 99px);
            font-weight: 600;
            line-height: 0.95;
            letter-spacing: -0.02em;
            color: var(--color-cream);
            margin-bottom: 25px;
            
            /* Subtle silver gradient text mapping */
            background: linear-gradient(170deg, var(--color-cream) 30%, var(--color-light-grey) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            
            /* Initial Animation State */
            opacity: 0;
            transform: translateY(22px) scale(0.985);
            animation: fadeUp 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
        }

        /* Editorial Subtitle */
        .hero-subtitle {
            font-size: clamp(15px, 2.3vw, 20px);
            font-weight: 400;
            color: var(--color-light-grey);
            max-width: 610px;
            line-height: 1.4;
            letter-spacing: 0.02em;
            
            /* Initial Animation State */
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.98s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
        }

        /* Hero CTA Button */
        .hero-cta {
            margin-top: 42px;
            padding: 17px 42px;
            border-radius: 100px;
            border: 1px solid var(--color-accent);
            background: var(--color-accent);
            color: var(--color-cream);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 
                        0 4px 20px rgba(161, 130, 105, 0.2);
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                        box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                        border-color 0.4s ease, 
                        background 0.4s ease;
            
            /* Initial Animation State */
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.98s cubic-bezier(0.22, 1, 0.36, 1) 1.18s forwards;
            
            will-change: transform;
        }

        .hero-cta:hover {
            background: var(--color-accent);
            border-color: var(--color-accent);
            transform: translateY(-2px) scale(1.03); /* Minimal scale refined */
            box-shadow: 0 8px 30px rgba(161, 130, 105, 0.3);
        }

        .hero-cta:active {
            transform: translateY(1px) scale(0.98);
        }

        /* Sophisticated Button Text Slide System */
        .btn-text-wrapper {
            display: flex;
            flex-direction: column;
            height: 1.4em;
            overflow: hidden;
            position: relative;
            z-index: 2;
            pointer-events: none;
        }

        .btn-text {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
            white-space: nowrap;
        }

        /* Hover slide effect for all primary CTAs */
        .nav-cta:hover .btn-text, .hero-cta:hover .btn-text {
            transform: translateY(-100%);
        }

        /* Shared Text Loop Animation */
        .btn-text-wrapper {
            position: relative;
            display: block;
            overflow: hidden;
            height: 1.2em; /* Ensure single line masking */
            z-index: 2;
        }

        .btn-text {
            display: block;
            line-height: 1.2em;
            transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1); /* Elegant In-Out Easing */
        }

        .hero-cta:hover .btn-text,
        .nav-cta:hover .btn-text {
            transform: translateY(-100%);
        }

        .hero-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            background: radial-gradient(
                circle 80px at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(255, 255, 255, 0.08), 
                transparent 100%
            );
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hero-cta:hover::before {
            opacity: 1;
        }

        .hero-cta:hover {
            background: var(--color-accent-hover);
            border-color: var(--color-accent-hover);
            transform: translateY(-3px) scale(1.02);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 
                        0 12px 30px rgba(161, 130, 105, 0.3);
        }

        .hero-cta:active {
            transform: translateY(1px) scale(0.98);
            background: var(--color-accent);
            border-color: var(--color-accent);
            box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.15), 
                        0 2px 8px rgba(0, 0, 0, 0.05);
            transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), 
                        box-shadow 0.15s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Minimal Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            
            /* Initial Animation State */
            opacity: 0;
            animation: fadeUp 0.62s cubic-bezier(0.22, 1, 0.36, 1) 1.5s forwards;
        }

        .scroll-line {
            width: 1px;
            height: 50px;
            background: rgba(203, 203, 196, 0.15); /* light grey low opacity */
            position: relative;
            overflow: hidden;
        }

        .scroll-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 15px;
            background: var(--color-accent);
            animation: scrollDown 2.2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
        }

        /* ================= Header Navigation ================= */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            
            /* Clean Editorial Base (No Glass/Blur) */
            background-color: transparent;
            
            /* Initial Animation State */
            opacity: 0;
            transform: translateY(-20px);
            animation: fadeDown 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
        }

        .main-header.scrolled {
            /* Branding: same palette as the background, softened slightly to differentiate the layer */
            background: linear-gradient(150deg, rgba(30,39,46,0.96) 0%, rgba(51,63,72,0.96) 100%);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 4px 24px rgba(0,0,0,0.15);
        }

        .header-container {
            max-width: 1800px; /* Expansive widescreen reach */
            margin: 0 auto;
            padding: 30px 5vw; /* Generous proportional padding */
            display: flex;
            align-items: center;
            justify-content: space-between; /* Pin endpoints to sides */
            transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .main-header.scrolled .header-container {
            padding: 17px 5vw;
        }

        /* Logo */
        .logo {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            height: 27px;
            z-index: 10;
            flex: 1; /* Left third */
        }

        .logo img {
            height: 100%;
            width: auto;
            /* Forcing white on dark bg just in case the raw svg is black */
            filter: brightness(0) invert(1);
        }

        /* Expansively Pushed Right-Side Content */
        .header-right {
            display: flex;
            align-items: center;
            justify-content: flex-end; /* Pin to far right boundary */
            z-index: 10;
            flex: 1; /* Right third */
        }

        /* Horizontal Widescreen Navigation Menu */
        .nav-menu {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px; /* Elegant spatial pacing */
            z-index: 5;
            flex: 1; /* Exact center third */
        }

        .nav-link {
            text-decoration: none;
            color: var(--color-light-grey);
            font-size: 13px; /* Moderated presence */
            font-weight: 500; /* Medium weight */
            letter-spacing: 0.02em;
            transition: color 0.4s ease, text-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .nav-link:hover {
            color: var(--color-accent);
            /* Simulates a luxurious weight-up animation without catastrophic DOM layout jitter */
            text-shadow: 0.6px 0 0 var(--color-accent), -0.6px 0 0 var(--color-accent);
            transform: translateY(-2px);
        }

        /* Bilingual Language Switch */
        .lang-switch {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-right: 36px;
        }

        .lang-btn {
            background: none;
            border: none;
            color: var(--color-light-grey);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: color 0.3s ease;
            font-family: inherit;
            padding: 0;
            user-select: none;
        }

        .lang-btn:hover {
            color: var(--color-cream);
        }

        .lang-btn.active {
            color: var(--color-cream);
            font-weight: 700;
        }

        .lang-sep {
            color: rgba(203, 203, 196, 0.2);
            font-size: 10px;
            user-select: none;
        }

        /* CTA Button */
        .nav-cta {
            padding: 12px 28px;
            border-radius: 100px;
            border: 1px solid var(--color-accent);
            background: var(--color-accent);
            color: var(--color-cream);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            
            /* High-end glass depth and transition timings */
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 
                        0 2px 10px rgba(161, 130, 105, 0.2);
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                        box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                        border-color 0.35s ease, 
                        background 0.35s ease;
        }

        /* Cursor-following internal reflection */
        .nav-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            background: radial-gradient(
                circle 45px at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(255, 255, 255, 0.08), 
                transparent 100%
            );
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav-cta:hover::before {
            opacity: 1;
        }

        /* Hover Elevation & Tension */
        .nav-cta:hover {
            background: var(--color-accent-hover);
            border-color: var(--color-accent-hover);
            transform: translateY(-2px) scale(1.03);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 
                        0 8px 24px rgba(161, 130, 105, 0.3);
        }

        /* Tactile Press State */
        .nav-cta:active {
            transform: translateY(1px) scale(0.98);
            background: var(--color-accent);
            border-color: var(--color-accent);
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2), 
                        0 2px 8px rgba(0, 0, 0, 0.05);
            transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), 
                        box-shadow 0.15s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Form-Factor Adjustments for Nav */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            .lang-switch {
                display: none; /* Temporarily hide language switch on mobile nav-bar */
            }
            .header-container {
                padding: 24px 24px;
            }
            .main-header.scrolled .header-container {
                padding: 16px 24px;
            }
        }

        /* --- Keyframes --- */
        @keyframes fadeDown {
            0% {
                opacity: 0;
                transform: translateY(-20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(22px) scale(0.985);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes scrollDown {
            0% {
                transform: translateY(-100%);
            }
            50% {
                transform: translateY(350%);
            }
            100% {
                transform: translateY(350%);
            }
        }

        /* ================= Expansive Editorial Portfolio Section ================= */
        .projects-section {
            padding: 180px 0 0 0; /* Huge airy padding top */
            background: linear-gradient(180deg, #1e272e 0%, #29343d 30%, #333F48 100%);
            color: var(--color-cream);
            position: relative;
            z-index: 10;
        }

        .projects-header {
            display: flex;
            flex-direction: column;
            align-items: flex-start; /* Original refined left alignment */
            text-align: left;
            gap: 24px;
            width: 100%;
            max-width: 1800px; /* Expansive horizontal boundaries */
            margin: 0 auto 120px auto; /* Connects smoothly downward */
            padding: 0 5vw;
        }

        .projects-title {
            font-size: clamp(40px, 5.5vw, 85px); /* Massive but comfortably horizontal */
            font-weight: 500;
            line-height: 1.05;
            letter-spacing: -0.03em;
            color: var(--color-cream);
            max-width: 1400px; /* Unlimited breathing room across the screen width */
        }

        .projects-desc {
            font-size: clamp(18px, 2.2vw, 24px);
            max-width: 800px;
            line-height: 1.5;
            color: var(--color-light-grey);
            font-weight: 300;
            letter-spacing: 0.01em;
        }

        /* ================= Editorial Full-Width Split Showcase ================= */
        .editorial-portfolio-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2px; /* Minimal high-end separation */
            width: 100vw;
            max-width: 100%;
            margin: 0 auto;
            background-color: var(--color-black); /* Acts as the minimal divider line natively */
        }

        .editorial-proj {
            position: relative;
            width: 100%;
            height: clamp(500px, 75vh, 900px); /* Massive, immersive vertical boundaries */
            overflow: hidden;
            display: block;
            background-color: var(--color-black);
            text-decoration: none;
            cursor: pointer;
            /* Will be completely driven by JS Emergence Parallax */
            opacity: 0;
            transform: translateY(60px);
        }

        .editorial-proj img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
            filter: brightness(0.9);
            display: block;
            will-change: transform;
        }

        .proj-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.8) 100%);
            opacity: 0.6;
            transition: opacity 0.8s ease;
            z-index: 1;
            pointer-events: none;
        }

        .proj-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 50px 4vw;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 2;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
        }

        /* Pure Editorial Ambient Interactions */
        .editorial-proj:hover img {
            transform: scale(1.05); /* Soft, unboxed extension */
            filter: brightness(1.05);
        }

        .editorial-proj:hover .proj-overlay {
            opacity: 1; /* Darkens gradient slightly to pop typography */
        }

        .editorial-proj:hover .proj-info {
            opacity: 1;
            transform: translateY(0);
        }

        .proj-title {
            font-size: clamp(28px, 3.5vw, 48px);
            font-weight: 500;
            color: var(--color-cream);
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .proj-category {
            font-size: 13px;
            font-weight: 500;
            color: var(--color-light-grey);
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }

        .proj-context {
            font-size: 12px;
            font-weight: 400;
            color: rgba(203, 203, 196, 0.88);
            letter-spacing: 0.02em;
            line-height: 1.35;
        }

        @media (max-width: 900px) {
            .nav-menu {
                display: none; /* Hide gracefully on tight screens before hamburger injection */
            }
            .header-container {
                padding: 20px 24px;
            }
            .editorial-portfolio-grid {
                grid-template-columns: 1fr;
            }
            .proj-info {
                opacity: 1;
                transform: translateY(0);
                padding: 40px;
            }
            .proj-overlay {
                opacity: 0.85;
            }
        }

        /* Section CTA */
        .projects-cta-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 64px;
            padding-bottom: 48px;
        }

        .link-cta {
            font-size: 12px;
            font-weight: 500;
            color: var(--color-cream);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            text-decoration: none;
            position: relative;
            padding-bottom: 8px;
            transition: opacity 0.3s ease;
        }

        .link-cta::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: rgba(203, 203, 196, 0.3);
            transform: scaleX(0.4);
            transform-origin: center;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
        }

        .link-cta:hover {
            opacity: 0.8;
        }

        .link-cta:hover::after {
            transform: scaleX(1);
            background: var(--color-accent);
        }

        /* ================= Third Fold: About / Narrative ================= */
        .about-section {
            width: 100vw;
            max-width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1E272E 0%, #333F48 100%);
            padding: 14vh 0;
        }

        .about-container {
            width: 100%;
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 5vw;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: start;
            opacity: 0;
            transform: translateY(80px);
        }

        .about-headline {
            font-size: clamp(34px, 4.5vw, 68px);
            font-weight: 500;
            line-height: 1.05;
            letter-spacing: -0.02em;
            color: var(--color-cream);
            position: sticky;
            top: 15vh;
        }

        .about-body {
            display: flex;
            flex-direction: column;
            gap: 40px;
            padding-top: 12px;
        }

        .about-text {
            font-size: clamp(16px, 1.6vw, 21px);
            font-weight: 300;
            line-height: 1.6;
            color: var(--color-light-grey);
            max-width: 560px;
        }

        .about-signature {
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--color-warm-grey);
            margin-top: 20px;
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 16px;
        }

        .about-signature::before {
            content: '';
            display: block;
            width: 40px;
            height: 1px;
            background-color: var(--color-accent);
            opacity: 0.6;
        }

        /* Credibility Metrics */
        .about-metrics {
            display: flex;
            gap: 72px;
            margin-top: 56px;
            padding-top: 48px;
            border-top: 1px solid rgba(254, 254, 234, 0.08);
        }

        .metric-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .metric-number {
            font-size: clamp(42px, 4vw, 64px);
            font-weight: 500;
            letter-spacing: -0.03em;
            line-height: 1;
            color: var(--color-cream);
            display: flex;
            align-items: baseline;
        }

        .metric-number .metric-plus {
            font-size: 0.6em;
            color: var(--color-accent);
            margin-left: 2px;
            font-weight: 400;
        }

        .metric-label {
            font-size: 13px;
            font-weight: 400;
            color: var(--color-warm-grey);
            letter-spacing: 0.02em;
            line-height: 1.4;
        }

        /* ================= Fourth Fold: Premium Services ================= */
        .services-section {
            width: 100vw;
            max-width: 100%;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            background: linear-gradient(135deg, var(--color-warm-grey) 0%, #727368 100%);
            padding: 14vh 0 14vh 0;
            color: var(--color-cream);
        }

        .srv-container {
            width: 100%;
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 5vw;
            display: grid;
            grid-template-columns: 1fr 1.6fr;
            gap: 80px;
            align-items: start;
            opacity: 0;
            transform: translateY(80px);
        }

        .srv-intro {
            position: sticky;
            top: 14vh;
        }

        .srv-title {
            font-size: clamp(34px, 4.5vw, 68px);
            font-weight: 500;
            line-height: 1.05;
            letter-spacing: -0.02em;
            color: var(--color-cream);
            margin-bottom: 24px;
        }

        .srv-subtitle {
            font-size: clamp(15px, 1.4vw, 19px);
            font-weight: 300;
            line-height: 1.6;
            color: rgba(254, 254, 234, 0.8);
            max-width: 400px;
        }

        /* Right-side vertical list */
        .srv-list {
            display: flex;
            flex-direction: column;
        }

        /* Each service row ï¿½?" separated by a top border line */
        .srv-item {
            display: grid;
            grid-template-columns: 56px 1fr 1.4fr;
            gap: 0 40px;
            align-items: start;
            padding: 40px 0;
            border-top: 1px solid rgba(254, 254, 234, 0.15);
            transition: border-color 0.4s ease;
        }

        .srv-item:last-child {
            border-bottom: 1px solid rgba(254, 254, 234, 0.15);
        }

        .srv-item:hover {
            border-color: var(--color-accent);
        }

        .srv-num {
            font-size: 13px;
            font-weight: 600;
            color: rgba(254, 254, 234, 0.4);
            letter-spacing: 0.12em;
            padding-top: 4px;
            transition: color 0.4s ease;
        }

        .srv-item:hover .srv-num {
            color: var(--color-accent);
        }

        .srv-name {
            font-size: clamp(18px, 1.6vw, 26px);
            font-weight: 500;
            letter-spacing: -0.01em;
            line-height: 1.2;
            color: var(--color-cream);
            transition: color 0.4s ease;
        }

        .srv-item:hover .srv-name {
            color: var(--color-accent);
        }

        .srv-desc {
            font-size: 15px;
            font-weight: 300;
            line-height: 1.65;
            color: rgba(254, 254, 234, 0.7);
        }

        .srv-deliverables {
            grid-column: 3;
            margin-top: 10px;
            font-size: 14px;
            font-weight: 400;
            line-height: 1.58;
            color: rgba(254, 254, 234, 0.92);
            letter-spacing: 0.008em;
        }

        /* ================= Process Section ï¿½?" Cinematic Stage ================= */
        .process-section {
            width: 100vw;
            max-width: 100%;
            background-color: #1E272E;
            background-image: linear-gradient(160deg, #1E272E 0%, #333F48 100%);
            padding: 14vh 0 14vh;
            position: relative;
            overflow: hidden;
        }

        /* Ambient glow behind content */
        .process-glow {
            position: absolute;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(
                ellipse at center,
                rgba(161,130,105,0.09) 0%,
                rgba(161,130,105,0.04) 34%,
                rgba(161,130,105,0.018) 56%,
                transparent 76%
            );
            top: 40%;
            left: 30%;
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.72;
            filter: blur(0.3px);
            pointer-events: none;
            animation: glowDrift 18s cubic-bezier(0.22, 1, 0.36, 1) infinite;
            will-change: transform, opacity;
        }

        .process-glow::before {
            content: '';
            position: absolute;
            inset: 12%;
            border-radius: 50%;
            border: 1px solid rgba(161,130,105,0.08);
            opacity: 0.28;
            animation: glowRing 14s ease-in-out infinite;
        }

        @keyframes glowDrift {
            0% {
                opacity: 0.62;
                transform: translate(-50%, -50%) rotate(0deg) scale(1);
            }
            35% {
                opacity: 0.78;
                transform: translate(-48.8%, -51.4%) rotate(8deg) scale(1.04);
            }
            70% {
                opacity: 0.66;
                transform: translate(-51.2%, -49.2%) rotate(-6deg) scale(0.99);
            }
            100% {
                opacity: 0.62;
                transform: translate(-50%, -50%) rotate(0deg) scale(1);
            }
        }

        @keyframes glowRing {
            0%, 100% {
                opacity: 0.2;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(1.06);
            }
        }

        .process-container {
            width: 100%;
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 5vw;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(60px);
        }

        /* Small editorial label */
        .process-label {
            font-size: 11px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--color-warm-grey);
            margin-bottom: 10vh;
            display: inline-flex;
            align-items: center;
            gap: 16px;
        }

        .process-label::before {
            content: '';
            width: 32px;
            height: 1px;
            background: var(--color-accent);
            opacity: 0.5;
        }

        /* Stage ï¿½?" where the magic happens */
        .process-stage {
            position: relative;
            min-height: 36vh;
            display: flex;
            align-items: center;
        }

        /* Massive background number */
        .process-big-num {
            font-size: clamp(200px, 26vw, 420px);
            font-weight: 600;
            color: rgba(254,254,234,0.025);
            line-height: 0.8;
            letter-spacing: -0.04em;
            position: absolute;
            left: -2vw;
            top: 50%;
            transform: translateY(-50%);
            user-select: none;
            pointer-events: none;
            transition: opacity 0.8s ease-in-out, filter 0.8s ease-in-out;
            filter: blur(0px);
        }

        .process-big-num.morphing {
            opacity: 0;
            filter: blur(6px);
        }

        /* Content floating over the number */
        .process-content {
            position: relative;
            z-index: 2;
            padding-left: 8vw;
        }

        .process-active-title {
            font-size: clamp(42px, 5.5vw, 88px);
            font-weight: 500;
            letter-spacing: -0.025em;
            line-height: 1.0;
            color: var(--color-cream);
            margin-bottom: 28px;
        }

        .process-active-title,
        .process-active-desc {
            transition: opacity 0.6s ease-in-out,
                        transform 1.0s cubic-bezier(0.16, 1, 0.3, 1),
                        filter 0.7s ease-in-out;
            filter: blur(0px);
        }

        .process-active-title.exit {
            opacity: 0;
            transform: translateY(-16px);
            filter: blur(4px);
        }

        .process-active-title.enter {
            opacity: 0;
            transform: translateY(24px);
            filter: blur(5px);
        }

        .process-active-desc {
            font-size: clamp(16px, 1.6vw, 22px);
            font-weight: 300;
            line-height: 1.6;
            color: var(--color-light-grey);
            max-width: 520px;
        }

        .process-active-desc.exit {
            opacity: 0;
            transform: translateY(-10px);
            filter: blur(3px);
        }

        .process-active-desc.enter {
            opacity: 0;
            transform: translateY(18px);
            filter: blur(4px);
        }

        /* Bottom timeline navigation */
        .process-nav {
            display: flex;
            gap: 8px;
            margin-top: 12vh;
        }

        .pnav-item {
            flex: 1;
            max-width: 280px;
            cursor: pointer;
            padding: 20px 0 0;
            background: none;
            border: none;
            text-align: left;
            position: relative;
        }

        /* Progress track */
        .pnav-track {
            width: 100%;
            height: 1px;
            background: rgba(254,254,234,0.1);
            position: relative;
            overflow: hidden;
            margin-bottom: 16px;
        }

        .pnav-fill {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0%;
            background: var(--color-accent);
            will-change: width;
        }

        .pnav-item.active .pnav-fill {
            animation: fillBar 5s linear forwards;
        }

        @keyframes fillBar {
            from { width: 0%; }
            to { width: 100%; }
        }

        /* Nav labels */
        .pnav-num {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.14em;
            color: rgba(254,254,234,0.2);
            margin-bottom: 6px;
            display: block;
            transition: color 0.4s ease;
        }

        .pnav-name {
            font-size: 14px;
            font-weight: 500;
            letter-spacing: -0.01em;
            color: rgba(254,254,234,0.3);
            display: block;
            transition: color 0.4s ease;
        }

        .pnav-item.active .pnav-num { color: var(--color-accent); }
        .pnav-item.active .pnav-name { color: var(--color-cream); }
        .pnav-item:hover .pnav-num { color: var(--color-accent); opacity: 0.7; }
        .pnav-item:hover .pnav-name { color: var(--color-light-grey); }

        /* ================= Final CTA Section ================= */
        .cta-section {
            width: 100vw;
            max-width: 100%;
            background: linear-gradient(160deg, #29343d 0%, var(--color-slate-blue) 100%);
            padding: 14vh 0 14vh;
            position: relative;
            overflow: hidden;
        }

        .cta-inner {
            width: 100%;
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 5vw;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 64px;
            opacity: 0;
            transform: translateY(50px);
        }

        /* Separator */
        .cta-rule {
            width: 60px;
            height: 1px;
            background: var(--color-accent);
            opacity: 0.4;
        }

        /* Drift wrapper ï¿½?" clips and fades edges */
        .cta-drift-wrap {
            width: 100%;
            overflow: hidden;
            -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
        }

        /* Scrolling strip */
        .cta-drift-strip {
            display: flex;
            align-items: center;
            gap: 0.6em;
            width: max-content;
            animation: ctaDrift 16s linear infinite;
            will-change: transform;
        }

        .cta-drift-text {
            font-size: clamp(38px, 5.8vw, 78px);
            font-weight: 500;
            letter-spacing: -0.025em;
            line-height: 1.2;
            padding-bottom: 0.05em;
            color: var(--color-cream);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .cta-drift-sep {
            font-size: clamp(32px, 4.5vw, 64px);
            color: var(--color-accent);
            opacity: 0.35;
            flex-shrink: 0;
            user-select: none;
        }

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

        /* CTA button container */
        .cta-button-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cta-btn {
            padding: 18px 48px;
            border-radius: 100px;
            border: 1px solid var(--color-accent);
            background: var(--color-accent);
            color: var(--color-cream);
            font-family: var(--font-family);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            text-decoration: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.15),
                        0 4px 20px rgba(161,130,105,0.2);
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                        box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                        background 0.4s ease,
                        border-color 0.4s ease;
        }

        .cta-btn:hover {
            background: var(--color-accent-hover);
            border-color: var(--color-accent-hover);
            transform: translateY(-3px) scale(1.02);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.15),
                        0 12px 30px rgba(161,130,105,0.3);
        }

        .cta-btn:active {
            transform: translateY(1px) scale(0.98);
        }

        .cta-trust-note {
            margin-top: 12px;
            font-size: 13px;
            line-height: 1.45;
            letter-spacing: 0.02em;
            color: rgba(203, 203, 196, 0.86);
            text-align: center;
        }

        /* ================= Footer ================= */
        .site-footer {
            width: 100vw;
            max-width: 100%;
            background: var(--color-slate-blue);
        }

        .footer-bar {
            width: 100%;
            max-width: 1800px;
            margin: 0 auto;
            padding: 40px 5vw;
            display: flex;
            justify-content: space-between;
            align-items: center;
            opacity: 0;
            transform: translateY(20px);
        }

        .footer-logo {
            display: inline-flex;
            align-items: center;
        }

        .footer-logo img {
            height: 31px;
            width: auto;
            opacity: 0.6;
            transition: opacity 0.4s ease;
        }

        .footer-logo:hover img {
            opacity: 1;
        }

        .footer-nav {
            display: flex;
            align-items: center;
            gap: 36px;
        }

        .footer-link {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--color-warm-grey);
            text-decoration: none;
            position: relative;
            padding: 4px 0;
            transition: color 0.4s ease;
        }

        .footer-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--color-accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .footer-link:hover {
            color: var(--color-cream);
        }

        .footer-link:hover::after {
            transform: scaleX(1);
        }

        .footer-top-btn {
            font-size: 19px;
            color: var(--color-warm-grey);
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px 0;
            line-height: 1;
            font-family: var(--font-family);
            transition: color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .footer-top-btn:hover {
            color: var(--color-cream);
            transform: translateY(-3px);
        }

        /* Form-Factor Adjustments */
        @media (max-width: 768px) {
            .hero-title {
                margin-bottom: 24px;
                letter-spacing: -0.02em;
            }
            .hero-subtitle {
                font-size: 16px;
                 padding: 0 10px;
            }
            /* Projects Showcase Mobile */
            .projects-section {
                padding: 100px 0 40px 0;
            }
            .projects-header {
                padding: 0 24px;
                margin-bottom: 40px;
                gap: 16px;
            }
            .projects-title {
                font-size: clamp(28px, 8vw, 40px);
            }
            .editorial-portfolio-grid {
                grid-template-columns: 1fr;
            }
            .editorial-proj {
                height: 75vh;
            }
            .proj-info {
                padding: 40px 6vw;
            }
            /* About Mobile */
            .about-container {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .about-headline {
                position: relative;
                top: 0;
            }
            .about-metrics {
                gap: 48px;
                margin-top: 40px;
                padding-top: 36px;
            }
            
            /* Premium Services Mobile */
            .srv-container {
                grid-template-columns: 1fr;
                gap: 56px;
            }
            .srv-intro {
                position: relative;
                top: 0;
            }
            .srv-item {
                grid-template-columns: 40px 1fr;
                grid-template-rows: auto auto;
                gap: 8px 20px;
            }
            .srv-desc {
                grid-column: 2 / -1;
                margin-top: 8px;
            }
            .srv-deliverables {
                grid-column: 2 / -1;
                margin-top: 6px;
            }

            /* Process Mobile */
            .process-stage {
                min-height: 28vh;
            }
            .process-big-num {
                font-size: clamp(140px, 35vw, 240px);
                left: -4vw;
            }
            .process-content {
                padding-left: 4vw;
            }
            .process-active-title {
                font-size: clamp(36px, 9vw, 56px);
            }
            .process-nav {
                gap: 4px;
            }
            .pnav-name {
                font-size: 12px;
            }
            .process-glow {
                width: 400px;
                height: 400px;
            }

            /* CTA Mobile */
            .cta-drift-text {
                font-size: clamp(32px, 8vw, 48px);
                white-space: normal;
            }
            .cta-inner {
                gap: 48px;
            }
            .cta-btn {
                padding: 16px 40px;
            }

            .cta-trust-note {
                margin-top: 10px;
                font-size: 12px;
            }

            /* Footer Mobile */
            .footer-bar {
                padding: 32px 5vw;
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            .footer-nav {
                width: 100%;
                gap: 16px 20px;
                flex-wrap: wrap;
                justify-content: flex-start;
            }
            .footer-logo img {
                height: 26px;
            }
            .footer-link {
                font-size: 12px;
                letter-spacing: 0.1em;
            }

        }







