    @import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap");
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    :root {
        --cream: #f4f4f2;
        --white: #ffffff;
        --black: #141414;
        --dark: #181818;
        --blue: #0d8bd8;
        --g1: #e8e8e8;
        --g2: #c0c0c0;
        --g3: #888888;
        --g4: #444444;
        --stone: #9a8f84;
        --serif: "Cormorant Garamond", Georgia, serif;
        --sans: "DM Sans", system-ui, sans-serif;
        /* Max content width — gives generous breathing room on large screens */
        --max: 1320px;
        --pad: clamp(20px, 3vw, 48px);
        --split-pad: clamp(56px, 6vw, 88px);
    }
    .pg {
        background: var(--cream);
        color: var(--black);
        font-family: var(--sans);
        overflow-x: clip;
        width: 100%;
    }
    .media-slot {
        position: absolute;
        inset: 0;
        background: var(--slot-bg, #9a9a9a);
        overflow: hidden;
    }
    .media-slot img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .media-slot.has-image {
        background: transparent;
    }
    .media-slot.has-image::before {
        display: none;
    }

    /* ── INNER wrapper — centres content and caps width ── */
    .inner {
        width: 100%;
        max-width: var(--max);
        margin: 0 auto;
        padding-left: var(--pad);
        padding-right: var(--pad);
    }

    /* ── HERO ── */
    .hero {
        display: grid;
        grid-template-columns: 50% 50%;
        min-height: 88vh;
        max-height: 900px;
        position: relative;
        overflow: hidden;
    }
    .hero-left {
        background: var(--cream);
        /* left padding is the global gutter, right side overflows into photo */
        padding: 56px calc(var(--pad) + 72px) 56px var(--pad);
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 36px;
        position: relative;
        z-index: 2;
        overflow: visible;
    }

    /*
  HERO HEADLINE — the key typographic treatment:
  Roman Cormorant for the structural words,
  italic for the expressive words.
  Both at the same weight (300) so the contrast
  is purely in the roman vs italic axis.
*/
    .hero-h {
        font-family: var(--serif);
        font-weight: 300;
        font-size: clamp(48px, 6.2vw, 100px);
        line-height: 0.94;
        letter-spacing: -0.015em;
        color: var(--black);
        width: 100%;
        position: relative;
        z-index: 3;
    }
    .hero-line {
        display: block;
        white-space: nowrap;
    }
    /* roman words */
    .hero-h .r {
        font-style: normal;
    }
    /* italic words */
    .hero-h .i {
        font-style: italic;
    }

    .hero-sub-block {
        display: flex;
        flex-direction: column;
        gap: 22px;
        position: relative;
        z-index: 3;
    }
    .hero-sub {
        font-size: 16px;
        font-weight: 300;
        line-height: 1.8;
        color: var(--g3);
        max-width: 48ch; /* default reading width unless the copy is sharing space with a visual */
    }
    .hero-btns {
        display: flex;
        gap: 12px;
        align-items: center;
        flex-wrap: wrap;
    }
    .btn-primary {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        background: var(--black);
        color: var(--cream);
        padding: 14px 28px;
        border-radius: 999px;
        text-decoration: none;
        white-space: nowrap;
        border: 1px solid var(--black);
        transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
    }
    .btn-secondary {
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 0.13em;
        text-transform: uppercase;
        background: transparent;
        color: var(--black);
        padding: 13px 24px;
        border-radius: 999px;
        text-decoration: none;
        white-space: nowrap;
        border: 1.5px solid var(--g2);
        transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
    }
    .btn-primary:hover,
    .btn-primary:focus-visible {
        border-color: var(--stone);
        background: var(--stone);
        color: var(--white);
        outline: none;
        transform: translateY(-1px);
    }
    .btn-secondary:hover,
    .btn-secondary:focus-visible {
        border-color: var(--black);
        background: var(--black);
        color: var(--cream);
        outline: none;
        transform: translateY(-1px);
    }
    .hero-right {
        position: relative;
        overflow: hidden;
        background: #9a9a9a;
        z-index: 1;
    }
    .cbar {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(244, 244, 242, 0.97);
        padding: 15px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 4;
    }
    .cbar-name {
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--black);
    }
    .dots {
        display: flex;
        gap: 7px;
        align-items: center;
    }
    .dot {
        display: block;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--g2);
        border: none;
        padding: 0;
        cursor: pointer;
        appearance: none;
    }
    .dot.on {
        background: var(--black);
    }
    .slider-panel {
        position: relative;
        isolation: isolate;
    }
    .slider-stage {
        position: absolute;
        inset: 0;
        z-index: 0;
    }
    .slider-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 0.45s ease;
    }
    .slider-media {
        position: absolute;
        inset: 0;
        background: var(--slide-bg, #9a9a9a);
        overflow: hidden;
    }
    .slider-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .slider-slide.on {
        opacity: 1;
    }
    .slider-label {
        position: absolute;
        left: 24px;
        bottom: 72px;
        font-size: clamp(22px, 2.6vw, 44px);
        font-family: var(--serif);
        font-style: italic;
        font-weight: 300;
        line-height: 0.95;
        color: rgba(244, 244, 242, 0.9);
        z-index: 2;
        pointer-events: none;
        max-width: 10ch;
    }
    .slider-panel .cbar {
        z-index: 3;
    }

    /* STANDARD MEDIA HERO */
    .standard-hero {
        --standard-hero-x: flex-start;
        --standard-hero-y: flex-end;
        --standard-hero-text-align: left;
        --standard-hero-overlay: 0.42;
        position: relative;
        display: grid;
        min-height: 72svh;
        overflow: hidden;
        isolation: isolate;
        background: var(--dark);
    }
    .standard-hero--compact { min-height: 50svh; }
    .standard-hero--standard { min-height: 72svh; }
    .standard-hero--tall { min-height: 84svh; }
    .standard-hero--x-center {
        --standard-hero-x: center;
        --standard-hero-text-align: center;
    }
    .standard-hero--x-end {
        --standard-hero-x: flex-end;
        --standard-hero-text-align: right;
    }
    .standard-hero--y-start { --standard-hero-y: flex-start; }
    .standard-hero--y-center { --standard-hero-y: center; }
    .standard-hero--y-end { --standard-hero-y: flex-end; }
    .standard-hero--overlay-light { --standard-hero-overlay: 0.22; }
    .standard-hero--overlay-medium { --standard-hero-overlay: 0.42; }
    .standard-hero--overlay-dark { --standard-hero-overlay: 0.58; }
    .standard-hero-media,
    .standard-hero-media::after {
        position: absolute;
        inset: 0;
    }
    .standard-hero-media {
        z-index: -2;
        background: #777;
    }
    .standard-hero-media::after {
        z-index: 3;
        content: "";
        background: rgba(20, 20, 20, var(--standard-hero-overlay));
        pointer-events: none;
    }
    .standard-hero-media picture,
    .standard-hero-media img,
    .standard-hero-media video,
    .standard-hero-media iframe {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        border: 0;
        object-fit: cover;
        object-position: var(--standard-hero-focal-x, 50%) var(--standard-hero-focal-y, 50%);
    }
    .standard-hero-media iframe {
        width: 115%;
        height: 115%;
        inset: -7.5%;
    }
    .standard-hero-media video,
    .standard-hero-media iframe {
        z-index: 2;
        transition: opacity 0.2s ease;
    }
    .standard-hero.is-media-paused .standard-hero-media video,
    .standard-hero.is-media-paused .standard-hero-media iframe {
        opacity: 0;
    }
    .standard-hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        width: 100%;
        max-width: var(--max);
        min-height: inherit;
        flex-direction: column;
        align-items: var(--standard-hero-x);
        justify-content: var(--standard-hero-y);
        margin: 0 auto;
        padding: 54px var(--pad);
        text-align: var(--standard-hero-text-align);
    }
    .standard-hero-copy {
        display: flex;
        width: min(680px, 100%);
        flex-direction: column;
        align-items: var(--standard-hero-x);
    }
    .standard-hero-eyebrow {
        margin-bottom: 18px;
        font-size: 10px;
        font-weight: 500;
        text-transform: uppercase;
    }
    .standard-hero-title {
        margin: 0;
        font-family: var(--serif);
        font-size: 76px;
        font-weight: 300;
        line-height: 0.96;
    }
    .standard-hero-title em {
        font-weight: 300;
    }
    .standard-hero-dek {
        max-width: 54ch;
        margin-top: 22px;
        font-size: 16px;
        font-weight: 300;
        line-height: 1.75;
    }
    .standard-hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 26px;
    }
    .standard-hero--light {
        color: var(--cream);
    }
    .standard-hero--light .standard-hero-eyebrow,
    .standard-hero--light .standard-hero-dek {
        color: rgba(244, 244, 242, 0.78);
    }
    .standard-hero--light .btn-primary {
        border-color: var(--cream);
        background: var(--cream);
        color: var(--black);
    }
    .standard-hero--light .btn-secondary {
        border-color: rgba(244, 244, 242, 0.72);
        color: var(--cream);
    }
    .standard-hero--light .btn-primary:hover,
    .standard-hero--light .btn-primary:focus-visible,
    .standard-hero--light .btn-secondary:hover,
    .standard-hero--light .btn-secondary:focus-visible {
        border-color: var(--stone);
        background: var(--stone);
        color: var(--white);
    }
    .standard-hero-media-toggle {
        position: absolute;
        z-index: 4;
        right: var(--pad);
        bottom: 20px;
        display: none;
        min-width: var(--mobile-control-min, 44px);
        min-height: var(--mobile-control-min, 44px);
        align-items: center;
        justify-content: center;
        padding: 0 16px;
        border: 1px solid rgba(244, 244, 242, 0.6);
        border-radius: 999px;
        background: rgba(20, 20, 20, 0.62);
        color: var(--cream);
        font-family: inherit;
        font-size: 10px;
        font-weight: 500;
        text-transform: uppercase;
        cursor: pointer;
    }
    .standard-hero.has-video .standard-hero-media-toggle {
        display: inline-flex;
    }
    .standard-hero-media-toggle:focus-visible {
        outline: 1px solid var(--cream);
        outline-offset: 3px;
    }

    /* CONTACT / PROGRAM FORM */
    .contact-page .standard-hero {
        min-height: 50svh;
    }
    .program-form-section {
        padding: 84px 0;
        border-top: 1px solid var(--g1);
        scroll-margin-top: calc(var(--mobile-header-height, 64px) + 16px);
    }
    .program-form-layout {
        display: grid;
        grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
        gap: 1px;
        background: var(--g1);
    }
    .program-form-intro,
    .program-form-panel {
        background: var(--white);
    }
    .program-form-intro {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 42px;
        padding: 48px;
    }
    .program-form-title {
        max-width: 520px;
        margin: 0;
        font-family: var(--sans);
        font-size: 44px;
        font-weight: 400;
        line-height: 1.03;
    }
    .program-form-title em {
        font-family: var(--sans);
        font-weight: 300;
        font-style: normal;
    }
    .program-form-copy {
        max-width: 48ch;
        margin-top: 22px;
        color: var(--g3);
        font-size: 15px;
        font-weight: 300;
        line-height: 1.75;
    }
    .program-form-details {
        border-top: 1px solid var(--g1);
    }
    .program-form-detail {
        padding: 18px 0;
        border-bottom: 1px solid var(--g1);
    }
    .program-form-detail span {
        color: var(--stone);
        font-size: 10px;
        font-weight: 500;
        text-transform: uppercase;
    }
    .program-form-detail p {
        max-width: 420px;
        margin: 10px 0 0;
        color: var(--g3);
        font-size: 14px;
        font-weight: 300;
        line-height: 1.65;
    }
    .program-form-panel {
        min-height: 720px;
        padding: 16px;
    }
    .program-form-embed {
        width: 100%;
        min-height: 688px;
        background: var(--cream);
    }
    .program-form-embed iframe {
        width: 100% !important;
        min-height: 688px !important;
        border: 0;
    }
    .program-form-fallback {
        margin-top: 14px;
        color: var(--g3);
        font-size: 12px;
        font-weight: 300;
        line-height: 1.6;
    }
    .program-form-fallback a {
        color: var(--black);
    }

    @media (max-width: 980px) {
        .standard-hero-title {
            font-size: 60px;
        }
        .program-form-layout {
            grid-template-columns: 1fr;
        }
        .program-form-intro {
            gap: 30px;
            padding: 40px;
        }
    }

    @media (max-width: 640px) {
        .standard-hero--compact { min-height: 44svh; }
        .standard-hero--standard { min-height: 72svh; }
        .standard-hero--tall { min-height: 84svh; }
        .standard-hero-content {
            padding: 40px var(--mobile-gutter, 20px);
        }
        .standard-hero-title {
            font-size: 48px;
        }
        .standard-hero-dek {
            font-size: 15px;
            line-height: 1.65;
        }
        .standard-hero-media-toggle {
            right: var(--mobile-gutter, 20px);
            bottom: 16px;
        }
        .contact-page .standard-hero {
            min-height: 44svh;
        }
        .program-form-section {
            padding: var(--mobile-section-space, 64px) 0;
        }
        .program-form-intro {
            gap: var(--mobile-stack-gap, 24px);
            padding: 32px var(--mobile-gutter, 20px);
        }
        .program-form-title {
            font-size: 34px;
        }
        .program-form-panel {
            min-height: 600px;
            padding: 0;
        }
        .program-form-embed,
        .program-form-embed iframe {
            min-height: 600px !important;
        }
    }

    @media (max-width: 480px) {
        .standard-hero-actions {
            display: grid;
            width: 100%;
        }
        .standard-hero-actions .btn-primary,
        .standard-hero-actions .btn-secondary {
            display: flex;
            width: 100%;
            min-height: 48px;
            align-items: center;
            justify-content: center;
            padding-inline: 18px;
            text-align: center;
        }
    }

    @media (max-width: 360px) {
        .standard-hero-content,
        .program-form-intro {
            padding-right: var(--mobile-gutter-compact, 16px);
            padding-left: var(--mobile-gutter-compact, 16px);
        }
        .standard-hero-title {
            font-size: 42px;
        }
        .program-form-title {
            font-size: 30px;
        }
    }

    /* ── CLIENT STRIP ── */
    .strip {
        border-top: 1px solid var(--g1);
    }
    .strip-top {
        text-align: center;
        padding: 16px var(--pad);
        background: var(--cream);
        border-bottom: 1px solid var(--g1);
    }
    .strip-lbl {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--stone);
    }
    .strip-band {
        background: var(--dark);
        overflow: hidden;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        height: 84px;
        display: flex;
        align-items: center;
    }
    .strip-marquee {
        width: 100%;
        overflow: hidden;
    }
    .strip-inner {
        display: flex;
        align-items: center;
        width: max-content;
        gap: 0;
        padding: 0;
        min-height: 84px;
        animation: logo-ticker 60s linear infinite;
    }
    .strip:hover .strip-inner,
    .strip:focus-within .strip-inner {
        animation-play-state: paused;
    }
    .strip-names {
        display: flex;
        gap: 12px;
        align-items: center;
        flex-wrap: nowrap;
        white-space: nowrap;
        padding-right: 12px;
    }
    .strip-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 110px;
        min-width: 110px;
        height: 32px;
        flex: 0 0 auto;
        opacity: 0.94;
    }
    .strip-logo img {
        display: block;
        max-height: 24px;
        max-width: 84px;
        width: auto;
    }
    .strip-logo.lg {
        width: 132px;
        min-width: 132px;
    }
    .strip-logo.lg img {
        max-height: 28px;
        max-width: 108px;
    }
    @keyframes logo-ticker {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-50%);
        }
    }

    /* ── SECTION SHELL ── */
    .sec {
        border-top: 1px solid var(--g1);
    }
    .sec.wh {
        background: var(--white);
    }
    .sec.cr {
        background: var(--cream);
    }
    .sec.dk {
        background: var(--dark);
    }
    .sec-inner {
        padding-top: 56px;
        padding-bottom: 64px;
    }

    /* ── EYEBROW ── */
    .eye {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--stone);
        margin-bottom: 12px;
    }
    .eye.wht {
        color: var(--stone);
    }

    /* ── SECTION HEADINGS ── */
    .h-serif {
        font-family: var(--sans);
        font-size: clamp(28px, 3.2vw, 48px);
        font-weight: 300;
        line-height: 1.08;
        letter-spacing: 0;
        color: var(--black);
        margin-bottom: 16px;
    }
    .h-serif .r {
        font-style: normal;
    }
    .h-serif .i {
        font-style: normal;
    }
    .h-serif.wht {
        color: var(--cream);
    }
    .h-serif.wht .r {
        color: var(--cream);
    }
    .h-serif.wht .i {
        color: rgba(244, 244, 242, 0.65);
    } /* italic slightly dimmed on dark */

    /* Option B: DM Sans with a single italic word — used for functional sections */
    .h-sans {
        font-size: clamp(28px, 3.5vw, 52px);
        font-weight: 300;
        line-height: 1.1;
        letter-spacing: -0.02em;
        color: var(--black);
        margin-bottom: 16px;
    }
    .h-sans em {
        font-style: italic;
    }
    .h-sans.wht {
        color: var(--cream);
    }
    .h-sans.wht em {
        color: rgba(244, 244, 242, 0.6);
    }

    /* Body copy — max-width to match heading column, never full bleed */
    .body-copy {
        font-size: 16px;
        font-weight: 300;
        line-height: 1.8;
        color: var(--g3);
        max-width: 48ch; /* comfortable reading width, matches heading intent */
        margin-bottom: 20px;
    }
    .body-copy.wht {
        color: rgba(244, 244, 242, 0.45);
    }

    /* ── DUO layout ── */
    .duo {
        display: grid;
    }
    .duo.pl {
        grid-template-columns: 58% 42%;
    }
    .duo.pr {
        grid-template-columns: 42% 58%;
    }
    .duo-ph {
        position: relative;
        overflow: hidden;
        background: #9a9a9a;
        min-height: 58vh;
    }
    .duo-ot {
        position: absolute;
        bottom: 80px;
        left: 26px;
        right: 0;
        pointer-events: none;
        z-index: 2;
    }
    .duo-ot span {
        display: block;
        font-family: var(--serif);
        font-size: clamp(38px, 5vw, 76px);
        font-weight: 300;
        font-style: italic;
        line-height: 0.92;
        color: rgba(244, 244, 242, 0.1);
        letter-spacing: -0.01em;
    }
    .duo-tx {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: var(--split-pad) var(--pad);
    }
    .duo-tx.dk {
        background: var(--dark);
    }

    /* ── LNKS ── */
    .lnk {
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--black);
        text-decoration: none;
        border-bottom: 1px solid var(--black);
        padding-bottom: 2px;
        display: inline-block;
        transition: opacity 0.2s;
    }
    .lnk:hover {
        opacity: 0.4;
    }
    .lnk.wht {
        color: var(--cream);
        border-color: rgba(244, 244, 242, 0.35);
    }

    /* ── SHOP TILES ── */
    .shop-tiles {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 3px;
    }
    .shop-tile {
        position: relative;
        overflow: hidden;
        aspect-ratio: 3/4;
        background: #9a9a9a;
        cursor: pointer;
        color: inherit;
        text-decoration: none;
    }
    .shop-tile:hover .st-ov,
    .shop-tile:focus-visible .st-ov {
        opacity: 1;
    }
    .shop-tile:focus-visible {
        outline: 2px solid var(--blue);
        outline-offset: 3px;
    }
    .shop-tile .media-slot {
        transition: transform 0.42s ease;
    }
    .shop-tile:hover .media-slot,
    .shop-tile:focus-visible .media-slot {
        transform: scale(1.025);
    }
    .st-grad {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 55%;
        background: linear-gradient(
            to top,
            rgba(20, 20, 20, 0.88),
            transparent
        );
    }
    .st-ov {
        position: absolute;
        inset: 0;
        background: rgba(20, 20, 20, 0.18);
        opacity: 0;
        transition: opacity 0.3s;
    }
    .st-foot {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 18px 16px;
        z-index: 2;
    }
    .st-label {
        font-size: 9px;
        font-weight: 500;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--stone);
        margin-bottom: 5px;
    }
    .st-name {
        font-family: var(--sans);
        font-size: clamp(17px, 1.8vw, 22px);
        font-weight: 400;
        font-style: normal;
        color: #f4f4f2;
        line-height: 1.05;
    }
    .st-count {
        font-size: 11px;
        font-weight: 300;
        color: rgba(244, 244, 242, 0.4);
        margin-top: 3px;
    }

    /* ── INDUSTRIES ── */
    .ind-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 3px;
    }
    .ic {
        position: relative;
        overflow: hidden;
        aspect-ratio: 3/4;
        background: #9a9a9a;
        cursor: pointer;
        display: block;
        color: inherit;
        text-decoration: none;
    }
    .ic:hover .ic-ov {
        opacity: 1;
    }
    .ic:focus-visible {
        outline: 2px solid var(--blue);
        outline-offset: 3px;
    }
    .ic:focus-visible .ic-ov {
        opacity: 1;
    }
    .ic-bg {
        width: 100%;
        height: 100%;
        position: absolute;
        inset: 0;
    }
    .ic-grad {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 52%;
        background: linear-gradient(
            to top,
            rgba(20, 20, 20, 0.86),
            transparent
        );
    }
    .ic-ov {
        position: absolute;
        inset: 0;
        background: rgba(20, 20, 20, 0.2);
        opacity: 0;
        transition: opacity 0.3s;
    }
    .ic-n {
        position: absolute;
        top: 14px;
        right: 13px;
        font-size: 11px;
        font-weight: 300;
        color: rgba(244, 244, 242, 0.22);
        letter-spacing: 0.06em;
    }
    .ic-ft {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 16px 15px;
        z-index: 2;
    }
    .ic-dept {
        font-size: 9px;
        font-weight: 500;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--stone);
        margin-bottom: 5px;
    }
    .ic-nm {
        font-family: var(--sans);
        font-size: clamp(14px, 1.5vw, 20px);
        font-weight: 400;
        font-style: normal;
        color: var(--cream);
        line-height: 1.1;
    }

    /* ── OUR WORK ── */
    .work-showcase {
        background: var(--white);
        padding: 28px;
        overflow: hidden;
    }
    .work-shell {
        display: grid;
        grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
        gap: 32px;
        align-items: stretch;
    }
    .work-copy {
        padding: 12px 8px 12px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .work-summary {
        font-size: 16px;
        font-weight: 300;
        line-height: 1.8;
        color: var(--g3);
        max-width: 45ch;
    }
    .work-display {
        height: 720px;
        overflow: hidden;
        position: relative;
        padding-left: 22px;
        mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            #000 10%,
            #000 90%,
            transparent 100%
        );
        -webkit-mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            #000 10%,
            #000 90%,
            transparent 100%
        );
    }
    .work-columns {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        align-items: start;
    }
    .work-col {
        display: flex;
        flex-direction: column;
        gap: 22px;
        width: 100%;
    }
    .work-col.one {
        animation: work-up-a 28s linear infinite;
    }
    .work-col.two {
        animation: work-down-b 32s linear infinite;
    }
    .work-col.three {
        animation: work-up-c 30s linear infinite;
    }
    .work-tile {
        background: var(--g1);
        border: 1px solid rgba(20, 20, 20, 0.03);
        width: 100%;
        flex: 0 0 auto;
        position: relative;
        overflow: hidden;
    }
    .work-tile.s {
        height: 140px;
    }
    .work-tile.m {
        height: 210px;
    }
    .work-tile.l {
        height: 280px;
    }
    .work-tile.a {
        background: linear-gradient(180deg, #f2f1ee 0%, #e3ded6 100%);
    }
    .work-tile.b {
        background: linear-gradient(180deg, #efebe5 0%, #ded5ca 100%);
    }
    .work-tile.c {
        background: linear-gradient(180deg, #f1f2f3 0%, #e2e5e8 100%);
    }
    .work-tile.d {
        background: linear-gradient(180deg, #f0ece6 0%, #e0d8ce 100%);
    }
    .work-tile.e {
        background: linear-gradient(180deg, #ecefed 0%, #dde4dd 100%);
    }
    .work-tile.f {
        background: linear-gradient(180deg, #f0f0f2 0%, #e1e2e6 100%);
    }
    .work-cta {
        margin-top: 28px;
    }
    @keyframes work-up-a {
        from {
            transform: translateY(0);
        }
        to {
            transform: translateY(-50%);
        }
    }
    @keyframes work-down-b {
        from {
            transform: translateY(-56%);
        }
        to {
            transform: translateY(-6%);
        }
    }
    @keyframes work-up-c {
        from {
            transform: translateY(-10%);
        }
        to {
            transform: translateY(-60%);
        }
    }

    /* ── SERVICES dark section ── */
    .svc-layout {
        display: grid;
        grid-template-columns: 36% 64%;
        gap: 72px;
        align-items: start;
    }
    .svc-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: rgba(255, 255, 255, 0.06);
    }
    .svc-card {
        background: var(--dark);
        padding: 32px 28px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        transition: background 0.25s, border-color 0.25s;
        cursor: default;
    }
    .svc-card:hover {
        border-color: rgba(154, 143, 132, 0.4);
    }
    .svc-grid a.svc-card {
        position: relative;
        display: block;
        color: inherit;
        text-decoration: none;
        cursor: pointer;
        overflow: hidden;
        padding-right: 78px;
    }
    .svc-grid a.svc-card::before,
    .svc-grid a.svc-card::after {
        content: "";
        position: absolute;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }
    .svc-grid a.svc-card::before {
        top: 39px;
        right: 29px;
        width: 22px;
        height: 1px;
        background: rgba(244, 244, 242, 0.28);
    }
    .svc-grid a.svc-card::after {
        top: 34px;
        right: 28px;
        width: 10px;
        height: 10px;
        border-top: 1px solid rgba(244, 244, 242, 0.34);
        border-right: 1px solid rgba(244, 244, 242, 0.34);
        transform: rotate(45deg);
    }
    .svc-grid a.svc-card:hover,
    .svc-grid a.svc-card:focus-visible {
        background: #1d1d1d;
        border-color: rgba(154, 143, 132, 0.48);
        outline: none;
    }
    .svc-grid a.svc-card:hover::before,
    .svc-grid a.svc-card:focus-visible::before {
        background: rgba(154, 143, 132, 0.88);
        transform: translateX(4px);
    }
    .svc-grid a.svc-card:hover::after,
    .svc-grid a.svc-card:focus-visible::after {
        border-color: rgba(154, 143, 132, 0.9);
        transform: translateX(4px) rotate(45deg);
    }
    .svc-n {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.16em;
        color: var(--stone);
        margin-bottom: 14px;
        display: block;
    }
    .svc-title {
        font-size: clamp(16px, 1.7vw, 20px);
        font-weight: 400;
        color: #f4f4f2;
        margin-bottom: 10px;
        line-height: 1.15;
    }
    .svc-desc {
        font-size: 14px;
        font-weight: 300;
        line-height: 1.75;
        color: rgba(244, 244, 242, 0.38);
    }
    .btn-stone {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        background: var(--stone);
        color: var(--white);
        padding: 13px 24px;
        text-decoration: none;
        display: inline-block;
        border-radius: 999px;
        border: 1px solid var(--stone);
        transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
    }
    .btn-stone:hover,
    .btn-stone:focus-visible {
        border-color: var(--cream);
        background: var(--cream);
        color: var(--black);
        outline: none;
        transform: translateY(-1px);
    }

    /* ── NEW ARRIVALS ── */
    .product-strip {
        display: flex;
        gap: 3px;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .product-strip::-webkit-scrollbar {
        display: none;
    }
    .prod-card {
        flex-shrink: 0;
        width: clamp(180px, 18vw, 260px);
        cursor: pointer;
        display: block;
        color: inherit;
        text-decoration: none;
    }
    .prod-img {
        background: #9a9a9a;
        aspect-ratio: 3/4;
        position: relative;
        overflow: hidden;
        margin-bottom: 12px;
    }
    .prod-card:hover .prod-ov,
    .prod-card:focus-visible .prod-ov {
        opacity: 1;
    }
    .prod-card:focus-visible {
        outline: 2px solid var(--blue);
        outline-offset: 3px;
    }
    .prod-img .media-slot {
        transition: transform 0.42s ease;
    }
    .prod-card:hover .prod-img .media-slot,
    .prod-card:focus-visible .prod-img .media-slot {
        transform: scale(1.025);
    }
    .prod-ov {
        position: absolute;
        inset: 0;
        background: rgba(20, 20, 20, 0.14);
        opacity: 0;
        transition: opacity 0.3s;
    }
    .prod-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        font-size: 9px;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        background: var(--stone);
        color: var(--white);
        padding: 4px 9px;
        border-radius: 2px;
    }
    .prod-name {
        font-size: 14px;
        font-weight: 400;
        color: var(--black);
        margin-bottom: 4px;
        line-height: 1.3;
    }
    .prod-detail {
        font-size: 12px;
        font-weight: 300;
        color: var(--g3);
    }

    /* ── PROOF ── */
    .proof-grid {
        display: grid;
        grid-template-columns: 55% 45%;
    }
    .proof-ph {
        position: relative;
        overflow: hidden;
        background: #9a9a9a;
        min-height: 52vh;
    }
    .proof-ot {
        position: absolute;
        bottom: 80px;
        left: 26px;
        pointer-events: none;
    }
    .proof-ot span {
        display: block;
        font-family: var(--serif);
        font-size: clamp(44px, 6vw, 92px);
        font-weight: 300;
        font-style: italic;
        line-height: 0.9;
        color: rgba(244, 244, 242, 0.1);
        letter-spacing: -0.01em;
    }
    .proof-tx {
        padding: var(--split-pad) var(--pad);
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: var(--cream);
    }
    .proof-q {
        font-family: var(--serif);
        font-size: clamp(20px, 2vw, 30px);
        font-weight: 300;
        font-style: italic;
        line-height: 1.3;
        color: var(--black);
        margin-bottom: 12px;
    }
    .proof-who {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--g3);
        margin-bottom: 32px;
    }
    .proof-facts {
        border-top: 1px solid var(--g1);
    }
    .pf {
        padding: 13px 0;
        border-bottom: 1px solid var(--g1);
        font-size: 14px;
        font-weight: 300;
        line-height: 1.65;
        color: var(--g3);
        display: flex;
        gap: 12px;
    }
    .pf-d {
        color: var(--stone);
        flex-shrink: 0;
    }

    /* ── SCALE ── */
    .scale-head {
        text-align: center;
        margin-bottom: 48px;
    }
    .scale-h {
        font-family: var(--sans);
        font-size: clamp(28px, 3.2vw, 48px);
        font-weight: 300;
        line-height: 1.08;
        letter-spacing: 0;
        color: var(--black);
        margin-bottom: 16px;
    }
    .scale-h .r {
        font-style: normal;
    }
    .scale-h .i {
        font-style: normal;
        color: var(--stone);
    }
    .scale-sub {
        font-size: 16px;
        font-weight: 300;
        line-height: 1.8;
        color: var(--g3);
        max-width: 48ch;
        margin: 0 auto;
    }
    .scale-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--g1);
        margin-bottom: 48px;
    }
    .sc {
        background: var(--white);
        padding: 40px 36px;
    }
    .sc-ghost {
        font-size: clamp(64px, 9vw, 128px);
        font-weight: 300;
        font-style: normal;
        font-family: var(--sans);
        color: var(--g1);
        line-height: 1;
        margin-bottom: 8px;
        letter-spacing: 0;
    }
    .sc-title {
        font-size: clamp(16px, 1.6vw, 20px);
        font-weight: 400;
        color: var(--black);
        margin-bottom: 10px;
        line-height: 1.2;
    }
    .sc-body {
        font-size: 14px;
        font-weight: 300;
        line-height: 1.8;
        color: var(--g3);
    }
    .scale-btn {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        background: var(--black);
        color: var(--cream);
        padding: 14px 32px;
        text-decoration: none;
        display: inline-block;
        border-radius: 999px;
    }

    /* ── PROCESS ── */
    .proc-h {
        font-family: var(--sans);
        font-size: clamp(28px, 3.2vw, 48px);
        font-weight: 300;
        line-height: 1.02;
        letter-spacing: 0;
        margin-bottom: 36px;
    }
    .proc-h .r {
        font-style: normal;
    }
    .proc-h .i {
        font-style: normal;
    }
    .proc-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        border-top: 1px solid var(--g1);
    }
    .proc-step {
        padding: 36px 20px 36px 0;
        border-right: 1px solid var(--g1);
    }
    .proc-step:last-child {
        border-right: none;
    }
    .service-process {
        border-bottom: 1px solid var(--g1);
    }
    .service-process .proc-step {
        min-height: 220px;
        padding: clamp(32px, 3vw, 44px) clamp(22px, 2.4vw, 36px);
    }
    .service-process .proc-step:first-child {
        padding-left: 0;
    }
    .service-process .ps-n {
        margin-bottom: 14px;
    }
    .service-process .ps-name {
        font-size: clamp(15px, 1.2vw, 18px);
        margin-bottom: 10px;
    }
    .service-process .ps-body {
        font-size: 14px;
        line-height: 1.75;
        max-width: 30ch;
    }
    .ps-n {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--stone);
        display: block;
        margin-bottom: 12px;
    }
    .ps-name {
        font-size: 15px;
        font-weight: 400;
        color: var(--black);
        margin-bottom: 7px;
        line-height: 1.2;
    }
    .ps-body {
        font-size: 13px;
        font-weight: 300;
        line-height: 1.8;
        color: var(--g3);
    }

    /* ── CTA ── */
    .cta-grid {
        display: grid;
        grid-template-columns: 55% 45%;
    }
    .cta-tx {
        padding: var(--split-pad) var(--pad);
        background: var(--black);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .cta-h {
        font-family: var(--sans);
        font-size: clamp(28px, 3.2vw, 48px);
        font-weight: 300;
        line-height: 1.02;
        color: var(--cream);
        letter-spacing: 0;
    }
    .cta-h .r {
        font-style: normal;
    }
    .cta-h .i {
        font-style: normal;
        color: rgba(244, 244, 242, 0.65);
    }
    .cta-sub {
        font-size: 16px;
        font-weight: 300;
        color: rgba(244, 244, 242, 0.35);
        margin-top: 14px;
        line-height: 1.8;
        max-width: 48ch;
    }
    .cta-btns {
        display: flex;
        gap: 12px;
        align-items: center;
        margin-top: 44px;
    }
    .btn-cream {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        background: var(--cream);
        color: var(--black);
        padding: 13px 26px;
        border-radius: 999px;
        text-decoration: none;
        white-space: nowrap;
    }
    .btn-stone-ol {
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 0.13em;
        text-transform: uppercase;
        background: transparent;
        color: var(--stone);
        padding: 12px 18px;
        border: 1px solid rgba(154, 143, 132, 0.35);
        border-radius: 999px;
        text-decoration: none;
        white-space: nowrap;
    }
    .cta-ph {
        position: relative;
        overflow: hidden;
        background: #9a9a9a;
    }
    .cta-ot {
        position: absolute;
        bottom: 80px;
        left: 26px;
        pointer-events: none;
    }
    .cta-ot span {
        display: block;
        font-family: var(--serif);
        font-size: clamp(30px, 4vw, 60px);
        font-weight: 300;
        font-style: italic;
        line-height: 0.92;
        color: rgba(244, 244, 242, 0.09);
        letter-spacing: -0.01em;
    }

    /* ── FOOTER ── */
    .footer {
        background: #111;
    }
    .footer-inner {
        padding: 52px 0 28px;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 44px;
        padding-bottom: 44px;
        border-bottom: 1px solid #222;
        margin-bottom: 24px;
    }
    .ft-logo {
        display: inline-flex;
        align-items: center;
        margin-bottom: 18px;
    }
    .ft-logo img {
        display: block;
        height: 34px;
        width: auto;
    }
    .ft-tag {
        font-family: var(--sans);
        font-size: 16px;
        font-weight: 300;
        font-style: normal;
        color: #555;
        line-height: 1.6;
        max-width: 220px;
        margin-bottom: 20px;
    }
    .footer-newsletter-title {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--stone);
        margin-bottom: 8px;
    }
    .footer-newsletter-copy {
        font-size: 13px;
        font-weight: 300;
        line-height: 1.65;
        color: #666;
        max-width: 260px;
        margin-bottom: 14px;
    }
    .footer-newsletter-form {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
        align-items: center;
        max-width: 320px;
    }
    .footer-newsletter-input {
        width: 100%;
        min-height: 44px;
        padding: 0 14px;
        border: 1px solid #2b2b2b;
        background: #151515;
        color: var(--cream);
        border-radius: 999px;
        font-size: 13px;
        font-weight: 300;
        outline: none;
    }
    .footer-newsletter-input::placeholder { color: #5f5f5f; }
    .footer-newsletter-input:focus {
        border-color: #4e4e4e;
        background: #181818;
    }
    .footer-newsletter-btn {
        min-height: 44px;
        padding: 0 16px;
        border: 0;
        border-radius: 999px;
        background: var(--cream);
        color: var(--black);
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        cursor: pointer;
        white-space: nowrap;
        transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
    }
    .footer-newsletter-btn:hover,
    .footer-newsletter-btn:focus-visible {
        background: var(--stone);
        color: var(--white);
        outline: none;
        transform: translateY(-1px);
    }
    .ft-col-h {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--stone);
        margin-bottom: 14px;
        opacity: 0.75;
    }
    .ft-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .ft-links a {
        font-size: 13px;
        font-weight: 300;
        color: #444;
        text-decoration: none;
        transition: color 0.2s;
    }
    .ft-links a:hover,
    .ft-links a:focus-visible {
        color: var(--cream);
        outline: none;
    }
    .ft-bot {
        display: flex;
        justify-content: space-between;
        font-size: 11px;
        font-weight: 300;
        color: #2a2a2a;
        padding-bottom: 24px;
    }
    @media (max-width: 860px) {
        .footer-inner {
            grid-template-columns: 1fr;
        }
    }
    @media (max-width: 640px) {
        .footer-newsletter-form,
        .ft-bot {
            grid-template-columns: 1fr;
            display: flex;
            flex-direction: column;
            align-items: stretch;
        }
        .footer-newsletter-btn {
            text-align: center;
        }
    }

    /* section head row — eyebrow+title left, link right */
    .sec-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 28px;
        gap: 24px;
    }
    .sec-head-ctas {
        display: flex;
        gap: 10px;
        align-items: center;
        flex-shrink: 0;
        margin-bottom: 4px;
    }

    .home-page button.btn-secondary {
        font-family: inherit;
        line-height: 1.2;
        cursor: pointer;
    }

    @media (max-width: 900px) {
        .home-page .hero {
            grid-template-columns: minmax(0, 1fr);
            min-height: 0;
            max-height: none;
        }
        .home-page .hero-left {
            gap: var(--mobile-stack-gap, 24px);
            padding: 48px var(--mobile-gutter, 20px);
        }
        .home-page .hero-h {
            width: 100%;
            max-width: 760px;
            font-size: 58px;
            line-height: 0.98;
            letter-spacing: 0;
        }
        .home-page .hero-line {
            white-space: normal;
        }
        .home-page .hero-sub-block {
            gap: var(--mobile-stack-gap, 24px);
        }
        .home-page .hero-right {
            min-height: 0;
            aspect-ratio: 4 / 5;
        }
        .home-page .sec-inner {
            padding-top: var(--mobile-section-space, 64px);
            padding-bottom: var(--mobile-section-space, 64px);
        }
        .home-page .sec-head {
            align-items: flex-start;
            flex-direction: column;
            gap: var(--mobile-stack-gap, 24px);
        }
        .home-page .sec-head-ctas {
            width: 100%;
            margin-bottom: 0;
            flex-wrap: wrap;
        }
        .home-page .shop-tiles,
        .home-page .ind-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: var(--mobile-card-gap, 12px);
        }
        .home-page .svc-layout {
            grid-template-columns: minmax(0, 1fr);
            gap: 40px;
        }
        .home-page .work-showcase {
            padding: 0;
        }
        .home-page .work-shell {
            grid-template-columns: minmax(0, 1fr);
            gap: 34px;
        }
        .home-page .work-copy {
            padding: 0;
        }
        .home-page .work-display {
            width: 100%;
            height: auto;
            padding: 0 0 12px;
            overflow-x: auto;
            scroll-padding-inline: var(--mobile-gutter, 20px);
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            mask-image: none;
            -webkit-mask-image: none;
        }
        .home-page .work-display::-webkit-scrollbar {
            display: none;
        }
        .home-page .work-columns {
            display: flex;
            width: max-content;
            gap: var(--mobile-card-gap, 12px);
        }
        .home-page .work-col {
            display: contents;
            animation: none;
        }
        .home-page .work-tile {
            display: none;
            width: min(72vw, 320px);
            height: auto !important;
            aspect-ratio: 3 / 4;
            scroll-snap-align: start;
        }
        .home-page .work-col .work-tile:nth-child(-n + 2) {
            display: block;
        }
        .home-page .duo {
            grid-template-columns: minmax(0, 1fr);
        }
        .home-page .duo-ph {
            min-height: 0;
            aspect-ratio: 4 / 5;
        }
        .home-page .duo-tx {
            padding: var(--mobile-section-space, 64px) var(--mobile-gutter, 20px);
        }
        .home-page .product-strip {
            gap: var(--mobile-card-gap, 12px);
            padding-bottom: 12px;
            scroll-padding-inline: var(--mobile-gutter, 20px);
            scroll-snap-type: x mandatory;
        }
        .home-page .product-strip .prod-card {
            width: min(72vw, 260px);
            scroll-snap-align: start;
        }
    }

    @media (max-width: 640px) {
        .home-page .hero-h {
            font-size: 48px;
        }
        .home-page .hero-sub {
            font-size: 15px;
            line-height: 1.7;
        }
        .home-page .h-sans,
        .home-page .h-serif,
        .home-page .scale-h,
        .home-page .proc-h,
        .home-page .cta-h {
            font-size: 34px;
            letter-spacing: 0;
        }
        .home-page .body-copy,
        .home-page .work-summary,
        .home-page .scale-sub,
        .home-page .cta-sub {
            font-size: 15px;
        }
        .home-page .st-name {
            font-size: 18px;
        }
        .home-page .ic-nm {
            font-size: 17px;
        }
        .home-page .proof-ph,
        .home-page .cta-ph {
            min-height: 68svh;
        }
    }

    @media (max-width: 480px) {
        .home-page .hero-btns,
        .home-page .sec-head-ctas {
            display: grid;
            width: 100%;
        }
        .home-page .hero-btns .btn-primary,
        .home-page .hero-btns .btn-secondary,
        .home-page .sec-head-ctas .btn-primary,
        .home-page .sec-head-ctas .btn-secondary {
            display: flex;
            width: 100%;
            min-height: 48px;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        .home-page .svc-grid {
            grid-template-columns: minmax(0, 1fr);
        }
        .home-page .svc-grid a.svc-card {
            min-height: 0;
        }
    }

    @media (max-width: 360px) {
        .home-page .hero-left,
        .home-page .duo-tx {
            padding-right: var(--mobile-gutter-compact, 16px);
            padding-left: var(--mobile-gutter-compact, 16px);
        }
        .home-page .hero-h {
            font-size: 42px;
        }
    }

    @media (hover: none) {
        .home-page .shop-tile:hover .media-slot,
        .home-page .ic:hover .media-slot,
        .home-page .prod-card:hover .media-slot,
        .home-page .svc-grid a.svc-card:hover::before,
        .home-page .svc-grid a.svc-card:hover::after {
            transform: none;
        }
    }

    /* ── ABOUT PAGE ── */
    .about-page .hero {
        min-height: 82vh;
    }
    .about-page .hero-h {
        max-width: 9.4ch;
    }
    .about-belief {
        display: grid;
        grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
        gap: clamp(32px, 5vw, 84px);
        align-items: start;
    }
    .about-statement {
        font-family: var(--sans);
        font-size: clamp(24px, 3vw, 44px);
        font-weight: 300;
        font-style: normal;
        line-height: 1.18;
        color: var(--black);
        letter-spacing: 0;
    }
    .about-proof-lines {
        border-top: 1px solid var(--g1);
    }
    .about-proof-line {
        display: grid;
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 20px;
        padding: 18px 0;
        border-bottom: 1px solid var(--g1);
    }
    .about-proof-line span {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--stone);
    }
    .about-proof-line p {
        margin: 0;
        font-size: 15px;
        font-weight: 300;
        line-height: 1.75;
        color: var(--g3);
    }
    .about-pathways {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        background: var(--g1);
    }
    .about-pathway {
        background: var(--white);
        padding: 30px 28px;
        min-height: 260px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        color: var(--black);
        text-decoration: none;
    }
    .about-pathway:hover .about-pathway-title {
        color: var(--stone);
    }
    .about-pathway-kicker {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--stone);
        margin-bottom: 14px;
    }
    .about-pathway-title {
        font-size: clamp(18px, 1.7vw, 22px);
        font-weight: 400;
        line-height: 1.14;
        margin-bottom: 12px;
        transition: color 0.2s;
    }
    .about-pathway-copy {
        font-size: 14px;
        font-weight: 300;
        line-height: 1.75;
        color: var(--g3);
        margin-bottom: 24px;
    }
    .about-pathway-link {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--black);
    }

    /* INDUSTRY PAGE */
    .industry-page .hero {
        min-height: 84vh;
    }
    .industry-page .hero-h {
        max-width: 8.8ch;
    }
    .industry-overview {
        display: grid;
        grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
        gap: clamp(32px, 5vw, 84px);
        align-items: start;
    }
    .industry-statement {
        font-family: var(--sans);
        font-size: clamp(24px, 3vw, 44px);
        font-weight: 300;
        font-style: normal;
        line-height: 1.18;
        color: var(--black);
        letter-spacing: 0;
    }
    .industry-proof-lines {
        border-top: 1px solid var(--g1);
    }
    .industry-proof-line {
        display: grid;
        grid-template-columns: 116px minmax(0, 1fr);
        gap: 20px;
        padding: 18px 0;
        border-bottom: 1px solid var(--g1);
    }
    .industry-proof-line span {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--stone);
    }
    .industry-proof-line p {
        margin: 0;
        font-size: 15px;
        font-weight: 300;
        line-height: 1.75;
        color: var(--g3);
    }
    .industry-department-grid,
    .industry-challenge-grid,
    .industry-case-grid,
    .industry-resource-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1px;
        background: var(--g1);
    }
    .industry-department-card,
    .industry-challenge-card,
    .industry-case-card,
    .industry-resource-card {
        background: var(--white);
        padding: 28px 26px;
        min-height: 210px;
        color: var(--black);
        text-decoration: none;
    }
    .industry-department-card {
        min-height: 184px;
    }
    .industry-card-kicker {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--stone);
        margin-bottom: 14px;
    }
    .industry-card-title {
        font-size: clamp(17px, 1.5vw, 21px);
        font-weight: 400;
        line-height: 1.16;
        color: var(--black);
        margin-bottom: 10px;
    }
    .industry-card-copy {
        font-size: 14px;
        font-weight: 300;
        line-height: 1.75;
        color: var(--g3);
    }
    .industry-logo-grid {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 1px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .industry-logo-cell {
        min-height: 112px;
        background: #151515;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
    }
    .industry-logo-cell img {
        display: block;
        max-width: 118px;
        max-height: 34px;
        width: auto;
        height: auto;
    }
    .industry-style-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 3px;
    }
    .industry-style-card {
        color: var(--black);
        text-decoration: none;
        min-width: 0;
    }
    .industry-style-media {
        aspect-ratio: 3 / 4;
        position: relative;
        overflow: hidden;
        background: var(--g1);
        margin-bottom: 12px;
    }
    .industry-style-card:hover .industry-style-media img,
    .industry-style-card:focus-visible .industry-style-media img {
        transform: scale(1.04);
    }
    .industry-style-card:focus-visible {
        outline: 2px solid var(--blue);
        outline-offset: 3px;
    }
    .industry-style-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.35s ease;
    }
    .industry-style-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        z-index: 2;
        font-size: 9px;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        background: var(--stone);
        color: var(--white);
        padding: 4px 9px;
    }
    .industry-style-title {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.3;
        margin-bottom: 4px;
    }
    .industry-style-meta {
        font-size: 12px;
        font-weight: 300;
        color: var(--g3);
        line-height: 1.55;
    }
    .industry-case-card,
    .industry-resource-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: background 0.2s;
    }
    .industry-case-card:hover,
    .industry-case-card:focus-within,
    .industry-resource-card:hover,
    .industry-resource-card:focus-within {
        background: #f8f8f6;
    }
    .industry-card-link {
        display: inline-block;
        margin-top: 28px;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--black);
    }

    /* SERVICE DETAIL PAGES */
    .service-page .hero {
        min-height: 84vh;
    }
    .service-page .hero-h {
        max-width: 9.6ch;
    }
    .service-page .hero-right {
        min-height: 620px;
    }
    .service-page .hero-right .media-slot {
        z-index: 0;
    }
    .service-meta-row {
        display: flex;
        gap: 0;
        flex-wrap: wrap;
        margin-bottom: 12px;
    }
    .service-meta-item {
        display: inline-flex;
        align-items: center;
        min-height: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        color: var(--g3);
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        background: transparent;
    }
    .service-meta-item + .service-meta-item::before {
        content: "";
        width: 1px;
        height: 12px;
        margin: 0 10px;
        background: var(--g2);
    }
    .service-overview {
        display: grid;
        grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
        gap: clamp(32px, 5vw, 84px);
        align-items: start;
    }
    .service-statement {
        font-family: var(--sans);
        font-size: clamp(24px, 3vw, 44px);
        font-weight: 300;
        font-style: normal;
        line-height: 1.18;
        color: var(--black);
        letter-spacing: 0;
    }
    .service-proof-lines {
        border-top: 1px solid var(--g1);
    }
    .service-proof-line {
        display: grid;
        grid-template-columns: 128px minmax(0, 1fr);
        gap: 20px;
        padding: 18px 0;
        border-bottom: 1px solid var(--g1);
    }
    .service-proof-line span {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--stone);
    }
    .service-proof-line p {
        margin: 0;
        font-size: 15px;
        font-weight: 300;
        line-height: 1.75;
        color: var(--g3);
    }
    .service-capability-grid,
    .service-detail-grid,
    .service-related-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1px;
        background: var(--g1);
    }
    .service-capability-card,
    .service-detail-card,
    .service-related-card {
        background: var(--white);
        padding: 28px 26px;
        min-height: 210px;
        color: var(--black);
        text-decoration: none;
    }
    .service-capability-card,
    .service-related-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .service-card-kicker {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--stone);
        margin-bottom: 14px;
    }
    .service-card-title {
        font-size: clamp(17px, 1.5vw, 21px);
        font-weight: 400;
        line-height: 1.16;
        color: var(--black);
        margin-bottom: 10px;
    }
    .service-card-copy {
        font-size: 14px;
        font-weight: 300;
        line-height: 1.75;
        color: var(--g3);
    }
    .service-card-link {
        display: inline-block;
        margin-top: 28px;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--black);
    }
    .service-detail-card {
        min-height: 0;
    }
    .service-detail-card ul {
        list-style: none;
        display: grid;
        gap: 10px;
        margin-top: 16px;
    }
    .service-detail-card li {
        position: relative;
        padding-left: 18px;
        font-size: 14px;
        font-weight: 300;
        line-height: 1.65;
        color: var(--g3);
    }
    .service-detail-card li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.75em;
        width: 6px;
        height: 1px;
        background: var(--stone);
    }
    .service-feature-panel {
        display: grid;
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        gap: 1px;
        background: var(--g1);
    }
    .service-feature-copy,
    .service-feature-list {
        background: var(--white);
        padding: clamp(28px, 4vw, 52px);
    }
    .service-feature-list {
        display: grid;
        gap: 1px;
        background: var(--g1);
        padding: 0;
    }
    .service-feature-item {
        background: var(--white);
        padding: 24px 26px;
    }
    .service-feature-item strong {
        display: block;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.25;
        margin-bottom: 7px;
    }
    .service-feature-item span {
        display: block;
        font-size: 13px;
        font-weight: 300;
        line-height: 1.7;
        color: var(--g3);
    }

    /* CENTERED FAQ ACCORDION */
    .faq-module {
        width: 100%;
        max-width: 920px;
        margin: 0 auto;
    }
    .faq-head {
        text-align: center;
        margin: 0 auto 34px;
        max-width: 760px;
    }
    .faq-head .eye {
        margin-bottom: 14px;
    }
    .faq-title {
        margin-bottom: 0;
    }
    .faq-accordion {
        border-top: 1px solid var(--g1);
    }
    .faq-item {
        border-bottom: 1px solid var(--g1);
    }
    .faq-item summary {
        list-style: none;
    }
    .faq-item summary::-webkit-details-marker {
        display: none;
    }
    .faq-question {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 28px;
        gap: 24px;
        align-items: center;
        width: 100%;
        padding: 24px 0;
        cursor: pointer;
        color: var(--black);
        font-size: clamp(18px, 1.65vw, 23px);
        font-weight: 400;
        line-height: 1.25;
    }
    .faq-question:focus-visible {
        outline: 1px solid var(--stone);
        outline-offset: 6px;
    }
    .faq-icon {
        position: relative;
        display: block;
        width: 18px;
        height: 18px;
        justify-self: end;
    }
    .faq-icon::before,
    .faq-icon::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 18px;
        height: 1px;
        background: var(--stone);
        transform: translate(-50%, -50%);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .faq-icon::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }
    .faq-item[open] .faq-icon::after {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(0deg);
    }
    .faq-answer {
        padding: 0 52px 25px 0;
        max-width: 72ch;
    }
    .faq-answer p {
        font-size: 15px;
        font-weight: 300;
        line-height: 1.8;
        color: var(--g3);
        margin: 0;
    }
    @media (max-width: 980px) {
        .about-page .hero,
        .about-belief,
        .about-pathways,
        .industry-page .hero,
        .industry-overview,
        .service-page .hero,
        .service-overview,
        .service-feature-panel,
        .svc-layout,
        .proof-grid,
        .cta-grid {
            grid-template-columns: 1fr;
        }
        .about-page .hero {
            max-height: none;
        }
        .about-page .hero-left {
            padding-right: var(--pad);
        }
        .industry-page .hero-left {
            padding-right: var(--pad);
        }
        .service-page .hero-left {
            padding-right: var(--pad);
        }
        .about-page .hero-right,
        .industry-page .hero-right,
        .service-page .hero-right,
        .proof-ph,
        .cta-ph {
            min-height: 56vh;
        }
        .scale-cards,
        .proc-grid {
            grid-template-columns: 1fr;
        }
        .industry-style-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .industry-department-grid,
        .industry-challenge-grid,
        .industry-case-grid,
        .industry-resource-grid,
        .service-capability-grid,
        .service-detail-grid,
        .service-related-grid {
            grid-template-columns: 1fr;
        }
        .industry-logo-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
        .proc-step,
        .proc-step:last-child {
            border-right: 0;
            border-bottom: 1px solid var(--g1);
            padding-left: 0 !important;
        }
        .proc-step:last-child {
            border-bottom: 0;
        }
        .service-process .proc-step,
        .service-process .proc-step:last-child {
            min-height: 0;
            padding: 26px 0 28px !important;
        }
    }
    @media (max-width: 640px) {
        .about-page .hero-h {
            max-width: 100%;
            font-size: clamp(42px, 13vw, 64px);
        }
        .industry-page .hero-h {
            max-width: 100%;
            font-size: clamp(42px, 13vw, 64px);
        }
        .service-page .hero-h {
            max-width: 100%;
            font-size: clamp(42px, 13vw, 64px);
        }
        .about-proof-line {
            grid-template-columns: 1fr;
            gap: 8px;
        }
        .industry-proof-line {
            grid-template-columns: 1fr;
            gap: 8px;
        }
        .service-proof-line {
            grid-template-columns: 1fr;
            gap: 8px;
        }
        .about-pathway {
            min-height: auto;
        }
        .industry-style-grid,
        .industry-logo-grid {
            grid-template-columns: 1fr;
        }
        .cta-btns {
            align-items: stretch;
            flex-direction: column;
        }
        .faq-head {
            text-align: left;
        }
        .faq-question {
            grid-template-columns: minmax(0, 1fr) 22px;
            gap: 16px;
            padding: 20px 0;
        }
        .faq-answer {
            padding-right: 0;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        html { scroll-behavior: auto; }
        .slider-slide,
        .shop-tile .media-slot,
        .prod-img .media-slot,
        .industry-style-media img,
        .svc-card,
        .svc-grid a.svc-card::before,
        .svc-grid a.svc-card::after,
        .faq-icon::before,
        .faq-icon::after,
        .btn-primary,
        .btn-secondary,
        .btn-stone,
        .footer-newsletter-btn,
        .standard-hero-media video,
        .standard-hero-media iframe,
        .standard-hero-media-toggle {
            transition: none !important;
        }
        .strip-inner,
        .work-col {
            animation: none !important;
        }
    }

    /* ── PHASE 3 MOBILE CONTENT TEMPLATES ── */
    @media (max-width: 900px) {
        .about-page .hero,
        .industry-page .hero,
        .service-page .hero {
            grid-template-columns: minmax(0, 1fr);
            min-height: 0;
            max-height: none;
        }
        .about-page .hero-left,
        .industry-page .hero-left,
        .service-page .hero-left {
            gap: var(--mobile-stack-gap, 24px);
            padding: 48px var(--mobile-gutter, 20px);
        }
        .about-page .hero-h,
        .industry-page .hero-h,
        .service-page .hero-h {
            width: 100%;
            max-width: 760px;
            font-size: 58px;
            line-height: 0.98;
            letter-spacing: 0;
        }
        .about-page .hero-right,
        .industry-page .hero-right,
        .service-page .hero-right {
            min-height: 0;
            aspect-ratio: 4 / 5;
        }
        .about-page .sec-inner,
        .industry-page .sec-inner,
        .service-page .sec-inner {
            padding-top: var(--mobile-section-space, 64px);
            padding-bottom: var(--mobile-section-space, 64px);
        }
        .about-page .h-sans,
        .about-page .h-serif,
        .industry-page .h-sans,
        .industry-page .h-serif,
        .service-page .h-sans,
        .service-page .h-serif {
            font-size: 42px;
            letter-spacing: 0;
        }
        .about-page .sec-head,
        .industry-page .sec-head,
        .service-page .sec-head {
            align-items: flex-start;
            flex-direction: column;
            gap: var(--mobile-stack-gap, 24px);
        }
        .about-page .hero-sub,
        .industry-page .hero-sub,
        .service-page .hero-sub,
        .about-page .body-copy,
        .industry-page .body-copy,
        .service-page .body-copy {
            font-size: 15px;
            line-height: 1.75;
        }
        .about-belief,
        .industry-overview,
        .service-overview,
        .service-feature-panel,
        .about-page .svc-layout,
        .service-page .svc-layout {
            grid-template-columns: minmax(0, 1fr);
            gap: 36px;
        }
        .about-proof-line,
        .industry-proof-line,
        .service-proof-line {
            grid-template-columns: 96px minmax(0, 1fr);
            gap: 16px;
            padding: 16px 0;
        }
        .about-page .svc-grid,
        .industry-department-grid,
        .industry-challenge-grid,
        .industry-case-grid,
        .industry-resource-grid,
        .service-capability-grid,
        .service-detail-grid,
        .service-related-grid,
        .services-overview-page .service-capability-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .industry-style-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .industry-logo-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
        .industry-department-card,
        .industry-challenge-card,
        .services-overview-page .service-capability-card {
            min-height: 0;
            padding: 22px;
        }
        .service-process .proc-step,
        .service-process .proc-step:last-child,
        .about-page .proc-step,
        .about-page .proc-step:last-child {
            min-height: 0;
            padding: 24px 0 26px !important;
        }
        .about-page .proof-ph,
        .about-page .cta-ph,
        .industry-page .proof-ph,
        .industry-page .cta-ph,
        .service-page .proof-ph,
        .service-page .cta-ph {
            min-height: 0;
            aspect-ratio: 4 / 5;
        }
        .about-page .proof-tx,
        .industry-page .proof-tx,
        .service-page .proof-tx,
        .about-page .cta-tx,
        .industry-page .cta-tx,
        .service-page .cta-tx {
            padding: 48px var(--mobile-gutter, 20px);
        }
        .about-page .btn-primary,
        .about-page .btn-secondary,
        .about-page .btn-stone,
        .about-page .btn-cream,
        .about-page .btn-stone-ol,
        .industry-page .btn-primary,
        .industry-page .btn-secondary,
        .industry-page .btn-stone,
        .industry-page .btn-cream,
        .industry-page .btn-stone-ol,
        .service-page .btn-primary,
        .service-page .btn-secondary,
        .service-page .btn-stone,
        .service-page .btn-cream,
        .service-page .btn-stone-ol {
            display: inline-flex;
            min-height: var(--mobile-control-min, 44px);
            align-items: center;
            justify-content: center;
        }
        .about-page .slider-panel,
        .industry-page .slider-panel,
        .service-page .slider-panel {
            touch-action: pan-y;
        }
        .about-page .dot,
        .about-page .dot.on,
        .industry-page .dot,
        .industry-page .dot.on,
        .service-page .dot,
        .service-page .dot.on {
            position: relative;
            display: grid;
            width: 44px;
            height: 44px;
            flex: 0 0 44px;
            place-items: center;
            border-radius: 0;
            background: transparent;
        }
        .about-page .dot::before,
        .industry-page .dot::before,
        .service-page .dot::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--g2);
        }
        .about-page .dot.on::before,
        .industry-page .dot.on::before,
        .service-page .dot.on::before {
            background: var(--black);
        }
        .about-page .dots,
        .industry-page .dots,
        .service-page .dots {
            gap: 0;
            margin: -12px -14px -12px 0;
        }

        .industry-page .work-showcase {
            padding: 0;
        }
        .industry-page .work-shell {
            grid-template-columns: minmax(0, 1fr);
            gap: 34px;
        }
        .industry-page .work-copy {
            padding: 0;
        }
        .industry-page .work-display {
            width: 100%;
            height: auto;
            overflow-x: auto;
            padding: 0 0 12px;
            scroll-padding-inline: var(--mobile-gutter, 20px);
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            mask-image: none;
            -webkit-mask-image: none;
        }
        .industry-page .work-display::-webkit-scrollbar {
            display: none;
        }
        .industry-page .work-columns {
            display: flex;
            width: max-content;
            gap: var(--mobile-card-gap, 12px);
        }
        .industry-page .work-col {
            display: contents;
            animation: none;
        }
        .industry-page .work-tile {
            display: none;
            width: min(72vw, 320px);
            height: auto !important;
            aspect-ratio: 3 / 4;
            scroll-snap-align: start;
        }
        .industry-page .work-col .work-tile:nth-child(-n + 2) {
            display: block;
        }
    }

    @media (max-width: 640px) {
        .about-page .hero-h,
        .industry-page .hero-h,
        .service-page .hero-h {
            font-size: 48px;
        }
        .about-page .h-sans,
        .about-page .h-serif,
        .industry-page .h-sans,
        .industry-page .h-serif,
        .service-page .h-sans,
        .service-page .h-serif {
            font-size: 36px;
        }
        .about-proof-line,
        .industry-proof-line,
        .service-proof-line {
            grid-template-columns: minmax(0, 1fr);
            gap: 7px;
        }
        .mobile-card-rail {
            display: flex !important;
            width: calc(100% + var(--mobile-gutter, 20px));
            margin-right: calc(var(--mobile-gutter, 20px) * -1);
            gap: var(--mobile-card-gap, 12px) !important;
            overflow-x: auto;
            overscroll-behavior-inline: contain;
            padding: 0 var(--mobile-gutter, 20px) 12px 0;
            background: transparent !important;
            scroll-padding-inline: 0 var(--mobile-gutter, 20px);
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
        }
        .mobile-card-rail::-webkit-scrollbar {
            display: none;
        }
        .mobile-card-rail > * {
            flex: 0 0 min(82vw, 330px);
            width: min(82vw, 330px);
            scroll-snap-align: start;
        }
        .about-page .svc-grid.mobile-card-rail .svc-card,
        .service-page .mobile-card-rail .service-capability-card,
        .service-page .mobile-card-rail .service-related-card,
        .industry-page .mobile-card-rail .industry-case-card,
        .industry-page .mobile-card-rail .industry-resource-card {
            min-height: 250px;
        }
        .industry-page .mobile-card-rail .industry-style-card {
            min-height: 0;
        }
        .industry-department-grid,
        .industry-challenge-grid,
        .services-overview-page .service-capability-grid,
        .service-detail-grid {
            grid-template-columns: minmax(0, 1fr);
        }
        .industry-department-card,
        .industry-challenge-card,
        .services-overview-page .service-capability-card,
        .service-detail-card {
            min-height: 0;
            padding: 20px;
        }
        .industry-logo-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .industry-logo-cell {
            min-height: 96px;
            padding: 18px;
        }
        .industry-style-card {
            position: relative;
            padding-bottom: 32px;
        }
        .industry-style-card::after {
            content: "\2192";
            position: absolute;
            right: 2px;
            bottom: 2px;
            color: var(--stone);
            font-size: 20px;
        }
        .about-page .strip-marquee {
            overflow-x: auto;
            overscroll-behavior-inline: contain;
            scroll-snap-type: x proximity;
            scrollbar-width: none;
        }
        .about-page .strip-marquee::-webkit-scrollbar {
            display: none;
        }
        .about-page .strip-inner {
            width: max-content;
            animation: none;
        }
        .about-page .strip-names {
            min-width: max-content;
        }
        .about-page .strip-names:first-child .strip-logo {
            scroll-snap-align: start;
        }
        .about-page .strip-names[aria-hidden="true"] {
            display: none;
        }
        .faq-head {
            text-align: left;
        }
        .faq-question {
            min-height: var(--mobile-control-min, 44px);
        }
    }

    @media (max-width: 480px) {
        .about-page .hero-line,
        .industry-page .hero-line,
        .service-page .hero-line {
            white-space: normal;
        }

        .about-page .hero-btns,
        .industry-page .hero-btns,
        .service-page .hero-btns,
        .about-page .cta-btns,
        .industry-page .cta-btns,
        .service-page .cta-btns {
            display: grid;
            width: 100%;
            gap: 10px;
        }
        .about-page .hero-btns > *,
        .industry-page .hero-btns > *,
        .service-page .hero-btns > *,
        .about-page .cta-btns > *,
        .industry-page .cta-btns > *,
        .service-page .cta-btns > * {
            width: 100%;
            min-height: 48px;
        }
    }

    @media (max-width: 360px) {
        .about-page .hero-left,
        .industry-page .hero-left,
        .service-page .hero-left,
        .about-page .proof-tx,
        .industry-page .proof-tx,
        .service-page .proof-tx,
        .about-page .cta-tx,
        .industry-page .cta-tx,
        .service-page .cta-tx {
            padding-right: var(--mobile-gutter-compact, 16px);
            padding-left: var(--mobile-gutter-compact, 16px);
        }
        .about-page .hero-h,
        .industry-page .hero-h,
        .service-page .hero-h {
            font-size: 42px;
        }
        .about-page .cbar-name,
        .industry-page .cbar-name,
        .service-page .cbar-name {
            max-width: 122px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
    }

    @media (hover: none), (pointer: coarse) {
        .about-page .svc-card:hover,
        .industry-page .industry-case-card:hover,
        .industry-page .industry-resource-card:hover,
        .service-page .service-related-card:hover {
            transform: none;
        }
        .industry-page .industry-style-card:hover .industry-style-media img {
            transform: none;
        }
        .about-page .svc-grid a.svc-card::before,
        .service-page .svc-grid a.svc-card::before {
            background: rgba(154, 143, 132, 0.72);
        }
        .about-page .svc-grid a.svc-card::after,
        .service-page .svc-grid a.svc-card::after {
            border-color: rgba(154, 143, 132, 0.78);
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .about-page .strip-inner,
        .industry-page .work-col {
            animation: none !important;
        }
        .about-page .slider-slide,
        .industry-page .slider-slide,
        .service-page .slider-slide,
        .industry-page .industry-style-media img {
            transition: none !important;
        }
    }
