:root {
    --ink: #090b0d;
    --ink-soft: #111418;
    --paper: #f2f0ea;
    --paper-bright: #fbfaf6;
    --muted: #9da2a6;
    --line: rgba(9, 11, 13, 0.16);
    --line-light: rgba(255, 255, 255, 0.17);
    --orange: #ff6a1a;
    --orange-light: #ff9d69;
    --lime: #d9ff43;
    --white: #fff;
    --header-height: 88px;
    --shell: min(92vw, 1460px);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.22, 1.35, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--ink);
}

body {
    margin: 0;
    overflow-x: clip;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    position: fixed;
    top: var(--menu-scroll-offset, 0);
    right: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}

::selection {
    color: var(--ink);
    background: var(--lime);
}

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

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

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--lime);
    outline-offset: 4px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: var(--ink);
    background: var(--lime);
    font-weight: 800;
    transform: translateY(-150%);
    transition: transform 0.2s;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    color: var(--white);
    transition: height 0.4s var(--ease-out), background 0.4s, box-shadow 0.4s;
}

.site-header::after {
    position: absolute;
    right: 4vw;
    bottom: 0;
    left: 4vw;
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
    content: "";
    transition: opacity 0.3s;
}

.site-header.is-scrolled {
    height: 74px;
    background: rgba(9, 11, 13, 0.88);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled::after {
    opacity: 0;
}

.nav-shell {
    display: flex;
    width: var(--shell);
    height: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}

.brand {
    position: relative;
    z-index: 3;
    width: 196px;
    padding: 9px 12px;
    overflow: visible;
    background: #fff;
    box-shadow: 8px 8px 0 rgba(255, 106, 26, 0.88), 0 12px 32px rgba(0, 0, 0, 0.2);
}

.brand img,
.footer-brand img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1972 / 398;
    object-fit: contain;
    filter: none;
}

.primary-nav {
    display: flex;
    gap: clamp(20px, 2.4vw, 42px);
    align-items: center;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.primary-nav > a:not(.nav-cta) {
    position: relative;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.25s;
}

.primary-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 1px;
    background: var(--orange);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s var(--ease-out);
}

.primary-nav > a:hover,
.primary-nav > a[aria-current="page"] {
    color: var(--white);
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    display: inline-flex;
    min-height: 46px;
    padding: 0 21px;
    color: var(--ink);
    background: var(--orange);
    align-items: center;
    gap: 18px;
    border-radius: 999px;
    transition: color 0.3s, background 0.3s, transform 0.3s var(--ease-spring);
}

.nav-cta:hover {
    background: var(--lime);
    transform: translateY(-2px);
}

.menu-toggle {
    position: relative;
    z-index: 3;
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 1px solid var(--line-light);
    border-radius: 50%;
}

.menu-toggle span:not(.sr-only) {
    position: absolute;
    top: 20px;
    left: 14px;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform 0.3s, top 0.3s;
}

.menu-toggle span:last-child {
    top: 27px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    top: 23px;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    top: 23px;
    transform: rotate(-45deg);
}

.hero,
.page-hero {
    position: relative;
    color: var(--white);
    background: var(--ink);
}

.home-hero {
    display: grid;
    min-height: 820px;
    height: 100svh;
    padding: calc(var(--header-height) + 7vh) 4vw 7vh;
    overflow: hidden;
    grid-template-columns: minmax(300px, 0.9fr) minmax(520px, 1.1fr);
    align-items: center;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
    background-size: 7.5vw 7.5vw;
    -webkit-mask-image: linear-gradient(to right, #000, transparent 76%);
    mask-image: linear-gradient(to right, #000, transparent 76%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.6;
    pointer-events: none;
}

.hero-orb-one {
    top: -22vw;
    right: -12vw;
    width: 52vw;
    height: 52vw;
    background: radial-gradient(circle at 40% 40%, rgba(255,106,26,0.32), transparent 67%);
}

.hero-orb-two {
    bottom: -28vw;
    left: -20vw;
    width: 54vw;
    height: 54vw;
    background: radial-gradient(circle, rgba(217,255,67,0.13), transparent 67%);
}

.hero-copy {
    position: relative;
    z-index: 3;
    max-width: 760px;
    padding-left: 4vw;
}

.eyebrow {
    display: flex;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.62);
    align-items: center;
    gap: 12px;
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 32px;
    height: 2px;
    background: var(--orange);
}

.eyebrow-dark {
    color: rgba(9, 11, 13, 0.58);
}

.hero h1,
.page-hero h1,
.not-found-section h1 {
    max-width: 830px;
    margin: 0;
    font-size: clamp(4.1rem, 7.8vw, 9.2rem);
    font-weight: 800;
    letter-spacing: -0.075em;
    line-height: 0.83;
}

.hero h1 em,
.page-hero h1 em,
.section-heading h2 em,
.project-heading h2 em,
.about-copy h2 em,
.history-sticky h2 em,
.client-intro h2 em,
.cta-copy h2 em,
.manifesto em,
.dark-feature-copy h2 em,
.manifesto-section em,
.not-found-section h1 em,
.enquiry-copy h2 em {
    color: var(--orange);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.055em;
}

.hero-lede,
.page-hero-copy > p:last-child {
    max-width: 600px;
    margin: 34px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(1rem, 1.3vw, 1.22rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    margin-top: 40px;
    align-items: center;
    gap: 32px;
}

.button {
    display: inline-flex;
    min-height: 54px;
    padding: 0 24px;
    border: 0;
    align-items: center;
    justify-content: center;
    gap: 28px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s, background 0.3s, transform 0.35s var(--ease-spring), box-shadow 0.35s;
}

.button:hover {
    transform: translateY(-3px) scale(1.01);
}

.button-primary {
    color: var(--ink);
    background: var(--orange);
    box-shadow: 0 14px 44px rgba(255, 106, 26, 0.22);
}

.button-primary:hover {
    background: var(--lime);
    box-shadow: 0 17px 54px rgba(217, 255, 67, 0.16);
}

.button-dark {
    color: var(--white);
    background: var(--ink);
}

.button-dark:hover {
    color: var(--ink);
    background: var(--orange);
}

.button-large {
    min-height: 64px;
    padding: 0 30px;
}

.text-link {
    display: inline-flex;
    padding: 10px 0;
    color: rgba(255,255,255,0.78);
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.28);
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.25s, border-color 0.25s, gap 0.3s var(--ease-out);
}

.text-link:hover {
    color: var(--orange);
    border-color: var(--orange);
    gap: 22px;
}

.hero-scene {
    --scene-x: 0deg;
    --scene-y: 0deg;
    position: relative;
    z-index: 2;
    width: min(50vw, 760px);
    height: min(72vh, 760px);
    margin: 0 auto;
    perspective: 1300px;
    transform-style: preserve-3d;
    transform: rotateX(var(--scene-x)) rotateY(var(--scene-y));
    transition: transform 0.4s var(--ease-out);
}

.scene-glow {
    position: absolute;
    top: 17%;
    left: 10%;
    width: 72%;
    height: 60%;
    background: var(--orange);
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.18;
    transform: translateZ(-80px);
}

.scene-card {
    position: absolute;
    margin: 0;
    overflow: hidden;
    background: #17191c;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 45px 100px rgba(0,0,0,0.52);
    transform-style: preserve-3d;
    will-change: transform;
}

.scene-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.17), transparent 28%, transparent 75%, rgba(255,106,26,0.14));
    content: "";
    pointer-events: none;
}

.scene-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scene-card-back {
    top: 2%;
    right: 2%;
    width: 66%;
    height: 48%;
    transform: translate3d(0, var(--parallax-y, 0px), -90px) rotateY(-10deg) rotateZ(4deg);
    opacity: 0.47;
    filter: saturate(0.45) contrast(1.1);
}

.scene-card-mid {
    right: 9%;
    bottom: 8%;
    width: 82%;
    height: 67%;
    transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 45px) rotateY(-8deg) rotateX(2deg) rotateZ(-2deg);
}

.scene-card-mid img {
    filter: saturate(0.8) contrast(1.08) brightness(0.76);
}

