        :root {
            /* Phase 1: Light mode. --ink stays the dark color (now used as TEXT);
               --paper stays the light color (now used as BACKGROUND). Lime is the
               unchanged brand accent. --ink-soft / --ink-card retained as variable
               names but redefined to light surface values for backwards-compat. */
            --ink: #0a0a0a;
            --ink-soft: #fafafa;        /* alt section bg (was #141414) */
            --ink-card: #f7f7f7;        /* card surface (was #1a1a1a) */
            --lime: #7FFF00;
            --lime-bright: #9FFF33;
            --lime-deep: #65CC00;
            --paper: #ffffff;           /* page bg (was #fafaf7) */
            --gray-line: rgba(0, 0, 0, 0.08);
            --gray-text: #4a4a4a;
            --gray-text-soft: #6b6b6b;
            --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.04);
            --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.08);
            --easing: cubic-bezier(0.22, 1, 0.36, 1);
            --nav-height: 76px;
        }

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

        html {
            scroll-behavior: auto;
        }

        body {
            font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--paper);
            color: var(--ink);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button {
            border: none;
            background: none;
            cursor: pointer;
            font-family: inherit;
        }

        .skip-link {
            position: absolute;
            top: -100%;
            left: 16px;
            background: var(--lime);
            color: var(--ink);
            padding: 12px 24px;
            font-family: 'Geist', sans-serif;
            font-weight: 600;
            font-size: 14px;
            border-radius: 4px;
            z-index: 10000;
            transition: top 0.3s var(--easing);
        }

        .skip-link:focus {
            top: 16px;
        }

        /* NAVIGATION */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: var(--nav-height);
            z-index: 1000;
            background: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            border-bottom: 1px solid transparent;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 56px;
            transition: background 0.25s var(--easing), backdrop-filter 0.25s var(--easing), border-color 0.25s var(--easing), padding 0.25s var(--easing);
            transform: translateY(-100%);
        }

        .nav.scrolled {
            background: rgba(255, 255, 255, 0.82);
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        /* Logo treatment — drop-shadow ensures contrast over the dark hero photo */
        .nav__brand img {
            transition: filter 0.25s var(--easing);
            filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.45));
        }
        .nav.scrolled .nav__brand img {
            filter: none;
        }

        .nav__brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav__badge {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--ink);
            border: 1.5px solid var(--lime);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Geist', sans-serif;
            font-weight: 800;
            font-size: 14px;
            color: var(--lime);
            letter-spacing: -0.02em;
        }

        .nav__brand-text {
            display: flex;
            flex-direction: column;
        }

        .nav__brand-name {
            font-weight: 700;
            font-size: 14px;
            color: var(--ink);
            letter-spacing: 0.02em;
        }

        .nav__brand-sub {
            font-family: 'Geist Mono', monospace;
            font-size: 9px;
            color: var(--lime);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .nav__links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }

        .nav__links a {
            font-family: 'Geist Mono', monospace;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.85);
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
            transition: color 0.25s var(--easing), text-shadow 0.25s var(--easing);
        }

        .nav.scrolled .nav__links a {
            color: var(--gray-text);
            text-shadow: none;
        }

        .nav__links a:hover,
        .nav__links a:focus-visible {
            color: #ffffff;
        }

        .nav.scrolled .nav__links a:hover,
        .nav.scrolled .nav__links a:focus-visible {
            color: var(--ink);
        }

        .nav__cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--lime);
            color: var(--ink);
            font-family: 'Geist', sans-serif;
            font-weight: 600;
            font-size: 14px;
            padding: 12px 24px;
            border-radius: 100px;
            transition: all 0.3s var(--easing);
            white-space: nowrap;
        }

        .nav__cta:hover {
            background: var(--lime-bright);
            transform: scale(1.02);
            box-shadow: 0 4px 20px rgba(127, 255, 0, 0.3);
        }

        .nav__hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            width: 28px;
            padding: 4px 0;
            cursor: pointer;
        }

        .nav__hamburger span {
            display: block;
            height: 2px;
            background: #ffffff;
            border-radius: 2px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
            transition: background 0.25s var(--easing), box-shadow 0.25s var(--easing);
        }

        .nav.scrolled .nav__hamburger span {
            background: var(--ink);
            box-shadow: none;
        }

        .nav__mobile-menu {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            padding: 40px 32px;
            z-index: 999;
        }

        .nav__mobile-menu.active {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .nav__mobile-menu a {
            font-family: 'Geist', sans-serif;
            font-weight: 500;
            font-size: 24px;
            color: var(--ink);
            display: block;
            padding: 8px 0;
            border-bottom: 1px solid var(--gray-line);
        }

        /* HERO */
        .hero {
            min-height: 100vh;
            padding: 180px 56px 100px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero__bg {
            position: absolute;
            inset: 0;
            background: url('house-victorian-modern.png') center/cover no-repeat;
            transform: scale(1);
            animation: heroZoom 8s ease-in-out infinite alternate;
        }

        @keyframes heroZoom {
            from { transform: scale(1); }
            to { transform: scale(1.04); }
        }

        .hero__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.95) 100%);
        }

        /* Soft fade from dark hero into the white sections below */
        .hero::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 80px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
            z-index: 3;
            pointer-events: none;
        }

        .hero__content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 80px;
            align-items: end;
        }

        .hero__eyebrow {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .hero__eyebrow-line {
            width: 32px;
            height: 1px;
            background: var(--lime);
            transform: scaleX(0);
            transform-origin: left;
        }

        .hero__eyebrow-text {
            font-family: 'Geist Mono', monospace;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--lime);
        }

        .hero__headline {
            font-size: clamp(56px, 8vw, 140px);
            font-weight: 900;
            line-height: 0.9;
            letter-spacing: -0.04em;
            color: var(--ink);
            margin-bottom: 32px;
        }

        .hero__headline em {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-weight: 400;
            color: var(--lime);
        }

        .hero__headline .big-lime {
            color: var(--lime);
        }

        .hero__headline .word {
            display: inline-block;
            overflow: hidden;
            vertical-align: top;
        }

        .hero__headline .word-inner {
            display: inline-block;
            transform: translateY(100%);
        }

        .hero__subhead {
            font-size: 18px;
            font-weight: 400;
            line-height: 1.7;
            color: var(--gray-text);
            max-width: 600px;
            margin-bottom: 12px;
        }

        .hero__subhead-small {
            font-size: 15px;
            color: var(--gray-text-soft);
            max-width: 600px;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .hero__ctas {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--lime);
            color: var(--ink);
            font-family: 'Geist', sans-serif;
            font-weight: 600;
            font-size: 15px;
            padding: 16px 32px;
            border-radius: 100px;
            letter-spacing: 0.02em;
            transition: all 0.3s var(--easing);
        }

        .btn-primary:hover {
            background: var(--lime-bright);
            transform: scale(1.02);
            box-shadow: 0 4px 24px rgba(127, 255, 0, 0.3);
        }

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

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--ink);
            font-family: 'Geist', sans-serif;
            font-weight: 500;
            font-size: 15px;
            padding: 16px 0;
            border-bottom: 1px solid var(--gray-text-soft);
            transition: all 0.3s var(--easing);
        }

        .btn-ghost:hover {
            border-color: var(--lime);
            color: var(--lime);
        }

        .btn-ghost:focus-visible {
            outline: 2px solid var(--lime);
            outline-offset: 3px;
        }

        /* Hero stat badges */
        .hero__badges {
            position: relative;
            z-index: 2;
            display: flex;
            gap: 20px;
            max-width: 1400px;
            margin: 60px auto 0;
            width: 100%;
        }

        .hero__badge {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 8px;
            padding: 20px 28px;
            display: flex;
            align-items: center;
            gap: 14px;
            transition: all 0.3s var(--easing);
            opacity: 0;
        }

        .hero__badge:hover {
            border-color: var(--lime);
            transform: translateY(-2px);
        }

        .hero__badge-icon {
            font-size: 22px;
        }

        .hero__badge-text {
            font-family: 'Geist', sans-serif;
            font-weight: 600;
            font-size: 14px;
            color: var(--ink);
        }

        /* Hero quote */
        .hero__quote {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 48px auto 0;
            width: 100%;
            padding-left: 20px;
            border-left: 2px solid var(--lime);
            opacity: 0;
        }

        .hero__quote p {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-size: 18px;
            color: var(--gray-text);
            line-height: 1.5;
        }

        .hero__quote cite {
            display: block;
            font-family: 'Geist Mono', monospace;
            font-style: normal;
            font-size: 11px;
            color: var(--gray-text-soft);
            margin-top: 8px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* TRUST STRIP */
        .trust-strip {
            background: #fafafa;
            border-top: 1px solid var(--gray-line);
            border-bottom: 1px solid var(--gray-line);
            padding: 22px 0;
            overflow: hidden;
            position: relative;
        }

        .trust-strip__track {
            display: flex;
            width: max-content;
            animation: marquee 50s linear infinite;
        }

        .trust-strip:hover .trust-strip__track {
            animation-play-state: paused;
        }

        .trust-strip__item {
            font-family: 'Geist', sans-serif;
            font-weight: 800;
            font-size: 16px;
            color: var(--ink);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            white-space: nowrap;
            padding: 0 24px;
        }

        .trust-strip__item::after {
            content: ' \2726';
            margin-left: 24px;
            color: var(--lime-deep);
        }

        @keyframes marquee {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* SECTION COMMON */
        .section {
            padding: 120px 56px;
        }

        .section--lg {
            padding: 140px 56px;
        }

        .section--ink { background: var(--paper); }
        .section--ink-soft { background: var(--ink-soft); }

        .section__container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section__eyebrow {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .section__eyebrow-line {
            width: 32px;
            height: 1px;
            background: var(--lime);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s var(--easing);
        }

        .section__eyebrow.in-view .section__eyebrow-line {
            transform: scaleX(1);
        }

        .section__eyebrow-text {
            font-family: 'Geist Mono', monospace;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gray-text-soft);
        }

        .section__headline {
            font-size: clamp(40px, 5vw, 72px);
            font-weight: 900;
            line-height: 0.95;
            letter-spacing: -0.03em;
            color: var(--ink);
            margin-bottom: 24px;
        }

        .section__headline em {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-weight: 400;
            color: var(--lime);
        }

        .section__subhead {
            font-size: 18px;
            font-weight: 400;
            line-height: 1.7;
            color: var(--gray-text);
            max-width: 680px;
            margin-bottom: 60px;
        }

        /* PROMISE CARDS */
        .promises__grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .promise-card {
            background: var(--ink-card);
            border: 1px solid var(--gray-line);
            border-radius: 8px;
            padding: 32px;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-card);
            transition: all 0.3s var(--easing);
            opacity: 0;
            transform: translateY(40px);
        }

        .promise-card:hover {
            border-color: var(--lime-deep);
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
        }

        .promise-card__icon {
            width: 48px;
            height: 48px;
            margin-bottom: 24px;
            color: var(--lime);
        }

        .promise-card__icon svg {
            width: 100%;
            height: 100%;
            stroke: var(--lime);
            fill: none;
            stroke-width: 1.5;
        }

        .promise-card__title {
            font-size: 20px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 12px;
        }

        .promise-card__body {
            font-size: 15px;
            line-height: 1.6;
            color: var(--gray-text);
        }

        /* VIDEO SECTION */
        .video-section {
            padding: 120px 56px 60px;
            text-align: center;
        }

        .video-section .section__headline,
        .video-section .section__subhead {
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }

        .video-section__label {
            font-family: 'Geist Mono', monospace;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--lime);
            margin-bottom: 16px;
        }

        .video-section__player {
            max-width: 1280px;
            margin: 0 auto;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
        }

        .video-section__player video {
            width: 100%;
            display: block;
            aspect-ratio: 16/9;
            object-fit: cover;
        }

        .video-section__caption {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-size: 16px;
            color: var(--gray-text);
            margin-top: 24px;
        }

        /* SERVICES */
        .services__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .service-card {
            background: var(--paper);
            border: 1px solid var(--gray-line);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all 0.3s var(--easing);
        }

        .service-card:hover {
            border-color: var(--lime-deep);
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
        }

        .service-card__image {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            filter: contrast(1.05) saturate(1.05);
        }

        .service-card__content {
            padding: 36px;
        }

        .service-card__header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .service-card__icon {
            font-size: 24px;
        }

        .service-card__title {
            font-size: 28px;
            font-weight: 800;
            color: var(--ink);
            letter-spacing: -0.02em;
        }

        .service-card__body {
            font-size: 15px;
            line-height: 1.7;
            color: var(--gray-text);
            margin-bottom: 24px;
        }

        .service-card__list {
            list-style: none;
            margin-bottom: 28px;
        }

        .service-card__list li {
            font-size: 15px;
            color: var(--ink);
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .service-card__list li::before {
            content: '';
            width: 18px;
            height: 18px;
            background: var(--lime);
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 10px;
        }

        .service-card__link {
            font-family: 'Geist', sans-serif;
            font-weight: 600;
            font-size: 15px;
            color: var(--lime);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s var(--easing);
        }

        .service-card__link:hover {
            gap: 14px;
        }

        /* PROCESS TIMELINE */
        .process__timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .process__line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--gray-line);
            transform: translateX(-50%);
        }

        .process__line-fill {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0%;
            background: var(--lime);
            transition: height 0.1s linear;
        }

        .process__item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 80px;
            position: relative;
        }

        .process__item:nth-child(odd) {
            flex-direction: row;
            padding-right: calc(50% + 48px);
            text-align: right;
        }

        .process__item:nth-child(even) {
            flex-direction: row-reverse;
            padding-left: calc(50% + 48px);
            text-align: left;
        }

        .process__dot {
            position: absolute;
            left: 50%;
            top: 12px;
            width: 16px;
            height: 16px;
            background: var(--paper);
            border: 2px solid var(--lime-deep);
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 2;
            transition: all 0.3s var(--easing);
        }

        .process__item.active .process__dot {
            background: var(--lime);
            box-shadow: 0 0 16px rgba(127, 255, 0, 0.5);
        }

        .process__card {
            background: var(--paper);
            border: 1px solid var(--gray-line);
            border-radius: 8px;
            padding: 32px;
            max-width: 480px;
            box-shadow: var(--shadow-card);
            opacity: 0;
            transform: translateX(-40px);
            transition: all 0.6s var(--easing);
        }

        .process__item:nth-child(even) .process__card {
            transform: translateX(40px);
        }

        .process__card.in-view {
            opacity: 1;
            transform: translateX(0);
        }

        .process__number {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-size: 64px;
            color: var(--lime);
            line-height: 1;
            margin-bottom: 12px;
        }

        .process__title {
            font-size: 22px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 12px;
        }

        .process__body {
            font-size: 15px;
            line-height: 1.6;
            color: var(--gray-text);
        }

        /* PAINT THAT LASTS */
        .promise-section__grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .promise-section__body p {
            font-size: 17px;
            line-height: 1.7;
            color: var(--gray-text);
            margin-bottom: 24px;
        }

        .promise-section__badges {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .promise-badge {
            background: var(--paper);
            border: 1px solid var(--gray-line);
            border-radius: 8px;
            padding: 24px;
            box-shadow: var(--shadow-card);
            transition: all 0.3s var(--easing);
        }

        .promise-badge:hover {
            border-color: var(--lime-deep);
            box-shadow: var(--shadow-card-hover);
        }

        .promise-badge__icon {
            font-size: 24px;
            margin-bottom: 12px;
        }

        .promise-badge__title {
            font-size: 15px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 8px;
        }

        .promise-badge__body {
            font-size: 13px;
            line-height: 1.5;
            color: var(--gray-text);
        }

        /* PORTFOLIO */
        .portfolio__grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-auto-rows: 140px;
            gap: 12px;
        }

        .portfolio__item {
            position: relative;
            overflow: hidden;
            border-radius: 6px;
            cursor: pointer;
        }

        .portfolio__item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: contrast(1.05) saturate(1.05);
            transition: transform 0.8s var(--easing);
        }

        .portfolio__item:hover img {
            transform: scale(1.06);
        }

        .portfolio__item-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.5s var(--easing);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
        }

        .portfolio__item:hover .portfolio__item-overlay {
            opacity: 1;
        }

        .portfolio__item-number {
            font-family: 'Geist Mono', monospace;
            font-size: 11px;
            color: var(--lime);
            letter-spacing: 1px;
            margin-bottom: 4px;
        }

        .portfolio__item-name {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-size: 20px;
            color: var(--ink);
        }

        .portfolio__item--1 { grid-column: 1 / 7; grid-row: 1 / 4; }
        .portfolio__item--2 { grid-column: 7 / 13; grid-row: 1 / 3; }
        .portfolio__item--3 { grid-column: 7 / 10; grid-row: 3 / 4; }
        .portfolio__item--4 { grid-column: 10 / 13; grid-row: 3 / 4; }
        .portfolio__item--5 { grid-column: 1 / 5; grid-row: 4 / 7; }
        .portfolio__item--6 { grid-column: 5 / 9; grid-row: 4 / 6; }
        .portfolio__item--7 { grid-column: 9 / 13; grid-row: 4 / 6; }
        .portfolio__item--8 { grid-column: 5 / 9; grid-row: 6 / 7; }
        .portfolio__item--9 { grid-column: 9 / 13; grid-row: 6 / 7; }
        .portfolio__item--10 { grid-column: 1 / 7; grid-row: 7 / 9; }
        .portfolio__item--11 { grid-column: 7 / 10; grid-row: 7 / 9; }
        .portfolio__item--12 { grid-column: 10 / 13; grid-row: 7 / 9; }
        .portfolio__item--13 { grid-column: 1 / 5; grid-row: 9 / 11; }
        .portfolio__item--14 { grid-column: 5 / 9; grid-row: 9 / 11; }
        .portfolio__item--15 { grid-column: 9 / 13; grid-row: 9 / 11; }
        .portfolio__item--16 { grid-column: 1 / 13; grid-row: 11 / 13; }

        .portfolio__header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 60px;
        }

        .portfolio__link {
            font-family: 'Geist', sans-serif;
            font-weight: 600;
            font-size: 15px;
            color: var(--lime);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s var(--easing);
        }

        .portfolio__link:hover { gap: 14px; }

        /* TESTIMONIALS */
        .testimonials__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 60px;
        }

        .testimonial-card {
            background: var(--paper);
            border: 1px solid var(--gray-line);
            border-radius: 8px;
            padding: 32px;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-card);
            opacity: 0;
            transform: translateY(30px);
        }

        .testimonial-card__stars {
            color: var(--lime);
            font-size: 18px;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .testimonial-card__quote {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-size: 17px;
            line-height: 1.5;
            color: var(--ink);
            flex: 1;
            margin-bottom: 24px;
        }

        .testimonial-card__divider {
            height: 1px;
            background: var(--gray-line);
            margin-bottom: 16px;
        }

        .testimonial-card__author {
            font-weight: 700;
            font-size: 14px;
            color: var(--ink);
        }

        .testimonial-card__meta {
            font-family: 'Geist Mono', monospace;
            font-size: 10px;
            color: var(--lime);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 4px;
        }

        .testimonial-card__date {
            font-family: 'Geist Mono', monospace;
            font-size: 10px;
            color: var(--gray-text-soft);
            margin-top: 4px;
        }

        .testimonials__featured {
            max-width: 800px;
            margin: 60px auto 0;
            text-align: center;
            padding: 48px;
            border-top: 1px solid var(--gray-line);
        }

        .testimonials__featured-stars {
            color: var(--lime);
            font-size: 22px;
            letter-spacing: 3px;
            margin-bottom: 20px;
        }

        .testimonials__featured-quote {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-size: 24px;
            line-height: 1.5;
            color: var(--ink);
            margin-bottom: 20px;
        }

        .testimonials__featured-author {
            font-weight: 700;
            font-size: 14px;
            color: var(--ink);
        }

        .testimonials__featured-meta {
            font-family: 'Geist Mono', monospace;
            font-size: 10px;
            color: var(--lime);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 4px;
        }

        .testimonials__cta {
            text-align: center;
        }

        /* FAQ */
        .faq__list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--paper);
            border: 1px solid var(--gray-line);
            border-radius: 8px;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .faq-item__question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 32px;
            font-family: 'Geist', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: var(--ink);
            text-align: left;
            cursor: pointer;
            transition: color 0.3s var(--easing);
        }

        .faq-item__question:hover {
            color: var(--lime-deep);
        }

        .faq-item__question:focus-visible {
            outline: 2px solid var(--lime);
            outline-offset: -2px;
        }

        .faq-item__chevron {
            width: 24px;
            height: 24px;
            color: var(--lime);
            transition: transform 0.3s var(--easing);
            flex-shrink: 0;
        }

        .faq-item.open .faq-item__chevron {
            transform: rotate(180deg);
        }

        .faq-item__answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s var(--easing);
        }

        .faq-item__answer-inner {
            padding: 0 32px 24px;
            font-size: 15px;
            line-height: 1.7;
            color: var(--gray-text);
        }

        /* REFERRAL */
        .referral__grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .referral__icon {
            font-size: 32px;
            margin-bottom: 12px;
        }

        .referral__label {
            font-family: 'Geist Mono', monospace;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--lime);
            margin-bottom: 24px;
        }

        .referral__headline {
            font-size: clamp(36px, 4vw, 64px);
            font-weight: 900;
            line-height: 0.95;
            letter-spacing: -0.03em;
            color: var(--ink);
            margin-bottom: 28px;
        }

        .referral__headline .lime { color: var(--lime); }

        .referral__body {
            font-size: 16px;
            line-height: 1.7;
            color: var(--gray-text);
            margin-bottom: 16px;
        }

        .referral__steps {
            list-style: none;
        }

        .referral__step {
            display: flex;
            align-items: flex-start;
            gap: 24px;
            margin-bottom: 36px;
        }

        .referral__step-number {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-size: 56px;
            color: var(--lime);
            line-height: 1;
            flex-shrink: 0;
        }

        .referral__step-text {
            font-size: 16px;
            line-height: 1.6;
            color: var(--ink);
            padding-top: 16px;
        }

        /* FINAL CTA */
        .final-cta {
            padding: 160px 56px;
            background: linear-gradient(135deg, #7FFF00 0%, #65CC00 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .final-cta__noise {
            position: absolute;
            inset: 0;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        }

        .final-cta__container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .final-cta__eyebrow {
            font-family: 'Geist Mono', monospace;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--ink);
            opacity: 0.7;
            margin-bottom: 32px;
        }

        .final-cta__headline {
            font-size: clamp(56px, 8vw, 120px);
            font-weight: 900;
            line-height: 0.92;
            letter-spacing: -0.04em;
            color: var(--ink);
            margin-bottom: 24px;
        }

        .final-cta__subhead {
            font-size: 18px;
            font-weight: 400;
            color: rgba(10, 10, 10, 0.7);
            margin-bottom: 48px;
        }

        .final-cta__buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-ink {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--ink);
            color: var(--lime);
            font-family: 'Geist', sans-serif;
            font-weight: 600;
            font-size: 15px;
            padding: 18px 36px;
            border-radius: 100px;
            letter-spacing: 0.02em;
            transition: all 0.3s var(--easing);
        }

        .btn-ink:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 32px rgba(10, 10, 10, 0.3);
        }

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

        .btn-ink-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--ink);
            border: 2px solid var(--ink);
            font-family: 'Geist', sans-serif;
            font-weight: 600;
            font-size: 15px;
            padding: 16px 32px;
            border-radius: 100px;
            letter-spacing: 0.02em;
            transition: all 0.3s var(--easing);
        }

        .btn-ink-outline:hover {
            background: var(--ink);
            color: var(--lime);
        }

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

        /* FOOTER */
        .footer {
            background: #f0f0f0;
            border-top: 1px solid var(--gray-line);
            padding: 100px 56px 40px;
        }

        .footer__container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer__grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer__brand-logo {
            height: 80px;
            margin-bottom: 16px;
        }

        .footer__brand-name {
            font-weight: 700;
            font-size: 16px;
            color: var(--ink);
            margin-bottom: 8px;
        }

        .footer__brand-tagline {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-size: 16px;
            color: var(--gray-text);
            line-height: 1.5;
        }

        .footer__col-title {
            font-family: 'Geist Mono', monospace;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--lime);
            margin-bottom: 20px;
        }

        .footer__links {
            list-style: none;
        }

        .footer__links li {
            margin-bottom: 10px;
        }

        .footer__links a {
            font-size: 14px;
            color: var(--gray-text);
            transition: color 0.3s var(--easing);
        }

        .footer__links a:hover {
            color: var(--ink);
        }

        .footer__divider {
            height: 1px;
            background: var(--gray-line);
            margin-bottom: 24px;
        }

        .footer__bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer__copyright {
            font-family: 'Geist Mono', monospace;
            font-size: 10px;
            color: var(--gray-text-soft);
            letter-spacing: 1px;
        }

        .footer__legal {
            font-family: 'Geist Mono', monospace;
            font-size: 10px;
            color: var(--gray-text-soft);
            letter-spacing: 1px;
        }

        /* ===== HERO INTERNAL OVERRIDES =====
           Hero keeps a dark photo + dark gradient overlay, so all text inside it
           must stay light. These rules win because they're more specific and
           come after the global declarations that flipped to dark text. */
        .hero__headline { color: #ffffff; }
        .hero__headline em { color: var(--lime); }
        .hero__headline .big-lime { color: var(--lime); }
        .hero__subhead { color: rgba(255, 255, 255, 0.78); }
        .hero__subhead-small { color: rgba(255, 255, 255, 0.55); }
        .hero__badge-text { color: #ffffff; }
        .hero__quote { border-left-color: var(--lime); }
        .hero__quote p { color: rgba(255, 255, 255, 0.78); }
        .hero__quote cite { color: rgba(255, 255, 255, 0.55); }
        .hero .btn-ghost { color: #ffffff; border-bottom-color: rgba(255, 255, 255, 0.4); }
        .hero .btn-ghost:hover { color: var(--lime); border-bottom-color: var(--lime); }

        /* ===== PORTFOLIO HOVER — light treatment for light mode ===== */
        .portfolio__item-overlay {
            background: linear-gradient(to top, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.6) 50%, transparent 75%);
        }
        .portfolio__item-number { color: var(--lime-deep); }
        .portfolio__item-name { color: var(--ink); }

        /* ===== LIME CONTRAST FIXES on white surfaces =====
           Pure --lime on pure white is decorative-only contrast (~1.4:1).
           Where lime is used as small/body text on white, swap to --lime-deep
           (#65CC00, ~2.2:1). Display headlines/big numbers stay --lime by spec. */
        .video-section__label,
        .testimonial-card__meta,
        .testimonials__featured-meta,
        .service-card__link,
        .portfolio__link,
        .referral__label,
        .footer__col-title { color: var(--lime-deep); }

        /* Hero internals stay on dark photo bg, so keep bright lime there */
        .hero__eyebrow-text,
        .video-section__label-on-dark { color: var(--lime); }

        /* ===== TESTIMONIAL DIVIDER stays subtle on white card ===== */
        .testimonial-card__divider { background: var(--gray-line); }

        /* RESPONSIVE */
        @media (max-width: 1200px) {
            .hero__content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .services__grid {
                grid-template-columns: 1fr;
            }
            .portfolio__grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 200px;
            }
            .portfolio__item--1,
            .portfolio__item--2,
            .portfolio__item--3,
            .portfolio__item--4,
            .portfolio__item--5,
            .portfolio__item--6,
            .portfolio__item--7,
            .portfolio__item--8,
            .portfolio__item--9,
            .portfolio__item--10,
            .portfolio__item--11,
            .portfolio__item--12,
            .portfolio__item--13,
            .portfolio__item--14,
            .portfolio__item--15,
            .portfolio__item--16 {
                grid-column: auto;
                grid-row: auto;
            }
            .portfolio__item--16 {
                grid-column: 1 / -1;
            }
            .testimonials__grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .promises__grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .promise-section__grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            .referral__grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            .footer__grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 900px) {
            .section, .section--lg {
                padding: 80px 24px;
            }
            .hero {
                padding: 140px 24px 60px;
            }
            .nav {
                padding: 0 24px;
            }
            .nav__links {
                display: none;
            }
            .nav__hamburger {
                display: flex;
            }
            .portfolio__grid {
                grid-template-columns: 1fr;
                grid-auto-rows: 240px;
            }
            .portfolio__item--16 {
                grid-column: auto;
            }
            .process__line {
                left: 20px;
            }
            .process__item,
            .process__item:nth-child(odd),
            .process__item:nth-child(even) {
                flex-direction: row;
                padding-left: 60px;
                padding-right: 0;
                text-align: left;
            }
            .process__dot {
                left: 20px;
            }
            .process__card,
            .process__item:nth-child(even) .process__card {
                transform: translateX(20px);
            }
            .process__card.in-view {
                transform: translateX(0);
            }
            .testimonials__grid {
                grid-template-columns: 1fr;
            }
            .hero__badges {
                flex-direction: column;
            }
            .footer__grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .footer__bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
            .final-cta {
                padding: 100px 24px;
            }
            .video-section {
                padding: 80px 24px 40px;
            }
        }

        @media (max-width: 600px) {
            .hero__headline {
                font-size: clamp(36px, 10vw, 56px);
            }
            .promises__grid {
                grid-template-columns: 1fr;
            }
            .hero__ctas {
                flex-direction: column;
                align-items: flex-start;
            }
            .final-cta__headline {
                font-size: clamp(36px, 10vw, 56px);
            }
            .final-cta__buttons {
                flex-direction: column;
            }
            .trust-strip__item {
                font-size: 13px;
            }
            .promise-section__badges {
                grid-template-columns: 1fr;
            }
            .section__headline {
                font-size: clamp(32px, 8vw, 48px);
            }
        }

        /* REDUCED MOTION */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            .hero__bg {
                animation: none;
            }
            .trust-strip__track {
                animation: none;
            }
            .hero__headline .word-inner,
            .promise-card,
            .testimonial-card,
            .process__card,
            .hero__badge,
            .hero__quote {
                opacity: 1 !important;
                transform: none !important;
            }
        }

        /* ===== PHASE 2: MULTI-PAGE STYLES ===== */

        /* Active nav link */
        .nav__links a[aria-current="page"] {
            color: var(--ink);
        }
        .nav.scrolled .nav__links a[aria-current="page"] {
            color: var(--ink);
        }
        .nav__links a[aria-current="page"]::after {
            content: '';
            display: block;
            height: 2px;
            background: var(--lime);
            margin-top: 4px;
            border-radius: 2px;
        }

        /* PAGE HERO (non-home pages — small, white, no photo) */
        .page-hero {
            padding: calc(var(--nav-height) + 80px) 56px 80px;
            background: var(--paper);
            border-bottom: 1px solid var(--gray-line);
        }

        .page-hero__container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .page-hero__eyebrow {
            font-family: 'Geist Mono', monospace;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--lime-deep);
            margin-bottom: 24px;
        }

        .page-hero__headline {
            font-size: clamp(40px, 6vw, 88px);
            font-weight: 900;
            line-height: 0.95;
            letter-spacing: -0.03em;
            color: var(--ink);
            margin-bottom: 24px;
        }

        .page-hero__headline em {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-weight: 400;
            color: var(--lime);
        }

        .page-hero__subhead {
            font-size: 19px;
            line-height: 1.6;
            color: var(--gray-text);
            max-width: 720px;
        }

        /* TEASER GRIDS (slimmed Home variants) */
        .services-teaser__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .service-teaser-card {
            background: var(--paper);
            border: 1px solid var(--gray-line);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all 0.3s var(--easing);
            display: flex;
            flex-direction: column;
        }

        .service-teaser-card:hover {
            border-color: var(--lime-deep);
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
        }

        .service-teaser-card img {
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
            filter: contrast(1.05) saturate(1.05);
        }

        .service-teaser-card__body {
            padding: 28px 32px 32px;
        }

        .service-teaser-card__title {
            font-size: 22px;
            font-weight: 800;
            color: var(--ink);
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }

        .service-teaser-card__copy {
            font-size: 15px;
            line-height: 1.6;
            color: var(--gray-text);
            margin-bottom: 16px;
        }

        .service-teaser-card__link {
            font-family: 'Geist', sans-serif;
            font-weight: 600;
            font-size: 14px;
            color: var(--lime-deep);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.3s var(--easing);
        }

        .service-teaser-card__link:hover { gap: 12px; }

        /* PORTFOLIO TEASER (4-6 images on Home) */
        .portfolio-teaser__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .portfolio-teaser__item {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
            border-radius: 6px;
        }

        .portfolio-teaser__item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: contrast(1.05) saturate(1.05);
            transition: transform 0.8s var(--easing);
        }

        .portfolio-teaser__item:hover img {
            transform: scale(1.06);
        }

        /* SERVICE DETAIL (residential / commercial) */
        .service-detail__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .service-detail__image {
            width: 100%;
            border-radius: 8px;
            box-shadow: var(--shadow-card);
            filter: contrast(1.05) saturate(1.05);
        }

        .service-detail__copy h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--ink);
            margin: 24px 0 8px;
        }

        .service-detail__copy h3:first-child { margin-top: 0; }

        .service-detail__copy p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--gray-text);
            margin-bottom: 12px;
        }

        .service-detail__list {
            list-style: none;
            margin: 16px 0 8px;
        }

        .service-detail__list li {
            font-size: 15px;
            color: var(--ink);
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .service-detail__list li::before {
            content: '';
            width: 18px;
            height: 18px;
            background: var(--lime);
            border-radius: 50%;
            flex-shrink: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 10px;
        }

        /* ABOUT PAGE */
        .about__intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about__portrait {
            width: 100%;
            border-radius: 8px;
            box-shadow: var(--shadow-card-hover);
            filter: contrast(1.05) saturate(1.05);
        }

        .about__copy p {
            font-size: 17px;
            line-height: 1.7;
            color: var(--gray-text);
            margin-bottom: 20px;
        }

        .about__credentials {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 60px;
        }

        .about__credential {
            background: var(--paper);
            border: 1px solid var(--gray-line);
            border-radius: 8px;
            padding: 28px;
            box-shadow: var(--shadow-card);
            text-align: center;
        }

        .about__credential-icon {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .about__credential-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 6px;
        }

        .about__credential-meta {
            font-family: 'Geist Mono', monospace;
            font-size: 10px;
            color: var(--lime-deep);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about__social {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-top: 24px;
        }

        .about__social a {
            font-family: 'Geist Mono', monospace;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--gray-text);
            border-bottom: 1px solid var(--gray-text-soft);
            padding-bottom: 4px;
            transition: all 0.3s var(--easing);
        }

        .about__social a:hover {
            color: var(--lime-deep);
            border-color: var(--lime-deep);
        }

        /* REVIEWS PAGE */
        .reviews-featured {
            max-width: 920px;
            margin: 0 auto 80px;
            background: var(--paper);
            border: 1px solid var(--gray-line);
            border-left: 4px solid var(--lime);
            border-radius: 8px;
            padding: 48px;
            box-shadow: var(--shadow-card);
        }

        .reviews-featured__stars {
            color: var(--lime-deep);
            font-size: 22px;
            letter-spacing: 3px;
            margin-bottom: 20px;
        }

        .reviews-featured__quote {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-size: 26px;
            line-height: 1.45;
            color: var(--ink);
            margin-bottom: 24px;
        }

        .reviews-featured__author {
            font-weight: 700;
            font-size: 15px;
            color: var(--ink);
        }

        .reviews-featured__meta {
            font-family: 'Geist Mono', monospace;
            font-size: 10px;
            color: var(--lime-deep);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 4px;
        }

        .reviews__disclaimer {
            max-width: 800px;
            margin: 80px auto 0;
            text-align: center;
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-size: 14px;
            line-height: 1.6;
            color: var(--gray-text-soft);
            padding: 0 24px;
        }

        /* CONTACT PAGE */
        .contact__grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .contact-form {
            background: var(--paper);
            border: 1px solid var(--gray-line);
            border-radius: 8px;
            padding: 40px;
            box-shadow: var(--shadow-card);
        }

        .contact-form__field {
            margin-bottom: 20px;
        }

        .contact-form__label {
            display: block;
            font-family: 'Geist Mono', monospace;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gray-text-soft);
            margin-bottom: 8px;
        }

        .contact-form__input,
        .contact-form__textarea,
        .contact-form__select {
            width: 100%;
            font-family: 'Geist', sans-serif;
            font-size: 15px;
            color: var(--ink);
            background: var(--paper);
            border: 1px solid var(--gray-line);
            border-radius: 6px;
            padding: 14px 16px;
            transition: border-color 0.25s var(--easing), box-shadow 0.25s var(--easing);
        }

        .contact-form__input:focus,
        .contact-form__textarea:focus,
        .contact-form__select:focus {
            outline: none;
            border-color: var(--lime-deep);
            box-shadow: 0 0 0 3px rgba(127, 255, 0, 0.18);
        }

        .contact-form__textarea {
            min-height: 140px;
            resize: vertical;
            font-family: 'Geist', sans-serif;
        }

        .contact-form__select {
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a4a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
        }

        .contact-form__submit {
            width: 100%;
            margin-top: 12px;
            justify-content: center;
        }

        .contact-form__success {
            display: none;
            background: var(--paper);
            border: 1px solid var(--lime-deep);
            border-radius: 8px;
            padding: 48px 40px;
            text-align: center;
            box-shadow: var(--shadow-card);
        }

        .contact-form__success-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            background: var(--lime);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--ink);
        }

        .contact-form__success h3 {
            font-size: 24px;
            font-weight: 800;
            color: var(--ink);
            margin-bottom: 10px;
        }

        .contact-form__success p {
            font-size: 15px;
            color: var(--gray-text);
            line-height: 1.6;
        }

        .contact-direct {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-direct__item {
            background: var(--paper);
            border: 1px solid var(--gray-line);
            border-radius: 8px;
            padding: 24px 28px;
            box-shadow: var(--shadow-card);
            display: block;
            transition: all 0.3s var(--easing);
        }

        .contact-direct__item:hover {
            border-color: var(--lime-deep);
            transform: translateY(-2px);
        }

        .contact-direct__label {
            font-family: 'Geist Mono', monospace;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gray-text-soft);
            margin-bottom: 6px;
            display: block;
        }

        .contact-direct__value {
            font-size: 22px;
            font-weight: 700;
            color: var(--ink);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-direct__value-sm {
            font-size: 17px;
            font-weight: 600;
        }

        .contact-map {
            margin-top: 12px;
            background: #f0f0f0;
            border: 1px solid var(--gray-line);
            border-radius: 8px;
            padding: 28px;
            min-height: 220px;
            position: relative;
            overflow: hidden;
            background-image:
                linear-gradient(rgba(127, 255, 0, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(127, 255, 0, 0.08) 1px, transparent 1px);
            background-size: 32px 32px;
        }

        .contact-map__label {
            font-family: 'Geist Mono', monospace;
            font-size: 10px;
            color: var(--lime-deep);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
        }

        .contact-map__title {
            font-size: 17px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 8px;
        }

        .contact-map__list {
            list-style: none;
            font-size: 14px;
            color: var(--gray-text);
            line-height: 1.8;
        }

        .contact-hours {
            background: var(--paper);
            border: 1px solid var(--gray-line);
            border-radius: 8px;
            padding: 24px 28px;
            box-shadow: var(--shadow-card);
            margin-top: 12px;
        }

        .contact-hours__row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            font-size: 14px;
            color: var(--gray-text);
            border-bottom: 1px solid var(--gray-line);
        }

        .contact-hours__row:last-child { border-bottom: none; }

        .contact-hours__day {
            color: var(--ink);
            font-weight: 600;
        }

        @media (max-width: 1100px) {
            .contact__grid,
            .about__intro-grid,
            .service-detail__grid,
            .services-teaser__grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .about__credentials {
                grid-template-columns: repeat(2, 1fr);
            }
            .portfolio-teaser__grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .page-hero {
                padding: calc(var(--nav-height) + 48px) 24px 56px;
            }
            .contact-form,
            .about__credential,
            .reviews-featured {
                padding: 28px 24px;
            }
            .reviews-featured__quote {
                font-size: 20px;
            }
            .about__credentials {
                grid-template-columns: 1fr;
            }
            .portfolio-teaser__grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== PHASE 3: PROJECT DETAIL PAGE ===== */

        .page-project {
            background: var(--paper);
        }

        .page-project__breadcrumb {
            max-width: 1400px;
            margin: 0 auto;
            padding: calc(var(--nav-height) + 32px) 56px 0;
            font-family: 'Geist Mono', monospace;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gray-text-soft);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .page-project__breadcrumb a {
            color: var(--gray-text);
            transition: color 0.25s var(--easing);
        }

        .page-project__breadcrumb a:hover {
            color: var(--lime-deep);
        }

        .page-project__breadcrumb-sep {
            color: var(--gray-text-soft);
        }

        /* Hero — full-width image with overlay copy */
        .page-project__hero {
            position: relative;
            margin-top: 24px;
            padding: 0 56px 80px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-project__hero-image-wrap {
            width: 100%;
            aspect-ratio: 16/9;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: var(--shadow-card-hover);
            margin-bottom: 36px;
        }

        .page-project__hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: contrast(1.05) saturate(1.05);
        }

        .page-project__hero-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .page-project__year-badge {
            font-family: 'Geist Mono', monospace;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--ink);
            background: var(--lime);
            padding: 6px 12px;
            border-radius: 100px;
        }

        .page-project__type-tag {
            font-family: 'Geist Mono', monospace;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gray-text);
            border: 1px solid var(--gray-line);
            padding: 6px 12px;
            border-radius: 100px;
        }

        .page-project__title {
            font-size: clamp(40px, 6vw, 88px);
            font-weight: 900;
            line-height: 0.95;
            letter-spacing: -0.03em;
            color: var(--ink);
            margin-bottom: 12px;
        }

        .page-project__location {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-size: 22px;
            color: var(--gray-text);
        }

        /* Detail grid — description left, scope/products right */
        .page-project__detail-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .page-project__description p {
            font-size: 18px;
            line-height: 1.7;
            color: var(--gray-text);
        }

        .page-project__sidebar {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .page-project__spec-block {
            background: var(--paper);
            border: 1px solid var(--gray-line);
            border-radius: 8px;
            padding: 28px 32px;
            box-shadow: var(--shadow-card);
        }

        .page-project__spec-title {
            font-family: 'Geist Mono', monospace;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--lime-deep);
            margin-bottom: 16px;
        }

        .page-project__scope-list,
        .page-project__products-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .page-project__scope-list li {
            font-size: 14px;
            line-height: 1.5;
            color: var(--ink);
            padding-left: 22px;
            position: relative;
        }

        .page-project__scope-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            width: 14px;
            height: 14px;
            background: var(--lime);
            border-radius: 50%;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 8px;
        }

        .page-project__products-list li {
            font-size: 14px;
            line-height: 1.5;
            color: var(--ink);
            padding-left: 14px;
            border-left: 2px solid var(--lime);
        }

        /* Gallery */
        .page-project__gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .page-project__gallery-item {
            margin: 0;
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 4/3;
            box-shadow: var(--shadow-card);
        }

        .page-project__gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: contrast(1.05) saturate(1.05);
            transition: transform 0.8s var(--easing);
        }

        .page-project__gallery-item:hover img {
            transform: scale(1.04);
        }

        /* Nav row at bottom */
        .page-project__nav-row {
            display: flex;
            justify-content: center;
            margin-top: 32px;
        }

        .page-project__back {
            font-family: 'Geist', sans-serif;
            font-weight: 600;
            font-size: 14px;
            color: var(--gray-text);
            border-bottom: 1px solid var(--gray-line);
            padding: 8px 0;
            transition: color 0.25s var(--easing), border-color 0.25s var(--easing);
        }

        .page-project__back:hover {
            color: var(--lime-deep);
            border-color: var(--lime-deep);
        }

        /* Always-visible eyebrow line on project page (no scroll-trigger needed) */
        .in-view-static {
            transform: scaleX(1) !important;
        }

        /* Portfolio tile becomes anchor — strip default underline */
        a.portfolio__item {
            color: inherit;
            text-decoration: none;
            display: block;
        }

        @media (max-width: 1100px) {
            .page-project__detail-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 900px) {
            .page-project__breadcrumb,
            .page-project__hero {
                padding-left: 24px;
                padding-right: 24px;
            }
        }

        @media (max-width: 600px) {
            .page-project__breadcrumb {
                font-size: 10px;
                gap: 8px;
            }
            .page-project__hero-image-wrap {
                aspect-ratio: 4/3;
                border-radius: 8px;
            }
            .page-project__gallery {
                grid-template-columns: 1fr;
            }
            .page-project__spec-block {
                padding: 24px;
            }
        }

        /* ===== PHASE 4: FOOTER REBUILD + READABILITY + DISCLAIMER ===== */

        /* Italic display headline readability fix
           Instrument Serif's italic weight ceiling is 400, so we increase visual
           presence with size + tracking instead of weight. Targets accent-word
           italics in display headlines, not long-form italic body copy. */
        .hero__headline em,
        .section__headline em,
        .page-hero__headline em,
        .page-project__title em,
        .referral__headline .lime,
        .final-cta__headline em {
            font-weight: 500; /* falls back to 400 if not in font; harmless */
            font-size: 1.06em;
            letter-spacing: -0.01em;
        }

        /* ===== CTA BAND (above footer, all pages except contact) =====
           Existing .final-cta rules already handle the lime gradient, noise
           overlay, and ink text. Phase 4 just standardizes copy on every page
           — no new CSS needed for the band itself. */

        /* ===== FOOTER REBUILD (Base44 1:1 — dark bg, lime accents) ===== */
        .footer {
            background: var(--ink);
            color: rgba(255, 255, 255, 0.65);
            padding: 80px 56px 32px;
            border-top: none;
        }

        .footer__container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer__grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            gap: 56px;
            margin-bottom: 56px;
        }

        .footer__brand-logo {
            height: 64px;
            width: auto;
            display: block;
            margin-bottom: 20px;
        }

        .footer__brand-tagline {
            font-family: 'Geist', sans-serif;
            font-style: normal;
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 16px;
            max-width: 320px;
        }

        .footer__brand-license {
            font-family: 'Geist Mono', monospace;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.45);
        }

        .footer__col-title {
            font-family: 'Geist Mono', monospace;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--lime);
            margin-bottom: 20px;
        }

        .footer__links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer__links a,
        .footer__links span {
            font-family: 'Geist', sans-serif;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.25s var(--easing);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer__links a:hover,
        .footer__links a:focus-visible {
            color: var(--lime);
        }

        .footer__contact-row {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 20px;
        }

        .footer__contact-row a {
            font-family: 'Geist', sans-serif;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: color 0.25s var(--easing);
        }

        .footer__contact-row a:hover,
        .footer__contact-row a:focus-visible {
            color: var(--lime);
        }

        .footer__contact-icon {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            color: var(--lime);
        }

        .footer__social-row {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
        }

        .footer__social-link {
            width: 36px;
            height: 36px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.25s var(--easing);
        }

        .footer__social-link:hover,
        .footer__social-link:focus-visible {
            background: var(--lime);
            border-color: var(--lime);
            color: var(--ink);
            transform: translateY(-2px);
        }

        .footer__social-link svg {
            width: 16px;
            height: 16px;
            display: block;
        }

        .footer__free-estimate-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--lime);
            color: var(--ink);
            font-family: 'Geist', sans-serif;
            font-weight: 600;
            font-size: 14px;
            padding: 12px 24px;
            border-radius: 100px;
            letter-spacing: 0.02em;
            transition: all 0.25s var(--easing);
        }

        .footer__free-estimate-btn:hover,
        .footer__free-estimate-btn:focus-visible {
            background: var(--lime-bright);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(127, 255, 0, 0.25);
        }

        .footer__divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin-bottom: 24px;
        }

        .footer__bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

        .footer__copyright,
        .footer__legal {
            font-family: 'Geist Mono', monospace;
            font-size: 10px;
            color: rgba(255, 255, 255, 0.45);
            letter-spacing: 1px;
        }

        @media (max-width: 1100px) {
            .footer__grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 600px) {
            .footer {
                padding: 64px 24px 24px;
            }
            .footer__grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .footer__bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
        }

        /* ===== VIDEO POSTER (placeholder hook for post-merge swap) ===== */
        .video-poster {
            background-image: url('./video-thumbnail.jpg');
            background-size: cover;
            background-position: center;
        }

        /* ===== PORTFOLIO DISCLAIMER (now on portfolio.html + project.html) ===== */
        .portfolio-disclaimer {
            max-width: 800px;
            margin: 64px auto 0;
            text-align: center;
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-size: 14px;
            line-height: 1.6;
            color: var(--gray-text-soft);
            padding: 0 24px;
        }
