      :root {
        --black: #0a0a0a;
        --white: #fdfdfb;
        --off-white: #f3f2ee;
        --gray-mid: #8c8c86;
        --gray-line: #dcdad3;
        --gray-dark: #1c1c1a;
        --display: "Archivo Black", sans-serif;
        --body: "Manrope", sans-serif;
        --mono: "Space Grotesk", sans-serif;
        --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        background: var(--off-white);
        color: var(--black);
        font-family: var(--body);
        overflow-x: hidden;
        cursor: none;
      }
      @media (max-width: 900px) {
        body {
          cursor: auto;
        }
      }
      a {
        color: inherit;
        text-decoration: none;
      }
      img {
        display: block;
        max-width: 100%;
      }
      button {
        font-family: inherit;
        cursor: none;
      }
      @media (max-width: 900px) {
        button {
          cursor: pointer;
        }
      }
      .wrap {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 48px;
      }
      @media (max-width: 900px) {
        .wrap {
          padding: 0 24px;
        }
      }

      /* ---------- custom cursor ---------- */
      .cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--white);
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition:
          width 0.35s var(--ease),
          height 0.35s var(--ease),
          background 0.35s var(--ease);
        mix-blend-mode: difference;
      }
      .cursor-ring {
        position: fixed;
        top: 0;
        left: 0;
        width: 38px;
        height: 38px;
        border: 1px solid var(--white);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition:
          width 0.4s var(--ease),
          height 0.4s var(--ease),
          opacity 0.3s var(--ease),
          border-color 0.35s var(--ease);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        mix-blend-mode: difference;
      }
      .cursor-ring span {
        opacity: 0;
        transition: opacity 0.25s var(--ease);
        white-space: nowrap;
      }
      @media (max-width: 900px) {
        .cursor,
        .cursor-ring {
          display: none;
        }
      }

      /* ---------- scroll progress ---------- */
      .progress {
        position: fixed;
        top: 0;
        left: 0;
        height: 2px;
        background: var(--black);
        z-index: 200;
        width: 0%;
      }

      /* ---------- preloader ---------- */
      .preloader {
        position: fixed;
        inset: 0;
        background: var(--black);
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 22px;
      }
      .preloader img {
        width: 160px;
        filter: invert(1);
        opacity: 0;
      }
      .preloader .pl-bar {
        width: 180px;
        height: 1px;
        background: rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
      }
      .preloader .pl-fill {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0%;
        background: var(--white);
      }
      .preloader .pl-label {
        font-family: var(--mono);
        color: var(--white);
        font-size: 11px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        opacity: 0.6;
      }

      /* ---------- nav ---------- */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 500;
        padding: 26px 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition:
          padding 0.4s var(--ease),
          background 0.4s var(--ease),
          border-color 0.4s var(--ease),
          backdrop-filter 0.4s var(--ease);
        border-bottom: 1px solid transparent;
      }
      @media (max-width: 900px) {
        nav {
          padding: 20px 24px;
        }
      }
      nav.scrolled {
        padding: 16px 48px;
        background: rgba(243, 242, 238, 0.72);
        backdrop-filter: blur(14px);
        border-bottom: 0px solid var(--gray-line);
      }
      @media (max-width: 900px) {
        nav.scrolled {
          padding: 14px 24px;
        }
      }
      .nav-logo {
        display: flex;
        align-items: center;
      }
      .nav-logo img {
        height: 64px;
        width: auto;
        object-fit: contain;
        transition: height 0.4s var(--ease);
      }
      nav.scrolled .nav-logo img {
        height: 50px;
      }
      @media (max-width: 900px) {
        .nav-logo img {
          height: 46px;
        }
        nav.scrolled .nav-logo img {
          height: 40px;
        }
      }
      .nav-links {
        display: flex;
        gap: 38px;
        list-style: none;
      }
      .nav-links a {
        font-family: var(--mono);
        font-size: 12.5px;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        position: relative;
        padding-bottom: 4px;
      }
      .nav-links a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;
        height: 1px;
        background: var(--black);
        transition: width 0.35s var(--ease);
      }
      .nav-links a:hover::after {
        width: 100%;
      }
      @media (max-width: 900px) {
        .nav-links {
          display: none;
        }
      }
      .nav-cta {
        font-family: var(--mono);
        font-size: 12.5px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      @media (max-width: 900px) {
        .nav-cta {
          display: none;
        }
      }
      .nav-cta svg {
        width: 14px;
        transition: transform 0.3s var(--ease);
      }
      .nav-cta:hover svg {
        transform: translateX(4px);
      }

      .burger {
        display: none;
        flex-direction: column;
        gap: 5px;
        width: 26px;
        z-index: 600;
      }
      .burger span {
        height: 1.5px;
        background: var(--black);
        width: 100%;
        transition:
          transform 0.3s var(--ease),
          opacity 0.3s var(--ease);
      }
      @media (max-width: 900px) {
        .burger {
          display: flex;
        }
      }
      .mobile-menu {
        position: fixed;
        inset: 0;
        background: var(--black);
        z-index: 400;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 32px;
        clip-path: circle(0% at 92% 4%);
        transition: clip-path 0.7s var(--ease);
      }
      .mobile-menu.open {
        clip-path: circle(150% at 92% 4%);
      }
      .mobile-menu ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 18px;
      }
      .mobile-menu a {
        color: var(--white);
        font-family: var(--display);
        font-size: 38px;
        text-transform: uppercase;
      }

      /* ---------- hero ---------- */
      .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 140px 48px 80px;
        overflow: hidden;
      }
      @media (max-width: 900px) {
        .hero {
          padding: 120px 24px 60px;
          min-height: 96vh;
        }
      }
      .hero-grid {
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 20px;
        align-items: center;
        position: relative;
      }
      @media (max-width: 1024px) {
        .hero-grid {
          grid-template-columns: 1fr;
          gap: 60px;
        }
      }
      .hero-eyebrow {
        font-family: var(--mono);
        font-size: 12.5px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--gray-mid);
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 22px;
        overflow: hidden;
      }
      .hero-eyebrow span {
        display: inline-block;
        width: 26px;
        height: 1px;
        background: var(--gray-mid);
      }
      .hero h1 {
        font-family: var(--display);
        text-transform: uppercase;
        line-height: 0.92;
        letter-spacing: -0.01em;
        font-size: clamp(52px, 7.6vw, 118px);
      }
      .hero h1 .line {
        display: block;
        overflow: hidden;
      }
      .hero h1 .line span {
        display: inline-block;
        transform: translateY(110%);
      }
      .hero-sub {
        margin-top: 30px;
        font-size: 17px;
        color: #3c3c39;
        max-width: 420px;
        line-height: 1.6;
        font-weight: 400;
      }
      .hero-ctas {
        display: flex;
        gap: 18px;
        margin-top: 44px;
        flex-wrap: wrap;
      }
      .btn {
        font-family: var(--mono);
        font-size: 12.5px;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        padding: 17px 30px;
        border: 1px solid var(--black);
        position: relative;
        overflow: hidden;
        display: inline-flex;
        align-items: center;
        gap: 10px;
      }
      .btn-solid {
        background: var(--black);
        color: var(--white);
      }
      .btn-solid span.fill {
        position: absolute;
        inset: 0;
        background: var(--white);
        transform: translateY(101%);
        transition: transform 0.45s var(--ease);
        z-index: 0;
      }
      .btn-solid:hover span.fill {
        transform: translateY(0);
      }
      .btn-solid span.txt {
        position: relative;
        z-index: 1;
        transition: color 0.45s var(--ease);
      }
      .btn-solid:hover span.txt {
        color: var(--black);
      }
      .btn-outline {
        background: transparent;
        color: var(--black);
      }
      .btn-outline span.fill {
        position: absolute;
        inset: 0;
        background: var(--black);
        transform: translateY(101%);
        transition: transform 0.45s var(--ease);
        z-index: 0;
      }
      .btn-outline:hover span.fill {
        transform: translateY(0);
      }
      .btn-outline span.txt {
        position: relative;
        z-index: 1;
        transition: color 0.45s var(--ease);
      }
      .btn-outline:hover span.txt {
        color: var(--white);
      }

      .hero-visual {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .hero-shape {
        position: absolute;
        width: 120%;
        height: 120%;
        background: var(--black);
        clip-path: polygon(58% 0%, 100% 0%, 42% 100%, 0% 100%);
        opacity: 0.06;
        right: -10%;
      }
      .hero-logo-wrap {
        position: relative;
        width: 100%;
        max-width: 520px;
      }
      .hero-logo-wrap img {
        width: 100%;
        filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.15));
      }
      .hero-flightline {
        position: absolute;
        inset: 0;
        pointer-events: none;
      }

      .hero-scrollcue {
        position: absolute;
        bottom: 36px;
        left: 48px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--gray-mid);
      }
      @media (max-width: 900px) {
        .hero-scrollcue {
          left: 24px;
          bottom: 22px;
        }
      }
      .hero-scrollcue .bar {
        width: 1px;
        height: 34px;
        background: var(--gray-line);
        position: relative;
        overflow: hidden;
      }
      .hero-scrollcue .bar i {
        position: absolute;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--black);
        animation: scrollcue 1.8s infinite var(--ease);
      }
      @keyframes scrollcue {
        to {
          top: 100%;
        }
      }

      /* ---------- signature flight thread ---------- */
      .flight-thread {
        position: fixed;
        top: 0;
        right: 26px;
        width: 2px;
        height: 100vh;
        z-index: 150;
        pointer-events: none;
        display: none;
      }
      @media (min-width: 1180px) {
        .flight-thread {
          display: block;
        }
      }
      .flight-thread svg {
        position: absolute;
        top: 0;
        left: -1px;
        height: 100%;
        width: 4px;
        overflow: visible;
      }

      /* ---------- section basics ---------- */
      section {
        position: relative;
      }
      .eyebrow {
        font-family: var(--mono);
        font-size: 12px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--gray-mid);
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 26px;
      }
      .eyebrow span {
        display: inline-block;
        width: 26px;
        height: 1px;
        background: var(--gray-mid);
      }

      /* ---------- brand statement ---------- */
      .statement {
        padding: 200px 0;
        background: var(--off-white);
      }
      @media (max-width: 900px) {
        .statement {
          padding: 120px 0;
        }
      }
      .statement .wrap {
        max-width: 1180px;
      }
      .statement h2 {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: clamp(34px, 5.6vw, 74px);
        line-height: 1.05;
        letter-spacing: -0.01em;
      }
      .statement h2 .word {
        display: inline-block;
        opacity: 0.12;
        transition: opacity 0.05s linear;
      }
      .statement p {
        margin-top: 44px;
        max-width: 480px;
        font-size: 17px;
        line-height: 1.7;
        color: #4a4a46;
        margin-left: 2px;
      }

      /* ---------- services ---------- */
      .services {
        padding: 120px 0 60px;
        background: var(--white);
        border-top: 1px solid var(--gray-line);
        border-bottom: 1px solid var(--gray-line);
      }
      .services-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 30px;
        flex-wrap: wrap;
        gap: 20px;
      }
      .services-head h2 {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: clamp(36px, 5vw, 64px);
        line-height: 1;
      }
      .service-row {
        border-top: 1px solid var(--gray-line);
        padding: 34px 0;
        display: grid;
        grid-template-columns: 60px 1fr 200px 40px;
        align-items: center;
        gap: 24px;
        position: relative;
        overflow: hidden;
        transition: padding 0.4s var(--ease);
      }
      .service-row:last-child {
        border-bottom: 1px solid var(--gray-line);
      }
      .service-num {
        font-family: var(--mono);
        font-size: 14px;
        color: var(--gray-mid);
        transition:
          color 0.4s var(--ease),
          transform 0.4s var(--ease);
      }
      .service-title {
        font-family: var(--display);
        font-size: clamp(22px, 3.4vw, 42px);
        text-transform: uppercase;
        letter-spacing: -0.01em;
        transition: transform 0.45s var(--ease);
      }
      .service-desc {
        font-family: var(--body);
        font-size: 13.5px;
        color: var(--gray-mid);
        max-width: 220px;
        line-height: 1.5;
        opacity: 0;
        transform: translateY(6px);
        transition:
          opacity 0.4s var(--ease),
          transform 0.4s var(--ease);
        justify-self: end;
        text-align: right;
      }
      @media (max-width: 900px) {
        .service-row {
          grid-template-columns: 36px 1fr 30px;
          padding: 22px 0;
        }
        .service-desc {
          display: none;
        }
      }
      .service-arrow {
        width: 26px;
        height: 26px;
        position: relative;
        transform: rotate(-40deg);
        transition: transform 0.4s var(--ease);
      }
      .service-arrow svg {
        width: 100%;
        height: 100%;
      }
      .service-row .bg-fill {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 0%;
        background: var(--black);
        z-index: 0;
        transition: height 0.45s var(--ease);
      }
      .service-row:hover {
        padding-left: 14px;
        padding-right: 14px;
      }
      .service-row:hover .bg-fill {
        height: 100%;
      }
      .service-row:hover .service-num {
        color: var(--white);
      }
      .service-row:hover .service-title {
        color: var(--white);
        transform: translateX(10px);
      }
      .service-row:hover .service-desc {
        color: rgba(255, 255, 255, 0.6);
        opacity: 1;
        transform: translateY(0);
      }
      .service-row:hover .service-arrow {
        transform: rotate(0deg);
      }
      .service-row:hover .service-arrow svg path,
      .service-row:hover .service-arrow svg line {
        stroke: var(--white);
      }
      .service-row > * {
        position: relative;
        z-index: 1;
      }

      /* ---------- flight interactive section ---------- */
      .flight-section {
        background: var(--black);
        color: var(--white);
        padding: 180px 0 220px;
        position: relative;
        overflow: hidden;
      }
      @media (max-width: 900px) {
        .flight-section {
          padding: 120px 0 140px;
        }
      }
      .flight-section .wrap {
        position: relative;
        z-index: 2;
      }
      .flight-section h2 {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: clamp(38px, 7vw, 104px);
        line-height: 0.98;
      }
      .flight-section p {
        margin-top: 36px;
        max-width: 460px;
        font-size: 17px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.62);
      }
      .flight-cta {
        margin-top: 54px;
        font-family: var(--mono);
        font-size: 13px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        padding-bottom: 8px;
      }
      .flight-cta svg {
        width: 16px;
        transition: transform 0.3s var(--ease);
      }
      .flight-cta:hover svg {
        transform: translateX(6px);
      }
      .flight-bird {
        position: absolute;
        right: 8%;
        top: 12%;
        width: min(38vw, 460px);
        opacity: 0.9;
      }
      .flight-bird img {
        width: 100%;
        filter: invert(1) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
      }
      .flight-lines {
        position: absolute;
        inset: 0;
        opacity: 0.35;
      }

      /* ---------- selected work ---------- */
      .work {
        padding: 180px 0;
        background: var(--off-white);
      }
      @media (max-width: 900px) {
        .work {
          padding: 110px 0;
        }
      }
      .work-head {
        margin-bottom: 70px;
      }
      .work-head h2 {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: clamp(38px, 6vw, 84px);
        line-height: 1;
      }
      .work-item {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 50px;
        align-items: center;
        padding: 70px 0;
        border-top: 1px solid var(--gray-line);
      }
      .work-item:last-child {
        border-bottom: 1px solid var(--gray-line);
      }
      .work-item:nth-child(even) {
        grid-template-columns: 1.1fr 0.9fr;
      }
      .work-item:nth-child(even) .work-img {
        order: 2;
      }
      .work-item:nth-child(even) .work-copy {
        order: 1;
      }
      @media (max-width: 900px) {
        .work-item,
        .work-item:nth-child(even) {
          grid-template-columns: 1fr;
          gap: 24px;
          padding: 44px 0;
        }
        .work-item:nth-child(even) .work-img {
          order: 1;
        }
        .work-item:nth-child(even) .work-copy {
          order: 2;
        }
      }
      .work-img {
        position: relative;
        overflow: hidden;
        aspect-ratio: 4/3;
        background: #111;
      }
      .work-img .ph {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #2a2a28, #0a0a0a);
      }
      .work-img .ph img {
        width: 34%;
        opacity: 0.5;
        filter: invert(1);
        transition: transform 0.6s var(--ease);
      }
      .work-item:hover .work-img .ph img {
        transform: scale(1.08) translateY(-6px);
      }
      .work-tag {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gray-mid);
      }
      .work-num {
        font-family: var(--mono);
        font-size: 13px;
        color: var(--gray-mid);
        margin-bottom: 16px;
        display: block;
      }
      .work-copy h3 {
        font-family: var(--display);
        font-size: clamp(24px, 3vw, 40px);
        text-transform: uppercase;
        margin-top: 10px;
        line-height: 1.05;
      }
      .work-view {
        margin-top: 24px;
        font-family: var(--mono);
        font-size: 12px;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .work-view svg {
        width: 14px;
        transition: transform 0.3s var(--ease);
      }
      .work-item:hover .work-view svg,
      .work-view:hover svg {
        transform: translateX(5px);
      }

      /* ---------- clients ---------- */
      .clients {
        padding: 140px 0;
        background: var(--off-white);
        border-top: 1px solid var(--gray-line);
        border-bottom: 1px solid var(--gray-line);
      }
      @media (max-width: 900px) {
        .clients {
          padding: 90px 0;
        }
      }
      .clients-head {
        margin-bottom: 70px;
      }
      .clients-head h2 {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: clamp(36px, 5.4vw, 68px);
      }
      .clients-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
      }
      @media (max-width: 800px) {
        .clients-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      .client-item {
        border-top: 1px solid var(--gray-line);
        border-left: 1px solid var(--gray-line);
        aspect-ratio: 16/10;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 36px;
      }
      .client-item:nth-child(4n) {
        border-right: 1px solid var(--gray-line);
      }
      .clients-grid .client-item:nth-last-child(-n + 4) {
        border-bottom: 1px solid var(--gray-line);
      }
      @media (max-width: 800px) {
        .client-item:nth-child(4n) {
          border-right: 0;
        }
        .client-item:nth-child(2n) {
          border-right: 1px solid var(--gray-line);
        }
        .clients-grid .client-item:nth-last-child(-n + 4) {
          border-bottom: 0;
        }
        .clients-grid .client-item:nth-last-child(-n + 2) {
          border-bottom: 1px solid var(--gray-line);
        }
      }
      .client-logo {
        max-width: 100%;
        max-height: 64px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: grayscale(1) contrast(0.9);
        opacity: 0.6;
        transition:
          filter 0.45s var(--ease),
          opacity 0.45s var(--ease),
          transform 0.45s var(--ease);
      }
      .client-item:hover .client-logo {
        filter: grayscale(0) contrast(1);
        opacity: 1;
        transform: scale(1.06);
      }
      @media (max-width: 900px) {
        .client-logo {
          opacity: 0.75;
        }
      }

      /* ---------- why us ---------- */
      .why {
        padding: 160px 0;
        background: var(--white);
        border-top: 1px solid var(--gray-line);
      }
      @media (max-width: 900px) {
        .why {
          padding: 100px 0;
        }
      }
      .why-head {
        margin-bottom: 70px;
      }
      .why-head h2 {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: clamp(36px, 5.4vw, 68px);
      }
      .why-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
      }
      @media (max-width: 800px) {
        .why-grid {
          grid-template-columns: 1fr;
        }
      }
      .why-item {
        border-top: 1px solid var(--gray-line);
        border-left: 1px solid var(--gray-line);
        padding: 50px 44px;
        min-height: 280px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }
      .why-item:nth-child(2n) {
        border-right: 1px solid var(--gray-line);
      }
      .why-item:nth-child(-n + 2) {
      }
      .why-grid .why-item:nth-last-child(-n + 2) {
        border-bottom: 1px solid var(--gray-line);
      }
      .why-num {
        font-family: var(--display);
        font-size: 16px;
        color: var(--gray-mid);
      }
      .why-item h3 {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: clamp(26px, 3vw, 40px);
        margin-top: auto;
        padding-top: 30px;
        line-height: 1.05;
      }

      /* ---------- process ---------- */
      .process {
        background: var(--black);
        color: var(--white);
        padding: 0;
        overflow: hidden;
      }
      .process-intro {
        padding: 160px 48px 80px;
        max-width: 1440px;
        margin: 0 auto;
      }
      @media (max-width: 900px) {
        .process-intro {
          padding: 110px 24px 50px;
        }
      }
      .process-intro h2 {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: clamp(36px, 6.4vw, 90px);
        line-height: 0.98;
      }
      .process-track-outer {
        position: relative;
        height: 70vh;
        min-height: 480px;
      }
      @media (max-width: 900px) {
        .process-track-outer {
          height: auto;
          min-height: 0;
        }
      }
      .process-track {
        display: flex;
        gap: 0;
        height: 100%;
        align-items: center;
        padding: 0 48px;
        will-change: transform;
      }
      @media (max-width: 900px) {
        .process-track {
          flex-direction: column;
          padding: 0 24px 100px;
          gap: 60px;
          transform: none !important;
        }
      }
      .process-stage {
        min-width: min(60vw, 560px);
        padding: 0 70px 0 0;
        flex-shrink: 0;
        position: relative;
      }
      @media (max-width: 900px) {
        .process-stage {
          min-width: 0;
          padding: 0;
        }
      }
      .process-stage .p-num {
        font-family: var(--mono);
        font-size: 14px;
        color: rgba(255, 255, 255, 0.4);
      }
      .process-stage h3 {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: clamp(40px, 6vw, 88px);
        margin-top: 18px;
        line-height: 1;
      }
      .process-stage p {
        margin-top: 22px;
        max-width: 340px;
        color: rgba(255, 255, 255, 0.55);
        font-size: 15px;
        line-height: 1.6;
      }
      .process-line {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.15);
      }

      /* ---------- testimonials ---------- */
      .testi {
        padding: 180px 0;
        background: var(--off-white);
        position: relative;
      }
      @media (max-width: 900px) {
        .testi {
          padding: 110px 0;
        }
      }
      .testi-head {
        margin-bottom: 70px;
        max-width: 640px;
      }
      .testi-head h2 {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: clamp(32px, 4.6vw, 58px);
        line-height: 1.05;
      }
      .testi-mark {
        font-family: var(--display);
        font-size: 120px;
        line-height: 0.4;
        color: var(--gray-line);
        margin-bottom: 10px;
      }
      .testi-slider {
        position: relative;
        min-height: 220px;
      }
      .testi-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transform: translateY(14px);
        transition:
          opacity 0.6s var(--ease),
          transform 0.6s var(--ease);
        pointer-events: none;
      }
      .testi-slide.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        position: relative;
      }
      .testi-slide p {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: clamp(24px, 3.4vw, 42px);
        line-height: 1.15;
        max-width: 820px;
      }
      .testi-meta {
        margin-top: 34px;
        font-family: var(--mono);
        font-size: 13px;
        letter-spacing: 0.05em;
        color: var(--gray-mid);
      }
      .testi-dots {
        display: flex;
        gap: 10px;
        margin-top: 60px;
      }
      .testi-dots button {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--gray-line);
        border: none;
        padding: 0;
        transition:
          background 0.3s var(--ease),
          transform 0.3s var(--ease);
      }
      .testi-dots button.active {
        background: var(--black);
        transform: scale(1.3);
      }

      /* ---------- stats ---------- */
      .stats {
        padding: 140px 0;
        background: var(--white);
        border-top: 1px solid var(--gray-line);
        border-bottom: 1px solid var(--gray-line);
      }
      @media (max-width: 900px) {
        .stats {
          padding: 90px 0;
        }
      }
      .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
      }
      @media (max-width: 800px) {
        .stats-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 50px 20px;
        }
      }
      .stat h3 {
        font-family: var(--display);
        font-size: clamp(44px, 6vw, 84px);
        line-height: 1;
      }
      .stat p {
        font-family: var(--mono);
        font-size: 12px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gray-mid);
        margin-top: 14px;
      }

      /* ---------- final cta ---------- */
      .final {
        background: var(--black);
        color: var(--white);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        overflow: hidden;
        padding: 120px 24px;
      }
      .final-logo {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 120vh;
        max-width: 1400px;
        transform: translate(-50%, -50%);
        opacity: 0.05;
        pointer-events: none;
      }
      .final-logo img {
        width: 100%;
        filter: invert(1);
      }
      .final h2 {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: clamp(64px, 13vw, 190px);
        line-height: 0.9;
        position: relative;
        z-index: 2;
      }
      .final p {
        margin-top: 34px;
        font-size: 18px;
        color: rgba(255, 255, 255, 0.6);
        position: relative;
        z-index: 2;
      }
      .final .btn-solid {
        margin-top: 54px;
        position: relative;
        z-index: 2;
        background: var(--white);
        color: var(--black);
        border-color: var(--white);
      }
      .final .btn-solid span.fill {
        background: transparent;
      }
      .final .btn-solid span.txt {
        color: var(--black);
      }
      .final .btn-solid:hover {
        background: transparent;
      }

      /* ---------- footer ---------- */
      footer {
        background: var(--black);
        color: var(--white);
        padding: 90px 0 34px;
        position: relative;
        overflow: hidden;
      }
      .footer-logo {
        position: absolute;
        top: 50%;
        right: 6%;
        width: min(30vw, 380px);
        transform: translateY(-50%);
        opacity: 0.06;
        pointer-events: none;
      }
      .footer-logo img {
        width: 100%;
        filter: invert(1);
      }
      .footer-top {
        display: flex;
        justify-content: space-between;
        gap: 40px;
        flex-wrap: wrap;
        padding-bottom: 70px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        position: relative;
        z-index: 1;
      }
      .footer-brand {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: clamp(30px, 4vw, 50px);
        max-width: 680px;
        line-height: 1.05;
      }
      .footer-cols {
        display: flex;
        gap: 80px;
        flex-wrap: wrap;
      }
      .footer-col h4 {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.4);
        margin-bottom: 16px;
      }
      .footer-col a,
      .footer-col p {
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 10px;
      }
      .footer-col a:hover {
        color: var(--white);
      }
      .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 30px;
        flex-wrap: wrap;
        gap: 14px;
      }
      .footer-bottom p {
        font-family: var(--mono);
        font-size: 11.5px;
        letter-spacing: 0.05em;
        color: rgba(255, 255, 255, 0.4);
      }

      .reveal {
        opacity: 0;
        transform: translateY(40px);
      }

      /* ---------- nav current-page indicator ---------- */
      .nav-links a.current::after,
      .mobile-menu a.current {
        width: 100%;
      }
      .mobile-menu a.current {
        color: var(--gray-mid);
      }

      /* ---------- inner-page hero ---------- */
      .page-hero {
        padding: 190px 0 100px;
        background: var(--off-white);
      }
      @media (max-width: 900px) {
        .page-hero {
          padding: 150px 0 70px;
        }
      }
      .page-hero h1 {
        font-family: var(--display);
        text-transform: uppercase;
        line-height: 0.98;
        letter-spacing: -0.01em;
        font-size: clamp(40px, 6.4vw, 92px);
        max-width: 900px;
      }
      .page-hero p {
        margin-top: 26px;
        font-size: 17px;
        line-height: 1.7;
        color: #3c3c39;
        max-width: 560px;
      }
      .page-hero .hero-ctas {
        margin-top: 40px;
      }

      /* ---------- about: story ---------- */
      .story {
        padding: 160px 0;
        background: var(--white);
        border-top: 1px solid var(--gray-line);
        border-bottom: 1px solid var(--gray-line);
      }
      @media (max-width: 900px) {
        .story {
          padding: 100px 0;
        }
      }
      .story-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 80px;
      }
      @media (max-width: 900px) {
        .story-grid {
          grid-template-columns: 1fr;
          gap: 50px;
        }
      }
      .story-copy p {
        font-size: 17px;
        line-height: 1.75;
        color: #3c3c39;
        margin-bottom: 24px;
        max-width: 560px;
      }
      .story-copy p:last-child {
        margin-bottom: 0;
      }
      .story-quote {
        border-left: 1px solid var(--gray-line);
        padding-left: 34px;
        align-self: start;
      }
      .story-quote .mark {
        font-family: var(--display);
        font-size: 64px;
        line-height: 1;
        color: var(--gray-line);
      }
      .story-quote p {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: clamp(22px, 2.4vw, 30px);
        line-height: 1.25;
        margin-top: 10px;
      }

      /* ---------- about: values ---------- */
      .values {
        padding: 160px 0;
        background: var(--off-white);
      }
      @media (max-width: 900px) {
        .values {
          padding: 100px 0;
        }
      }
      .values-head {
        margin-bottom: 70px;
      }
      .values-head h2 {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: clamp(36px, 5.4vw, 68px);
      }
      .values-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
      }
      @media (max-width: 800px) {
        .values-grid {
          grid-template-columns: 1fr;
        }
      }
      .value-item {
        border-top: 1px solid var(--gray-line);
        border-left: 1px solid var(--gray-line);
        padding: 44px;
        min-height: 220px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }
      .value-item:nth-child(2n) {
        border-right: 1px solid var(--gray-line);
      }
      .values-grid .value-item:nth-last-child(-n + 2) {
        border-bottom: 1px solid var(--gray-line);
      }
      .value-num {
        font-family: var(--display);
        font-size: 16px;
        color: var(--gray-mid);
      }
      .value-item h3 {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: clamp(24px, 2.6vw, 32px);
        margin-top: 40px;
      }
      .value-item p {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.6;
        color: var(--gray-mid);
        max-width: 380px;
      }

      /* ---------- about: process teaser ---------- */
      .process-teaser {
        padding: 140px 0;
        background: var(--white);
        border-top: 1px solid var(--gray-line);
        border-bottom: 1px solid var(--gray-line);
        text-align: center;
      }
      @media (max-width: 900px) {
        .process-teaser {
          padding: 100px 0;
        }
      }
      .process-teaser .eyebrow {
        justify-content: center;
      }
      .process-teaser h2 {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: clamp(32px, 4.8vw, 58px);
        max-width: 900px;
        margin: 0 auto;
        line-height: 1.1;
      }
      .process-teaser p {
        max-width: 480px;
        margin: 24px auto 0;
        color: var(--gray-mid);
        font-size: 16px;
        line-height: 1.6;
      }
      .process-teaser .work-view {
        margin: 30px auto 0;
        justify-content: center;
      }

      /* ---------- compact cta band ---------- */
      .cta-band {
        padding: 160px 0;
        background: var(--black);
        color: var(--white);
        text-align: center;
      }
      @media (max-width: 900px) {
        .cta-band {
          padding: 110px 0;
        }
      }
      .cta-band h2 {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: clamp(38px, 6vw, 76px);
        line-height: 1.05;
      }
      .cta-band p {
        margin-top: 20px;
        color: rgba(255, 255, 255, 0.6);
        font-size: 17px;
      }
      .cta-band .btn-solid {
        margin-top: 40px;
        background: var(--white);
        color: var(--black);
        border-color: var(--white);
      }
      .cta-band .btn-solid span.fill {
        background: transparent;
      }
      .cta-band .btn-solid span.txt {
        color: var(--black);
      }
      .cta-band .btn-solid:hover {
        background: transparent;
      }

      /* ---------- contact page ---------- */
      .contact-section {
        padding: 0 0 160px;
        background: var(--off-white);
      }
      @media (max-width: 900px) {
        .contact-section {
          padding: 0 0 100px;
        }
      }
      .contact-grid {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 90px;
      }
      @media (max-width: 900px) {
        .contact-grid {
          grid-template-columns: 1fr;
          gap: 60px;
        }
      }
      .contact-info h3 {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: 22px;
        margin-bottom: 28px;
      }
      .contact-method {
        display: block;
        padding: 20px 0;
        border-top: 1px solid var(--gray-line);
      }
      .contact-info-list .contact-method:last-of-type {
        border-bottom: 1px solid var(--gray-line);
      }
      .contact-method .label {
        display: block;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--gray-mid);
        margin-bottom: 8px;
      }
      .contact-method .value {
        font-family: var(--display);
        font-size: clamp(18px, 2vw, 24px);
        text-transform: uppercase;
        display: inline-block;
        position: relative;
      }
      a.contact-method .value::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0%;
        height: 1px;
        background: var(--black);
        transition: width 0.35s var(--ease);
      }
      a.contact-method:hover .value::after {
        width: 100%;
      }
      .contact-note {
        margin-top: 34px;
        font-size: 14px;
        line-height: 1.6;
        color: var(--gray-mid);
        max-width: 340px;
      }
      .contact-form {
        background: var(--white);
        border: 1px solid var(--gray-line);
        padding: 56px;
      }
      @media (max-width: 900px) {
        .contact-form {
          padding: 32px;
        }
      }
      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
      @media (max-width: 620px) {
        .form-row {
          grid-template-columns: 1fr;
          gap: 0;
        }
      }
      .form-field {
        margin-bottom: 32px;
      }
      .form-field label {
        display: block;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--gray-mid);
        margin-bottom: 10px;
      }
      .form-field input,
      .form-field select,
      .form-field textarea {
        width: 100%;
        border: none;
        border-bottom: 1px solid var(--gray-line);
        background: transparent;
        font-family: var(--body);
        font-size: 16px;
        color: var(--black);
        padding: 10px 2px;
        transition: border-color 0.35s var(--ease);
        cursor: auto;
      }
      .form-field select {
        cursor: pointer;
        appearance: auto;
      }
      .form-field input:focus,
      .form-field select:focus,
      .form-field textarea:focus {
        outline: none;
        border-color: var(--black);
      }
      .form-field textarea {
        resize: vertical;
        min-height: 130px;
      }
      .form-submit {
        margin-top: 8px;
        width: 100%;
        justify-content: center;
      }
      .form-status {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.6;
        color: var(--gray-mid);
      }
      .form-status.is-error {
        color: #b8483c;
      }
      .hp-field {
        position: absolute;
        left: -9999px;
        width: 1px;
        height: 1px;
        opacity: 0;
        pointer-events: none;
      }

      /* ---------- services page ---------- */
      .services-detail {
        padding: 0 0 160px;
        background: var(--white);
      }
      @media (max-width: 900px) {
        .services-detail {
          padding: 0 0 100px;
        }
      }
      .service-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
      }
      @media (max-width: 800px) {
        .service-cards {
          grid-template-columns: 1fr;
        }
      }
      .service-card {
        border-top: 1px solid var(--gray-line);
        border-left: 1px solid var(--gray-line);
        padding: 54px 48px;
        min-height: 260px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: background 0.4s var(--ease);
      }
      .service-card:hover {
        background: var(--off-white);
      }
      .service-card:nth-child(2n) {
        border-right: 1px solid var(--gray-line);
      }
      .service-cards .service-card:nth-last-child(-n + 2) {
        border-bottom: 1px solid var(--gray-line);
      }
      .service-card .card-num {
        font-family: var(--mono);
        font-size: 13px;
        letter-spacing: 0.08em;
        color: var(--gray-mid);
        transition: color 0.4s var(--ease);
      }
      .service-card:hover .card-num {
        color: var(--black);
      }
      .service-card h3 {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: clamp(24px, 2.8vw, 34px);
        line-height: 1.1;
        margin-top: 44px;
      }
      .service-card p {
        margin-top: 16px;
        font-size: 15.5px;
        line-height: 1.6;
        color: var(--gray-mid);
        max-width: 380px;
      }

      /* ---------- work page ---------- */
      .work-showcase {
        background: var(--white);
      }
      .work-panel {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 60vh;
        border-top: 1px solid var(--gray-line);
        align-items: stretch;
      }
      .work-showcase .work-panel:last-child {
        border-bottom: 1px solid var(--gray-line);
      }
      .work-panel:nth-child(even) .work-panel-visual {
        order: 2;
      }
      .work-panel:nth-child(even) .work-panel-copy {
        order: 1;
      }
      @media (max-width: 900px) {
        .work-panel {
          grid-template-columns: 1fr;
          min-height: auto;
        }
        .work-panel:nth-child(even) .work-panel-visual,
        .work-panel:nth-child(even) .work-panel-copy {
          order: 0;
        }
      }
      .work-panel-visual {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #2a2a28, #0a0a0a);
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 320px;
      }
      .work-panel-visual img {
        width: 26%;
        opacity: 0.5;
        filter: invert(1);
        transition: transform 0.6s var(--ease);
      }
      .work-panel:hover .work-panel-visual img {
        transform: scale(1.08) translateY(-6px);
      }
      .work-panel-copy {
        padding: 70px 64px;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      @media (max-width: 900px) {
        .work-panel-copy {
          padding: 50px 24px;
        }
      }
      .work-panel-num {
        font-family: var(--display);
        font-size: 16px;
        color: var(--gray-mid);
      }
      .work-panel-tag {
        font-family: var(--mono);
        font-size: 12px;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        color: var(--gray-mid);
        margin-top: 18px;
      }
      .work-panel-copy h3 {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: clamp(30px, 4.4vw, 56px);
        line-height: 1.05;
        margin-top: 14px;
      }
      .work-panel-copy .work-view {
        margin-top: 30px;
      }

      /* ---------- process page: vertical timeline ---------- */
      .process-detail {
        padding: 40px 0 160px;
        background: var(--white);
      }
      @media (max-width: 900px) {
        .process-detail {
          padding: 20px 0 100px;
        }
      }
      .process-steps {
        position: relative;
        max-width: 920px;
      }
      .step-line {
        position: absolute;
        left: 39px;
        top: 40px;
        bottom: 40px;
        width: 1px;
        background: var(--gray-line);
      }
      @media (max-width: 640px) {
        .step-line {
          left: 27px;
        }
      }
      .step-line-fill {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 0%;
        background: var(--black);
      }
      .process-step {
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 40px;
        padding: 56px 0;
        position: relative;
      }
      @media (max-width: 640px) {
        .process-step {
          grid-template-columns: 56px 1fr;
          gap: 24px;
          padding: 40px 0;
        }
      }
      .process-step:first-child {
        padding-top: 0;
      }
      .process-step:last-child {
        padding-bottom: 0;
      }
      .step-marker {
        display: flex;
        align-items: flex-start;
        justify-content: center;
      }
      .step-num {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 1px solid var(--gray-line);
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--display);
        font-size: 20px;
        position: relative;
        z-index: 1;
        transition:
          background 0.4s var(--ease),
          color 0.4s var(--ease),
          border-color 0.4s var(--ease);
      }
      @media (max-width: 640px) {
        .step-num {
          width: 56px;
          height: 56px;
          font-size: 15px;
        }
      }
      .process-step:hover .step-num {
        background: var(--black);
        color: var(--white);
        border-color: var(--black);
      }
      .step-body h3 {
        font-family: var(--display);
        text-transform: uppercase;
        font-size: clamp(28px, 3.6vw, 46px);
        line-height: 1.1;
        padding-top: 18px;
      }
      .step-body p {
        margin-top: 18px;
        font-size: 16.5px;
        line-height: 1.75;
        color: var(--gray-mid);
        max-width: 520px;
      }

      @media (prefers-reduced-motion: reduce) {
        * {
          animation-duration: 0.001ms !important;
          transition-duration: 0.001ms !important;
        }
      }
