/* =========================================================
   BYHATI — PROJECT CASE STUDIES
   projects.css
========================================================= */

:root {
    --bg: #080e17;
    --surface: #0d141f;
    --text: #f4f0ec;
    --cream: #dfc5b2;
    --muted: #9ba1aa;
    --muted-light: #c5c7cb;
    --line: rgba(223, 197, 178, 0.16);
    --line-strong: rgba(223, 197, 178, 0.28);

    --content: 1050px;
    --case-content: 920px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
}

body.project-page {
    min-height: 100vh;
    overflow-x: hidden;

    background: var(--bg);
    color: var(--text);

    font-family: Arial, Helvetica, sans-serif;
}

.project-page a {
    color: inherit;
    text-decoration: none;
}

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

.project-page em {
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-style: italic;
}


/* =========================================================
   NAVIGATION — SAME AS HOMEPAGE
========================================================= */

.project-page .studio-nav {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 50;

    width: 100%;
    height: 86px;

    padding: 0 clamp(24px, 5vw, 78px);
    margin: 0;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    background:
        linear-gradient(
            to bottom,
            rgba(8, 13, 22, 0.94),
            rgba(8, 13, 22, 0.6),
            transparent
        );

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* BRAND */

.project-page .brand {
    justify-self: start;

    display: flex;
    align-items: center;
    gap: 10px;

    width: max-content;

    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.18em;
}

.project-page .brand img {
    width: 40px;
    height: 40px;

    object-fit: contain;
}

.project-page .brand span {
    font-size: 14px;
}


/* NAV LINKS */

.project-page .nav-links {
    display: flex;
    align-items: center;
    gap: 38px;

    font-size: 14px;
}

.project-page .nav-links a {
    position: relative;
    display: inline-block;

    padding: 10px 2px;

    color: #f4eee9;

    font-size: 14px;
    opacity: 0.72;

    transition:
        color 0.3s ease,
        opacity 0.3s ease,
        text-shadow 0.3s ease,
        transform 0.3s ease;
}


/* ANIMATED LINE */

.project-page .nav-links a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 0;
    height: 1px;

    background: #ead8c9;

    transform: translateX(-50%);

    box-shadow:
        0 0 6px rgba(234, 216, 201, 0.7),
        0 0 14px rgba(234, 216, 201, 0.35);

    transition:
        width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


/* GLOWING DOT */

.project-page .nav-links a::before {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -1px;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #ead8c9;

    opacity: 0;

    transform:
        translateX(-50%)
        scale(0);

    box-shadow:
        0 0 6px rgba(234, 216, 201, 0.9),
        0 0 14px rgba(234, 216, 201, 0.55),
        0 0 24px rgba(234, 216, 201, 0.3);

    transition:
        opacity 0.25s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


/* HOVER */

.project-page .nav-links a:hover {
    opacity: 1;
    color: #ead8c9;

    transform: translateY(-1px);

    text-shadow:
        0 0 8px rgba(234, 216, 201, 0.4),
        0 0 18px rgba(234, 216, 201, 0.18);
}

.project-page .nav-links a:hover::after {
    width: 100%;
}

.project-page .nav-links a:hover::before {
    opacity: 1;

    transform:
        translateX(-50%)
        scale(1);
}


/* NAV CTA */

.project-page .nav-cta {
    justify-self: end;

    display: inline-flex;
    align-items: center;

    padding: 11px 18px;

    border: 1px solid rgba(244, 238, 233, 0.5);
    border-radius: 999px;

    color: #f4eee9;

    font-size: 13px;

    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.project-page .nav-cta:hover {
    border-color: #ead8c9;

    color: #ead8c9;

    background: rgba(234, 216, 201, 0.04);

    box-shadow:
        0 0 12px rgba(234, 216, 201, 0.12),
        0 0 28px rgba(234, 216, 201, 0.06);

    transform: translateY(-1px);
}

.project-page .nav-cta span {
    margin-left: 10px;
}

/* =========================================================
   GLOBAL CASE STUDY ELEMENTS
========================================================= */

.project-page .eyebrow {
    margin: 0 0 18px;

    color: #9197a1;

    font-size: 8px;
    line-height: 1.4;

    letter-spacing: 0.32em;

    text-transform: uppercase;
}

.project-page main {
    width: 100%;
}


/* =========================================================
   HERO
========================================================= */

.project-hero {
    width: min(calc(100% - 64px), var(--content));

    margin: 0 auto;

    padding: 85px 0 78px;

    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(230px, 0.55fr);

    gap: 90px;

    align-items: end;
}

.project-hero-copy {
    min-width: 0;
}

.project-back {
    display: inline-flex;
    align-items: center;

    margin-bottom: 48px;

    color: #8d949d;

    font-size: 10px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.project-back:hover {
    color: var(--cream);
    transform: translateX(-4px);
}

.project-hero h1 {
    margin: 0;

    color: var(--text);

    font-size: clamp(72px, 8vw, 118px);
    font-weight: 400;

    line-height: 0.9;

    letter-spacing: -0.06em;
}

.project-lead {
    max-width: 610px;

    margin: 35px 0 25px;

    color: #c4c7cb;

    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   TAGS
========================================================= */

.project-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;
}

.project-tags span {
    padding: 6px 10px;

    border: 1px solid var(--line-strong);
    border-radius: 999px;

    color: #d7d8da;

    font-size: 8px;
}


/* =========================================================
   PROJECT META
========================================================= */

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

    gap: 34px 28px;
}

.project-meta > div {
    padding-top: 11px;

    border-top: 1px solid var(--line);
}

.project-meta span {
    display: block;

    margin-bottom: 9px;

    color: #737b85;

    font-size: 7px;

    letter-spacing: 0.24em;

    text-transform: uppercase;
}

.project-meta p {
    margin: 0;

    color: #d2d4d7;

    font-size: 9px;
    line-height: 1.55;
}


/* =========================================================
   HERO SHOWCASE
   IMPORTANT: intentionally SMALLER
========================================================= */

.project-showcase {
    width: min(calc(100% - 48px), 590px);

    margin: 0 auto;

    padding: 40px 0 100px;

    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.7fr);

    gap: 10px;
}

.project-showcase-main {
    min-width: 0;

    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: 11px;

    background: #101722;
}

.project-showcase-main img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top center;
}

.project-showcase-side {
    min-width: 0;

    display: grid;
    grid-template-rows: 1fr 1fr;

    gap: 10px;
}

.project-showcase-side img {
    width: 100%;
    height: 100%;

    min-width: 0;
    min-height: 0;

    object-fit: cover;
    object-position: top center;

    border: 1px solid var(--line);
    border-radius: 11px;

    background: #101722;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.case-intro {
    width: min(calc(100% - 64px), var(--case-content));

    margin: 0 auto;

    padding: 95px 0;

    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);

    gap: 100px;

    border-top: 1px solid var(--line);
}

.case-intro h2,
.case-section-heading h2,
.development-section h2 {
    margin: 0;

    color: var(--text);

    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 400;

    line-height: 1.02;

    letter-spacing: -0.045em;
}

.case-intro-copy {
    padding-top: 22px;
}

.case-intro-copy p,
.case-text-columns p,
.design-feature p,
.feature-list p,
.development-section p {
    color: var(--muted);

    font-size: 11px;
    line-height: 1.8;
}

.case-intro-copy p {
    margin: 0 0 18px;
}

.case-large-text {
    color: #ddd7d2 !important;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 19px !important;
    line-height: 1.45 !important;
}


/* =========================================================
   GENERAL CASE SECTIONS
========================================================= */

.case-section {
    width: min(calc(100% - 64px), var(--case-content));

    margin: 0 auto;

    padding: 95px 0;

    border-top: 1px solid var(--line);
}

.case-section-heading {
    margin-bottom: 55px;
}

.case-section-heading h2 {
    max-width: 720px;
}


/* =========================================================
   RESEARCH STATS
========================================================= */

.research-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin: 50px 0 65px;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.research-stats article {
    min-height: 110px;

    padding: 26px 22px;

    border-right: 1px solid var(--line);
}

.research-stats article:first-child {
    padding-left: 0;
}

.research-stats article:last-child {
    border-right: 0;
}

.research-stats strong {
    display: block;

    margin-bottom: 9px;

    color: var(--cream);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 29px;
    font-weight: 400;
}

.research-stats span {
    color: #7d848e;

    font-size: 8px;
    line-height: 1.5;
}


/* =========================================================
   RESEARCH TEXT
========================================================= */

.case-text-columns {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);

    gap: 100px;

    align-items: start;
}

.case-text-columns h3 {
    margin: 0;

    color: var(--text);

    font-size: 25px;
    font-weight: 400;

    line-height: 1.1;

    letter-spacing: -0.03em;
}

.case-text-columns p {
    margin: 0 0 17px;
}


/* =========================================================
   DESIGN FEATURES
========================================================= */

.design-feature {
    margin-top: 75px;

    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);

    gap: 75px;

    align-items: center;
}

.design-feature:first-of-type {
    margin-top: 0;
}

.design-feature img {
    width: 100%;

    max-height: 510px;

    object-fit: cover;
    object-position: top;

    border: 1px solid var(--line);
    border-radius: 13px;

    background: #101722;
}

.design-feature > div {
    max-width: 330px;
}

.design-feature.reverse img {
    order: 2;
}

.design-feature.reverse > div {
    order: 1;
}

.design-feature.reverse > div {
    justify-self: end;
}

.case-number {
    display: block;

    margin-bottom: 18px;

    color: var(--cream);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 13px;
}

.design-feature h3 {
    margin: 0 0 18px;

    color: var(--text);

    font-size: 25px;
    font-weight: 400;

    line-height: 1.1;

    letter-spacing: -0.035em;
}

.design-feature p {
    margin: 0 0 15px;
}


/* =========================================================
   SOLUTION / FEATURE LIST
========================================================= */

