        /* Design Tokens */
        :root {
            /* Colors - Precise Application */
            --sand: #F4EDE3;
            --navy: #1E3A5F;
            --terra: #D47B5F;
            --sage: #8FA998;
            --sienna: #A0563A;
            --offblack: #2C2C2C;
            --gray-700: #6B6B6B;
            --gray-300: #E8E8E8;
            --white: #FFFFFF;
            
            /* Typography */
            --font-display: 'Crimson Pro', Georgia, serif;
            --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            
            /* Sizing */
            --radius: 12px;
            --radius-sm: 8px;
            --max-width: 1120px;
            
            /* Spacing - Refined Rhythm */
            --space-xs: 8px;
            --space-sm: 16px;
            --space-md: 24px;
            --space-lg: 32px;
            --space-xl: 48px;
            --space-2xl: 64px;
            --space-3xl: 96px;
            --space-4xl: 128px;
            
            /* Animation - Precise Timing */
            --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
            --t-quick: 140ms;
            --t-medium: 180ms;
            --t-smooth: 220ms;
            --t-page: 320ms;
            
            /* Shadows - Subtle Elevation */
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
        }

        /* Reduced motion preferences */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

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

        /* Base Typography - Disciplined */
        body {
            font-family: var(--font-body);
            font-size: 18px;
            line-height: 1.6;
            color: var(--navy);
            background-color: var(--sand);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        /* Display Typography - Refined */
        h1 {
            font-family: var(--font-display);
            font-size: clamp(56px, 5vw, 64px);
            line-height: 1.25;
            letter-spacing: -0.01em;
            color: var(--navy);
            margin-bottom: var(--space-xl);
            font-weight: 600;
        }

        h2 {
            font-family: var(--font-display);
            font-size: clamp(42px, 5vw, 56px);
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: var(--navy);
            margin-bottom: var(--space-xl);
            font-weight: 700;
        }

        .overline {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--gray-700);
            margin-bottom: var(--space-sm);
        }

        p {
            max-width: 65ch;
            margin-bottom: var(--space-md);
            color: var(--navy);
        }

        /* Container */
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }

        /* Skip to content (Accessibility) */
        .skip-to-content {
            position: absolute;
            left: -9999px;
            top: var(--space-sm);
            z-index: 999;
            padding: var(--space-sm) var(--space-md);
            background-color: var(--navy);
            color: var(--white);
            text-decoration: none;
            border-radius: var(--radius-sm);
        }

        .skip-to-content:focus {
            left: var(--space-sm);
        }

        /* Navigation - Refined */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: var(--space-md) 0;
            transition: all var(--t-medium) var(--ease-out);
        }

        nav.scrolled {
            background: rgba(244, 237, 227, 0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: var(--space-xl);
        }

        .nav-wordmark {
            height: 24px;
            width: auto;
            flex-shrink: 0;
        }

        .nav-wordmark svg {
            height: 100%;
            width: auto;
            fill: var(--navy);
            transition: opacity var(--t-quick) ease;
        }

        .nav-wordmark:hover svg {
            opacity: 0.8;
        }

        .nav-links {
            display: flex;
            gap: var(--space-xl);
            align-items: center;
            justify-content: center;
            flex: 1;
        }

        .nav-links a {
            position: relative;
            text-decoration: none;
            color: var(--navy);
            font-weight: 500;
            font-size: 16px;
            padding: var(--space-xs) 0;
            transition: color var(--t-quick) ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 1.5px;
            background: linear-gradient(90deg, var(--terra) 0%, var(--sienna) 100%);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s var(--ease-out);
        }

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

        .nav-links a.active::after {
            transform: scaleX(1);
            height: 2px;
        }

        .nav-links a:focus-visible {
            outline: 2px solid var(--terra);
            outline-offset: 2px;
            border-radius: 2px;
        }

        .social-links {
            display: flex;
            gap: var(--space-md);
            justify-content: flex-end;
            align-items: center;
            flex-shrink: 0;
        }

        .social-links a {
            width: 20px;
            height: 20px;
            color: var(--gray-700);
            transition: color var(--t-quick) ease;
        }

        .social-links a:hover {
            color: var(--terra);
        }

        .social-links a:focus-visible {
            outline: 2px solid var(--terra);
            outline-offset: 2px;
            border-radius: 2px;
        }

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

        /* Hero Background Layers */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(244, 237, 227, 0.3);
            z-index: 2;
        }

        /* Hero Image Container for Parallax */
        .hero-image-container {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100vh;
            z-index: 1;
            overflow: hidden;
        }

        /* Parallax Hero Image */
        .hero-image {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%) scale(1);
            height: 90vh;
            width: auto;
            object-fit: contain;
            opacity: 0.5;
            transition: opacity 0.3s ease;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            transition: all 0.3s ease;
        }

        .hero-content > * {
            opacity: 0;
            transform: translateY(8px);
            animation: fadeInUp 0.6s var(--ease-out) forwards;
        }

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

        .hero-content h1 {
            animation-delay: 0.1s;
            margin-bottom: var(--space-lg);
        }

        .hero-content p {
            font-size: 20px;
            line-height: 1.6;
            color: var(--gray-700);
            animation-delay: 0.2s;
            margin: 0 auto var(--space-xl);
        }

        .hero-content .hero-lead {
            font-size: 18px;
            color: var(--terra);
            margin-bottom: var(--space-sm);
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .hero-content .hero-question {
            font-size: 28px;
            font-style: italic;
            color: var(--navy);
            margin-bottom: var(--space-lg);
            font-family: var(--font-display);
        }

        .hero-content .cta-group {
            animation-delay: 0.3s;
        }

        /* Buttons - Premium Feel */
        .cta-group {
            display: flex;
            gap: var(--space-md);
            flex-wrap: wrap;
            margin-top: var(--space-lg);
            justify-content: center;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: var(--radius);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 0.02em;
            transition: all var(--t-quick) var(--ease-out);
            border: 1px solid transparent;
            transform: scale(1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background-color: var(--terra);
            color: var(--white);
            box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
            padding: 16px 36px;
            min-height: 52px;
            transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out), background-color 0.22s var(--ease-out);
        }

        /* Shine sweep on hover */
        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
            transform: translateX(-100%);
            transition: transform 0.4s ease;
        }

        .btn-primary:hover::before {
            transform: translateX(100%);
        }

        .btn-primary:hover {
            background-color: var(--sienna);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 123, 95, 0.25);
        }

        .btn-primary:active {
            transform: translateY(0) scale(0.98);
            box-shadow: var(--shadow-sm);
        }

        .btn-primary:focus-visible {
            outline: 2px solid var(--terra);
            outline-offset: 2px;
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--navy);
            border-color: var(--navy);
        }

        .btn-secondary:hover {
            background-color: rgba(30, 58, 95, 0.05);
            border-color: var(--terra);
            color: var(--terra);
        }

        .btn-secondary:focus-visible {
            outline: 2px solid var(--terra);
            outline-offset: 2px;
        }

        /* Section Base - All Sand Background */
        section {
            padding: var(--space-3xl) 0;
            position: relative;
            background-color: var(--sand);
        }

        section.extra-padding {
            padding: var(--space-4xl) 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--space-2xl);
            opacity: 0;
            transform: translateY(12px);
        }

        .who-work-with .section-header {
            margin-bottom: var(--space-xl);
        }

        .who-work-with .section-header h2 {
            margin-bottom: var(--space-md);
        }

        .section-header.in-view {
            animation: fadeInUp 0.6s var(--ease-out) forwards;
        }

        .section-header p {
            font-size: 24px;
            color: var(--gray-700);
            margin: 0 auto;
            font-weight: 400;
        }

        /* Metrics - Bold Section with Parallax */
        .metrics {
            position: relative;
            min-height: auto;
            padding: var(--space-3xl) 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.95) 0%, rgba(30, 58, 95, 0.85) 100%);
            color: var(--white);
            overflow: hidden;
        }

        .metrics::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="parallax-grid" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M 80 0 L 0 0 0 80" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23parallax-grid)"/></svg>');
            background-attachment: fixed;
            opacity: 0.6;
            z-index: -1;
        }

        .metrics::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 70%, rgba(212, 123, 95, 0.03) 0%, transparent 50%),
                        radial-gradient(circle at 70% 30%, rgba(143, 169, 152, 0.02) 0%, transparent 50%);
            z-index: 1;
        }

        .metrics-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: var(--space-xl);
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .metric-item {
            text-align: center;
            position: relative;
            opacity: 0;
            transform: translateY(8px);
        }

        .metric-item.in-view {
            animation: fadeInUp 0.5s var(--ease-out) forwards;
        }

        .metric-item:nth-child(1) { animation-delay: 0.05s; }
        .metric-item:nth-child(2) { animation-delay: 0.1s; }
        .metric-item:nth-child(3) { animation-delay: 0.15s; }
        .metric-item:nth-child(4) { animation-delay: 0.2s; }
        .metric-item:nth-child(5) { animation-delay: 0.25s; }

        .metric-item:not(:last-child)::after {
            content: '•';
            position: absolute;
            right: calc(var(--space-xl) / -2);
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.3);
            font-size: 10px;
        }

        .metric-number {
            font-family: var(--font-display);
            font-size: 72px;
            color: var(--white);
            line-height: 1;
            margin-bottom: var(--space-sm);
            font-feature-settings: "tnum";
            font-weight: 300;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .metric-label {
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 500;
        }

        /* Who I Work With - Dynamic Industry Selector */
        .who-work-with {
            background-color: var(--sand);
        }

        .industry-selector {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: var(--space-2xl);
            align-items: start;
            margin-top: var(--space-xl);
        }

        .industry-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .industry-item {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            padding: var(--space-md) 0;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: all var(--t-quick) var(--ease-out);
            text-align: left;
            width: 100%;
            font-family: inherit;
            opacity: 0;
            transform: translateY(12px);
            position: relative;
        }

        .industry-item.in-view {
            animation: fadeInUp 0.5s var(--ease-out) forwards;
        }

        .industry-item:nth-child(1) { animation-delay: 0s; }
        .industry-item:nth-child(2) { animation-delay: 0.05s; }
        .industry-item:nth-child(3) { animation-delay: 0.1s; }
        .industry-item:nth-child(4) { animation-delay: 0.15s; }
        .industry-item:nth-child(5) { animation-delay: 0.2s; }
        .industry-item:nth-child(6) { animation-delay: 0.25s; }

        .industry-item::after {
            content: '';
            position: absolute;
            left: -16px;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 0;
            background-color: var(--terra);
            transition: height var(--t-quick) var(--ease-out);
        }

        .industry-item:hover {
            transform: translateX(8px);
        }

        .industry-item:hover::after {
            height: 20px;
        }

        .industry-item.active {
            transform: translateX(8px);
        }

        .industry-item.active::after {
            height: 32px;
        }

        .industry-item.active .industry-details h4 {
            color: var(--terra);
            font-weight: 600;
        }

        .industry-icon {
            width: 20px;
            height: 20px;
            color: var(--gray-700);
            transition: color var(--t-quick) ease;
        }

        .industry-item.active .industry-icon {
            color: var(--terra);
        }

        .industry-details {
            flex: 1;
        }

        .industry-details h4 {
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 500;
            color: var(--navy);
            margin-bottom: 2px;
            transition: all var(--t-quick) ease;
        }

        .industry-kpi {
            font-size: 13px;
            color: var(--gray-700);
            font-weight: 400;
        }

        .industry-content {
            background: transparent;
            padding: 0;
            min-height: 400px;
            position: relative;
            opacity: 0;
            transform: translateY(12px);
        }

        .industry-content.in-view {
            animation: fadeInUp 0.6s var(--ease-out) forwards;
        }

        .content-panel {
            display: none;
        }

        .content-panel.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

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

        .content-panel h3 {
            font-family: var(--font-display);
            font-size: 36px;
            margin-bottom: var(--space-lg);
            color: var(--navy);
            line-height: 1.2;
            position: relative;
        }

        .content-panel h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--terra);
        }

        .content-problem {
            font-size: 18px;
            color: var(--gray-700);
            margin-bottom: var(--space-sm);
            padding-left: var(--space-lg);
            border-left: 3px solid var(--terra);
            font-style: italic;
        }

        .content-solution {
            font-size: 18px;
            color: var(--navy);
            margin-bottom: var(--space-lg);
            font-weight: 500;
        }

        .content-proof {
            background: transparent;
            padding: var(--space-md) 0;
            margin-bottom: var(--space-lg);
            position: relative;
        }

        .content-proof::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--terra), var(--sage));
        }

        .proof-metric {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 600;
            color: var(--terra);
            margin-bottom: var(--space-sm);
            margin-left: var(--space-md);
        }

        .proof-quote {
            font-style: italic;
            color: var(--gray-700);
            font-size: 16px;
            line-height: 1.5;
            margin-left: var(--space-md);
        }

        .content-ctas {
            display: flex;
            gap: var(--space-sm);
        }

        /* The Question Section */
        .the-question {
            padding: var(--space-4xl) 0;
            background: var(--navy);
            color: #fff;
            text-align: center;
        }

        .question-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .the-question .overline {
            color: var(--terra);
        }

        .the-question h2 {
            font-family: var(--font-display);
            font-size: 42px;
            color: #fff;
            margin: var(--space-md) 0 var(--space-lg);
            font-style: italic;
        }

        .the-question p {
            font-size: 18px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: var(--space-lg);
        }

        .question-cta {
            color: #fff !important;
        }

        .question-cta a {
            color: var(--terra);
            text-decoration: underline;
        }

        /* The Gap Section - Enhanced Background */
        .the-gap {
            background: linear-gradient(135deg, rgba(212, 123, 95, 0.06) 0%, rgba(143, 169, 152, 0.08) 50%, rgba(30, 58, 95, 0.04) 100%);
            position: relative;
            overflow: hidden;
            padding: var(--space-4xl) 0;
        }

        .the-gap::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(212, 123, 95, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 1;
        }
        
        .the-gap::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -15%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(143, 169, 152, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 1;
        }

        .the-gap .container {
            position: relative;
            z-index: 2;
        }
        
        .gap-wrapper {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: var(--space-4xl);
            align-items: start;
            position: relative;
            z-index: 1;
        }
        
        .gap-header {
            position: sticky;
            top: 100px;
        }
        
        .gap-header h2 {
            text-align: left;
            margin-bottom: 0;
            font-size: clamp(32px, 3.5vw, 42px);
            line-height: 1.2;
        }

        /* The Gap Quote - Refined */
        .gap-quote {
            font-family: var(--font-display);
            font-size: 28px;
            font-style: italic;
            color: var(--navy);
            text-align: center;
            margin: 0 auto var(--space-xl);
            position: relative;
            padding: 0 var(--space-xl);
            max-width: 800px;
            line-height: 1.4;
        }

        .gap-quote::before {
            content: '"';
            position: absolute;
            left: -10px;
            top: -20px;
            font-size: 80px;
            color: var(--terra);
            opacity: 0.3;
            font-style: normal;
        }

        /* Value Section - Time/Money/Capacity */
        .value-section {
            padding: var(--space-4xl) 0;
            background: linear-gradient(180deg, var(--sand) 0%, rgba(244, 237, 227, 0.5) 100%);
        }

        .value-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-xl);
            margin-top: var(--space-2xl);
        }

        .value-card {
            text-align: center;
            padding: var(--space-xl);
        }

        .value-card-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto var(--space-md);
            color: var(--terra);
        }

        .value-card h3 {
            font-family: var(--font-display);
            font-size: 32px;
            color: var(--terra);
            margin-bottom: var(--space-md);
            font-weight: 600;
        }

        .value-metric {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 600;
            color: var(--navy);
            margin-top: var(--space-md);
            padding-top: var(--space-md);
            border-top: 1px solid rgba(30, 58, 95, 0.1);
        }

        .value-card .value-problem {
            font-size: 16px;
            color: var(--gray-700);
            margin-bottom: var(--space-sm);
            font-style: italic;
        }

        .value-card .value-solution {
            font-size: 16px;
            color: var(--navy);
            font-weight: 500;
        }

        .value-cta {
            text-align: center;
            margin-top: var(--space-2xl);
            font-size: 18px;
            color: var(--navy);
        }

        .value-cta a:not(.btn) {
            color: var(--terra);
            font-weight: 500;
            text-decoration: none;
            transition: opacity 0.2s ease;
        }

        .value-cta a:not(.btn):hover {
            text-decoration: underline;
        }

        /* Service Cards - Sand Background */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: var(--space-lg);
            margin-top: var(--space-2xl);
        }

        .service-card {
            padding: var(--space-xl);
            background: rgba(30, 58, 95, 0.05);
            border-radius: var(--radius-sm);
            border: 1px solid rgba(30, 58, 95, 0.08);
            box-shadow: var(--shadow-sm);
            transition:
                transform 220ms var(--ease-out),
                box-shadow 220ms var(--ease-out),
                border-color 220ms var(--ease-out),
                background 220ms var(--ease-out);
            position: relative;
            opacity: 0;
            transform: translateY(12px);
        }

        .service-card.in-view {
            animation: fadeInUp 0.6s var(--ease-out) forwards;
        }

        .service-card:nth-child(1) { animation-delay: 0.05s; }
        .service-card:nth-child(2) { animation-delay: 0.1s; }
        .service-card:nth-child(3) { animation-delay: 0.15s; }

        .service-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: var(--space-xl);
            width: 2px;
            height: 24px;
            background-color: var(--terra);
            transition: height 180ms var(--ease-out);
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            background: rgba(30, 58, 95, 0.08);
            border-color: rgba(212, 123, 95, 0.3);
        }

        .service-card:hover::before {
            height: 40px;
        }

        .service-card h3 {
            font-family: var(--font-body);
            font-size: 20px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: var(--space-sm);
        }

        .service-card p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: var(--space-md);
        }

        .service-card .service-timeline {
            font-weight: 600;
            color: var(--terra);
            font-size: 15px;
            margin-bottom: var(--space-sm);
        }

        .service-card .service-details {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-card .service-details li {
            font-size: 14px;
            line-height: 1.5;
            padding: 6px 0;
            padding-left: 20px;
            position: relative;
            color: var(--gray-600);
        }

        .service-card .service-details li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--terra);
        }

        /* ContextOS Section - Two Column */
        .contextOS-section {
            margin-top: var(--space-3xl);
            padding: var(--space-2xl);
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.08) 0%, rgba(30, 58, 95, 0.04) 100%);
            border-radius: var(--radius-md);
            border: 1px solid rgba(30, 58, 95, 0.15);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-2xl);
            align-items: start;
        }

        .contextOS-left,
        .contextOS-right {
            text-align: left;
        }

        .contextOS-section .overline {
            display: block;
            margin-bottom: var(--space-sm);
        }

        .contextOS-section h3 {
            font-family: var(--font-display);
            font-size: 32px;
            color: var(--navy);
            margin-bottom: var(--space-md);
        }

        .contextOS-lead {
            font-size: 18px;
            color: var(--gray-700);
            margin-bottom: var(--space-md);
        }

        .contextOS-left p {
            font-size: 16px;
            color: var(--navy);
        }

        .contextOS-deliverables {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
            list-style: none;
            padding: 0;
            margin: 0 0 var(--space-lg) 0;
        }

        .contextOS-deliverables li {
            font-size: 15px;
            color: var(--navy);
            padding-left: 24px;
            position: relative;
        }

        .contextOS-deliverables li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--terra);
            font-weight: bold;
        }

        .contextOS-closing {
            font-size: 16px;
            font-weight: 500;
            color: var(--navy);
            margin-bottom: var(--space-md);
        }

        .contextOS-section .btn {
            margin-top: 0;
        }

        @media (max-width: 768px) {
            .contextOS-section {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
                padding: var(--space-xl);
            }

            .contextOS-section h3 {
                font-size: 26px;
            }

            .contextOS-deliverables {
                gap: var(--space-xs);
            }
        }

        /* About Section */
        .about-section {
            padding: var(--space-4xl) 0;
            background: var(--sand);
        }

        .about-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .about-content h2 {
            font-family: var(--font-display);
            font-size: 36px;
            color: var(--navy);
            margin-bottom: var(--space-xl);
        }

        .about-content p {
            font-size: 18px;
            line-height: 1.7;
            color: var(--gray-700);
            margin-bottom: var(--space-lg);
        }

        .about-results {
            background: rgba(30, 58, 95, 0.05);
            padding: var(--space-lg);
            border-radius: var(--radius-sm);
            margin: var(--space-xl) 0;
        }

        .about-results p {
            margin-bottom: var(--space-sm);
            color: var(--navy);
            font-weight: 500;
        }

        .about-results ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .about-results li {
            padding: 8px 0;
            padding-left: 24px;
            position: relative;
            font-size: 16px;
            color: var(--gray-700);
        }

        .about-results li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--terra);
            font-weight: bold;
        }

        .about-cta {
            color: var(--navy) !important;
            font-size: 18px;
        }

        .letter-link-wrapper {
            margin-top: var(--space-lg);
        }

        .letter-link {
            color: var(--terra);
            font-weight: 500;
            text-decoration: none;
            transition: opacity 0.2s ease;
        }

        .letter-link:hover {
            opacity: 0.8;
            text-decoration: underline;
        }

        /* Real Work Section */
        .real-work-section {
            padding: var(--space-4xl) 0;
            background: #fff;
        }

        .work-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: var(--space-xl);
            margin-top: var(--space-2xl);
        }

        .work-card {
            padding: var(--space-xl);
            background: var(--sand);
            border-radius: var(--radius-sm);
            border-left: 4px solid var(--terra);
        }

        .work-meta {
            display: flex;
            gap: var(--space-md);
            margin-bottom: var(--space-md);
        }

        .work-year {
            font-size: 13px;
            color: var(--terra);
            font-weight: 600;
        }

        .work-type {
            font-size: 13px;
            color: var(--gray-600);
        }

        .work-card h3 {
            font-family: var(--font-display);
            font-size: 28px;
            color: var(--navy);
            margin-bottom: var(--space-xs);
        }

        .work-context {
            font-size: 15px;
            color: var(--gray-600);
            margin-bottom: var(--space-sm);
        }

        .work-description {
            font-size: 16px;
            color: var(--gray-700);
            margin-bottom: var(--space-md);
        }

        .work-results {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .work-results li {
            padding: 6px 0;
            padding-left: 20px;
            position: relative;
            font-size: 14px;
            color: var(--gray-700);
        }

        .work-results li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--terra);
        }

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

        /* Inline Links - Refined */
        .service-link {
            color: var(--navy);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            position: relative;
            transition: color var(--t-quick) ease;
        }

        .service-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 2px;
            height: 1px;
            background-color: var(--terra);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform var(--t-quick) var(--ease-out);
        }

        .service-link:hover {
            color: var(--terra);
        }

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

        .service-link:focus-visible {
            outline: 2px solid var(--terra);
            outline-offset: 2px;
            border-radius: 2px;
        }

        /* CTA Section - Fixed Colors */
        .cta-section {
            background-color: var(--navy);
            color: var(--white);
            text-align: center;
            padding: var(--space-4xl) 0;
        }

        .cta-section h2 {
            color: var(--white);
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.8);
            margin: var(--space-lg) auto;
        }

        .cta-subtext {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: var(--space-md) !important;
        }

        /* Footer - Enhanced Colors */
        footer {
            background-color: var(--sage);
            color: var(--white);
            padding: var(--space-2xl) 0;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: var(--space-lg);
        }

        .footer-content p {
            margin: 0;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        .footer-links {
            display: flex;
            gap: var(--space-lg);
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color var(--t-quick) ease;
            position: relative;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 1px;
            background-color: var(--terra);
            transform: scaleX(0);
            transition: transform var(--t-quick) var(--ease-out);
        }

        .footer-links a:hover {
            color: var(--white);
        }

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

        /* Who I Work With - Dynamic Industry Selector */
        .industry-selector {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: var(--space-2xl);
            align-items: start;
            margin-top: var(--space-xl);
        }
        .industry-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .industry-item {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            padding: var(--space-md) 0;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: all var(--t-quick) var(--ease-out);
            text-align: left;
            width: 100%;
            font-family: inherit;
            position: relative;
        }
        .industry-item::after {
            content: '';
            position: absolute;
            left: -16px;
            width: 3px;
            height: 0;
            background-color: var(--terra);
            transition: height var(--t-quick) var(--ease-out);
        }
        .industry-item.active::after,
        .industry-item:hover::after {
            height: 100%;
        }
        .industry-item.active .industry-details h4,
        .industry-item:hover .industry-details h4 {
            color: var(--terra);
        }
        .industry-icon {
            width: 28px;
            height: 28px;
            color: var(--sage);
            transition: color var(--t-quick) var(--ease-out);
            flex-shrink: 0;
        }
        .industry-item.active .industry-icon,
        .industry-item:hover .industry-icon {
            color: var(--terra);
        }
        .industry-details {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            gap: 2px;
        }
        .industry-details h4 {
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 600;
            color: var(--navy);
            margin: 0;
            transition: color var(--t-quick) var(--ease-out);
        }
        .industry-content {
            background: transparent;
            padding: 0;
            min-height: 300px;
            position: relative;
        }
        .content-panel {
            display: none;
        }
        .content-panel.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .content-panel h3 {
            font-family: var(--font-display);
            font-size: 28px;
            margin-bottom: var(--space-lg);
            color: var(--navy);
            line-height: 1.2;
        }
        .content-description {
            font-size: 18px;
            color: var(--gray-700);
            margin-bottom: var(--space-xl);
            line-height: 1.6;
        }
        .content-challenges h4 {
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: var(--space-md);
        }
        .content-challenges ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .content-challenges li {
            font-size: 16px;
            color: var(--gray-700);
            margin-bottom: var(--space-sm);
            padding-left: var(--space-lg);
            position: relative;
            line-height: 1.5;
        }
        .content-challenges li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--terra);
            font-weight: 600;
        }
        .common-thread {
            text-align: center;
            font-size: 20px;
            font-weight: 600;
            color: var(--navy);
            margin: var(--space-xl) auto 0;
            max-width: 65ch;
        }
        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: var(--space-sm);
            margin-left: var(--space-md);
            flex-shrink: 0;
        }
        
        .mobile-menu-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background-color: var(--navy);
            transition: all var(--t-quick) ease;
            margin: 5px 0;
        }
        
        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        
        /* Mobile Navigation Overlay */
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 76px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(244, 237, 227, 0.98);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 999;
            opacity: 0;
            transition: opacity var(--t-medium) ease;
        }
        
        .mobile-nav-overlay.active {
            display: block;
            opacity: 1;
        }
        
        .mobile-nav-content {
            padding: var(--space-xl);
            display: flex;
            flex-direction: column;
            gap: var(--space-lg);
        }
        
        .mobile-nav-content a {
            font-size: 20px;
            font-weight: 500;
            color: var(--navy);
            text-decoration: none;
            padding: var(--space-sm) 0;
            transition: color var(--t-quick) ease;
        }
        
        .mobile-nav-content a:hover,
        .mobile-nav-content a:active {
            color: var(--terra);
        }
        
        .mobile-nav-content .btn {
            margin-top: var(--space-md);
            width: 100%;
        }
        
        /* Gap Section Content */
        .gap-content {
            max-width: none;
            margin: 0;
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            padding: var(--space-2xl);
            border-radius: var(--radius);
            border: 1px solid rgba(143, 169, 152, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
        }
        .gap-content p {
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: var(--space-lg);
            max-width: none;
            color: var(--navy);
        }
        .gap-content strong {
            color: var(--navy);
            font-weight: 600;
        }
        .gap-bridge {
            font-size: 19px;
            color: var(--terra);
            text-align: left;
            margin: var(--space-xl) 0;
            padding: var(--space-lg);
            background: rgba(212, 123, 95, 0.08);
            border-left: 3px solid var(--terra);
            border-radius: var(--radius-sm);
        }
        .gap-conclusion {
            font-size: 19px;
            color: var(--navy);
            text-align: left;
            margin-top: var(--space-xl);
            padding: var(--space-lg);
            background: rgba(143, 169, 152, 0.1);
            border-left: 3px solid var(--sage);
            border-radius: var(--radius-sm);
        }
        
        @media (max-width: 968px) {
            .gap-wrapper {
                grid-template-columns: 1fr;
                gap: var(--space-xl);
            }
            .gap-header {
                position: static;
            }
            .gap-header h2 {
                text-align: center;
                margin-bottom: var(--space-lg);
            }
        }
        /* Mobile Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 40px;
            }
            
            h2 {
                font-size: 36px;
            }
            
            .nav-container {
                justify-content: space-between;
            }
            
            .nav-links,
            .social-links {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .hero {
                padding: var(--space-3xl) 0;
                background: linear-gradient(180deg, var(--sand) 0%, rgba(212, 123, 95, 0.05) 100%);
            }

            .hero-image {
                display: none;
            }
            
            .metrics {
                padding: var(--space-2xl) 0;
            }

            .metrics-grid {
                flex-direction: column;
                gap: var(--space-xl);
            }

            section {
                padding: var(--space-xl) 0;
            }

            .hero, .cta-section {
                padding: var(--space-2xl) 0;
            }

            .industry-selector {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }
            
            .industry-content {
                min-height: auto;
            }
            
            .metric-item:not(:last-child)::after {
                display: none;
            }
            
            .industry-selector {
                grid-template-columns: 1fr;
            }

            .industry-list {
                flex-direction: row;
                overflow-x: auto;
                gap: 12px;
                padding-bottom: 12px;
                margin-bottom: var(--space-lg);
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
                position: relative;
            }

            .industry-list::after {
                content: '← swipe →';
                position: absolute;
                bottom: -20px;
                left: 50%;
                transform: translateX(-50%);
                font-size: 12px;
                color: var(--terra);
                opacity: 0.6;
                letter-spacing: 1px;
            }

            .industry-item {
                flex: 0 0 auto;
                min-width: 200px;
                padding: var(--space-sm) 0;
                scroll-snap-align: start;
            }

            .industry-item::after {
                display: none;
            }

            .industry-content {
                padding: var(--space-md) 0;
            }

            .content-panel h3 {
                font-size: 24px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            section {
                padding: var(--space-2xl) 0;
            }
        }

        /* Print Styles */
        @media print {
            nav, .cta-group, footer {
                display: none;
            }
            
            body {
                background: white;
                color: black;
            }
        }
