:root {
    --ink: #151515;
    --ink-soft: #292927;
    --bg: #f5f3ef;
    --paper: #fff;
    --line: #dedbd4;
    --muted: #68655f;
    --dark-muted: #b6b2aa;
    --accent: #6b55a6;
    --radius: 18px;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    --max: 1240px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family:
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
button,
input,
select,
textarea {
    font: inherit;
}
button {
    cursor: pointer;
}
a {
    color: inherit;
    text-decoration: none;
}
.container {
    width: min(calc(100% - 48px), var(--max));
    margin-inline: auto;
}
.skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 100;
    padding: 10px 14px;
    background: #fff;
    color: #000;
    transform: translateY(-140%);
    transition: transform 0.2s;
}
.skip-link:focus {
    transform: none;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}
.header-inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: 210px 1fr auto;
    align-items: center;
    gap: 28px;
}
.brand {
    display: inline-flex;
    align-items: center;
    width: 92px;
}
.brand img {
    width: 100%;
    height: auto;
}
.desktop-nav {
    display: flex;
    justify-content: center;
    gap: 34px;
    font-size: 14px;
}
.desktop-nav a,
.footer-links a {
    transition: opacity 0.2s ease;
}
.desktop-nav a:hover,
.footer-links a:hover {
    opacity: 0.6;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 13px 18px;
    min-height: 48px;
    font-weight: 650;
    font-size: 14px;
    line-height: 1;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}
