        :root {
            --aqua: #3F9AAE;
            --bg-main: #EEEEEE;
            --warm: #FFE2AF;
            --neutral: #EBE1D1;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-main);
            color: #1a1a1a;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Typography Styling */
        .heading-large {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            line-height: 0.9;
        }

        .editorial-label {
            font-weight: 200;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            font-size: 0.7rem;
            color: var(--aqua);
            display: block;
            margin-bottom: 1rem;
        }

        /* Header - The Floating Strip */
        header {
            position: fixed;
            top: 2rem;
            left: 2rem;
            right: 2rem;
            z-index: 1000;
            background: rgba(238, 238, 238, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid var(--aqua);
            padding: 1.25rem 2.5rem;
            border-radius: 100px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        header.scrolled {
            top: 1rem;
            padding: 0.8rem 2.5rem;
            background: rgba(255, 255, 255, 0.95);
        }

        .nav-link {
            text-transform: lowercase;
            font-weight: 400;
            font-size: 0.9rem;
            letter-spacing: 0.02em;
            position: relative;
            transition: opacity 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--aqua);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            opacity: 0.7;
        }

        /* Hero Framing System */
        .image-frame {
            position: relative;
            overflow: hidden;
            background: var(--neutral);
            transition: transform 0.6s ease;
        }

        .image-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            mix-blend-mode: multiply;
            opacity: 0.85;
        }

        .frame-overlay {
            position: absolute;
            inset: 0;
            background: var(--warm);
            opacity: 0.15;
        }

        /* Service Grid */
        .service-card {
            border: 1px solid rgba(63, 154, 174, 0.2);
            padding: 3rem;
            border-radius: 2rem;
            transition: all 0.5s ease;
            background: white;
        }

        .service-card:hover {
            border-color: var(--aqua);
            background: var(--neutral);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        /* Page Transitions */
        .page-view {
            display: none;
            animation: fadeIn 0.8s ease forwards;
        }

        .page-view.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Mobile Hamburger */
        #hamburger {
            display: none;
        }

        @media (max-width: 1024px) {
            header { left: 1rem; right: 1rem; top: 1rem; padding: 1rem 1.5rem; }
            .desktop-nav { display: none; }
            #hamburger { display: block; }
            .heading-large { font-size: 3rem !important; }
        }

        /* Fixed Image Section */
        .parallax-bg {
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
        }
