:root {
    --f-bg: #f2f0eb;
    --f-surface: #ffffff;
    --f-ink: #0b0c0f;
    --f-muted: #6f706f;
    --f-line: rgba(11, 12, 15, .16);
    --f-accent: #d7ff37;
    --f-radius: clamp(18px, 2vw, 32px);
    --f-space: clamp(72px, 10vw, 150px);
    --f-display: clamp(3.75rem, 9.4vw, 10rem);
    --f-display-small: clamp(3.15rem, 7.4vw, 8rem);
    --f-ease: cubic-bezier(.16, 1, .3, 1);
    --f-shadow: 0 24px 70px rgba(0, 0, 0, .12);
}

html[data-theme="dark"] {
    --f-bg: #0b0c0f;
    --f-surface: #15161a;
    --f-ink: #f5f3ed;
    --f-muted: #b5b4b0;
    --f-line: rgba(255, 255, 255, .17);
    --f-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

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

body.phase4f-page,
body:has(.phase4f-page) {
    background: var(--f-bg);
    color: var(--f-ink);
    overflow-x: clip;
}

body.motion-menu-open {
    overflow: hidden;
}

.phase4f-page .container,
.motion-header .container,
.motion-footer .container {
    width: min(100% - clamp(28px, 5vw, 96px), 1540px);
    max-width: none;
}

.phase4f-page img,
.phase4f-page video {
    display: block;
    max-width: 100%;
}

.phase4f-page .section {
    padding-block: var(--f-space);
}

.phase4f-page .muted-section {
    background: color-mix(in srgb, var(--f-surface) 76%, var(--f-bg));
}

.phase4f-page .section-dark,
.section-dark {
    background: #0b0c0f;
    color: #f7f5ef;
}

.motion-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: transparent;
    border: 0;
    transition: background .35s ease, color .35s ease, backdrop-filter .35s ease;
}

.motion-header.is-scrolled,
body.motion-menu-open .motion-header {
    background: color-mix(in srgb, var(--f-bg) 84%, transparent);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.motion-header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.motion-brand {
    position: relative;
    z-index: 103;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    transition: transform .5s var(--f-ease);
}

.motion-brand:hover {
    transform: rotate(-8deg) scale(1.05);
}

.motion-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.motion-header-actions {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 34px);
    position: relative;
    z-index: 103;
}

.motion-header-link {
    color: var(--f-ink);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    position: relative;
}

.motion-header-link::after {
    content: "";
    position: absolute;
    inset: auto 0 -5px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s var(--f-ease);
}

.motion-header-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.theme-toggle,
.motion-menu-toggle {
    border: 1px solid var(--f-line);
    background: color-mix(in srgb, var(--f-surface) 75%, transparent);
    color: var(--f-ink);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform .35s var(--f-ease), background .35s ease;
}

.theme-toggle:hover,
.motion-menu-toggle:hover {
    transform: scale(1.08);
    background: var(--f-accent);
    color: #0b0c0f;
}

.motion-menu-toggle {
    width: 54px;
    height: 54px;
    padding: 0;
    gap: 6px;
    align-content: center;
}

.motion-menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    margin-inline: auto;
    transition: transform .45s var(--f-ease);
}

.motion-menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
}

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

.motion-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 101;
    background: var(--f-bg);
    color: var(--f-ink);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-2%);
    transition:
        opacity .5s var(--f-ease),
        transform .65s var(--f-ease),
        visibility 0s linear .65s;
    overflow-y: auto;
    padding: 130px 0 50px;
}

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

.motion-menu-grid {
    min-height: calc(100vh - 180px);
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(220px, .65fr) minmax(220px, .55fr);
    gap: clamp(36px, 7vw, 130px);
    align-items: end;
}

.motion-menu-primary {
    display: grid;
    align-content: end;
}

.motion-menu-primary a {
    color: var(--f-ink);
    text-decoration: none;
    display: grid;
    grid-template-columns: 45px 1fr;
    align-items: baseline;
    font-size: clamp(2.8rem, 6.2vw, 7.2rem);
    line-height: .92;
    letter-spacing: -.07em;
    padding: .08em 0;
    transition: transform .4s var(--f-ease), opacity .3s ease;
}

.motion-menu-primary:hover a {
    opacity: .34;
}

.motion-menu-primary a:hover {
    opacity: 1;
    transform: translateX(14px);
}