.button:hover {
    transform: translateY(-1px);
}
.button--primary {
    background: var(--ink);
    color: #fff;
}
.button--primary:hover {
    background: #2b2a28;
}
.button--light {
    background: #fff;
    color: #101010;
}
.button--yellow {
    background: #ffc42e;
    color: #101010;
}
.button--light:hover {
    background: #ffc42e;
}
.button--yellow:hover {
    background: #ffffff;
}
.button--secondary {
    background: transparent;
    color: var(--ink);
    border-color: #bcb8b0;
}
.button--secondary:hover {
    background: #f4f2ed;
}
.button--tertiary,
.button--tertiary-light {
    padding-inline: 0;
    border-radius: 0;
    border: 0;
    background: none;
    text-decoration: underline;
    text-underline-offset: 5px;
}
.button--tertiary-light {
    color: #fff;
}
.button--tertiary span,
.button--tertiary-light span {
    height: 12px;
    width: 12px;
    overflow: hidden;
}
.button--header {
    min-height: 44px;
    padding: 11px 17px;
}
.button--full {
    width: 100%;
}
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: none;
    justify-self: end;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: #111;
    margin: 6px auto;
}
.mobile-nav {
    padding: 8px 24px 24px;
    border-top: 1px solid var(--line);
    background: #fff;
}
.mobile-nav a,
.mobile-nav button {
    display: flex;
    width: 100%;
    margin-top: 10px;
}
.mobile-nav a {
    padding: 12px 2px;
}
.mobile-nav button {
    margin-top: 14px;
}
body.modal-open {
    overflow: hidden;
}
.section {
    padding: 110px 0;
}
.section-dark {
    background: #111111;
    color: #fff;
}
.eyebrow {
    margin: 0 0 18px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: #77736c;
}
.eyebrow--light {
    color: #aaa59d;
}
h1,
h2,
h3,
p {
    margin-top: 0;
}
.hero {
    position: relative;
    overflow: hidden;
    background-image: url("../assets/liqwidly_hero.jpg");
    background-size: cover;
    background-position: bottom;
}
@media screen and (max-width: 768px) {
    .hero {
        height: 82vh;
        background-image: url("../assets/liqwidly_hero_mobile.jpg");
        background-size: cover;
        background-position: top;
    }
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 1;
}
.hero-grid {
    min-height: calc(100svh - 84px);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 48px;
    padding-block: 56px 80px;
}
.hero-copy h1 {
    font-size: clamp(50px, 60vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    max-width: 700px;
    margin-bottom: 26px;
}
.hero-lead {
    font-size: 20px;
    line-height: 1.5;
    color: #ddd9d1;
    max-width: 630px;
    margin-bottom: 0;
}
.hero-actions {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 34px;
}
.hero-note {
    margin: 32px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    max-width: 500px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #aaa69f;
}
.hero-visual {
    position: relative;
    min-height: 650px;
}
.workspace-card {
    position: absolute;
    background: #191919;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.workspace-card--main {
    right: 4%;
    top: 44px;
    width: 83%;
    padding: 10px;
    transform: rotate(1.7deg);
}
.workspace-toolbar {
    height: 28px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 8px;
    color: #8f8b84;
    font-size: 9px;
}
.workspace-toolbar span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #54514c;
}
.workspace-toolbar small {
    margin-left: auto;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
}
.workspace-screen {
    display: grid;
    grid-template-columns: 24% 76%;
    min-height: 430px;
    background: #0d0d0d;
    border-radius: 7px;
    overflow: hidden;
}
.code-column {
    padding: 20px 14px;
    background: #111;
    border-right: 1px solid #292929;
}
.code-line {
    height: 4px;
    border-radius: 99px;
    background: #45413a;
    margin-bottom: 10px;
}
.code-line:nth-child(3n) {
    background: #675a84;
}
.code-line:nth-child(4n) {
    background: #655c4e;
}
.code-gap {
    height: 20px;
}
.w-44 {
    width: 44%;
}
.w-47 {
    width: 47%;
}
.w-50 {
    width: 50%;
}
.w-58 {
    width: 58%;
}
.w-60 {
    width: 60%;
}
.w-70 {
    width: 70%;
}
.w-73 {
    width: 73%;
}
.w-78 {
    width: 78%;
}
.w-83 {
    width: 83%;
}
.w-86 {
    width: 86%;
}
.w-92 {
    width: 92%;
}
.store-preview {
    background: #f5f2ea;
}
.store-nav {
    height: 44px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 14px;
    font-size: 10px;
    color: #272621;
}
.store-nav b {
    font-size: 14px;
    letter-spacing: 0.05em;
}
.store-nav em {
    display: block;
    width: 52px;
    height: 8px;
    border-radius: 99px;
    background: #d9d4cb;
    margin-left: auto;
}
.store-preview img {
    width: 100%;
    height: auto;
}
.mini-label {
    padding: 9px 10px;
    font-size: 10px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #6d6962;
    background: #fff;
}
.work-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}
.work-strip-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.work-strip p {
    margin: 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #7b776f;
}
.brand-links {
    display: flex;
    gap: 28px;
    font-size: 14px;
}
.brand-links a {
    text-decoration: underline;
    text-underline-offset: 4px;
}
.section--work {
    background: #fff;
}
.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 56px;
}
.section-heading h2,
.services-intro h2,
.about-copy h2,
.contact-inner h2 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -0.045em;
    margin: 0;
    max-width: 740px;
}
@media (max-width: 375px) {
    .section-heading h2,
    .services-intro h2,
    .about-copy h2,
    .contact-inner h2 {
        font-size: 34px;
        line-height: 1.1;
        letter-spacing: -0.035em;
    }
}
.section-note {
    max-width: 440px;
    margin: 0;
    color: var(--muted);
}
/* .project {
    border-top: 1px solid var(--line);
    padding-top: 22px;
} */
.project--featured {
    display: grid;
    grid-template-columns: 1.28fr 0.72fr;
    gap: 44px;
    align-items: center;
}
.project-media {
    overflow: hidden;
    background: #eee;
}
.project-media img {
    width: 100%;
    transition: transform 0.5s ease;
}
.project:hover .project-media img {
    transform: scale(1.012);
}
.project-copy {
    padding: 6px 0;
}
.project-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}
.project-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    color: #77736c;
    font-weight: 700;
}
.text-link {
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.project h3 {
    font-size: clamp(30px, 3.3vw, 44px);
    line-height: 1.03;
    letter-spacing: -0.35em;
    margin-bottom: 18px;
}
.project h4 {
    font-size: clamp(30px, 3.3vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}
.project-copy > p {
    color: var(--muted);
    max-width: 610px;
}
.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 44px;
}
.project--compact h3 {
    font-size: 34px;
}
.project--compact h4 {
    font-size: 26px;
}
.project-details {
    margin-top: 20px;
    border-top: 1px solid var(--line);
    padding-top: 12px;
}
.project-details.explainer {
    margin-top: 0;
    border-top: none !important;
    padding-top: 20px;
}
.project-details summary {
    cursor: pointer;
    list-style: none;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.project-details.explainer summary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    width: 180px;
    height: 60px;
    padding: 0 12px;
    outline: none;
    cursor: pointer;
    transition: 0.3s all;
}
.project-details.explainer summary:hover svg{
    display: none !important;
}
.project-details.explainer summary:hover {
    transition: 0.3s all;
    background: #6236ff;
}
.project-details.explainer summary:hover span {
    color: #fff;
    transition: 0.3s all;
}
.project-details.explainer summary span {
    position: relative;
    z-index: 2;
    font-size: 16px;
    color: #66625c;
}
.project-details.explainer summary svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    fill: none;
    pointer-events: none;
}
.project-details.explainer summary svg .bg-line {
    stroke: #dedbd4;
    stroke-width: 1;
}
.project-details.explainer summary svg .hl-line {
    stroke: #6236ff;
    stroke-width: 1;
    fill: none;
    stroke-dasharray: 150 680;
    animation: draw-border 6s ease-in-out infinite;
}
@keyframes draw-border {
    0% {
        stroke-dashoffset: 150;
    }
    50% {
        stroke-dashoffset: -480;
    }
    100% {
        stroke-dashoffset: 150;
    }
}
.project-details.explainer summary:hover .hl-line {
    stroke-dashoffset: -480;
}
.project-details summary::-webkit-details-marker {
    display: none;
}
.project-details summary::after {
    content: "+";
    margin-left: 10px;
    text-decoration: none;
    display: inline-block;
    color: #66625c;
}
.project-details[open] summary::after {
    content: "−";
    color: #66625c;
}
.project-details.explainer summary:hover:after {
    color: #fff;
}
.details-body {
    padding-top: 12px;
    color: #4f4b45;
    font-size: 14px;
}
.project-details.explainer .details-body {
    font-size: 16px;
    max-width: 680px;
    padding-top: 16px;
}
.details-body p {
    margin: 0;
}
.section--tint {
    background: var(--bg);
}
.services-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
}
.services-intro {
    height: fit-content;
    position: sticky;
    top: 120px;
}
.services-intro h2 {
    margin-bottom: 24px;
}
.services-intro > p:last-child {
    max-width: 500px;
    color: var(--muted);
}
.service-list {
    border-top: 1px solid var(--line);
}
.service-item {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 32px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}
.service-item-feature {
    margin: 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #7b776f;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}
@media (max-width: 580px) {
    .service-item-feature {
        font-size: 13px;
    }
}
.service-item-feature strong {
    color: #454545;
}
.service-item-feature img {
    display: inline-flex;
    height: 26px;
    opacity: 0.85;
}
.service-item h3 {
    font-size: 21px;
    letter-spacing: -0.02em;
    margin: 0;
}
.service-item p {
    margin: 0;
    color: var(--muted);
    max-width: 520px;
}
.section--about {
    background: #fff;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 110px;
    align-items: start;
}
.about-copy h2 {
    margin-bottom: 24px;
}
.about-copy > p {
    max-width: 590px;
    color: var(--muted);
}
.about-actions {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 26px;
}
.about-side {
    border-top: 1px solid var(--line);
    padding-top: 8px;
}
.about-quote {
    padding: 30px 0 36px;
    border-bottom: 1px solid var(--line);
    max-width: 610px;
}
.quote-mark {
    font-size: 64px;
    line-height: 0.8;
    display: block;
    color: var(--accent);
}
.about-quote p {
    font-size: 25px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    max-width: 540px;
    margin: 12px 0 0;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.about-stats div {
    padding: 25px 20px 0 0;
    border-right: 1px solid var(--line);
}
.about-stats div + div {
    padding-left: 22px;
}
.about-stats div:last-child {
    border-right: 0;
}
.about-stats strong {
    display: block;
    font-size: 45px;
    letter-spacing: -0.05em;
    line-height: 1;
}
.about-stats span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
}
.contact-panel {
    padding: 92px 0;
}
.contact-inner {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 64px;
}
.contact-inner h2 {
    max-width: 760px;
}
.contact-inner p:not(.eyebrow) {
    max-width: 620px;
    color: #c3bfb7;
    margin: 22px 0 0;
}
.contact-actions {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.site-footer {
    background: #111111;
    color: #97938b;
    border-top: 1px solid #282828;
}
.footer-inner {
    min-height: 78px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 12px;
}
.footer-inner p {
    margin: 0;
}
.footer-links {
    display: flex;
    gap: 22px;
}
.footer-links a {
    color: #fff;
}
.modal {
    width: min(760px, calc(100% - 28px));
    max-height: min(90svh, 900px);
    padding: 0;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35);
    background: #fff;
    color: var(--ink);
}
.modal::backdrop {
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(6px);
}
.modal-inner {
    position: relative;
    padding: 34px;
    overflow: auto;
    max-height: min(90svh, 900px);
}
.modal-inner--small {
    max-width: 620px;
}
.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    font-size: 25px;
    line-height: 1;
}
.modal-header {
    padding-right: 44px;
    margin-bottom: 24px;
}
.modal-header h2 {
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1;
    letter-spacing: -0.045em;
    margin: 0 0 14px;
}
.modal-header p:last-child {
    color: var(--muted);
    margin: 0;
}
.lead-form {
    display: grid;
    gap: 16px;
}
.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.lead-form label {
    display: grid;
    gap: 7px;
}
.lead-form label > span,
.choice-group legend {
    font-size: 12px;
    font-weight: 700;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    border: 1px solid #c9c5bd;
    border-radius: 12px;
    padding: 13px 14px;
    background: #fff;
    color: var(--ink);
    outline: none;
}
.lead-form textarea {
    resize: vertical;
    min-height: 130px;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: #6a675f;
    box-shadow: 0 0 0 3px rgba(107, 85, 166, 0.12);
}
.choice-group {
    border: 0;
    padding: 0;
    margin: 0;
}
.choice-group legend {
    margin-bottom: 8px;
}
.choice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.choice-grid label {
    display: block;
}
.choice-grid input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.choice-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 12px;
    text-align: center;
}
.choice-grid input:checked + span {
    background: #eeeae2;
    border-color: #9d988f;
}
.turnstile-slot {
    min-height: 0;
}
.turnstile-slot > span {
    display: none;
}
.form-status {
    font-size: 13px;
    margin: 0;
    color: var(--muted);
    min-height: 19px;
}
.trap {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}
.form-status[data-state="success"] {
    color: #2f6b45;
}
.form-status[data-state="error"] {
    color: #9b2f2f;
}

