/* =========================================
   BUSINESS BLUEPRINT - OFFER PAGE
========================================= */

html {
    scroll-behavior: smooth;
}

.bp {
    --bp-max: 1200px;
}

.bp section {
    padding: 90px var(--page-padding);
}

.bp-eyebrow {
    margin-bottom: 16px;

    color: var(--coral);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.bp h1,
.bp h2 {
    color: var(--charcoal);

    font-weight: 900;
    line-height: 1;

    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.bp h2 {
    font-size: clamp(36px, 3.6vw, 56px);
}

.bp-section-head {
    max-width: 760px;
    margin: 0 auto 52px;

    text-align: center;
}

.bp-section-head p:not(.bp-eyebrow) {
    margin-top: 18px;

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

.bp-cta {
    min-height: 68px;

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

    padding: 0 48px;

    border-radius: 100px;

    background-color: var(--coral);
    color: var(--charcoal);

    font-size: 17px;
    font-weight: 700;

    text-transform: uppercase;
    text-decoration: none;

    transition: background-color 0.2s, color 0.2s;
}

.bp-cta:hover {
    background-color: var(--charcoal);
    color: var(--off-white);
}


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

.bp-hero {
    max-width: var(--bp-max);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;

    padding-top: 70px !important;
}

.bp-hero h1 {
    font-size: clamp(44px, 4.6vw, 72px);
}

.bp-lead {
    max-width: 520px;
    margin-top: 26px;

    font-size: 19px;
    font-weight: 500;
    line-height: 1.5;
}

.bp-hero .bp-cta {
    margin-top: 34px;
}

.bp-cta-note {
    margin-top: 14px;

    font-size: 14px;

    opacity: 0.7;
}

/* fanned stack of report pages */

.bp-stack {
    position: relative;

    aspect-ratio: 1 / 1.1;
}

.bp-stack img {
    position: absolute;
    top: 0;

    width: 66%;

    border-radius: 8px;

    box-shadow: 0 18px 40px rgba(34, 31, 32, 0.18);
}

.bp-stack img:nth-child(1) {
    left: 0;

    transform: rotate(-7deg) translateY(4%);
}

.bp-stack img:nth-child(2) {
    left: 17%;

    transform: rotate(-1deg) translateY(1%);
}

.bp-stack img:nth-child(3) {
    left: 34%;

    transform: rotate(5deg);
}

.bp-stack-caption {
    margin-top: 10px;

    text-align: center;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    opacity: 0.6;
}


/* =========================
   THE REALITY
========================= */

.bp-reality {
    background-color: var(--charcoal);
    color: var(--off-white);
}

.bp-reality-inner {
    max-width: 820px;
    margin: 0 auto;
}

.bp-reality h2 {
    color: var(--off-white);

    font-size: clamp(34px, 3.4vw, 52px);
}

.bp-reality p {
    margin-top: 24px;

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

.bp-reality-line {
    color: var(--yellow);

    font-weight: 700;
}


/* =========================
   WHAT YOU GET
========================= */

.bp-parts {
    max-width: var(--bp-max);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.bp-part {
    padding: 26px 24px 28px;

    border: 2px solid var(--charcoal);
    border-radius: 15px;
}

.bp-part-number {
    display: block;

    color: var(--coral);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.bp-part h3 {
    margin-top: 10px;

    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
}

.bp-part p {
    margin-top: 10px;

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

.bp-pillars {
    max-width: var(--bp-max);
    margin: 72px auto 0;
}

.bp-pillars-head {
    margin-bottom: 28px;
}

.bp-pillars-head h3 {
    font-size: clamp(26px, 2.6vw, 36px);
    font-weight: 900;
    line-height: 1;

    text-transform: uppercase;
    letter-spacing: -1px;
}

.bp-pillars-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.bp-pillars-list details {
    border: 2px solid var(--charcoal);
    border-radius: 15px;

    background-color: var(--off-white);
}

.bp-pillars-list summary {
    position: relative;

    display: flex;
    flex-direction: column;
    gap: 4px;

    padding: 20px 56px 20px 24px;

    list-style: none;
    cursor: pointer;
}

.bp-pillars-list summary::-webkit-details-marker {
    display: none;
}

.bp-pillars-list summary > span {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.bp-pillars-list summary small {
    font-size: 14px;

    opacity: 0.7;
}

.bp-pillars-list summary::after {
    content: "+";

    position: absolute;
    inset-inline-end: 20px;
    top: 14px;

    color: var(--coral);

    font-size: 30px;
    line-height: 1;

    transition: transform 0.2s;
}

.bp-pillars-list details[open] summary::after {
    transform: rotate(45deg);
}

.bp-pillars-list details[open] {
    background-color: var(--charcoal);
    color: var(--off-white);
}

.bp-pillar-body {
    padding: 0 24px 22px;
}

.bp-pillar-body p {
    margin-top: 10px;

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

.bp-pillar-body strong {
    color: var(--yellow);
}


/* =========================
   HOW IT WORKS
========================= */

.bp-process {
    background-color: var(--yellow);
}

.bp-steps {
    max-width: var(--bp-max);
    margin: 0 auto;

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

    padding: 0;
    list-style: none;
}

.bp-steps li {
    padding: 28px 26px 30px;

    border-radius: 15px;

    background-color: var(--off-white);
}

.bp-step-number {
    width: 40px;
    height: 40px;

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

    border-radius: 50%;

    background-color: var(--charcoal);
    color: var(--off-white);

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

.bp-steps h3 {
    margin-top: 18px;

    font-size: 20px;
    font-weight: 800;
    line-height: 1.15;
}

.bp-steps p {
    margin-top: 10px;

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


/* =========================
   GUARANTEE
========================= */

.bp-guarantee-inner {
    max-width: var(--bp-max);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.bp-guarantee-main p:not(.bp-eyebrow) {
    max-width: 520px;
    margin-top: 22px;

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

.bp-guarantee-side {
    display: grid;
    gap: 16px;
}

.bp-guarantee-card {
    padding: 26px 28px 28px;

    border-radius: 15px;

    background-color: var(--coral);
    color: var(--charcoal);
}

.bp-guarantee-card:last-child {
    background-color: var(--charcoal);
    color: var(--off-white);
}

.bp-guarantee-card h3 {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;

    text-transform: uppercase;
}

.bp-guarantee-card p {
    margin-top: 10px;

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


/* =========================
   FIT
========================= */

.bp-fit {
    padding-top: 0 !important;
}

.bp-fit-grid {
    max-width: var(--bp-max);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.bp-fit-cta {
    margin-top: 40px;

    text-align: center;
}

.bp-fit-card {
    padding: 34px 36px 36px;

    border: 2px solid var(--charcoal);
    border-radius: 15px;
}

.bp-fit-card h3 {
    margin-bottom: 20px;

    font-size: 24px;
    font-weight: 900;
    line-height: 1;

    text-transform: uppercase;
}

.bp-fit-yes h3 {
    color: var(--charcoal);
}

.bp-fit-no h3 {
    color: var(--coral);
}

.bp-fit-card ul {
    padding: 0;
    list-style: none;
}

.bp-fit-card li {
    position: relative;

    margin-bottom: 12px;
    padding-inline-start: 30px;

    font-size: 16px;
    line-height: 1.4;
}

.bp-fit-card li::before {
    content: "";

    position: absolute;
    inset-inline-start: 0;
    top: 6px;

    width: 12px;
    height: 12px;

    background-color: var(--mint);

    transform: rotate(45deg);
}

.bp-fit-no li::before {
    background-color: var(--coral);
}


/* =========================
   PROOF
========================= */

.bp-proof {
    background-color: var(--blue);
}

.bp-proof .bp-eyebrow {
    color: var(--charcoal);
}

.bp-quotes {
    max-width: var(--bp-max);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bp-quotes blockquote {
    margin: 0;
    padding: 30px 30px 28px;

    display: flex;
    flex-direction: column;

    border-radius: 15px;

    background-color: var(--off-white);
}

.bp-quotes p {
    font-size: 16px;
    line-height: 1.5;
}

.bp-quotes footer {
    margin-top: auto;
    padding-top: 22px;

    display: flex;
    flex-direction: column;
}

.bp-quotes strong {
    font-size: 15px;
}

.bp-quotes span {
    font-size: 13px;

    opacity: 0.7;
}


/* =========================
   FAQ
========================= */

.bp-faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.bp-faq-list details {
    border-top: 1px solid rgba(34, 31, 32, 0.2);
}

.bp-faq-list details:last-child {
    border-bottom: 1px solid rgba(34, 31, 32, 0.2);
}

.bp-faq-list summary {
    position: relative;

    padding: 22px 48px 22px 0;

    font-size: 19px;
    font-weight: 700;

    list-style: none;
    cursor: pointer;
}

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

.bp-faq-list summary::after {
    content: "+";

    position: absolute;
    inset-inline-end: 4px;
    top: 16px;

    color: var(--coral);

    font-size: 30px;
    font-weight: 400;
    line-height: 1;

    transition: transform 0.2s;
}

.bp-faq-list details[open] summary::after {
    transform: rotate(45deg);
}

.bp-faq-list details p {
    max-width: 700px;

    padding: 0 0 24px;

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


/* =========================
   FINAL CTA
========================= */

.bp-final {
    background-color: var(--charcoal);
    color: var(--off-white);

    text-align: center;
}

.bp-final h2 {
    max-width: 820px;
    margin: 0 auto;

    color: var(--off-white);
}

.bp-final p {
    margin-top: 20px;

    font-size: 18px;
}

.bp-final .bp-cta {
    margin-top: 34px;
}


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

@media (max-width: 1100px) {

    .bp-hero,
    .bp-guarantee-inner,
    .bp-start {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .bp-hero-visual {
        max-width: 560px;
    }

    .bp-steps,
    .bp-quotes,
    .bp-parts {
        grid-template-columns: 1fr 1fr;
    }

    .bp-example-grid {
        grid-template-columns: 1fr;
    }

    .bp-timeline {
        grid-template-columns: 1fr;
    }

    .bp-timeline::before {
        display: none;
    }
}


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

@media (max-width: 760px) {

    .bp section {
        padding: 60px 22px;
    }

    .bp-hero h1 {
        font-size: 40px;
    }

    .bp h2 {
        font-size: 34px;
    }

    .bp-cta {
        width: 100%;
    }

    .bp-parts,
    .bp-steps,
    .bp-quotes,
    .bp-fit-grid,
    .bp-example-grid {
        grid-template-columns: 1fr;
    }

    .bp-fit-card {
        padding: 26px 22px 28px;
    }

    .bp-faq-list summary {
        font-size: 17px;
    }
}


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

.bp-stats {
    display: flex;
    gap: 14px;

    margin-top: 28px;
    padding: 0;
    list-style: none;
}

.bp-stats li {
    min-width: 150px;

    padding: 18px 22px 16px;

    border-radius: 15px;

    background-color: var(--charcoal);
    color: var(--off-white);
}

.bp-stats strong {
    display: block;

    color: var(--yellow);

    font-size: 40px;
    font-weight: 900;
    line-height: 1;
}

.bp-stats span {
    display: block;

    margin-top: 6px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bp-cta-light {
    margin-top: 32px;
}


/* =========================
   REAL EXAMPLE
========================= */

.bp-example {
    max-width: var(--bp-max);
    margin: 64px auto 0;
}

.bp-example-head {
    max-width: 760px;
    margin: 0 auto 32px;

    text-align: center;
}

.bp-example-head h3 {
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 800;
    line-height: 1.15;
}

.bp-example-head p:not(.bp-eyebrow) {
    margin-top: 10px;

    font-size: 14px;

    opacity: 0.7;
}

.bp-example-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.bp-example-col {
    position: relative;

    padding: 28px 26px 30px;

    border-radius: 15px;
}

.bp-example-before {
    background-color: var(--charcoal);
    color: var(--off-white);
}

.bp-example-during {
    background-color: var(--yellow);
    color: var(--charcoal);
}

.bp-example-after {
    background-color: var(--coral);
    color: var(--charcoal);
}

/* arrows between the columns */

.bp-example-col + .bp-example-col::before {
    content: "";

    position: absolute;
    top: 50%;
    inset-inline-start: -14px;

    width: 12px;
    height: 12px;

    background-color: var(--charcoal);

    transform: translateY(-50%) rotate(45deg);
}

.bp-example-step {
    display: inline-block;

    margin-bottom: 14px;
    padding: 6px 14px;

    border-radius: 100px;

    background-color: rgba(34, 31, 32, 0.12);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.bp-example-before .bp-example-step {
    background-color: var(--yellow);
    color: var(--charcoal);
}

.bp-example-col h4 {
    margin-bottom: 16px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.bp-example-before h4 {
    color: var(--yellow);
}

.bp-example-col ul {
    padding: 0;
    list-style: none;
}

.bp-example-col li {
    padding: 12px 0;

    border-top: 1px solid rgba(34, 31, 32, 0.18);

    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
}

.bp-example-before li {
    border-top-color: rgba(255, 253, 238, 0.18);
}

.bp-example-note {
    max-width: 700px;
    margin: 22px auto 0;

    text-align: center;

    font-size: 14px;
    line-height: 1.5;

    opacity: 0.7;
}


/* =========================
   TIMELINE (5 steps)
========================= */

.bp-timeline {
    position: relative;

    max-width: var(--bp-max);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;

    padding: 0;
    list-style: none;
}

/* the line that runs through the step numbers */

.bp-timeline::before {
    content: "";

    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;

    height: 2px;

    background-color: var(--charcoal);
}

.bp-timeline li {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.bp-timeline-card {
    width: 100%;

    margin-top: 18px;
    padding: 20px 18px 22px;

    border-radius: 15px;

    background-color: var(--off-white);

    text-align: left;
}

.bp-timeline .bp-step-number {
    position: relative;
    z-index: 1;

    box-shadow: 0 0 0 6px var(--yellow);
}

.bp-timeline h3 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.15;
}

.bp-timeline p {
    margin-top: 10px;

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

.bp-process-note {
    max-width: 640px;
    margin: 44px auto 0;

    text-align: center;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}


/* =========================
   START PAGE (form -> call)
========================= */

.bp-start {
    max-width: var(--bp-max);
    margin: 0 auto;

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

    padding-top: 70px !important;
}

.bp-start h1 {
    font-size: clamp(40px, 4vw, 60px);
}

.bp-form .form-field {
    margin-bottom: 18px;
}

.bp-form label {
    display: block;

    margin-bottom: 7px;

    font-size: 15px;
}

.bp-form label span + span {
    margin-inline-start: 5px;

    color: #696969;

    font-size: 13px;
}

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

.bp-form input,
.bp-form select,
.bp-form textarea {
    width: 100%;

    border: 1px solid var(--charcoal);

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

    font-family: inherit;
    font-size: 16px;

    outline: none;
}

.bp-form input,
.bp-form select {
    height: 46px;

    padding: 0 16px;

    border-radius: 100px;
}

.bp-form textarea {
    min-height: 120px;

    padding: 15px 18px;

    border-radius: 22px;

    resize: vertical;
}

.bp-form input:focus,
.bp-form select:focus,
.bp-form textarea:focus {
    border-width: 2px;
}

.bp-form .bp-cta {
    width: 100%;

    margin-top: 6px;

    border: 0;

    font-family: inherit;

    cursor: pointer;
}

.bp-form .contact-error {
    margin: 0 0 14px;
}

.bp-cta-book {
    margin-top: 24px;
}

@media (max-width: 760px) {

    .bp-stats {
        flex-wrap: wrap;
    }

    .bp-stats li {
        flex: 1 1 calc(50% - 7px);
        min-width: 0;
    }

    .bp-example-col + .bp-example-col::before {
        top: -14px;
        inset-inline-start: 50%;

        transform: translateX(-50%) rotate(45deg);
    }

    .bp-timeline {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .bp-timeline::before {
        display: none;
    }

    .bp-timeline li {
        align-items: flex-start;
    }

    .bp-pillars-list {
        grid-template-columns: 1fr;
    }

    .bp-form .contact-row {
        grid-template-columns: 1fr;
    }
}


/* =========================
   OPTIMIZATION PROJECT PAGE
========================= */

.bp-parts-5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.bp-parts-5 .bp-part {
    padding: 22px 20px 24px;
}

.bp-parts-5 .bp-part h3 {
    font-size: 19px;
}

.bp-parts-5 .bp-part p {
    font-size: 14px;
}

.bp-hero-visual-art svg {
    width: 100%;
    height: auto;
}

.bp-timeline-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.bp-timeline-4::before {
    left: 12.5%;
    right: 12.5%;
}

/* expandable stage cards */

.bp-stage summary {
    list-style: none;
    cursor: pointer;
}

.bp-stage summary::-webkit-details-marker {
    display: none;
}

.bp-stage summary::after {
    content: "+ Read more";

    display: inline-block;

    margin-top: 12px;

    color: var(--coral);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bp-stage[open] summary::after {
    content: "- Close";
}

.bp-stage ul {
    margin-top: 12px;
    padding: 12px 0 0 18px;

    border-top: 1px solid rgba(34, 31, 32, 0.15);
}

.bp-stage li {
    margin-bottom: 6px;

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

.bp-not-included {
    max-width: 820px;
    margin: 44px auto 0;
    padding: 28px 32px 30px;

    border-radius: 15px;

    background-color: var(--off-white);
}

.bp-not-included h3 {
    font-size: 20px;
    font-weight: 900;

    text-transform: uppercase;
}

.bp-not-included p {
    margin-top: 8px;

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

.bp-not-included ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 14px;
    padding: 0;
    list-style: none;
}

.bp-not-included li {
    padding: 7px 14px;

    border: 1px solid rgba(34, 31, 32, 0.3);
    border-radius: 100px;

    font-size: 13px;
    font-weight: 600;
}

.bp-fit-padded {
    padding-top: 90px !important;
}

.bp-projects-grid {
    max-width: var(--bp-max);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bp-project {
    display: flex;
    flex-direction: column;

    color: var(--charcoal);

    text-decoration: none;
}

.bp-project img {
    width: 100%;
    aspect-ratio: 1.5 / 1;

    border-radius: 15px;

    object-fit: cover;

    filter: grayscale(100%);

    transition: filter 0.3s;
}

.bp-project:hover img {
    filter: none;
}

.bp-project-label {
    margin-top: 18px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    opacity: 0.6;
}

.bp-project strong {
    margin-top: 4px;

    font-size: 22px;
    font-weight: 800;
}

.bp-project p {
    margin-top: 8px;

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

.bp-text-link {
    color: var(--charcoal);

    font-size: 16px;
    font-weight: 700;

    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

@media (max-width: 1100px) {

    .bp-parts-5,
    .bp-timeline-4 {
        grid-template-columns: 1fr 1fr;
    }

    .bp-timeline-4::before {
        display: none;
    }

    .bp-projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {

    .bp-parts-5,
    .bp-timeline-4 {
        grid-template-columns: 1fr;
    }
}


/* =========================
   OPTIMIZATION - REALITY ART
========================= */

.bp-reality-grid {
    max-width: var(--bp-max);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 56px;
    align-items: center;
}

.bp-reality-grid .bp-reality-inner {
    max-width: none;
    margin: 0;
}

.bp-reality-art svg {
    width: 100%;
    height: auto;
}


/* =========================
   OPTIMIZATION - NOW / AFTER TABLE
========================= */

.op-shift {
    max-width: var(--bp-max);
    margin: 0 auto;

    border: 2px solid var(--charcoal);
    border-radius: 15px;

    overflow: hidden;
}

.op-shift-head,
.op-shift-row {
    display: grid;
    grid-template-columns: 180px 1fr 1.4fr;
    gap: 24px;
    align-items: center;

    padding: 18px 28px;
}

.op-shift-head {
    background-color: var(--charcoal);
    color: var(--off-white);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.op-shift-head span:last-child {
    color: var(--yellow);
}

.op-shift-row + .op-shift-row {
    border-top: 1px solid rgba(34, 31, 32, 0.15);
}

.op-shift-row h3 {
    font-size: 17px;
    font-weight: 800;
}

.op-now {
    font-size: 15px;
    line-height: 1.4;

    opacity: 0.65;
}

.op-after {
    position: relative;

    padding-inline-start: 22px;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.op-after::before {
    content: "";

    position: absolute;
    inset-inline-start: 0;
    top: 7px;

    width: 10px;
    height: 10px;

    background-color: var(--coral);

    transform: rotate(45deg);
}


/* =========================
   OPTIMIZATION - DELIVERABLES
========================= */

.op-deliverables {
    max-width: var(--bp-max);
    margin: 48px auto 0;
}

.op-deliverables ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;

    padding: 0;
    list-style: none;
}

.op-deliverables li {
    position: relative;

    padding: 12px 0 12px 30px;

    border-bottom: 1px solid rgba(34, 31, 32, 0.15);

    font-size: 16px;
    line-height: 1.45;
}

.op-deliverables li::before {
    content: "";

    position: absolute;
    left: 2px;
    top: 19px;

    width: 10px;
    height: 10px;

    background-color: var(--mint);

    transform: rotate(45deg);
}


/* =========================
   OPTIMIZATION - FRAMEWORK STAGES
========================= */

.op-stages {
    max-width: var(--bp-max);
    margin: 0 auto;

    display: grid;
    gap: 16px;

    padding: 0;
    list-style: none;
}

.op-stage {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    align-items: start;

    padding: 32px 36px 34px;

    border-radius: 15px;

    background-color: var(--off-white);
}

.op-stage:nth-child(even) {
    background-color: var(--charcoal);
    color: var(--off-white);
}

.op-stage-number {
    font-size: 64px;
    font-weight: 900;
    line-height: 0.9;

    letter-spacing: -2px;

    color: var(--coral);
}

.op-stage-body h3 {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;

    text-transform: uppercase;
}

.op-stage-body > p {
    max-width: 640px;
    margin-top: 10px;

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

.op-stage-body ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 24px;

    margin-top: 16px;
    padding: 0;
    list-style: none;
}

.op-stage-body li {
    position: relative;

    padding-left: 18px;

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

.op-stage-body li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 7px;

    width: 7px;
    height: 7px;

    background-color: var(--coral);

    transform: rotate(45deg);
}

.op-scope {
    max-width: 760px;
    margin: 36px auto 0;

    text-align: center;

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


/* =========================
   OPTIMIZATION - DOWNSELL
========================= */

.op-downsell {
    background-color: var(--charcoal);
    color: var(--off-white);
}

.op-downsell-inner {
    max-width: var(--bp-max);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
    align-items: center;
}

.op-downsell h2 {
    color: var(--off-white);
}

.op-downsell-copy p:not(.bp-eyebrow) {
    max-width: 600px;
    margin-top: 20px;

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

.op-downsell .bp-cta {
    margin-top: 30px;
}

.op-downsell-stats {
    flex-direction: column;

    margin-top: 0;
}

.op-downsell-stats li {
    background-color: var(--off-white);
    color: var(--charcoal);
}

.op-downsell-stats strong {
    color: var(--coral);
}


/* =========================
   OPTIMIZATION - INDUSTRIES
========================= */

.op-industries {
    max-width: var(--bp-max);
    margin: 48px auto 0;

    text-align: center;
}

.op-industries ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;

    padding: 0;
    list-style: none;
}

.op-industries li {
    padding: 9px 16px;

    border: 1px solid rgba(34, 31, 32, 0.3);
    border-radius: 100px;

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

@media (max-width: 1100px) {

    .bp-reality-grid,
    .op-downsell-inner {
        grid-template-columns: 1fr;
    }

    .bp-reality-art {
        max-width: 360px;
    }

    .op-downsell-stats {
        flex-direction: row;
    }
}

@media (max-width: 760px) {

    .op-shift-head {
        display: none;
    }

    .op-shift-row {
        grid-template-columns: 1fr;
        gap: 8px;

        padding: 18px 20px;
    }

    .op-deliverables ul,
    .op-stage-body ul {
        grid-template-columns: 1fr;
    }

    .op-stage {
        grid-template-columns: 1fr;
        gap: 10px;

        padding: 24px 22px 26px;
    }

    .op-stage-number {
        font-size: 44px;
    }
}


/* =========================
   VSL PAGE
========================= */

.bp-vsl {
    padding-top: 70px !important;
}

.bp-vsl-inner {
    max-width: var(--bp-max);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.bp-vsl h1 {
    font-size: clamp(40px, 4vw, 60px);
}

.bp-video {
    position: relative;

    aspect-ratio: 16 / 9;

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

    border-radius: 15px;

    background-color: var(--charcoal);
    color: var(--off-white);
}

.bp-video-play {
    width: 74px;
    height: 74px;

    border-radius: 50%;

    background-color: var(--coral);

    position: relative;
}

.bp-video-play::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 54%;

    border-style: solid;
    border-width: 13px 0 13px 22px;
    border-color: transparent transparent transparent var(--charcoal);

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

.bp-video-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    opacity: 0.7;
}

.bp-vsl-points {
    max-width: var(--bp-max);
    margin: 56px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    padding: 0;
    list-style: none;
}

.bp-vsl-points li {
    display: flex;
    flex-direction: column;
    gap: 8px;

    padding: 24px 26px 26px;

    border: 2px solid var(--charcoal);
    border-radius: 15px;
}

.bp-vsl-points strong {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.15;
}

.bp-vsl-points span {
    font-size: 15px;
    line-height: 1.45;
}

.op-start {
    scroll-margin-top: 20px;
}

.bp-start h2 {
    font-size: clamp(36px, 3.6vw, 52px);
}

@media (max-width: 1100px) {

    .bp-vsl-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .bp-vsl-points {
        grid-template-columns: 1fr;
    }
}


/* outline button + booking embed */

.bp-cta-outline {
    background-color: transparent;
    color: var(--charcoal);

    box-shadow: inset 0 0 0 2px var(--charcoal);
}

.bp-cta-outline:hover {
    background-color: var(--charcoal);
    color: var(--off-white);
}

.bp-cta-skip {
    margin-top: 30px;
}

.bp-booking {
    margin-top: 22px;

    border-radius: 15px;

    overflow: hidden;

    background-color: #fff;
}

.bp-booking iframe {
    display: block;

    width: 100%;
    height: 620px;

    border: 0;
}

.bp-booking + .bp-text-link {
    display: inline-block;

    margin-top: 14px;

    font-size: 14px;
}

.contact-success .bp-booking + .bp-text-link {
    margin-top: 14px;
}


/* =========================
   ABOUT PAGE
========================= */

.about-hero h1 {
    font-size: clamp(40px, 4vw, 60px);
}

.about-numbers {
    padding-top: 0 !important;
}

.about-numbers ul {
    max-width: var(--bp-max);
    margin: 0 auto;

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

    padding: 0;
    list-style: none;
}

.about-numbers li {
    padding: 24px 26px 22px;

    border: 2px solid var(--charcoal);
    border-radius: 15px;
}

.about-numbers strong {
    display: block;

    font-size: 40px;
    font-weight: 900;
    line-height: 1;
}

.about-numbers span {
    display: block;

    margin-top: 8px;

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

.about-team {
    background-color: var(--yellow);
}

.about-team-grid {
    max-width: var(--bp-max);
    margin: 0 auto;

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

    padding: 0;
    list-style: none;
}

.about-member {
    display: flex;
    flex-direction: column;

    padding: 22px 22px 24px;

    border-radius: 15px;

    background-color: var(--off-white);
}

.about-member-photo {
    aspect-ratio: 1 / 1;

    border-radius: 12px;

    overflow: hidden;

    background-color: var(--charcoal);
}

.about-member-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.about-avatar {
    width: 100%;
    height: 100%;

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

    color: var(--yellow);

    font-size: 48px;
    font-weight: 900;
}

.about-member h3 {
    margin-top: 18px;

    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.about-member-role {
    margin-top: 4px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    opacity: 0.65;
}

.about-member ul {
    margin-top: 14px;
    padding: 0;
    list-style: none;
}

.about-member li {
    position: relative;

    padding: 7px 0 7px 18px;

    border-top: 1px solid rgba(34, 31, 32, 0.12);

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

.about-member li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 13px;

    width: 7px;
    height: 7px;

    background-color: var(--coral);

    transform: rotate(45deg);
}

.about-team-soon {
    margin-top: 14px;
    padding-top: 12px;

    border-top: 1px solid rgba(34, 31, 32, 0.12);

    font-size: 14px;
    font-style: italic;

    opacity: 0.6;
}

.about-founder-inner {
    max-width: var(--bp-max);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
    align-items: center;
}

.about-founder-photo {
    margin: 0;
}

.about-founder-photo img {
    width: 100%;

    border-radius: 15px;
}

.about-founder-photo figcaption {
    display: flex;
    flex-direction: column;

    margin-top: 14px;
}

.about-founder-photo strong {
    font-size: 18px;
    font-weight: 800;
}

.about-founder-photo span {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;

    opacity: 0.65;
}

.about-founder-copy h2 {
    font-size: clamp(32px, 3.2vw, 48px);
}

.about-founder-copy p:not(.bp-eyebrow) {
    margin-top: 20px;

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

.about-founder-copy .bp-cta {
    margin-top: 30px;
}

.about-final-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;

    margin-top: 34px;
}

.bp-cta-outline-light {
    color: var(--off-white);

    box-shadow: inset 0 0 0 2px var(--off-white);
}

.bp-cta-outline-light:hover {
    background-color: var(--off-white);
    color: var(--charcoal);
}

@media (max-width: 1100px) {

    .about-numbers ul,
    .about-team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-founder-inner {
        grid-template-columns: 1fr;
    }

    .about-founder-photo {
        max-width: 420px;
    }
}

@media (max-width: 760px) {

    .about-numbers ul,
    .about-team-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   CONTACT + CAREERS
========================= */

.contact-details {
    margin-top: 34px;
    padding: 0;
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-bottom: 16px;

    font-size: 16px;
    line-height: 1.45;
}

.contact-details svg {
    flex-shrink: 0;

    width: 22px;
    height: 22px;

    margin-top: 1px;

    color: var(--coral);
}

.contact-details a {
    color: var(--charcoal);

    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-shortcuts {
    margin-top: 36px;
}

.contact-shortcut {
    display: flex;
    flex-direction: column;

    margin-bottom: 10px;
    padding: 14px 18px;

    border: 2px solid var(--charcoal);
    border-radius: 12px;

    color: var(--charcoal);

    text-decoration: none;

    transition: background-color 0.2s, color 0.2s;
}

.contact-shortcut:hover {
    background-color: var(--charcoal);
    color: var(--off-white);
}

.contact-shortcut strong {
    font-size: 16px;
}

.contact-shortcut span {
    font-size: 13px;

    opacity: 0.7;
}

.contact-map {
    padding: 0 !important;
}

.contact-map iframe {
    display: block;

    width: 100%;
    height: 380px;

    border: 0;

    filter: grayscale(100%);
}

.careers-hero h1 {
    font-size: clamp(40px, 4vw, 60px);
}

.careers-roles-list {
    max-width: 820px;
    margin: 0 auto;

    display: grid;
    gap: 14px;

    padding: 0;
    list-style: none;
}

.careers-role {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    padding: 22px 26px;

    border-radius: 15px;

    background-color: var(--off-white);
}

.careers-role h3 {
    font-size: 20px;
    font-weight: 800;
}

.careers-role p {
    margin-top: 4px;

    font-size: 15px;
}

.careers-apply {
    scroll-margin-top: 20px;
}


/* careers: 6 cards, role card */

.careers-parts {
    grid-template-columns: repeat(3, 1fr);
}

.careers-role {
    display: block;

    padding: 28px 32px 26px;
}

.careers-role-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.careers-role-head .bp-eyebrow {
    margin-bottom: 6px;
}

.careers-role-summary {
    margin-top: 6px;

    font-size: 16px;
}

.careers-role-details {
    margin-top: 18px;
    padding-top: 16px;

    border-top: 1px solid rgba(34, 31, 32, 0.15);
}

.careers-role-details summary {
    color: var(--coral);

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    list-style: none;
    cursor: pointer;
}

.careers-role-details summary::-webkit-details-marker {
    display: none;
}

.careers-role-details summary::before {
    content: "+ ";
}

.careers-role-details[open] summary::before {
    content: "- ";
}

.careers-role-body {
    max-width: 760px;
    margin-top: 14px;
}

.careers-role-body p {
    margin-top: 12px;

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

.careers-role-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;

    margin-top: 20px;
}

.careers-role-cols h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.careers-role-cols ul {
    margin-top: 8px;
    padding-left: 18px;
}

.careers-role-cols li {
    margin-bottom: 6px;

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

.careers-role-note {
    font-size: 14px !important;

    opacity: 0.8;
}

.careers-role-note a {
    color: var(--charcoal);
}

@media (max-width: 1100px) {

    .careers-parts {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {

    .careers-parts,
    .careers-role-cols {
        grid-template-columns: 1fr;
    }

    .careers-role-head {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================
   LEGAL-ISH PAGES (referral, privacy)
========================= */

.bp-timeline-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.bp-timeline-3::before {
    left: 16.6%;
    right: 16.6%;
}

.legal-hero {
    max-width: 820px;
    margin: 0 auto;

    padding-bottom: 20px !important;
}

.legal-hero h1 {
    font-size: clamp(40px, 4vw, 60px);
}

.legal-inner {
    max-width: 820px;
    margin: 0 auto;
}

.legal-block {
    padding: 32px 0;

    border-top: 1px solid rgba(34, 31, 32, 0.15);
}

.legal-block:first-child {
    border-top: 0;
    padding-top: 0;
}

.legal-block h2 {
    font-size: 24px;
    font-weight: 900;

    letter-spacing: -0.5px;
}

.legal-block p {
    margin-top: 12px;

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

.legal-block ul,
.legal-block ol {
    margin-top: 12px;
    padding-left: 22px;
}

.legal-block li {
    margin-bottom: 8px;

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

.legal-block a {
    color: var(--charcoal);
}

.legal-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    padding: 0 !important;
    list-style: none;
}

.legal-pills li {
    margin: 0;
    padding: 8px 14px;

    border: 1px solid rgba(34, 31, 32, 0.3);
    border-radius: 100px;

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

.legal-big {
    margin-top: 6px;

    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
}

.legal-note {
    font-size: 14px !important;

    opacity: 0.7;
}

.bp-fit-card p {
    margin-top: 10px;

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

.bp-fit-card ul + p {
    margin-top: 14px;
}

.legal .bp-fit-card li::before {
    background-color: var(--coral);
}

@media (max-width: 1100px) {

    .bp-timeline-3 {
        grid-template-columns: 1fr;
    }

    .bp-timeline-3::before {
        display: none;
    }
}


/* referral benefits: one box, two columns */

.legal-benefits {
    max-width: var(--bp-max);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1.2fr;

    border: 2px solid var(--charcoal);
    border-radius: 15px;

    overflow: hidden;
}

.legal-benefits-col {
    padding: 34px 36px 36px;
}

.legal-benefits-col:first-child {
    background-color: var(--charcoal);
    color: var(--off-white);
}

.legal-benefits-col:first-child .bp-eyebrow {
    color: var(--yellow);
}

.legal-benefits-col:first-child .legal-big {
    color: var(--yellow);
}

.legal-benefits-col p {
    font-size: 16px;
    line-height: 1.5;
}

.legal-benefits-col .legal-big {
    margin-top: 4px;
    margin-bottom: 14px;
}

.legal-benefits-col ul {
    margin-top: 8px;
    padding-left: 20px;
}

.legal-benefits-col li {
    margin-bottom: 6px;

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

.legal .bp-deliverable {
    padding-bottom: 30px !important;
}

.legal .legal-terms {
    padding-top: 40px !important;
}

/* conditional fieldset in the contact form */

.contact-referral {
    margin: 0 0 18px;
    padding: 18px 20px 6px;

    border: 2px dashed rgba(34, 31, 32, 0.3);
    border-radius: 15px;
}

.contact-referral legend {
    padding: 0 8px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@media (max-width: 760px) {

    .legal-benefits {
        grid-template-columns: 1fr;
    }
}


/* =========================
   WORK PAGE
========================= */

.work-hero {
    padding-bottom: 20px !important;
}

.work-hero h1 {
    font-size: clamp(40px, 4vw, 60px);
}

.work-filters {
    max-width: var(--bp-max);
    margin: 0 auto;
}

.work-filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;

    margin-bottom: 10px;
}

.work-filter-label {
    min-width: 72px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    opacity: 0.6;
}

.work-chip {
    padding: 9px 16px;

    border: 2px solid var(--charcoal);
    border-radius: 100px;

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

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: background-color 0.15s, color 0.15s;
}

.work-chip:hover {
    background-color: rgba(34, 31, 32, 0.08);
}

.work-chip.is-active {
    background-color: var(--charcoal);
    color: var(--off-white);
}

.work-grid-section {
    padding-top: 30px !important;
}

.work-grid {
    max-width: var(--bp-max);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 24px;
}

.work-card {
    display: flex;
    flex-direction: column;

    color: var(--charcoal);

    text-decoration: none;
}

.work-card img {
    width: 100%;
    aspect-ratio: 1.4 / 1;

    border-radius: 15px;

    object-fit: cover;

    filter: grayscale(100%);

    transition: filter 0.3s;
}

.work-card:hover img {
    filter: none;
}

.work-card-meta {
    margin-top: 16px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    opacity: 0.6;
}

.work-card strong {
    margin-top: 4px;

    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
}

.work-card p {
    margin-top: 8px;

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

.work-card-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;

    margin-top: 12px;
    padding: 0;
    list-style: none;
}

.work-card-pillars li {
    padding: 4px 10px;

    border-radius: 100px;

    background-color: rgba(34, 31, 32, 0.08);

    font-size: 12px;
    font-weight: 600;
}

.work-empty {
    max-width: var(--bp-max);
    margin: 20px auto 0;

    font-size: 16px;

    opacity: 0.7;
}

@media (max-width: 1100px) {

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

@media (max-width: 760px) {

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

    .work-filter-label {
        width: 100%;
    }
}


/* work: filters in a sidebar */

.work-layout {
    max-width: var(--bp-max);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
}

.work-sidebar {
    position: sticky;
    top: 24px;
}

.work-filter-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;

    margin-bottom: 26px;
}

.work-filter-group .work-filter-label {
    margin-bottom: 4px;
}

.work-layout .work-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 22px;
}

.work-empty {
    padding-left: 240px;
}

@media (max-width: 1100px) {

    .work-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .work-sidebar {
        position: static;
    }

    .work-filter-group {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;

        margin-bottom: 10px;
    }

    .work-empty {
        padding-left: 0;
    }
}

@media (max-width: 760px) {

    .work-layout .work-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   CASE STUDY TEMPLATE
========================= */

.cs-hero {
    max-width: var(--bp-max);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;

    padding-top: 60px !important;
    padding-bottom: 40px !important;
}

.cs-hero h1 {
    font-size: clamp(40px, 4.2vw, 64px);
}

.cs-hero .bp-text-link {
    display: inline-block;

    margin-top: 28px;
}

.cs-hero-image {
    margin: 0;
}

.cs-hero-image img {
    width: 100%;
    aspect-ratio: 1.4 / 1;

    border-radius: 15px;

    object-fit: cover;

    filter: grayscale(100%);
}

.cs-facts {
    padding-top: 0 !important;
    padding-bottom: 40px !important;
}

.cs-facts ul {
    max-width: var(--bp-max);
    margin: 0 auto;

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

    padding: 0;
    list-style: none;

    border: 2px solid var(--charcoal);
    border-radius: 15px;

    overflow: hidden;
}

.cs-facts li {
    display: flex;
    flex-direction: column;
    gap: 6px;

    padding: 20px 24px;

    border-left: 2px solid var(--charcoal);
}

.cs-facts li:first-child {
    border-left: 0;
}

.cs-facts span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    opacity: 0.6;
}

.cs-facts strong {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.cs-two {
    max-width: var(--bp-max);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.cs-situation {
    background-color: var(--charcoal);
    color: var(--off-white);
}

.cs-situation h2 {
    color: var(--off-white);

    font-size: clamp(30px, 3vw, 44px);
}

.cs-situation p {
    margin-top: 22px;

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

.cs-bullets {
    padding: 0;
    list-style: none;
}

.cs-bullets li {
    position: relative;

    padding: 12px 0 12px 26px;

    border-top: 1px solid rgba(255, 253, 238, 0.16);

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

.cs-bullets li::before {
    content: "";

    position: absolute;
    left: 2px;
    top: 19px;

    width: 9px;
    height: 9px;

    background-color: var(--coral);

    transform: rotate(45deg);
}

.cs-results .cs-bullets li {
    border-top-color: rgba(34, 31, 32, 0.15);
}

.cs-pillars {
    max-width: var(--bp-max);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.cs-pillar {
    padding: 28px 28px 30px;

    border: 2px solid var(--charcoal);
    border-radius: 15px;
}

.cs-pillar h3 {
    font-size: 22px;
    font-weight: 900;

    text-transform: uppercase;
}

.cs-pillar ul {
    margin-top: 14px;
    padding: 0;
    list-style: none;
}

.cs-pillar li {
    position: relative;

    padding: 8px 0 8px 20px;

    border-top: 1px solid rgba(34, 31, 32, 0.12);

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

.cs-pillar li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 14px;

    width: 8px;
    height: 8px;

    background-color: var(--coral);

    transform: rotate(45deg);
}

.cs-stats {
    max-width: var(--bp-max);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    padding: 0;
    list-style: none;
}

.cs-stats li {
    padding: 28px 28px 26px;

    border-radius: 15px;

    background-color: var(--charcoal);
    color: var(--off-white);
}

.cs-stats strong {
    display: block;

    color: var(--yellow);

    font-size: 40px;
    font-weight: 900;
    line-height: 1;
}

.cs-stats span {
    display: block;

    margin-top: 10px;

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

.cs-results-detail {
    margin-top: 44px;

    grid-template-columns: 1fr 1fr;
}

.cs-results-detail h3 {
    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cs-gallery {
    padding-top: 70px !important;
}

.cs-gallery-1 .cs-gallery-grid {
    grid-template-columns: 1fr;
}

.cs-gallery-1 .cs-gallery-grid img {
    aspect-ratio: 2 / 1;
}

.cs-gallery-2 .cs-gallery-grid {
    grid-template-columns: 1fr 1fr;
}

.cs-gallery-2 .cs-gallery-grid img {
    aspect-ratio: 3 / 2;
}

.cs-gallery-3 .cs-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
}

.cs-pillars-2 {
    grid-template-columns: 1fr 1fr;
    max-width: 820px;
}

.cs-pillars-4,
.cs-pillars-5 {
    grid-template-columns: repeat(3, 1fr);
}

.cs-built {
    margin-top: 0;
}

.cs-gallery-grid {
    max-width: var(--bp-max);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cs-gallery-grid img {
    width: 100%;
    aspect-ratio: 3 / 4;

    border-radius: 15px;

    object-fit: cover;

    filter: grayscale(100%);

    transition: filter 0.3s;
}

.cs-gallery-grid img:hover {
    filter: none;
}

.cs-final .bp-eyebrow {
    color: var(--yellow);
}

.cs-final h2 a {
    color: var(--off-white);

    text-decoration: none;
}

.cs-final h2 a:hover {
    color: var(--coral);
}

@media (max-width: 1100px) {

    .cs-hero,
    .cs-two {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cs-facts ul,
    .cs-pillars,
    .cs-stats {
        grid-template-columns: 1fr 1fr;
    }

    .cs-facts li:nth-child(odd) {
        border-left: 0;
    }

    .cs-facts li:nth-child(n + 3) {
        border-top: 2px solid var(--charcoal);
    }

    .cs-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {

    .cs-facts ul,
    .cs-pillars,
    .cs-stats,
    .cs-results-detail {
        grid-template-columns: 1fr;
    }

    .cs-facts li {
        border-left: 0;
        border-top: 2px solid var(--charcoal);
    }

    .cs-facts li:first-child {
        border-top: 0;
    }
}


/* case study: where they are now (dark band) */

.cs-now {
    background-color: var(--charcoal);
    color: var(--off-white);
}

.cs-now .bp-section-head h2 {
    color: var(--off-white);
}

.cs-now .bp-section-head .bp-eyebrow {
    color: var(--yellow);
}

.cs-now-grid {
    max-width: var(--bp-max);
    margin: 0 auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;

    padding: 0;
    list-style: none;
}

.cs-now-grid li {
    flex: 0 1 calc((100% - 32px) / 3);

    display: flex;
    flex-direction: column;
    gap: 8px;

    padding: 24px 26px 26px;

    border: 1px solid rgba(255, 253, 238, 0.25);
    border-radius: 15px;
}

.cs-now-grid strong {
    color: var(--yellow);

    font-size: 20px;
    font-weight: 800;
    line-height: 1.15;
}

.cs-now-grid span {
    font-size: 15px;
    line-height: 1.45;
}

@media (max-width: 1100px) {

    .cs-now-grid li {
        flex-basis: calc((100% - 16px) / 2);
    }
}

@media (max-width: 760px) {

    .cs-now-grid li {
        flex-basis: 100%;
    }

    .cs-pillars-2,
    .cs-pillars-4,
    .cs-pillars-5,
    .cs-gallery-2 .cs-gallery-grid,
    .cs-gallery-3 .cs-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Team member links (Behance, Instagram, LinkedIn...) */
.about-member-links {
    margin-top: auto;
    padding-top: 14px;

    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-member-links a {
    display: inline-flex;
    align-items: center;

    padding: 6px 12px;

    border: 1.5px solid var(--charcoal);
    border-radius: 100px;

    color: var(--charcoal);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none;

    transition: background-color 0.2s, color 0.2s;
}

.about-member-links a:hover {
    background-color: var(--charcoal);
    color: var(--off-white);
}

/* =========================
   WORK SIDEBAR: menu-list filters
   (pills stay on narrow screens)
========================= */

.work-layout {
    grid-template-columns: 220px 1fr;
}

.work-sidebar .work-filter-group {
    gap: 0;
    align-items: stretch;

    border-top: 2px solid var(--charcoal);
}

.work-sidebar .work-filter-group .work-filter-label {
    margin-bottom: 0;
    padding: 14px 0 8px;
}

.work-sidebar .work-chip {
    width: 100%;

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

    padding: 10px 10px 10px 8px;

    border: 0;
    border-bottom: 1px solid rgba(34, 31, 32, 0.12);
    border-radius: 8px 8px 0 0;

    text-align: left;
}

.work-sidebar .work-chip::before {
    content: "";

    width: 7px;
    height: 7px;
    flex-shrink: 0;

    border: 1.5px solid var(--charcoal);

    transform: rotate(45deg);
}

.work-sidebar .work-chip:hover {
    background-color: rgba(34, 31, 32, 0.06);
}

.work-sidebar .work-chip.is-active {
    border-bottom-color: transparent;
    border-radius: 8px;
}

.work-sidebar .work-chip.is-active::before {
    background-color: var(--yellow);
    border-color: var(--yellow);
}

.work-chip-count {
    margin-left: auto;

    font-size: 12px;
    font-weight: 700;

    opacity: 0.5;
}

.work-chip.is-active .work-chip-count {
    color: var(--yellow);
    opacity: 1;
}

@media (max-width: 1100px) {

    .work-sidebar .work-filter-group {
        gap: 6px;
        border-top: 0;
    }

    .work-sidebar .work-filter-group .work-filter-label {
        padding: 0;
    }

    .work-sidebar .work-chip {
        width: auto;

        padding: 9px 16px;

        border: 2px solid var(--charcoal);
        border-radius: 100px;
    }

    .work-sidebar .work-chip::before,
    .work-chip-count {
        display: none;
    }
}


#j-cv {
    width: 100%;
    box-sizing: border-box;
    padding: 6px 8px;
    border: 1.5px solid #221f20;
    border-radius: 999px;
    background: transparent;
    font: inherit;
    font-size: 15px;
    color: #221f20;
    cursor: pointer;
}

#j-cv::file-selector-button {
    border: none;
    border-radius: 999px;
    padding: 8px 18px;
    margin-right: 14px;

    background: #221f20;
    color: #fff;

    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

#j-cv::file-selector-button:hover {
    opacity: 0.8;
}
/* =========================
   WORK PAGE - MOBILE
   Hide filters and stack projects
========================= */

@media (max-width: 760px) {

    /* Remove filters completely */
    .work-sidebar {
        display: none;
    }

    /* Remove sidebar column */
    .work-layout {
        display: block;
    }

    /* Projects one under another */
    .work-layout .work-grid,
    .work-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 36px;
        width: 100%;
    }

    /* Make every project visible on mobile,
       even if desktop filters were used before resizing */
    .work-card {
        display: flex !important;
        width: 100%;
    }

    .work-card[hidden] {
        display: flex !important;
    }

    /* Full-width images */
    .work-card img {
        width: 100%;
        height: auto;
    }

    /* No "no results" message on mobile */
    .work-empty {
        display: none !important;
    }

    /* Slightly reduce space above projects */
    .work-grid-section {
        padding-top: 20px !important;
    }
}

/* =========================
   CONTACT PAGE - MOBILE FIX
========================= */

@media (max-width: 760px) {

    .contact .contact-top {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 48px !important;

        width: 100%;
        max-width: 100%;

        padding: 50px 22px 60px !important;

        box-sizing: border-box;
    }

    .contact .bp-start-copy,
    .contact .bp-start-form {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .contact .contact-page-form {
        width: 100%;
        max-width: 100%;
    }

    .contact .contact-row {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 0;
    }

    .contact .form-field {
        width: 100%;
        min-width: 0;
    }

    .contact .bp-form input,
    .contact .bp-form select,
    .contact .bp-form textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact .contact-shortcuts {
        width: 100%;
    }

    .contact .contact-shortcut {
        width: 100%;
        box-sizing: border-box;
    }

    .contact .contact-details {
        width: 100%;
    }

    .contact .contact-details li {
        min-width: 0;
    }

    .contact .contact-details a,
    .contact .contact-details span {
        overflow-wrap: anywhere;
    }
}
/* =========================
   BUSINESS BLUEPRINT FORM - MOBILE FIX
========================= */

@media (max-width: 760px) {

    .bp-start {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 48px !important;

        width: 100%;
        max-width: 100%;

        padding: 50px 22px 60px !important;

        box-sizing: border-box;
    }

    .bp-start-copy,
    .bp-start-form {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
    }

    .bp-start-form .contact-page-form,
    .bp-start-form .bp-form {
        width: 100%;
        max-width: 100%;
    }

    /* Email + phone must also stack */
    .bp-start .contact-row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .bp-start .form-field {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .bp-start .bp-form input,
    .bp-start .bp-form select,
    .bp-start .bp-form textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .bp-start .contact-page-submit {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}