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

:root {
    --bg: #fff;
    --text: #000;
    --text-light: #1a1a1a;
    --accent: #6b6b6b;
}

body {
    font-family: "Work Sans", sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-y: scroll;
}

body.menu-open {
    overflow: hidden;
    scrollbar-gutter: stable;
}

.container {
    display: flex;
    justify-content: space-between;
    min-height: 100vh;
}

.column {
    width: calc((100vw - 24vw) / 2);
    padding: 0 3vw;
}

.column-right {
    margin-top: 8vh;
}

.logo-column {
    width: 24vw;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.logo-line-top,
.logo-line-bottom {
    display: none;
}

.logo-text {
    position: relative;
    font-family: "Work Sans", sans-serif;
    font-size: clamp(1.4rem, 2vw, 2.2rem);
    letter-spacing: 0.35em;
    font-weight: 300;
    text-transform: uppercase;
    color: transparent;
    line-height: 1;
    white-space: nowrap;
    cursor: default;
    margin: 0;
    z-index: 1;
    pointer-events: auto;
}

.logo-text img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
}

.logo-text span:nth-child(1) {
    color: var(--text);
    display: inline-block;
    transition: 0.5s;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}

.logo-text:hover span:nth-child(1) {
    transform: translateY(-12px);
}

.logo-text span:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: var(--text);
    transition: 0.5s;
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
}

.logo-text:hover span:nth-child(2) {
    transform: translateY(16px);
}

.logo-text span:nth-child(3) {
    position: absolute;
    top: 22%;
    left: 0;
    right: 0;
    transform: scaleY(0);
    font-family: "Work Sans", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--text);
    padding: 5px 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: 0.5s;
}

.logo-text:hover span:nth-child(3) {
    transform: scaleY(1);
    opacity: 1;
}


.project-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    display: block;
    text-decoration: none;
    color: inherit;
}

.project-card img {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    /* !important overrides Elementor's prefers-reduced-motion:reduce killer */
    transition: transform 0.9s cubic-bezier(0.33, 0, 0.2, 1), clip-path 0.8s cubic-bezier(0.33, 0, 0.2, 1) !important;
    opacity: 1;
    clip-path: circle(100% at 50% 50%);
}

.project-card:hover img {
    clip-path: circle(40% at 50% 50%);
}

.project-card:hover .project-overlay {
    opacity: 1;
    clip-path: circle(40% at 50% 50%);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
    opacity: 0;
    clip-path: circle(100% at 50% 50%);
    /* !important overrides Elementor's prefers-reduced-motion:reduce killer */
    transition: opacity 0.6s cubic-bezier(0.33, 0, 0.2, 1), clip-path 0.8s cubic-bezier(0.33, 0, 0.2, 1) !important;
}

.project-overlay .overlay-name {
    font-family: "Work Sans", sans-serif;
    font-size: clamp(1.2rem, 1.5vw, 1.8rem);
    font-weight: 300;
    font-style: italic;
    color: var(--bg);
    margin-bottom: 8px;
}

.project-overlay .overlay-category {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.project-overlay .overlay-year {
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 242, 237, 0.5);
}

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    z-index: 300;
    background: #fff;
    border-bottom: none;
}

.mobile-logo {
    display: block;
}

.mobile-logo img {
    height: 70px;
    width: auto;
    display: block;
}

.top-nav .menu-btn {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.top-nav .menu-btn span {
    background: var(--text);
}

/* Homepage: menu in place of the logo */
.home-page .top-nav {
    background: transparent;
    border-bottom: none;
    padding: 0;
}

.home-page .top-nav.scrolled {
    background: #fff;
    border-bottom: none;
}

.home-page .mobile-logo {
    display: none;
}

.home-page .top-nav .menu-btn {
    position: static;
    transform: none;
}

.home-page .top-nav .menu-btn span {
    background: var(--text);
}

.mobile-logo-spacer {
    display: none;
}



@media (max-width: 600px) {
    .top-nav {
        justify-content: space-between;
        padding: 0;
    }

    .mobile-logo img {
        height: 50px;
    }

    /* Homepage mobile: keep the menu in place of the logo */
    .home-page .mobile-logo {
        display: none;
    }

    .home-page .top-nav {
        padding: 0;
        justify-content: center;
    }

    .home-page .top-nav .menu-btn {
        position: static;
        transform: none;
    }
}

.top-nav.menu-is-open {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    pointer-events: none;
}

.top-nav.menu-is-open .menu-btn {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 600px) {
    .top-nav {
        justify-content: space-between;
        padding: 0;
    }

    .mobile-logo {
        display: block;
    }

    .mobile-logo-spacer {
        display: block;
        width: 36px;
    }
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 300;
}

.menu-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(3.75px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    transform: translateY(-3.75px) rotate(-45deg);
}

/* ── Fullscreen Menu (Shamshiri style) ── */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 25000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s cubic-bezier(0.33, 0, 0.2, 1);
}

