    :root {
        /* Logo palette — charcoal slate from Logo.jpg (no pure black) */
        --logo-charcoal: #2b343b;
        --logo-charcoal-deep: #242d33;
        --logo-charcoal-mid: #323c44;
        --logo-charcoal-soft: #3a454d;
        --charcoal-rgb: 43, 52, 59;

        --brand: #626E76;
        --brand-light: #8d979e;
        --brand-lighter: #c2cacf;
        --brand-dark: #3f474d;
        --brand-rgb: 98, 110, 118;

        --cream: 255, 255, 255;
        --ink: var(--logo-charcoal);
        --ink-2: var(--logo-charcoal-mid);
        --ink-3: var(--logo-charcoal-soft);
        --surface-deep: var(--logo-charcoal-deep);

        --text: #ffffff;
        --text-dim: #b8c1c7;
        --heading: #ffffff;
        --img-home1: url('../img/hero.jpg');
        --img-home2: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1600&q=80&auto=format&fit=crop');
        --img-home3: url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=1600&q=80&auto=format&fit=crop');
        --img-int: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80&auto=format&fit=crop');
        --img-tools: url('https://images.unsplash.com/photo-1581244277943-fe4a9c777189?w=1600&q=80&auto=format&fit=crop');
        --img-metal: url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?w=1600&q=80&auto=format&fit=crop');
    }

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

    html {
        scroll-behavior: smooth
    }

    body {
        font-family: 'Manrope', system-ui, sans-serif;
        background: var(--ink);
        color: var(--text);
        overflow-x: hidden;
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
    }

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

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

    section {
        position: relative
    }

    .wrap {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px
    }

    .eyebrow {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 12px;
        letter-spacing: .42em;
        text-transform: uppercase;
        color: var(--brand-lighter);
    }

    .serif {
        font-family: 'DM Serif Display', serif
    }

    .mono {
        font-family: 'IBM Plex Mono', monospace
    }

    .bebas {
        font-family: 'Bebas Neue', sans-serif;
        font-weight: 400
    }

    /* ============ NAVBAR — Minimal Top Line ============ */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: rgba(var(--charcoal-rgb), .72);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(var(--brand-rgb), .28);
        transition: background .4s ease;
    }

    .nav-inner {
        width: 100%;
        max-width: none;
        margin: 0;
        display: flex;
        align-items: center;
        position: relative;
        height: 74px;
        padding: 0 12px 0 8px;
    }

    .brandmark {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        margin-right: auto;
        line-height: 0;
        transition: opacity .3s ease, transform .3s ease;
    }

    .brandmark:hover {
        opacity: .92;
        transform: scale(1.02)
    }

    .brandmark-logo {
        display: block;
        height: 86px;
        width: auto;
        max-width: min(220px, 42vw);
        object-fit: contain;
        border-radius: 20%;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .35));
    }

    .menu {
        display: flex;
        align-items: center;
        gap: 38px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        pointer-events: none;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-shrink: 0;
        margin-left: auto;
    }

    .menu a {
        font-size: 13px;
        letter-spacing: .08em;
        color: var(--text-dim);
        position: relative;
        transition: color .3s;
        pointer-events: auto;
    }

    .menu a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -7px;
        height: 1px;
        width: 0;
        background: var(--brand-lighter);
        transition: width .3s;
    }

    .menu a:hover {
        color: var(--text)
    }

    .menu a:hover::after {
        width: 100%
    }

    .nav-call {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 13px;
        letter-spacing: .05em;
        padding: 9px 18px;
        border: 1px solid rgba(var(--brand-rgb), .55);
        color: var(--text);
        transition: .3s;
    }

    .nav-call:hover {
        background: var(--brand);
        border-color: var(--brand)
    }

    .burger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: 0
    }

    .burger span {
        width: 24px;
        height: 2px;
        background: var(--text);
        display: block
    }

    /* ============ HERO — Folded Steel Origami ============ */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 740px;
        width: 100%;
        overflow: hidden;
        background: var(--logo-charcoal-deep);
        perspective: 2000px;
    }

    .hero-faces {
        position: absolute;
        inset: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        z-index: 1
    }

    /* Left face — dark steel, slightly recessed */
    .face-left {
        position: relative;
        background: linear-gradient(160deg, var(--logo-charcoal-soft), var(--logo-charcoal-deep));
        transform: rotateY(3deg);
        transform-origin: right center;
        box-shadow: inset -40px 0 80px -40px rgba(0, 0, 0, .8), inset 0 0 120px rgba(0, 0, 0, .5);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 7vw 0 6vw;
        z-index: 2;
    }

    .face-left .fl-tag {
        font-family: 'IBM Plex Mono', monospace;
        font-weight: 700;
        font-size: 11px;
        letter-spacing: .35em;
        color: var(--brand-lighter);
        text-transform: uppercase;
    }

    .face-left h1 {
        font-family: 'Bebas Neue', sans-serif;
        font-weight: 300;
        font-size: clamp(52px, 7.5vw, 76px);
        line-height: .88;
        letter-spacing: .02em;
        color: var(--heading);
        margin: 18px 0;
        text-shadow: 0 6px 50px rgba(0, 0, 0, .6);
    }

    .face-left h1 em {
        font-style: normal;
        color: var(--brand-lighter)
    }

    .face-left .fl-desc {
        font-family: 'DM Serif Display', serif;
        font-style: italic;
        font-weight: 400;
        font-size: 16px;
        color: rgba(var(--cream), .55);
        line-height: 1.8;
        max-width: 440px;
    }

    .face-left .fl-btn {
        align-self: flex-start;
        margin-top: 30px;
        background: var(--brand);
        color: #fff;
        padding: 15px 32px;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 12px;
        letter-spacing: .18em;
        text-transform: uppercase;
        border: 1px solid var(--brand);
        transition: .3s;
    }

    .face-left .fl-btn:hover {
        background: var(--brand-lighter);
        border-color: var(--brand-lighter);
        color: var(--logo-charcoal-deep)
    }

    /* Right face — lighter steel, counter-angle */
    .face-right {
        position: relative;
        overflow: hidden;
        background: linear-gradient(160deg, var(--logo-charcoal-mid), var(--logo-charcoal));
        transform: rotateY(-2deg);
        transform-origin: left center;
        box-shadow: inset 40px 0 80px -50px rgba(255, 255, 255, .04);
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .face-right .fr-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .face-right .fr-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 40%;
        opacity: .42;
        filter: brightness(.58) contrast(1.15) grayscale(.15);
    }

    .face-right .fr-stats {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 0 6vw;
        width: 100%;
        max-width: 380px;
    }

    .stat-card {
        background: rgba(var(--cream), .05);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(var(--brand-rgb), .18);
        padding: 16px 20px;
        display: flex;
        align-items: center;
        gap: 18px;
        transition: .4s;
    }

    .stat-card:hover {
        border-color: var(--brand-lighter);
        background: rgba(var(--cream), .08);
        transform: translateX(-6px)
    }

    .stat-card .sc-num {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 42px;
        line-height: .8;
        color: var(--heading);
        min-width: 78px
    }

    .stat-card .sc-num em {
        font-style: normal;
        color: var(--brand-lighter)
    }

    .stat-card .sc-lbl {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 10px;
        letter-spacing: .18em;
        color: var(--text-dim);
        text-transform: uppercase;
        line-height: 1.6
    }

    /* The fold crease */
    .fold-crease {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 4;
        pointer-events: none;
        width: 160vh;
        height: 3px;
        transform: translate(-50%, -50%) rotate(25deg);
        background: linear-gradient(to right, transparent, rgba(var(--brand-rgb), .4), rgba(var(--brand-rgb), .75), rgba(var(--brand-rgb), .4), transparent);
        box-shadow: 0 0 20px rgba(var(--brand-rgb), .3);
    }

    .fold-tab {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 5;
        transform: translate(-50%, -50%);
        background: rgba(var(--charcoal-rgb), .78);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(var(--brand-rgb), .35);
        padding: 10px 22px;
        text-align: center;
    }

    .fold-tab .ft-phone {
        font-family: 'IBM Plex Mono', monospace;
        font-weight: 700;
        font-size: 13px;
        letter-spacing: .12em;
        color: var(--brand-lighter)
    }

    .fold-tab .ft-addr {
        font-family: 'IBM Plex Mono', monospace;
        font-weight: 400;
        font-size: 9px;
        letter-spacing: .2em;
        color: rgba(var(--cream), .4);
        text-transform: uppercase;
        margin-top: 3px
    }

    /* Top brand row + scroll */
    .hero-top {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 6;
        padding: 30px 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hero-top .ht-meta {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 10px;
        letter-spacing: .3em;
        color: rgba(var(--cream), .35);
        text-transform: uppercase
    }

    .hero-scroll {
        position: absolute;
        bottom: 26px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 6;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 9px;
        letter-spacing: .3em;
        color: rgba(var(--cream), .3);
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .hero-scroll::after {
        content: "";
        width: 34px;
        height: 1px;
        background: var(--brand-light);
        animation: line 2s infinite
    }

    @keyframes line {

        0%,
        100% {
            opacity: .3;
            width: 18px
        }

        50% {
            opacity: 1;
            width: 40px
        }
    }

    /* ============ SERVICE AREAS ============ */
    .areas {
        background: var(--ink-2);
        overflow: hidden
    }

    .areas-grid {
        display: grid;
        grid-template-columns: .85fr 1.15fr;
        gap: 70px;
        align-items: center
    }

    .areas-main {
        position: relative;
        padding: 40px;
        background: rgba(var(--cream), .035);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(var(--brand-rgb), .25);
    }

    .areas-main .pin {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 11px;
        letter-spacing: .24em;
        color: var(--brand-lighter);
        text-transform: uppercase
    }

    .areas-main h3 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 72px;
        line-height: .85;
        color: var(--heading);
        margin: 10px 0 6px;
        letter-spacing: .02em
    }

    .areas-main .st {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 13px;
        letter-spacing: .1em;
        color: var(--text-dim)
    }

    .areas-main p {
        color: var(--text-dim);
        font-size: 15px;
        margin-top: 18px
    }

    .areas-main .strip {
        height: 3px;
        width: 70%;
        background: var(--img-metal) center/cover;
        opacity: .5;
        margin-top: 24px
    }

    .areas-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px
    }

    .areas-list span {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 12px;
        letter-spacing: .05em;
        color: var(--text-dim);
        padding: 9px 16px;
        border: 1px solid rgba(var(--brand-rgb), .2);
        transition: .3s;
    }

    .areas-list span:hover {
        border-color: var(--brand-lighter);
        color: var(--heading);
        background: rgba(var(--brand-rgb), .08)
    }

    /* ============ STATS ============ */
    .stats {
        background: var(--ink-2);
        border-top: 1px solid rgba(var(--brand-rgb), .14);
        border-bottom: 1px solid rgba(var(--brand-rgb), .14)
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .stat {
        padding: 54px 30px;
        text-align: center;
        position: relative;
        border-right: 1px solid rgba(var(--brand-rgb), .14);
    }

    .stat:last-child {
        border-right: 0
    }

    .stat .num {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 62px;
        line-height: 1;
        color: var(--heading)
    }

    .stat .num em {
        font-style: normal;
        color: var(--brand-lighter)
    }

    .stat .lbl {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 11px;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: var(--text-dim);
        margin-top: 10px
    }

    /* ============ SECTION HEAD ============ */
    .sec-head {
        margin-bottom: 70px;
        max-width: 760px
    }

    .sec-head .eyebrow {
        display: block;
        margin-bottom: 18px
    }

    .sec-head h2 {
        font-family: 'Bebas Neue', sans-serif;
        font-weight: 400;
        font-size: clamp(40px, 6vw, 86px);
        line-height: .92;
        letter-spacing: .01em;
        color: var(--heading);
    }

    .sec-head h2 em {
        font-style: normal;
        color: var(--brand-lighter)
    }

    .sec-head p {
        color: var(--text-dim);
        margin-top: 20px;
        font-size: 17px;
        max-width: 560px
    }

    .pad {
        padding: 130px 0
    }

    /* ============ SERVICES — Floating Image Slices ============ */
    .fis {
        background: var(--ink)
    }

    .fis-row {
        display: grid;
        grid-template-columns: 120px minmax(200px, 280px) 1fr;
        align-items: center;
        gap: 28px;
        padding: 46px 0;
        border-top: 1px solid rgba(var(--brand-rgb), .16);
        transition: .5s;
    }

    .fis-row:last-child {
        border-bottom: 1px solid rgba(var(--brand-rgb), .16)
    }

    .fis-num {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 96px;
        line-height: .8;
        color: rgba(var(--cream), .10);
        transition: .5s;
    }

    .fis-media {
        width: 100%;
        max-width: 280px;
        height: 200px;
        justify-self: center;
        overflow: hidden;
        border: 1px solid rgba(var(--brand-rgb), .25);
        transition: transform .5s, box-shadow .5s;
    }

    .fis-media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: grayscale(.15) contrast(1.05);
        transition: transform .6s ease;
    }

    .fis-body {
        padding-left: 0;
        transition: padding .5s
    }

    .fis-body h3 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 34px;
        letter-spacing: .03em;
        color: var(--heading)
    }

    .fis-body p {
        color: var(--text-dim);
        max-width: 520px;
        margin-top: 6px;
        font-size: 15px
    }

    .fis-tag {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 11px;
        letter-spacing: .2em;
        color: var(--brand-lighter);
        text-transform: uppercase;
        display: inline-block;
        margin-bottom: 8px
    }

    .fis-row:hover {
        background: rgba(var(--brand-rgb), .05)
    }

    .fis-row:hover .fis-num {
        color: var(--brand-lighter)
    }

    .fis-row:hover .fis-media {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .35)
    }

    .fis-row:hover .fis-media img {
        transform: scale(1.06)
    }

    /* ============ WHY CHOOSE US ============ */
    .why {
        background: var(--ink-2);
        overflow: hidden
    }

    .why-grid {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 80px;
        align-items: center
    }

    .why-list {
        display: flex;
        flex-direction: column;
        gap: 2px
    }

    .why-item {
        display: flex;
        gap: 26px;
        padding: 30px 0;
        border-bottom: 1px solid rgba(var(--brand-rgb), .14);
        transition: .4s;
    }

    .why-item:hover {
        padding-left: 14px
    }

    .why-ix {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 13px;
        color: var(--brand-lighter);
        padding-top: 5px;
        min-width: 30px
    }

    .why-item h4 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 26px;
        letter-spacing: .03em;
        color: var(--heading);
        margin-bottom: 4px
    }

    .why-item p {
        color: var(--text-dim);
        font-size: 15px
    }

    .why-visual {
        position: relative;
        height: 520px
    }

    .why-glass {
        position: absolute;
        background: rgba(var(--cream), .04);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(var(--brand-rgb), .22);
    }

    .why-img {
        position: absolute;
        inset: 0;
        overflow: hidden;
        border: 1px solid rgba(var(--brand-rgb), .3);
    }

    .why-img img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 35%;
        filter: grayscale(.25) contrast(1.05);
    }

    .wg1 {
        inset: 0
    }

    .wg2 {
        top: 40px;
        right: -24px;
        width: 180px;
        height: 180px;
        display: grid;
        place-items: center
    }

    .wg2 .big {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 56px;
        color: var(--heading);
        line-height: .8
    }

    .wg2 .sm {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 9px;
        letter-spacing: .2em;
        color: var(--brand-lighter);
        text-align: center;
        text-transform: uppercase
    }

    .wg3 {
        bottom: -22px;
        left: -22px;
        width: 220px;
        padding: 22px
    }

    .wg3 .q {
        font-family: 'DM Serif Display', serif;
        font-style: italic;
        font-size: 18px;
        color: var(--text-dim)
    }

    /* ============ CTA BANNER ============ */
    .cta-band {
        background: linear-gradient(120deg, var(--brand-dark), var(--brand));
        position: relative;
        overflow: hidden;
    }

    .cta-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--img-home1) center/cover;
        opacity: .12;
        mix-blend-mode: overlay;
    }

    .cta-band .wrap {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        padding-top: 80px;
        padding-bottom: 80px;
        flex-wrap: wrap
    }

    .cta-band h2 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(40px, 6vw, 78px);
        line-height: .9;
        color: #fff;
        letter-spacing: .01em
    }

    .cta-band p {
        color: rgba(255, 255, 255, .85);
        font-family: 'IBM Plex Mono', monospace;
        letter-spacing: .1em;
        font-size: 13px;
        margin-top: 14px
    }

    .cta-band .actions {
        display: flex;
        gap: 16px;
        flex-wrap: wrap
    }

    .btn-light {
        background: #fff;
        color: var(--brand-dark);
        padding: 18px 34px;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 13px;
        letter-spacing: .18em;
        text-transform: uppercase;
        transition: .3s
    }

    .btn-light:hover {
        background: var(--ink);
        color: #fff
    }

    .btn-ghost {
        background: transparent;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, .6);
        padding: 18px 34px;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 13px;
        letter-spacing: .18em;
        text-transform: uppercase;
        transition: .3s
    }

    .btn-ghost:hover {
        background: #fff;
        color: var(--brand-dark)
    }

    /* ============ FAQ ============ */
    .faq {
        background: var(--ink)
    }

    .faq-grid {
        display: grid;
        grid-template-columns: .8fr 1.2fr;
        gap: 70px
    }

    .faq-list {
        border-top: 1px solid rgba(var(--brand-rgb), .18)
    }

    .faq-item {
        border-bottom: 1px solid rgba(var(--brand-rgb), .18)
    }

    .faq-q {
        width: 100%;
        text-align: left;
        background: none;
        border: 0;
        cursor: pointer;
        color: var(--text);
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        padding: 26px 0;
        font-family: 'Manrope';
        font-size: 18px;
        font-weight: 600;
    }

    .faq-q .plus {
        font-family: 'IBM Plex Mono', monospace;
        color: var(--brand-lighter);
        font-size: 22px;
        transition: transform .3s;
        flex-shrink: 0
    }

    .faq-item.open .plus {
        transform: rotate(45deg)
    }

    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease
    }

    .faq-a p {
        color: var(--text-dim);
        padding: 0 0 26px;
        font-size: 15px;
        max-width: 90%
    }

    /* ============ ADDITIONAL SERVICES — stacked glass ============ */
    .stack {
        background: var(--ink-2)
    }

    .stack-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px
    }

    .stack-card {
        position: relative;
        padding: 34px;
        min-height: 340px;
        background: rgba(var(--cream), .03);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(var(--brand-rgb), .20);
        box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .8);
        overflow: hidden;
        transition: .5s;
    }

    .stack-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(var(--cream), .02);
        transform: translate(14px, 14px);
        border: 1px solid rgba(var(--brand-rgb), .12);
        z-index: -1;
    }

    .stack-media {
        width: 100%;
        height: 180px;
        margin-bottom: 22px;
        overflow: hidden;
        border: 1px solid rgba(var(--brand-rgb), .3);
        transition: transform .5s ease;
    }

    .stack-media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: grayscale(.2) contrast(1.05);
        transition: transform .5s ease;
    }

    .stack-card h3 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 30px;
        letter-spacing: .03em;
        color: var(--heading);
        margin-bottom: 10px
    }

    .stack-card p {
        color: var(--text-dim);
        font-size: 14px
    }

    .stack-card .idx {
        position: absolute;
        top: 24px;
        right: 28px;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 12px;
        color: var(--brand-lighter)
    }

    .stack-card:hover {
        transform: translateY(-10px);
        border-color: rgba(var(--brand-rgb), .45)
    }

    .stack-card:hover .stack-media img {
        transform: scale(1.06)
    }

    /* ============ ABOUT ============ */
    .about {
        background: var(--ink)
    }

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

    .about-imgwrap {
        position: relative;
        height: 540px
    }

    .about-img {
        position: absolute;
        inset: 0;
        overflow: hidden;
        border: 1px solid rgba(var(--brand-rgb), .2);
    }

    .about-img img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 40%;
        filter: grayscale(.3) contrast(1.05);
    }

    .about-imgwrap::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(var(--charcoal-rgb), .55), transparent 50%)
    }

    .about-badge {
        position: absolute;
        bottom: 28px;
        left: 28px;
        z-index: 2;
        background: rgba(var(--cream), .06);
        backdrop-filter: blur(18px);
        border: 1px solid rgba(var(--brand-rgb), .3);
        padding: 24px 28px;
    }

    .about-badge .y {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 46px;
        color: var(--heading);
        line-height: .8
    }

    .about-badge .t {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 10px;
        letter-spacing: .2em;
        color: var(--brand-lighter);
        text-transform: uppercase
    }

    .about-text p {
        color: var(--text-dim);
        margin-top: 20px;
        font-size: 16px
    }

    .about-sign {
        font-family: 'DM Serif Display', serif;
        font-style: italic;
        font-size: 22px;
        color: var(--text-dim);
        margin-top: 30px
    }

    .about-mini {
        display: flex;
        gap: 40px;
        margin-top: 36px
    }

    .about-mini div span {
        display: block;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 38px;
        color: var(--brand-lighter);
        line-height: 1
    }

    .about-mini div small {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 10px;
        letter-spacing: .18em;
        color: var(--text-dim);
        text-transform: uppercase
    }

    /* ============ COMPREHENSIVE — smart dashboard ============ */
    .dash {
        background: var(--ink-2);
        overflow: hidden
    }

    .dash-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: minmax(110px, auto);
        gap: 18px
    }

    .widget {
        background: rgba(var(--cream), .035);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(var(--brand-rgb), .2);
        padding: 24px;
        position: relative;
        overflow: hidden;
        transition: .4s;
    }

    .widget:hover {
        border-color: var(--brand-lighter);
        background: rgba(var(--cream), .06);
        transform: translateY(-4px)
    }

    .widget .wlabel {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 10px;
        letter-spacing: .22em;
        color: var(--text-dim);
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 8px
    }

    .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--brand-lighter);
        box-shadow: 0 0 10px var(--brand-lighter);
        animation: pulse 2s infinite
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: .3
        }
    }

    .widget h4 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 26px;
        letter-spacing: .03em;
        color: var(--heading);
        margin-top: 14px
    }

    .widget p {
        color: var(--text-dim);
        font-size: 13px;
        margin-top: 4px
    }

    .w-a {
        grid-column: span 5;
        grid-row: span 2
    }

    .w-b {
        grid-column: span 4;
        grid-row: span 1
    }

    .w-c {
        grid-column: span 3;
        grid-row: span 1
    }

    .w-d {
        grid-column: span 4;
        grid-row: span 1
    }

    .w-e {
        grid-column: span 3;
        grid-row: span 1
    }

    .w-f {
        grid-column: span 7;
        grid-row: span 1
    }

    .w-a .wimg {
        position: absolute;
        inset: 0;
        background: var(--img-int) center/cover;
        opacity: .16;
        filter: grayscale(.3)
    }

    .w-a .winner {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between
    }

    .toggle {
        width: 46px;
        height: 24px;
        border-radius: 20px;
        background: rgba(var(--brand-rgb), .4);
        position: relative;
        border: 1px solid rgba(var(--brand-rgb), .5)
    }

    .toggle::after {
        content: "";
        position: absolute;
        top: 2px;
        left: 2px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--brand-lighter);
        transition: .4s
    }

    .widget:hover .toggle::after {
        left: 24px
    }

    .bar {
        height: 6px;
        background: rgba(var(--brand-rgb), .25);
        margin-top: 14px;
        position: relative;
        overflow: hidden
    }

    .bar i {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        background: var(--brand-lighter);
        width: 78%
    }

    .reading {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 44px;
        color: var(--heading);
        line-height: .8;
        margin-top: 10px
    }

    .reading em {
        font-style: normal;
        font-size: 16px;
        color: var(--brand-lighter)
    }

    /* ============ CONTACT + MAP ============ */
    .contact {
        background: var(--ink)
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border: 1px solid rgba(var(--brand-rgb), .2)
    }

    .contact-info {
        padding: 60px
    }

    .contact-info h2 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(38px, 5vw, 64px);
        color: var(--heading);
        line-height: .9;
        letter-spacing: .01em
    }

    .contact-info p {
        color: var(--text-dim);
        margin: 18px 0 36px;
        max-width: 420px
    }

    .cline {
        display: flex;
        gap: 18px;
        padding: 20px 0;
        border-top: 1px solid rgba(var(--brand-rgb), .15)
    }

    .cline:last-of-type {
        border-bottom: 1px solid rgba(var(--brand-rgb), .15)
    }

    .cline .ci {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
        border: 1px solid rgba(var(--brand-rgb), .4);
        display: grid;
        place-items: center;
        color: var(--brand-lighter)
    }

    .cline .clbl {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 10px;
        letter-spacing: .2em;
        color: var(--text-dim);
        text-transform: uppercase
    }

    .cline .cval {
        font-size: 17px;
        color: var(--heading);
        font-weight: 600
    }

    .contact-cta {
        display: inline-block;
        margin-top: 34px;
        background: var(--brand);
        color: #fff;
        padding: 16px 36px;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 13px;
        letter-spacing: .18em;
        text-transform: uppercase;
        transition: .3s
    }

    .contact-cta:hover {
        background: var(--brand-lighter);
        color: var(--ink)
    }

    .map-wrap {
        position: relative;
        min-height: 560px;
        border-left: 1px solid rgba(var(--brand-rgb), .2)
    }

    .map-wrap iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
        filter: grayscale(.5) invert(.92) contrast(.9)
    }

    /* ============ FOOTER — grain/noise ============ */
    .footer {
        position: relative;
        background: var(--surface-deep);
        padding: 90px 0 36px;
        overflow: hidden;
        border-top: 1px solid rgba(var(--brand-rgb), .18);
    }

    .footer::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: .5;
        pointer-events: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.32'/%3E%3C/svg%3E");
    }

    .footer .wrap {
        position: relative;
        z-index: 2
    }

    .foot-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 50px;
        text-align: center;
    }

    .foot-logo a {
        display: inline-block;
        line-height: 0;
        transition: opacity .3s ease, transform .3s ease;
    }

    .foot-logo a:hover {
        opacity: .92;
        transform: scale(1.04)
    }

    .foot-logo-img {
        display: block;
        height: 110px;
        width: auto;
        max-width: 160px;
        object-fit: contain;
        border-radius: 50%;
        filter: drop-shadow(0 6px 20px rgba(0, 0, 0, .45));
    }

    .foot-cols {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.4fr;
        gap: 40px;
        padding-bottom: 50px;
        border-bottom: 1px solid rgba(var(--brand-rgb), .16)
    }

    .foot-cols h5 {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 11px;
        letter-spacing: .24em;
        color: var(--brand-lighter);
        text-transform: uppercase;
        margin-bottom: 20px
    }

    .foot-cols a,
    .foot-cols p {
        display: block;
        color: var(--text-dim);
        font-size: 14px;
        margin-bottom: 12px;
        transition: color .3s
    }

    .foot-cols a:hover {
        color: #fff
    }

    .foot-about {
        color: var(--text-dim);
        font-size: 14px;
        max-width: 320px
    }

    .foot-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 26px;
        flex-wrap: wrap;
        gap: 12px
    }

    .foot-bottom .copy {
        font-size: 11px;
        color: var(--brand-light);
        font-family: 'IBM Plex Mono', monospace;
        letter-spacing: .1em
    }

    .foot-bottom .by {
        font-size: 11px;
        color: var(--text-dim)
    }

    /* ============ REVEAL ANIM ============ */
    .reveal {
        opacity: 0;
        transform: translateY(34px);
        transition: opacity .9s ease, transform .9s ease
    }

    .reveal.in {
        opacity: 1;
        transform: none
    }

    /* ============ RESPONSIVE ============ */
    @media(max-width:980px) {

        .why-grid,
        .about-grid,
        .contact-grid,
        .faq-grid {
            grid-template-columns: 1fr;
            gap: 50px
        }

        .map-wrap {
            border-left: 0;
            border-top: 1px solid rgba(var(--brand-rgb), .2)
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr)
        }

        .stat:nth-child(2) {
            border-right: 0
        }

        .stat {
            border-bottom: 1px solid rgba(var(--brand-rgb), .14)
        }

        .stack-grid {
            grid-template-columns: 1fr
        }

        .dash-grid {
            grid-template-columns: repeat(6, 1fr)
        }

        .w-a,
        .w-b,
        .w-c,
        .w-d,
        .w-e,
        .w-f {
            grid-column: span 6;
            grid-row: span 1
        }

        .areas-grid {
            grid-template-columns: 1fr;
            gap: 40px
        }

        .hero-top {
            padding: 26px 32px
        }

        .face-left {
            padding: 0 5vw 0 32px
        }

        .fr-stats {
            padding: 0 32px
        }
    }

    @media(max-width:680px) {
        .wrap {
            padding: 0 22px
        }

        .nav-inner {
            padding: 0 10px 0 6px
        }

        .nav-actions {
            gap: 10px
        }

        .brandmark-logo {
            height: 88px
        }

        .menu,
        .nav-call {
            display: none
        }

        .burger {
            display: flex
        }

        .menu.show {
            display: flex;
            position: absolute;
            top: 74px;
            left: 0;
            right: 0;
            transform: none;
            flex-direction: column;
            gap: 0;
            background: rgba(var(--charcoal-rgb), .97);
            padding: 10px 22px 24px;
            border-bottom: 1px solid rgba(var(--brand-rgb), .3);
            pointer-events: auto;
        }

        .menu.show a {
            padding: 14px 0;
            border-bottom: 1px solid rgba(var(--brand-rgb), .12)
        }

        .hero {
            min-height: 700px;
            perspective: none
        }

        .hero-faces {
            grid-template-columns: 1fr;
            grid-template-rows: 1fr 1fr
        }

        .face-left {
            transform: none;
            padding: 90px 26px 40px;
            justify-content: flex-end
        }

        .face-right {
            transform: none
        }

        .fr-stats {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 10px;
            padding: 26px;
            max-width: none
        }

        .stat-card {
            flex: 1;
            min-width: 120px;
            flex-direction: column;
            align-items: flex-start;
            gap: 6px
        }

        .stat-card .sc-num {
            font-size: 34px;
            min-width: 0
        }

        .fold-crease {
            width: 200vw;
            transform: translate(-50%, -50%) rotate(6deg)
        }

        .hero-top {
            flex-direction: column;
            gap: 8px;
            align-items: flex-start;
            padding: 22px
        }

        .pad {
            padding: 80px 0
        }

        .fis-row {
            grid-template-columns: 1fr;
            gap: 18px;
            padding: 36px 0
        }

        .fis-num {
            font-size: 54px;
            line-height: 1
        }

        .fis-media {
            max-width: none;
            height: 200px
        }

        .fis-body {
            padding-left: 0 !important
        }

        .stat {
            padding: 36px 14px
        }

        .stat .num {
            font-size: 46px
        }

        .contact-info {
            padding: 34px
        }

        .cta-band .wrap {
            flex-direction: column;
            align-items: flex-start
        }

        .about-mini {
            flex-wrap: wrap;
            gap: 24px
        }

        .foot-cols {
            grid-template-columns: 1fr 1fr
        }
    }