@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --color-bg: #f5f0e8;
    --color-brown: #3b2720;
    --color-brand: #6b4635;
    --color-beige: #eae0d2;
    --color-text: #29211d;
    --color-muted: #756b64;
    --color-border: #d8cdc0;
    --color-white: #ffffff;

    --container: 1180px;
    --header-height: 84px;
    --radius: 10px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

button {
    font: inherit;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 240, 232, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.site-header.scrolled {
    border-bottom-color: var(--color-border);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.brand-mark {
    width: 28px;
    height: 19px;
    display: inline-block;
    border: 3px solid var(--color-brown);
    border-bottom: 0;
    border-radius: 18px 18px 4px 4px;
    position: relative;
    transform: translateY(1px);
}

.brand-mark::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 3px;
    background: var(--color-brown);
    left: 7px;
    bottom: -3px;
    border-radius: 0 0 3px 3px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 600;
}

.desktop-nav > a:not(.button) {
    color: var(--color-muted);
    transition: color 0.2s ease;
}

.desktop-nav > a:not(.button):hover {
    color: var(--color-brown);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 21px;
    border: 1px solid var(--color-brown);
    border-radius: var(--radius);
    background: var(--color-brown);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
    background: var(--color-brand);
}

.button-small {
    min-height: 42px;
    padding-inline: 18px;
}

.button-outline {
    background: transparent;
    color: var(--color-brown);
}

.button-outline:hover {
    color: var(--color-white);
}

.menu-toggle,
.mobile-nav {
    display: none;
}

/* Hero */

.hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 76px 0 92px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 55px;
}

.eyebrow {
    margin: 0 0 20px;
    color: var(--color-brand);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.hero h1 {
    margin: 0;
    color: var(--color-brown);
    font-size: clamp(50px, 6vw, 76px);
    line-height: 1.03;
    letter-spacing: -0.065em;
    font-weight: 700;
}

.hero-text {
    max-width: 535px;
    margin: 28px 0 32px;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-visual {
    position: relative;
    min-height: 500px;
}

.screen {
    position: absolute;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(59, 39, 32, 0.13);
}

.screen-bar {
    height: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 11px;
    border-bottom: 1px solid var(--color-border);
    background: #f9f7f3;
}

.screen-bar span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-border);
}

.screen-back {
    width: 78%;
    height: 365px;
    top: 30px;
    right: 0;
    transform: rotate(2deg);
}

.screen-front {
    width: 76%;
    height: 350px;
    bottom: 18px;
    left: 2%;
    transform: rotate(-3deg);
}

.mock-content {
    height: calc(100% - 30px);
    display: flex;
}

.mock-sidebar {
    width: 22%;
    background: var(--color-brown);
    opacity: 0.92;
}

.mock-main {
    flex: 1;
    padding: 22px;
}

.mock-heading {
    width: 55%;
    height: 14px;
    border-radius: 5px;
    background: var(--color-brown);
    opacity: 0.75;
    margin-bottom: 22px;
}

.mock-heading.short {
    width: 42%;
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-bottom: 22px;
}

.mock-cards div {
    height: 70px;
    border: 1px solid var(--color-border);
    border-radius: 7px;
    background: var(--color-bg);
}

.mock-table {
    display: grid;
    gap: 9px;
}

.mock-table i {
    display: block;
    height: 14px;
    border-radius: 4px;
    background: var(--color-beige);
}

.mock-form {
    display: grid;
    gap: 13px;
}

.mock-form div {
    height: 38px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
}

.mock-form .wide {
    height: 85px;
}

.mock-form .button-mock {
    width: 100px;
    background: var(--color-brown);
    border-color: var(--color-brown);
}

.visual-caption {
    position: absolute;
    right: 5px;
    bottom: -7px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: var(--color-brand);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
}

/* Sections */

.section {
    padding: 125px 0;
}

.approach {
    border-top: 1px solid var(--color-border);
}

.section-intro {
    max-width: 700px;
}