.fullscreen-menu.open {
    opacity: 1;
    pointer-events: auto;
}

/* Header: logo left, close right */
.menu-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 28px 40px;
    flex-shrink: 0;
    position: relative;
}

.menu-logo img {
    height: 100px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.menu-close {
    position: absolute;
    right: 0px;
    top: 0;
    transform: translateY(0%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-close span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.menu-close span:nth-child(1) {
    transform: translateY(3.75px) rotate(45deg);
}

.menu-close span:nth-child(2) {
    transform: translateY(-3.75px) rotate(-45deg);
}

/* Nav list */
.menu-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 40px;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.menu-list li a,
.menu-link-trigger {
    font-family: "Work Sans", sans-serif;
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    letter-spacing: 0.02em;
    padding: 8px 0;
    display: inline-block;
    transition: color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.fullscreen-menu.open .menu-list li a,
.fullscreen-menu.open .menu-link-trigger {
    opacity: 1;
    transform: translateY(0);
}

.menu-list li a:hover,
.menu-link-trigger:hover {
    color: #fff;
}

.menu-link-trigger {
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-family: "Work Sans", sans-serif;
    line-height: 1.1;
}

/* Services submenu (inline expand) */
.menu-item-services {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-item-services::after {
    display: none;
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
    text-align: center;
    background:#000;
    padding:0 30px;
}

.menu-item-services.open .submenu {
    max-height: 300px;
    opacity: 1;
    padding-top: 4px;
    padding-bottom: 4px;

}

.submenu a {
    font-family: "Work Sans", sans-serif;
    font-size: 0.92rem !important;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    padding: 6px 0;
    display: block;
    transition: color 0.3s ease;
    opacity: 1;
    transform: none;
}

.submenu a:hover {
    color: #fff;
}

/* Social footer */
.menu-footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 24px 40px 28px;
    flex-shrink: 0;
}

.menu-footer-social a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.menu-footer-social a:hover {
    color: var(--accent);
}

.menu-btn.active span {
    background: #fff;
}

.footer-bar {
    display: none;
}

.footer-bar .footer-line {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--text-light);
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 18px;
    pointer-events: auto;
    margin-top: 2px;
}

.footer-social a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: var(--accent);
}

.footer-social svg,
.footer-social .lni {
    width: 18px;
    height: 18px;
    font-size: 18px;
}

@media (max-width: 600px) {
    .footer-bar {
        display: none;
    }
}

@media (max-width: 900px) {
    .column {
        width: 50vw;
    }

    .logo-column {
        width: 0;
        overflow: hidden;
        opacity: 0;
    }
}

@media (max-width: 600px) {
    .container {
        flex-direction: column;
        min-height: auto;
        height: 100vh;
    }

    .column {
        width: 100%;
        height: 50vh;
        padding: 0;
        overflow: hidden;
    }

    .column-right {
        margin-top: 0;
         padding:20px;
    }

    .column-left {
        margin-top: 50px;
        padding:20px;
    }

    .logo-column {
        display: none;
    }

    .logo-line-top,
    .logo-line-bottom {
        display: none;
    }

    .logo-text {
        font-size: 1.6rem;
        letter-spacing: 0.3em;
    }

    .column-left .project-grid,
    .column-right .project-grid {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 12px;
        padding: 12px 16px;
        height: calc(100% - 24px);
        align-items: center;
    }

    .column-left .project-grid::-webkit-scrollbar,
    .column-right .project-grid::-webkit-scrollbar {
        display: none;
    }

    .project-card {
        aspect-ratio: 1 / 1;
        min-width: calc(100vw - 48px);
        max-width: calc(100vw - 48px);
        flex-shrink: 0;
        scroll-snap-align: center;
    }

    .menu-btn span {
        background: var(--text);
    }

    .menu-header {
        padding: 20px 24px;
    }

    .menu-close {
        right: 24px;
    }

    .menu-logo img {
        height: 100px;
    }

    .menu-nav {
        padding: 0 24px;
    }

    .menu-list li a,
    .menu-link-trigger {
        font-size: 1.05rem;
    }

    .submenu a {
        font-size: 0.78rem;
        padding: 5px 0;
    }

    .menu-footer-social {
        padding: 20px 24px 24px;
    }
}

/* ── Inner page layout ── */
.inner-layout {
    display: flex;
    min-height: 100vh;
}

.inner-sidebar {
    width: 24vw;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    z-index: 300;
}

.inner-sidebar .logo-line-top {
    display: none;
}

.inner-sidebar .logo-text {
    position: relative;
    font-family: "Work Sans", sans-serif;
    font-size: clamp(1.2rem, 1.6vw, 2rem);
    letter-spacing: 0.35em;
    font-weight: 300;
    text-transform: uppercase;
    color: transparent;
    line-height: 1;
    white-space: nowrap;
    cursor: default;
    margin: 0;
    z-index: 1;
}

.inner-sidebar .logo-text span:nth-child(1) {
    color: var(--text);
    display: inline-block;
    transition: 0.5s;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}

.inner-sidebar .logo-text:hover span:nth-child(1) {
    transform: translateY(-12px);
}

.inner-sidebar .logo-text span:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: var(--text);
    transition: 0.5s;
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
}

.inner-sidebar .logo-text:hover span:nth-child(2) {
    transform: translateY(16px);
}

.inner-sidebar .logo-text span:nth-child(3) {
    position: absolute;
    top: 22%;
    left: 0;
    right: 0;
    transform: scaleY(0);
    font-family: "Work Sans", sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--text);
    padding: 5px 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: 0.5s;
}

