:root {
    --econ-bg: #ffffff;
    --econ-text: #000000;
    --econ-muted: #707070;
    --econ-light: #a3a3a3;
    --econ-line: #dedede;
    --econ-left: clamp(58px, 4.2vw, 82px);
    --econ-top: clamp(76px, 9.8vh, 108px);
    --econ-sidebar-width: clamp(230px, 17vw, 310px);
    --econ-content-left: clamp(390px, 27vw, 500px);
    --econ-right: clamp(58px, 4.6vw, 92px);
    --econ-home-top: clamp(150px, 22vh, 205px);
    --econ-ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    background: var(--econ-bg);
    color: var(--econ-text);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--econ-bg);
    color: var(--econ-text);
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.44;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

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

.econ-accordion-trigger,
.econ-mobile-toggle,
.econ-mobile-close,
.econ-home-arrow,
.econ-gallery-zone {
    appearance: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: #000 !important;
    padding: 0 !important;
    margin: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    cursor: pointer;
}

.econ-main-nav a:focus-visible,
.econ-accordion-trigger:focus-visible,
.econ-language a:focus-visible,
.econ-home-arrow:focus-visible,
.econ-gallery-zone:focus-visible,
.econ-more-projects:focus-visible,
.econ-overview-item:focus-visible {
    outline: none;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Intro */
.econ-intro {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    background: #000;
    color: #fff;
    opacity: 1;
    visibility: visible;
}

.econ-intro__word {
    font-size: clamp(26px, 2.6vw, 46px);
    letter-spacing: -0.045em;
    opacity: 0;
    animation: econ-word-in .62s var(--econ-ease) .08s forwards;
}

.econ-intro__word .econ-logo__strong {
    font-weight: 700;
}

.econ-intro__word .econ-logo__light {
    font-weight: 400;
}

.econ-intro.is-leaving {
    animation: econ-intro-out .72s var(--econ-ease) forwards;
}

.econ-intro-seen .econ-intro {
    display: none;
}

@keyframes econ-word-in {
    to { opacity: 1; }
}

@keyframes econ-intro-out {
    to { opacity: 0; visibility: hidden; }
}

@keyframes econ-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Fixed navigation */
.econ-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
}

.econ-hamburger i {
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
}

.econ-sidebar {
    position: fixed;
    z-index: 100;
    top: 0;
    bottom: 0;
    left: 0;
    width: var(--econ-sidebar-width);
    padding: var(--econ-top) 24px 40px var(--econ-left);
    background: #fff;
    overflow-y: auto;
    scrollbar-width: none;
}

.econ-sidebar::-webkit-scrollbar {
    display: none;
}

.admin-bar .econ-sidebar {
    top: 32px;
}

.econ-sidebar__top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.econ-logo {
    display: inline-block;
    color: #000 !important;
    font-size: 21px;
    line-height: 1;
    letter-spacing: -0.045em;
    white-space: nowrap;
}

.econ-logo__strong {
    font-weight: 700;
}

.econ-logo__light {
    font-weight: 400;
}

.econ-main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    margin-top: 52px;
}

.econ-main-nav > a,
.econ-accordion-trigger {
    display: inline-block;
    width: auto;
    color: #000 !important;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.46;
    text-align: left;
}

