@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Plus+Jakarta+Sans:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

        :root {
            --forest-green: #166534;
            --sand: #fef3c7;
            --warm-white: #fafaf8;
            --text-dark: #1a1a1a;
            --text-light: #666666;
            --border-light: #e5e5e5;
        }

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

        html, body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background-color: var(--warm-white);
            line-height: 1.6;
        }

        /* Base image rule */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Header & Navigation */
        header {
            background-color: var(--warm-white);
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        header > div {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand-name {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            text-decoration: none;
        }

        nav {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            font-size: 0.95rem;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 20px;
        }

        nav a:hover {
            color: var(--forest-green);
        }

        nav a.active {
            background-color: var(--forest-green);
            color: white;
        }

        /* Main Layout */
        main {
            max-width: 1400px;
            margin: 0 auto;
        }

        section {
            padding: 5rem 2rem;
        }

        section.full-bleed {
            padding: 0;
            margin: 0;
        }

        /* Typography */
        h1 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        h2 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            letter-spacing: -0.01em;
        }

        h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .eyebrow {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--forest-green);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
            display: block;
        }

        .subheading {
            font-size: 1.25rem;
            color: var(--text-light);
            font-weight: 400;
            line-height: 1.6;
            max-width: 700px;
        }

        p {
            font-size: 1rem;
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        /* Hero Section */
        #hero {
            padding: 8rem 2rem;
            text-align: left;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        #hero-content {
            max-width: 600px;
        }

        #hero h1 {
            margin-bottom: 1.5rem;
        }

        .hero-image {
            width: 100%;
            height: 500px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

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

        /* CTA Button */
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: var(--forest-green);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #0f4620;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--forest-green);
            border: 2px solid var(--forest-green);
        }

        .btn-secondary:hover {
            background-color: var(--forest-green);
            color: white;
        }

        /* Studio Scope Section */
        #studio_scope {
            background-color: var(--warm-white);
        }

        .scope-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .scope-card {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease;
        }

        .scope-card:hover {
            transform: translateY(-4px);
        }

        .scope-card-image {
            width: 100%;
            height: 280px;
            overflow: hidden;
        }

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

        .scope-card-content {
            padding: 1.5rem;
            background-color: white;
        }

        .scope-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .scope-card p {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 0;
        }

        /* Approach Section */
        #approach {
            padding: 0;
        }

        .approach-image {
            width: 100%;
            height: 400px;
            overflow: hidden;
        }

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

        .approach-content {
            padding: 5rem 2rem;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .approach-content h2 {
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .approach-content p {
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-size: 1.1rem;
            color: var(--text-light);
        }

        /* Client Fit Section */
        #client_fit {
            background-color: white;
        }

        .client-fit-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
            align-items: start;
        }

        .client-fit-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            margin-top: 2rem;
        }

        .client-fit-content h3:first-child {
            margin-top: 0;
        }

        .client-fit-content p {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .client-fit-list {
            list-style: none;
            margin: 1.5rem 0;
        }

        .client-fit-list li {
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        .client-fit-list li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--forest-green);
            font-weight: bold;
        }

        /* Workflow Section */
        #workflow_preview {
            background-color: var(--warm-white);
        }

        .workflow-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .workflow-steps {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .workflow-step {
            display: flex;
            gap: 1.5rem;
        }

        .workflow-step-number {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--sand);
            line-height: 1;
            min-width: 60px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
        }

        .workflow-step-content h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .workflow-step-content p {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 0;
        }

        .workflow-image {
            width: 100%;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

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

        /* CTA Section */
        #cta_section {
            background: linear-gradient(135deg, var(--forest-green) 0%, #0f4620 100%);
            color: white;
            text-align: center;
            padding: 6rem 2rem;
        }

        #cta_section h2 {
            color: white;
            margin-bottom: 1.5rem;
        }

        #cta_section .subheading {
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        #cta_section .btn {
            margin-top: 2rem;
            background-color: var(--sand);
            color: var(--forest-green);
        }

        #cta_section .btn:hover {
            background-color: white;
        }

        /* Footer */
        footer {
            background-color: var(--text-dark);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .footer-column p {
            font-size: 0.9rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

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

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Responsive */
        @media (max-width: 768px) {
            #hero {
                grid-template-columns: 1fr;
                padding: 4rem 2rem;
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 1.8rem;
            }

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

            .client-fit-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .workflow-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-image {
                height: 350px;
            }

            .workflow-image {
                height: 300px;
            }

            nav {
                gap: 1rem;
            }

            nav a {
                padding: 0.4rem 0.8rem;
                font-size: 0.85rem;
            }

            header > div {
                padding: 1rem 2rem;
            }

            section {
                padding: 3rem 2rem;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .subheading {
                font-size: 1rem;
            }

            nav {
                gap: 0.5rem;
            }

            nav a {
                padding: 0.3rem 0.6rem;
                font-size: 0.75rem;
            }

            section {
                padding: 2rem 1.5rem;
            }

            .workflow-step-number {
                font-size: 2.5rem;
            }

            #cta_section {
                padding: 4rem 1.5rem;
            }
        }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