.scene-card figcaption {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 50px 32px 26px;
    background: linear-gradient(transparent, rgba(0,0,0,0.78));
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.scene-card figcaption span {
    color: rgba(255,255,255,0.62);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.scene-card figcaption strong {
    font-size: 1.05rem;
    letter-spacing: -0.03em;
}

.scene-badge {
    position: absolute;
    z-index: 3;
    top: 16%;
    left: 0;
    display: flex;
    width: 140px;
    height: 140px;
    color: var(--ink);
    background: var(--lime);
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 50%;
    box-shadow: 0 25px 55px rgba(0,0,0,0.35);
    transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 120px) rotate(-8deg);
}

.scene-badge strong {
    font-size: 2rem;
    letter-spacing: -0.08em;
}

.scene-badge span {
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.scroll-cue {
    position: absolute;
    z-index: 3;
    right: 4vw;
    bottom: 34px;
    display: flex;
    color: rgba(255,255,255,0.5);
    align-items: center;
    gap: 18px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.scroll-cue i {
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
}

.scroll-cue i::after {
    position: absolute;
    top: 13px;
    left: 18px;
    width: 4px;
    height: 8px;
    border-right: 1px solid var(--orange);
    border-bottom: 1px solid var(--orange);
    content: "";
    transform: rotate(45deg);
    animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { transform: translateY(-3px) rotate(45deg); opacity: 0.3; }
    50% { transform: translateY(4px) rotate(45deg); opacity: 1; }
}

.impact-strip {
    display: grid;
    padding: 0 4vw;
    color: var(--white);
    background: var(--orange);
    grid-template-columns: repeat(4, 1fr);
}

.metric {
    min-height: 190px;
    padding: 42px 3vw;
    border-left: 1px solid rgba(9,11,13,0.18);
}

.metric:last-child {
    border-right: 1px solid rgba(9,11,13,0.18);
}

.metric strong {
    display: inline-flex;
    color: var(--ink);
    align-items: center;
    font-size: clamp(2.5rem, 4.8vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.075em;
    line-height: 1;
}

.metric > span {
    display: block;
    margin-top: 12px;
    color: rgba(9,11,13,0.62);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.service-marquee {
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.marquee-track {
    display: flex;
    width: max-content;
    padding: 22px 0;
    animation: marquee 32s linear infinite;
}

.marquee-track span {
    display: flex;
    padding-right: 30px;
    align-items: center;
    gap: 30px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    white-space: nowrap;
    text-transform: uppercase;
}

.marquee-track i {
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
}

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

.section {
    padding: clamp(100px, 11vw, 180px) 4vw;
}

.section-heading {
    display: grid;
    max-width: 1460px;
    margin: 0 auto clamp(55px, 7vw, 100px);
    grid-template-columns: 1.3fr 0.7fr;
    gap: 10vw;
    align-items: end;
}

.section-heading h2,
.project-heading h2,
.about-copy h2,
.history-sticky h2,
.client-intro h2,
.cta-copy h2,
.dark-feature-copy h2,
.enquiry-copy h2 {
    margin: 0;
    font-size: clamp(3.2rem, 6.1vw, 7.5rem);
    font-weight: 800;
    letter-spacing: -0.075em;
    line-height: 0.89;
}

.section-heading > p,
.about-copy > p,
.history-sticky > p:last-child,
.dark-feature-copy > p,
.enquiry-copy > p {
    margin: 0;
    color: rgba(9,11,13,0.63);
    font-size: 1rem;
    line-height: 1.8;
}

.service-deck {
    display: grid;
    max-width: 1460px;
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    perspective: 1200px;
}

.service-card {
    --rx: 0deg;
    --ry: 0deg;
    position: relative;
    min-height: 410px;
    padding: 28px;
    overflow: hidden;
    background: var(--paper-bright);
    transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
    transform-style: preserve-3d;
    transition: transform 0.18s ease-out, color 0.45s, background 0.45s;
}

.service-card::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.74));
    content: "";
    opacity: 0;
    transition: opacity 0.45s;
}

.service-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    transform: scale(1.12);
    transition: opacity 0.45s, transform 0.8s var(--ease-out);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7) contrast(1.07);
}

.service-number,
.service-card > p,
.service-card h3,
.card-arrow {
    position: relative;
    z-index: 2;
    transform: translateZ(35px);
}

.service-number {
    color: rgba(9,11,13,0.38);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.service-card > p {
    position: absolute;
    bottom: 98px;
    left: 28px;
    margin: 0;
    color: rgba(9,11,13,0.45);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.service-card h3 {
    position: absolute;
    right: 70px;
    bottom: 28px;
    left: 28px;
    margin: 0;
    font-size: clamp(1.5rem, 2.4vw, 2.35rem);
    letter-spacing: -0.055em;
    line-height: 1;
}

.card-arrow {
    position: absolute;
    right: 28px;
    bottom: 29px;
    display: grid;
    width: 38px;
    height: 38px;
    color: var(--ink);
    border: 1px solid var(--line);
    place-items: center;
    border-radius: 50%;
    transition: color 0.3s, background 0.3s, transform 0.35s var(--ease-spring);
}

.service-card:hover {
    color: var(--white);
}

.service-card:hover::before,
.service-card:hover .service-image {
    opacity: 1;
}

.service-card:hover .service-image {
    transform: scale(1);
}

.service-card:hover .service-number,
.service-card:hover > p {
    color: rgba(255,255,255,0.68);
}

.service-card:hover .card-arrow {
    color: var(--ink);
    background: var(--orange);
    border-color: var(--orange);
    transform: translateZ(48px) rotate(45deg);
}

.section-footer {
    display: flex;
    max-width: 1460px;
    margin: 42px auto 0;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.section-footer p {
    color: rgba(9,11,13,0.54);
}

.project-showcase {
    color: var(--white);
    background: var(--ink);
}

.project-heading {
    display: grid;
    max-width: 1460px;
    margin: 0 auto 70px;
    grid-template-columns: 1fr auto;
    align-items: end;
}

.project-heading .eyebrow {
    grid-column: 1 / -1;
}

.text-link-light {
    margin-bottom: 4px;
}

.project-stack {
    max-width: 1460px;
    margin: 0 auto;
    border-top: 1px solid var(--line-light);
}

.project-panel {
    position: relative;
    display: grid;
    min-height: 145px;
    overflow: hidden;
    border-bottom: 1px solid var(--line-light);
    grid-template-columns: 90px 1fr 70px;
    align-items: center;
    isolation: isolate;
}

.project-panel-image {
    position: absolute;
    inset: -45% 0;
    z-index: -1;
    overflow: hidden;
    opacity: 0;
    transform: scaleY(0.15);
    transition: opacity 0.45s, transform 0.6s var(--ease-out);
}

.project-panel-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9,11,13,0.85), rgba(9,11,13,0.25) 50%, rgba(9,11,13,0.7));
    content: "";
}

.project-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7);
    transform: scale(1.08);
    transition: transform 0.8s var(--ease-out);
}

.project-index {
    color: rgba(255,255,255,0.36);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.project-panel-copy {
    display: grid;
    grid-template-columns: minmax(180px, 0.35fr) 1fr;
    align-items: center;
}

.project-panel-copy p {
    margin: 0;
    color: rgba(255,255,255,0.46);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-panel-copy h3 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4.7rem);
    letter-spacing: -0.065em;
    line-height: 1;
    transition: transform 0.45s var(--ease-out);
}

.project-open {
    display: grid;
    width: 50px;
    height: 50px;
    margin-left: auto;
    color: var(--white);
    border: 1px solid var(--line-light);
    place-items: center;
    border-radius: 50%;
    transition: color 0.3s, background 0.3s, transform 0.45s var(--ease-spring);
}

.project-panel:hover .project-panel-image {
    opacity: 1;
    transform: scaleY(1);
}

.project-panel:hover .project-panel-image img {
    transform: scale(1);
}

.project-panel:hover .project-panel-copy h3 {
    transform: translateX(22px);
}

.project-panel:hover .project-open {
    color: var(--ink);
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(45deg) scale(1.08);
}

.about-preview {
    display: grid;
    max-width: 1600px;
    margin: 0 auto;
    grid-template-columns: 1.08fr 0.92fr;
    gap: clamp(60px, 9vw, 150px);
    align-items: center;
}

.about-image-wrap {
    --rx: 0deg;
    --ry: 0deg;
    position: relative;
    padding: 5% 0 0 5%;
    perspective: 1000px;
    transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
    transform-style: preserve-3d;
    transition: transform 0.25s ease-out;
}

.about-image-wrap::before {
    position: absolute;
    inset: 0 6% 8% 0;
    background: var(--orange);
    content: "";
    transform: translateZ(-40px) rotate(-3deg);
}