/* ==========================================
   LIQWIDLY PROCESS
   ========================================== */

.lw-process {
    padding: 120px 0;
    background: #121212;
    color: #fff;
}

.lw-process .lw-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.lw-process__intro {
    display: grid;
    /* grid-template-columns: 1.2fr 1fr;
  gap: 80px; */
    margin-bottom: 80px;
}

.lw-eyebrow {
    display: block;
    margin: 0 0 18px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: #8a8a8a;
}

.lw-process h2 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
}
@media (max-width: 375px) {
    .lw-process h2 {
        font-size: 34px;
        line-height: 1.1;
    }
}

.lw-process h2 span {
    color: #ffc42e;
}

span.lw-process__period {
    color: #724aff !important;
}

.lw-process__copy {
    display: flex;
    align-items: center;
}

.lw-process__copy p {
    color: #d0d0d0;
    line-height: 1.8;
    max-width: 540px;
    height: fit-content;
    height: -moz-fit-content;
}

.lw-process__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lw-step {
    position: relative;
}

.lw-step:hover .lw-step__line::after {
    border: 2px solid #6236ff;
    background: #6236ff;
    transition: 0.3s all;
}

.lw-step__line {
    position: relative;
    margin-bottom: 32px;
    padding-top: 18px;
}

.lw-step__line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 14px;
    right: 0;
    height: 1px;
    background: #303030;
}

