    :root {
        --bg: #f8f8f4;
        --surface: #ffffff;
        --text: #3a3939;
        --muted: #6f6f68;
        --line: rgba(16, 16, 16, .1);
        --max: 1440px;
        --r: 28px;
        --hero: clamp(4.8rem, 12vw, 9rem);
        --display: clamp(2.7rem, 6vw, 5.2rem);
        --body: clamp(1rem, 1.2vw, 1.08rem);
        --small: .95rem;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', sans-serif;
        background: var(--bg);
        color: var(--text);
        min-height: 100vh;
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
        overflow-x: hidden;
    }

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

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

    .logo-image {
        width: 122px;
        filter: brightness(.3);
        display: block;
    }

    .container {
        width: min(var(--max), calc(100% - 40px));
        margin: 0 auto;
    }

    .skip-link {
        position: absolute;
        left: -999px;
        top: 10px;
        background: #000;
        color: #fff;
        padding: 10px 14px;
        border-radius: 999px;
        z-index: 1000;
    }

    .skip-link:focus {
        left: 10px;
    }

    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 20;
        background: rgba(248, 248, 244, .82);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid transparent;
        transition: border-color .3s ease;
    }

    .site-header.scrolled {
        border-color: var(--line);
    }

    .nav {
        min-height: 78px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 14px;
        font-weight: 700;
        letter-spacing: -.03em;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 28px;
        color: var(--muted);
        font-size: var(--small);
    }

    .nav-links a {
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 1px;
        background: var(--text);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .28s ease;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
        transform: scaleX(1);
    }

    .nav-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        padding: 0 18px;
        border: 1px solid var(--text);
        border-radius: 999px;
        font-size: var(--small);
        font-weight: 600;
        transition: all .3s ease;
    }

    .nav-cta:hover,
    .btn-dark:hover {
        background: var(--text);
        color: var(--bg);
    }

    .menu-btn {
        display: none;
        width: 46px;
        height: 46px;
        border: 1px solid var(--line);
        border-radius: 999px;
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .28);
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s ease;
        z-index: 40;
    }

    .mobile-drawer {
        position: fixed;
        top: 0;
        right: 0;
        width: min(82vw, 320px);
        height: 100vh;
        background: var(--surface);
        border-left: 1px solid var(--line);
        box-shadow: -20px 0 40px rgba(0, 0, 0, .08);
        transform: translateX(100%);
        transition: transform .35s ease;
        z-index: 50;
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .mobile-drawer.open {
        transform: translateX(0);
    }

    .mobile-overlay.open {
        opacity: 1;
        pointer-events: auto;
    }

    .drawer-close {
        align-self: flex-end;
        width: 42px;
        height: 42px;
        border: 1px solid var(--line);
        border-radius: 50%;
        font-size: 1.3rem;
    }

    .mobile-drawer a {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
        font-size: 1.05rem;
        font-weight: 600;
    }

    section {
        padding: 28px 0;
    }

    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding-top: 110px;
        padding-bottom: 50px;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1.35fr .65fr;
        gap: 40px;
        align-items: end;
    }

    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--muted);
        font-size: var(--small);
        margin-bottom: 22px;
    }

    .eyebrow::before {
        content: '';
        width: 36px;
        height: 1px;
        background: var(--text);
    }

    h1,
    h2,
    h3 {
        font-weight: 800;
        letter-spacing: -.06em;
        line-height: 1;
    }

    h1 {
        font-size: var(--hero);
        max-width: 10ch;
    }

    .hero-copy p {
        margin-top: 26px;
        max-width: 52ch;
        color: var(--muted);
        font-size: clamp(1rem, 1.4vw, 1.14rem);
        line-height: 1.7;
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 28px;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 56px;
        padding: 0 22px;
        border-radius: 999px;
        font-size: var(--small);
        font-weight: 600;
        transition: all .3s ease;
    }

    .btn-dark {
        background: var(--text);
        color: var(--bg);
    }

    .btn-light {
        border: 1px solid var(--line);
        background: var(--surface);
    }

    .btn-light:hover {
        border-color: var(--text);
    }

    .hero-wrap {
        position: relative;
        min-height: 78vh;
    }

    .hero-side {
        float: right;
        width: 34%;
        margin: 0 0 28px 28px;
        display: grid;
        gap: 28px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 32px;
        padding: 26px;
    }

    .hero-copy {
        position: relative;
        z-index: 1;
    }

    .hero-copy h1 {
        max-width: 12ch;
        font-size: var(--hero);
        line-height: .95;
    }

    .hero-copy p {
        max-width: 52ch;
    }

    .hero-wrap::after {
        content: "";
        display: block;
        clear: both;
    }

    @media (max-width: 1040px) {
        .hero-wrap {
            min-height: 58vh;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .hero-copy {
            order: 1;
            margin-bottom: 58px;
        }

        .hero-side {
            order: 2;
            float: none;
            width: 100%;
            margin: 28px 0 0 0;
        }
    }

    .hero-meta-list {
        display: grid;
        gap: 18px;
    }

    .hero-meta-item {
        padding: 0 0 18px;
        border-bottom: 1px solid var(--line);
    }

    .hero-meta-item span {
        display: block;
        color: var(--muted);
        margin-bottom: 6px;
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .12em;
    }

    .hero-meta-item strong {
        font-size: clamp(1.2rem, 3vw, 2rem);
        letter-spacing: -.05em;
        font-weight: 700;
        line-height: 1.05;
    }

    .rotating-rail {
        overflow: hidden;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        padding: 16px 0;
    }

    .rotating-track {
        display: flex;
        gap: 26px;
        width: max-content;
        animation: ticker 22s linear infinite;
        font-size: .9rem;
        text-transform: uppercase;
        letter-spacing: .18em;
        color: var(--muted);
    }

    .rotating-track span {
        white-space: nowrap;
    }

    .section-head {
        display: grid;
        grid-template-columns: 1fr .9fr;
        gap: 24px;
        align-items: end;
        margin-bottom: 26px;
        padding-top: 30px;
        border-top: 1px solid var(--line);
    }

    .kicker {
        color: var(--muted);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .16em;
        margin-bottom: 8px;
    }

    h2 {
        font-size: var(--display);
        max-width: 11ch;
    }

    .section-head p,
    .text-block p,
    .project-text p,
    .contact-copy p,
    .statement-block p {
        color: var(--muted);
        line-height: 1.8;
        font-size: var(--body);
    }

    .about-grid,
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .panel {
        border: 1px solid var(--line);
        border-radius: var(--r);
        background: var(--surface);
        padding: 28px;
    }

    .skills-list,
    .facts-list,
    .contact-links {
        display: grid;
        gap: 14px;
        margin-top: 22px;
    }

    .line-item,
    .contact-link {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        align-items: center;
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
        font-size: var(--small);
    }

    .line-item:last-child,
    .contact-link:last-child {
        border-bottom: 0;
    }

    .line-item span,
    .contact-link span {
        color: var(--muted);
    }

    .projects {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .project {
        min-height: 440px;
        border-radius: 36px;
        border: 1px solid var(--line);
        background: var(--surface);
        padding: 18px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: hidden;
        position: relative;
    }

    .project-image {
        width: 100%;
        height: 190px;
        object-fit: cover;
        border-radius: 24px;
        display: block;
        border: 1px solid var(--line);
        margin-bottom: 18px;
    }

    .project::before {
        display: none;
    }

    .project:nth-child(2)::before {
        background: linear-gradient(180deg, #ecece6, #ddddcf);
    }

    .project:nth-child(3)::before {
        background: linear-gradient(180deg, #f3f2eb, #e6e5da);
    }

    .project-label {
        position: relative;
        z-index: 1;
        display: inline-flex;
        width: fit-content;
        padding: 8px 12px;
        border: 1px solid var(--line);
        border-radius: 999px;
        font-size: .78rem;
        color: var(--muted);
        background: rgba(255, 255, 255, .7);
    }

    .project-text {
        position: relative;
        z-index: 1;
        margin-top: auto;
    }

    .project h3 {
        font-size: clamp(1.5rem, 3vw, 2.35rem);
        max-width: 10ch;
    }

    .project-text p {
        margin-top: 14px;
    }

    .statement-block {
        min-height: 88vh;
        display: flex;
        align-items: center;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        margin: 24px 0;
    }

    .statement-inner {
        display: grid;
        gap: 20px;
    }

    .statement-label {
        color: var(--muted);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .18em;
    }

    .statement-block h2 {
        font-size: clamp(3.2rem, 9vw, 8.5rem);
        max-width: 9ch;
        line-height: .9;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .service {
        border-top: 1px solid var(--line);
        padding: 18px 0 26px;
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 10px;
    }

    .service span {
        color: transparent;
        -webkit-text-stroke: 1.5px var(--text);
        font-size: clamp(2.4rem, 5vw, 3.5rem);
        font-weight: 800;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
        letter-spacing: 0.01em;
        line-height: 1;

    }


    .service h3 {
        font-size: clamp(1.55rem, 3vw, 2.2rem);
    }

    .service p {
        color: var(--muted);
        margin-top: 10px;
        line-height: 1.75;
    }

    .parallax {
        will-change: transform;
    }

    footer {
        padding: 18px 0 30px;
    }

    .footer-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding-top: 20px;
        border-top: 1px solid var(--line);
        color: var(--muted);
        font-size: .9rem;
    }

    .reveal {
        opacity: 0;
        transform: translateY(26px);
        transition: opacity .8s ease, transform .8s ease;
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    @keyframes ticker {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    @media (max-width: 1040px) {

        .hero-grid,
        .section-head,
        .about-grid,
        .contact-grid,
        .projects,
        .services-grid {
            grid-template-columns: 1fr;
        }

        h1 {
            max-width: 11ch;
        }
    }

    @media (max-width: 760px) {
        .container {
            width: min(var(--max), calc(100% - 24px));
        }

            .hero {
     margin-top: 100px;
      
    }


        .nav-links {
            position: fixed;
            top: 78px;
            left: 12px;
            right: 12px;
            background: rgba(255, 255, 255, .98);
            border: 1px solid var(--line);
            border-radius: 24px;
            padding: 18px;
            display: none;
            flex-direction: column;
            align-items: flex-start;
        }

        .nav-links.open {
            display: flex;
        }

        .menu-btn {
            display: grid;
            place-items: center;
        }

        .nav-cta {
            display: none;
        }

        .hero {
            min-height: auto;
        }

        .service {
            grid-template-columns: 1fr;
        }

        .project {
            min-height: 360px;
        }

        .footer-bar {
            flex-direction: column;
            align-items: flex-start;
        }

        .mobile-overlay {
            display: block;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        * {
            animation: none !important;
            transition: none !important;
            scroll-behavior: auto !important;
        }

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

        .parallax {
            transform: none !important;
        }
    }

    .site-footer {
        padding: 40px 0 28px;
    }

    .footer-minimal {
        display: grid;
        gap: 18px;
    }

    .footer-line {
        width: 100%;
        height: 1px;
        background: var(--line);
    }

    .footer-copy {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        color: var(--muted);
        font-size: 0.9rem;
        letter-spacing: 0.02em;
    }

    .footer-copy span:first-child {
        color: var(--text);
        font-weight: 600;
        letter-spacing: -0.03em;
    }

    .footer-brand {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        color: var(--text);
        font-weight: 600;
        letter-spacing: -0.03em;
    }

    .footer-logo {
        width: 130px;
        filter: brightness(0);
        object-fit: cover;
        display: block;
    }

    .footer-copy span:last-child {
        color: var(--muted);
    }

    @media (max-width: 760px) {
        .footer-copy {
            flex-direction: column;
            align-items: center;
        }
    }

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(255, 255, 255, 0.18);
        backdrop-filter: blur(8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
        z-index: 9998;
    }

    body::after {
        content: attr(data-tooltip-text);
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.96);
        width: min(90vw, 520px);
        max-width: 520px;
        background: #fff;
        color: #111;
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: 20px;
        padding: 22px 24px;
        font-size: 0.95rem;
        line-height: 1.6;
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
        z-index: 9999;
        text-align: center;
        white-space: pre-line;
    }

    body.tooltip-open::before,
    body.tooltip-open::after {
        opacity: 1;
    }

    body.tooltip-open::after {
        transform: translate(-50%, -50%) scale(1);
    }


    .outline-word {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
        color: transparent;
        letter-spacing: 0.1cqi;
        -webkit-text-stroke: 1.5px #111;
        -webkit-text-fill-color: transparent;
    }


    .tooltip-target {
        cursor: help;
    }

    .project-modal {
        position: fixed;
        inset: 0;
        background: rgba(255, 255, 255, 0.18);
        backdrop-filter: blur(0px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease, backdrop-filter 0.35s ease;
        z-index: 9998;
        display: grid;
        place-items: center;
        padding: 20px;
    }

    .project-modal.open {
        opacity: 1;
        pointer-events: auto;
        backdrop-filter: blur(10px);
    }

    .project-modal-panel {
        width: min(92vw, 620px);
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: 24px;
        padding: 24px;
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
        transform: translateY(18px) scale(0.98);
        opacity: 0;
        transition: transform 0.35s ease, opacity 0.35s ease;
    }

    .project-modal.open .project-modal-panel {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    .project-modal-close {
        float: right;
        width: 40px;
        height: 40px;
        border: 1px solid var(--line);
        border-radius: 50%;
        font-size: 1.2rem;
    }

    .template-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin: 18px 0;
    }

    .template-btn {
        border: 1px solid var(--line);
        border-radius: 999px;
        padding: 10px 14px;
        background: var(--surface);
    }

    .project-modal-panel h3 {
        letter-spacing: 0.01em;
        weight: 600;
    }

    #projectMessage {
        width: 100%;
        min-height: 140px;
        resize: vertical;
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 16px;
        font: inherit;
        margin-top: 12px;
    }

    .send-btn {
        margin-top: 14px;
        min-height: 52px;
        padding: 0 18px;
        border-radius: 999px;
        background: var(--text);
        color: var(--bg);
        font-weight: 600;
    }

    .statement-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;

        border-top: 1px solid var(--line);


        padding: 50px 0;
    }

    .statement-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .stat-item {
        padding: 36px 28px;
        border-bottom: 1px solid var(--line);
        border-right: 1px solid var(--line);
    }

    .stat-item:nth-child(2),
    .stat-item:nth-child(4) {
        border-right: 0;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: 0;
    }

    .stat-item strong {
        display: block;
        font-size: clamp(3rem, 6vw, 5.5rem);
        font-weight: 800;
        letter-spacing: -0.06em;
        line-height: 1;
        margin-bottom: 10px;
    }

    .stat-item span {
        color: var(--muted);
        font-size: 0.9rem;
        line-height: 1.5;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    @media (max-width: 1040px) {
        .statement-split {
            grid-template-columns: 1fr;
            min-height: auto;
            gap: 40px;
        }
    }

    @media (max-width: 760px) {
        .stat-item {
            padding: 24px 18px;
        }
    }

    .faq-head {
        grid-template-columns: 1.2fr .8fr;
        gap: 40px;
        align-items: end;
        margin-bottom: 22px;
    }

    .faq-head h2 {
        max-width: 16ch;
    }

    .faq-head p {
        max-width: 58ch;
    }

    .faq-list {
        border-top: 1px solid var(--line);
    }

    .faq-item {
        border-bottom: 1px solid var(--line);
    }

    .faq-question {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        text-align: left;
        padding: 22px 0;
        font-size: 1.05rem;
        font-weight: 600;
        letter-spacing: -.03em;
        color: var(--text);
    }

    .about-intro {
        max-width: 58ch;
        color: var(--muted);
        line-height: 1.8;
        margin: 0 0 18px;
    }

    .about-btn-wrap {
        display: flex;
        justify-content: center;
        margin-bottom: 26px;
        margin-top: 28px;
    }

    .read-more-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 0 18px;
        border: 1px solid var(--text);
        border-radius: 999px;
        font-size: var(--small);
        font-weight: 600;
        white-space: nowrap;
        transition: all .3s ease;
    }

    .read-more-btn:hover {
        background: var(--text);
        color: var(--bg);
    }

    .faq-icon {
        font-size: 1.4rem;
        color: var(--muted);
        transition: transform .3s ease;
    }

    .faq-answer {
        height: 0;
        overflow: hidden;
        transition: height .35s ease;
    }

    .faq-answer-inner {
        padding: 0 0 22px;
        color: var(--muted);
        line-height: 1.8;
        max-width: 80ch;
    }

    .contact-box {
        background: transparent;
        border: none;
        padding: 0;
    }

    @media (max-width: 760px) {
        .line-item {
            align-items: flex-start;
        }

        .project h3 {
            max-width: 100%;

        }

        section {
            padding: 15px 0 !important;
        }

        .faq-head {
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .faq-head p {
            max-width: 100%;
        }

        h2 {
            max-width: 100%;
        }

        .line-item span {
            text-align: right;
            margin-left: auto;
        }
    }

    .logo-carousel {
        position: relative;
        overflow: hidden;
        padding: 18px 0;
        margin-top: 20px;
        border-bottom: 1px solid var(--line);
    }

    .logo-carousel::before,
    .logo-carousel::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 120px;
        z-index: 2;
        pointer-events: none;
    }

    .logo-carousel::before {
        left: 0;
        background: linear-gradient(to right, var(--bg) 0%, rgba(248, 248, 244, 0) 100%);
    }

    .logo-carousel::after {
        right: 0;
        background: linear-gradient(to left, var(--bg) 0%, rgba(248, 248, 244, 0) 100%);
    }

    .logo-track {
        display: flex;
        width: max-content;
        gap: 50px;
        align-items: center;
        animation: logoScroll 64s linear infinite;
    }

    .logo-slide {
        width: 180px;
        flex: 0 0 auto;
        display: grid;
        place-items: center;
    }

    .logo-slide img {
        max-width: 100%;
        height: 120px;
        object-fit: contain;
        filter: brightness(0);
        opacity: 0.85;
        transition: opacity .3s ease, transform .3s ease;
    }

    .logo-slide img:hover {
        opacity: 1;
        transform: scale(1.05);
    }

    @keyframes logoScroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    @media (max-width: 760px) {
        .logo-slide {
            width: 140px;
        }

        .logo-track {
            gap: 28px;
        }

        .logo-slide img {
            height: 38px;
        }
    }