.inner-sidebar .logo-text:hover span:nth-child(3) {
    transform: scaleY(1);
    opacity: 1;
}

.inner-sidebar .logo-line-bottom {
    display: none;
}

.sidebar-menu-btn {
    position: fixed;
    top: 24px;
    left: 12vw;
    transform: translateX(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 350;
}

.sidebar-menu-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.sidebar-menu-btn.active span:nth-child(1) {
    transform: translateY(3.75px) rotate(45deg);
}

.sidebar-menu-btn.active span:nth-child(2) {
    transform: translateY(-3.75px) rotate(-45deg);
}

body.menu-open .sidebar-menu-btn span {
    background: #fff;
}

body.menu-open .sidebar-menu-btn {
    opacity: 0;
    pointer-events: none;
}

.inner-sidebar .sidebar-menu-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.inner-sidebar .sidebar-menu-btn.active span:nth-child(1) {
    transform: translateY(3.75px) rotate(45deg);
}

.inner-sidebar .sidebar-menu-btn.active span:nth-child(2) {
    transform: translateY(-3.75px) rotate(-45deg);
}

.inner-sidebar .sidebar-footer {
    display: none;
}

.inner-sidebar .sidebar-footer .footer-line {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--text-light);
    text-align: center;
}

.inner-sidebar .sidebar-footer .footer-social {
    gap: 12px;
    margin-top: 2px;
}

.inner-sidebar .sidebar-footer .footer-social .lni {
    width: 14px;
    height: 14px;
    font-size: 14px;
}

.inner-content {
    margin-left: 0;
    width: 100%;
    padding: 180px 6vw 120px;
}

.inner-content h1 {
    font-family: "Work Sans", sans-serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--text);
    margin-bottom: 32px;
    line-height: 1.1;
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 64px;

}

.about-hero img {
    width: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.about-hero-text {
    padding-top: 0;
}

.about-hero-text p {
    margin-bottom: 20px;
}

.about-hero-text p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 40px;
    padding-top: 32px;
}