.about-image-frame {
    position: relative;
    aspect-ratio: 1.15 / 1;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(9,11,13,0.2);
    transform: translateZ(30px);
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stamp {
    position: absolute;
    right: -30px;
    bottom: -30px;
    display: flex;
    width: 150px;
    height: 150px;
    color: var(--ink);
    background: var(--lime);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
    transform: translateZ(80px) rotate(8deg);
}

.about-stamp span {
    font-family: Georgia, serif;
    font-size: 1.4rem;
    font-style: italic;
}

.about-stamp strong {
    font-size: 0.65rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.about-copy h2 {
    margin-bottom: 36px;
}

.about-copy > p + p {
    margin-top: 22px;
}

.about-copy .large-copy {
    color: var(--ink);
    font-size: clamp(1.18rem, 1.8vw, 1.6rem);
    letter-spacing: -0.025em;
    line-height: 1.55;
}

.about-copy .button {
    margin-top: 36px;
}

.history-preview {
    display: grid;
    padding: clamp(100px, 11vw, 180px) 4vw;
    color: var(--white);
    background: var(--ink);
    grid-template-columns: minmax(300px, 0.85fr) minmax(420px, 1.15fr);
    gap: 10vw;
}

.history-sticky {
    position: sticky;
    top: 140px;
    height: max-content;
    padding-left: 4vw;
}

.history-sticky > p:last-child {
    max-width: 410px;
    margin-top: 34px;
    color: rgba(255,255,255,0.56);
}

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

.history-item {
    display: grid;
    min-height: 210px;
    padding: 38px 0;
    border-bottom: 1px solid var(--line-light);
    grid-template-columns: 150px 1fr;
    gap: 30px;
}

.history-item > span {
    color: var(--orange);
    font-family: Georgia, serif;
    font-size: 1.4rem;
    font-style: italic;
}

.history-item h3 {
    margin: 0 0 16px;
    font-size: clamp(1.5rem, 2.5vw, 2.7rem);
    letter-spacing: -0.05em;
}

.history-item p {
    max-width: 580px;
    margin: 0;
    color: rgba(255,255,255,0.52);
    line-height: 1.75;
}

.client-section {
    display: grid;
    padding: clamp(100px, 11vw, 180px) 4vw;
    background: var(--paper-bright);
    grid-template-columns: minmax(300px, 0.75fr) minmax(520px, 1.25fr);
    gap: 10vw;
    align-items: start;
}

.client-intro {
    padding-left: 4vw;
}

.client-intro h2 {
    font-size: clamp(3.1rem, 5.2vw, 6.5rem);
}

.logo-grid {
    display: grid;
    background: var(--line);
    border: 1px solid var(--line);
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}

.client-logo {
    display: grid;
    min-height: 160px;
    padding: 25px;
    background: var(--paper-bright);
    place-items: center;
    transition: background 0.35s, transform 0.35s var(--ease-spring);
}

.client-logo img {
    width: 80%;
    max-width: 120px;
    max-height: 62px;
    object-fit: contain;
    filter: grayscale(1) contrast(1.2);
    transition: filter 0.35s, transform 0.35s var(--ease-spring);
}

.client-logo:hover {
    z-index: 2;
    background: var(--white);
    transform: translateY(-5px) scale(1.03);
}

.client-logo:hover img {
    filter: none;
    transform: scale(1.08);
}

.cta-section {
    position: relative;
    display: grid;
    min-height: 760px;
    padding: 120px 4vw;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
    place-items: center;
}

.cta-section::before {
    position: absolute;
    width: 52vw;
    height: 52vw;
    background: radial-gradient(circle, rgba(255,106,26,0.24), transparent 68%);
    content: "";
    filter: blur(16px);
}

.cta-copy {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-copy .eyebrow {
    justify-content: center;
}

.cta-copy h2 {
    font-size: clamp(4rem, 8vw, 10rem);
}

.cta-copy .button {
    margin-top: 44px;
}

.cta-orbit {
    position: absolute;
    width: min(72vw, 950px);
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    animation: orbit-spin 24s linear infinite;
}

.cta-orbit::before,
.cta-orbit::after {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    content: "";
}

.cta-orbit::before { inset: 14%; }
.cta-orbit::after { inset: 29%; }

.cta-orbit i {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 28px var(--orange);
}

.cta-orbit i:nth-child(1) { top: 15%; left: 16%; }
.cta-orbit i:nth-child(2) { right: -5px; top: 50%; background: var(--lime); box-shadow: 0 0 28px var(--lime); }
.cta-orbit i:nth-child(3) { bottom: 7%; left: 32%; }

@keyframes orbit-spin { to { transform: rotate(360deg); } }

.site-footer {
    padding: 80px 4vw 24px;
    color: var(--white);
    background: #050607;
    border-top: 1px solid var(--line-light);
}

.footer-top {
    display: grid;
    max-width: 1460px;
    margin: 0 auto 70px;
    grid-template-columns: 0.7fr 1fr 1fr;
    gap: 8vw;
}

.footer-brand {
    width: 220px;
}

.footer-brand img {
    padding: 11px 14px;
    background: #fff;
    box-shadow: 8px 8px 0 rgba(255, 106, 26, 0.82);
}

.footer-brand span {
    display: block;
    margin-top: 18px;
    color: rgba(255,255,255,0.42);
    font-family: Georgia, serif;
    font-size: 1.2rem;
    font-style: italic;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
}

.footer-nav div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav p,
.footer-contact > span {
    margin: 0 0 12px;
    color: rgba(255,255,255,0.34);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-nav a {
    width: max-content;
    color: rgba(255,255,255,0.68);
    font-size: 0.89rem;
    transition: color 0.25s, transform 0.25s;
}

.footer-nav a:hover {
    color: var(--orange);
    transform: translateX(4px);
}

.footer-contact {
    position: relative;
    align-self: start;
    padding: 6px 60px 26px 0;
    border-bottom: 1px solid var(--line-light);
}

.footer-contact span {
    display: block;
}

.footer-contact strong {
    font-size: clamp(1.1rem, 1.7vw, 1.55rem);
    letter-spacing: -0.04em;
}

.footer-contact i {
    position: absolute;
    right: 0;
    bottom: 18px;
    color: var(--orange);
    font-style: normal;
}

.footer-bottom {
    display: flex;
    max-width: 1460px;
    margin: 0 auto;
    padding-top: 22px;
    color: rgba(255,255,255,0.34);
    border-top: 1px solid var(--line-light);
    justify-content: space-between;
    gap: 24px;
    font-size: 0.67rem;
    letter-spacing: 0.05em;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
}

/* Inner pages */
.page-hero {
    display: grid;
    min-height: 780px;
    padding: calc(var(--header-height) + 100px) 8vw 100px;
    overflow: hidden;
    grid-template-columns: minmax(340px, 1.05fr) minmax(420px, 0.95fr);
    gap: 7vw;
    align-items: center;
}

.page-hero::before {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 9vw 9vw;
    content: "";
    -webkit-mask-image: linear-gradient(90deg, #000, transparent 80%);
    mask-image: linear-gradient(90deg, #000, transparent 80%);
}

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

.page-hero h1 {
    font-size: clamp(4rem, 7.4vw, 8.8rem);
}

.page-hero-visual {
    --rx: 0deg;
    --ry: 0deg;
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 0.95 / 1;
    padding: 5%;
    perspective: 1000px;
    transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
    transform-style: preserve-3d;
    transition: transform 0.25s ease-out;
}

.page-hero-visual::before {
    position: absolute;
    inset: 9% 0 0 10%;
    background: var(--orange);
    content: "";
    transform: translateZ(-50px) rotate(5deg);
}

.page-hero-visual img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 50px 90px rgba(0,0,0,0.5);
    transform: translateZ(32px) rotate(-2deg);
}

.page-hero-visual span {
    position: absolute;
    right: -15px;
    bottom: 6%;
    display: grid;
    width: 120px;
    height: 120px;
    color: var(--ink);
    background: var(--lime);
    place-items: center;
    border-radius: 50%;
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transform: translateZ(90px) rotate(8deg);
}

.manifesto-section {
    max-width: 1460px;
    margin: 0 auto;
}

.manifesto-kicker {
    margin: 0 0 34px;
    color: rgba(9,11,13,0.4);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.manifesto {
    max-width: 1250px;
    margin: 0;
    font-size: clamp(3rem, 5.8vw, 7rem);
    font-weight: 750;
    letter-spacing: -0.067em;
    line-height: 0.98;
}

.manifesto-notes {
    display: grid;
    width: 67%;
    margin: 80px 0 0 auto;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
}

.manifesto-notes p {
    margin: 0;
    color: rgba(9,11,13,0.63);
    line-height: 1.85;
}

.dark-feature {
    display: grid;
    padding: clamp(90px, 9vw, 150px) 8vw;
    color: var(--white);
    background: var(--ink);
    grid-template-columns: 1fr 0.9fr;
    gap: 9vw;
    align-items: center;
}

.dark-feature-image {
    position: relative;
}

.dark-feature-image::before {
    position: absolute;
    inset: 7% -5% -7% 8%;
    background: var(--orange);
    content: "";
    transform: rotate(3deg);
}

.dark-feature-image img {
    position: relative;
    width: 100%;
    aspect-ratio: 1.2 / 1;
    object-fit: cover;
    filter: saturate(0.75) contrast(1.07);
}

.dark-feature-copy h2 {
    font-size: clamp(3.3rem, 5.4vw, 6.6rem);
}

.dark-feature-copy > p {
    margin-top: 34px;
    color: rgba(255,255,255,0.57);
}

.feature-stats {
    display: grid;
    margin: 45px 0 0;
    padding-top: 32px;
    border-top: 1px solid var(--line-light);
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-stats div {
    display: flex;
    flex-direction: column;
}

.feature-stats dt {
    display: inline-flex;
    color: var(--orange);
    align-items: center;
    align-self: flex-start;
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1;
}

.feature-stats dd {
    margin: 7px 0 0;
    color: rgba(255,255,255,0.45);
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.leadership-section {
    background: var(--paper-bright);
}

.leadership-grid {
    display: grid;
    max-width: 1460px;
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    perspective: 1200px;
}

.leader-card {
    --rx: 0deg;
    --ry: 0deg;
    position: relative;
    min-height: 590px;
    overflow: hidden;
    background: var(--ink-soft);
    transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
    transform-style: preserve-3d;
    transition: transform 0.18s ease-out;
}

.leader-card::after {
    position: absolute;
    inset: 30% 0 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    content: "";
}

.leader-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.75);
    transition: transform 0.8s var(--ease-out), filter 0.5s;
}

.leader-card > div {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 30px;
    left: 30px;
    color: var(--white);
    transform: translateZ(38px);
}

.leader-card p {
    margin: 0 0 9px;
    color: var(--orange);
    font-size: 0.63rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.leader-card h3 {
    margin: 0;
    font-size: clamp(1.55rem, 2.5vw, 2.55rem);
    letter-spacing: -0.05em;
}

.leader-card:hover img {
    filter: saturate(1);
    transform: scale(1.045);
}

.about-history {
    border-top: 1px solid var(--line-light);
}

.cta-compact {
    min-height: 650px;
}

.cta-compact .cta-copy h2 {
    font-size: clamp(3.7rem, 7vw, 8.5rem);
}

.services-hero {
    min-height: 750px;
}

.service-sculpture {
    position: relative;
    z-index: 2;
    width: min(37vw, 540px);
    aspect-ratio: 1;
    margin: 0 auto;
    perspective: 1000px;
    transform-style: preserve-3d;
    animation: sculpture-float 6s ease-in-out infinite;
}

.sculpture-ring {
    position: absolute;
    inset: 6%;
    border: 2px solid rgba(255,255,255,0.24);
    border-radius: 50%;
    transform-style: preserve-3d;
}

.ring-one {
    border-color: var(--orange);
    box-shadow: 0 0 70px rgba(255,106,26,0.2);
    transform: rotateX(68deg) rotateZ(18deg);
}

.ring-two {
    inset: 16%;
    border-color: var(--lime);
    box-shadow: 0 0 55px rgba(217,255,67,0.12);
    transform: rotateY(72deg) rotateZ(-12deg);
}

.sculpture-core {
    position: absolute;
    inset: 28%;
    display: grid;
    color: var(--ink);
    background: var(--orange);
    place-items: center;
    border-radius: 32%;
    box-shadow: 0 28px 70px rgba(0,0,0,0.5);
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.1em;
    transform: rotate(-8deg) translateZ(90px);
}

@keyframes sculpture-float {
    0%, 100% { transform: translateY(-12px) rotateY(-6deg); }
    50% { transform: translateY(18px) rotateY(8deg); }
}

.services-full {
    padding: 0 4vw;
    background: var(--paper-bright);
}

.service-row {
    position: relative;
    display: grid;
    max-width: 1460px;
    min-height: 250px;
    margin: 0 auto;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 100px 1fr minmax(250px, 0.55fr) 70px;
    align-items: center;
    isolation: isolate;
}

.service-row-number {
    color: rgba(9,11,13,0.36);
    font-size: 0.71rem;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.service-row-copy {
    position: relative;
    z-index: 2;
    padding-right: 50px;
}

.service-row-copy > p {
    margin: 0 0 14px;
    color: var(--orange);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-row-copy h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4.7rem);
    letter-spacing: -0.065em;
    line-height: 1;
    transition: transform 0.4s var(--ease-out);
}

.service-row-copy > span {
    display: block;
    max-width: 650px;
    margin-top: 20px;
    color: rgba(9,11,13,0.58);
    line-height: 1.7;
}

.service-row-image {
    height: 170px;
    overflow: hidden;
    clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%);
}

.service-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0) contrast(1.06);
    transform: scale(1.1);
    transition: filter 0.45s, transform 0.65s var(--ease-out);
}

.service-row-arrow {
    display: grid;
    width: 48px;
    height: 48px;
    margin-left: auto;
    border: 1px solid var(--line);
    place-items: center;
    border-radius: 50%;
    transition: color 0.3s, background 0.3s, transform 0.4s var(--ease-spring);
}

.service-row:hover .service-row-image img {
    filter: saturate(1);
    transform: scale(1);
}

.service-row:hover .service-row-copy h2 {
    transform: translateX(14px);
}

.service-row:hover .service-row-arrow {
    color: var(--ink);
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(45deg);
}

.process-section {
    background: var(--paper);
}

.process-grid {
    display: grid;
    max-width: 1460px;
    margin: 0 auto;
    background: var(--line);
    border: 1px solid var(--line);
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}

.process-card {
    min-height: 330px;
    padding: 30px;
    background: var(--paper-bright);
    transition: color 0.4s, background 0.4s, transform 0.4s var(--ease-spring);
}

.process-card > span {
    color: var(--orange);
    font-size: 0.69rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.process-card h3 {
    margin: 105px 0 18px;
    font-size: clamp(1.7rem, 2.6vw, 2.8rem);
    letter-spacing: -0.055em;
}

.process-card p {
    margin: 0;
    color: rgba(9,11,13,0.55);
    line-height: 1.7;
}

.process-card:hover {
    z-index: 2;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-10px);
}

.process-card:hover p {
    color: rgba(255,255,255,0.55);
}

.projects-hero {
    min-height: 780px;
}

.project-hero-stack {
    --scene-x: 0deg;
    --scene-y: 0deg;
    position: relative;
    z-index: 2;
    width: min(39vw, 580px);
    height: 520px;
    margin: 0 auto;
    perspective: 1200px;
    transform: rotateX(var(--scene-x)) rotateY(var(--scene-y));
    transform-style: preserve-3d;
    transition: transform 0.35s var(--ease-out);
}

.ph-card {
    position: absolute;
    width: 67%;
    height: 72%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.19);
    box-shadow: 0 35px 70px rgba(0,0,0,0.55);
    will-change: transform;
}

.ph-one { top: 2%; left: 1%; transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), -70px) rotate(-12deg); filter: saturate(0.4) brightness(0.6); }
.ph-two { right: 0; bottom: 1%; transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 10px) rotate(10deg); filter: saturate(0.55) brightness(0.72); }
.ph-three { top: 15%; left: 17%; transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 100px) rotate(-2deg); }