.motion-menu-primary a span {
    font-size: .72rem;
    letter-spacing: .05em;
    opacity: .5;
}

.motion-menu-secondary,
.motion-menu-contact {
    display: grid;
    gap: 12px;
    align-content: end;
    padding-bottom: 12px;
}

.motion-menu-secondary a,
.motion-menu-contact a {
    color: var(--f-ink);
    text-decoration: none;
    font-weight: 650;
}

.motion-menu-contact p {
    color: var(--f-muted);
    line-height: 1.6;
}

.f-hero {
    min-height: 100svh;
    padding-top: 125px;
    display: flex;
    align-items: stretch;
    position: relative;
}

.f-hero-inner {
    display: grid;
    align-content: center;
    min-height: calc(100svh - 125px);
    position: relative;
    padding-bottom: 54px;
}

.f-hero-copy {
    position: relative;
    z-index: 4;
    width: min(1040px, 84%);
}

.f-display,
.f-display-small,
.f-section-title {
    margin: 0;
    color: var(--f-ink);
    font-weight: 650;
    letter-spacing: -.075em;
    text-wrap: balance;
}

.f-display {
    font-size: var(--f-display);
    line-height: .86;
    max-width: 10.5ch;
}

.f-display-small {
    font-size: var(--f-display-small);
    line-height: .91;
    max-width: 12ch;
}

.f-section-title {
    font-size: clamp(2.6rem, 5.8vw, 6.6rem);
    line-height: .94;
}

.f-word-window {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--f-ink);
    display: inline-block;
    min-width: 5.4ch;
}

.f-word-window b {
    display: inline-block;
    font-weight: inherit;
    transition: transform .45s var(--f-ease), opacity .25s ease;
}

.f-word-window b.is-changing {
    transform: translateY(35%);
    opacity: 0;
}

.f-hero-lead,
.f-page-lead {
    max-width: 700px;
    font-size: clamp(1.15rem, 1.65vw, 1.65rem);
    line-height: 1.45;
    color: var(--f-muted);
    margin: clamp(28px, 4vw, 54px) 0 0;
}

.f-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 34px;
}

.f-text-link {
    color: inherit;
    font-weight: 750;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.f-text-link span {
    transition: transform .35s var(--f-ease);
}

.f-text-link:hover span {
    transform: translate(5px, -5px);
}

.f-hero-orbit {
    position: absolute;
    z-index: 2;
    inset: 8% 0 4% 48%;
    pointer-events: none;
}

.f-orbit-card {
    position: absolute;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    background: var(--f-surface);
    box-shadow: var(--f-shadow);
    will-change: transform;
}

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

.f-orbit-1 { width: 34%; height: 35%; right: 4%; top: 1%; transform: rotate(4deg); }
.f-orbit-2 { width: 29%; height: 29%; left: 4%; top: 10%; transform: rotate(-5deg); }
.f-orbit-3 { width: 30%; height: 34%; right: 16%; bottom: 2%; transform: rotate(-3deg); }
.f-orbit-4 { width: 25%; height: 23%; left: 1%; bottom: 18%; transform: rotate(5deg); }
.f-orbit-5 { width: 20%; height: 21%; left: 34%; bottom: 2%; transform: rotate(2deg); }
.f-orbit-6 { width: 21%; height: 22%; right: 0; top: 43%; transform: rotate(7deg); }

.f-hero-meta {
    position: absolute;
    inset: auto 0 24px;
    display: flex;
    gap: 28px;
    color: var(--f-muted);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.f-marquee {
    overflow: hidden;
    border-block: 1px solid var(--f-line);
    background: var(--f-accent);
    color: #0b0c0f;
    padding: 18px 0;
}

.f-marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 28px;
    animation: f-marquee 28s linear infinite;
    font-size: clamp(1.15rem, 2vw, 2rem);
    font-weight: 750;
    white-space: nowrap;
}

.f-marquee-track i {
    font-style: normal;
    font-size: .55em;
}

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

.f-intro-grid,
.f-editorial-grid {
    display: grid;
    grid-template-columns: minmax(150px, .38fr) minmax(0, 1fr);
    gap: clamp(38px, 8vw, 150px);
}

.f-large-copy {
    font-size: clamp(1.3rem, 2.2vw, 2.25rem);
    line-height: 1.38;
    color: var(--f-muted);
    max-width: 900px;
    margin: 40px 0 0;
}

.f-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: clamp(42px, 6vw, 86px);
}