.section-intro h2 {
    margin: 0;
    color: var(--color-brown);
    font-size: clamp(38px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.055em;
}

.section-intro > p:last-child {
    max-width: 590px;
    margin: 24px 0 0;
    color: var(--color-muted);
    font-size: 18px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 80px;
    border-top: 1px solid var(--color-border);
}

.approach-item {
    padding: 27px 38px 0 0;
    border-right: 1px solid var(--color-border);
}

.approach-item:not(:first-child) {
    padding-left: 38px;
}

.approach-item:last-child {
    border-right: 0;
}

.item-number {
    display: block;
    margin-bottom: 15px;
    color: var(--color-brand);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.approach-item h3 {
    margin: 0 0 12px;
    color: var(--color-brown);
    font-size: 22px;
    letter-spacing: -0.03em;
}

.approach-item p {
    margin: 0;
    color: var(--color-muted);
}

.manifesto {
    margin: 100px 0 0;
    color: var(--color-brown);
    font-size: clamp(27px, 3vw, 39px);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.045em;
}

/* Responsive */

@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        padding: 0 10px;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--color-brown);
    }

    .mobile-nav {
        padding: 12px 24px 24px;
        flex-direction: column;
        gap: 4px;
        border-top: 1px solid var(--color-border);
    }

    .mobile-nav.open {
        display: flex;
    }

    .mobile-nav a {
        padding: 11px 0;
        font-weight: 600;
    }

    .mobile-nav .button {
        margin-top: 8px;
    }

    .hero {
        padding-top: 60px;
    }

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

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

    .hero-visual {
        max-width: 650px;
        width: 100%;
        margin: 15px auto 0;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    :root {
        --header-height: 70px;
    }

    .hero {
        min-height: auto;
        padding: 58px 0 72px;
    }

    .hero h1 {
        font-size: 47px;
    }

    .hero-text {
        font-size: 16px;
        margin-top: 22px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .screen-back {
        width: 88%;
        height: 285px;
    }

    .screen-front {
        width: 84%;
        height: 270px;
        bottom: 15px;
    }

    .mock-main {
        padding: 14px;
    }

    .section {
        padding: 88px 0;
    }

    .section-intro h2 {
        font-size: 38px;
    }

    .section-intro > p:last-child {
        font-size: 16px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        margin-top: 55px;
    }

    .approach-item,
    .approach-item:not(:first-child) {
        padding: 25px 0;
        border-right: 0;
        border-bottom: 1px solid var(--color-border);
    }

    .approach-item:last-child {
        border-bottom: 0;
    }

    .item-number {
        margin-bottom: 15px;
    }

    .manifesto {
        margin-top: 65px;
        font-size: 29px;
    }
}


/* Services */

.services {
    background: var(--color-beige);
}

.service-list {
    margin-top: 75px;
    border-top: 1px solid var(--color-border);
}

.service-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 35px;
    padding: 30px 0;
    border-bottom: 1px solid var(--color-border);
}

.service-item .item-number {
    margin: 0;
}

.service-item h3 {
    margin: 0 0 8px;
    color: var(--color-brown);
    font-size: 25px;
    letter-spacing: -0.035em;
}

.service-item p {
    max-width: 650px;
    margin: 0;
    color: var(--color-muted);
}

/* Selected Work */

.work {
    padding-bottom: 145px;
}

.case-study {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 90px;
    margin-top: 100px;
}

.case-study-second {
    grid-template-columns: 0.85fr 1.15fr;
    margin-top: 150px;
}

.case-label {
    margin: 0 0 18px;
    color: var(--color-brand);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.case-copy h3 {
    max-width: 540px;
    margin: 0;
    color: var(--color-brown);
    font-size: clamp(31px, 3.1vw, 45px);
    line-height: 1.1;
    letter-spacing: -0.055em;
}

.case-copy > p:not(.case-label) {
    max-width: 560px;
    margin: 24px 0 0;
    color: var(--color-muted);
}

.case-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 30px;
}

.case-stats div {
    display: flex;
    flex-direction: column;
    max-width: 150px;
}

.case-stats strong {
    color: var(--color-brown);
    font-size: 25px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.case-stats span {
    margin-top: 5px;
    color: var(--color-muted);
    font-size: 11px;
    line-height: 1.35;
}

.text-link {
    display: inline-flex;
    gap: 9px;
    margin-top: 32px;
    color: var(--color-brown);
    font-size: 14px;
    font-weight: 700;
}

.text-link span {
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.portfolio-frame {
    overflow: hidden;
    min-height: 405px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: 0 25px 55px rgba(59, 39, 32, 0.11);
}

.portfolio-bar {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 12px;
    background: #f9f7f3;
    border-bottom: 1px solid var(--color-border);
}

.portfolio-bar span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-border);
}

.report-placeholder {
    margin: 35px auto;
    width: 78%;
    min-height: 320px;
    padding: 35px 32px;
    background: #fff;
    border: 1px solid #e4ddd5;
    box-shadow: 0 10px 30px rgba(59, 39, 32, 0.07);
}

.report-title {
    color: var(--color-brown);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--color-border);
}

.report-lines {
    display: grid;
    gap: 13px;
    margin-top: 25px;
}

.report-lines i {
    display: block;
    height: 9px;
    border-radius: 3px;
    background: var(--color-beige);
}