.lw-step__line::after {
    content: "";
    position: absolute;
    left: 0;
    top: -6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #bcbcbc;
    background: #0b0b0b;
    transition: 0.3s all;
}

.lw-step:first-child .lw-step__line::after {
    background: #724aff;
    border-color: #724aff;
}

.lw-step:first-child:has(~ .lw-step:hover) .lw-step__line::after {
    background: #0b0b0b;
    border-color: #bcbcbc;
}

.lw-step__number {
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
    color: #b8b8b8;
}

.lw-step h3 {
    margin: 0 0 12px;
    font-size: 1.6rem;
    line-height: 2.1rem;
}

.lw-step p {
    color: #b8b8b8;
    line-height: 1.7;
    margin-bottom: 24px;
}

.lw-step img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}
@media (max-width: 1100px) {
    /* .lw-process__intro {
    grid-template-columns: 1fr;
    gap: 40px;
  } */

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

@media (max-width: 768px) {
    .lw-process__intro {
        margin-bottom: 20px;
    }

    .lw-step__line {
        display: inline;
    }

    .lw-step__number {
        left: 30px;
        position: relative;
    }

    .lw-step__line::after {
        left: 0;
        top: 10px;
    }

    .lw-process {
        padding: 80px 0;
    }

    .lw-process .lw-container {
        padding: 0 24px;
    }

    .lw-process__grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 42px;
    }

    .lw-step__line::before {
        display: none;
    }

    .lw-step img {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 600px) {
    .lw-process__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 1050px) {
    .header-inner {
        grid-template-columns: 92px 1fr auto;
    }
    .desktop-nav,
    .button--header {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero {
        padding-top: 18px;
    }
    .hero-copy {
        padding-top: 15px;
    }
    .hero-visual {
        min-height: 630px;
    }
    .services-grid,
    .about-grid,
    .project--featured {
        grid-template-columns: 1fr;
    }
    .services-grid,
    .about-grid {
        gap: 60px;
    }
    .contact-inner {
        align-items: flex-start;
        flex-direction: column;
    }
    .contact-actions {
        justify-content: flex-start;
    }
}
@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 32px), var(--max));
    }
    .header-inner {
        min-height: 72px;
    }
    .brand {
        width: 76px;
    }
    .hero-grid {
        padding-block: 22px 66px;
    }
    .hero-copy h1 {
        font-size: 53px;
    }
    .hero-lead {
        font-size: 18px;
    }
    .hero-visual {
        min-height: 445px;
        margin-top: 10px;
    }
    .workspace-screen {
        grid-template-columns: 0 1fr;
    }
    .code-column {
        display: none;
    }
    .work-strip-inner {
        padding-block: 18px;
        align-items: flex-start;
        flex-direction: column;
    }
    .brand-links {
        gap: 14px;
        flex-wrap: wrap;
    }
    .section {
        padding: 76px 0;
    }
    .section-heading {
        display: block;
        margin-bottom: 36px;
    }
    .section-note {
        margin-top: 18px;
    }
    .project-grid {
        grid-template-columns: 1fr;
        gap: 42px;
        margin-top: 52px;
    }
    .project--compact h3 {
        font-size: 31px;
    }
    .project--compact h4 {
        font-size: 22px;
    }
    .service-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .about-grid {
        gap: 42px;
    }
    .about-quote p {
        font-size: 22px;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    .about-stats div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 20px 0;
    }
    .about-stats div + div {
        padding-left: 0;
    }
    .about-stats div:last-child {
        grid-column: 1/-1;
        border-bottom: 0;
    }
    .contact-panel {
        padding: 72px 0;
    }
    .footer-inner {
        min-height: 100px;
        padding-block: 22px;
        align-items: flex-start;
        flex-direction: column;
    }
    .field-grid {
        grid-template-columns: 1fr;
    }
    .choice-grid {
        grid-template-columns: 1fr 1fr;
    }
    .modal-inner {
        padding: 26px 18px;
    }
    .modal-header h2 {
        font-size: 39px;
    }
    .modal-close {
        top: 10px;
        right: 10px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .button,
    .project-media img {
        transition: none;
    }
}

