
      /* ── RESET ──────────────────────────────────── */
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      :root {
        --ink: #080808;
        --deep: #0f0f0f;
        --panel: #161616;
        --border: #252525;
        --mid: #444;
        --muted: #777;
        --silver: #aaa;
        --cream: #f0ede8;
        --white: #fafaf8;
        --gold: #d4a843;
        --gold-dim: #a07820;
        --red: #c93535;
        --font-disp: "Bebas Neue", Impact, sans-serif;
        --font-body: "Outfit", sans-serif;
        --font-mono: "DM Mono", monospace;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        background: var(--ink);
        color: var(--cream);
        font-family: var(--font-body);
        font-weight: 300;
        font-size: 15px;
        line-height: 1.7;
        overflow-x: hidden;
        cursor: none;
      }
      a {
        color: inherit;
        text-decoration: none;
      }
      img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      /* ── CUSTOM CURSOR ───────────────────────── */
      #cur {
        width: 10px;
        height: 10px;
        background: var(--gold);
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9999;
        transition:
          width 0.2s,
          height 0.2s,
          background 0.2s;
        mix-blend-mode: difference;
      }
      #cur.expand {
        width: 42px;
        height: 42px;
        background: var(--cream);
      }
      #cur-ring {
        width: 38px;
        height: 38px;
        border: 1px solid rgba(212, 168, 67, 0.4);
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9998;
        transition:
          left 0.08s ease,
          top 0.08s ease;
      }

      /* ── NAV ─────────────────────────────────── */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 200;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 24px 56px;
        transition:
          background 0.4s,
          padding 0.4s;
      }
      nav.scrolled {
        background: rgba(8, 8, 8, 0.94);
        backdrop-filter: blur(12px);
        padding: 16px 56px;
        border-bottom: 1px solid var(--border);
      }
      .nav-logo {
        font-family: var(--font-disp);
        font-size: 1.3rem;
        letter-spacing: 0.12em;
        color: var(--cream);
      }
      .nav-logo span {
        color: var(--gold);
      }
      .nav-links {
        display: flex;
        gap: 40px;
        list-style: none;
      }
      .nav-links a {
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--silver);
        transition: color 0.2s;
        font-weight: 400;
      }
      .nav-links a:hover {
        color: var(--gold);
      }
      .nav-cta {
        font-size: 10px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        font-weight: 500;
        background: var(--gold);
        color: var(--ink);
        padding: 10px 22px;
        transition: opacity 0.2s;
      }
      .nav-cta:hover {
        opacity: 0.85;
      }
      .nav-burger {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
      }
      .nav-burger span {
        display: block;
        width: 26px;
        height: 1px;
        background: var(--cream);
        transition: all 0.3s;
      }

      /* ── HERO ────────────────────────────────── */
      #hero {
        position: relative;
        height: 100svh;
        min-height: 640px;
        display: flex;
        align-items: flex-end;
        overflow: hidden;
      }
      .hero-reel {
        position: absolute;
        inset: 0;
      }
      .hero-reel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.35);
      }
      .hero-noise {
        position: absolute;
        inset: 0;
        z-index: 1;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
        pointer-events: none;
        opacity: 0.5;
      }
      .hero-grad {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(to top, var(--ink) 0%, transparent 50%);
      }
      .hero-body {
        position: relative;
        z-index: 2;
        padding: 0 56px 80px;
        width: 100%;
        display: flex;
        flex-direction: column;
      }
      .hero-eyebrow {
        font-family: var(--font-mono);
        font-size: 11px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 16px;
      }
      .hero-eyebrow::before {
        content: "";
        display: inline-block;
        width: 40px;
        height: 1px;
        background: var(--gold);
      }
      .hero-title {
        font-family: var(--font-disp);
        font-size: clamp(5rem, 14vw, 14rem);
        line-height: 0.92;
        color: var(--cream);
        margin-bottom: 40px;
        letter-spacing: 0.01em;
      }
      .hero-title .outline {
        -webkit-text-stroke: 1px var(--gold);
        color: transparent;
      }
      .hero-bottom {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 40px;
      }
      .hero-desc {
        max-width: 360px;
        font-size: 14px;
        color: var(--silver);
        line-height: 1.85;
        font-weight: 300;
      }
      .hero-actions {
        display: flex;
        gap: 16px;
        align-items: center;
        flex-shrink: 0;
      }
      .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: var(--gold);
        color: var(--ink);
        padding: 16px 34px;
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        font-weight: 500;
        transition: gap 0.3s;
      }
      .btn-primary:hover {
        gap: 20px;
      }
      .btn-ghost {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        border: 1px solid var(--border);
        color: var(--cream);
        padding: 16px 34px;
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        font-weight: 400;
        transition:
          border-color 0.2s,
          gap 0.3s;
      }
      .btn-ghost:hover {
        border-color: var(--gold);
        gap: 20px;
      }
      .hero-scroll-ind {
        position: absolute;
        right: 56px;
        bottom: 40px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        font-family: var(--font-mono);
        font-size: 9px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--muted);
        writing-mode: vertical-rl;
      }
      .hero-scroll-ind::after {
        content: "";
        width: 1px;
        height: 60px;
        background: var(--gold);
        animation: scrollPulse 2.2s ease-in-out infinite;
      }
      @keyframes scrollPulse {
        0%,
        100% {
          opacity: 1;
          transform: scaleY(1);
        }
        50% {
          opacity: 0.2;
          transform: scaleY(0.3);
        }
      }

      /* ── TICKER ──────────────────────────────── */
      .ticker {
        background: var(--gold);
        overflow: hidden;
        white-space: nowrap;
        padding: 14px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }
      .ticker-inner {
        display: inline-flex;
        animation: tickerScroll 32s linear infinite;
      }
      .ticker-inner:hover {
        animation-play-state: paused;
      }
      .ticker-item {
        font-family: var(--font-disp);
        font-size: 1.1rem;
        letter-spacing: 0.1em;
        color: var(--ink);
        padding: 0 40px;
        display: inline-flex;
        align-items: center;
        gap: 40px;
      }
      .ticker-item::after {
        content: "✦";
        font-size: 0.65rem;
      }
      @keyframes tickerScroll {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }

      /* ── SECTION BASE ────────────────────────── */
      .sec {
        padding: 120px 56px;
      }
      .sec-label {
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 14px;
      }
      .sec-label::before {
        content: "";
        display: inline-block;
        width: 28px;
        height: 1px;
        background: var(--gold);
      }
      .sec-title {
        font-family: var(--font-disp);
        font-size: clamp(3rem, 6vw, 6rem);
        line-height: 0.95;
        color: var(--cream);
        letter-spacing: 0.02em;
      }
      .sec-title .outline {
        -webkit-text-stroke: 1px var(--cream);
        color: transparent;
      }
      .sec-title .gold {
        color: var(--gold);
      }
      .divider {
        width: 48px;
        height: 2px;
        background: var(--gold);
        margin: 28px 0;
      }
      .sec-sub {
        font-size: 14px;
        color: var(--silver);
        line-height: 1.9;
        max-width: 520px;
      }

      /* ── INTRO / VISION ──────────────────────── */
      #vision {
        background: var(--deep);
      }
      .vision-wrap {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 100px;
        align-items: center;
      }
      .vision-text .sec-sub {
        margin-top: 0;
      }
      .vision-text p {
        color: var(--silver);
        line-height: 1.9;
        margin-bottom: 20px;
        max-width: 420px;
      }
      .vision-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        border: 1px solid var(--border);
        margin-top: 56px;
        background: var(--border);
      }
      .vstat {
        background: var(--deep);
        padding: 32px 28px;
      }
      .vstat-num {
        font-family: var(--font-disp);
        font-size: 3.4rem;
        color: var(--gold);
        line-height: 1;
        margin-bottom: 6px;
      }
      .vstat-label {
        font-size: 10px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--muted);
      }
      .vision-reel {
        position: relative;
        height: 620px;
      }
      .vision-reel img {
        height: 100%;
        object-fit: cover;
        filter: brightness(0.85);
      }
      .vision-badge {
        position: absolute;
        bottom: -20px;
        right: -20px;
        background: var(--gold);
        color: var(--ink);
        padding: 18px 26px;
        font-family: var(--font-mono);
        font-size: 9px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        font-weight: 400;
      }
      .vision-badge strong {
        display: block;
        font-family: var(--font-disp);
        font-size: 2rem;
        line-height: 1;
        letter-spacing: 0.05em;
      }

      /* ── STATEMENT BREAK ─────────────────────── */
      .statement {
        background: var(--panel);
        padding: 100px 56px;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        overflow: hidden;
        position: relative;
      }
      .statement-text {
        font-family: var(--font-disp);
        font-size: clamp(3.5rem, 8vw, 9rem);
        line-height: 0.92;
        letter-spacing: 0.01em;
        color: var(--cream);
        max-width: 1200px;
      }
      .statement-text .outline {
        -webkit-text-stroke: 1.5px var(--gold);
        color: transparent;
      }
      .statement-accent {
        position: absolute;
        right: 56px;
        bottom: 60px;
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--muted);
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .statement-accent::before {
        content: "";
        display: inline-block;
        width: 24px;
        height: 1px;
        background: var(--gold);
      }

      /* ── SERVICES ────────────────────────────── */
      #services {
        background: var(--ink);
      }
      .services-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 80px;
      }
      .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--border);
        border: 1px solid var(--border);
      }
      .service-card {
        background: var(--ink);
        padding: 52px 44px;
        position: relative;
        overflow: hidden;
        transition: background 0.35s;
        cursor: none;
      }
      .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      }
      .service-card:hover {
        background: var(--panel);
      }
      .service-card:hover::before {
        transform: scaleX(1);
      }
      .service-num {
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: 0.18em;
        color: var(--border);
        margin-bottom: 28px;
      }
      .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 24px;
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: var(--gold);
        transition: border-color 0.3s;
      }
      .service-card:hover .service-icon {
        border-color: var(--gold);
      }
      .service-title {
        font-family: var(--font-disp);
        font-size: 2rem;
        letter-spacing: 0.04em;
        color: var(--cream);
        margin-bottom: 16px;
        line-height: 1;
      }
      .service-desc {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.85;
      }
      .service-tags {
        margin-top: 28px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }
      .tag {
        font-size: 9px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        border: 1px solid var(--border);
        color: var(--silver);
        padding: 5px 10px;
        font-weight: 400;
      }

      /* ── FULL BLEED ──────────────────────────── */
      .full-bleed {
        width: 100%;
        height: 70vh;
        min-height: 420px;
        position: relative;
        overflow: hidden;
      }
      .full-bleed img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.45);
        transform: scale(1.04);
        transition: transform 12s ease;
      }
      .full-bleed:hover img {
        transform: scale(1);
      }
      .full-bleed-inner {
        position: absolute;
        inset: 0;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 56px;
      }
      .fb-label {
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 16px;
      }
      .fb-quote {
        font-family: var(--font-disp);
        font-size: clamp(2.5rem, 6vw, 6rem);
        color: var(--cream);
        line-height: 0.95;
        max-width: 700px;
      }

      /* ── PORTFOLIO ───────────────────────────── */
      #work {
        background: var(--deep);
      }
      .work-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 72px;
      }
      .work-head a {
        font-size: 11px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--gold);
        border-bottom: 1px solid var(--gold);
        padding-bottom: 2px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .work-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: auto;
        gap: 12px;
      }
      .work-item {
        position: relative;
        overflow: hidden;
        cursor: none;
      }
      .work-item:nth-child(1) {
        grid-column: 1/8;
        grid-row: 1/3;
        aspect-ratio: unset;
        height: 560px;
      }
      .work-item:nth-child(2) {
        grid-column: 8/13;
        height: 272px;
      }
      .work-item:nth-child(3) {
        grid-column: 8/13;
        height: 272px;
      }
      .work-item:nth-child(4) {
        grid-column: 1/5;
        height: 320px;
      }
      .work-item:nth-child(5) {
        grid-column: 5/9;
        height: 320px;
      }
      .work-item:nth-child(6) {
        grid-column: 9/13;
        height: 320px;
      }
      .work-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.72);
        transition:
          transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
          filter 0.4s;
      }
      .work-item:hover img {
        transform: scale(1.06);
        filter: brightness(0.4);
      }
      .work-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 28px;
        opacity: 0;
        transition: opacity 0.3s;
      }
      .work-item:hover .work-overlay {
        opacity: 1;
      }
      .work-overlay .cat {
        font-family: var(--font-mono);
        font-size: 9px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 8px;
      }
      .work-overlay h4 {
        font-family: var(--font-disp);
        font-size: 1.8rem;
        color: var(--cream);
        line-height: 1;
      }
      .work-overlay .view {
        margin-top: 12px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 10px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--cream);
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding-bottom: 2px;
        width: fit-content;
      }

      /* ── PROCESS ─────────────────────────────── */
      #process {
        background: var(--panel);
      }
      .process-header {
        max-width: 700px;
        margin-bottom: 80px;
      }
      .process-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
      }
      .ps-item {
        padding: 52px 40px 52px 0;
        border-right: 1px solid var(--border);
        position: relative;
      }
      .ps-item:last-child {
        border-right: none;
        padding-right: 0;
      }
      .ps-item:not(:first-child) {
        padding-left: 40px;
      }
      .ps-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 28px;
      }
      .ps-num {
        font-family: var(--font-disp);
        font-size: 5rem;
        line-height: 1;
        color: var(--border);
        letter-spacing: 0.02em;
      }
      .ps-icon {
        width: 38px;
        height: 38px;
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        color: var(--gold);
      }
      .ps-title {
        font-family: var(--font-disp);
        font-size: 1.6rem;
        letter-spacing: 0.04em;
        color: var(--cream);
        margin-bottom: 14px;
      }
      .ps-desc {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.85;
      }
      .ps-bar {
        position: absolute;
        top: 0;
        left: 0;
        width: 36px;
        height: 2px;
        background: var(--gold);
      }
      .ps-item:not(:first-child) .ps-bar {
        left: 40px;
      }

      /* ── ABOUT / TEAM STRIP ──────────────────── */
      #about {
        background: var(--deep);
      }
      .about-wrap {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 120px;
        align-items: center;
      }
      .about-img {
        position: relative;
        height: 660px;
      }
      .about-img img {
        height: 100%;
        object-fit: cover;
        filter: brightness(0.85);
      }
      .about-img-num {
        position: absolute;
        top: -20px;
        left: -20px;
        font-family: var(--font-disp);
        font-size: 8rem;
        line-height: 1;
        color: var(--border);
        pointer-events: none;
      }
      .about-text p {
        color: var(--silver);
        line-height: 1.9;
        margin-bottom: 20px;
      }
      .about-list {
        margin-top: 36px;
        border-top: 1px solid var(--border);
      }
      .about-list-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 0;
        border-bottom: 1px solid var(--border);
        font-size: 13px;
        color: var(--silver);
      }
      .about-list-item span:first-child {
        color: var(--cream);
        font-weight: 400;
      }
      .about-list-item i {
        color: var(--gold);
      }

      /* ── TESTIMONIALS ────────────────────────── */
      #testimonials {
        background: var(--ink);
        padding: 120px 56px;
        overflow: hidden;
      }
      .test-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--border);
        border: 1px solid var(--border);
        margin-top: 64px;
      }
      .test-card {
        background: var(--ink);
        padding: 48px 40px;
      }
      .test-stars {
        color: var(--gold);
        margin-bottom: 20px;
        font-size: 0.9rem;
        letter-spacing: 3px;
      }
      .test-quote {
        font-size: 14px;
        color: var(--silver);
        line-height: 1.9;
        margin-bottom: 28px;
        font-style: italic;
      }
      .test-author {
        display: flex;
        align-items: center;
        gap: 14px;
      }
      .test-avatar {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-disp);
        font-size: 1.2rem;
        color: var(--gold);
        flex-shrink: 0;
      }
      .test-author-info .name {
        font-size: 13px;
        color: var(--cream);
        font-weight: 400;
      }
      .test-author-info .role {
        font-size: 11px;
        color: var(--muted);
        letter-spacing: 0.08em;
      }

      /* ── CONTACT ─────────────────────────────── */
      #contact {
        background: var(--panel);
      }
      .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 100px;
        align-items: start;
      }
      .contact-left p {
        color: var(--silver);
        line-height: 1.9;
        margin-bottom: 40px;
        max-width: 380px;
      }
      .c-info {
        display: flex;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 28px;
      }
      .c-info i {
        font-size: 1.1rem;
        color: var(--gold);
        margin-top: 2px;
        flex-shrink: 0;
      }
      .c-info div {
        font-size: 13px;
        color: var(--silver);
        line-height: 1.7;
      }
      .c-info a {
        color: var(--cream);
        transition: color 0.2s;
      }
      .c-info a:hover {
        color: var(--gold);
      }
      .contact-social {
        display: flex;
        gap: 12px;
        margin-top: 44px;
      }
      .c-soc {
        width: 42px;
        height: 42px;
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        color: var(--muted);
        transition:
          border-color 0.2s,
          color 0.2s;
      }
      .c-soc:hover {
        border-color: var(--gold);
        color: var(--gold);
      }
      .contact-form {
      }
      .cf-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 24px;
      }
      .cf-field {
        border-bottom: 1px solid var(--border);
        margin-bottom: 4px;
      }
      .cf-field input,
      .cf-field textarea,
      .cf-field select {
        width: 100%;
        background: transparent;
        border: none;
        color: var(--cream);
        padding: 18px 0;
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 300;
        outline: none;
        transition: border-color 0.2s;
        display: block;
      }
      .cf-field input::placeholder,
      .cf-field textarea::placeholder {
        color: var(--mid);
      }
      .cf-field:focus-within {
        border-bottom-color: var(--gold);
      }
      .cf-field textarea {
        height: 130px;
        resize: none;
        margin-top: 4px;
      }
      .cf-field select option {
        background: var(--panel);
      }
      .cf-submit {
        margin-top: 40px;
        display: inline-flex;
        align-items: center;
        gap: 14px;
        background: var(--gold);
        color: var(--ink);
        border: none;
        padding: 18px 40px;
        font-family: var(--font-body);
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        cursor: none;
        font-weight: 500;
        transition: opacity 0.2s;
      }
      .cf-submit:hover {
        opacity: 0.85;
      }
      .cf-result {
        margin-top: 16px;
        font-size: 13px;
      }
      #cf-success {
        color: var(--gold);
        display: none;
      }
      #cf-error {
        color: #e07070;
        display: none;
      }

      /* ── FOOTER ──────────────────────────────── */
      footer {
        background: var(--deep);
        border-top: 1px solid var(--border);
      }
      .footer-top {
        display: grid;
        grid-template-columns: 2.2fr 1fr 1fr 1fr;
        gap: 60px;
        padding: 72px 56px 60px;
      }
      .f-brand .logo-f {
        font-family: var(--font-disp);
        font-size: 1.8rem;
        letter-spacing: 0.08em;
        color: var(--cream);
        margin-bottom: 18px;
      }
      .f-brand .logo-f span {
        color: var(--gold);
      }
      .f-brand p {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.85;
        max-width: 260px;
      }
      .f-col h6 {
        font-family: var(--font-mono);
        font-size: 9px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 22px;
      }
      .f-col ul {
        list-style: none;
      }
      .f-col li,
      .f-col a,
      .f-col p {
        font-size: 13px;
        color: var(--muted);
        line-height: 2;
      }
      .f-col a:hover {
        color: var(--cream);
      }
      .footer-bottom {
        padding: 22px 56px;
        border-top: 1px solid var(--border);
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .footer-bottom p {
        font-size: 11px;
        color: var(--mid);
        letter-spacing: 0.06em;
      }
      .f-social {
        display: flex;
        gap: 12px;
      }
      .f-social a {
        width: 36px;
        height: 36px;
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        color: var(--muted);
        transition:
          border-color 0.2s,
          color 0.2s;
      }
      .f-social a:hover {
        border-color: var(--gold);
        color: var(--gold);
      }

      /* ── SCROLL TO TOP ───────────────────────── */
      #scrollTop {
        position: fixed;
        bottom: 36px;
        right: 36px;
        z-index: 100;
        width: 46px;
        height: 46px;
        background: var(--gold);
        color: var(--ink);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        opacity: 0;
        transition: opacity 0.3s;
        cursor: none;
      }
      #scrollTop.visible {
        opacity: 1;
      }

      /* ── REVEAL ANIMATION ────────────────────── */
      [data-r] {
        opacity: 0;
        transform: translateY(40px);
        transition:
          opacity 0.8s ease,
          transform 0.8s ease;
      }
      [data-r].on {
        opacity: 1;
        transform: translateY(0);
      }
      [data-r][data-d="1"] {
        transition-delay: 0.1s;
      }
      [data-r][data-d="2"] {
        transition-delay: 0.2s;
      }
      [data-r][data-d="3"] {
        transition-delay: 0.3s;
      }
      [data-r][data-d="4"] {
        transition-delay: 0.4s;
      }
      [data-r][data-d="5"] {
        transition-delay: 0.5s;
      }
      [data-r][data-d="6"] {
        transition-delay: 0.6s;
      }

      /* ── MOBILE ──────────────────────────────── */
      @media (max-width: 900px) {
        nav {
          padding: 20px 24px;
        }
        nav.scrolled {
          padding: 14px 24px;
        }
        .nav-links {
          display: none;
          flex-direction: column;
          gap: 20px;
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: rgba(8, 8, 8, 0.98);
          padding: 100px 24px 40px;
          z-index: 199;
        }
        .nav-links.open {
          display: flex;
        }
        .nav-cta {
          display: none;
        }
        .nav-burger {
          display: flex;
        }
        .sec {
          padding: 72px 24px;
        }
        #hero .hero-body {
          padding: 0 24px 64px;
        }
        .hero-scroll-ind {
          display: none;
        }
        .hero-bottom {
          flex-direction: column;
          align-items: flex-start;
          gap: 24px;
        }
        .vision-wrap {
          grid-template-columns: 1fr;
          gap: 48px;
        }
        .vision-reel {
          height: 380px;
        }
        .vision-badge {
          right: 0;
          bottom: -16px;
        }
        .statement {
          padding: 72px 24px;
        }
        .services-head {
          flex-direction: column;
          align-items: flex-start;
          gap: 20px;
        }
        .services-grid {
          grid-template-columns: 1fr;
        }
        .work-grid {
          display: flex;
          flex-direction: column;
          gap: 12px;
        }
        .work-item {
          height: 260px !important;
          grid-column: unset !important;
          grid-row: unset !important;
        }
        .process-steps {
          grid-template-columns: 1fr 1fr;
          gap: 32px;
        }
        .ps-item {
          border-right: none;
          padding: 0;
        }
        .ps-item:not(:first-child) {
          padding-left: 0;
        }
        .ps-bar {
          left: 0 !important;
        }
        .about-wrap {
          grid-template-columns: 1fr;
          gap: 48px;
        }
        .about-img {
          height: 360px;
        }
        .about-img-num {
          display: none;
        }
        .test-grid {
          grid-template-columns: 1fr;
        }
        .contact-grid {
          grid-template-columns: 1fr;
          gap: 52px;
        }
        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 36px;
          padding: 48px 24px;
        }
        .footer-bottom {
          flex-direction: column;
          gap: 16px;
          padding: 20px 24px;
          text-align: center;
        }
        .cf-row {
          grid-template-columns: 1fr;
        }
        #process,
        #about,
        #testimonials,
        #contact {
          padding: 72px 24px;
        }
      }
      @media (max-width: 480px) {
        .process-steps {
          grid-template-columns: 1fr;
        }
        .vision-stats {
          grid-template-columns: 1fr;
        }
        .footer-top {
          grid-template-columns: 1fr;
        }
      }
  