.project-archive {
    padding: 90px 4vw clamp(100px, 11vw, 170px);
    background: var(--paper-bright);
}

.project-toolbar {
    display: flex;
    max-width: 1460px;
    margin: 0 auto 55px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.project-toolbar > p {
    margin: 0;
    color: rgba(9,11,13,0.5);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.project-toolbar > p strong {
    color: var(--orange);
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-button {
    padding: 10px 16px;
    color: rgba(9,11,13,0.55);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.63rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: color 0.25s, background 0.25s, border-color 0.25s;
}

.filter-button:hover,
.filter-button.is-active {
    color: var(--ink);
    background: var(--orange);
    border-color: var(--orange);
}

.project-grid {
    display: grid;
    max-width: 1460px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 28px;
}

.project-card {
    position: relative;
    min-width: 0;
    transition: opacity 0.35s, transform 0.45s var(--ease-out);
}

.project-card.is-hidden {
    display: none;
}

.project-card-image {
    aspect-ratio: 1.35 / 1;
    overflow: hidden;
    background: #ddd;
}

.project-card.tall .project-card-image {
    aspect-ratio: 0.9 / 1;
}

.project-card.wide {
    grid-column: span 2;
}

.project-card.wide .project-card-image {
    aspect-ratio: 2.1 / 1;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.72) contrast(1.03);
    transition: transform 0.85s var(--ease-out), filter 0.5s;
}

.project-card::after {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: var(--orange);
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.35s, transform 0.4s var(--ease-spring);
}

.project-card-meta {
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.project-card-meta span,
.project-card-meta p {
    margin: 0;
    color: rgba(9,11,13,0.43);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.project-card-meta p {
    color: var(--orange);
}

.project-card h2 {
    max-width: 850px;
    margin: 11px 80px 0 0;
    font-size: clamp(1.7rem, 3vw, 3.5rem);
    letter-spacing: -0.055em;
    line-height: 1.08;
}

.project-card-arrow {
    position: absolute;
    z-index: 2;
    top: 42px;
    right: 48px;
    opacity: 0;
    transform: rotate(-45deg) scale(0);
    transition: opacity 0.35s, transform 0.4s var(--ease-spring);
}

.project-card:hover .project-card-image img {
    filter: saturate(1);
    transform: scale(1.045);
}

.project-card:hover::after,
.project-card:hover .project-card-arrow {
    opacity: 1;
    transform: scale(1);
}

.contact-hero {
    min-height: 730px;
    grid-template-columns: 1.25fr 0.75fr;
}

.contact-hero-call {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 230px;
    padding: 35px;
    color: var(--ink);
    background: var(--orange);
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 28px 28px 0 rgba(217,255,67,0.95);
    transform: rotate(3deg);
    transition: transform 0.45s var(--ease-spring), background 0.35s;
}

.contact-hero-call:hover {
    background: var(--lime);
    transform: rotate(0) translateY(-8px);
}

.contact-hero-call span {
    margin-bottom: 16px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.contact-hero-call strong {
    font-size: clamp(1.65rem, 3vw, 3.2rem);
    letter-spacing: -0.06em;
    line-height: 1;
}

.contact-hero-call i {
    position: absolute;
    top: 28px;
    right: 28px;
    font-style: normal;
    font-size: 1.3rem;
}

.contact-locations {
    display: grid;
    padding: 1px 4vw 0;
    background: var(--line);
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
}

.location-card {
    min-height: 480px;
    padding: 44px 4vw;
    background: var(--paper-bright);
    transition: background 0.4s, transform 0.4s var(--ease-spring);
}

.location-card > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.location-card > p {
    margin: 80px 0 18px;
    color: rgba(9,11,13,0.44);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.location-card h2 {
    margin: 0 0 35px;
    font-size: clamp(1.4rem, 2.4vw, 2.35rem);
    letter-spacing: -0.05em;
    line-height: 1.22;
}

.location-card a {
    display: block;
    width: max-content;
    margin-top: 7px;
    color: rgba(9,11,13,0.62);
    border-bottom: 1px solid var(--line);
    font-size: 0.8rem;
    font-weight: 800;
}

.location-card:hover {
    z-index: 2;
    background: var(--white);
    transform: translateY(-8px);
}

.enquiry-section {
    display: grid;
    padding: clamp(100px, 11vw, 180px) 8vw;
    background: var(--paper);
    grid-template-columns: minmax(300px, 0.78fr) minmax(480px, 1.22fr);
    gap: 10vw;
    align-items: start;
}

.enquiry-copy {
    position: sticky;
    top: 130px;
}

.enquiry-copy h2 {
    font-size: clamp(3.2rem, 5.4vw, 6.5rem);
}

.enquiry-copy > p {
    margin-top: 30px;
}

.direct-contact {
    display: flex;
    margin-top: 45px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    flex-direction: column;
    gap: 18px;
}

.direct-contact a {
    display: flex;
    flex-direction: column;
}

.direct-contact span {
    color: rgba(9,11,13,0.4);
    font-size: 0.59rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.direct-contact strong {
    margin-top: 3px;
    letter-spacing: -0.025em;
}

.enquiry-form-wrap {
    padding: clamp(32px, 5vw, 70px);
    background: var(--ink);
    box-shadow: 24px 24px 0 var(--orange);
}

.enquiry-form {
    color: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.form-field {
    margin-bottom: 28px;
}

.form-field label {
    display: block;
    margin-bottom: 9px;
    color: rgba(255,255,255,0.5);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 0;
    color: var(--white);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.24);
    border-radius: 0;
    outline: 0;
    transition: border-color 0.25s;
}

.form-field select {
    color-scheme: dark;
}

.form-field textarea {
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--orange);
}

.button-submit {
    width: 100%;
    margin-top: 10px;
}

.form-privacy {
    margin: 16px 0 0;
    color: rgba(255,255,255,0.36);
    font-size: 0.68rem;
    text-align: center;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
}

.form-notice {
    margin-bottom: 32px;
    padding: 20px;
    color: var(--white);
    border: 1px solid var(--line-light);
}

.form-notice strong {
    display: block;
    margin-bottom: 5px;
}

.form-notice p,
.form-notice ul {
    margin: 0;
    color: rgba(255,255,255,0.64);
    font-size: 0.84rem;
}

.form-notice ul {
    padding-left: 20px;
}

.form-success {
    border-color: rgba(217,255,67,0.55);
    box-shadow: inset 4px 0 0 var(--lime);
}

.form-error {
    border-color: rgba(255,106,26,0.6);
    box-shadow: inset 4px 0 0 var(--orange);
}

.not-found-section {
    display: flex;
    min-height: 100svh;
    padding: calc(var(--header-height) + 80px) 8vw 100px;
    color: var(--white);
    background: var(--ink);
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.not-found-section > p:not(.eyebrow) {
    margin: 32px 0;
    color: rgba(255,255,255,0.56);
}

/* Scroll reveal */
.js-ready .reveal {
    opacity: 0;
    translate: 0 38px;
    transition: opacity 0.9s var(--ease-out), translate 0.9s var(--ease-out);
}

.js-ready .reveal.is-visible {
    opacity: 1;
    translate: 0 0;
}

/* Refined film-led homepage */
.preloader {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: none;
    overflow: hidden;
    color: var(--white);
    background: #050607;
    place-items: center;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s, clip-path 1s var(--ease-out);
    clip-path: inset(0 0 0 0);
}

.has-loader {
    overflow: hidden;
}

.has-loader .preloader {
    display: grid;
}

.has-loader:not(.loader-releasing) .home-hero .reveal.is-visible {
    opacity: 0;
    translate: 0 26px;
}

.loader-releasing .home-hero .reveal.is-visible {
    opacity: 1;
    translate: 0 0;
    transition-delay: 0s !important;
    transition-duration: 0.55s;
}

.preloader.is-complete {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    clip-path: inset(0 0 100% 0);
}

.preloader-grid {
    position: absolute;
    inset: 0;
    opacity: 0.17;
    background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 9vw 9vw;
    -webkit-mask-image: radial-gradient(circle, #000, transparent 70%);
    mask-image: radial-gradient(circle, #000, transparent 70%);
}

.preloader-stage {
    position: relative;
    display: grid;
    width: min(82vw, 520px);
    place-items: center;
    perspective: 900px;
}

.preloader-mark {
    position: relative;
    width: min(68vw, 340px);
    padding: 20px 24px;
    transform: rotateX(9deg) rotateY(-9deg) translateZ(30px);
    transform-style: preserve-3d;
    animation: loader-mark-float 2s ease-in-out infinite;
}

.preloader-mark::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #fff;
    border: 1px solid rgba(255,255,255,0.5);
    content: "";
    box-shadow: 0 28px 70px rgba(0,0,0,0.55);
    transform: translateZ(-1px);
}

.preloader-mark-shadow {
    position: absolute;
    inset: 14px -14px -14px 14px;
    z-index: -2;
    background: var(--orange);
    transform: translateZ(-42px);
}

.preloader-mark img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1972 / 398;
    object-fit: contain;
    filter: none;
    transform: translateZ(34px);
}

.preloader-stage > p {
    margin: 42px 0 26px;
    color: rgba(255,255,255,0.72);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.preloader-stage > p span {
    color: var(--orange);
    font-family: Georgia, serif;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
}

.preloader-track {
    position: relative;
    width: 100%;
    height: 1px;
    overflow: hidden;
    background: rgba(255,255,255,0.15);
}

.preloader-track i {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--orange), var(--lime));
    transform: scaleX(var(--loader-progress, 0));
    transform-origin: left;
    transition: transform 0.12s linear;
}

@keyframes loader-mark-float {
    0%, 100% { transform: rotateX(9deg) rotateY(-9deg) translateY(-5px) translateZ(30px); }
    50% { transform: rotateX(5deg) rotateY(-4deg) translateY(7px) translateZ(42px); }
}

.video-hero {
    grid-template-columns: minmax(350px, 0.78fr) minmax(540px, 1.22fr);
    gap: 3vw;
}

.video-hero .hero-copy {
    max-width: 690px;
}

.video-hero .hero-copy h1 {
    font-size: clamp(4rem, 6.9vw, 8.1rem);
}

.video-hero .hero-lede {
    max-width: 500px;
}

.hero-video-stage {
    --rx: 0deg;
    --ry: 0deg;
    position: relative;
    z-index: 2;
    width: min(56vw, 920px);
    aspect-ratio: 16 / 10;
    margin-left: auto;
    perspective: 1200px;
    transform: perspective(1200px) rotateX(var(--rx)) rotateY(var(--ry));
    transform-style: preserve-3d;
    transition: transform 0.22s ease-out;
}

.video-frame {
    position: absolute;
    inset: 6% 2% 5% 4%;
    overflow: hidden;
    background: #050607;
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: 0 55px 110px rgba(0,0,0,0.58);
    transform: translateZ(68px) rotateY(-5deg) rotateX(1.5deg);
    transform-style: preserve-3d;
}

.video-frame::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(110deg, rgba(255,255,255,0.12), transparent 26%, transparent 68%, rgba(255,106,26,0.12));
    content: "";
    pointer-events: none;
}

.video-frame video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transform: scale(1.035);
}

.video-sheen {
    position: absolute;
    z-index: 3;
    inset: 0;
    background: linear-gradient(100deg, rgba(9,11,13,0.32), transparent 46%, rgba(9,11,13,0.16));
    pointer-events: none;
}

.video-watch {
    position: absolute;
    z-index: 5;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    min-height: 48px;
    padding: 0 19px 0 8px;
    color: var(--ink);
    background: rgba(255,255,255,0.92);
    align-items: center;
    gap: 12px;
    border-radius: 999px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    font-size: 0.61rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.35s var(--ease-spring);
}

.video-watch i {
    display: grid;
    width: 34px;
    height: 34px;
    padding-left: 2px;
    color: var(--white);
    background: var(--orange);
    place-items: center;
    border-radius: 50%;
    font-size: 0.63rem;
    font-style: normal;
}

.video-watch:hover {
    background: var(--lime);
    transform: translateY(-3px);
}

.video-label {
    position: absolute;
    z-index: 4;
    top: 24px;
    left: 24px;
    display: flex;
    padding: 12px 15px;
    background: rgba(9,11,13,0.74);
    border: 1px solid rgba(255,255,255,0.17);
    flex-direction: column;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.video-label span {
    color: var(--orange);
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.video-label strong {
    margin-top: 2px;
    font-size: 0.82rem;
    letter-spacing: -0.02em;
}

.video-float-card {
    position: absolute;
    z-index: 6;
    bottom: -1%;
    left: clamp(90px, 14%, 140px);
    display: flex;
    width: 136px;
    height: 136px;
    color: var(--ink);
    background: var(--lime);
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 50%;
    box-shadow: 0 24px 60px rgba(0,0,0,0.42);
    transform: translateZ(145px) rotate(-9deg);
}

.video-float-card > span {
    display: inline-flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 1;
}

.number-main {
    display: inline-block;
    line-height: 1;
}

.number-suffix {
    display: inline-flex;
    height: 0.74em;
    margin-left: 0.045em;
    align-items: center;
    justify-content: center;
    align-self: center;
    font-size: 0.74em;
    letter-spacing: 0;
    line-height: 1;
    transform: translateY(-0.04em);
}

.video-float-card p {
    margin: 0;
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.25;
    text-transform: uppercase;
}

.home-project-grid {
    display: grid;
    max-width: 1460px;
    margin: 0 auto;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    perspective: 1400px;
}

.home-project-card {
    position: relative;
    min-height: 450px;
    overflow: hidden;
    background: #15181b;
    grid-column: span 6;
    transform: translateZ(0);
    transition: transform 0.55s var(--ease-out), box-shadow 0.55s;
}

.home-project-card-1,
.home-project-card-4,
.home-project-card-5 {
    grid-column: span 7;
}

.home-project-card-2,
.home-project-card-3,
.home-project-card-6 {
    grid-column: span 5;
}

.home-project-card-2,
.home-project-card-5 {
    min-height: 590px;
}

.home-project-card-1,
.home-project-card-4 {
    align-self: end;
}

.home-project-image {
    position: absolute;
    inset: 0;
}

.home-project-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.86));
    content: "";
}

.home-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.76) contrast(1.06);
    transition: transform 0.9s var(--ease-out), filter 0.55s;
}

.home-project-index {
    position: absolute;
    z-index: 2;
    top: 24px;
    left: 24px;
    display: grid;
    width: 44px;
    height: 44px;
    color: var(--white);
    background: rgba(9,11,13,0.62);
    border: 1px solid rgba(255,255,255,0.22);
    place-items: center;
    border-radius: 50%;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.home-project-copy {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 28px;
    left: 30px;
}

.home-project-copy p {
    margin: 0 0 8px;
    color: var(--orange-light);
    font-size: 0.61rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.home-project-copy h3 {
    margin: 0;
    font-size: clamp(2.25rem, 4.8vw, 5.5rem);
    letter-spacing: -0.07em;
    line-height: 0.92;
}

.home-project-open {
    position: absolute;
    z-index: 3;
    top: 23px;
    right: 23px;
    display: grid;
    width: 52px;
    height: 52px;
    color: var(--ink);
    background: var(--orange);
    place-items: center;
    border-radius: 50%;
    opacity: 0;
    transform: rotate(-45deg) scale(0.4);
    transition: opacity 0.35s, transform 0.5s var(--ease-spring), background 0.3s;
}

.home-project-card:hover {
    z-index: 3;
    box-shadow: 0 35px 80px rgba(0,0,0,0.35);
    transform: perspective(1100px) translateY(-10px) rotateX(1deg) rotateY(-1deg) translateZ(26px);
}

.home-project-card:hover .home-project-image img {
    filter: saturate(1);
    transform: scale(1.055);
}

.home-project-card:hover .home-project-open {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.home-project-card:hover .home-project-open:hover {
    background: var(--lime);
}

.legacy-section {
    position: relative;
    padding: clamp(105px, 11vw, 185px) 4vw;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 18% 22%, rgba(255,106,26,0.12), transparent 24%),
        radial-gradient(circle at 84% 68%, rgba(217,255,67,0.07), transparent 23%),
        var(--ink);
}

.legacy-section::before {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
    background-size: 9vw 9vw;
    content: "";
    -webkit-mask-image: linear-gradient(180deg, #000, transparent 88%);
    mask-image: linear-gradient(180deg, #000, transparent 88%);
}

.legacy-heading {
    position: relative;
    z-index: 2;
    display: grid;
    max-width: 1360px;
    margin: 0 auto clamp(75px, 9vw, 130px);
    grid-template-columns: 1.3fr 0.7fr;
    gap: 8vw;
    align-items: end;
}

.legacy-heading h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(3.5rem, 6.6vw, 8rem);
    font-weight: 800;
    letter-spacing: -0.075em;
    line-height: 0.88;
}

.legacy-heading h2 em {
    color: var(--orange);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.055em;
}

.legacy-heading > p {
    max-width: 430px;
    margin: 0 0 5px;
    color: rgba(255,255,255,0.53);
    line-height: 1.75;
}

.legacy-timeline {
    --timeline-progress: 0;
    position: relative;
    z-index: 2;
    max-width: 1360px;
    margin: 0 auto;
    padding: 30px 0 90px;
}

.legacy-line {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    overflow: visible;
    background: rgba(255,255,255,0.12);
    transform: translateX(-50%);
}

.legacy-line::before,
.legacy-line::after {
    position: absolute;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--ink);
    border: 2px solid rgba(255,255,255,0.34);
    border-radius: 50%;
    content: "";
    transform: translateX(-50%);
}

.legacy-line::before { top: 0; }
.legacy-line::after { bottom: 0; }

.legacy-line i {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--orange), var(--orange) 70%, var(--lime));
    box-shadow: 0 0 24px rgba(255,106,26,0.6);
    transform: scaleY(var(--timeline-progress));
    transform-origin: top;
    transition: transform 0.12s linear;
}

.legacy-event {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 570px;
    grid-template-columns: minmax(0, 1fr) 132px minmax(0, 1fr);
    align-items: center;
    perspective: 1200px;
}

.legacy-event + .legacy-event {
    margin-top: -50px;
}

.legacy-marker {
    position: relative;
    z-index: 4;
    display: grid;
    grid-column: 2;
    grid-row: 1;
    place-items: center;
}

.legacy-marker::before {
    position: absolute;
    width: 84px;
    height: 84px;
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 50%;
    content: "";
    transform: scale(0.65);
    transition: border-color 0.5s, transform 0.6s var(--ease-spring);
}

.legacy-marker span {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--ink);
    border: 3px solid rgba(255,255,255,0.43);
    border-radius: 50%;
    box-shadow: 0 0 0 8px var(--ink);
    transition: background 0.45s, border-color 0.45s, box-shadow 0.45s, transform 0.6s var(--ease-spring);
}