.report-lines i:nth-child(1) { width: 85%; }
.report-lines i:nth-child(2) { width: 70%; }
.report-lines i:nth-child(3) { width: 92%; }
.report-lines i:nth-child(4) { width: 65%; }
.report-lines i:nth-child(5) { width: 78%; }

.report-total {
    width: 48%;
    height: 20px;
    margin: 35px 0 0 auto;
    border-radius: 4px;
    background: var(--color-brown);
    opacity: 0.78;
}

.dashboard-placeholder {
    min-height: 420px;
}

.dashboard-mock {
    display: flex;
    height: 385px;
}

.dash-side {
    width: 19%;
    background: var(--color-brown);
}

.dash-body {
    flex: 1;
    padding: 27px;
}

.dash-heading {
    width: 45%;
    height: 15px;
    margin-bottom: 28px;
    border-radius: 4px;
    background: var(--color-brown);
    opacity: 0.75;
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.dash-stats i {
    height: 78px;
    border: 1px solid var(--color-border);
    border-radius: 7px;
    background: var(--color-bg);
}

.dash-chart {
    height: 165px;
    margin-top: 18px;
    border: 1px solid var(--color-border);
    border-radius: 7px;
    background: linear-gradient(145deg, var(--color-bg), #fff);
}

/* Product */

.product-section {
    padding: 125px 0;
    background: var(--color-brown);
    color: var(--color-white);
    overflow: hidden;
}

.product-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.eyebrow-light {
    color: #d9bba7;
}

.product-section h2 {
    margin: 0;
    font-size: clamp(48px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.product-title {
    margin: 18px 0 0;
    font-size: 21px;
    font-weight: 600;
}

.product-copy {
    max-width: 510px;
    margin: 20px 0 30px;
    color: #d5c7bf;
}

.product-custom {
    margin-top: 24px;
    margin-bottom: 24px;
    color: #d5c7bf;
}

.product-custom a {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.button-light {
    background: var(--color-bg);
    border-color: var(--color-bg);
    color: var(--color-brown);
}

.button-light:hover {
    background: var(--color-white);
    color: var(--color-brown);
}

.case-visual {
    max-width: 900px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.case-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.case-screen {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.case-screen-bar {
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    padding: 0 8px;
    background: #d8cdc0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.case-screen-bar span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #bda99d;
}

.case-screen img {
    display: block;
    width: 100%;
    height: auto;
}

.case-image {
    display: block;
    width: 100%;
    height: auto;
    cursor: zoom-in;
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    padding: 30px;
    cursor: zoom-out;
}

.image-modal img {
    max-width: 95vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.product-brand img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 14px;
}

.product-brand h2 {
    margin: 0;
}

.product-visual {
    position: relative;
    min-height: 430px;
}

.product-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.product-screen {
    position: absolute;
    border-radius: 14px;
    background: var(--color-white);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
}

.product-screen-back {
    width: 76%;
    height: 330px;
    top: 5px;
    right: 0;
    opacity: 0.78;
    transform: rotate(3deg);
}

.product-screen-front {
    width: 78%;
    height: 350px;
    left: 3%;
    bottom: 8px;
    transform: rotate(-2deg);
}

.product-screen-top {
    height: 34px;
    border-bottom: 1px solid var(--color-border);
    background: #f9f7f3;
}

.product-screen-body {
    display: grid;
    grid-template-columns: 25% 1fr;
    height: calc(100% - 34px);
}

.product-screen-body::before {
    content: "";
    display: block;
    background: var(--color-brand);
}

.product-screen-body div {
    margin: 28px;
    height: 70px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-bg);
}

/* Support */

.support {
    background: var(--color-beige);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 75px;
    border-top: 1px solid var(--color-border);
}

.support-grid article {
    padding: 28px 38px 0 0;
    border-right: 1px solid var(--color-border);
}

.support-grid article + article {
    padding-left: 38px;
}

.support-grid article:last-child {
    border-right: 0;
}

.support-grid .item-number {
    margin-bottom: 15px;
}

.support-grid h3 {
    margin: 0 0 10px;
    color: var(--color-brown);
    font-size: 22px;
}

.support-grid p {
    margin: 0;
    color: var(--color-muted);
}

.support-note {
    margin: 55px 0 0;
    color: var(--color-muted);
    font-size: 13px;
}

/* About */

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 110px;
}

.about h2 {
    margin: 0;
    color: var(--color-brown);
    font-size: clamp(38px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.055em;
}

.about-copy {
    max-width: 620px;
    color: var(--color-muted);
    font-size: 17px;
}

.about-copy p {
    margin: 0 0 20px;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 25px;
    margin-top: 38px;
    color: var(--color-brown);
    font-size: 13px;
    font-weight: 700;
}

.about-values span::before {
    content: "—";
    margin-right: 8px;
    color: var(--color-brand);
}

/* Contact */

.contact-section {
    padding: 125px 0 135px;
    background: var(--color-brown);
    color: var(--color-white);
}

.contact-inner {
    max-width: 950px;
}

.contact-inner h2 {
    margin: 0;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.contact-inner > p:not(.eyebrow) {
    max-width: 650px;
    margin: 28px 0 32px;
    color: #d5c7bf;
    font-size: 17px;
}

.contact-email {
    display: block;
    width: fit-content;
    margin-top: 22px;
    color: #d9bba7;
    font-size: 14px;
    font-weight: 600;
}

/* Footer */

.site-footer {
    padding: 55px 0 30px;
    background: var(--color-brown);
    border-top: 1px solid rgba(255,255,255,0.12);
    color: #d5c7bf;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 35px;
}

.brand-footer {
    color: var(--color-white);
}

.brand-footer .brand-mark {
    border-color: var(--color-white);
}

.brand-footer .brand-mark::after {
    background: var(--color-white);
}

.footer-links {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 12px;
    color: #ad9d93;
}

/* Responsive additions */

@media (max-width: 900px) {
    .case-study,
    .case-study-second,
    .product-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .case-study-second .case-copy {
        order: 1;
    }

    .case-study-second .case-visual {
        order: 2;
    }

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

    .support-grid article,
    .support-grid article + article {
        padding: 25px 0;
        border-right: 0;
        border-bottom: 1px solid var(--color-border);
    }

    .support-grid article:last-child {
        border-bottom: 0;
    }

    .product-visual {
        max-width: 650px;
        width: 100%;
        margin: auto;
    }
}

@media (max-width: 680px) {
    .service-item {
        grid-template-columns: 45px 1fr;
        gap: 10px;
    }

    .case-study,
    .case-study-second {
        margin-top: 75px;
    }

    .case-study-second {
        margin-top: 110px;
    }

    .case-stats {
        gap: 20px;
    }

    .portfolio-frame {
        min-height: 320px;
    }

    .report-placeholder {
        min-height: 250px;
        padding: 25px 20px;
    }

    .dashboard-placeholder {
        min-height: 330px;
    }

    .dashboard-mock {
        height: 295px;
    }

    .dash-body {
        padding: 18px;
    }

    .dash-chart {
        height: 110px;
    }

    .product-section,
    .contact-section {
        padding: 90px 0;
    }

    .product-visual {
        min-height: 340px;
    }

    .product-screen-back {
        height: 260px;
    }

    .product-screen-front {
        height: 275px;
    }

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

    .footer-links {
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

/* Locked design adjustments */
.hero-visual{display:flex;align-items:center;justify-content:center;overflow:hidden}
.hero-statement{position:relative;z-index:2;width:330px;padding:38px 0 42px 42px;border-left:1px solid var(--color-brand)}
.hero-statement strong{display:block;color:var(--color-brown);font-size:31px;line-height:1.08;letter-spacing:-.045em}
.hero-statement p{margin:18px 0 0;color:var(--color-muted);font-size:14px;max-width:240px}
.hero-line{position:absolute;left:-1px;top:0;width:1px;height:72px;background:var(--color-brown)}
.hero-orbit{position:absolute;border:1px solid var(--color-border);border-radius:50%;transform:rotate(-22deg)}
.orbit-one{width:380px;height:190px;right:3%;top:24%;border-color:#cdbbab}
.orbit-two{width:280px;height:130px;left:5%;bottom:13%;border-color:#dfd2c5}
.brand img{display:block;width:235px;height:auto;object-fit:contain}
.brand-footer img{width:180px;height:auto}
@media(max-width:680px){
  .brand img{width:180px}
  .brand-footer img{width:180px}
  .hero-visual{min-height:330px}
  .hero-statement{width:300px;padding-left:30px}
  .hero-statement strong{font-size:27px}
  .orbit-one{width:310px}
  .orbit-two{width:230px}
}

/* Latest locked Let's Talk + footer */
.contact{padding:120px 0;background:var(--color-brand);color:var(--color-white)}
.contact-inner{max-width:1180px}
.contact h2{margin:0;color:var(--color-white);font-size:clamp(42px,5vw,65px);line-height:1.06;letter-spacing:-.065em}
.contact p:not(.eyebrow){max-width:650px;margin:25px 0 5px;color:#eadbd2}
.email{display:block;margin-top:19px;color:#eadbd2;font-size:13px}
.site-footer{padding:35px 0;background:var(--color-bg);border-top:1px solid var(--color-border);color:var(--color-muted)}
.footer-inner{display:flex;align-items:center;gap:30px}
.footer-links{display:flex;gap:22px;margin-left:auto;color:var(--color-muted);font-size:12px}
.footer-inner small{color:var(--color-muted);font-size:11px}
@media(max-width:680px){
  .footer-inner{align-items:flex-start;flex-wrap:wrap}
  .footer-links{order:3;width:100%;margin-left:0}
}

/* Case studies — same visual language as the locked Home page */
.case-page .case-hero {
    padding: 110px 0 95px;
    border-bottom: 1px solid var(--color-border);
}
.case-page .case-hero-inner { max-width: 1180px; }
.case-page .case-eyebrow {
    margin: 0 0 22px;
    color: var(--color-brand);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
}
.case-page .case-hero h1 {
    max-width: 900px;
    margin: 0;
    color: var(--color-brown);
    font-size: clamp(45px, 6vw, 76px);
    line-height: 1.03;
    letter-spacing: -.065em;
}
.case-page .case-subtitle {
    max-width: 650px;
    margin: 28px 0 0;
    color: var(--color-muted);
    font-size: 18px;
}
.case-page .case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 42px;
    margin-top: 48px;
}
.case-page .case-meta div { display: flex; flex-direction: column; }
.case-page .case-meta strong {
    color: var(--color-brown);
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -.04em;
}
.case-page .case-meta span {
    max-width: 190px;
    margin-top: 6px;
    color: var(--color-muted);
    font-size: 11px;
    line-height: 1.4;
}
.case-page .case-section {
    padding: 115px 0;
    border-bottom: 1px solid var(--color-border);
}
.case-page .case-section:nth-of-type(even) { background: var(--color-beige); }
.case-page .case-section-inner { max-width: 1180px; }
.case-page .case-section-label {
    margin: 0 0 20px;
    color: var(--color-brand);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
}
.case-page .case-section h2 {
    max-width: 820px;
    margin: 0 0 28px;
    color: var(--color-brown);
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -.055em;
}
.case-page .case-section p {
    max-width: 700px;
    margin: 0 0 20px;
    color: var(--color-muted);
    font-size: 17px;
    line-height: 1.7;
}
.case-page .case-section p:last-of-type { margin-bottom: 0; }
.case-page .case-quote {
    max-width: 760px;
    margin: 38px 0 0;
    padding-left: 24px;
    border-left: 2px solid var(--color-brand);
    color: var(--color-brown);
    font-size: clamp(23px, 2.5vw, 32px);
    line-height: 1.3;
    letter-spacing: -.035em;
    font-weight: 600;
}
.case-page .case-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin: 38px 0 0;
    color: var(--color-brown);
    font-size: 15px;
    font-weight: 700;
}
.case-page .case-flow .arrow { color: var(--color-brand); font-weight: 500; }
.case-page .case-shot {
    width: min(900px, 100%);
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 45px 0 0;
    padding: 35px 20px;
    border: 1px dashed var(--color-border);
    border-radius: var(--radius);
    background: rgba(255,255,255,.45);
    color: var(--color-muted);
    font-size: 13px;
    text-align: center;
}
.case-page .case-footer-note {
    padding: 105px 0;
    background: var(--color-brown);
    color: var(--color-white);
}
.case-page .case-footer-note h2 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -.055em;
}
.case-page .case-footer-note p {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 17px;
}
.case-page .case-footer-note .text-link { color: var(--color-white); }
@media (max-width: 680px) {
    .case-page .case-hero { padding: 72px 0 65px; }
    .case-page .case-hero h1 { font-size: 45px; }
    .case-page .case-subtitle { font-size: 16px; }
    .case-page .case-meta { gap: 26px 34px; margin-top: 38px; }
    .case-page .case-section { padding: 78px 0; }
    .case-page .case-section p { font-size: 16px; }
    .case-page .case-quote { font-size: 23px; }
    .case-page .case-flow { line-height: 1.5; }
    .case-page .case-shot { min-height: 220px; }
    .case-page .case-footer-note { padding: 78px 0; }
}

.flow {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 35px 0;
    flex-wrap: wrap;
    font-weight: 700;
}

.flow div {
    background: none;
    border: 0;
    padding: 0;
}

.flow .arrow {
    color: var(--muted);
    font-weight: 400;
}

@media (max-width: 700px) {
    .flow {
        gap: 10px 12px;
    }
}

.technology-list {
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 600;
}