.f-section-head > div {
    max-width: 900px;
}

.f-section-head h2 {
    font-size: clamp(2.5rem, 5.2vw, 6rem);
    line-height: .95;
    letter-spacing: -.065em;
    margin: 8px 0 0;
    color: var(--f-ink);
}

.f-section-head.light h2,
.section-dark .f-section-head h2 {
    color: #f7f5ef;
}

.f-section-head.light .f-text-link,
.section-dark .f-text-link {
    color: #f7f5ef;
}

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

.f-service-row {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 50px;
    gap: 24px;
    align-items: center;
    padding: clamp(24px, 4vw, 54px) 0;
    border-bottom: 1px solid var(--f-line);
    color: var(--f-ink);
    text-decoration: none;
    transition: padding .45s var(--f-ease), background .3s ease;
}

.f-service-row:hover {
    padding-inline: clamp(12px, 2.5vw, 38px);
    background: var(--f-accent);
    color: #0b0c0f;
}

.f-service-index {
    color: var(--f-muted);
    font-size: .78rem;
    letter-spacing: .08em;
}

.f-service-row h3 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 3.8rem);
    letter-spacing: -.05em;
}

.f-service-row p {
    margin: 8px 0 0;
    color: var(--f-muted);
    max-width: 720px;
}

.f-service-row i {
    font-style: normal;
    font-size: 2rem;
    transition: transform .35s var(--f-ease);
}

.f-service-row:hover i {
    transform: translate(6px, -6px);
}

.f-rail-shell {
    overflow: hidden;
}

.f-rail-controls {
    display: flex;
    justify-content: end;
    gap: 10px;
    margin-bottom: 20px;
}

.f-rail-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.f-media-rail {
    display: flex;
    gap: clamp(18px, 2.4vw, 38px);
    overflow-x: auto;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    padding: 0 max(24px, calc((100vw - min(calc(100vw - 96px), 1540px)) / 2)) 30px;
    cursor: grab;
}

.f-media-rail::-webkit-scrollbar { display: none; }
.f-media-rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.f-rail-card {
    flex: 0 0 min(68vw, 920px);
    margin: 0;
    scroll-snap-align: center;
}

.f-rail-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--f-radius);
}

.f-rail-card figcaption {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 14px;
    color: rgba(255,255,255,.72);
}

.f-rail-card figcaption strong {
    color: #fff;
}

.f-project-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(26px, 4vw, 64px) clamp(18px, 3vw, 46px);
}

.f-project-card {
    grid-column: span 6;
}

.f-project-card.is-wide {
    grid-column: span 8;
}

.f-project-card:nth-child(4n + 2):not(.is-wide) {
    margin-top: clamp(0px, 7vw, 110px);
}

.f-project-card a {
    color: var(--f-ink);
    text-decoration: none;
}

.f-project-media {
    position: relative;
    overflow: hidden;
    border-radius: var(--f-radius);
    background: var(--f-surface);
}

.f-project-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .8s var(--f-ease), filter .5s ease;
}

.f-project-card.is-wide .f-project-media img {
    aspect-ratio: 16 / 10;
}

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

.f-project-arrow {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    background: var(--f-accent);
    color: #0b0c0f;
    border-radius: 50%;
    transform: translateY(-90px) rotate(-20deg);
    transition: transform .5s var(--f-ease);
}

.f-project-card:hover .f-project-arrow {
    transform: translateY(0) rotate(0);
}

.f-project-caption {
    padding-top: 18px;
}

.f-project-caption > span {
    color: var(--f-muted);
    text-transform: uppercase;
    font-size: .72rem;
    letter-spacing: .08em;
}

.f-project-caption h2,
.f-project-caption h3 {
    margin: 7px 0 2px;
    font-size: clamp(1.5rem, 2.5vw, 3rem);
    letter-spacing: -.045em;
}

.f-project-caption p {
    color: var(--f-muted);
    margin: 0;
}

.f-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(14px, 2.2vw, 34px);
    align-items: start;
    margin-top: clamp(60px, 9vw, 130px);
}

.f-mosaic-item {
    margin: 0;
    grid-column: span 4;
}

.f-mosaic-item-1,
.f-mosaic-item-6 {
    grid-column: span 7;
}