.solution-section {
    padding-bottom: 105px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 55px;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.feature-list article {
    min-width: 0;

    padding: 32px 24px;

    border-right: 1px solid var(--line);
}

.feature-list article:first-child {
    padding-left: 0;
}

.feature-list article:last-child {
    border-right: 0;
}

.feature-list article > span {
    display: block;

    margin-bottom: 27px;

    color: var(--cream);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 13px;
}

.feature-list h3 {
    margin: 0 0 12px;

    color: var(--text);

    font-size: 14px;
    font-weight: 500;
}

.feature-list p {
    margin: 0;

    font-size: 9px;
    line-height: 1.7;
}

/* =========================================================
   TYPOGRAPHY SCALE FIX
   Keep images/layout the same, make content readable
========================================================= */

/* Navigation */
.project-page .brand {
    font-size: 13px;
}

.project-page .nav-links a {
    font-size: 13px;
}

.project-page .nav-cta {
    font-size: 12px;
}


/* Small section labels */
.project-page .eyebrow {
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.28em;
}


/* Back to work */
.project-back {
    font-size: 13px;
}


/* ================= HERO ================= */

.project-hero h1 {
    font-size: clamp(82px, 8vw, 118px);
}

.project-lead {
    max-width: 650px;

    font-size: 18px;
    line-height: 1.65;
}

.project-tags span {
    padding: 7px 12px;

    font-size: 11px;
}


/* Project info on right */

.project-meta span {
    font-size: 9px;
}

.project-meta p {
    font-size: 12px;
    line-height: 1.6;
}


/* ================= INTRO ================= */

.case-intro h2,
.case-section-heading h2,
.development-section h2 {
    font-size: clamp(46px, 4.5vw, 62px);
}

.case-large-text {
    font-size: 24px !important;
    line-height: 1.45 !important;
}

.case-intro-copy p,
.case-text-columns p,
.design-feature p,
.feature-list p,
.development-section p {
    font-size: 14px;
    line-height: 1.75;
}


/* ================= RESEARCH ================= */

.research-stats strong {
    font-size: 34px;
}

.research-stats span {
    font-size: 10px;
    line-height: 1.5;
}

.case-text-columns h3 {
    font-size: 29px;
    line-height: 1.15;
}


/* ================= DESIGN PROCESS ================= */

.case-number {
    font-size: 15px;
}

.design-feature h3 {
    margin-bottom: 16px;

    font-size: 29px;
    line-height: 1.15;
}


/* ================= FEATURES ================= */

.feature-list article > span {
    font-size: 15px;
}

.feature-list h3 {
    font-size: 17px;
}

.feature-list p {
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   DEVELOPMENT
========================================================= */

.development-section {
    width: min(calc(100% - 64px), var(--case-content));
    margin: 0 auto;
    padding: 120px 0;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 110px;
    align-items: start;

    border-top: 1px solid var(--line);
}

.development-section h2 {
    margin: 0;
    max-width: 420px;

    color: var(--text);

    font-size: clamp(48px, 5vw, 68px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.development-section h2 em {
    color: var(--cream);
}

.development-section > div:last-child {
    padding-top: 28px;
}

.development-section .case-large-text {
    margin: 0 0 24px;

    color: var(--text) !important;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px !important;
    line-height: 1.45 !important;
}

.development-section p {
    margin: 0 0 18px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.75;
}

.development-section .btn {
    margin-top: 18px;
}


/* =========================================================
   BUTTON
========================================================= */

.project-page .btn {
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 0 21px;

    border: 1px solid var(--line-strong);
    border-radius: 999px;

    color: var(--text);
    background: transparent;

    font-size: 12px;

    transition:
        color .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}

.project-page .btn:hover {
    color: #080e17;
    background: var(--cream);
    border-color: var(--cream);

    box-shadow:
        0 0 25px rgba(223, 197, 178, .14),
        0 0 60px rgba(223, 197, 178, .06);

    transform: translateY(-2px);
}


/* =========================================================
   REFLECTION
========================================================= */

.reflection-section {
    width: min(calc(100% - 64px), var(--case-content));
    margin: 0 auto;
    padding: 0 0 120px;
}

.reflection-card {
    min-height: 390px;

    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 75px 80px;

    border: 1px solid var(--line-strong);
    border-radius: 18px;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(223, 197, 178, .07),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            rgba(255,255,255,.018),
            rgba(255,255,255,.005)
        );

    text-align: center;
}

/* Decorative orbit */

.reflection-card::before {
    content: "";

    position: absolute;
    width: 460px;
    height: 460px;

    right: -260px;
    bottom: -310px;

    border: 1px solid rgba(223, 197, 178, .14);
    border-radius: 50%;

    pointer-events: none;
}

.reflection-card::after {
    content: "";

    position: absolute;
    width: 300px;
    height: 300px;

    left: -220px;
    top: -200px;

    border: 1px solid rgba(223, 197, 178, .08);
    border-radius: 50%;

    pointer-events: none;
}

.reflection-star {
    margin-bottom: 22px;

    color: var(--cream);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;

    text-shadow: 0 0 18px rgba(223, 197, 178, .45);
}

.reflection-section .eyebrow {
    margin-bottom: 24px;
}

.reflection-section blockquote {
    max-width: 690px;

    margin: 0 auto 27px;

    color: var(--text);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.reflection-section blockquote em {
    color: var(--cream);
}

.reflection-section > p,
.reflection-card > p:last-child {
    max-width: 580px;

    margin: 0 auto;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   NEXT PROJECT
========================================================= */

.next-project {
    width: min(calc(100% - 64px), var(--case-content));
    margin: 0 auto;

    padding: 100px 0 115px;

    border-top: 1px solid var(--line);
}

.next-project .eyebrow {
    margin-bottom: 34px;
}

.next-project > a {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 0 28px;

    border-bottom: 1px solid var(--line);

    transition:
        border-color .35s ease,
        padding .35s ease;
}

.next-project > a span {
    color: var(--text);

    font-size: clamp(64px, 5vw, 64px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.065em;

    transition:
        color .35s ease,
        text-shadow .35s ease,
        transform .35s ease;
}

.next-project > a::after {
    content: "↗";

    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--line-strong);
    border-radius: 50%;

    font-size: 21px;

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}

.next-project > a:hover {
    border-color: rgba(223, 197, 178, .5);
}

.next-project > a:hover span {
    color: var(--cream);

    text-shadow: 0 0 35px rgba(223, 197, 178, .09);

    transform: translateX(10px);
}

.next-project > a:hover::after {
    background: transparent;

    border-color: rgba(223, 197, 178, .45);

    box-shadow:
        0 0 18px rgba(223, 197, 178, .12),
        0 0 38px rgba(223, 197, 178, .07);

    transform: rotate(45deg);
}


/* =========================================================
   PROJECT FOOTER
========================================================= */

.project-page footer {
    width: min(calc(100% - 64px), var(--content));

    margin: 0 auto;

    padding: 38px 0 45px;

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 25px;

    border-top: 1px solid var(--line);
}

.project-page footer .brand {
    grid-column: 1;
}

.project-page footer > p {
    grid-column: 1;

    margin: 7px 0 0;

    color: #707781;

    font-size: 10px;
}

.project-page footer > div {
    grid-column: 2;
    grid-row: 1;

    display: flex;
    gap: 22px;
}

.project-page footer > div a {
    position: relative;

    color: #999fa7;

    font-size: 10px;

    transition: color .25s ease;
}

.project-page footer > div a:hover {
    color: var(--cream);
}

.project-page footer small {
    grid-column: 2;

    color: #5e6670;

    font-size: 9px;

    text-align: right;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .development-section {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 90px 0;
    }

    .development-section > div:last-child {
        padding-top: 0;
    }

    .reflection-card {
        min-height: 350px;

        padding: 60px 40px;
    }

    .next-project {
        padding: 80px 0 90px;
    }

    .next-project > a span {
          font-size: 48px;
    }
}


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

@media (max-width: 560px) {

    .development-section,
    .reflection-section,
    .next-project {
        width: calc(100% - 32px);
    }

    .development-section {
        padding: 70px 0;
    }

    .development-section h2 {
        font-size: 44px;
    }

    .development-section .case-large-text {
        font-size: 20px !important;
    }

    .development-section p {
        font-size: 13px;
    }


    .reflection-section {
        padding-bottom: 80px;
    }

    .reflection-card {
        min-height: 320px;

        padding: 50px 25px;

        border-radius: 14px;
    }

    .reflection-section blockquote {
        font-size: 34px;
    }

    .reflection-card > p:last-child {
        font-size: 11px;
    }


    .next-project {
        padding: 65px 0 75px;
    }

    .next-project > a {
        gap: 20px;
    }

    .next-project > a span {
        font-size: 38px;
    }

    .next-project > a::after {
        width: 48px;
        height: 48px;

        flex-basis: 48px;

        font-size: 17px;
    }


    .project-page footer {
        width: calc(100% - 32px);

        grid-template-columns: 1fr;

        padding: 32px 0 40px;
    }

    .project-page footer .brand,
    .project-page footer > p,
    .project-page footer > div,
    .project-page footer small {
        grid-column: 1;
        grid-row: auto;
    }

    .project-page footer > div {
        margin-top: 20px;

        flex-wrap: wrap;
    }

    .project-page footer small {
        text-align: left;
    }

}

/* =========================================================
   EQ SOLUTIONS
========================================================= */

.eqsolutions-page .eq-hero-visual,
.eqsolutions-page .case-intro,
.eqsolutions-page .eq-direction,
.eqsolutions-page .eq-redesign,
.eqsolutions-page .eq-build,
.eqsolutions-page .eq-result,
.eqsolutions-page .eq-next {
    width: min(1100px, calc(100% - 80px));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.eqsolutions-page .eq-hero-visual {
    padding: 60px 0 120px;
}

.eqsolutions-page .eq-browser {
    overflow: hidden;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;

    background: rgba(255,255,255,.02);

    box-shadow: 0 50px 100px rgba(0,0,0,.28);
}

.eqsolutions-page .eq-browser-top {
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 18px;

    border-bottom: 1px solid rgba(255,255,255,.09);
}

.eqsolutions-page .browser-dots {
    display: flex;
    gap: 6px;
}

.eqsolutions-page .browser-dots span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: rgba(244,239,233,.35);
}

.eqsolutions-page .browser-label {
    color: rgba(244,239,233,.35);

    font-size: 8px;
    letter-spacing: .18em;
}

.eqsolutions-page .eq-browser img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================================
   SHARED EQ TITLES
========================================================= */

.eqsolutions-page .case-intro h2,
.eqsolutions-page .eq-section-heading h2,
.eqsolutions-page .eq-redesign-heading h2,
.eqsolutions-page .eq-build-heading h2,
.eqsolutions-page .eq-result h2 {
    margin: 14px 0 0;

    color: #f4efe9;

    font-size: clamp(42px, 5vw, 70px);
    line-height: .98;
    letter-spacing: -.055em;

    font-weight: 400;
}

.eqsolutions-page .case-intro h2 em,
.eqsolutions-page .eq-section-heading h2 em,
.eqsolutions-page .eq-redesign-heading h2 em,
.eqsolutions-page .eq-build-heading h2 em,
.eqsolutions-page .eq-result h2 em {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;

    color: #d8bca8;
}


/* =========================================================
   01 / BRIEF
========================================================= */

.eqsolutions-page .case-intro {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: clamp(60px, 9vw, 130px);

    padding: 120px 0;

    border-top: 1px solid rgba(255,255,255,.11);
}

.eqsolutions-page .case-intro-copy {
    padding-top: 30px;
}

.eqsolutions-page .case-intro-copy h3 {
    max-width: 480px;

    margin: 0 0 28px;

    color: #f4efe9;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 400;
}

.eqsolutions-page .case-intro-copy p {
    max-width: 520px;

    margin: 0 0 18px;

    color: rgba(244,239,233,.58);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   02 / DIRECTION
========================================================= */

.eqsolutions-page .eq-direction {
    padding: 120px 0;

    border-top: 1px solid rgba(255,255,255,.11);
}

.eqsolutions-page .eq-section-heading {
    max-width: 790px;
}

.eqsolutions-page .eq-section-heading > p:last-child {
    max-width: 540px;

    margin: 30px 0 0;

    color: rgba(244,239,233,.58);

    font-size: 14px;
    line-height: 1.75;
}

.eqsolutions-page .eq-direction-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    margin-top: 80px;

    border-top: 1px solid rgba(255,255,255,.11);
    border-bottom: 1px solid rgba(255,255,255,.11);
}

.eqsolutions-page .eq-direction-grid article {
    min-height: 300px;

    padding: 32px 35px 42px 0;
}

.eqsolutions-page .eq-direction-grid article + article {
    padding-left: 35px;

    border-left: 1px solid rgba(255,255,255,.11);
}

.eqsolutions-page .eq-direction-grid article > span {
    color: #d8bca8;

    font-size: 9px;
    letter-spacing: .2em;
}

.eqsolutions-page .eq-direction-line {
    width: 30px;
    height: 1px;

    margin: 55px 0 25px;

    background: #d8bca8;

    opacity: .55;
}

.eqsolutions-page .eq-direction-grid h3 {
    margin: 0 0 14px;

    color: #f4efe9;

    font-size: 19px;
    font-weight: 500;
}

.eqsolutions-page .eq-direction-grid p {
    max-width: 270px;

    margin: 0;

    color: rgba(244,239,233,.5);

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   03 / REDESIGN
========================================================= */

.eqsolutions-page .eq-redesign {
    padding: 120px 0;
}

.eqsolutions-page .eq-redesign-heading {
    max-width: 800px;

    margin-bottom: 75px;
}

.eqsolutions-page .eq-redesign-showcase {
    position: relative;

    padding: 60px;

    border: 1px solid rgba(255,255,255,.11);
    border-radius: 20px;

    background:
        radial-gradient(
            circle at 50% 25%,
            rgba(216,188,168,.06),
            transparent 45%
        ),
        rgba(255,255,255,.015);
}

.eqsolutions-page .eq-showcase-label {
    display: flex;
    justify-content: space-between;

    margin-bottom: 30px;

    color: #d8bca8;

    font-size: 9px;
    letter-spacing: .18em;
}

.eqsolutions-page .eq-showcase-label p {
    margin: 0;

    color: rgba(244,239,233,.35);
}

.eqsolutions-page .eq-screen {
    overflow: hidden;

    border-radius: 10px;

    box-shadow: 0 35px 70px rgba(0,0,0,.35);
}

.eqsolutions-page .eq-screen img {
    display: block;

    width: 100%;
    height: auto;

    transition: transform .5s ease;
}

.eqsolutions-page .eq-redesign-showcase:hover img {
    transform: scale(1.015);
}


/* REDESIGN DETAILS */

.eqsolutions-page .eq-redesign-details {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    margin-top: 55px;

    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.eqsolutions-page .eq-redesign-details > div {
    padding: 38px 35px 42px 0;
}

.eqsolutions-page .eq-redesign-details > div + div {
    padding-left: 35px;

    border-left: 1px solid rgba(255,255,255,.1);
}

.eqsolutions-page .detail-number {
    display: block;

    margin-bottom: 32px;

    color: #d8bca8;

    font-size: 9px;
    letter-spacing: .18em;
}

.eqsolutions-page .eq-redesign-details h3 {
    margin: 0 0 12px;

    color: #f4efe9;

    font-size: 18px;
    font-weight: 500;
}

.eqsolutions-page .eq-redesign-details p {
    max-width: 270px;

    margin: 0;

    color: rgba(244,239,233,.5);

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   04 / DESIGN + DEVELOPMENT
========================================================= */

.eqsolutions-page .eq-build {
    padding: 120px 0;

    border-top: 1px solid rgba(255,255,255,.11);
}

.eqsolutions-page .eq-build-heading {
    max-width: 780px;

    margin-bottom: 80px;
}

.eqsolutions-page .eq-build-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    border-top: 1px solid rgba(255,255,255,.11);
    border-bottom: 1px solid rgba(255,255,255,.11);
}

.eqsolutions-page .eq-build-card {
    min-height: 360px;

    padding: 48px 60px 48px 0;
}

.eqsolutions-page .eq-build-card + .eq-build-card {
    padding-left: 60px;

    border-left: 1px solid rgba(255,255,255,.11);
}

.eqsolutions-page .eq-build-card > span {
    color: #d8bca8;

    font-size: 9px;
    letter-spacing: .2em;
}

.eqsolutions-page .eq-build-card h3 {
    max-width: 380px;

    margin: 60px 0 20px;

    color: #f4efe9;

    font-size: 27px;
    line-height: 1.15;

    font-weight: 400;
}

.eqsolutions-page .eq-build-card p {
    max-width: 430px;

    margin: 0;

    color: rgba(244,239,233,.52);

    font-size: 13px;
    line-height: 1.75;
}

.eqsolutions-page .eq-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 28px;
}

.eqsolutions-page .eq-tags span {
    padding: 8px 12px;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;

    color: rgba(244,239,233,.7);

    font-size: 9px;
}


/* =========================================================
   RESULT
========================================================= */

.eqsolutions-page .eq-result {
    position: relative;

    margin-top: 30px;
    margin-bottom: 130px;

    padding: 100px 60px;

    overflow: hidden;

    text-align: center;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(216,188,168,.07),
            transparent 40%
        ),
        rgba(255,255,255,.015);
}

.eqsolutions-page .eq-result::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -270px;
    bottom: -290px;

    border: 1px solid rgba(216,188,168,.09);
    border-radius: 50%;
}

.eqsolutions-page .eq-result-number {
    margin-bottom: 25px;

    color: #d8bca8;
}

.eqsolutions-page .eq-result h2 {
    max-width: 800px;

    margin: 20px auto 28px;
}

.eqsolutions-page .eq-result > p:last-child {
    max-width: 650px;

    margin: 0 auto;

    color: rgba(244,239,233,.55);

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   NEXT
========================================================= */

.eqsolutions-page .eq-next {
    padding: 70px 0 90px;

    border-top: 1px solid rgba(255,255,255,.11);
    border-bottom: 1px solid rgba(255,255,255,.11);
}

.eqsolutions-page .eq-next > .eyebrow {
    margin-bottom: 30px;
}

.eqsolutions-page .eq-next > a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    color: #f4efe9;

    text-decoration: none;
}

.eqsolutions-page .eq-next > a > span {
    font-size: clamp(42px, 5vw, 64px);
    letter-spacing: -.05em;

    transition:
        color .35s ease,
        transform .35s ease;
}

.eqsolutions-page .eq-next > a::after {
    content: "↗";

    display: grid;
    place-items: center;

    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;

    color: #d8bca8;

    transition:
        transform .35s ease,
        background .35s ease;
}

.eqsolutions-page .eq-next > a:hover > span {
    color: #d8bca8;

    transform: translateX(8px);
}

.eqsolutions-page .eq-next > a:hover::after {
    transform: rotate(45deg);

    background: rgba(216,188,168,.07);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .eqsolutions-page .eq-hero-visual,
    .eqsolutions-page .case-intro,
    .eqsolutions-page .eq-direction,
    .eqsolutions-page .eq-redesign,
    .eqsolutions-page .eq-build,
    .eqsolutions-page .eq-result,
    .eqsolutions-page .eq-next {
        width: min(720px, calc(100% - 48px));
    }

    .eqsolutions-page .case-intro {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .eqsolutions-page .case-intro-copy {
        padding-top: 0;
    }

    .eqsolutions-page .eq-direction-grid,
    .eqsolutions-page .eq-redesign-details {
        grid-template-columns: 1fr;
    }

    .eqsolutions-page .eq-direction-grid article,
    .eqsolutions-page .eq-redesign-details > div {
        padding: 35px 0;
    }

    .eqsolutions-page .eq-direction-grid article + article,
    .eqsolutions-page .eq-redesign-details > div + div {
        padding-left: 0;

        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.1);
    }

    .eqsolutions-page .eq-direction-grid p,
    .eqsolutions-page .eq-redesign-details p {
        max-width: 500px;
    }

    .eqsolutions-page .eq-build-grid {
        grid-template-columns: 1fr;
    }

    .eqsolutions-page .eq-build-card,
    .eqsolutions-page .eq-build-card + .eq-build-card {
        min-height: auto;

        padding: 45px 0;
    }

    .eqsolutions-page .eq-build-card + .eq-build-card {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.1);
    }

}


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

@media (max-width: 600px) {

    .eqsolutions-page .eq-hero-visual,
    .eqsolutions-page .case-intro,
    .eqsolutions-page .eq-direction,
    .eqsolutions-page .eq-redesign,
    .eqsolutions-page .eq-build,
    .eqsolutions-page .eq-result,
    .eqsolutions-page .eq-next {
        width: calc(100% - 36px);
    }

    .eqsolutions-page .eq-hero-visual {
        padding: 40px 0 80px;
    }

    .eqsolutions-page .case-intro,
    .eqsolutions-page .eq-direction,
    .eqsolutions-page .eq-redesign,
    .eqsolutions-page .eq-build {
        padding: 80px 0;
    }

    .eqsolutions-page .case-intro h2,
    .eqsolutions-page .eq-section-heading h2,
    .eqsolutions-page .eq-redesign-heading h2,
    .eqsolutions-page .eq-build-heading h2,
    .eqsolutions-page .eq-result h2 {
        font-size: 39px;
    }

    .eqsolutions-page .eq-redesign-showcase {
        padding: 20px;
    }

    .eqsolutions-page .eq-showcase-label {
        margin-bottom: 18px;
    }

    .eqsolutions-page .eq-build-card h3 {
        margin-top: 35px;

        font-size: 23px;
    }

    .eqsolutions-page .eq-result {
        padding: 70px 25px;

        margin-bottom: 90px;
    }

    .eqsolutions-page .eq-next {
        padding: 55px 0 70px;
    }

    .eqsolutions-page .eq-next > a > span {
        font-size: 39px;
    }

    .eqsolutions-page .eq-next > a::after {
        width: 52px;
        height: 52px;

        flex-basis: 52px;
    }

}
/* =========================================================
   EQ — CLIENT COLLABORATION
========================================================= */

.eqsolutions-page .eq-client-collaboration {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 70px;

    margin-top: 80px;
    padding: 45px 0;

    border-top: 1px solid rgba(255,255,255,.11);
    border-bottom: 1px solid rgba(255,255,255,.11);
}

.eqsolutions-page .eq-client-collaboration > .eyebrow {
    margin: 5px 0 0;
}

.eqsolutions-page .eq-client-collaboration > div {
    max-width: 580px;
}

.eqsolutions-page .eq-client-collaboration h3 {
    margin: 0 0 22px;

    color: #f4efe9;

    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.08;
    letter-spacing: -.035em;

    font-weight: 400;
}

.eqsolutions-page .eq-client-collaboration h3 em {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;

    color: #d8bca8;
}

.eqsolutions-page .eq-client-collaboration p:not(.eyebrow) {
    margin: 0;

    color: rgba(244,239,233,.55);

    font-size: 14px;
    line-height: 1.75;
}


@media (max-width: 700px) {

    .eqsolutions-page .eq-client-collaboration {
        grid-template-columns: 1fr;
        gap: 30px;

        margin-top: 55px;
        padding: 35px 0;
    }

}
/* =========================================================
   EQ SOLUTIONS — REDESIGNED CASE STUDY
========================================================= */

.eqsolutions-page .eq-new-direction,
.eqsolutions-page .eq-before-after,
.eqsolutions-page .eq-changes,
.eqsolutions-page .eq-new-build,
.eqsolutions-page .eq-new-result,
.eqsolutions-page .eq-next-project {
    width: min(1100px, calc(100% - 80px));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   SHARED TYPOGRAPHY
========================================================= */

.eqsolutions-page .eq-new-direction h2,
.eqsolutions-page .eq-before-after h2,
.eqsolutions-page .eq-changes h2,
.eqsolutions-page .eq-new-build h2,
.eqsolutions-page .eq-new-result h2 {
    margin: 0;

    color: #f4efe9;

    font-size: clamp(44px, 5vw, 70px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 400;
}

.eqsolutions-page .eq-new-direction h2 em,
.eqsolutions-page .eq-before-after h2 em,
.eqsolutions-page .eq-changes h2 em,
.eqsolutions-page .eq-new-build h2 em,
.eqsolutions-page .eq-new-result h2 em,
.eqsolutions-page .eq-meeting h3 em {
    color: #d8bca8;

    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}


/* =========================================================
   02 / DIRECTION
========================================================= */

.eqsolutions-page .eq-new-direction {
    padding: 120px 0;

    border-top: 1px solid rgba(255, 255, 255, .11);
}

.eqsolutions-page .eq-new-heading > .eyebrow {
    margin-bottom: 25px;
}

.eqsolutions-page .eq-new-heading-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;

    gap: 90px;

    align-items: end;
}

.eqsolutions-page .eq-new-heading-grid > p {
    max-width: 430px;

    margin: 0 0 5px;

    color: rgba(244, 239, 233, .56);

    font-size: 14px;
    line-height: 1.8;
}


/* CLIENT MEETING */

.eqsolutions-page .eq-meeting {
    display: grid;

    grid-template-columns: 100px .8fr 1fr;

    gap: 50px;

    margin-top: 100px;
    padding: 55px 0;

    border-top: 1px solid rgba(255, 255, 255, .11);
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.eqsolutions-page .eq-meeting-number {
    display: flex;
    flex-direction: column;

    gap: 22px;
}

.eqsolutions-page .eq-meeting-number > span {
    color: #d8bca8;

    font-size: 10px;
    letter-spacing: .2em;
}

.eqsolutions-page .eq-meeting-number > div {
    width: 1px;
    height: 80px;

    background: linear-gradient(
        to bottom,
        rgba(216, 188, 168, .7),
        transparent
    );
}

.eqsolutions-page .eq-meeting-title .eyebrow {
    margin-bottom: 20px;
}

.eqsolutions-page .eq-meeting-title h3 {
    margin: 0;

    color: #f4efe9;

    font-size: clamp(29px, 3vw, 43px);
    line-height: 1.05;
    letter-spacing: -.04em;

    font-weight: 400;
}

.eqsolutions-page .eq-meeting-copy p {
    max-width: 470px;

    margin: 0 0 18px;

    color: rgba(244, 239, 233, .55);

    font-size: 13px;
    line-height: 1.8;
}


/* PRINCIPLES */

.eqsolutions-page .eq-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 70px;

    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.eqsolutions-page .eq-principles article {
    min-height: 270px;

    padding: 35px 38px 40px 0;
}

.eqsolutions-page .eq-principles article + article {
    padding-left: 38px;

    border-left: 1px solid rgba(255, 255, 255, .1);
}

.eqsolutions-page .eq-principles article > span {
    display: block;

    margin-bottom: 65px;

    color: #d8bca8;

    font-size: 9px;
    letter-spacing: .18em;
}

.eqsolutions-page .eq-principles h3 {
    margin: 0 0 13px;

    color: #f4efe9;

    font-size: 19px;
    font-weight: 500;
}

.eqsolutions-page .eq-principles p {
    max-width: 280px;

    margin: 0;

    color: rgba(244, 239, 233, .48);

    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   03 / BEFORE AFTER
========================================================= */

/* =========================================================
   EQ SOLUTIONS — 03 BEFORE / AFTER
========================================================= */

.eqsolutions-page .eq-compare-section {
    width: min(1100px, calc(100% - 80px));

    margin: 0 auto;
    padding: 130px 0;

    border-top: 1px solid rgba(255, 255, 255, .11);
}


/* =========================================================
   HEADING
========================================================= */

.eqsolutions-page .eq-compare-heading {
    margin-bottom: 70px;
}

.eqsolutions-page .eq-compare-heading > .eyebrow {
    margin-bottom: 25px;
}

.eqsolutions-page .eq-compare-heading-grid {
    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 90px;

    align-items: end;
}

.eqsolutions-page .eq-compare-heading h2 {
    margin: 0;

    color: #f4efe9;

    font-size: clamp(44px, 5vw, 70px);
    line-height: .98;
    letter-spacing: -.055em;

    font-weight: 400;
}

.eqsolutions-page .eq-compare-heading h2 em {
    color: #d8bca8;

    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}

.eqsolutions-page .eq-compare-intro {
    max-width: 430px;
}

.eqsolutions-page .eq-compare-intro p {
    margin: 0;

    color: rgba(244, 239, 233, .55);

    font-size: 14px;
    line-height: 1.8;
}

.eqsolutions-page .eq-compare-intro > span {
    display: block;

    margin-top: 25px;

    color: #d8bca8;

    font-size: 8px;
    letter-spacing: .2em;
}


/* =========================================================
   COMPARISON
========================================================= */

.eqsolutions-page .eq-comparison {
    --position: 50%;

    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 16px;

    background: #0b1119;

    user-select: none;
}


/* BOTH IMAGES */

.eqsolutions-page .eq-comparison-after,
.eqsolutions-page .eq-comparison-before {
    position: absolute;

    inset: 0;

    overflow: hidden;
}

.eqsolutions-page .eq-comparison-after img,
.eqsolutions-page .eq-comparison-before img {
    position: absolute;

    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    pointer-events: none;
}


/* =========================================================
   BEFORE
========================================================= */

.eqsolutions-page .eq-comparison-before {
    z-index: 2;

    width: var(--position);

    border-right: 1px solid rgba(216, 188, 168, .7);
}

/*
IMPORTANT:
The before image itself must remain the full width of the
comparison container. Otherwise it will shrink while dragging.
*/

.eqsolutions-page .eq-comparison-before img {
    width: calc(100vw);
    max-width: none;
}

/* Use container width instead of viewport width where supported */

.eqsolutions-page .eq-comparison-before img {
    width: min(1100px, calc(100vw - 80px));
}


/* =========================================================
   LABELS
========================================================= */

.eqsolutions-page .eq-comparison-label {
    position: absolute;

    z-index: 5;

    top: 25px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 10px 14px;

    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 999px;

    background: rgba(6, 13, 22, .82);

    backdrop-filter: blur(10px);

    color: #f4efe9;
}

.eqsolutions-page .eq-comparison-label > span {
    display: grid;
    place-items: center;

    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: rgba(216, 188, 168, .12);

    color: #d8bca8;

    font-size: 8px;
}

.eqsolutions-page .eq-comparison-label div {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.eqsolutions-page .eq-comparison-label strong {
    font-size: 8px;
    letter-spacing: .16em;

    font-weight: 500;
}

.eqsolutions-page .eq-comparison-label small {
    color: rgba(244, 239, 233, .45);

    font-size: 8px;
}

.eqsolutions-page .eq-before-label {
    left: 25px;
}

.eqsolutions-page .eq-after-label {
    right: 25px;
}


/* =========================================================
   DIVIDER
========================================================= */

.eqsolutions-page .eq-comparison-divider {
    position: absolute;

    z-index: 10;

    top: 0;
    bottom: 0;
    left: var(--position);

    width: 1px;

    transform: translateX(-50%);

    background: rgba(216, 188, 168, .8);

    pointer-events: none;
}


/* HANDLE */

.eqsolutions-page .eq-comparison-handle {
    position: absolute;

    top: 50%;
    left: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    width: 58px;
    height: 58px;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(216, 188, 168, .55);
    border-radius: 50%;

    background: #07101a;

    color: #d8bca8;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .3);

    font-size: 11px;
}


/* tiny dots */

.eqsolutions-page .eq-comparison-handle::after {
    content: "";

    position: absolute;

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: #d8bca8;
}


/* =========================================================
   ACTUAL RANGE INPUT
========================================================= */

.eqsolutions-page .eq-comparison-range {
    position: absolute;

    z-index: 20;

    inset: 0;

    width: 100%;
    height: 100%;

    margin: 0;

    opacity: 0;

    cursor: ew-resize;
}


/* =========================================================
   CONTEXT BELOW
========================================================= */

.eqsolutions-page .eq-compare-context {
    display: grid;

    grid-template-columns: 1fr 90px 1fr;

    gap: 50px;

    margin-top: 65px;
    padding-top: 55px;

    border-top: 1px solid rgba(255, 255, 255, .1);
}

.eqsolutions-page .eq-context-side > span {
    display: block;

    margin-bottom: 30px;

    color: #d8bca8;

    font-size: 8px;
    letter-spacing: .2em;
}

.eqsolutions-page .eq-context-side h3 {
    margin: 0 0 22px;

    color: #f4efe9;

    font-size: clamp(27px, 3vw, 40px);
    line-height: 1.05;
    letter-spacing: -.04em;

    font-weight: 400;
}

.eqsolutions-page .eq-context-side h3 em {
    color: #d8bca8;

    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}

.eqsolutions-page .eq-context-side p {
    max-width: 410px;

    margin: 0;

    color: rgba(244, 239, 233, .5);

    font-size: 13px;
    line-height: 1.8;
}


/* ARROW BETWEEN BOTH */

.eqsolutions-page .eq-context-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.eqsolutions-page .eq-context-arrow span {
    display: grid;
    place-items: center;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(216, 188, 168, .25);
    border-radius: 50%;

    color: #d8bca8;

    font-size: 12px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .eqsolutions-page .eq-compare-section {
        width: min(720px, calc(100% - 48px));

        padding: 100px 0;
    }

    .eqsolutions-page .eq-compare-heading-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .eqsolutions-page .eq-comparison-before img {
        width: min(720px, calc(100vw - 48px));
    }

    .eqsolutions-page .eq-compare-context {
        grid-template-columns: 1fr 60px 1fr;

        gap: 25px;
    }

}


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

@media (max-width: 600px) {

    .eqsolutions-page .eq-compare-section {
        width: calc(100% - 36px);

        padding: 80px 0;
    }

    .eqsolutions-page .eq-compare-heading {
        margin-bottom: 45px;
    }

    .eqsolutions-page .eq-compare-heading h2 {
        font-size: 39px;
    }

    .eqsolutions-page .eq-comparison {
        aspect-ratio: 4 / 3;

        border-radius: 11px;
    }

    .eqsolutions-page .eq-comparison-before img {
        width: calc(100vw - 36px);
    }

    .eqsolutions-page .eq-comparison-label {
        top: 12px;

        padding: 7px 9px;/* =========================================================
   NAVIGATION — SAME AS HOMEPAGE
========================================================= */

.project-page .studio-nav {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 50;

    width: 100%;
    height: 86px;

    padding: 0 clamp(24px, 5vw, 78px);
    margin: 0;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    background:
        linear-gradient(
            to bottom,
            rgba(8, 13, 22, 0.94),
            rgba(8, 13, 22, 0.6),
            transparent
        );

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* BRAND */

.project-page .brand {
    justify-self: start;

    display: flex;
    align-items: center;
    gap: 10px;

    width: max-content;

    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.18em;
}

.project-page .brand img {
    width: 40px;
    height: 40px;

    object-fit: contain;
}

.project-page .brand span {
    font-size: 14px;
}


/* NAV LINKS */

.project-page .nav-links {
    display: flex;
    align-items: center;
    gap: 38px;

    font-size: 14px;
}

.project-page .nav-links a {
    position: relative;
    display: inline-block;

    padding: 10px 2px;

    color: #f4eee9;

    font-size: 14px;
    opacity: 0.72;

    transition:
        color 0.3s ease,
        opacity 0.3s ease,
        text-shadow 0.3s ease,
        transform 0.3s ease;
}


/* ANIMATED LINE */

.project-page .nav-links a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 0;
    height: 1px;

    background: #ead8c9;

    transform: translateX(-50%);

    box-shadow:
        0 0 6px rgba(234, 216, 201, 0.7),
        0 0 14px rgba(234, 216, 201, 0.35);

    transition:
        width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


/* GLOWING DOT */

.project-page .nav-links a::before {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -1px;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #ead8c9;

    opacity: 0;

    transform:
        translateX(-50%)
        scale(0);

    box-shadow:
        0 0 6px rgba(234, 216, 201, 0.9),
        0 0 14px rgba(234, 216, 201, 0.55),
        0 0 24px rgba(234, 216, 201, 0.3);

    transition:
        opacity 0.25s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


/* HOVER */

.project-page .nav-links a:hover {
    opacity: 1;
    color: #ead8c9;

    transform: translateY(-1px);

    text-shadow:
        0 0 8px rgba(234, 216, 201, 0.4),
        0 0 18px rgba(234, 216, 201, 0.18);
}

.project-page .nav-links a:hover::after {
    width: 100%;
}

.project-page .nav-links a:hover::before {
    opacity: 1;

    transform:
        translateX(-50%)
        scale(1);
}


/* NAV CTA */

.project-page .nav-cta {
    justify-self: end;

    display: inline-flex;
    align-items: center;

    padding: 11px 18px;

    border: 1px solid rgba(244, 238, 233, 0.5);
    border-radius: 999px;

    color: #f4eee9;

    font-size: 13px;

    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.project-page .nav-cta:hover {
    border-color: #ead8c9;

    color: #ead8c9;

    background: rgba(234, 216, 201, 0.04);

    box-shadow:
        0 0 12px rgba(234, 216, 201, 0.12),
        0 0 28px rgba(234, 216, 201, 0.06);

    transform: translateY(-1px);
}

.project-page .nav-cta span {
    margin-left: 10px;
}
    }

    .eqsolutions-page .eq-before-label {
        left: 12px;
    }

    .eqsolutions-page .eq-after-label {
        right: 12px;
    }

    .eqsolutions-page .eq-comparison-label > span,
    .eqsolutions-page .eq-comparison-label small {
        display: none;
    }

    .eqsolutions-page .eq-comparison-handle {
        width: 48px;
        height: 48px;
    }

    .eqsolutions-page .eq-compare-context {
        grid-template-columns: 1fr;

        gap: 45px;

        margin-top: 50px;
        padding-top: 45px;
    }

    .eqsolutions-page .eq-context-arrow {
        justify-content: flex-start;
    }

    .eqsolutions-page .eq-context-arrow span {
        transform: rotate(45deg);
    }

}

/* =========================================================
   04 / CHANGES
========================================================= */

.eqsolutions-page .eq-changes {
    display: grid;

    grid-template-columns: .75fr 1.25fr;

    gap: 90px;

    padding: 130px 0;

    border-top: 1px solid rgba(255, 255, 255, .11);
}

.eqsolutions-page .eq-changes-heading .eyebrow {
    margin-bottom: 25px;
}

.eqsolutions-page .eq-changes-list {
    border-top: 1px solid rgba(255, 255, 255, .11);
}

.eqsolutions-page .eq-changes-list article {
    display: grid;

    grid-template-columns: 50px 1fr 1.4fr 30px;

    gap: 25px;

    align-items: center;

    padding: 32px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .11);

    transition: padding .3s ease;
}

.eqsolutions-page .eq-changes-list article:hover {
    padding-left: 8px;
}

.eqsolutions-page .eq-change-number {
    color: #d8bca8;

    font-size: 9px;
    letter-spacing: .18em;
}

.eqsolutions-page .eq-changes-list h3 {
    margin: 0;

    color: #f4efe9;

    font-size: 16px;
    font-weight: 500;
}

.eqsolutions-page .eq-changes-list p {
    margin: 0;

    color: rgba(244, 239, 233, .46);

    font-size: 12px;
    line-height: 1.65;
}

.eqsolutions-page .eq-change-symbol {
    color: rgba(216, 188, 168, .55);

    font-size: 13px;
}


/* =========================================================
   05 / DESIGN DEVELOPMENT
========================================================= */

.eqsolutions-page .eq-new-build {
    padding: 130px 0;

    border-top: 1px solid rgba(255, 255, 255, .11);
}

.eqsolutions-page .eq-build-intro {
    max-width: 700px;

    margin-bottom: 80px;
}

.eqsolutions-page .eq-build-intro .eyebrow {
    margin-bottom: 25px;
}

.eqsolutions-page .eq-build-panels {
    display: grid;

    grid-template-columns: 1fr 1fr;

    border-top: 1px solid rgba(255, 255, 255, .11);
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.eqsolutions-page .eq-build-panels > article {
    min-height: 460px;

    padding: 35px 55px 45px 0;
}

.eqsolutions-page .eq-build-panels > article + article {
    padding-left: 55px;

    border-left: 1px solid rgba(255, 255, 255, .11);
}

.eqsolutions-page .eq-panel-top {
    display: flex;
    justify-content: space-between;

    color: #d8bca8;

    font-size: 8px;
    letter-spacing: .2em;
}

.eqsolutions-page .eq-panel-top span:last-child {
    color: rgba(244, 239, 233, .3);
}

.eqsolutions-page .eq-panel-content {
    margin-top: 110px;
}

.eqsolutions-page .eq-panel-content h3 {
    margin: 0 0 22px;

    color: #f4efe9;

    font-size: clamp(27px, 3vw, 39px);
    line-height: 1.06;
    letter-spacing: -.035em;

    font-weight: 400;
}

.eqsolutions-page .eq-panel-content p {
    max-width: 410px;

    margin: 0;

    color: rgba(244, 239, 233, .5);

    font-size: 13px;
    line-height: 1.75;
}

.eqsolutions-page .eq-panel-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 28px;
}

.eqsolutions-page .eq-panel-tags span {
    padding: 7px 12px;

    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;

    color: rgba(244, 239, 233, .65);

    font-size: 9px;
}


/* =========================================================
   RESULT
========================================================= */

.eqsolutions-page .eq-new-result {
    position: relative;

    margin-top: 30px;
    margin-bottom: 130px;

    padding: 110px 50px;

    overflow: hidden;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(216, 188, 168, .07),
            transparent 38%
        ),
        rgba(255, 255, 255, .012);
}

.eqsolutions-page .eq-result-star {
    display: block;

    margin-bottom: 25px;

    color: #d8bca8;

    font-size: 16px;
}

.eqsolutions-page .eq-new-result > .eyebrow {
    margin-bottom: 20px;
}

.eqsolutions-page .eq-new-result h2 {
    position: relative;

    z-index: 2;

    max-width: 820px;

    margin: 0 auto;
}

.eqsolutions-page .eq-result-copy {
    position: relative;

    z-index: 2;

    max-width: 620px;

    margin: 30px auto 0;

    color: rgba(244, 239, 233, .52);

    font-size: 13px;
    line-height: 1.8;
}

.eqsolutions-page .eq-result-orbit {
    position: absolute;

    border: 1px solid rgba(216, 188, 168, .08);
    border-radius: 50%;

    pointer-events: none;
}

.eqsolutions-page .eq-result-orbit-one {
    width: 430px;
    height: 430px;

    right: -260px;
    bottom: -280px;
}

.eqsolutions-page .eq-result-orbit-two {
    width: 600px;
    height: 230px;

    left: -380px;
    top: -80px;

    transform: rotate(-20deg);
}


/* =========================================================
   NEXT
========================================================= */

.eqsolutions-page .eq-next-project {
    padding: 70px 0 90px;

    border-top: 1px solid rgba(255, 255, 255, .11);
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.eqsolutions-page .eq-next-project > .eyebrow {
    margin-bottom: 30px;
}

.eqsolutions-page .eq-next-project > a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    color: #f4efe9;

    text-decoration: none;
}

.eqsolutions-page .eq-next-project > a > span {
    font-size: clamp(42px, 5vw, 64px);
    letter-spacing: -.05em;

    transition:
        color .35s ease,
        transform .35s ease;
}

.eqsolutions-page .eq-next-project > a::after {
    content: "↗";

    display: grid;
    place-items: center;

    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;

    color: #d8bca8;

    transition:
        transform .35s ease,
        background .35s ease;
}

.eqsolutions-page .eq-next-project > a:hover > span {
    color: #d8bca8;

    transform: translateX(8px);
}

.eqsolutions-page .eq-next-project > a:hover::after {
    transform: rotate(45deg);

    background: rgba(216, 188, 168, .07);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .eqsolutions-page .eq-new-direction,
    .eqsolutions-page .eq-before-after,
    .eqsolutions-page .eq-changes,
    .eqsolutions-page .eq-new-build,
    .eqsolutions-page .eq-new-result,
    .eqsolutions-page .eq-next-project {
        width: min(720px, calc(100% - 48px));
    }

    .eqsolutions-page .eq-new-heading-grid,
    .eqsolutions-page .eq-ba-heading > div {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .eqsolutions-page .eq-meeting {
        grid-template-columns: 70px 1fr;

        gap: 35px;
    }

    .eqsolutions-page .eq-meeting-copy {
        grid-column: 2;
    }

    .eqsolutions-page .eq-principles {
        grid-template-columns: 1fr;
    }

    .eqsolutions-page .eq-principles article,
    .eqsolutions-page .eq-principles article + article {
        min-height: auto;

        padding: 35px 0;
    }

    .eqsolutions-page .eq-principles article + article {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .eqsolutions-page .eq-principles article > span {
        margin-bottom: 30px;
    }

    .eqsolutions-page .eq-ba-before,
    .eqsolutions-page .eq-ba-after {
        width: 100%;
    }

    .eqsolutions-page .eq-changes {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .eqsolutions-page .eq-build-panels {
        grid-template-columns: 1fr;
    }

    .eqsolutions-page .eq-build-panels > article,
    .eqsolutions-page .eq-build-panels > article + article {
        min-height: auto;

        padding: 40px 0;
    }

    .eqsolutions-page .eq-build-panels > article + article {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .11);
    }

    .eqsolutions-page .eq-panel-content {
        margin-top: 65px;
    }
}


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

@media (max-width: 600px) {

    .eqsolutions-page .eq-new-direction,
    .eqsolutions-page .eq-before-after,
    .eqsolutions-page .eq-changes,
    .eqsolutions-page .eq-new-build,
    .eqsolutions-page .eq-new-result,
    .eqsolutions-page .eq-next-project {
        width: calc(100% - 36px);
    }

    .eqsolutions-page .eq-new-direction,
    .eqsolutions-page .eq-before-after,
    .eqsolutions-page .eq-changes,
    .eqsolutions-page .eq-new-build {
        padding: 80px 0;
    }

    .eqsolutions-page .eq-new-direction h2,
    .eqsolutions-page .eq-before-after h2,
    .eqsolutions-page .eq-changes h2,
    .eqsolutions-page .eq-new-build h2,
    .eqsolutions-page .eq-new-result h2 {
        font-size: 39px;
    }

    .eqsolutions-page .eq-meeting {
        display: block;

        margin-top: 65px;
        padding: 40px 0;
    }

    .eqsolutions-page .eq-meeting-number {
        display: none;
    }

    .eqsolutions-page .eq-meeting-copy {
        margin-top: 30px;
    }

    .eqsolutions-page .eq-ba-image {
        padding: 10px;

        border-radius: 12px;
    }

    .eqsolutions-page .eq-ba-transition {
        margin: 35px 0;
    }

    .eqsolutions-page .eq-changes-list article {
        grid-template-columns: 35px 1fr 20px;

        gap: 15px;
    }

    .eqsolutions-page .eq-changes-list article p {
        grid-column: 2 / 4;

        margin-top: -5px;
    }

    .eqsolutions-page .eq-change-symbol {
        grid-column: 3;
        grid-row: 1;
    }

    .eqsolutions-page .eq-new-result {
        padding: 70px 25px;

        margin-bottom: 90px;
    }

    .eqsolutions-page .eq-next-project {
        padding: 55px 0 70px;
    }

    .eqsolutions-page .eq-next-project > a > span {
        font-size: 39px;
    }

    .eqsolutions-page .eq-next-project > a::after {
        width: 52px;
        height: 52px;

        flex-basis: 52px;
    }
}

/* =========================================================
   NAV — MATCH HOMEPAGE EXACTLY
========================================================= */

.project-page .studio-nav .brand span {
    font-size: 14px;
}

.project-page .studio-nav .nav-links {
    font-size: 14px;
}

.project-page .studio-nav .nav-links a {
    font-size: 14px;
}

.project-page .studio-nav .nav-cta {
    font-size: 13px;
}
/* =========================================================
   =========================================================
   OURFIT — REDESIGNED CASE STUDY
   =========================================================
   ========================================================= */


/* =========================================================
   SHARED WIDTH
========================================================= */

.ourfit-page .ourfit-hero-showcase,
.ourfit-page .ourfit-intro,
.ourfit-page .ourfit-discover,
.ourfit-page .ourfit-new-concept,
.ourfit-page .ourfit-product,
.ourfit-page .ourfit-experience,
.ourfit-page .ourfit-reflection,
.ourfit-page .ourfit-next-project {
    width: min(1100px, calc(100% - 80px));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HERO SHOWCASE
========================================================= */

.ourfit-page .ourfit-hero-showcase {
    position: relative;

    min-height: 660px;
    margin-top: 25px;
    margin-bottom: 130px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.11);
    border-radius: 18px;

    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(216,188,168,.13),
            transparent 35%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(112,73,255,.10),
            transparent 45%
        ),
        #0a111b;
}

.ourfit-page .ourfit-hero-showcase::before {
    content: "";

    position: absolute;

    width: 760px;
    height: 760px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -45%);

    border: 1px solid rgba(216,188,168,.12);
    border-radius: 50%;
}

.ourfit-page .ourfit-hero-showcase::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -40%);

    border: 1px solid rgba(216,188,168,.08);
    border-radius: 50%;
}

.ourfit-page .ourfit-hero-glow {
    position: absolute;

    width: 400px;
    height: 400px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgba(216,188,168,.06);

    filter: blur(80px);
}

.ourfit-page .ourfit-hero-phone {
    position: relative;

    z-index: 3;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px 16px 0 0;

    background: #fff;

    box-shadow:
        0 30px 70px rgba(0,0,0,.35);
}

.ourfit-page .ourfit-hero-phone img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top;
}

.ourfit-page .ourfit-phone-center {
    width: 280px;
    height: 545px;

    z-index: 5;
}

.ourfit-page .ourfit-phone-left,
.ourfit-page .ourfit-phone-right {
    width: 225px;
    height: 455px;

    opacity: .72;
}

.ourfit-page .ourfit-phone-left {
    margin-right: -35px;

    transform:
        translateY(35px)
        rotate(-4deg);
}

.ourfit-page .ourfit-phone-right {
    margin-left: -35px;

    transform:
        translateY(35px)
        rotate(4deg);
}

.ourfit-page .ourfit-showcase-label {
    position: absolute;

    right: 25px;
    top: 22px;

    color: rgba(244,239,233,.35);

    font-size: 8px;
    letter-spacing: .2em;
}


/* =========================================================
   THE IDEA
========================================================= */

.ourfit-page .ourfit-intro {
    padding: 0 0 130px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;

    border-bottom: 1px solid rgba(255,255,255,.1);
}

.ourfit-page .ourfit-intro-title .eyebrow {
    margin-bottom: 24px;
}

.ourfit-page .ourfit-intro h2 {
    margin: 0;

    color: #f4efe9;

    font-size: clamp(48px, 5vw, 70px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 400;
}

.ourfit-page .ourfit-intro h2 em {
    display: block;

    color: #d8bca8;

    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}

.ourfit-page .ourfit-intro-copy {
    padding-top: 40px;
}

.ourfit-page .ourfit-question {
    margin: 0 0 30px !important;

    color: #f4efe9 !important;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px !important;
    line-height: 1.4 !important;
}

.ourfit-page .ourfit-intro-copy > p:not(.ourfit-question) {
    max-width: 460px;

    margin: 0 0 18px;

    color: rgba(244,239,233,.52);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   SHARED SECTION HEADINGS
========================================================= */

.ourfit-page .ourfit-section-heading {
    margin-bottom: 70px;
}

.ourfit-page .ourfit-section-heading > .eyebrow {
    margin-bottom: 25px;
}

.ourfit-page .ourfit-section-heading h2 {
    margin: 0;

    color: #f4efe9;

    font-size: clamp(48px, 5vw, 70px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 400;
}

.ourfit-page .ourfit-section-heading h2 em {
    color: #d8bca8;

    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}

.ourfit-page .ourfit-heading-split {
    display: grid;
    grid-template-columns: 1.25fr .75fr;

    gap: 90px;
    align-items: end;
}

.ourfit-page .ourfit-heading-split > p {
    max-width: 420px;

    margin: 0;

    color: rgba(244,239,233,.52);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   01 / DISCOVER
========================================================= */

.ourfit-page .ourfit-discover {
    padding: 130px 0;

    border-bottom: 1px solid rgba(255,255,255,.1);
}

.ourfit-page .ourfit-discover-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;

    gap: 100px;
}

.ourfit-page .ourfit-discover-statement {
    min-height: 350px;

    padding: 40px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255,255,255,.11);
    border-radius: 16px;

    background:
        radial-gradient(
            circle at 10% 100%,
            rgba(216,188,168,.09),
            transparent 40%
        ),
        rgba(255,255,255,.015);
}

.ourfit-page .ourfit-discover-statement > span {
    color: #d8bca8;

    font-size: 8px;
    letter-spacing: .2em;
}

.ourfit-page .ourfit-discover-statement > p {
    max-width: 360px;

    margin: auto 0 18px;

    color: rgba(244,239,233,.48);

    font-size: 14px;
    line-height: 1.7;
}

.ourfit-page .ourfit-discover-statement strong {
    max-width: 390px;

    color: #f4efe9;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    line-height: 1.25;
    font-weight: 400;
}

.ourfit-page .ourfit-discover-copy {
    padding-top: 15px;
}

.ourfit-page .ourfit-discover-copy h3 {
    margin: 0 0 30px;

    color: #f4efe9;

    font-size: 29px;
    font-weight: 400;
    letter-spacing: -.035em;
}

.ourfit-page .ourfit-discover-copy p {
    max-width: 500px;

    margin: 0 0 19px;

    color: rgba(244,239,233,.52);

    font-size: 14px;
    line-height: 1.8;
}


/* RESEARCH STRIP */

.ourfit-page .ourfit-research-strip {
    margin-top: 80px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.ourfit-page .ourfit-research-strip article {
    min-height: 135px;

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ourfit-page .ourfit-research-strip article + article {
    border-left: 1px solid rgba(255,255,255,.1);
}

.ourfit-page .ourfit-research-strip span {
    color: #d8bca8;

    font-size: 9px;
    letter-spacing: .15em;
}

.ourfit-page .ourfit-research-strip p {
    margin: 0;

    color: #f4efe9;

    font-size: 15px;
}


/* =========================================================
   02 / THE CONCEPT
========================================================= */

.ourfit-page .ourfit-new-concept {
    padding: 130px 0;

    border-bottom: 1px solid rgba(255,255,255,.1);
}

.ourfit-page .ourfit-concept-stage {
    display: grid;
    grid-template-columns: 1.15fr .85fr;

    gap: 90px;
    align-items: center;
}


/* PHONE COMPOSITION */

.ourfit-page .ourfit-concept-images {
    position: relative;

    min-height: 610px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.11);
    border-radius: 16px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(216,188,168,.10),
            transparent 42%
        ),
        #0a111b;
}

.ourfit-page .ourfit-concept-images::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(216,188,168,.09);
    border-radius: 50%;
}

.ourfit-page .ourfit-concept-phone {
    position: absolute;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 13px;

    background: #fff;

    box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

.ourfit-page .ourfit-concept-phone img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top;
}

.ourfit-page .phone-one {
    width: 190px;
    height: 390px;

    left: 7%;
    top: 120px;

    transform: rotate(-5deg);

    opacity: .7;
}

.ourfit-page .phone-two {
    width: 235px;
    height: 480px;

    left: 50%;
    top: 60px;

    z-index: 3;

    transform: translateX(-50%);
}

.ourfit-page .phone-three {
    width: 190px;
    height: 390px;

    right: 7%;
    top: 120px;

    transform: rotate(5deg);

    opacity: .7;
}


/* STEPS */

.ourfit-page .ourfit-concept-steps article {
    padding: 30px 0;

    display: grid;
    grid-template-columns: 48px 1fr;

    gap: 20px;

    border-top: 1px solid rgba(255,255,255,.1);
}

.ourfit-page .ourfit-concept-steps article:last-child {
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.ourfit-page .ourfit-concept-steps article > span {
    color: #d8bca8;

    font-size: 9px;
    letter-spacing: .15em;
}

.ourfit-page .ourfit-concept-steps h3 {
    margin: 0 0 12px;

    color: #f4efe9;

    font-size: 22px;
    font-weight: 400;
    letter-spacing: -.025em;
}

.ourfit-page .ourfit-concept-steps p {
    max-width: 380px;

    margin: 0;

    color: rgba(244,239,233,.5);

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   03 / PRODUCT
========================================================= */

.ourfit-page .ourfit-product {
    padding: 130px 0;

    border-bottom: 1px solid rgba(255,255,255,.1);
}

.ourfit-page .ourfit-product-row {
    min-height: 570px;

    margin-top: 45px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;

    overflow: hidden;
}

.ourfit-page .ourfit-product-row + .ourfit-product-row {
    margin-top: 30px;
}


/* VISUAL */

.ourfit-page .ourfit-product-visual {
    position: relative;

    min-height: 570px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(216,188,168,.11),
            transparent 40%
        ),
        #0a111b;
}

.ourfit-page .ourfit-product-visual::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(216,188,168,.08);
    border-radius: 50%;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -45%);
}

.ourfit-page .ourfit-product-visual img {
    position: relative;

    z-index: 2;

    display: block;

    width: auto;
    max-width: 70%;
    height: 500px;

    object-fit: contain;
    object-position: bottom;

    filter: drop-shadow(0 25px 35px rgba(0,0,0,.3));
}

.ourfit-page .ourfit-visual-label {
    position: absolute;

    z-index: 4;

    top: 25px;
    left: 25px;

    color: rgba(244,239,233,.35);

    font-size: 8px;
    letter-spacing: .2em;
}


/* COPY */

.ourfit-page .ourfit-product-copy {
    padding: 65px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: rgba(255,255,255,.012);
}

.ourfit-page .ourfit-product-number {
    margin-bottom: 50px;

    color: rgba(216,188,168,.4);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 60px;
    line-height: 1;
}

.ourfit-page .ourfit-product-copy .eyebrow {
    margin-bottom: 17px;
}

.ourfit-page .ourfit-product-copy h3 {
    margin: 0 0 25px;

    color: #f4efe9;

    font-size: clamp(31px, 3vw, 43px);
    line-height: 1.05;
    letter-spacing: -.045em;
    font-weight: 400;
}

.ourfit-page .ourfit-product-copy h3 em {
    color: #d8bca8;

    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}

.ourfit-page .ourfit-product-copy > p:not(.eyebrow) {
    max-width: 410px;

    margin: 0 0 17px;

    color: rgba(244,239,233,.52);

    font-size: 13px;
    line-height: 1.8;
}

.ourfit-page .ourfit-mini-tags {
    margin-top: 22px;

    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.ourfit-page .ourfit-mini-tags span {
    padding: 7px 12px;

    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;

    color: rgba(244,239,233,.7);

    font-size: 9px;
}


/* =========================================================
   04 / EXPERIENCE
========================================================= */

.ourfit-page .ourfit-experience {
    padding: 130px 0;

    border-bottom: 1px solid rgba(255,255,255,.1);
}

.ourfit-page .ourfit-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    border-top: 1px solid rgba(255,255,255,.1);
    border-left: 1px solid rgba(255,255,255,.1);
}

.ourfit-page .ourfit-feature-grid article {
    min-height: 340px;

    padding: 38px;

    display: flex;
    flex-direction: column;

    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);

    background: rgba(255,255,255,.008);

    transition:
        background .3s ease,
        transform .3s ease;
}

.ourfit-page .ourfit-feature-grid article:hover {
    background: rgba(216,188,168,.025);
}

.ourfit-page .ourfit-feature-top {
    display: flex;
    justify-content: space-between;

    color: rgba(244,239,233,.32);

    font-size: 8px;
    letter-spacing: .18em;
}

.ourfit-page .ourfit-feature-top span:first-child {
    color: #d8bca8;
}

.ourfit-page .ourfit-feature-icon {
    margin: auto 0 35px;

    color: rgba(216,188,168,.6);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 45px;
}

.ourfit-page .ourfit-feature-grid h3 {
    margin: 0 0 13px;

    color: #f4efe9;

    font-size: 24px;
    font-weight: 400;
    letter-spacing: -.03em;
}

.ourfit-page .ourfit-feature-grid p {
    max-width: 410px;

    margin: 0;

    color: rgba(244,239,233,.48);

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   REFLECTION
========================================================= */

.ourfit-page .ourfit-reflection {
    position: relative;

    margin-top: 130px;
    margin-bottom: 130px;

    min-height: 470px;

    padding: 90px 60px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.11);
    border-radius: 16px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(216,188,168,.06),
            transparent 45%
        ),
        #0a111b;
}

.ourfit-page .ourfit-reflection-orbit {
    position: absolute;

    border: 1px solid rgba(216,188,168,.09);
    border-radius: 50%;
}

.ourfit-page .ourfit-reflection .orbit-a {
    width: 600px;
    height: 600px;

    left: -310px;
    bottom: -430px;
}

.ourfit-page .ourfit-reflection .orbit-b {
    width: 480px;
    height: 480px;

    right: -260px;
    top: -330px;
}

.ourfit-page .ourfit-reflection-star {
    margin-bottom: 18px;

    color: #d8bca8;

    font-size: 18px;
}

.ourfit-page .ourfit-reflection blockquote {
    max-width: 800px;

    margin: 25px auto;

    color: #f4efe9;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(37px, 4.5vw, 59px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.ourfit-page .ourfit-reflection blockquote em {
    color: #d8bca8;

    font-weight: 400;
}

.ourfit-page .ourfit-reflection > p:last-child {
    max-width: 600px;

    margin: 0 auto;

    color: rgba(244,239,233,.45);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   NEXT PROJECT
========================================================= */

.ourfit-page .ourfit-next-project {
    padding: 80px 0 100px;
}

.ourfit-page .ourfit-next-project > .eyebrow {
    margin-bottom: 30px;
}

.ourfit-page .ourfit-next-project > a {
    min-height: 125px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);

    color: #f4efe9;

    text-decoration: none;
}

.ourfit-page .ourfit-next-project > a span {
    font-size: clamp(58px, 6vw, 78px);
    letter-spacing: -.055em;
}

.ourfit-page .ourfit-next-project > a::after {
    content: "↗";

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border: 1px solid rgba(216,188,168,.25);
    border-radius: 50%;

    color: #d8bca8;

    font-size: 15px;

    transition:
        background .25s ease,
        transform .25s ease;
}

.ourfit-page .ourfit-next-project > a:hover::after {
    background: rgba(216,188,168,.08);

    transform: rotate(45deg);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .ourfit-page .ourfit-hero-showcase,
    .ourfit-page .ourfit-intro,
    .ourfit-page .ourfit-discover,
    .ourfit-page .ourfit-new-concept,
    .ourfit-page .ourfit-product,
    .ourfit-page .ourfit-experience,
    .ourfit-page .ourfit-reflection,
    .ourfit-page .ourfit-next-project {
        width: min(720px, calc(100% - 48px));
    }


    .ourfit-page .ourfit-hero-showcase {
        min-height: 560px;

        margin-bottom: 100px;
    }

    .ourfit-page .ourfit-phone-center {
        width: 240px;
        height: 470px;
    }

    .ourfit-page .ourfit-phone-left,
    .ourfit-page .ourfit-phone-right {
        width: 180px;
        height: 380px;
    }


    .ourfit-page .ourfit-intro,
    .ourfit-page .ourfit-discover-layout,
    .ourfit-page .ourfit-heading-split,
    .ourfit-page .ourfit-concept-stage {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .ourfit-page .ourfit-intro-copy {
        padding-top: 0;
    }


    .ourfit-page .ourfit-research-strip {
        grid-template-columns: 1fr 1fr;
    }

    .ourfit-page .ourfit-research-strip article:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.1);
    }

    .ourfit-page .ourfit-research-strip article:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,.1);
    }


    .ourfit-page .ourfit-concept-images {
        min-height: 570px;
    }


    .ourfit-page .ourfit-product-row {
        grid-template-columns: 1fr;
    }

    .ourfit-page .ourfit-product-row-reverse .ourfit-product-copy {
        order: 2;
    }

    .ourfit-page .ourfit-product-row-reverse .ourfit-product-visual {
        order: 1;
    }


    .ourfit-page .ourfit-product-copy {
        padding: 55px;
    }

}


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