.legacy-card {
    position: relative;
    min-height: 430px;
    overflow: visible;
    background: #171a1d;
    transform-style: preserve-3d;
    opacity: 0.42;
    filter: saturate(0.38);
    transition: opacity 0.7s var(--ease-out), filter 0.7s, transform 0.75s var(--ease-out), box-shadow 0.7s;
}

.legacy-event-left .legacy-card {
    grid-column: 1;
    grid-row: 1;
    transform: translateX(-54px) rotateY(9deg) rotateX(1deg) translateZ(-30px);
}

.legacy-event-right .legacy-card {
    grid-column: 3;
    grid-row: 1;
    transform: translateX(54px) rotateY(-9deg) rotateX(1deg) translateZ(-30px);
}

.legacy-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #15171a;
}

.legacy-image::after {
    position: absolute;
    inset: 20% 0 0;
    background: linear-gradient(transparent, rgba(5,6,7,0.94));
    content: "";
}

.legacy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out), filter 0.65s;
}

.legacy-copy {
    position: absolute;
    z-index: 3;
    right: 32px;
    bottom: 31px;
    left: 32px;
    transform: translateZ(48px);
}

.legacy-copy > span {
    display: inline-flex;
    padding: 8px 12px;
    color: var(--ink);
    background: var(--orange);
    border-radius: 999px;
    font-family: Georgia, serif;
    font-size: 1rem;
    font-style: italic;
    font-weight: 700;
}