.f-mosaic-item-2,
.f-mosaic-item-5 {
    grid-column: span 5;
    margin-top: clamp(20px, 8vw, 130px);
}

.f-mosaic-item-3 {
    grid-column: 2 / span 4;
}

.f-mosaic-item-4 {
    grid-column: 7 / span 5;
}

.f-mosaic-item img {
    width: 100%;
    aspect-ratio: 1 / .82;
    object-fit: cover;
    border-radius: var(--f-radius);
}

.f-mosaic-item figcaption {
    margin-top: 10px;
    color: var(--f-muted);
    font-size: .82rem;
    text-transform: capitalize;
}

.f-video-grid {
    display: grid;
    grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr);
    gap: clamp(40px, 8vw, 140px);
    align-items: center;
}

.f-video-grid h2 {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 5.8rem);
    line-height: .95;
    letter-spacing: -.06em;
}

.f-video-grid p {
    color: rgba(255,255,255,.68);
    font-size: 1.15rem;
    line-height: 1.6;
}

.f-video-frame {
    border-radius: var(--f-radius);
    overflow: hidden;
    background: #1c1d21;
}

.f-video-frame video {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.f-review-summary {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 38px;
}

.f-review-summary strong {
    font-size: clamp(2.2rem, 5vw, 5rem);
    letter-spacing: -.06em;
}

.f-review-summary span,
.f-stars {
    color: #f6b900;
    letter-spacing: .08em;
}

.f-review-summary p {
    color: var(--f-muted);
}

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

.f-review-card {
    background: var(--f-surface);
    border: 1px solid var(--f-line);
    border-radius: var(--f-radius);
    padding: clamp(24px, 3vw, 42px);
    display: grid;
    gap: 30px;
}

.f-review-card blockquote {
    margin: 0;
    font-size: clamp(1.05rem, 1.45vw, 1.35rem);
    line-height: 1.5;
}

.f-review-card footer {
    display: grid;
    gap: 4px;
    color: var(--f-muted);
    font-size: .9rem;
}

.f-review-card footer strong {
    color: var(--f-ink);
}

.f-review-placeholder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: clamp(28px, 5vw, 70px);
    background: var(--f-surface);
    border: 1px solid var(--f-line);
    border-radius: var(--f-radius);
}

.f-review-placeholder > div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 20px;
    max-width: 760px;
}

.f-review-placeholder p {
    grid-column: 2;
    margin: 0;
    color: var(--f-muted);
}

.f-google-g {
    grid-row: span 2;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    background: #fff;
    color: #4285f4;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.f-google-link {
    color: var(--f-ink);
    font-weight: 700;
    text-decoration: none;
}

.f-google-ads-card {
    background: var(--f-accent);
    color: #0b0c0f;
    border-radius: var(--f-radius);
    padding: clamp(30px, 6vw, 92px);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, .65fr);
    gap: clamp(40px, 8vw, 130px);
    align-items: end;
}

.f-google-ads-card h2 {
    color: #0b0c0f;
    font-size: clamp(2.6rem, 5.7vw, 6.7rem);
    line-height: .92;
    letter-spacing: -.07em;
    margin: 10px 0 0;
}

.f-google-ads-card p {
    font-size: 1.15rem;
    line-height: 1.6;
}

.f-page-hero {
    padding: clamp(170px, 22vh, 260px) 0 clamp(80px, 12vw, 170px);
}

.f-page-hero .f-page-lead {
    max-width: 850px;
}

.f-service-catalogue {
    padding-top: 0 !important;
}

.f-catalogue-row {
    border-top: 1px solid var(--f-line);
}

.f-catalogue-row:last-child {
    border-bottom: 1px solid var(--f-line);
}

.f-catalogue-link {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) minmax(170px, 30%) 42px;
    align-items: center;
    gap: 28px;
    min-height: clamp(150px, 18vw, 260px);
    color: var(--f-ink);
    text-decoration: none;
}

.f-catalogue-copy p {
    color: var(--f-muted);
    margin: 0 0 8px;
}

.f-catalogue-copy h2 {
    font-size: clamp(1.9rem, 4vw, 5rem);
    line-height: .95;
    letter-spacing: -.06em;
    margin: 0;
}

.f-catalogue-copy > span {
    display: block;
    max-width: 680px;
    color: var(--f-muted);
    margin-top: 14px;
}