.about-stats .stat-block {
    border-top: 0;
}

@media (max-width: 900px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .about-hero img {
        aspect-ratio: 4 / 5;
    }
}

.inner-content .page-label {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
    display: block;
}

.inner-content h2 {
    font-family: "Work Sans", sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 300;
    color: var(--text);
    margin: 48px 0 20px;
    line-height: 1.2;
}

.inner-content p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.inner-content .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
}

.inner-content .stat-block {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 24px;
}

.inner-content .stat-block .stat-number {
    font-family: "Work Sans", sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent);
}

.inner-content .stat-block .stat-label {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 6px;
}

.inner-content .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.inner-content .team-member {
    text-align: center;
}

.inner-content .team-member img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    margin-bottom: 16px;
}

.inner-content .team-member .member-name {
    font-family: "Work Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 4px;
}

.inner-content .team-member .member-role {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.inner-content .image-full {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    margin: 48px 0;
}

.inner-content .image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 48px 0;
}

.inner-content .image-grid img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

body.menu-open .inner-sidebar {
    background: transparent;
    pointer-events: none;
}

body.menu-open .inner-sidebar .logo-line-top,
body.menu-open .inner-sidebar .logo-line-bottom,
body.menu-open .inner-sidebar .logo-text,
body.menu-open .inner-sidebar .sidebar-footer {
    opacity: 0;
    pointer-events: none;
}
}

/* Services */
.service-content {
    padding-right: 8vw;
}

.service-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.62fr);
    gap: 56px;
    align-items: stretch;
    margin: 12px 0 84px;
}

.service-hero-copy {
    align-self: center;
}

.service-hero-copy p {
    max-width: 720px;
}

.service-image-placeholder {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(196, 168, 130, 0.24), rgba(26, 26, 26, 0.07)),
        repeating-linear-gradient(
            -45deg,
            rgba(26, 26, 26, 0.05) 0,
            rgba(26, 26, 26, 0.05) 1px,
            transparent 1px,
            transparent 12px
        );
}

.service-image-placeholder::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(26, 26, 26, 0.12);
}

.service-image-placeholder span {
    position: relative;
    z-index: 1;
    font-family: "Work Sans", sans-serif;
    font-size: clamp(2rem, 3vw, 3.4rem);
    font-weight: 300;
    color: rgba(26, 26, 26, 0.62);
}

.service-image-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.service-section {

    margin-top: 84px;
}

.section-kicker {
    display: block;
    margin-bottom: 28px;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
}

.process-list {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.process-step {
    display: grid;
    grid-template-columns: 72px minmax(180px, 0.35fr) minmax(0, 1fr);
    gap: 32px;
    padding: 36px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.process-step > span {
    font-family: "Work Sans", sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent);
}

.process-step h2,
.service-scope h2 {
    margin: 0;
    font-family: "Work Sans", sans-serif;
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text);
}

.process-step p {
    grid-column: 3;
    max-width: 640px;
    margin-bottom: 16px;
}

.process-step p:last-child {
    margin-bottom: 0;
}

.service-scope-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.service-scope {
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service-scope ul {
    display: grid;
    gap: 14px;
    margin-top: 24px;
    list-style: none;
}

.service-scope li {
    position: relative;
    padding-left: 18px;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-light);
}

.service-scope li::before {
    content: "";
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--accent);
}