.econ-main-nav > a:hover,
.econ-project-nav-link:hover,
.econ-accordion-trigger:hover,
.econ-main-nav .is-current {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.econ-main-nav .is-current {
    font-weight: 700;
}

.econ-accordion-panel {
    padding-left: 14px;
}

.econ-project-nav > .econ-accordion-panel {
    padding-top: 6px;
    padding-bottom: 5px;
}

.econ-category-nav {
    margin: 0 0 4px;
}

.econ-category-nav > .econ-accordion-trigger {
    font-size: 12px;
}

.econ-category-nav > .econ-accordion-panel {
    padding-top: 3px;
    padding-bottom: 3px;
}

.econ-project-nav-link {
    display: block;
    width: max-content;
    max-width: 100%;
    padding: 1px 0;
    color: #000 !important;
    font-size: 12px;
    line-height: 1.38;
}

.econ-language--desktop {
    position: fixed;
    z-index: 110;
    top: calc(var(--econ-top) + 2px);
    right: var(--econ-right);
    font-size: 11px;
    line-height: 1;
}

.admin-bar .econ-language--desktop {
    top: calc(var(--econ-top) + 34px);
}

.econ-language a {
    color: #000 !important;
}

.econ-language a.is-current {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.econ-language .is-unavailable {
    opacity: .24;
}

.econ-sidebar__language,
.econ-mobile-toggle,
.econ-sidebar-backdrop {
    display: none;
}

.econ-mobile-close {
    display: none !important;
}

.econ-main {
    min-height: 100vh;
}

/* Home */
.econ-home {
    position: relative;
    overflow: hidden;
}

.econ-home-stage {
    position: fixed;
    z-index: 10;
    top: var(--econ-home-top);
    left: var(--econ-content-left);
    width: clamp(570px, 48vw, 900px);
    max-width: calc(100vw - var(--econ-content-left) - var(--econ-right));
}

.admin-bar .econ-home-stage {
    top: calc(var(--econ-home-top) + 18px);
}

.econ-home-slides {
    position: relative;
}

.econ-home-slide {
    display: none;
}

.econ-home-slide.is-active {
    display: block;
    animation: econ-fade .32s ease;
}

.econ-home-counter {
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    color: #000;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}

.econ-home-image-link {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
    height: min(62vh, 610px);
    color: #000 !important;
}

.econ-home-image-link img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: left bottom;
}

.econ-image-missing,
.econ-empty-note {
    color: var(--econ-light);
    font-size: 12px;
    font-weight: 400;
}

.econ-home-caption {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    min-height: 54px;
    padding-top: 10px;
}

.econ-home-title {
    font-size: 14px;
    font-weight: 400;
}

.econ-home-meta {
    margin-top: 2px;
    color: var(--econ-muted);
    font-size: 12px;
}

.econ-more-projects {
    color: #000 !important;
    font-size: 30px;
    line-height: .72;
    font-weight: 400;
}

.econ-home-arrow {
    position: absolute;
    z-index: 4;
    top: calc(50% - 22px);
    font-size: 32px;
    line-height: 1;
    font-weight: 400;
    opacity: .78;
    transition: opacity .18s ease;
}

.econ-home-arrow:hover {
    opacity: 1;
}

.econ-home-arrow--prev {
    left: -48px;
}

.econ-home-arrow--next {
    right: -48px;
}

/* Projects overview */
.econ-overview {
    display: grid;
    grid-template-columns: minmax(230px, 23vw) minmax(0, 1fr);
    column-gap: clamp(52px, 5vw, 96px);
    min-height: 100vh;
    padding: var(--econ-home-top) var(--econ-right) 60px var(--econ-content-left);
}

.admin-bar .econ-overview {
    padding-top: calc(var(--econ-home-top) + 18px);
}

.econ-overview-list {
    max-width: 310px;
}

.econ-overview-group {
    margin: 0 0 26px;
}

.econ-overview-group h2 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 400;
}

.econ-overview-item {
    display: block;
    width: max-content;
    max-width: 100%;
    padding: 1px 0;
    color: #000 !important;
    font-size: 12px;
}

.econ-overview-item:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.econ-overview-preview {
    align-self: start;
    justify-self: stretch;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: min(64vh, 620px);
    color: #000 !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.econ-overview-preview.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.econ-overview-preview img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: left top;
}

.econ-overview-mobile-image {
    display: none;
}

/* Project page */
.econ-project {
    display: grid;
    grid-template-columns: minmax(270px, 22vw) minmax(0, 1fr);
    column-gap: clamp(52px, 4.6vw, 90px);
    height: 100vh;
    padding: var(--econ-home-top) var(--econ-right) 40px var(--econ-content-left);
    overflow: hidden;
}

.admin-bar .econ-project {
    height: calc(100vh - 32px);
    padding-top: calc(var(--econ-home-top) + 18px);
}

.econ-project-info {
    height: calc(100vh - var(--econ-home-top) - 40px);
    padding-right: 18px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--econ-line) transparent;
}

.admin-bar .econ-project-info {
    height: calc(100vh - var(--econ-home-top) - 58px);
}

.econ-project-header h1 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.018em;
}

.econ-project-subtitle {
    margin: 2px 0 0;
    font-size: 12px;
    line-height: 1.4;
}

.econ-project-facts {
    margin: 28px 0 32px;
    max-width: 390px;
    font-size: 12px;
    line-height: 1.45;
}

.econ-project-facts > div {
    display: grid;
    grid-template-columns: 94px 1fr;
    gap: 10px;
    margin-bottom: 2px;
}

.econ-project-facts dt,
.econ-project-facts dd {
    margin: 0;
}

.econ-project-facts dt {
    color: var(--econ-muted);
}

.econ-project-description,
.econ-project-text-block {
    max-width: 500px;
    font-size: 12px;
    line-height: 1.48;
}

.econ-project-description p:first-child {
    margin-top: 0;
}

.econ-project-description p,
.econ-project-text-block p {
    margin: 0 0 1.05em;
}

.econ-project-text-block {
    margin-top: 24px;
}

.econ-project-text-block h2 {
    margin: 0 0 7px;
    font-size: 12px;
    font-weight: 700;
}

.econ-project-gallery {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    height: calc(100vh - var(--econ-home-top) - 40px);
}

.admin-bar .econ-project-gallery {
    height: calc(100vh - var(--econ-home-top) - 58px);
}

.econ-gallery-stage {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: calc(100% - 26px);
}

.econ-gallery-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease;
}

.econ-gallery-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.econ-gallery-slide img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: left top;
}

.econ-gallery-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
}

.econ-gallery-zone span {
    position: absolute;
    top: 50%;
    font-size: 32px;
    line-height: 1;
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity .16s ease;
}

.econ-gallery-zone:hover span,
.econ-gallery-zone:focus-visible span {
    opacity: 1;
}

.econ-gallery-zone--prev {
    left: 0;
}

.econ-gallery-zone--prev span {
    left: 10px;
}

.econ-gallery-zone--next {
    right: 0;
}

.econ-gallery-zone--next span {
    right: 10px;
}

.econ-gallery-counter {
    align-self: flex-start;
    padding-top: 8px;
    font-size: 12px;
}

.econ-gallery-mobile,
.econ-gallery-mobile-first,
.econ-gallery-mobile-rest {
    display: none;
}

/* Studio / Services / Research / Contact */
.econ-editorial {
    display: grid;
    grid-template-columns: minmax(220px, 22vw) minmax(0, 1fr);
    column-gap: clamp(52px, 5vw, 96px);
    min-height: 100vh;
    padding: var(--econ-home-top) var(--econ-right) 70px var(--econ-content-left);
}

.admin-bar .econ-editorial {
    padding-top: calc(var(--econ-home-top) + 18px);
}

.econ-page-index {
    position: sticky;
    top: var(--econ-home-top);
    align-self: start;
}