.f-catalogue-media {
    height: clamp(110px, 14vw, 200px);
    border-radius: 18px;
    overflow: hidden;
    opacity: .72;
    transform: scale(.9) rotate(2deg);
    transition: transform .55s var(--f-ease), opacity .4s ease;
}

.f-catalogue-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.f-catalogue-row:hover .f-catalogue-media {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.f-catalogue-link > i {
    font-style: normal;
    font-size: 2rem;
}

.f-catalogue-placeholder {
    height: 100%;
    display: grid;
    place-items: center;
    background: var(--f-surface);
    font-size: 4rem;
    color: var(--f-muted);
}

.f-service-hero {
    padding: clamp(160px, 20vh, 230px) 0 clamp(70px, 10vw, 140px);
}

.f-service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
    gap: clamp(50px, 8vw, 130px);
    align-items: center;
}

.f-service-hero-media {
    border-radius: var(--f-radius);
    overflow: hidden;
    background: var(--f-surface);
    box-shadow: var(--f-shadow);
}

.f-service-hero-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.f-editorial-grid > aside {
    align-self: start;
    position: sticky;
    top: 130px;
}

.f-sticky-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
    color: var(--f-muted);
}

.f-sticky-list li {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--f-line);
}

.f-rich-content {
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    line-height: 1.75;
    color: var(--f-muted);
}

.f-rich-content h2,
.f-rich-content h3 {
    color: var(--f-ink);
    letter-spacing: -.05em;
    line-height: 1;
    margin: 2.5em 0 .7em;
}

.f-rich-content h2:first-child,
.f-rich-content h3:first-child {
    margin-top: 0;
}

.f-rich-content h2 {
    font-size: clamp(2.2rem, 4vw, 4.8rem);
}

.f-rich-content h3 {
    font-size: clamp(1.6rem, 2.5vw, 3rem);
}

.f-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.18);
}

.f-process-grid article {
    background: #0b0c0f;
    padding: clamp(24px, 3vw, 44px);
    min-height: 300px;
}

.f-process-grid article > span {
    color: var(--f-accent);
}

.f-process-grid h3 {
    font-size: 2rem;
    margin: 70px 0 14px;
}

.f-process-grid p {
    color: rgba(255,255,255,.65);
    line-height: 1.6;
}

.f-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.f-filter-bar button {
    border: 1px solid var(--f-line);
    background: transparent;
    color: var(--f-ink);
    border-radius: 999px;
    padding: 10px 17px;
    cursor: pointer;
    text-transform: capitalize;
}

.f-filter-bar button.active,
.f-filter-bar button:hover {
    background: var(--f-ink);
    color: var(--f-bg);
}

.f-service-media-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(16px, 2vw, 32px);
}

.f-service-media-card {
    grid-column: span 4;
    margin: 0;
}

.f-service-media-card.is-large {
    grid-column: span 8;
}

.f-service-media-card[hidden] {
    display: none;
}

.f-service-media-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--f-radius);
}

.f-service-media-card.is-large img {
    aspect-ratio: 16 / 9;
}

.f-service-media-card figcaption {
    display: grid;
    gap: 4px;
    padding-top: 12px;
    color: var(--f-muted);
}

.f-service-media-card figcaption strong {
    color: var(--f-ink);
}

.f-deliverables {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--f-line);
}

.f-deliverables > div {
    font-size: clamp(1.2rem, 2vw, 2rem);
    padding: 28px 10px 28px 0;
    border-bottom: 1px solid var(--f-line);
}

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

.f-faq details:last-child {
    border-bottom: 1px solid var(--f-line);
}

.f-faq summary {
    list-style: none;
    cursor: pointer;
    font-size: clamp(1.25rem, 2vw, 2rem);
    padding: 28px 54px 28px 0;
    position: relative;
}

.f-faq summary::-webkit-details-marker { display: none; }

.f-faq summary::after {
    content: "+";
    position: absolute;
    right: 5px;
}

.f-faq details[open] summary::after {
    content: "−";
}

.f-faq details > div {
    color: var(--f-muted);
    line-height: 1.7;
    padding: 0 70px 28px 0;
}

.f-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--f-line);
}

