    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --gold: #D0B870;
        --gold-hi: #F0E0A8;
        --gold-mid: #C4A862;
        --gold-deep: #8A6C38;
        --gold-brush: linear-gradient(108deg,
                #C4922A 0%, #E8C84A 10%, #F5E080 22%, #EDD060 32%, #D4AA3C 44%,
                #F0D870 54%, #FDF0A0 62%, #E8C84A 72%, #C8A030 84%, #E4C460 92%, #F2DC88 100%);
        --gold-satin: linear-gradient(108deg,
                #C4A862 0%, #DEC880 18%, #F0E0A8 30%, #E8D090 42%, #D0B468 55%,
                #E4CA88 68%, #F4E4B4 80%, #DCC07A 92%, #C8A860 100%);
        --gold-brush2: linear-gradient(108deg, #C4A862 0%, #E4CA88 25%, #F4E4B4 50%, #E4CA88 75%, #C4A862 100%);
        --black: #060606;
        --dark: #0E0E0E;
        --dark2: #131313;
        --dark3: #191919;
        --white: #F0EDE6;
        --off: #F0EDE6;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        background: var(--black);
        color: var(--white);
        font-family: 'Barlow', sans-serif;
        font-weight: 300;
        overflow-x: hidden;
    }

    ::-webkit-scrollbar {
        width: 3px
    }

    ::-webkit-scrollbar-track {
        background: var(--black)
    }

    ::-webkit-scrollbar-thumb {
        background: var(--gold-deep)
    }

    img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    a {
        color: inherit;
    }

    /* ════ NAV (matches main site) ════ */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 200;
        height: 82px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3.5rem;
        background: #060606;
        border-bottom: 1px solid rgba(200, 170, 114, 0.25);
        box-shadow: 0 2px 40px rgba(0, 0, 0, 0.8);
    }

    .nav-logo {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    .nav-logo-img {
        height: 72px;
        width: auto;
        display: block;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 2rem;
        list-style: none;
    }

    .nav-links a {
        color: rgba(255, 255, 255, .9);
        text-decoration: none;
        font-size: .83rem;
        font-weight: 500;
        letter-spacing: .16em;
        text-transform: uppercase;
        transition: color .2s;
    }

    .nav-links a:hover {
        color: var(--gold-hi);
    }

    .nav-links a.current {
        color: var(--gold);
    }

    .nav-phone {
        color: var(--gold) !important;
        font-weight: 600 !important;
        letter-spacing: .08em !important;
        font-size: .83rem !important;
    }

    .nav-cta {
        background: var(--gold-satin) !important;
        -webkit-text-fill-color: #060606 !important;
        color: #060606 !important;
        padding: .5rem 1.4rem;
        font-size: .83rem !important;
        font-weight: 700 !important;
        transition: opacity .2s !important;
    }

    .nav-cta:hover {
        opacity: .82;
    }

    /* ════ SHARED ════ */
    section {
        position: relative;
        z-index: 1;
    }

    .wrap {
        max-width: 1360px;
        margin: 0 auto;
        padding: 0 3.5rem;
    }

    .eyebrow {
        display: flex;
        align-items: center;
        gap: .85rem;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .87rem;
        font-weight: 600;
        letter-spacing: .4em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 1rem;
    }

    .eyebrow::before {
        content: '';
        display: block;
        width: 28px;
        height: 1px;
        background: var(--gold-brush2);
        flex-shrink: 0;
    }

    .s-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(2.4rem, 3.7vw, 3.9rem);
        font-weight: 300;
        line-height: 1.05;
        color: var(--white);
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(22px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    /* ── Buttons ── */
    .btn-gold {
        background: var(--gold-satin);
        color: #060606;
        -webkit-text-fill-color: #060606;
        text-decoration: none;
        padding: .92rem 2.3rem;
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 700;
        font-size: .88rem;
        letter-spacing: .22em;
        text-transform: uppercase;
        transition: opacity .2s, transform .15s;
        display: inline-block;
        border: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .btn-gold::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, .08);
        opacity: 0;
        transition: opacity .2s;
    }

    .btn-gold:hover::after {
        opacity: 1;
    }

    .btn-gold:hover {
        transform: translateY(-1px);
    }

    .btn-outline {
        color: rgba(255, 255, 255, .85);
        text-decoration: none;
        padding: .92rem 2.3rem;
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 600;
        font-size: .88rem;
        letter-spacing: .22em;
        text-transform: uppercase;
        border: 1px solid rgba(200, 170, 114, .35);
        transition: border-color .2s, color .2s;
        display: inline-block;
    }

    .btn-outline:hover {
        border-color: var(--gold);
        color: var(--gold-hi);
    }

    /* ════ WORK HERO ════ */
    .wh {
        position: relative;
        overflow: hidden;
        background: var(--black);
        padding-top: 82px;
    }

    .wh-photo {
        position: relative;
        height: 64vh;
        min-height: 460px;
        overflow: hidden;
    }

    .wh-photo img {
        filter: brightness(.7) contrast(1.08) saturate(1.05);
    }

    .wh-photo::after {
        content: '';
        position: absolute;
        inset: 0;
        background:
            linear-gradient(to top, var(--black) 0%, rgba(6, 6, 6, .55) 38%, rgba(6, 6, 6, .15) 65%, rgba(6, 6, 6, .35) 100%),
            linear-gradient(to right, rgba(6, 6, 6, .85) 0%, rgba(6, 6, 6, .15) 45%, transparent 70%);
    }

    .wh-content {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        bottom: 0;
        z-index: 4;
        width: 100%;
        padding-bottom: 3.35rem;
    }

    .wh-content.wrap {
        padding-left: 3.5rem;
        padding-right: 3.5rem;
    }

    .wh-eyebrow {
        display: flex;
        align-items: center;
        gap: .85rem;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .78rem;
        font-weight: 600;
        letter-spacing: .42em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 1.3rem;
        animation: fadeUp .9s ease both;
    }

    .wh-eyebrow::before {
        content: '';
        display: block;
        width: 36px;
        height: 1px;
        background: var(--gold-brush2);
        flex-shrink: 0;
    }

    .wh-title {
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 700;
        font-size: clamp(2.6rem, 5.4vw, 5.4rem);
        text-transform: uppercase;
        line-height: .95;
        letter-spacing: .015em;
        color: var(--white);
        text-shadow: 0 2px 30px rgba(0, 0, 0, .6);
        max-width: 16ch;
        animation: fadeUp .9s ease .08s both;
    }

    .wh-title .brushed {
        background: var(--gold-brush);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .wh-sub {
        margin-top: 1.4rem;
        font-size: 1.04rem;
        line-height: 1.85;
        color: var(--white);
        font-weight: 300;
        max-width: 560px;
        text-shadow: 0 1px 8px rgba(0, 0, 0, .6);
        animation: fadeUp .9s ease .16s both;
    }

    .wh-cap {
        position: absolute;
        right: 3.5rem;
        bottom: 1.6rem;
        z-index: 4;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .74rem;
        letter-spacing: .2em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .55);
        animation: fadeUp .9s ease .24s both;
    }

    /* Facts strip beneath hero */
    .wh-facts {
        display: flex;
        margin-top: 0;
        background: var(--dark);
        border-top: 1px solid rgba(200, 170, 114, .15);
    }

    .wf-cell {
        flex: 1;
        padding: 1.5rem 2rem;
        border-right: 1px solid rgba(200, 170, 114, .12);
    }

    .wf-cell:last-child {
        border-right: none;
    }

    .wf-lbl {
        font-size: .72rem;
        letter-spacing: .24em;
        text-transform: uppercase;
        color: var(--gold-mid);
        margin-bottom: .35rem;
    }

    .wf-val {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1.15rem;
        font-weight: 600;
        letter-spacing: .02em;
        color: var(--white);
        text-transform: uppercase;
    }

    /* ════ MARQUEE ════ */
    .marquee-wrap {
        overflow: hidden;
        padding: 1.1rem 0;
        background: var(--gold-satin);
    }

    .marquee-track {
        display: flex;
        animation: marquee 32s linear infinite;
        white-space: nowrap;
    }

    @keyframes marquee {
        from {
            transform: translateX(0)
        }

        to {
            transform: translateX(-50%)
        }
    }

    .marquee-item {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .95rem;
        font-weight: 700;
        letter-spacing: .3em;
        text-transform: uppercase;
        color: rgba(0, 0, 0, 1);
        padding: 0 2.5rem;
    }

    .marquee-sep {
        color: rgba(6, 6, 6, .3);
        padding: 0;
    }

    /* ════ FEATURED PROJECTS ════ */
    .proj-section {
        padding: 7rem 0;
        background: var(--black);
    }

    .proj-hdr {
        margin-bottom: 3.5rem;
        max-width: 640px;
    }

    .proj-hdr p {
        margin-top: 1.1rem;
        font-size: 1rem;
        line-height: 1.9;
        color: rgba(255, 255, 255, .82);
        font-weight: 300;
    }

    .proj-card {
        background: var(--dark2);
        position: relative;
        overflow: hidden;
        margin-bottom: 1px;
    }

    .proj-card::after {
        content: attr(data-tail);
        position: absolute;
        right: 1.5rem;
        top: 1rem;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 6.5rem;
        font-weight: 900;
        letter-spacing: -.02em;
        line-height: 1;
        background: var(--gold-brush);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        opacity: .06;
        pointer-events: none;
    }

    .proj-inner {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr 1.25fr;
        gap: 3.5rem;
        padding: 3.5rem;
        align-items: center;
    }

    .proj-inner.rev {
        grid-template-columns: 1.25fr 1fr;
    }

    .proj-inner.rev .proj-media {
        order: 2;
    }

    .proj-badge {
        display: inline-flex;
        align-items: center;
        border: 1px solid rgba(200, 170, 114, .28);
        padding: .32rem .85rem;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .76rem;
        letter-spacing: .26em;
        text-transform: uppercase;
        color: var(--gold-mid);
        margin-bottom: 1.1rem;
    }

    .proj-tail {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(2.4rem, 3.4vw, 3.4rem);
        font-weight: 300;
        color: var(--white);
        line-height: 1.05;
        margin-bottom: .15rem;
    }

    .proj-type {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 1.4rem;
    }

    .proj-scope {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        gap: .55rem;
        margin-bottom: 1.5rem;
    }

    .proj-scope li {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .76rem;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--white);
        background: rgba(200, 170, 114, .08);
        border: 1px solid rgba(200, 170, 114, .2);
        padding: .4rem .8rem;
    }

    .proj-desc {
        font-size: .98rem;
        line-height: 1.9;
        color: rgba(255, 255, 255, .82);
        font-weight: 300;
    }

    .proj-desc+.proj-desc {
        margin-top: .9rem;
    }

    .proj-media {
        position: relative;
    }

    .pm-single {
        aspect-ratio: 4/3;
        overflow: hidden;
        position: relative;
    }

    .pm-ba {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: rgba(200, 170, 114, .15);
    }

    .pm-ba figure {
        aspect-ratio: 3/4;
        position: relative;
        overflow: hidden;
        margin: 0;
    }

    .pm-ba figcaption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to top, rgba(6, 6, 6, .92), transparent);
        color: var(--white);
        padding: 2.2rem .9rem .7rem;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .7rem;
        letter-spacing: .14em;
        text-transform: uppercase;
    }

    .pm-ba figcaption b {
        display: block;
        color: var(--gold);
        font-weight: 600;
        letter-spacing: .2em;
        margin-bottom: .15rem;
    }

    .pm-grid4 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 1px;
        background: rgba(200, 170, 114, .15);
        aspect-ratio: 1/1;
    }

    .pm-grid4 figure {
        position: relative;
        overflow: hidden;
        margin: 0;
    }

    .pm-grid4 figcaption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to top, rgba(6, 6, 6, .9), transparent);
        color: var(--white);
        padding: 1.6rem .6rem .5rem;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .64rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .pm-grid4 figcaption b {
        display: block;
        color: var(--gold);
        font-weight: 600;
        letter-spacing: .16em;
    }

    /* ── For-sale band (reuses AOG-band language) ── */
    .sale-band {
        position: relative;
        overflow: hidden;
        background: var(--gold-satin);
        margin-top: 1px;
    }

    .sale-band::before {
        content: 'FOR SALE';
        position: absolute;
        left: -1rem;
        top: 50%;
        transform: translateY(-50%);
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 9rem;
        font-weight: 900;
        color: rgba(6, 6, 6, .055);
        line-height: 1;
        pointer-events: none;
        white-space: nowrap;
    }

    .sale-inner {
        max-width: 1360px;
        margin: 0 auto;
        padding: 2.5rem 3.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        position: relative;
        z-index: 1;
        flex-wrap: wrap;
    }

    .sale-label {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .76rem;
        font-weight: 700;
        letter-spacing: .34em;
        text-transform: uppercase;
        color: rgba(6, 6, 6, .7);
        margin-bottom: .35rem;
    }

    .sale-title {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: clamp(1.3rem, 2vw, 1.9rem);
        font-weight: 700;
        text-transform: uppercase;
        color: var(--black);
        letter-spacing: .01em;
    }

    .sale-cta {
        display: inline-block;
        background: var(--black);
        color: var(--gold-hi);
        text-decoration: none;
        padding: .85rem 2rem;
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 700;
        font-size: .85rem;
        letter-spacing: .22em;
        text-transform: uppercase;
        transition: opacity .2s;
        flex-shrink: 0;
    }

    .sale-cta:hover {
        opacity: .82;
    }

    /* ════ CAPABILITY SECTIONS ════ */
    .cap-section {
        padding: 7rem 0;
    }

    .cap-section.alt {
        background: var(--dark);
    }

    .cap-hdr {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 3.5rem;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .cap-hdr p {
        max-width: 320px;
        font-size: .88rem;
        color: rgba(255, 255, 255, .82);
        line-height: 1.8;
        font-weight: 300;
    }

    .gallery {
        display: grid;
        gap: 1px;
        background: rgba(200, 170, 114, .1);
    }

    .g3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .g4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .g2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .gtile {
        position: relative;
        overflow: hidden;
        background: var(--dark2);
        aspect-ratio: 3/4;
    }

    .gtile.wide {
        aspect-ratio: 4/3;
    }

    .gtile.pano {
        aspect-ratio: 21/9;
    }

    .gtile img {
        transition: transform .6s ease, filter .6s ease;
        filter: brightness(.92) saturate(1.02);
    }

    .gtile:hover img {
        transform: scale(1.045);
        filter: brightness(1) saturate(1.08);
    }

    .gtile figcaption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to top, rgba(6, 6, 6, .92) 0%, rgba(6, 6, 6, .55) 45%, transparent 100%);
        color: var(--white);
        padding: 2.4rem .9rem .8rem;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .72rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .gtile figcaption b {
        display: block;
        color: var(--gold);
        font-weight: 600;
        letter-spacing: .2em;
        font-size: .68rem;
        margin-bottom: .2rem;
    }

    /* ════ CLOSE ════ */
    .close-section {
        padding: 7.5rem 0;
        background: var(--black);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .close-section::before {
        content: '305';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 22rem;
        font-weight: 900;
        color: rgba(200, 170, 114, .03);
        line-height: 1;
        pointer-events: none;
        white-space: nowrap;
    }

    .close-inner {
        position: relative;
        z-index: 1;
        max-width: 640px;
        margin: 0 auto;
    }

    .close-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(2.4rem, 4.2vw, 3.8rem);
        font-weight: 300;
        color: var(--white);
        line-height: 1.1;
        margin: 1rem 0 1.2rem;
    }

    .close-sub {
        font-size: 1rem;
        line-height: 1.9;
        color: rgba(255, 255, 255, .82);
        font-weight: 300;
        margin-bottom: 2.2rem;
    }

    .close-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* ════ FOOTER ════ */
    footer {
        background: var(--black);
        border-top: 1px solid rgba(200, 170, 114, .1);
        padding: 0.75rem 3.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-brand {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .9rem;
        font-weight: 700;
        letter-spacing: .2em;
        text-transform: uppercase;
        background: var(--gold-brush);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .footer-nav {
        display: flex;
        gap: 1.75rem;
        list-style: none;
    }

    .footer-nav a {
        font-size: .87rem;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 1);
        text-decoration: none;
        transition: color .2s;
    }

    .footer-nav a:hover {
        color: var(--gold);
    }

    .footer-copy {
        font-size: .87rem;
        color: rgba(255, 255, 255, 0.85);
    }

    /* ════ RESPONSIVE ════ */
    @media(max-width:1024px) {
        nav {
            padding: 0 1.75rem;
        }

        .wrap {
            padding: 0 1.75rem;
        }

        .wh-content {
            padding-bottom: 2.6rem;
        }

        .wh-content.wrap {
            padding-left: 1.75rem;
            padding-right: 1.75rem;
        }

        .wh-cap {
            right: 1.75rem;
        }

        .wh-facts {
            flex-wrap: wrap;
        }

        .wf-cell {
            flex: 1 1 50%;
            border-bottom: 1px solid rgba(200, 170, 114, .12);
        }

        .proj-inner,
        .proj-inner.rev {
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 2.5rem 1.75rem;
        }

        .proj-inner.rev .proj-media {
            order: 0;
        }

        .proj-card::after {
            font-size: 4rem;
        }

        .g4 {
            grid-template-columns: repeat(2, 1fr);
        }

        .g3 {
            grid-template-columns: repeat(2, 1fr);
        }

        .cap-hdr {
            flex-direction: column;
            align-items: flex-start;
        }

        .sale-inner {
            padding: 2.2rem 1.75rem;
        }

        footer {
            padding: 1.5rem 1.75rem;
        }
    }

    @media(max-width:768px) {
        .nav-links {
            display: none;
        }

        .g4,
        .g3,
        .g2 {
            grid-template-columns: 1fr;
        }

        .pm-grid4 {
            grid-template-columns: 1fr;
            grid-template-rows: none;
            aspect-ratio: auto;
        }

        .pm-grid4 figure {
            aspect-ratio: 4/3;
        }

        .pm-ba {
            grid-template-columns: 1fr;
        }

        .pm-ba figure {
            aspect-ratio: 4/3;
        }

        .wf-cell {
            flex: 1 1 100%;
        }

        footer {
            flex-direction: column;
            text-align: center;
        }

        .footer-nav {
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .close-section::before {
            font-size: 11rem;
        }
    }

    /* ══ QUOTE MODAL (matches main site) ══ */
    .modal-overlay {
        position: fixed;
        inset: 0;
        z-index: 9000;
        background: rgba(0, 0, 0, .78);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s ease;
    }

    .modal-overlay.open {
        opacity: 1;
        pointer-events: all;
    }

    .modal-box {
        background: #0e0e0e;
        border: 1.5px solid #C4A862;
        width: min(560px, 94vw);
        padding: 2.4rem 2.6rem 2rem;
        position: relative;
        transform: translateY(20px);
        transition: transform .35s ease;
        border-radius: 3px;
        box-shadow: 0 0 60px rgba(196, 168, 98, .12);
    }

    .modal-overlay.open .modal-box {
        transform: translateY(0);
    }

    .modal-close {
        position: absolute;
        top: 1rem;
        right: 1.2rem;
        background: none;
        border: none;
        cursor: pointer;
        color: rgba(255, 255, 255, .45);
        font-size: 1.3rem;
        line-height: 1;
        transition: color .2s;
        padding: 0;
        font-family: sans-serif;
    }

    .modal-close:hover {
        color: #D0B870;
    }

    .modal-eyebrow-row {
        display: flex;
        align-items: center;
        gap: .7rem;
        margin-bottom: .55rem;
    }

    .modal-eyebrow-line {
        width: 32px;
        height: 1.5px;
        background: linear-gradient(to right, #C4A862, #E8C84A);
    }

    .modal-eyebrow-text {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .85rem;
        font-weight: 600;
        letter-spacing: .38em;
        text-transform: uppercase;
        color: #C4A862;
    }

    .modal-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.5rem;
        font-weight: 300;
        color: #F0EDE6;
        line-height: 1.1;
        margin-bottom: .55rem;
    }

    .modal-subtitle {
        font-size: .92rem;
        color: rgba(255, 255, 255, .55);
        margin-bottom: 1.6rem;
        font-family: 'Barlow', sans-serif;
        font-weight: 300;
    }

    .modal-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .85rem 1rem;
        margin-bottom: .85rem;
    }

    .modal-field {
        display: flex;
        flex-direction: column;
        gap: .32rem;
    }

    .modal-field.full {
        grid-column: 1 / -1;
    }

    .modal-label {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .78rem;
        font-weight: 400;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: #ffffff;
    }

    .modal-input,
    .modal-textarea {
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(196, 168, 98, .3);
        border-radius: 2px;
        color: #F0EDE6;
        font-family: 'Barlow', sans-serif;
        font-size: .95rem;
        padding: .72rem 1rem;
        outline: none;
        transition: border-color .2s;
        width: 100%;
        box-sizing: border-box;
    }

    .modal-input:focus,
    .modal-textarea:focus {
        border-color: rgba(196, 168, 98, .65);
    }

    .modal-input::placeholder,
    .modal-textarea::placeholder {
        color: rgba(255, 255, 255, .2);
    }

    .modal-textarea {
        resize: vertical;
        min-height: 100px;
        line-height: 1.55;
    }

    .modal-submit {
        width: 100%;
        margin-top: .9rem;
        background: linear-gradient(108deg, #C4A862 0%, #DEC880 18%, #F0E0A8 30%, #E8D090 42%, #D0B468 55%, #E4CA88 68%, #F4E4B4 80%, #DCC07A 92%, #C8A860 100%);
        border: none;
        cursor: pointer;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .92rem;
        font-weight: 700;
        letter-spacing: .25em;
        text-transform: uppercase;
        color: #060606;
        padding: 1rem 2rem;
        transition: opacity .2s, transform .15s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .6rem;
    }

    .modal-submit:hover {
        opacity: .88;
    }

    .modal-submit:active {
        transform: scale(.98);
    }

    .modal-aog {
        text-align: center;
        margin-top: 1rem;
        font-family: 'Barlow', sans-serif;
        font-size: .85rem;
        color: #ffffff;
        letter-spacing: .04em;
    }

    .modal-aog a {
        color: #ffffff;
        text-decoration: none;
    }

    .modal-aog a:hover {
        color: #D0B870;
    }

    /* ════ BRAND POLISH / MOBILE NAV ════ */
    .mobile-menu-btn {
        display: none;
        background: transparent;
        border: 1px solid rgba(200, 170, 114, .28);
        color: var(--gold);
        width: 42px;
        height: 38px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1.15rem;
        line-height: 1;
    }

    .mobile-menu {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        z-index: 190;
        background: #090909;
        border-bottom: 1px solid rgba(200, 170, 114, .22);
        padding: 1rem 1.75rem 1.35rem;
        display: none;
        box-shadow: 0 18px 40px rgba(0, 0, 0, .55);
    }

    .mobile-menu.open {
        display: block;
    }

    .mobile-menu a {
        display: block;
        padding: .85rem 0;
        text-decoration: none;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .92rem;
        font-weight: 600;
        letter-spacing: .2em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .92);
        border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .mobile-menu a:last-child {
        border-bottom: 0;
        color: var(--gold);
    }

    .proj-card {
        border: 1px solid rgba(200, 170, 114, .06);
    }

    .proj-card:hover {
        border-color: rgba(200, 170, 114, .15);
    }

    .proj-card .proj-media img {
        transition: transform .7s ease, filter .7s ease;
    }

    .proj-card:hover .proj-media img {
        transform: scale(1.018);
        filter: brightness(.98) saturate(1.05);
    }

    .wh-photo::before {
        content: '';
        position: absolute;
        inset: auto 0 0 0;
        height: 1px;
        z-index: 3;
        background: var(--gold-brush2);
        opacity: .35;
    }

    .wh-facts {
        position: relative;
        z-index: 4;
    }

    .cap-section {
        scroll-margin-top: 82px;
    }

    .proj-section {
        scroll-margin-top: 82px;
    }

    @media(max-width:768px) {
        .mobile-menu-btn {
            display: flex;
        }

        .wh-photo {
            height: 58vh;
            min-height: 430px;
        }

        .wh-cap {
            display: none;
        }

        .wh-title {
            max-width: 12ch;
        }

        .proj-inner,
        .proj-inner.rev {
            padding: 2rem 1.25rem;
        }

        .proj-tail {
            font-size: 2.45rem;
        }

        .sale-inner {
            align-items: flex-start;
        }
    }


    /* Hero clipping fix */
    .wh-photo {
        isolation: isolate;
    }

    .wh-content {
        box-sizing: border-box;
    }

    .wh-sub {
        padding-bottom: .15rem;
    }

    @media(max-width:768px) {
        .wh-content {
            padding-bottom: 2.2rem;
        }

        .wh-content.wrap {
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }
    }