/* ===========================
   Brand Architects — Main CSS
   =========================== */

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

:root {
    --color-black: #000;
    --color-white: #fff;
    --color-gray: #eaeaea;
    --max-width: 1440px;
    --content-padding: 60px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-black);
    background: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* ===========================
   Navigation
   =========================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0 var(--content-padding);
    height: 70px;
    display: flex;
    align-items: center;
    color: var(--color-white);
    background: transparent;
    transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

/* Scrolled state: white bg + black text */
.nav--scrolled {
    background: var(--color-white);
    color: var(--color-black);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: calc(var(--max-width) - 120px);
    margin: 0 auto;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo-img {
    height: 24px;
    width: auto;
    transition: opacity 0.35s ease;
}

/* Default: white logo visible, black hidden */
.nav__logo-img--white {
    display: block;
}
.nav__logo-img--black {
    display: none;
}

/* Scrolled: black logo visible, white hidden */
.nav--scrolled .nav__logo-img--white {
    display: none;
}
.nav--scrolled .nav__logo-img--black {
    display: block;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav__link {
    font-size: 17px;
    font-weight: 500;
    transition: opacity 0.2s;
    display: inline-block;
}

/* Prevent layout shift on bold by reserving bold width */
.nav__link::after {
    content: attr(data-text);
    font-weight: 700;
    visibility: hidden;
    height: 0;
    display: block;
    overflow: hidden;
}

.nav__link:hover {
    opacity: 1;
    font-weight: 700;
}

/* Active nav: siblings dim, active bold */
.nav__link--active {
    font-weight: 700;
}

.nav__link--active ~ .nav__link:not(.nav__link--active),
.nav__link:not(.nav__link--active) {
    opacity: 0.45;
}

.nav__link:not(.nav__link--active):hover {
    opacity: 1;
}

.nav__link--active,
.nav__link--active:hover {
    opacity: 1;
}

.nav__lang {
    font-size: 16px;
    font-weight: 500;
    border: 1px solid currentColor;
    border-radius: 20px;
    padding: 1px 9px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.35s;
    line-height: 1.2;
}

.nav__lang:hover {
    background: rgba(128, 128, 128, 0.15);
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    position: relative;
    width: 100%;
    height: 56.25vw; /* 16:9 */
    max-height: 810px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__img,
.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 var(--content-padding);
    max-width: var(--max-width);
    margin: 0 auto;
    left: 0;
    right: 0;
}

.hero__title {
    font-size: clamp(48px, 6.25vw, 90px);
    font-weight: 600;
    color: transparent;
    line-height: 1.1;
    letter-spacing: -0.01em;
    padding-right: 60px;
    position: relative;
}

.hero__canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    pointer-events: none;
}

.hero__blur {
    position: absolute;
    bottom: 0;
    left: var(--content-padding);
    width: 260px;
    height: 85px;
    background: var(--color-black);
    filter: blur(23px);
    border-radius: 4px;
}

/* ===========================
   Contact Popup (tall card, centered)
   =========================== */

.contact-popup {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.35s, opacity 0.35s;
}

.contact-popup.open {
    visibility: visible;
    opacity: 1;
}

.contact-popup::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.contact-popup__panel {
    position: relative;
    width: 400px;
    height: 650px;
    max-height: 90vh;
    background: var(--color-black);
    color: var(--color-white);
    padding: 28px 25px 30px;
    display: flex;
    flex-direction: column;
    transform: translateY(30px) scale(0.97);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.contact-popup.open .contact-popup__panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.contact-popup__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.contact-popup__header .nav__logo {
    color: var(--color-white);
}

.contact-popup__close {
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.contact-popup__close:hover {
    opacity: 0.6;
}

.contact-popup__title {
    font-size: 67px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: auto;
    padding-top: 10px;
}

.contact-popup__info {
    display: flex;
    flex-direction: column;
}

.contact-popup__row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 0;
}

.contact-popup__row:last-child {
    padding-bottom: 0;
}

.contact-popup__label {
    font-size: 19px;
    font-weight: 600;
}

.contact-popup__value {
    font-size: 19px;
    font-weight: 400;
    color: var(--color-white);
    transition: opacity 0.2s;
}

a.contact-popup__value:hover {
    opacity: 0.6;
}

.contact-popup__divider {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ===========================
   About Section
   =========================== */

.about {
    padding: 270px var(--content-padding) 80px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.about__inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about__title {
    font-size: clamp(32px, 4.65vw, 67px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    max-width: 1120px;
}

.about__desc {
    font-size: clamp(18px, 2.08vw, 30px);
    font-weight: 400;
    line-height: 1.4;
    margin-left: auto;
    max-width: 870px;
    color: var(--color-black);
}

/* ===========================
   Philosophy Section (scroll-driven)
   =========================== */

.philosophy {
    height: 250vh;
    position: relative;
}

.philosophy__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 var(--content-padding);
    max-width: var(--max-width);
    margin: 0 auto;
    overflow: hidden;
}

.philosophy__lines {
    will-change: transform;
}

.philosophy__line {
    font-size: clamp(48px, 7.29vw, 105px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-black);
    will-change: opacity, transform;
    white-space: nowrap;
    margin-top: -0.55em;
    /* --fade-top: 0=top clipped, 1=top visible */
    /* --fade-btm: 0=bottom clipped, 1=bottom visible */
    --fade-top: 1;
    --fade-btm: 1;
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 calc((1 - var(--fade-top)) * 80%),
        #000 calc(100% - (1 - var(--fade-btm)) * 80%),
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 calc((1 - var(--fade-top)) * 80%),
        #000 calc(100% - (1 - var(--fade-btm)) * 80%),
        transparent 100%
    );
}

.philosophy__line:first-child {
    margin-top: 0;
}

/* ===========================
   Services / What We Do
   =========================== */

.services {
    position: relative;
    background: var(--color-white);
    padding: 0;
}

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

.services__inner {
    position: sticky;
    top: 0;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px var(--content-padding) 0;
    height: 100vh;
    overflow: hidden;
}

.services__list {
    transition: transform 0.15s ease-out;
}

.services__title {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: var(--color-black);
    will-change: transform;
    transition: transform 0.15s ease-out;
}

.services.dark .services__title {
    color: var(--color-white);
}

.services__list {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.services.dark .services__list {
    border-top-color: rgba(255, 255, 255, 0.2);
}

/* ── Service items ── */
.services__item {
    position: relative;
    display: grid;
    grid-template-columns: 140px 1fr 1fr;
    align-items: start;
    padding: 55px 0;
    color: rgba(0, 0, 0, 0.30);
    gap: 20px;
    transition: color 0.4s ease;
    overflow: hidden;
}

.services.dark .services__item {
    color: rgba(255, 255, 255, 0.35);
}

.services__item.active {
    color: var(--color-white);
}

/* Per-item background image (only visible on hover) */
.services__item-bg {
    position: absolute;
    inset: -4px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.services__item-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.services__item.active .services__item-bg {
    opacity: 1;
}

.services__num,
.services__name,
.services__desc {
    position: relative;
    z-index: 1;
}

.services__num,
.services__name {
    transform: translateX(40px);
}

.services__num {
    font-size: clamp(48px, 5.5vw, 80px);
    font-weight: 300;
    line-height: 1;
}

.services__name {
    font-size: clamp(22px, 2.5vw, 36px);
    font-weight: 600;
    line-height: 1.15;
    padding-top: 8px;
}

.services__desc {
    font-size: clamp(14px, 1.4vw, 20px);
    font-weight: 400;
    line-height: 1.45;
    padding-top: 8px;
    padding-right: 40px;
    max-width: 600px;
}

.services__divider {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.services.dark .services__divider {
    border-top-color: rgba(255, 255, 255, 0.15);
}

/* ===========================
   Selected Works (fullscreen sticky stack)
   =========================== */

.works {
    position: relative;
}

.works__list {
    position: sticky;
    top: 0;
}

.works__item {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    cursor: pointer;
}

.works__item-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.works__item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    pointer-events: none;
}

.works__item-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 0 var(--content-padding);
    max-width: var(--max-width);
    margin: 0 auto;
}

.works__name {
    font-size: clamp(28px, 3.13vw, 45px);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.works__btn {
    display: inline-block;
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 400;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 10px 24px;
    width: fit-content;
    transition: background 0.2s, border-color 0.2s;
}

.works__btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
}

.works__cta {
    position: relative;
    z-index: 2;
    background: var(--color-white);
    display: flex;
    justify-content: center;
    padding: 80px 0;
}

.works__cta-link {
    display: flex;
    align-items: center;
    gap: 30px;
    text-decoration: none;
    position: relative;
}

.works__cta-link span:first-child {
    font-size: clamp(36px, 4.51vw, 65px);
    font-weight: 400;
    color: var(--color-black);
}

.works__cta-arrow {
    display: flex;
    align-items: center;
}

.works__cta-arrow svg {
    display: block;
}

/* ===========================
   Clients / Logo Marquee (2 rows)
   =========================== */

.clients {
    padding: 40px 0 60px;
    overflow: hidden;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.clients__track {
    display: flex;
    width: max-content;
}

.clients__track--rtl {
    animation: marqueeRTL 40s linear infinite;
}

.clients__track--ltr {
    animation: marqueeLTR 40s linear infinite;
}

.clients__slide {
    display: flex;
    align-items: center;
    gap: 45px;
    padding: 0 22px;
    flex-shrink: 0;
}

.clients__logo {
    height: 121px;
    width: auto;
    max-width: 308px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Row 1: right → left (standard) */
@keyframes marqueeRTL {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Row 2: left → right (reversed) */
@keyframes marqueeLTR {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ===========================
   Footer
   =========================== */

.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 0;
}

.footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 50px var(--content-padding) 60px;
}

.footer__title {
    font-size: clamp(48px, 11.8vw, 170px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 5px;
    white-space: nowrap;
}

.footer__subtitle {
    font-size: clamp(16px, 1.84vw, 26.5px);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 200px;
    margin-top: -5px;
    opacity: 0.9;
}

.footer__locations {
    display: flex;
    column-gap: 10px;
    row-gap: 5px;
}

.footer__location {
    width: 250px;
    flex-shrink: 0;
    margin-top: 30px;
}

.footer__location-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
}

.footer__location-addr {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.82; /* 130% of font → 14*1.3=18.2px */
    opacity: 0.85;
    max-width: 100%;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-left: auto;
    flex-shrink: 0;
}

.footer__contact-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer__contact-label {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.footer__contact-value {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    opacity: 0.85;
}

/* ===========================
   Hamburger Menu Button
   =========================== */

.nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 201;
    color: currentColor;
}

.nav__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===========================
   Mobile Menu Overlay
   =========================== */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    overflow-y: auto;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0 30px 40px;
}

.mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5vh;
    margin-bottom: 50px;
}

.mobile-menu__title {
    font-size: 48px;
    font-weight: 500;
    color: #000;
    letter-spacing: -0.96px;
    line-height: 1.1;
}

.mobile-menu__close {
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    padding: 0;
    width: 40px;
    height: 40px;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
}

.mobile-menu__nav .mobile-menu__link {
    font-size: 31px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.2);
    letter-spacing: -0.7px;
    line-height: 1.1;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
    border: none;
}

.mobile-menu__nav .mobile-menu__link.active {
    color: #000;
}

.mobile-menu__nav .mobile-menu__link:hover {
    color: #000;
}

/* All nav links: equal spacing, line centered between items */
.mobile-menu__nav .mobile-menu__link {
    padding: 0;
    margin-bottom: 12px;
}

/* Separator lines - centered between menu items */
.mobile-menu__nav .mobile-menu__link::after {
    content: '';
    display: block;
    height: 0;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.25);
    margin-top: 12px;
}

.mobile-menu__footer {
    margin-top: auto;
}

.mobile-menu__footer .mobile-menu__link {
    font-size: 31px;
    font-weight: 500;
    color: #000;
    letter-spacing: -0.7px;
    line-height: 1.1;
    text-decoration: none;
    display: block;
    padding: 0 0 8px 0;
    border: none;
}

/* Contact separator: thicker 1px line, full width */
.mobile-menu__footer .mobile-menu__link::after {
    content: '';
    display: block;
    height: 0;
    border-bottom: 1px solid #000;
    margin-top: 8px;
}

.mobile-menu__contact {
    margin-top: 15px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    letter-spacing: -0.3px;
    line-height: 1.5;
}

.mobile-menu__contact p {
    margin: 0;
}

.mobile-menu__langs {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.mobile-menu__lang {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.48px;
    border-radius: 30px;
    padding: 3px 18px;
    cursor: pointer;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu__lang--outline {
    color: #000;
    border: 1.5px solid #000;
    background: transparent;
}

.mobile-menu__lang--filled {
    color: #fff;
    background: #000;
    border: 1.5px solid #000;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 1024px) {
    :root {
        --content-padding: 40px;
    }

    .services__item[data-service] {
        grid-template-columns: 120px 1fr;
        gap: 16px;
    }

    .services__desc {
        grid-column: 1 / -1;
        margin-left: 0;
    }

    .footer__locations {
        flex-wrap: wrap;
    }

    .footer__location {
        width: calc(50% - 20px);
    }

    .footer__contact {
        width: 100%;
        flex-direction: row;
        gap: 40px;
        margin-left: 0;
        text-align: left;
    }
}

@media (max-width: 768px) {
    :root {
        --content-padding: 24px;
    }

    .nav__menu {
        gap: 16px;
    }

    .nav__link {
        font-size: 14px;
    }

    .contact-popup__panel {
        width: calc(100% - 48px);
        height: auto;
        max-height: 90vh;
        padding: 24px 20px 28px;
    }

    .hero {
        height: 80vh;
        max-height: none;
    }

    .hero__content {
        justify-content: flex-start;
        align-items: flex-end;
        padding-bottom: 110px;
    }

    .hero__title {
        padding-right: 0;
    }

    .hero__blur {
        display: none;
    }

    .about {
        padding: 60px var(--content-padding) 40px;
    }

    .about__desc {
        margin-left: 0;
    }

    .philosophy {
        display: none;
    }

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

    .services__num {
        display: block;
        margin-bottom: -10px;
    }

    .services__banner {
        height: 200px;
    }



    .footer__locations {
        flex-wrap: wrap;
    }

    .footer__location {
        width: calc(50% - 5px);
    }

    .footer__contact {
        width: 100%;
        flex-direction: row;
        gap: 10px;
        margin-left: 0;
        margin-top: 30px;
    }

    .footer__contact-row {
        width: calc(50% - 5px);
    }

    .footer__subtitle {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .nav__menu {
        display: none;
    }

    .nav__hamburger {
        display: flex;
    }

    .hero {
        height: 100svh;
    }

    .hero__content {
        justify-content: flex-start !important;
        align-items: flex-end !important;
        padding-bottom: 110px;
    }

    .hero__title {
        text-align: left !important;
        width: 100%;
        padding-right: 0 !important;
    }

    .about {
        padding: 48px var(--content-padding) 36px;
    }

    .about__inner {
        gap: 28px;
    }

    .about__title {
        font-size: 36px;
        line-height: 1.15;
        font-weight: 700;
    }

    .about__desc {
        font-size: 16px;
        line-height: 1.4;
    }

    .about__desc br {
        display: none;
    }

    .philosophy__line {
        font-size: 32px;
        white-space: normal;
        word-break: keep-all;
    }

    .services {
        padding: 40px 0 0;
    }

    .services__title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .services__item {
        display: flex;
        flex-direction: column;
        padding: 0;
        gap: 0;
        color: var(--color-black);
    }

    .services__item.active {
        padding: 0;
        color: var(--color-black);
    }

    .services__num,
    .services__name {
        transform: none;
    }

    /* Show bg image as a visible block on mobile */
    .services__item-bg {
        position: relative;
        inset: auto;
        width: 100%;
        aspect-ratio: 16 / 9;
        opacity: 1;
        border-radius: 6px;
        overflow: hidden;
    }

    .services__item-bg::after {
        display: none;
    }

    .services__item.active .services__item-bg {
        opacity: 1;
    }

    .services__num {
        font-size: 32px;
        margin-top: 16px;
        margin-bottom: -4px;
    }

    .services__name {
        font-size: 18px;
        padding-top: 6px;
    }

    .services__desc {
        font-size: 14px;
        padding-top: 10px;
        padding-bottom: 0;
        line-height: 1.55;
    }

    .services__divider {
        margin: 32px 0;
    }

    /* Works: mobile adjustments */
    .works__item {
        height: 70vh;
    }

    .works__item-content {
        padding: 0 20px 40px;
    }

    .works__name {
        font-size: 22px;
    }

    .works__btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .works__cta {
        padding: 40px 0;
    }

    .works__cta-link {
        gap: 16px;
    }

    .works__cta-link span:first-child {
        font-size: 24px;
    }

    .works__cta-arrow svg {
        width: 40px;
        height: 40px;
    }

    /* Clients */
    .clients {
        margin-top: 10px !important;
        padding: 30px 0 40px;
        gap: 30px;
    }

    .clients__slide {
        gap: 24px;
    }

    .clients__logo {
        height: 70px;
        max-width: 220px;
    }

    /* Footer */
    .footer__inner {
        padding: 36px var(--content-padding) 40px;
    }

    .footer__title {
        font-size: 42px;
        white-space: normal;
        line-height: 1.15;
    }

    .footer__subtitle {
        font-size: 14px;
        margin-bottom: 40px;
        margin-top: 2px;
    }

    .footer__location-name {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .footer__location-addr {
        font-size: 13px;
        max-width: none;
    }

    .footer__contact-label,
    .footer__contact-value {
        font-size: 13px;
    }

    /* Contact popup */
    .contact-popup__panel {
        width: calc(100% - 32px);
        height: auto;
        max-height: 85vh;
        padding: 20px 18px 24px;
    }

    .contact-popup__title {
        font-size: 42px;
        padding-top: 20px;
    }

    .contact-popup__label {
        font-size: 16px;
    }

    .contact-popup__value {
        font-size: 16px;
    }

    .contact-popup__row {
        padding: 14px 0;
        gap: 6px;
    }
}