/* =========================================================
   COLLABORATIVE HEADING - Animation
========================================================= */

.lw-collab {
    display: inline-block;
    position: relative;
    vertical-align: baseline;
}

/* WORD */
    .lw-collab__word {
        display: inline-flex;
        align-items: baseline;
        position: relative;
        white-space: nowrap;
    }

/* LEFT / RIGHT */
    .lw-collab__left,
    .lw-collab__right {
        display: inline-flex;
        align-items: baseline;
        white-space: nowrap;
        will-change: transform;
    }
    .lw-collab__anchor {
        display: inline-block;
    }

/* DEFAULT STATE */
    .lw-collab__left {

        transform: translateX(-0.5em);
    }
    .lw-collab__right {
        transform: translateX(0.22em);
        position: relative;
        left: -3.5%;
    }

/* ANIMATION */
    .lw-collab.is-running .lw-collab__left {
        animation: lw-collab-left 1350ms 350ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    .lw-collab.is-running .lw-collab__right {
        animation: lw-collab-right 1350ms 350ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

/* LEFT */
    @keyframes lw-collab-left {
        0% {
            transform: translateX(-0.55em);
        }
        /*
    * Build tension by pulling away slightly.
    */
        28% {
            transform: translateX(-0.7em);
        }
        /*
    * Pull toward the centre.
    */
        48% {
            transform: translateX(0.08em);
        }
        /*
    * Hold the compressed position very briefly.
    */
        54% {
            transform: translateX(0.08em);
        }
        /*
    * Release toward its natural position.
    */
        100% {
            transform: translateX(0.015em);
        }
    }

    /* RIGHT */
    @keyframes lw-collab-right {
        0% {
            transform: translateX(0.22em);
        }
        /*
    * Build tension.
    */
        28% {
            transform: translateX(0.3em);
        }
        /*
    * Pull toward the centre.
    */
        48% {
            transform: translateX(0.14em);
        }
        /*
    * Hold.
    */
        54% {
            transform: translateX(0.14em);
        }
        /*
    * Release back into final position.
    */
        100% {
            transform: translateX(0.205em);
        }
        /*
    * Tiny settle.
    */
    }

/* PROCESS */
    .lw-collab__space {
        white-space: pre;
    }

/* REDUCED MOTION */
    @media (prefers-reduced-motion: reduce) {
        .lw-collab__left,
        .lw-collab__right {
            animation: none;
            transform: none;
        }
    }

/* =========================================
   PROCESS HEADING — SCROLL REVEAL
   ========================================= */

    .lw-process-heading {
        overflow: visible;
    }
    .lw-process-line {
        display: block;
        opacity: 0;
        transform: translateX(-50px);
        will-change: opacity, transform;
    }

    /* =========================================================
   LIQWIDLY — SERVICE LOGO STRIP
========================================================= */

.lw-service-logos {
    width: 100%;
    margin-top: 10px;
    overflow: hidden;
    position: relative;
}
.lw-service-logos__track {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    align-items: center;
    width: 100%;
    gap: 10px;
    margin:0;
    padding:0;
}

/* =========================================================
   LOGO
========================================================= */

.lw-service-logo {
    min-width: 0;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #151515;
    white-space: nowrap;
    text-align: center;
}
.lw-service-logo img {
    opacity: 0.4;
    max-height: 32px;
    width: auto;
}
.lw-service-logo__mark {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    flex: 0 0 auto;
}
.lw-service-logo__name {
    font-size: clamp(14px, 1.25vw, 17px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -.02em;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {
    .lw-service-logos__track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .lw-service-logos {
        margin-top: 32px;
    }
    .lw-service-logos__track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 8px;
    }
    .lw-service-logo {
        min-height: 44px;
    }
    .lw-service-logo__mark {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    .lw-service-logo__name {
        font-size: 13px;
    }
}


/* =========================================================
   CMS SECTION SYSTEM
========================================================= */
.cms-section{position:relative;scroll-margin-top:96px}
.cms-hero{position:relative;overflow:hidden;background:var(--ink);background-image:var(--hero-bg);background-size:cover;background-position:center;color:#fff;min-height:calc(100svh - 84px)}
.cms-hero::before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.65),rgba(0,0,0,.08));pointer-events:none}
.cms-hero:not(.cms-hero--overlay)::before{background:rgba(0,0,0,.18)}
.cms-hero__inner{min-height:inherit;display:grid;align-items:center;position:relative;z-index:1;padding:72px 0}
.cms-hero__copy{max-width:760px}.cms-hero h1{font-size:clamp(48px,7vw,84px);line-height:.95;letter-spacing:-.04em;margin:0 0 24px}.cms-hero .hero-lead{max-width:680px}.cms-hero .hero-actions{margin-top:32px}
.cms-50{display:grid;grid-template-columns:1fr 1fr;gap:clamp(36px,6vw,88px);align-items:center}.cms-50--content-left .cms-50__media{grid-column:2}.cms-50--content-left .cms-50__copy{grid-column:1;grid-row:1}.cms-50--image-left .cms-50__media{grid-column:1}.cms-50--image-left .cms-50__copy{grid-column:2;grid-row:1}.cms-50__media{overflow:hidden;background:#eee}.cms-50__media img{width:100%;height:auto}.cms-50__copy h2,.cms-text h2,.cms-newsletter h2,.cms-quote blockquote{font-size:clamp(38px,5vw,64px);line-height:1;letter-spacing:-.045em;margin:0 0 24px}.cms-50__copy p,.cms-text p,.cms-newsletter p{color:var(--muted);max-width:680px}.cms-media-frame{position:relative;aspect-ratio:16/9;background:#111;overflow:hidden}.cms-media-frame iframe{width:100%;height:100%;border:0;display:block}.cms-image img{width:100%;height:auto}.cms-caption{color:var(--muted);font-size:13px;margin:12px 0 0}.cms-columns{display:grid;grid-template-columns:repeat(3,1fr);gap:32px}.cms-columns article{border-top:1px solid var(--line);padding-top:18px}.cms-columns h3{font-size:24px;margin:0 0 12px}.cms-columns p{color:var(--muted)}.cms-faq{max-width:900px}.cms-faq h2{font-size:clamp(38px,5vw,64px);line-height:1;letter-spacing:-.045em}.cms-newsletter{max-width:780px}.cms-quote{max-width:900px}.cms-quote blockquote{margin:0 0 18px;font-weight:500}.cms-quote cite{color:var(--muted);font-style:normal}.project-detail h1{font-size:clamp(46px,7vw,84px);line-height:.96;letter-spacing:-.04em;max-width:1000px;margin:0 0 48px}.project-detail__media{margin-bottom:56px}.project-detail__grid{display:grid;grid-template-columns:1fr 340px;gap:60px;margin-bottom:40px}.project-detail__grid p{font-size:19px;color:var(--muted)}.project-detail dl{margin:0}.project-detail dl div{border-top:1px solid var(--line);padding:14px 0}.project-detail dt{text-transform:uppercase;font-size:11px;letter-spacing:.15em;color:var(--muted)}.project-detail dd{margin:4px 0 0}.analytics-consent{position:fixed;left:20px;right:20px;bottom:20px;z-index:90;background:#111;color:#fff;border-radius:12px;padding:14px 16px;display:flex;gap:14px;align-items:center;box-shadow:0 18px 60px rgba(0,0,0,.18);font-size:13px}.analytics-consent span{flex:1}.analytics-consent button{border:1px solid #555;border-radius:99px;background:transparent;color:#fff;padding:8px 12px}.analytics-consent button:first-of-type{background:#fff;color:#111;border-color:#fff}
@media (max-width:800px){.cms-hero{min-height:82vh;background-position:center}.cms-hero__inner{padding:54px 0}.cms-50,.project-detail__grid{grid-template-columns:1fr}.cms-50--content-left .cms-50__media,.cms-50--content-left .cms-50__copy,.cms-50--image-left .cms-50__media,.cms-50--image-left .cms-50__copy{grid-column:auto;grid-row:auto}.cms-50--content-left .cms-50__copy,.cms-50--image-left .cms-50__copy{order:2}.cms-50--content-left .cms-50__media,.cms-50--image-left .cms-50__media{order:1}.cms-columns{grid-template-columns:1fr}.analytics-consent{left:12px;right:12px;bottom:12px;flex-wrap:wrap}.analytics-consent span{flex-basis:100%}}

.cms-hero__media{position:absolute;inset:0;z-index:0}.cms-hero__media img{width:100%;height:100%;object-fit:cover;object-position:center}.cms-hero__media picture{display:block;width:100%;height:100%}.cms-hero__media::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.65),rgba(0,0,0,.08));pointer-events:none}
.cms-hero:not(.cms-hero--overlay) .cms-hero__media::after{background:rgba(0,0,0,.18)}