.service-feature {
    display: grid;
    grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
    gap: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service-feature .section-kicker {
    margin-bottom: 0;
}

.service-feature-copy p {
    max-width: 760px;
}

.service-cta {
    max-width: 860px;
    margin-top: 88px;
    padding: 44px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service-cta h2 {
    max-width: 760px;
    margin: 0 0 28px;
    font-family: "Work Sans", sans-serif;
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--text);
}

.service-cta-link {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--text);
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.service-cta-link:hover {
    background: var(--accent);
    color: var(--text);
}

/* Projects Archive (Shamshiri style) */
.projects-archive-page {
    background: #fff;
}

.project-archive {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 6vw 80px;
    position: relative;
}

.project-archive-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.project-archive-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.project-archive-item a {
    display: block;
    padding: 14px 0;
    text-decoration: none;
    color: var(--text);
    position: relative;
    overflow: hidden;
    border-bottom:none !important;
}
.project-archive-item a:hover {
    text-decoration: none !important;
    border-bottom:none !important;
}

.project-archive-name {
    font-family: "Work Sans", sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: block;
}

.project-archive-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: absolute;
    inset: 0;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.project-archive-meta span {
    font-family: "Work Sans", sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
}

.project-archive-item a:hover .project-archive-name {
    opacity: 0;
    transform: translateY(-8px);
}

.project-archive-item a:hover .project-archive-meta {
    opacity: 1;
}

/* Side images — fixed left/right, vertically centered */
.archive-side-image {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 360px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.33, 0, 0.2, 1);
    pointer-events: none;
    z-index: 50;
}

.archive-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.archive-side-left {
    left: 6vw;
}

.archive-side-right {
    right: 6vw;
}

.archive-side-image.active {
    opacity: 1;
}

@media (max-width: 1100px) {
    .archive-side-image {
        display: none;
    }

    .project-archive {
        padding: 140px 24px 60px;
    }
}

@media (max-width: 600px) {
    .project-archive-name {
        font-size: 0.82rem;
    }
}

/* Old projects grid (kept for inner pages) */
.projects-content {
    padding-right: 8vw;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 56px;
}

.projects-grid .project-card {
    visibility: visible;
    aspect-ratio: 4 / 5;
}

/* Press */
.press-content {
    padding-right: 8vw;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 68px;
}

.press-card {
    position: relative;
    display: block;
    min-height: 280px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.04);
}

.press-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.8;
}

.press-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 36px;
    text-align: center;
    background: rgba(26, 26, 26, 0.82);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.press-card-overlay span {
    font-family: "Work Sans", sans-serif;
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--bg);
}

.press-card-overlay small {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
}

.press-card:hover img {
    transform: scale(1.05);
}

.press-card:hover .press-card-overlay {
    opacity: 1;
}

/* Blog */
.blog-content {
    padding-right: 8vw;
}

.blog-toolbar {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-top: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.26);
}

.blog-view-btn {
    min-width: 92px;
    min-height: 40px;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Work Sans", sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-light);
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.blog-view-btn:hover,
.blog-view-btn.active {
    color: var(--text);
    background: rgba(196, 168, 130, 0.18);
}

.blog-view-btn:focus-visible {
    outline: 2px solid rgba(196, 168, 130, 0.55);
    outline-offset: 2px;
}

.blog-view-btn .lni {
    font-size: 14px;
}

.blog-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 56px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-card {
    display: grid;
    grid-template-columns: 128px minmax(120px, 0.24fr) minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-card[hidden] {
    display: none;
}

.blog-image-placeholder {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    padding: 12px;
    text-decoration: none;
    background:
        linear-gradient(135deg, rgba(196, 168, 130, 0.22), rgba(26, 26, 26, 0.06)),
        repeating-linear-gradient(
            -45deg,
            rgba(26, 26, 26, 0.06) 0,
            rgba(26, 26, 26, 0.06) 1px,
            transparent 1px,
            transparent 10px
        );
}

.blog-image-placeholder::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(26, 26, 26, 0.1);
}

.blog-image-placeholder span {
    position: relative;
    z-index: 1;
    font-family: "Work Sans", sans-serif;
    font-size: 1.45rem;
    font-weight: 300;
    color: rgba(26, 26, 26, 0.56);
}

.blog-image-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.7;
}

.blog-image-placeholder:hover img {
    transform: scale(1.05);
}

.blog-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-meta time,
.blog-meta span,
.blog-read-more {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.blog-meta time {
    color: var(--accent);
}

.blog-meta span {
    color: var(--text-light);
}

.blog-card h2 {
    margin: 0;
    font-family: "Work Sans", sans-serif;
    font-size: clamp(1.5rem, 2.3vw, 2.35rem);
    font-weight: 300;
    line-height: 1.12;
    color: var(--text);
}

.blog-read-more {
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.35);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.blog-read-more:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.blog-list[data-view="grid"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    border-top: 0;
}

.blog-list[data-view="grid"] .blog-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 0 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-list[data-view="grid"] .blog-image-placeholder {
    aspect-ratio: 4 / 3.2;
}

.blog-list[data-view="grid"] .blog-meta {
    flex-direction: row;
    flex-wrap: wrap;
}

.blog-list[data-view="grid"] .blog-card h2 {
    font-size: clamp(1.35rem, 1.8vw, 1.9rem);
}

.blog-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 980px;
    margin-top: 44px;
}