.legacy-copy h3 {
    max-width: 510px;
    margin: 16px 0 10px;
    font-size: clamp(1.8rem, 3.1vw, 3.35rem);
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.legacy-copy p {
    max-width: 480px;
    margin: 0;
    color: rgba(255,255,255,0.58);
    line-height: 1.65;
}

.legacy-depth {
    position: absolute;
    z-index: -2;
    inset: 16px -16px -16px 16px;
    background: var(--orange);
    opacity: 0.48;
    transform: translateZ(-55px);
    transition: opacity 0.6s, transform 0.7s var(--ease-out), background 0.6s;
}

.legacy-event-right .legacy-depth {
    inset: 16px 16px -16px -16px;
    background: #343a3e;
}

.legacy-event.is-active .legacy-card {
    opacity: 1;
    filter: saturate(0.92);
    box-shadow: 0 42px 90px rgba(0,0,0,0.44);
}

.legacy-event-left.is-active .legacy-card {
    transform: translateX(0) rotateY(3deg) rotateX(0) translateZ(30px);
}

.legacy-event-right.is-active .legacy-card {
    transform: translateX(0) rotateY(-3deg) rotateX(0) translateZ(30px);
}

.legacy-event.is-active .legacy-marker::before {
    border-color: rgba(255,106,26,0.5);
    transform: scale(1);
}

.legacy-event.is-active .legacy-marker span {
    background: var(--orange);
    border-color: var(--orange-light);
    box-shadow: 0 0 0 8px var(--ink), 0 0 35px rgba(255,106,26,0.8);
    transform: scale(1.12);
}

.legacy-event.is-active .legacy-depth {
    opacity: 0.88;
    transform: translateZ(-42px);
}

.legacy-event:hover .legacy-image img {
    transform: scale(1.055);
}

.legacy-event:hover .legacy-depth {
    background: var(--lime);
}

@media (max-width: 1180px) {
    :root { --header-height: 78px; }

    .home-hero {
        min-height: 760px;
        grid-template-columns: minmax(320px, 0.95fr) minmax(430px, 1.05fr);
    }

    .hero-copy {
        padding-left: 1vw;
    }

    .hero h1 {
        font-size: clamp(3.9rem, 7.2vw, 6.9rem);
    }

    .hero-scene {
        width: 47vw;
        height: 620px;
    }

    .service-card {
        min-height: 360px;
    }

    .client-section {
        gap: 6vw;
    }

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

    .page-hero {
        padding-right: 6vw;
        padding-left: 6vw;
    }

    .project-hero-stack {
        width: 42vw;
    }

    .service-row {
        grid-template-columns: 72px 1fr minmax(220px, 0.45fr) 60px;
    }

    .service-row-copy > span {
        max-width: 500px;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        z-index: 1;
        top: 0;
        right: 0;
        bottom: auto;
        left: 0;
        display: flex;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        min-height: 100svh;
        padding: calc(var(--header-height) + 56px) 8vw 60px;
        background: rgba(9,11,13,0.98);
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-20px);
        transition: opacity 0.35s, transform 0.45s var(--ease-out), visibility 0s linear 0.45s;
    }

    .primary-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        transition-delay: 0s;
    }

    body.menu-open .site-header {
        height: var(--header-height);
        background: var(--ink);
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .primary-nav > a:not(.nav-cta) {
        font-size: clamp(2.4rem, 9vw, 4.8rem);
        font-weight: 750;
        letter-spacing: -0.055em;
        line-height: 1;
        text-transform: none;
    }

    .nav-cta {
        margin-top: 28px;
    }

    .home-hero {
        height: auto;
        min-height: 100svh;
        padding: calc(var(--header-height) + 80px) 6vw 70px;
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 720px;
        padding: 0;
    }

    .hero h1 {
        font-size: clamp(4.4rem, 13vw, 8.5rem);
    }

    .hero-scene {
        width: 83vw;
        height: min(72vw, 650px);
        margin-top: 80px;
    }

    .scene-card-mid {
        width: 77%;
    }

    .scroll-cue {
        display: none;
    }

    .impact-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .metric {
        border-bottom: 1px solid rgba(9,11,13,0.18);
    }

    .section-heading,
    .about-preview,
    .history-preview,
    .client-section,
    .dark-feature,
    .enquiry-section {
        grid-template-columns: 1fr;
    }

    .section-heading {
        gap: 38px;
    }

    .section-heading > p {
        max-width: 600px;
    }

    .service-deck {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-panel-copy {
        grid-template-columns: 0.4fr 1fr;
    }

    .about-copy {
        max-width: 680px;
    }

    .about-image-wrap {
        width: 89%;
    }

    .history-preview {
        gap: 65px;
    }

    .history-sticky,
    .enquiry-copy {
        position: relative;
        top: auto;
        padding-left: 0;
    }

    .client-section {
        gap: 60px;
    }

    .client-intro {
        padding-left: 0;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .page-hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 90px);
        grid-template-columns: 1fr;
    }

    .page-hero-copy {
        max-width: 780px;
    }

    .page-hero-visual {
        width: min(78vw, 680px);
        margin: 40px auto 0;
        aspect-ratio: 1.15 / 1;
    }

    .manifesto-notes {
        width: 100%;
    }

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

    .leader-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 12px);
    }

    .service-sculpture,
    .project-hero-stack {
        width: min(70vw, 600px);
        margin-top: 30px;
    }

    .service-row {
        min-height: 270px;
        grid-template-columns: 65px 1fr 210px 55px;
    }

    .service-row-copy > span {
        display: none;
    }

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

    .contact-hero-call {
        width: min(580px, 85%);
        margin: 40px 0 30px auto;
    }

    .contact-locations {
        grid-template-columns: 1fr;
    }

    .location-card {
        min-height: 390px;
    }

    .enquiry-section {
        gap: 70px;
    }
}