.admin-bar .econ-page-index {
    top: calc(var(--econ-home-top) + 32px);
}

.econ-page-index h1 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.018em;
}

.econ-toc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    margin-top: 34px;
}

.econ-toc a {
    color: var(--econ-muted) !important;
    font-size: 12px;
}

.econ-toc a:hover,
.econ-toc a.is-active {
    color: #000 !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.econ-page-content {
    max-width: 850px;
    font-size: 14.5px;
}

.econ-page-content h2 {
    margin: 0 0 16px;
    padding-top: 92px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.012em;
}

.econ-page-content h2:first-child {
    padding-top: 0;
}

.econ-page-content h3 {
    margin: 0 0 10px;
    font-size: 13.5px;
    font-weight: 700;
}

.econ-page-content p {
    max-width: 680px;
    margin: 0 0 1.1em;
}

.econ-page-content img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 34px 0;
}

.econ-contact {
    grid-template-columns: minmax(220px, 22vw) minmax(0, 1fr);
}

.econ-contact .econ-page-content {
    font-size: 13px;
}

.econ-contact .econ-page-content h2 {
    padding-top: 0;
}

.econ-contact .econ-page-content p {
    margin-bottom: 26px;
}

/* Tablet and mobile */
@media (max-width: 760px), (hover: none) and (pointer: coarse) and (max-width: 1024px) {
    :root {
        --econ-mobile-edge: 22px;
    }

    .econ-language--desktop {
        display: none;
    }

    .econ-mobile-toggle {
        position: fixed;
        z-index: 210;
        top: 24px;
        right: var(--econ-mobile-edge);
        display: block;
        font-size: 0;
        width: 24px;
        height: 18px;
    }

    .admin-bar .econ-mobile-toggle {
        top: 70px;
    }

    .econ-sidebar {
        z-index: 220;
        width: min(88vw, 390px);
        padding: 24px 26px 40px;
        transform: translateX(-105%);
        transition: transform .3s var(--econ-ease);
    }

    .econ-sidebar.is-open {
        transform: translateX(0);
    }

    .admin-bar .econ-sidebar {
        top: 46px;
    }

    .econ-sidebar__top {
        align-items: center;
    }

    .econ-logo {
        font-size: 18px;
    }

    .econ-main-nav {
        margin-top: 54px;
    }

    .econ-main-nav > a,
    .econ-accordion-trigger {
        font-size: 14px;
    }

    .econ-category-nav > .econ-accordion-trigger {
        font-size: 13px;
    }

    .econ-project-nav-link {
        font-size: 13.5px;
    }

    .econ-mobile-close {
        display: block !important;
        font-size: 24px;
        line-height: 1;
    }

    .econ-sidebar__language {
        display: block;
        margin-top: 36px;
        font-size: 11px;
    }

    .econ-sidebar-backdrop {
        position: fixed;
        z-index: 215;
        inset: 0;
        display: block;
        background: rgba(255, 255, 255, .82);
    }

    .econ-home {
        min-height: 100svh;
        overflow: visible;
    }

    .econ-home-stage {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        max-width: none;
        padding: 110px var(--econ-mobile-edge) 34px;
    }

    .admin-bar .econ-home-stage {
        top: auto;
    }

    .econ-home-image-link {
        height: min(58svh, 560px);
    }

    .econ-home-counter {
        top: 76px;
        left: 50%;
        font-size: 13px;
    }

    .econ-home-arrow--prev {
        left: 2px;
    }

    .econ-home-arrow--next {
        right: 2px;
    }

    .econ-overview,
    .econ-project,
    .econ-editorial,
    .econ-contact {
        display: block;
        height: auto;
        min-height: 100svh;
        padding: 110px var(--econ-mobile-edge) 58px;
        overflow: visible;
    }

    .admin-bar .econ-overview,
    .admin-bar .econ-project,
    .admin-bar .econ-editorial {
        height: auto;
        padding-top: 124px;
    }

    .econ-overview-list {
        max-width: none;
    }

    .econ-overview-group {
        margin-bottom: 34px;
    }

    .econ-overview-item {
        width: 100%;
        margin-bottom: 22px;
    }

    .econ-overview-mobile-image {
        display: block;
        width: auto;
        max-width: 100%;
        max-height: 56svh;
        margin-top: 8px;
        object-fit: contain;
        object-position: left top;
    }

    .econ-overview-preview {
        display: none;
    }

    .econ-project-info,
    .admin-bar .econ-project-info {
        height: auto;
        padding: 0;
        overflow: visible;
    }

    .econ-project-gallery,
    .admin-bar .econ-project-gallery {
        height: auto;
        margin-top: 44px;
    }

    .econ-gallery-stage,
    .econ-gallery-counter {
        display: none;
    }

    .econ-gallery-mobile {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .econ-gallery-mobile img {
        width: auto;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .econ-page-index,
    .admin-bar .econ-page-index {
        position: static;
        margin-bottom: 48px;
    }

    .econ-toc {
        margin-top: 22px;
    }

    .econ-page-content h2 {
        padding-top: 66px;
    }

    .econ-page-content h2:first-child {
        padding-top: 0;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 13px;
    }

    .econ-home-image-link {
        height: min(53svh, 480px);
    }

    .econ-home-caption {
        min-height: 68px;
    }

    .econ-home-arrow {
        top: auto;
        bottom: 57px;
    }

    .econ-home-arrow--prev {
        left: 0;
    }

    .econ-home-arrow--next {
        right: 0;
    }

    .econ-project-facts {
        margin: 30px 0 34px;
    }

    .econ-project-facts > div {
        grid-template-columns: 86px 1fr;
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .econ-intro {
        display: none;
    }
}

/* v2.2 Projects index: editorial table inspired by the reference layout */
.econ-project-index {
    display: grid;
    grid-template-columns: clamp(180px, 15vw, 250px) minmax(0, 1fr);
    column-gap: clamp(54px, 6vw, 112px);
    min-height: 100vh;
    padding: var(--econ-home-top) var(--econ-right) 86px var(--econ-content-left);
}

.admin-bar .econ-project-index {
    padding-top: calc(var(--econ-home-top) + 18px);
}

.econ-project-index__filters {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-self: start;
    position: sticky;
    top: var(--econ-home-top);
    max-width: 220px;
}

.admin-bar .econ-project-index__filters {
    top: calc(var(--econ-home-top) + 32px);
}

.econ-project-filter {
    appearance: none;
    border: 0;
    border-bottom: 1px solid #9b9b9b;
    border-radius: 0;
    background: transparent;
    color: #000;
    padding: 9px 0 8px;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-size: 13.5px;
    line-height: 1.1;
    text-align: left;
    cursor: pointer;
}

.econ-project-filter:first-child {
    font-weight: 700;
}

.econ-project-filter:hover,
.econ-project-filter.is-active {
    font-weight: 700;
}

.econ-project-index__list {
    min-width: 0;
}

.econ-project-index__row {
    border-top: 1px solid #9b9b9b;
}

.econ-project-index__row:last-child {
    border-bottom: 1px solid #9b9b9b;
}

.econ-project-index__row[hidden] {
    display: none;
}

.econ-project-index__link {
    display: grid;
    grid-template-columns: minmax(100px, 15%) minmax(150px, 22%) minmax(0, 1fr);
    column-gap: clamp(28px, 4vw, 72px);
    align-items: start;
    padding: 13px 0 58px;
    color: #000 !important;
}

.econ-project-index__year {
    font-size: 13.5px;
    font-weight: 700;
}

.econ-project-index__category {
    max-width: 180px;
    font-size: 13.5px;
    line-height: 1.2;
}

.econ-project-index__entry {
    min-width: 0;
}

.econ-project-index__entry h2 {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
}

.econ-project-index__subtitle,
.econ-project-index__location {
    max-width: 720px;
    margin: 14px 0 0;
    font-size: 13.5px;
    line-height: 1.35;
}

.econ-project-index__location {
    margin-top: 3px;
    color: var(--econ-muted);
}

.econ-project-index__image {
    width: auto;
    max-width: min(520px, 72%);
    max-height: 390px;
    margin-top: 18px;
    object-fit: contain;
    object-position: left top;
}

.econ-project-index__link:hover h2 {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* v2.2 Contact: structured text grid with office location */
.econ-contact-page {
    min-height: 100vh;
    padding: var(--econ-home-top) var(--econ-right) 40px var(--econ-content-left);
}

.admin-bar .econ-contact-page {
    padding-top: calc(var(--econ-home-top) + 18px);
}

.econ-contact-grid {
    display: grid;
    grid-template-columns: clamp(180px, 19vw, 330px) minmax(320px, 720px);
    column-gap: clamp(52px, 7vw, 130px);
    row-gap: 58px;
    max-width: 1120px;
}

.econ-contact-label {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}

.econ-contact-body {
    font-size: 13.5px;
    line-height: 1.38;
}

.econ-contact-body h1 {
    margin: 0 0 18px;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.2;
}

.econ-contact-body p {
    margin: 0 0 24px;
}

.econ-contact-body a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.econ-contact-custom > *:first-child {
    margin-top: 0;
}

.econ-contact-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    max-width: 790px;
    margin-top: clamp(120px, 22vh, 260px);
    margin-left: clamp(180px, 19vw, 330px);
    padding-top: 20px;
    font-size: 11.5px;
    line-height: 1.4;
}

.econ-contact-footer a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 760px), (hover: none) and (pointer: coarse) and (max-width: 1024px) {
    .econ-project-index,
    .econ-contact-page {
        display: block;
        min-height: 100svh;
        padding: 110px var(--econ-mobile-edge) 58px;
    }

    .admin-bar .econ-project-index,
    .admin-bar .econ-contact-page {
        padding-top: 124px;
    }

    .econ-project-index__filters {
        position: static;
        max-width: none;
        margin-bottom: 48px;
    }

    .econ-project-index__link {
        display: block;
        padding: 13px 0 38px;
    }

    .econ-project-index__year,
    .econ-project-index__category {
        margin-bottom: 6px;
    }

    .econ-project-index__entry h2 {
        margin-top: 18px;
    }

    .econ-project-index__image {
        max-width: 100%;
        max-height: none;
    }

    .econ-contact-grid {
        display: block;
        max-width: none;
    }

    .econ-contact-label {
        margin-top: 44px;
        margin-bottom: 14px;
    }

    .econ-contact-label:first-child {
        margin-top: 0;
    }

    .econ-contact-footer {
        display: block;
        max-width: none;
        margin: 100px 0 0;
    }

    .econ-contact-footer > div + div {
        margin-top: 24px;
    }
}

/* v2.3 typography, navigation, homepage, research index and legal footer */
:root {
    --econ-font: "Inter", Arial, Helvetica, sans-serif;
    --econ-nav-primary: 15px;
    --econ-nav-secondary: 13px;
    --econ-logo-size: 26px;
}

html,
body,
button,
input,
textarea,
select {
    font-family: var(--econ-font) !important;
}

body {
    font-size: 14px;
    letter-spacing: -0.012em;
}

.econ-logo {
    font-size: var(--econ-logo-size);
    letter-spacing: -0.055em;
}

.econ-main-nav > a,
.econ-accordion-trigger {
    font-size: var(--econ-nav-primary);
    line-height: 1.42;
}

.econ-category-nav > .econ-accordion-trigger,
.econ-project-nav-link {
    font-size: var(--econ-nav-secondary);
    line-height: 1.42;
}

.econ-main-nav > a:hover,
.econ-project-nav-link:hover,
.econ-accordion-trigger:hover {
    font-weight: 700;
    text-decoration: none;
}

.econ-main-nav .is-current,
.econ-project-nav-link.is-current,
.econ-accordion.is-open > .econ-accordion-trigger {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.econ-language--desktop {
    font-size: 12px;
}

/* Homepage */
.econ-home {
    min-height: 100vh;
    overflow: visible;
}

.econ-home-stage {
    position: absolute;
    top: clamp(150px, 19vh, 185px);
    left: clamp(400px, 25.2vw, 470px);
    width: clamp(720px, 62vw, 1120px);
    max-width: calc(100vw - clamp(400px, 25.2vw, 470px) - var(--econ-right));
}

.admin-bar .econ-home-stage {
    top: clamp(170px, 21vh, 205px);
}

.econ-home-counter {
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 600;
}

.econ-home-image-link {
    width: 100%;
    height: min(64vh, 640px);
    align-items: center;
    justify-content: center;
}

.econ-home-image-link img {
    max-width: 100%;
    max-height: 100%;
    object-position: center center;
    transition: opacity .28s ease;
}

.econ-home-image-link:hover img,
.econ-home-image-link:focus-visible img {
    opacity: .58;
}

.econ-home-caption {
    display: block;
    min-height: 52px;
    padding-top: 12px;
}

.econ-home-title {
    font-size: 14px;
    font-weight: 400;
}

.econ-home-meta {
    margin-top: 2px;
    color: #000;
    font-size: 13px;
}

.econ-home-arrow,
.econ-more-projects {
    display: none !important;
}

/* Contact: office and general enquiries only */
.econ-contact-page {
    min-height: 100vh;
    padding-bottom: 100px;
}

.econ-contact-grid {
    grid-template-columns: clamp(180px, 19vw, 330px) minmax(320px, 720px);
    row-gap: 72px;
}

.econ-contact-page a,
.econ-site-footer a {
    color: #000 !important;
}

/* Research uses the former editorial index rhythm, without filter buttons */
.econ-research-index {
    display: grid;
    grid-template-columns: clamp(220px, 22vw, 340px) minmax(0, 1fr);
    column-gap: clamp(54px, 6vw, 112px);
    min-height: 100vh;
    padding: var(--econ-home-top) var(--econ-right) 96px var(--econ-content-left);
}

.admin-bar .econ-research-index {
    padding-top: calc(var(--econ-home-top) + 18px);
}

.econ-research-index__nav {
    position: sticky;
    top: var(--econ-home-top);
    align-self: start;
}

.admin-bar .econ-research-index__nav {
    top: calc(var(--econ-home-top) + 32px);
}

.econ-research-index__nav h1 {
    margin: 0 0 34px;
    font-size: var(--econ-nav-primary);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.econ-research-index__nav nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.econ-research-index__nav a {
    color: #000 !important;
    font-size: var(--econ-nav-secondary);
}

.econ-research-index__nav a:hover {
    font-weight: 700;
}

.econ-research-index__nav a.is-active {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.econ-research-index__content {
    min-width: 0;
}

.econ-research-row {
    display: grid;
    grid-template-columns: minmax(100px, 15%) minmax(150px, 22%) minmax(0, 1fr);
    column-gap: clamp(28px, 4vw, 72px);
    align-items: start;
    border-top: 1px solid #9b9b9b;
    padding: 13px 0 58px;
    scroll-margin-top: 120px;
}

.econ-research-row:last-child {
    border-bottom: 1px solid #9b9b9b;
}

.econ-research-row__year,
.econ-research-row__category {
    font-size: 13px;
    line-height: 1.3;
}

.econ-research-row__year {
    font-weight: 700;
}

.econ-research-row__entry {
    min-width: 0;
    font-size: 13px;
}

.econ-research-row__entry h2 {
    margin: 0 0 14px;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
}

.econ-research-row__entry p {
    max-width: 720px;
    margin: 0 0 1em;
}

.econ-research-row__entry img {
    width: auto;
    max-width: min(520px, 72%);
    max-height: 390px;
    margin: 18px 0 0;
    object-fit: contain;
    object-position: left top;
}

/* Legal footer */
.econ-site-footer {
    position: relative;
    z-index: 5;
    min-height: 190px;
    margin-left: var(--econ-sidebar-width);
    padding: 48px var(--econ-right) 22px;
    background: #fff;
    color: #000;
    font-size: 13px;
    text-align: center;
}

.econ-site-footer__legal {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.econ-site-footer__legal a:hover {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.econ-site-footer__copyright {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    text-align: center;
}

/* The old Projects archive is redirected to Research; keep its UI hidden if a cache serves it briefly. */
.econ-project-index {
    display: none !important;
}

@media (max-width: 760px), (hover: none) and (pointer: coarse) and (max-width: 1024px) {
    :root {
        --econ-logo-size: 21px;
        --econ-nav-primary: 15px;
        --econ-nav-secondary: 13px;
    }

    .econ-home-stage {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        max-width: none;
        padding: 118px var(--econ-mobile-edge) 48px;
    }

    .admin-bar .econ-home-stage {
        top: auto;
    }

    .econ-home-image-link {
        height: min(57svh, 560px);
    }

    .econ-home-counter {
        top: 82px;
    }

    .econ-research-index {
        display: block;
        min-height: 100svh;
        padding: 110px var(--econ-mobile-edge) 64px;
    }

    .admin-bar .econ-research-index {
        padding-top: 124px;
    }

    .econ-research-index__nav {
        position: static;
        margin-bottom: 48px;
    }

    .econ-research-row {
        display: block;
        padding: 13px 0 40px;
    }

    .econ-research-row__year,
    .econ-research-row__category {
        margin-bottom: 5px;
    }

    .econ-research-row__entry h2 {
        margin-top: 18px;
    }

    .econ-research-row__entry img {
        max-width: 100%;
        max-height: none;
    }

    .econ-site-footer {
        min-height: 170px;
        margin-left: 0;
        padding: 42px var(--econ-mobile-edge) 22px;
        font-size: 12px;
    }

    .econ-site-footer__legal {
        gap: 18px;
    }
}

/* v2.4 compact and unified typography */
:root {
    --econ-nav-primary: 13px;
    --econ-nav-secondary: 12px;
    --econ-logo-size: 24px;
    --econ-text-regular: 12px;
    --econ-text-small: 11px;
}

body {
    font-size: 13px;
}

.econ-logo {
    font-size: var(--econ-logo-size);
}

.econ-main-nav > a,
.econ-accordion-trigger {
    font-size: var(--econ-nav-primary);
}

.econ-category-nav > .econ-accordion-trigger,
.econ-project-nav-link {
    font-size: var(--econ-nav-secondary);
}

.econ-language--desktop {
    font-size: var(--econ-text-small);
}

/* Project detail: one consistent information scale */
.econ-project-header h1 {
    font-size: 14px;
    line-height: 1.3;
}

.econ-project-subtitle,
.econ-project-facts,
.econ-project-description,
.econ-project-text-block,
.econ-project-text-block h2,
.econ-gallery-counter {
    font-size: var(--econ-text-regular);
}

.econ-project-subtitle,
.econ-project-facts,
.econ-project-description,
.econ-project-text-block {
    line-height: 1.48;
}

.econ-project-facts {
    margin: 26px 0 30px;
}

.econ-project-facts > div {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 9px;
    margin-bottom: 2px;
}

.econ-project-description p,
.econ-project-text-block p {
    margin-bottom: .95em;
}

.econ-project-text-block {
    margin-top: 22px;
}

.econ-project-text-block h2 {
    margin-bottom: 5px;
}

.econ-gallery-zone span {
    font-size: 28px;
}

/* Editorial pages keep the same compact scale */
.econ-page-index h1,
.econ-page-content h2 {
    font-size: 14px;
}

.econ-toc a,
.econ-page-content,
.econ-page-content h3,
.econ-research-row__year,
.econ-research-row__category,
.econ-research-row__entry,
.econ-site-footer {
    font-size: var(--econ-text-regular);
}

.econ-research-row__entry h2 {
    font-size: 13px;
}

@media (max-width: 760px), (hover: none) and (pointer: coarse) and (max-width: 1024px) {
    :root {
        --econ-logo-size: 21px;
        --econ-nav-primary: 13px;
        --econ-nav-secondary: 12px;
        --econ-text-regular: 12px;
    }
}

/* v2.5 homepage alignment, cropped home image, and gallery arrows outside image */
:root {
    --econ-nav-start: calc(var(--econ-top) + var(--econ-logo-size) + 52px);
}

/* Align the top edge of the homepage image with the Projects menu item. */
.econ-home-stage {
    top: var(--econ-nav-start);
}

.admin-bar .econ-home-stage {
    top: calc(var(--econ-nav-start) + 32px);
}

/* Keep a large fixed image frame; crop source images to fill it. */
.econ-home-image-link {
    height: min(68vh, 680px);
    overflow: hidden;
}

.econ-home-image-link img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center center;
}

/* Project-detail arrows sit outside the image, not over it. */
.econ-gallery-stage {
    overflow: visible;
}

.econ-gallery-zone {
    top: 0;
    bottom: 0;
    width: 42px;
    z-index: 6;
}

.econ-gallery-zone--prev {
    left: -50px;
}

.econ-gallery-zone--next {
    right: -50px;
}

.econ-gallery-zone span,
.econ-gallery-zone--prev span,
.econ-gallery-zone--next span {
    top: 50%;
    left: 50%;
    right: auto;
    font-size: 32px;
    transform: translate(-50%, -50%);
}

@media (max-width: 760px), (hover: none) and (pointer: coarse) and (max-width: 1024px) {
    .econ-home-stage,
    .admin-bar .econ-home-stage {
        top: auto;
    }

    .econ-home-image-link {
        height: min(57svh, 560px);
    }

    .econ-home-image-link img {
        object-fit: cover;
    }
}

/* v2.6 gallery controls, universal footer, Studio and Services practice layouts */

/* Gallery controls stay visible in grey and turn black on hover/focus. */
.econ-gallery-zone span {
    opacity: 1;
    color: #9a9a9a;
    transition: color .18s ease, opacity .18s ease;
}

.econ-gallery-zone:hover span,
.econ-gallery-zone:focus-visible span {
    opacity: 1;
    color: #000;
}

.econ-gallery-counter {
    align-self: stretch;
    width: 100%;
    padding-top: 10px;
    text-align: center;
}

/* Universal footer: aligned with the content field and smaller than body copy. */
.econ-site-footer {
    position: relative;
    z-index: 5;
    min-height: 250px;
    margin: 0 var(--econ-right) 0 var(--econ-content-left);
    padding: 86px 0 46px;
    background: #fff;
    color: #000;
    font-size: 10px;
    line-height: 1.42;
    text-align: left;
}

.econ-site-footer__inner {
    display: grid;
    grid-template-columns: minmax(250px, 1fr) minmax(250px, 1fr);
    column-gap: clamp(90px, 12vw, 220px);
    max-width: 920px;
}

.econ-site-footer__office,
.econ-site-footer__meta {
    min-width: 0;
}

.econ-site-footer__spacer {
    height: 10px;
}

.econ-site-footer__legal {
    display: block;
    margin-top: 26px;
}

.econ-site-footer__legal a {
    color: #000 !important;
}

.econ-site-footer__legal a:hover,
.econ-site-footer__meta > a:hover {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.econ-site-footer__copyright {
    position: static;
    text-align: left;
}

/* Practice-style Studio and Services pages. */
.econ-practice-page {
    min-height: 100vh;
    padding: var(--econ-home-top) var(--econ-right) 80px var(--econ-content-left);
}

.admin-bar .econ-practice-page {
    padding-top: calc(var(--econ-home-top) + 18px);
}

.econ-practice-section {
    display: grid;
    grid-template-columns: clamp(180px, 19vw, 330px) minmax(0, 760px);
    column-gap: clamp(52px, 7vw, 130px);
    align-items: start;
    margin-bottom: clamp(100px, 16vh, 180px);
    scroll-margin-top: 120px;
}

.econ-practice-section:last-child {
    margin-bottom: 0;
}

.econ-practice-label {
    position: sticky;
    top: var(--econ-home-top);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
}

.admin-bar .econ-practice-label {
    top: calc(var(--econ-home-top) + 32px);
}

.econ-practice-body {
    min-width: 0;
    font-size: 12px;
    line-height: 1.48;
}

.econ-practice-body h1,
.econ-practice-body h2 {
    margin: 0 0 18px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0;
}

.econ-practice-copy {
    max-width: 690px;
}

.econ-practice-copy p {
    margin: 0 0 1em;
}

.econ-placeholder-image {
    width: 100%;
    margin-top: 34px;
    background: #e8e8e8;
}

.econ-placeholder-image--wide {
    aspect-ratio: 16 / 9;
}

.econ-placeholder-image--people {
    max-width: 520px;
    aspect-ratio: 4 / 3;
    margin-top: 0;
}

.econ-placeholder-image--service {
    max-width: 620px;
    aspect-ratio: 3 / 2;
}

.econ-people-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 48px;
    max-width: 620px;
    margin-top: 30px;
}

.econ-person {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.econ-person strong {
    font-size: 11px;
    font-weight: 700;
}

.econ-person span {
    font-size: 11px;
}

.econ-clients-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 48px;
    max-width: 680px;
    font-size: 11px;
}

@media (max-width: 760px), (hover: none) and (pointer: coarse) and (max-width: 1024px) {
    .econ-site-footer {
        min-height: 220px;
        margin: 0;
        padding: 72px var(--econ-mobile-edge) 34px;
        font-size: 10px;
    }

    .econ-site-footer__inner {
        display: block;
        max-width: none;
    }

    .econ-site-footer__meta {
        margin-top: 32px;
    }

    .econ-practice-page {
        padding: 110px var(--econ-mobile-edge) 64px;
    }

    .admin-bar .econ-practice-page {
        padding-top: 124px;
    }

    .econ-practice-section {
        display: block;
        margin-bottom: 90px;
    }

    .econ-practice-label,
    .admin-bar .econ-practice-label {
        position: static;
        margin-bottom: 24px;
    }

    .econ-people-grid,
    .econ-clients-grid {
        grid-template-columns: 1fr;
    }
}

/* v2.7 homepage: vertically stacked featured projects with natural free scrolling. */
.econ-home {
    position: relative;
    min-height: 100vh;
    overflow: visible;
    padding: var(--econ-nav-start) var(--econ-right) 0 var(--econ-content-left);
}

.admin-bar .econ-home {
    padding-top: calc(var(--econ-nav-start) + 32px);
}

.econ-home-stage,
.admin-bar .econ-home-stage {
    position: static;
    top: auto;
    left: auto;
    width: min(68vw, 1220px);
    max-width: calc(100vw - var(--econ-content-left) - var(--econ-right));
}

.econ-home-slides {
    position: static;
    display: flex;
    flex-direction: column;
    gap: clamp(96px, 14vh, 170px);
}

.econ-home-slide,
.econ-home-slide.is-active {
    display: block;
    animation: none;
}

.econ-home-counter {
    display: none !important;
}

.econ-home-image-link {
    width: 100%;
    height: min(68vh, 680px);
    overflow: hidden;
}

.econ-home-caption {
    margin-top: 12px;
}

.econ-home-title,
.econ-home-meta {
    line-height: 1.42;
}

@media (max-width: 760px), (hover: none) and (pointer: coarse) and (max-width: 1024px) {
    .econ-home,
    .admin-bar .econ-home {
        padding: 112px var(--econ-mobile-edge) 0;
    }

    .econ-home-stage,
    .admin-bar .econ-home-stage {
        width: 100%;
        max-width: none;
    }

    .econ-home-slides {
        gap: 78px;
    }

    .econ-home-image-link {
        height: min(64vh, 560px);
    }
}


/* v2.8 Mobile refinement: fixed brand header and image-first project pages. */
.econ-mobile-header {
    display: none;
}

@media (max-width: 760px), (hover: none) and (pointer: coarse) and (max-width: 1024px) {
    :root {
        --econ-mobile-edge: 16px;
        --econ-mobile-header-height: 88px;
    }

    .econ-mobile-header {
        position: fixed;
        z-index: 210;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: var(--econ-mobile-header-height);
        padding: calc(16px + env(safe-area-inset-top, 0px)) var(--econ-mobile-edge) 14px;
        background: #fff;
    }

    .admin-bar .econ-mobile-header {
        top: 46px;
    }

    .econ-mobile-brand {
        display: inline-block;
        color: #000 !important;
        font-size: 20px;
        line-height: 1;
        letter-spacing: -0.045em;
        white-space: nowrap;
    }

    .econ-mobile-brand .econ-logo__strong {
        font-weight: 700;
    }

    .econ-mobile-brand .econ-logo__light {
        font-weight: 400;
    }

    .econ-mobile-toggle,
    .admin-bar .econ-mobile-toggle {
        position: static;
        top: auto;
        right: auto;
        display: block;
        flex: 0 0 auto;
        width: 24px;
        height: 18px;
    }

    .econ-sidebar__top .econ-logo {
        visibility: hidden;
        pointer-events: none;
    }

    .econ-sidebar {
        padding-top: calc(20px + env(safe-area-inset-top, 0px));
    }

    .econ-sidebar__top {
        min-height: 36px;
    }

    .econ-home,
    .admin-bar .econ-home,
    .econ-overview,
    .econ-project,
    .econ-editorial,
    .econ-contact,
    .econ-project-index,
    .econ-contact-page,
    .econ-practice-page {
        padding-top: calc(var(--econ-mobile-header-height) + 20px);
    }

    .admin-bar .econ-overview,
    .admin-bar .econ-project,
    .admin-bar .econ-editorial,
    .admin-bar .econ-project-index,
    .admin-bar .econ-contact-page,
    .admin-bar .econ-practice-page {
        padding-top: calc(var(--econ-mobile-header-height) + 20px);
    }

    /* Mobile homepage: project label above the image. */
    .econ-home-slide,
    .econ-home-slide.is-active {
        display: flex;
        flex-direction: column;
    }

    .econ-home-caption {
        order: -1;
        display: block;
        min-height: 0;
        margin: 0 0 18px;
        padding: 0;
    }

    .econ-home-title {
        font-size: 15px;
        font-weight: 700;
        line-height: 1.28;
    }

    .econ-home-meta {
        margin-top: 4px;
        font-size: 12px;
        line-height: 1.35;
    }

    .econ-home-image-link {
        height: min(64svh, 600px);
    }

    .econ-home-image-link img {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        object-fit: cover;
        object-position: center;
    }

    /* Mobile project: first image, then all information, then remaining images. */
    .econ-project {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .econ-project-gallery {
        display: contents;
    }

    .econ-gallery-stage,
    .econ-gallery-counter,
    .econ-gallery-mobile {
        display: none !important;
    }

    .econ-gallery-mobile-first {
        display: block;
        order: 1;
        width: 100%;
        margin: 0 0 24px;
    }

    .econ-gallery-mobile-first img {
        width: 100%;
        height: auto;
        max-height: 64svh;
        object-fit: contain;
        object-position: center top;
    }

    .econ-project-info {
        order: 2;
        width: 100%;
    }

    .econ-project-header h1 {
        font-size: 15px;
        line-height: 1.25;
    }

    .econ-project-subtitle {
        margin-top: 4px;
        font-size: 12px;
        line-height: 1.4;
    }

    .econ-project-facts {
        margin: 26px 0 30px;
        max-width: none;
        font-size: 12px;
        line-height: 1.48;
    }

    .econ-project-facts > div {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 10px;
        margin-bottom: 3px;
    }

    .econ-project-description,
    .econ-project-text-block {
        max-width: none;
        font-size: 12px;
        line-height: 1.55;
    }

    .econ-project-description p,
    .econ-project-text-block p {
        margin-bottom: 1.15em;
    }

    .econ-project-text-block {
        margin-top: 26px;
    }

    .econ-gallery-mobile-rest {
        display: flex;
        order: 3;
        flex-direction: column;
        gap: 24px;
        width: 100%;
        margin-top: 42px;
    }

    .econ-gallery-mobile-rest img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        object-position: center top;
    }
}

@media (max-width: 420px) {
    .econ-mobile-header {
        min-height: 82px;
        padding-top: calc(14px + env(safe-area-inset-top, 0px));
    }

    .econ-mobile-brand {
        font-size: 19px;
    }

    .econ-home,
    .admin-bar .econ-home,
    .econ-project,
    .admin-bar .econ-project,
    .econ-editorial,
    .econ-contact,
    .econ-project-index,
    .econ-contact-page,
    .econ-practice-page {
        padding-left: 16px;
        padding-right: 16px;
    }

    .econ-home-image-link {
        height: min(61svh, 540px);
    }
}


/* v2.9 Mobile homepage: show complete images without cropping. */
@media (max-width: 760px), (hover: none) and (pointer: coarse) and (max-width: 1024px) {
    .econ-home-image-link {
        height: auto;
        min-height: 0;
        max-height: none;
        background: transparent;
    }

    .econ-home-image-link img {
        display: block;
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: none;
        object-fit: contain;
        object-position: center;
    }
}