.f-related-grid a {
    color: var(--f-ink);
    text-decoration: none;
    padding: 30px;
    min-height: 220px;
    border-right: 1px solid var(--f-line);
    border-bottom: 1px solid var(--f-line);
    display: grid;
    align-content: space-between;
    transition: background .3s ease;
}

.f-related-grid a:hover {
    background: var(--f-accent);
    color: #0b0c0f;
}

.f-related-grid h3 {
    font-size: clamp(1.4rem, 2vw, 2.4rem);
    letter-spacing: -.04em;
}

.f-related-grid i {
    font-style: normal;
    justify-self: end;
    font-size: 1.8rem;
}

.f-project-grid-index .f-project-card[hidden] {
    display: none;
}

.f-project-hero {
    padding: clamp(160px, 20vh, 230px) 0 0;
}

.f-project-hero-copy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: clamp(50px, 8vw, 110px);
}

.f-project-cover {
    border-radius: var(--f-radius);
    overflow: hidden;
}

.f-project-cover img {
    width: 100%;
    max-height: 85vh;
    object-fit: cover;
}

.f-project-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
    border-top: 1px solid var(--f-line);
}

.f-project-points div {
    padding: 28px 20px 28px 0;
    border-bottom: 1px solid var(--f-line);
    font-weight: 700;
}

.f-project-gallery > .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(18px, 3vw, 46px);
}

.f-project-gallery figure {
    margin: 0;
    border-radius: var(--f-radius);
    overflow: hidden;
}

.f-project-gallery figure.is-wide {
    grid-column: 1 / -1;
}

.f-project-gallery img {
    width: 100%;
    height: 100%;
    max-height: 80vh;
    object-fit: cover;
}

.f-team-card {
    display: grid;
    grid-template-columns: minmax(240px, .7fr) minmax(0, 1fr);
    gap: clamp(30px, 5vw, 80px);
    align-items: center;
    padding-bottom: 50px;
}

.f-team-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--f-radius);
}

.f-team-card h2 {
    font-size: clamp(2.4rem, 5vw, 5.5rem);
    letter-spacing: -.06em;
    margin: 6px 0 20px;
}

.f-team-card p {
    color: var(--f-muted);
}

.motion-footer {
    background: #0b0c0f;
    color: #fff;
}

.motion-footer-cta {
    padding-block: clamp(80px, 12vw, 180px);
    border-bottom: 1px solid rgba(255,255,255,.16);
}

.motion-footer-cta > a {
    color: #fff;
    text-decoration: none;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 24px;
    font-size: clamp(2.6rem, 6.5vw, 8rem);
    line-height: .9;
    letter-spacing: -.07em;
}

.motion-footer-cta > a span,
.motion-footer-cta > a strong {
    grid-column: 1;
}

.motion-footer-cta > a strong {
    color: var(--f-accent);
}

.motion-footer-cta i {
    grid-column: 2;
    grid-row: 1 / 3;
    font-style: normal;
    font-size: .6em;
    transition: transform .4s var(--f-ease);
}

.motion-footer-cta a:hover i {
    transform: translate(10px, -10px);
}

.motion-footer .footer-top {
    border-top: 0;
}

.motion-footer a,
.motion-footer button {
    color: inherit;
}

.motion-footer .footer-legal {
    border-color: rgba(255,255,255,.16);
}

[data-reveal],
[data-split-text] .f-word {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity .8s var(--f-ease),
        transform .9s var(--f-ease);
}

[data-reveal].is-revealed,
[data-split-text].is-revealed .f-word {
    opacity: 1;
    transform: translateY(0);
}

[data-split-text] .f-word {
    display: inline-block;
    transition-delay: calc(var(--word-index, 0) * 35ms);
}

body[data-motion-ready="false"] [data-reveal],
body[data-motion-ready="false"] [data-split-text] .f-word {
    opacity: 1;
    transform: none;
}

@media (max-width: 1100px) {
    .motion-menu-grid {
        grid-template-columns: 1fr .55fr;
    }

    .motion-menu-contact {
        grid-column: 2;
    }

    .f-hero-copy {
        width: 88%;
    }

    .f-hero-orbit {
        opacity: .72;
    }

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

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

    .f-service-media-card {
        grid-column: span 6;
    }
}