@media (max-width: 620px) {
    :root { --shell: 90vw; }

    .brand {
        width: 158px;
        padding: 7px 9px;
        box-shadow: 6px 6px 0 rgba(255, 106, 26, 0.88), 0 10px 26px rgba(0, 0, 0, 0.2);
    }

    .home-hero {
        padding-right: 5vw;
        padding-left: 5vw;
    }

    .hero h1,
    .page-hero h1,
    .not-found-section h1 {
        font-size: clamp(3.65rem, 17.2vw, 6.2rem);
    }

    .hero-lede {
        margin-top: 26px;
        font-size: 0.95rem;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .hero-scene {
        width: 92vw;
        height: 115vw;
        margin-left: -3vw;
    }

    .scene-card-back {
        width: 70%;
        height: 40%;
    }

    .scene-card-mid {
        right: 2%;
        width: 88%;
        height: 62%;
    }

    .scene-badge {
        top: 23%;
        left: 1%;
        width: 102px;
        height: 102px;
    }

    .scene-badge strong { font-size: 1.5rem; }

    .impact-strip {
        padding: 0;
    }

    .metric {
        min-height: 148px;
        padding: 32px 6vw;
    }

    .metric strong {
        font-size: 2.6rem;
    }

    .metric > span {
        font-size: 0.57rem;
    }

    .section {
        padding-right: 5vw;
        padding-left: 5vw;
    }

    .section-heading h2,
    .project-heading h2,
    .about-copy h2,
    .history-sticky h2,
    .client-intro h2,
    .cta-copy h2,
    .dark-feature-copy h2,
    .enquiry-copy h2 {
        font-size: clamp(3rem, 13vw, 4.8rem);
    }

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

    .service-card {
        min-height: 330px;
    }

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

    .project-heading {
        display: block;
    }

    .project-heading .text-link {
        margin-top: 28px;
    }

    .project-panel {
        min-height: 120px;
        grid-template-columns: 48px 1fr 44px;
    }

    .project-panel-copy {
        display: block;
    }

    .project-panel-copy p {
        margin-bottom: 9px;
    }

    .project-panel-copy h3 {
        font-size: 2rem;
    }

    .project-open {
        width: 38px;
        height: 38px;
    }

    .about-image-wrap {
        width: 94%;
        margin-bottom: 40px;
    }

    .about-stamp {
        right: -20px;
        width: 110px;
        height: 110px;
    }

    .history-preview {
        padding-right: 5vw;
        padding-left: 5vw;
    }

    .history-item {
        grid-template-columns: 95px 1fr;
        gap: 20px;
    }

    .client-section {
        padding-right: 5vw;
        padding-left: 5vw;
    }

    .client-logo {
        min-height: 125px;
        padding: 18px;
    }

    .cta-section {
        min-height: 610px;
        padding-right: 5vw;
        padding-left: 5vw;
    }

    .cta-orbit {
        width: 125vw;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        gap: 12vw;
    }

    .footer-contact {
        grid-column: auto;
    }

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

    .page-hero {
        padding: calc(var(--header-height) + 75px) 5vw 75px;
    }

    .page-hero-visual {
        width: 95vw;
        margin-left: -2.5vw;
    }

    .page-hero-visual span {
        right: 0;
        width: 90px;
        height: 90px;
    }

    .manifesto-notes {
        margin-top: 50px;
        grid-template-columns: 1fr;
    }

    .dark-feature {
        padding-right: 5vw;
        padding-left: 5vw;
    }

    .dark-feature-image {
        margin-bottom: 45px;
    }

    .feature-stats {
        gap: 12px;
    }

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

    .leader-card,
    .leader-card:last-child {
        width: 100%;
        min-height: 530px;
        grid-column: auto;
    }

    .service-sculpture {
        width: 88vw;
    }

    .services-full {
        padding: 0 5vw;
    }

    .service-row {
        min-height: 205px;
        grid-template-columns: 45px 1fr 42px;
    }

    .service-row-image {
        display: none;
    }

    .service-row-copy {
        padding-right: 15px;
    }

    .service-row-copy h2 {
        font-size: 2.1rem;
    }

    .service-row-arrow {
        width: 38px;
        height: 38px;
    }

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

    .process-card {
        min-height: 280px;
    }

    .project-hero-stack {
        width: 90vw;
        height: 430px;
        margin-left: -3vw;
    }

    .project-archive {
        padding-right: 5vw;
        padding-left: 5vw;
    }

    .project-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .filter-group {
        width: 100%;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .project-card.wide {
        grid-column: auto;
    }

    .project-card.wide .project-card-image,
    .project-card.tall .project-card-image,
    .project-card-image {
        aspect-ratio: 1.25 / 1;
    }

    .contact-hero-call {
        width: 93%;
        min-height: 190px;
        margin-right: 4%;
        padding: 26px;
        box-shadow: 16px 16px 0 var(--lime);
    }

    .contact-locations {
        padding: 1px 5vw 0;
    }

    .location-card {
        min-height: 360px;
        padding: 38px 6vw;
    }

    .location-card > p {
        margin-top: 60px;
    }

    .enquiry-section {
        padding-right: 5vw;
        padding-left: 5vw;
    }

    .enquiry-form-wrap {
        padding: 30px 22px;
        box-shadow: 12px 12px 0 var(--orange);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 1180px) {
    .video-hero {
        grid-template-columns: minmax(330px, 0.82fr) minmax(470px, 1.18fr);
    }

    .hero-video-stage {
        width: 53vw;
    }

    .video-float-card {
        width: 112px;
        height: 112px;
    }

    .video-float-card > span {
        font-size: 1.6rem;
    }
}

@media (max-width: 900px) {
    .video-hero {
        gap: 45px;
    }

    .video-hero .hero-copy h1 {
        font-size: clamp(4.1rem, 12vw, 7.8rem);
    }

    .hero-video-stage {
        width: 88vw;
        margin: 30px auto 35px;
    }

    .home-project-grid {
        gap: 18px;
    }

    .home-project-card,
    .home-project-card-1,
    .home-project-card-2,
    .home-project-card-3,
    .home-project-card-4,
    .home-project-card-5,
    .home-project-card-6 {
        min-height: 430px;
        grid-column: span 6;
    }

    .legacy-heading {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .legacy-heading > p {
        max-width: 560px;
    }

    .legacy-event {
        min-height: 510px;
        grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1fr);
    }

    .legacy-event + .legacy-event {
        margin-top: -20px;
    }

    .legacy-card {
        min-height: 390px;
    }

    .legacy-copy {
        right: 24px;
        bottom: 24px;
        left: 24px;
    }
}

@media (max-width: 620px) {
    .preloader-stage {
        width: 82vw;
    }

    .preloader-mark {
        width: 68vw;
        padding: 16px 18px;
    }

    .preloader-grid {
        background-size: 18vw 18vw;
    }

    .video-hero .hero-copy h1 {
        font-size: clamp(3.75rem, 16.7vw, 6rem);
    }

    .hero-video-stage {
        width: 94vw;
        aspect-ratio: 16 / 11;
        margin-left: -2vw;
    }

    .video-frame {
        inset: 6% 2% 7% 3%;
        transform: translateZ(42px) rotateY(-3deg) rotateX(1deg);
    }

    .video-label {
        top: 14px;
        left: 14px;
        padding: 9px 11px;
    }

    .video-watch {
        right: 13px;
        bottom: 13px;
        min-height: 42px;
        padding-right: 13px;
    }

    .video-watch i {
        width: 30px;
        height: 30px;
    }

    .video-float-card {
        bottom: -10%;
        left: 1%;
        width: 88px;
        height: 88px;
    }

    .video-float-card > span {
        font-size: 1.35rem;
    }

    .video-float-card p {
        font-size: 0.43rem;
    }

    .home-project-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .home-project-card,
    .home-project-card-1,
    .home-project-card-2,
    .home-project-card-3,
    .home-project-card-4,
    .home-project-card-5,
    .home-project-card-6 {
        min-height: 410px;
        grid-column: auto;
    }

    .home-project-copy h3 {
        font-size: 2.65rem;
    }

    .home-project-open {
        opacity: 1;
        transform: scale(1);
    }

    .legacy-section {
        padding-right: 5vw;
        padding-left: 5vw;
    }

    .legacy-heading h2 {
        font-size: clamp(3.2rem, 13.5vw, 5.4rem);
    }

    .legacy-timeline {
        padding-left: 0;
    }

    .legacy-line {
        left: 21px;
    }

    .legacy-event,
    .legacy-event-left,
    .legacy-event-right {
        min-height: 500px;
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 18px;
    }

    .legacy-event + .legacy-event {
        margin-top: 10px;
    }

    .legacy-marker {
        grid-column: 1;
        grid-row: 1;
    }

    .legacy-marker::before {
        width: 58px;
        height: 58px;
    }

    .legacy-card,
    .legacy-event-left .legacy-card,
    .legacy-event-right .legacy-card {
        min-height: 425px;
        grid-column: 2;
        grid-row: 1;
        transform: translateX(30px) rotateY(-7deg) translateZ(-20px);
    }

    .legacy-event-left.is-active .legacy-card,
    .legacy-event-right.is-active .legacy-card {
        transform: translateX(0) rotateY(-1deg) translateZ(20px);
    }

    .legacy-depth,
    .legacy-event-right .legacy-depth {
        inset: 12px -12px -12px 12px;
    }

    .legacy-copy h3 {
        font-size: 2rem;
    }

    .legacy-copy p {
        font-size: 0.86rem;
    }
}

/* Glass surfaces and pointer-responsive interaction layer */
.button,
.nav-cta,
.text-link {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.3);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
    backdrop-filter: blur(18px) saturate(1.25);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.48),
        inset 0 -1px 0 rgba(9,11,13,0.12),
        0 16px 42px rgba(0,0,0,0.16);
}

.button::before,
.nav-cta::before,
.text-link::before {
    position: absolute;
    z-index: 2;
    top: -80%;
    bottom: -80%;
    left: -48%;
    width: 34%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
    content: "";
    pointer-events: none;
    transform: skewX(-20deg) translateX(-220%);
    transition: transform 0.75s var(--ease-out);
}

.button:hover::before,
.nav-cta:hover::before,
.text-link:hover::before {
    transform: skewX(-20deg) translateX(620%);
}

.button-primary,
.nav-cta {
    background: linear-gradient(135deg, rgba(255,159,94,0.96), rgba(255,106,26,0.82));
}

.button-primary:hover,
.nav-cta:hover {
    background: linear-gradient(135deg, rgba(233,255,139,0.97), rgba(217,255,67,0.84));
}

.button-dark {
    background: linear-gradient(135deg, rgba(38,43,48,0.88), rgba(9,11,13,0.76));
}

.text-link {
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045));
    border-color: rgba(255,255,255,0.2);
    border-radius: 999px;
}

.video-hero .hero-copy::before {
    position: absolute;
    z-index: -1;
    inset: -34px -28px -36px -34px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.095), rgba(255,255,255,0.025)),
        radial-gradient(circle at 14% 10%, rgba(255,106,26,0.12), transparent 48%);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 32px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 34px 90px rgba(0,0,0,0.22);
    content: "";
    -webkit-backdrop-filter: blur(22px) saturate(1.12);
    backdrop-filter: blur(22px) saturate(1.12);
}

.video-frame {
    background: rgba(5,6,7,0.65);
    border-color: rgba(255,255,255,0.32);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.16),
        0 55px 110px rgba(0,0,0,0.58),
        0 0 60px rgba(255,106,26,0.1);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.impact-strip {
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 12px;
}

.metric {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,0.23), rgba(255,255,255,0.08));
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 22px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 20px 50px rgba(89,37,0,0.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    backdrop-filter: blur(18px) saturate(1.2);
    transition: transform 0.4s var(--ease-spring), background 0.4s, box-shadow 0.4s;
}

.metric:last-child {
    border-right: 1px solid rgba(255,255,255,0.28);
}

.metric:hover {
    z-index: 2;
    background: linear-gradient(145deg, rgba(255,255,255,0.34), rgba(255,255,255,0.12));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 26px 64px rgba(89,37,0,0.18);
    transform: translateY(-6px) rotateX(2deg);
}

.section-heading,
.legacy-heading {
    padding: clamp(28px, 4vw, 58px);
    border-radius: 30px;
}

