        /* ─── Inter (self-hosted) ────────────────────── */
        /*
         * Variable woff2, weight axis 300-900, which covers every weight the
         * theme uses (300 body, 400 nav, 700 labels, 900 display) in a single
         * file. The latin-ext face is unicode-range gated, so it is only
         * fetched when a page actually contains a character in that range.
         */
        @font-face {
            font-family: 'Inter';
            font-style: normal;
            font-weight: 300 900;
            font-display: swap;
            src: url('../fonts/inter-latin-ext-var.woff2') format('woff2');
            unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
        }

        @font-face {
            font-family: 'Inter';
            font-style: normal;
            font-weight: 300 900;
            font-display: swap;
            src: url('../fonts/inter-latin-var.woff2') format('woff2');
            unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
        }

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

        :root {
            --black: #0a0a0a;
            --white: #f5f5f0;
            --mid-gray: #888;
            --light-gray: #d4d4d0;
            /*
             * Text tones, split by backdrop so every pair clears WCAG AA
             * (4.5:1). --mid-gray is the quiet tone on dark (5.58:1 on
             * --black); it fails on white, so light sections use their own.
             */
            --quiet-on-light: #707070;  /* 4.53:1 on --white */
            --body-on-light: #3a3a3a;   /* 10.34:1 on --white */
            --body-on-dark: #b0b0b0;    /* 9.13:1 on --black */
            --nav-h: 88px;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            background-color: var(--white);
            color: var(--black);
            overflow-x: hidden;
        }

        /* ─── Navigation ─────────────────────────────── */
        nav {
            position: relative;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-h);
            padding: 0 48px;
            background: var(--black);
            border-bottom: 1px solid #1f1f1f;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0;
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo-wordmark {
            display: flex;
            align-items: baseline;
            gap: 0;
        }

        .logo-aria {
            font-size: 22px;
            font-weight: 900;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: var(--white);
            line-height: 1;
        }

        .logo-divider {
            width: 1px;
            height: 18px;
            background: #444;
            margin: 0 14px;
            align-self: center;
        }

        .logo-digital {
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--mid-gray);
            line-height: 1;
        }

        .logo-dot {
            width: 6px;
            height: 6px;
            background: var(--white);
            border-radius: 50%;
            margin-left: 10px;
            flex-shrink: 0;
            align-self: center;
            position: relative;
            top: -1px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--mid-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        /* ─── Hero ───────────────────────────────────── */
        .hero {
            height: calc(100svh - var(--nav-h));
            background: var(--black);
            border-bottom: 1px solid #1f1f1f;
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
            overflow: hidden;
        }

        .hero-left {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 80px 48px;
            border-right: 1px solid #1f1f1f;
        }

        .hero-eyebrow {
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--mid-gray);
            margin-bottom: 28px;
        }

        .hero-title {
            font-size: clamp(64px, 8vw, 120px);
            font-weight: 900;
            line-height: 0.88;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: -0.05em; /* Changed from -0.04em */
        }

        .hero-title span { display: block; }

        .hero-title .outline {
            -webkit-text-stroke: 1px var(--white);
            color: transparent;
        }

        .hero-right {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 80px 48px;
        }

        .hero-description {
            font-size: 16px;
            font-weight: 300;
            line-height: 1.75;
            color: var(--mid-gray);
            max-width: 360px;
            margin-bottom: 48px;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--black);
            background: var(--white);
            padding: 16px 32px;
            text-decoration: none;
            width: fit-content;
            transition: all 0.3s ease;
        }

        .hero-cta:hover {
            background: transparent;
            color: var(--white);
            outline: 1px solid var(--white);
        }

        .hero-cta svg { transition: transform 0.3s ease; }
        .hero-cta:hover svg { transform: translateX(5px); }

        .hero-number {
            position: absolute;
            bottom: 48px;
            right: 52px;
            font-size: 180px;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 1px #1f1f1f;
            line-height: 1;
            pointer-events: none;
            user-select: none;
        }

        /* ─── Shared section layout ──────────────────── */
        .section-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            margin-bottom: 80px;
            align-items: end;
            padding-bottom: 40px;
            border-bottom: 1px solid currentColor;
        }

        .section-number {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: clamp(40px, 5vw, 68px);
            font-weight: 900;
            line-height: 0.95;
            text-transform: uppercase;
            letter-spacing: -0.03em;
        }

        .section-subtitle {
            font-size: 15px;
            font-weight: 300;
            line-height: 1.8;
            max-width: 400px;
            align-self: end;
        }

        /* ─── Services ───────────────────────────────── */
        .services {
            padding: 140px 48px;
            background: var(--white);
        }

        .services .section-header { color: var(--black); }
        .services .section-number { color: var(--quiet-on-light); }
        .services .section-subtitle { color: var(--body-on-light); }

        /*
         * Grid carries border-top + border-right (closes outer right edge).
         * Each item carries border-left + border-bottom (internal lines).
         * On hover, z-index + margin-right: -1px bleeds the black background
         * flush to the right, covering the 1px gap on col-1 and col-2 items.
         */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border-top: 1px solid var(--black);
            border-right: 1px solid var(--black);
        }

        .service-item {
            padding: 48px;
            border-left: 1px solid var(--black);
            border-bottom: 1px solid var(--black);
            position: relative;
            overflow: hidden;
            transition: background 0.4s ease;
        }

        .service-item:hover {
            background: var(--black);
            z-index: 1;
            margin-right: -1px;
        }

        .service-item:hover .service-name,
        .service-item:hover .service-num { color: var(--white); }

        .service-item:hover .service-desc { color: var(--body-on-dark); }

        .service-item:hover .service-arrow {
            stroke: var(--white);
            transform: translate(4px, -4px);
        }

        .service-num {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.22em;
            color: var(--quiet-on-light);
            margin-bottom: 48px;
            transition: color 0.4s ease;
        }

        .service-name {
            font-size: 26px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            line-height: 1;
            margin-bottom: 18px;
            transition: color 0.4s ease;
        }

        .service-desc {
            font-size: 13px;
            font-weight: 300;
            line-height: 1.85;
            color: var(--body-on-light);
            transition: color 0.4s ease;
        }

        .service-arrow {
            position: absolute;
            bottom: 48px;
            right: 48px;
            stroke: var(--black);
            transition: stroke 0.4s ease, transform 0.3s ease;
        }

        /* ─── Work ───────────────────────────────────── */
        .work {
            background: var(--black);
            padding: 140px 48px;
        }

        .work .section-header { color: var(--white); border-bottom-color: #2a2a2a; }
        .work .section-number { color: var(--mid-gray); }
        .work .section-subtitle { color: var(--body-on-dark); }

        .work-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border-top: 1px solid #2a2a2a;
            border-left: 1px solid #2a2a2a;
        }

        .work-item {
            border-right: 1px solid #2a2a2a;
            border-bottom: 1px solid #2a2a2a;
            position: relative;
            overflow: hidden;
            aspect-ratio: 3 / 4;
            background: #0f0f0f;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .work-item-bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .work-item.bg-rings .work-item-bg::before,
        .work-item.bg-rings .work-item-bg::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            border: 1px solid #1e1e1e;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -65%);
        }
        .work-item.bg-rings .work-item-bg::before { width: 140px; height: 140px; }
        .work-item.bg-rings .work-item-bg::after  { width: 240px; height: 240px; }

        .work-item.bg-rings .work-item-bg .ring3 {
            position: absolute;
            width: 340px; height: 340px;
            border-radius: 50%;
            border: 1px solid #181818;
            top: 50%; left: 50%;
            transform: translate(-50%, -65%);
        }

        .work-item.bg-diagonal .work-item-bg {
            background: repeating-linear-gradient(
                -45deg,
                transparent, transparent 18px,
                #161616 18px, #161616 19px
            );
        }

        .work-item.bg-horizontal .work-item-bg {
            background: repeating-linear-gradient(
                0deg,
                transparent, transparent 12px,
                #161616 12px, #161616 13px
            );
        }

        .work-item-content {
            position: relative;
            z-index: 1;
            padding: 36px;
        }

        .work-item-index {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--mid-gray);
            margin-bottom: 8px;
        }

        .work-item-category {
            font-size: 10px;
            font-weight: 400;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--mid-gray);
            margin-bottom: 12px;
        }

        .work-item-title {
            font-size: 24px;
            font-weight: 900;
            text-transform: uppercase;
            color: var(--white);
            letter-spacing: -0.02em;
            line-height: 1;
            margin-bottom: 16px;
        }

        .work-item-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--mid-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .work-item:hover .work-item-link { color: var(--white); }

        .work-item-overlay {
            position: absolute;
            inset: 0;
            border: 0px solid var(--white);
            pointer-events: none;
            transition: border-width 0.3s ease;
        }

        .work-item:hover .work-item-overlay { border-width: 2px; }

        /* ─── Manifesto ──────────────────────────────── */
        .manifesto {
            padding: 140px 48px;
            background: var(--white);
            border-top: 1px solid var(--black);
            border-bottom: 1px solid var(--black);
        }

        .manifesto-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--quiet-on-light);
            margin-bottom: 48px;
        }

        .manifesto-text {
            font-size: clamp(30px, 4vw, 52px);
            font-weight: 900;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: -0.03em;
            max-width: 1100px;
        }

        .manifesto-rule {
            display: inline-block;
            width: 64px;
            height: 4px;
            background: var(--black);
            vertical-align: middle;
            margin: 0 16px;
            position: relative;
            top: -4px;
        }

        /* ─── About / Stats ──────────────────────────── */
        .about {
            padding: 140px 48px;
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 120px;
            align-items: center;
        }

        .about-left .section-number { color: var(--quiet-on-light); margin-bottom: 16px; }
        .about-left .section-title  { margin-bottom: 32px; }

        .about-text {
            font-size: 15px;
            font-weight: 300;
            line-height: 1.9;
            color: var(--body-on-light);
            margin-bottom: 18px;
        }

        .about-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--black);
            text-decoration: none;
            margin-top: 24px;
            position: relative;
        }

        .about-link::after {
            content: '';
            position: absolute;
            bottom: -2px; left: 0;
            width: 100%; height: 1px;
            background: var(--black);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .about-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-top: 1px solid var(--black);
            border-left: 1px solid var(--black);
        }

        .stat-item {
            padding: 40px;
            border-right: 1px solid var(--black);
            border-bottom: 1px solid var(--black);
        }

        .stat-number {
            font-size: 56px;
            font-weight: 900;
            letter-spacing: -0.04em;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 10px;
            font-weight: 400;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--quiet-on-light);
        }

        /* ─── Process ────────────────────────────────── */
        .process {
            background: var(--black);
            padding: 140px 48px;
        }

        .process .section-header  { color: var(--white); border-bottom-color: #2a2a2a; }
        .process .section-number  { color: var(--mid-gray); }
        .process .section-subtitle { color: var(--body-on-dark); }

        .process-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-top: 1px solid #2a2a2a;
            border-left: 1px solid #2a2a2a;
        }

        .process-item {
            padding: 48px;
            border-right: 1px solid #2a2a2a;
            border-bottom: 1px solid #2a2a2a;
        }

        .process-step-num {
            font-size: 72px;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 1px #2a2a2a;
            line-height: 1;
            margin-bottom: 32px;
        }

        .process-step-title {
            font-size: 18px;
            font-weight: 900;
            text-transform: uppercase;
            color: var(--white);
            letter-spacing: -0.02em;
            margin-bottom: 14px;
        }

        .process-step-desc {
            font-size: 13px;
            font-weight: 300;
            line-height: 1.85;
            color: var(--body-on-dark);
        }

        /* ─── Contact ────────────────────────────────── */
        .contact {
            background: var(--black);
            padding: 140px 48px;
            border-top: 1px solid #1f1f1f;
        }

        .contact-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 120px;
            align-items: start;
        }

        .contact-left .section-number { color: var(--mid-gray); margin-bottom: 16px; }
        .contact-left .section-title  { color: var(--white); margin-bottom: 32px; }

        .contact-desc {
            font-size: 15px;
            font-weight: 300;
            line-height: 1.85;
            color: var(--body-on-dark);
            margin-bottom: 48px;
        }

        .contact-info { display: flex; flex-direction: column; }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 18px 0;
            border-bottom: 1px solid #1a1a1a;
        }

        .contact-info-item:first-child { border-top: 1px solid #1a1a1a; }

        .contact-info-label {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--mid-gray);
            width: 88px;
            flex-shrink: 0;
        }

        .contact-info-value {
            font-size: 14px;
            font-weight: 300;
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info-value:hover { color: var(--mid-gray); }

        .contact-form { display: flex; flex-direction: column; }

        .form-group {
            position: relative;
            border-bottom: 1px solid #1f1f1f;
        }

        .form-group:first-child { border-top: 1px solid #1f1f1f; }

        .form-label {
            display: block;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--mid-gray);
            padding-top: 20px;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            background: transparent;
            border: none;
            outline: none;
            padding: 10px 0 20px;
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 300;
            color: var(--white);
            resize: none;
        }

        .form-textarea { height: 110px; }

        .form-input::placeholder,
        .form-textarea::placeholder { color: var(--mid-gray); }

        /*
         * The honeypot. The Form plugin normally hides this itself, but both
         * of its guards can be absent here: the inline style is gated on
         * plugins.form.inline_css, and .form-honeybear{display:none} ships in
         * form-styles.css, which form.php only registers for a page that owns
         * a form. This section renders the form from /contact by name, so on
         * every other page the field would show as a bare input.
         */
        .form-honeybear { display: none; }

        .form-submit {
            margin-top: 32px;
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            gap: 14px;
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--black);
            background: var(--white);
            border: none;
            padding: 18px 36px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-submit:hover {
            background: transparent;
            color: var(--white);
            outline: 1px solid var(--white);
        }

        /* ─── Footer ─────────────────────────────────── */
        footer {
            background: var(--black);
            border-top: 1px solid #1a1a1a;
            padding: 32px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0;
            text-decoration: none;
        }

        .footer-logo .logo-aria    { font-size: 15px; color: var(--white); }
        .footer-logo .logo-divider { height: 12px; margin: 0 10px; }
        .footer-logo .logo-digital { font-size: 9px; color: var(--mid-gray); }
        .footer-logo .logo-dot     { width: 4px; height: 4px; margin-left: 8px; }

        .footer-copy {
            font-size: 10px;
            font-weight: 300;
            letter-spacing: 0.12em;
            color: var(--mid-gray);
        }

        .footer-links {
            display: flex;
            gap: 28px;
            list-style: none;
        }

        .footer-links a {
            font-size: 10px;
            font-weight: 400;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--mid-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        /* ─── Responsive ─────────────────────────────── */
        @media (max-width: 1024px) {
            nav { height: auto; padding: 24px; }

            .hero { height: auto; grid-template-columns: 1fr; }
            .hero-left  { padding: 80px 24px 40px; border-right: none; border-bottom: 1px solid #1f1f1f; }
            .hero-right { padding: 40px 24px 72px; }
            .hero-number { display: none; }

            .services, .work, .about, .process,
            .manifesto, .contact { padding: 80px 24px; }

            .section-header { grid-template-columns: 1fr; gap: 20px; }
            .services-grid  { grid-template-columns: 1fr; }
            .work-grid      { grid-template-columns: 1fr; }
            .about-grid     { grid-template-columns: 1fr; gap: 56px; }
            .process-list   { grid-template-columns: 1fr 1fr; }
            .contact-inner  { grid-template-columns: 1fr; gap: 56px; }

            footer {
                flex-direction: column;
                gap: 16px;
                text-align: center;
                padding: 28px 24px;
            }

            .nav-links { display: none; }
        }
		
		/* ─── Sticky Nav Updates ─────────────────────── */
        .site-nav {
            position: sticky;
            top: 0;
            z-index: 100; /* Higher than the overlay */
            transition: padding 0.3s ease;
        }

        /* ─── Hamburger Button ───────────────────────── */
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            cursor: pointer;
            width: 30px;
            height: 20px;
            position: relative;
            z-index: 101; /* Must sit above the mobile menu */
        }

        .hamburger .bar {
            display: block;
            width: 100%;
            height: 2px;
            background-color: var(--white);
            position: absolute;
            left: 0;
            transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
        }

        .hamburger .bar:nth-child(1) { top: 0; }
        .hamburger .bar:nth-child(2) { top: 9px; }
        .hamburger .bar:nth-child(3) { top: 18px; }

        /* Hamburger Active State (Turns into an X) */
        .hamburger.active .bar:nth-child(1) {
            top: 9px;
            transform: rotate(45deg);
        }
        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active .bar:nth-child(3) {
            top: 9px;
            transform: rotate(-45deg);
        }

        /* ─── Mobile Menu Overlay ────────────────────── */
        .mobile-menu {
            position: fixed;
            inset: 0;
            background: var(--black);
            z-index: 90;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }

        .mobile-menu.active {
            opacity: 1;
            pointer-events: all;
            visibility: visible;
        }

        .mobile-links {
            list-style: none;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .mobile-links a {
            font-size: clamp(40px, 8vw, 64px);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.03em;
            color: var(--white);
            text-decoration: none;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.4s ease, transform 0.4s ease;
            display: block;
        }

        .mobile-menu.active .mobile-links a {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stagger: transition-delay is emitted inline per item by
           templates/partials/mobile-menu.html.twig so it works for any
           number of nav links, not just the first four. See PLAN 7.3. */

        /* ─── Scroll to Top Button ───────────────────── */
        .scroll-to-top {
            position: fixed;
            bottom: 48px;
            right: 48px;
            width: 48px;
            height: 48px;
            background: var(--white);
            color: var(--black);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 50;
            opacity: 0;
            pointer-events: none;
            transform: translateY(20px);
            transition: all 0.3s ease;
            border: 1px solid var(--black); /* Optional for high contrast */
        }

        .scroll-to-top.visible {
            opacity: 1;
            pointer-events: all;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            background: var(--black);
            color: var(--white);
            border-color: var(--white);
        }

        /* ─── Media Queries Updates ──────────────────── */
        @media (max-width: 1024px) {
            .hamburger { display: block; }
            .scroll-to-top { bottom: 24px; right: 24px; }
            /* Hide the body overflow when menu is open so users can't scroll behind it */
            body.menu-open { overflow: hidden; }
        }

        /* ─── Theme additions ────────────────────────────
           Everything above this line is the reference stylesheet verbatim,
           apart from two recorded selector changes:
             - .work-item:nth-child(1|2|3) → .work-item.bg-rings|.bg-diagonal|.bg-horizontal
               so background treatment follows the item, not its position.
             - the .mobile-links :nth-child delay block, now emitted inline
               per item by partials/mobile-menu.html.twig.
           Additions below are new rules only.
        */

        /* Service and work cards become anchors when the editor supplies a
           URL. Grid blockifies them, so only the link defaults need resetting.
           Every text child already declares its own colour, so this is not
           visible in the default palette. */
        a.service-item,
        a.work-item {
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
        }

        /* Image-mode logo. The wordmark path needs no rule — it reuses the
           reference's .logo-* styles unchanged. */
        .logo-image {
            display: block;
            height: 28px;
            width: auto;
        }

        .footer-logo .logo-image { height: 20px; }