@media (max-width: 600px) {

    .ourfit-page .ourfit-hero-showcase,
    .ourfit-page .ourfit-intro,
    .ourfit-page .ourfit-discover,
    .ourfit-page .ourfit-new-concept,
    .ourfit-page .ourfit-product,
    .ourfit-page .ourfit-experience,
    .ourfit-page .ourfit-reflection,
    .ourfit-page .ourfit-next-project {
        width: calc(100% - 36px);
    }


    /* HERO */

    .ourfit-page .ourfit-hero-showcase {
        min-height: 470px;

        margin-top: 10px;
        margin-bottom: 80px;

        border-radius: 12px;
    }

    .ourfit-page .ourfit-phone-center {
        width: 185px;
        height: 390px;
    }

    .ourfit-page .ourfit-phone-left,
    .ourfit-page .ourfit-phone-right {
        width: 125px;
        height: 300px;
    }

    .ourfit-page .ourfit-phone-left {
        margin-right: -65px;
    }

    .ourfit-page .ourfit-phone-right {
        margin-left: -65px;
    }


    /* HEADINGS */

    .ourfit-page .ourfit-intro {
        padding-bottom: 80px;
    }

    .ourfit-page .ourfit-intro h2,
    .ourfit-page .ourfit-section-heading h2 {
        font-size: 40px;
    }

    .ourfit-page .ourfit-question {
        font-size: 20px !important;
    }


    /* SECTIONS */

    .ourfit-page .ourfit-discover,
    .ourfit-page .ourfit-new-concept,
    .ourfit-page .ourfit-product,
    .ourfit-page .ourfit-experience {
        padding: 80px 0;
    }

    .ourfit-page .ourfit-section-heading {
        margin-bottom: 45px;
    }


    /* DISCOVER */

    .ourfit-page .ourfit-discover-statement {
        min-height: 300px;

        padding: 28px;
    }

    .ourfit-page .ourfit-discover-statement strong {
        font-size: 23px;
    }

    .ourfit-page .ourfit-research-strip {
        grid-template-columns: 1fr;
    }

    .ourfit-page .ourfit-research-strip article {
        min-height: 100px;
    }

    .ourfit-page .ourfit-research-strip article + article {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.1);
    }


    /* CONCEPT */

    .ourfit-page .ourfit-concept-images {
        min-height: 440px;
    }

    .ourfit-page .phone-one {
        width: 120px;
        height: 290px;

        left: 2%;
        top: 95px;
    }

    .ourfit-page .phone-two {
        width: 165px;
        height: 360px;

        top: 45px;
    }

    .ourfit-page .phone-three {
        width: 120px;
        height: 290px;

        right: 2%;
        top: 95px;
    }

    .ourfit-page .ourfit-concept-steps article {
        grid-template-columns: 35px 1fr;

        gap: 12px;

        padding: 25px 0;
    }


    /* PRODUCT */

    .ourfit-page .ourfit-product-row,
    .ourfit-page .ourfit-product-visual {
        min-height: auto;
    }

    .ourfit-page .ourfit-product-visual {
        height: 460px;
    }

    .ourfit-page .ourfit-product-visual img {
        height: 400px;
    }

    .ourfit-page .ourfit-product-copy {
        padding: 40px 28px;
    }

    .ourfit-page .ourfit-product-number {
        margin-bottom: 35px;

        font-size: 48px;
    }


    /* FEATURES */

    .ourfit-page .ourfit-feature-grid {
        grid-template-columns: 1fr;
    }

    .ourfit-page .ourfit-feature-grid article {
        min-height: 280px;

        padding: 28px;
    }


    /* REFLECTION */

    .ourfit-page .ourfit-reflection {
        min-height: 430px;

        margin-top: 80px;
        margin-bottom: 80px;

        padding: 60px 25px;
    }

    .ourfit-page .ourfit-reflection blockquote {
        font-size: 36px;
    }


    /* NEXT */

    .ourfit-page .ourfit-next-project {
        padding: 60px 0 80px;
    }

    .ourfit-page .ourfit-next-project > a {
        min-height: 100px;
    }

    .ourfit-page .ourfit-next-project > a span {
        font-size: 44px;
    }

    .ourfit-page .ourfit-next-project > a::after {
        width: 48px;
        height: 48px;
    }

}
/* =========================================================
   NEXT PROJECT — SAME TEXT GLOW AS EQ SOLUTIONS
========================================================= */

.project-page .next-project > a span {
    color: #f4efe9 !important;
    font-size: clamp(64px, 5.5vw, 78px);

    transition:
        text-shadow 0.35s ease,
        transform 0.35s ease,
        color 0.35s ease;
}

.project-page .next-project > a:hover span {
    color: #f4efe9 !important;

    text-shadow:
        0 0 6px rgba(244, 239, 233, 0.75),
        0 0 14px rgba(244, 239, 233, 0.45),
        0 0 28px rgba(223, 197, 178, 0.28),
        0 0 45px rgba(223, 197, 178, 0.14) !important;

    transform: translateX(10px);
}