.blog-pagination button {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Work Sans", sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease,
        color 0.25s ease;
}

.blog-pagination button:hover:not(:disabled),
.blog-pagination button.active {
    color: var(--text);
    border-color: var(--accent);
    background: rgba(196, 168, 130, 0.18);
}

.blog-pagination button:focus-visible {
    outline: 2px solid rgba(196, 168, 130, 0.55);
    outline-offset: 2px;
}

.blog-pagination button:disabled {
    cursor: not-allowed;
    opacity: 0.35;
}

.blog-page-control {
    min-width: 108px;
}

/* ── Contact form ── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 64px;
    align-items: start;
    margin-top: 32px;
}

.contact-side-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 8px;
}

.contact-side-block h3 {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.contact-side-block a,
.contact-side-block span {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text);
    text-decoration: none;
    line-height: 1.6;
}

.contact-side-block a:hover {
    color: var(--accent);
}

.contact-form {
    margin: 56px 0 0;
    max-width: 760px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.32);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 22px 70px rgba(26, 26, 26, 0.06);
}

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

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    position: relative;
    margin-bottom: 26px;
}

.form-group label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 16px;
    font-family: "Work Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    background: rgba(245, 242, 237, 0.58);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    outline: none;
    transition: background 0.3s ease, border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(245, 242, 237, 0.86);
    box-shadow: 0 0 0 3px rgba(196, 168, 130, 0.14);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.native-select {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    width: 100%;
    min-height: 52px;
    padding: 15px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: "Work Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(26, 26, 26, 0.72);
    background: rgba(245, 242, 237, 0.58);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.3s ease, background 0.3s ease,
        box-shadow 0.3s ease;
}

.custom-select-trigger:hover,
.custom-select.open .custom-select-trigger {
    border-color: var(--accent);
    background: rgba(245, 242, 237, 0.86);
}

.custom-select-trigger:focus-visible {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196, 168, 130, 0.18);
}

.custom-select-trigger .lni {
    flex: 0 0 auto;
    font-size: 13px;
    color: var(--text-light);
    transition: transform 0.3s ease, color 0.3s ease;
}

.custom-select.open .custom-select-trigger .lni {
    transform: rotate(180deg);
    color: var(--accent);
}

.custom-select.has-value .custom-select-trigger {
    color: var(--text);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 80;
    max-height: 260px;
    overflow-y: auto;
    padding: 8px;
    background: #fffaf3;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 45px rgba(26, 26, 26, 0.14);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.custom-select.open .custom-select-options {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.custom-select-options button {
    width: 100%;
    padding: 11px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Work Sans", sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.35;
    color: var(--text-light);
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    transition: color 0.25s ease, background 0.25s ease;
}

.custom-select-options button:hover,
.custom-select-options button:focus-visible {
    color: var(--text);
    background: rgba(196, 168, 130, 0.14);
    outline: none;
}

.custom-select-options button[aria-selected="true"] {
    color: var(--text);
    background: rgba(196, 168, 130, 0.2);
}

.custom-select-options button[aria-selected="true"]::after {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    margin-left: 12px;
    background: var(--accent);
    border-radius: 50%;
}

.form-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 15px 48px;
    font-family: "Work Sans", sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--text);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit:hover {
    background: var(--accent);
}

.form-actions {
    margin-top: 8px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 600px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.contact-info-block h3 {
    font-family: "Work Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 8px;
}

.contact-info-block a,
.contact-info-block span {
    display: block;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.6;
}

.contact-info-block a:hover {
    color: var(--accent);
}

@media (max-width: 900px) {
    .service-content {
        padding-right: 6vw;
    }

    .service-hero {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 64px;
    }

    .service-image-placeholder {
        min-height: 320px;
    }

    .process-step {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 22px;
    }

    .process-step p {
        grid-column: 2;
    }

    .service-scope-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .service-feature {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .projects-content {
        padding-right: 6vw;
    }

    .press-content {
        padding-right: 6vw;
    }

    .press-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .blog-content {
        padding-right: 6vw;
    }

    .blog-list[data-view="grid"] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .blog-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 26px 0;
    }

    .blog-image-placeholder {
        max-width: 320px;
    }

    .blog-meta {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .blog-read-more {
        justify-self: start;
    }

    .sidebar-menu-btn {
        display: none;
    }

    .inner-sidebar {
        display: none;
    }

    .inner-content {
        margin-left: 0;
        width: 100%;
        padding: 100px 6vw 120px;
    }
}

@media (max-width: 600px) {
    .inner-content {
        padding: 100px 24px 100px;
    }

    .contact-form {
        padding: 24px 18px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-hero {
        margin-top: 0;
    }

    .service-image-placeholder {
        min-height: 260px;
        padding: 22px;
    }

    .service-section {
        margin-top: 60px;
    }

    .service-cta {
        margin-top: 64px;
        padding-top: 34px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .projects-grid .project-card {
        aspect-ratio: 4 / 3;
    }

    .projects-grid[data-view="list"] .project-card {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .projects-grid[data-view="list"] .project-card img {
        width: 100%;
    }

    .press-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 48px;
    }

    .press-card {
        min-height: 240px;
        aspect-ratio: 4 / 3;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 30px 0;
    }

    .process-step p {
        grid-column: auto;
    }

    .blog-list {
        margin-top: 40px;
    }

    .blog-toolbar {
        display: none;
    }

    .blog-list[data-view="grid"] {
        grid-template-columns: 1fr;
    }

    .blog-image-placeholder {
        max-width: none;
    }

    .blog-pagination {
        justify-content: center;
    }

    .blog-page-control {
        flex: 1 1 calc(50% - 8px);
    }

    .inner-content .content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .inner-content .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

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

/* ── Project Detail (Shamshiri style) ── */
.project-detail-page {
    background: #fff;
}