.section-heading {
    background: linear-gradient(135deg, rgba(255,255,255,0.66), rgba(255,255,255,0.3));
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 30px 80px rgba(9,11,13,0.08);
    -webkit-backdrop-filter: blur(24px) saturate(1.15);
    backdrop-filter: blur(24px) saturate(1.15);
}

.legacy-heading {
    background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.13);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.13), 0 35px 90px rgba(0,0,0,0.2);
    -webkit-backdrop-filter: blur(22px) saturate(1.1);
    backdrop-filter: blur(22px) saturate(1.1);
}

.service-card,
.client-logo,
.process-card,
.location-card {
    background-image: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,255,255,0.5));
    border: 1px solid rgba(255,255,255,0.78);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.95);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
    backdrop-filter: blur(18px) saturate(1.12);
}

.home-project-copy {
    padding: 20px 22px;
    background: linear-gradient(135deg, rgba(9,11,13,0.58), rgba(9,11,13,0.24));
    border: 1px solid rgba(255,255,255,0.17);
    border-radius: 20px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.13), 0 24px 55px rgba(0,0,0,0.24);
    -webkit-backdrop-filter: blur(20px) saturate(1.18);
    backdrop-filter: blur(20px) saturate(1.18);
}

.enquiry-form-wrap {
    background: linear-gradient(145deg, rgba(26,30,34,0.94), rgba(9,11,13,0.84));
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 24px 24px 0 var(--orange), 0 40px 90px rgba(0,0,0,0.18);
    -webkit-backdrop-filter: blur(24px) saturate(1.15);
    backdrop-filter: blur(24px) saturate(1.15);
}

.pointer-glow,
.cursor-ring,
.cursor-core {
    position: fixed;
    z-index: 10020;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    will-change: transform;
}

.pointer-glow {
    z-index: 9998;
    width: 430px;
    height: 430px;
    margin: -215px 0 0 -215px;
    background: radial-gradient(circle, rgba(255,106,26,0.14), rgba(217,255,67,0.045) 31%, transparent 68%);
    border-radius: 50%;
    filter: blur(8px);
    mix-blend-mode: screen;
    transition: opacity 0.35s;
}

.cursor-ring {
    width: 42px;
    height: 42px;
    margin: -21px 0 0 -21px;
    border: 1px solid rgba(255,143,71,0.78);
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(255,106,26,0.3), inset 0 0 12px rgba(255,255,255,0.08);
    transition: width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), margin 0.3s var(--ease-spring), background 0.3s, border-color 0.3s, opacity 0.25s;
}

.cursor-ring::after {
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--lime);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(217,255,67,0.9);
    content: "";
    transform: translateX(-50%);
    animation: pointer-orbit 2.2s linear infinite;
    transform-origin: 3px 24px;
}

.cursor-core {
    width: 7px;
    height: 7px;
    margin: -3.5px 0 0 -3.5px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(255,106,26,0.9);
    transition: width 0.25s, height 0.25s, margin 0.25s, background 0.25s, opacity 0.2s;
}

.pointer-glow.is-visible { opacity: 1; }
.cursor-ring.is-visible,
.cursor-core.is-visible { opacity: 1; }

.cursor-ring.is-active {
    width: 66px;
    height: 66px;
    margin: -33px 0 0 -33px;
    background: rgba(255,106,26,0.1);
    border-color: rgba(217,255,67,0.82);
}

.cursor-core.is-active {
    width: 11px;
    height: 11px;
    margin: -5.5px 0 0 -5.5px;
    background: var(--lime);
}

.cursor-ring.is-hidden,
.cursor-core.is-hidden {
    opacity: 0;
}

@keyframes pointer-orbit {
    to { transform: translateX(-50%) rotate(360deg); }
}

.pointer-fx-enabled body,
.pointer-fx-enabled a,
.pointer-fx-enabled button {
    cursor: none;
}

.pointer-fx-enabled input,
.pointer-fx-enabled textarea,
.pointer-fx-enabled select {
    cursor: auto;
}

.is-magnetic {
    --magnetic-x: 0px;
    --magnetic-y: 0px;
    will-change: transform;
}

.pointer-fx-enabled .is-magnetic {
    transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
}

.pointer-fx-enabled .is-magnetic:hover {
    transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) - 3px), 0) scale(1.01);
}

@media (max-width: 900px) {
    .video-hero .hero-copy::before {
        inset: -26px -3vw -28px;
        border-radius: 24px;
    }

    .impact-strip {
        gap: 8px;
    }

    .section-heading,
    .legacy-heading {
        padding: 28px;
        border-radius: 24px;
    }
}

@media (max-width: 620px) {
    .text-link {
        padding: 12px 16px;
    }

    .metric {
        border-radius: 16px;
    }

    .home-project-copy {
        right: 18px;
        bottom: 18px;
        left: 18px;
        padding: 17px;
        border-radius: 16px;
    }
}

/* Responsive hardening */
main,
section,
article,
form,
.hero-copy,
.page-hero-copy,
.section-heading > *,
.footer-top > * {
    min-width: 0;
}

video,
iframe,
input,
select,
textarea {
    max-width: 100%;
}

h1,
h2,
h3,
p,
a,
strong {
    overflow-wrap: break-word;
}

@media (max-width: 900px) {
    .video-hero {
        grid-template-columns: minmax(0, 1fr);
        align-content: center;
    }

    .hero-video-stage {
        max-width: 100%;
    }

    .primary-nav {
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .primary-nav > a,
    .menu-toggle,
    .button,
    .filter-button {
        min-height: 44px;
    }
}

@media (max-width: 620px) {
    :root {
        --header-height: 74px;
    }

    .nav-shell {
        width: 90vw;
    }

    .video-hero {
        gap: 24px;
        padding-top: calc(var(--header-height) + 58px);
        padding-bottom: 88px;
    }

    .video-hero .hero-copy {
        width: 100%;
    }

    .page-hero-visual {
        width: min(82vw, 680px);
        margin-right: auto;
        margin-left: auto;
    }

    .page-hero-visual span {
        right: 2%;
    }

    .hero-video-stage {
        width: 100%;
        margin: 22px auto 42px;
        aspect-ratio: 16 / 10;
    }

    .video-frame {
        inset: 4% 1.5% 5%;
        transform: translateZ(28px) rotateY(-2deg) rotateX(0.75deg);
    }

    .video-float-card {
        bottom: -18px;
        left: 10px;
    }

    .impact-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metric {
        min-width: 0;
        padding-right: 5vw;
        padding-left: 5vw;
    }

    .section-heading,
    .legacy-heading {
        padding: 24px 20px;
    }

    .footer-nav,
    .filter-group {
        flex-wrap: wrap;
    }

    .footer-contact strong,
    .contact-hero-call strong {
        overflow-wrap: anywhere;
    }

    .service-row {
        grid-template-columns: 38px minmax(0, 1fr) 38px;
        column-gap: 10px;
    }

    .service-row-copy {
        min-width: 0;
        padding-right: 4px;
    }

    .service-row-copy h2 {
        font-size: clamp(1.6rem, 7vw, 2.1rem);
        overflow-wrap: anywhere;
    }

    .enquiry-form input,
    .enquiry-form select,
    .enquiry-form textarea,
    .button-submit {
        width: 100%;
    }

    .form-field {
        min-width: 0;
    }
}

@media (hover: none), (pointer: coarse) {
    .page-hero-visual {
        --rx: 0deg !important;
        --ry: 0deg !important;
    }
}

@media (max-width: 420px) {
    :root {
        --shell: 88vw;
    }

    .brand {
        width: 142px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .menu-toggle span:not(.sr-only) {
        left: 12px;
    }

    .hero h1,
    .page-hero h1,
    .not-found-section h1 {
        font-size: clamp(3.05rem, 16.2vw, 4.25rem);
    }

    .hero-actions,
    .hero-actions .button,
    .hero-actions .text-link {
        width: 100%;
    }

    .hero-actions .button,
    .hero-actions .text-link {
        justify-content: space-between;
    }

    .metric {
        min-height: 132px;
    }

    .metric strong {
        font-size: 2.25rem;
    }

    .metric > span {
        letter-spacing: 0.07em;
    }

    .section,
    .history-preview,
    .client-section,
    .legacy-section,
    .project-archive,
    .enquiry-section {
        padding-right: 6vw;
        padding-left: 6vw;
    }

    .section-heading h2,
    .project-heading h2,
    .about-copy h2,
    .history-sticky h2,
    .client-intro h2,
    .cta-copy h2,
    .dark-feature-copy h2,
    .enquiry-copy h2 {
        font-size: clamp(2.65rem, 12.5vw, 3.7rem);
    }

    .video-float-card {
        width: 82px;
        height: 82px;
    }

    .home-project-card,
    .home-project-card-1,
    .home-project-card-2,
    .home-project-card-3,
    .home-project-card-4,
    .home-project-card-5,
    .home-project-card-6 {
        min-height: 360px;
    }

    .home-project-copy h3 {
        font-size: 2.2rem;
    }

    .legacy-event,
    .legacy-event-left,
    .legacy-event-right {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 13px;
    }

    .legacy-marker::before {
        width: 50px;
        height: 50px;
    }

    .legacy-card,
    .legacy-event-left .legacy-card,
    .legacy-event-right .legacy-card {
        min-height: 390px;
    }

    .project-hero-stack {
        height: 350px;
    }

    .contact-hero-call {
        width: calc(100% - 14px);
        margin-right: 14px;
        padding: 23px 20px;
        box-shadow: 12px 12px 0 var(--lime);
    }

    .location-card {
        min-height: 330px;
        padding: 32px 24px;
    }

    .enquiry-form-wrap {
        padding: 26px 18px;
        box-shadow: 8px 8px 0 var(--orange);
    }
}

@media (max-width: 900px) and (max-height: 600px) {
    .primary-nav {
        padding-top: 90px;
        padding-bottom: 28px;
        justify-content: flex-start;
    }

    .primary-nav > a:not(.nav-cta) {
        font-size: clamp(2rem, 8vh, 3.2rem);
    }

    .nav-cta {
        margin-top: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
    .marquee-track { animation: none; }
    .js-ready .reveal { opacity: 1; translate: none; }
}