@media (max-width: 760px) {
    :root {
        --f-space: 78px;
        --f-display: clamp(3.3rem, 17vw, 5.5rem);
        --f-display-small: clamp(3rem, 14vw, 5rem);
    }

    .phase4f-page .container,
    .motion-header .container,
    .motion-footer .container {
        width: min(100% - 32px, 1540px);
    }

    .motion-header-inner {
        min-height: 78px;
    }

    .motion-brand {
        width: 56px;
        height: 56px;
    }

    .motion-header-link {
        display: none;
    }

    .theme-toggle {
        width: 42px;
        height: 42px;
    }

    .motion-menu-toggle {
        width: 48px;
        height: 48px;
    }

    .motion-menu {
        padding-top: 105px;
    }

    .motion-menu-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 45px;
        align-items: start;
    }

    .motion-menu-primary a {
        font-size: clamp(2.8rem, 15vw, 4.8rem);
        grid-template-columns: 34px 1fr;
    }

    .motion-menu-secondary,
    .motion-menu-contact {
        grid-column: 1;
    }

    .f-hero {
        padding-top: 100px;
        min-height: auto;
    }

    .f-hero-inner {
        min-height: 850px;
        align-content: start;
        padding-top: 60px;
    }

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

    .f-display {
        max-width: 9ch;
    }

    .f-hero-orbit {
        inset: 48% 0 80px;
        opacity: .9;
    }

    .f-orbit-1 { width: 46%; height: 34%; right: 1%; top: 0; }
    .f-orbit-2 { width: 42%; height: 30%; left: 0; top: 8%; }
    .f-orbit-3 { width: 44%; height: 34%; right: 11%; bottom: 0; }
    .f-orbit-4 { width: 36%; height: 25%; left: 3%; bottom: 5%; }
    .f-orbit-5,
    .f-orbit-6 { display: none; }

    .f-hero-meta {
        display: none;
    }

    .f-hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .f-intro-grid,
    .f-editorial-grid,
    .f-service-hero-grid,
    .f-video-grid,
    .f-google-ads-card {
        grid-template-columns: 1fr;
    }

    .f-editorial-grid > aside {
        position: static;
    }

    .f-section-head {
        display: grid;
        align-items: start;
    }

    .f-service-row {
        grid-template-columns: 42px 1fr 28px;
        gap: 10px;
    }

    .f-service-row p {
        display: none;
    }

    .f-rail-card {
        flex-basis: 88vw;
    }

    .f-project-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .f-project-card,
    .f-project-card.is-wide {
        grid-column: auto;
        margin-top: 0 !important;
    }

    .f-project-card.is-wide .f-project-media img,
    .f-project-media img {
        aspect-ratio: 4 / 3;
    }

    .f-mosaic-grid {
        grid-template-columns: 1fr;
    }

    .f-mosaic-item,
    .f-mosaic-item-1,
    .f-mosaic-item-2,
    .f-mosaic-item-3,
    .f-mosaic-item-4,
    .f-mosaic-item-5,
    .f-mosaic-item-6 {
        grid-column: auto;
        margin-top: 0;
    }

    .f-review-grid {
        grid-template-columns: 1fr;
    }

    .f-review-placeholder {
        display: grid;
    }

    .f-review-placeholder > div {
        grid-template-columns: 1fr;
    }

    .f-review-placeholder p {
        grid-column: 1;
    }

    .f-catalogue-link {
        grid-template-columns: 38px 1fr 30px;
        gap: 12px;
        padding: 26px 0;
    }

    .f-catalogue-media {
        grid-column: 2 / 4;
        width: 100%;
        height: 180px;
    }

    .f-catalogue-link > i {
        grid-column: 3;
        grid-row: 1;
    }

    .f-process-grid,
    .f-deliverables,
    .f-related-grid,
    .f-project-points,
    .f-project-gallery > .container,
    .f-team-card {
        grid-template-columns: 1fr;
    }

    .f-service-media-card,
    .f-service-media-card.is-large {
        grid-column: 1 / -1;
    }

    .f-project-gallery figure.is-wide {
        grid-column: auto;
    }

    .motion-footer-cta > a {
        grid-template-columns: 1fr;
    }

    .motion-footer-cta i {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (hover: none), (pointer: coarse) {
    .magnetic {
        transform: none !important;
    }

    .f-project-arrow {
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal],
    [data-split-text] .f-word {
        opacity: 1 !important;
        transform: none !important;
    }

    [data-parallax] {
        transform: none !important;
    }
}