.project-detail {
    max-width: 100%;
    margin: 0 auto;
    padding-top: 70px;
}

.project-hero {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
}

.project-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-title-section {
    padding: 48px 6vw 0;
    margin-bottom: 16px;
}

.project-title-section h1 {
    font-family: "Work Sans", sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--text);
    margin: 0;
}

.project-meta {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 6vw 0;
}

.project-meta-row {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.project-meta-row time,
.project-meta-row span {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
}

.project-intro {
    font-family: "Work Sans", sans-serif;
    font-size: clamp(1.15rem, 1.6vw, 1.35rem);
    font-weight: 300;
    line-height: 1.75;
    color: var(--text);
    max-width: 720px;
}

.project-image-full {
    width: 100%;
    padding: 0 6vw;
    margin: 48px 0;
}

.project-image-full img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.project-image-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 6vw;
    margin: 48px 0;
}

.project-image-pair img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.project-text {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px 6vw 0;
}

.project-text p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-light);
}

.project-next {
    display: block;
    position: relative;
    width: 100%;
    height: 60vh;
    margin-top: 80px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}

.project-next img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-next:hover img {
    transform: scale(1.03);
}

.project-next-label {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    z-index: 2;
}

.project-next-name {
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: "Work Sans", sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.12em;
    color: #fff;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.project-next::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
    z-index: 1;
}

@media (max-width: 768px) {
    .project-hero {
        height: 50vh;
    }

    .project-title-section {
        padding: 32px 24px 0;
    }

    .project-title-section h1 {
        font-size: 1.5rem;
    }

    .project-image-pair {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .project-meta {
        padding: 40px 24px 0;
    }

    .project-image-full {
        padding: 0 24px;
        margin: 32px 0;
    }

    .project-image-pair {
        padding: 0 24px;
        margin: 32px 0;
    }

    .project-text {
        padding: 20px 24px 0;
    }

    .project-next {
        height: 40vh;
        margin-top: 48px;
    }
}
