* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

#page-loader {
    position: fixed;
    inset: 0;
    background: #111;
    color: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader-text {
    letter-spacing: 8px;
    font-size: 15px;
    animation: loaderPulse 1.2s infinite alternate;
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes loaderPulse {
    from {
        opacity: 0.35;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* NAVBAR */

.main-navbar {
    position: relative;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.home-page .main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    border-bottom: none;
}

.main-navbar .navbar {
    padding: 22px 0;
}

.main-navbar .site-logo {
    color: #111;
    font-size: 18px;
    letter-spacing: 4px;
    font-weight: 500;
}

.main-navbar .nav-link {
    position: relative;
    color: #111;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 400;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

    .main-navbar .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 2px;
        width: 0;
        height: 1px;
        background: currentColor;
        transition: 0.25s ease;
    }

    .main-navbar .nav-link:hover::after {
        width: 100%;
    }

.home-page .main-navbar .site-logo,
.home-page .main-navbar .nav-link {
    color: #fff;
    text-shadow: 0 2px 18px rgba(0,0,0,0.75);
}

.home-page .main-navbar .navbar {
    padding: 26px 0;
}

.home-page .main-navbar .nav-link {
    font-size: 13px;
    letter-spacing: 1px;
}

.custom-toggler {
    border: none;
    box-shadow: none !important;
}

    .custom-toggler span {
        display: block;
        width: 28px;
        height: 1px;
        background: #111;
        margin: 7px 0;
    }

.home-page .custom-toggler span {
    background: #fff;
}

/* HOME SLIDER */

.home-page {
    height: 100vh;
    overflow: hidden;
}

    .home-page main {
        height: 100vh;
        overflow: hidden;
    }

.home-slider {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #111;
}

.home-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
}

    .home-slide.active {
        opacity: 1;
        visibility: visible;
    }

    .home-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        animation: homeImageZoom 8s ease forwards;
    }

    .home-slide::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, rgba(0,0,0,0.28), rgba(0,0,0,0.12), rgba(0,0,0,0.28) );
        pointer-events: none;
    }

@keyframes homeImageZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.04);
    }
}

.home-slider-counter {
    position: fixed;
    right: 48px;
    bottom: 36px;
    z-index: 10;
    color: #fff;
    font-size: 11px;
    letter-spacing: 3px;
}

/* CENTER TITLE */

.center-page-title {
    text-align: center;
    margin-bottom: 46px;
}

    .center-page-title h1 {
        margin: 0;
        font-size: 32px;
        font-weight: 300;
        color: #111;
        letter-spacing: -1px;
        line-height: 1;
    }

/* PROJECTS PAGE */

.projects-minimal-page {
    background: #fff;
    padding: 46px 0 76px;
    min-height: calc(100vh - 88px);
}

.minimal-project-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 42px 26px;
}

.minimal-project-card {
    display: block;
}

.minimal-project-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #eee;
}

    .minimal-project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.65s ease, opacity 0.65s ease;
    }

.minimal-project-card:hover img {
    transform: scale(1.045);
    opacity: 0.88;
}

.minimal-project-card h3 {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: 1.1px;
    font-weight: 500;
    text-transform: uppercase;
    color: #111;
}

.empty-message {
    padding: 36px;
    background: #f5f5f5;
    color: #555;
}

/* ABOUT PAGE */

.about-minimal-page {
    background: #fff;
    min-height: calc(100vh - 88px);
    padding: 70px 0 90px;
}

.about-minimal-layout {
    display: flex;
    justify-content: center;
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 65px;
}

.about-minimal-content {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

    .about-minimal-content p {
        font-size: 15px;
        line-height: 1.95;
        color: #555;
        margin-bottom: 20px;
        font-weight: 300;
    }

    .about-minimal-content .about-lead {
        font-size: 21px;
        line-height: 1.7;
        color: #111;
        margin-bottom: 26px;
        font-weight: 300;
        letter-spacing: -0.3px;
    }

.about-service-list {
    width: min(1040px, 100%);
    margin: 65px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid #e5e5e5;
}

    .about-service-list div {
        padding: 34px 32px;
        border-right: 1px solid #e5e5e5;
    }

        .about-service-list div:last-child {
            border-right: none;
        }

    .about-service-list span {
        display: block;
        font-size: 11px;
        color: #999;
        margin-bottom: 26px;
    }

    .about-service-list h3 {
        font-size: 20px;
        font-weight: 400;
        margin-bottom: 14px;
    }

    .about-service-list p {
        font-size: 14px;
        line-height: 1.75;
        color: #555;
        margin: 0;
    }

/* CONTACT PAGE */

.contact-minimal-page {
    background: #fff;
    min-height: calc(100vh - 88px);
    padding: 72px 0 0;
}

.contact-form-wrapper {
    width: min(560px, calc(100% - 48px));
    margin: 0 auto 90px;
}

    .contact-form-wrapper h1 {
        font-size: 17px;
        font-weight: 400;
        margin-bottom: 32px;
        color: #111;
    }

.minimal-contact-form {
    display: flex;
    flex-direction: column;
}

    .minimal-contact-form input,
    .minimal-contact-form textarea {
        width: 100%;
        border: none;
        border-bottom: 1px solid #d8d8d8;
        padding: 16px 0;
        font-size: 11px;
        letter-spacing: 0.8px;
        outline: none;
        color: #111;
        resize: vertical;
    }

        .minimal-contact-form input::placeholder,
        .minimal-contact-form textarea::placeholder {
            color: #111;
        }

        .minimal-contact-form input:focus,
        .minimal-contact-form textarea:focus {
            border-bottom-color: #111;
        }

    .minimal-contact-form button {
        width: fit-content;
        margin-top: 24px;
        border: none;
        background: #000;
        color: #fff;
        padding: 8px 28px;
        font-size: 11px;
    }

.contact-bottom-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #f5f5f5;
    padding: 24px 60px;
    gap: 40px;
    align-items: start;
}

    .contact-bottom-info h4 {
        font-size: 11px;
        font-weight: 500;
        margin-bottom: 10px;
        color: #111;
    }

    .contact-bottom-info p {
        font-size: 10px;
        line-height: 1.5;
        margin: 0;
        color: #111;
    }

.social-icons {
    display: flex;
    gap: 10px;
    font-size: 13px;
    align-items: center;
}

/* PROJECT DETAIL */

.project-detail-hero {
    position: relative;
    height: 78vh;
    min-height: 560px;
    background: #111;
    overflow: hidden;
}

    .project-detail-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.72;
        transform: scale(1.02);
    }

.project-detail-title {
    position: absolute;
    left: 5%;
    bottom: 75px;
    color: #fff;
}

    .project-detail-title h1 {
        font-size: clamp(44px, 7vw, 96px);
        font-weight: 400;
        letter-spacing: -2px;
    }

.project-detail-content {
    padding: 100px 0;
}

.project-meta-box {
    border-top: 1px solid #ddd;
}

    .project-meta-box div {
        padding: 24px 0;
        border-bottom: 1px solid #ddd;
    }

    .project-meta-box span {
        display: block;
        color: #999;
        font-size: 12px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .project-meta-box p {
        margin: 0;
        font-size: 18px;
    }

.project-description h2 {
    font-size: 46px;
    font-weight: 400;
    margin-bottom: 26px;
    letter-spacing: -1px;
}

.project-description p {
    font-size: 18px;
    line-height: 1.95;
    color: #444;
}

.project-gallery {
    margin-top: 85px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: 540px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease, opacity 0.8s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.06);
        opacity: 0.72;
    }

.gallery-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.35s ease;
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
}

.gallery-hover span {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.65);
    padding: 13px 24px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* LIGHTBOX */

.lightbox-open {
    overflow: hidden;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

    .lightbox.active {
        opacity: 1;
        visibility: visible;
    }

.lightbox-content {
    position: relative;
    width: min(86vw, 1300px);
    height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .lightbox-content img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: opacity 0.15s ease, transform 0.15s ease;
    }

        .lightbox-content img.changing {
            opacity: 0;
            transform: scale(0.985);
        }

.lightbox-close {
    position: fixed;
    top: 28px;
    right: 38px;
    width: 54px;
    height: 54px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 46px;
    line-height: 1;
    z-index: 10;
}

.lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    color: #fff;
    font-size: 48px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
    z-index: 10;
}

    .lightbox-arrow:hover {
        background: #fff;
        color: #111;
    }

.lightbox-prev {
    left: 38px;
}

.lightbox-next {
    right: 38px;
}

.lightbox-counter {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 13px;
    letter-spacing: 2px;
}

/* FOOTER */

.site-footer {
    padding: 34px 0 20px;
    background: #111;
    color: #fff;
}

.footer-compact {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

    .footer-compact h5 {
        letter-spacing: 4px;
        margin-bottom: 8px;
    }

    .footer-compact p {
        margin: 0;
        color: #aaa;
    }

.footer-contact {
    display: flex;
    gap: 24px;
    color: #aaa;
    font-size: 14px;
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #333;
    color: #777;
    font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .minimal-project-grid {
        width: min(900px, 100%);
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .main-navbar .navbar-collapse {
        padding-top: 20px;
    }

    .home-page .main-navbar .navbar-collapse {
        margin-top: 16px;
        padding: 20px;
        background: rgba(0,0,0,0.42);
        backdrop-filter: blur(16px);
        border-radius: 18px;
    }

    .minimal-project-grid {
        width: min(680px, 100%);
        grid-template-columns: repeat(2, 1fr);
    }

    .about-service-list {
        grid-template-columns: 1fr;
    }

        .about-service-list div {
            border-right: none;
            border-bottom: 1px solid #e5e5e5;
        }

    .project-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-bottom-info {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }

    .gallery-item {
        height: 330px;
    }

    .lightbox-content {
        width: 92vw;
        height: 74vh;
    }

    .lightbox-arrow {
        width: 48px;
        height: 48px;
        font-size: 34px;
    }

    .lightbox-prev {
        left: 14px;
    }

    .lightbox-next {
        right: 14px;
    }

    .lightbox-close {
        top: 18px;
        right: 22px;
        font-size: 38px;
    }
}

@media (max-width: 576px) {
    .minimal-project-grid {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .projects-minimal-page {
        padding-top: 28px;
    }

    .contact-form-wrapper {
        margin-bottom: 60px;
    }

    .about-minimal-page {
        padding: 48px 0 70px;
    }

    .about-minimal-content .about-lead {
        font-size: 22px;
    }

    .footer-compact {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact {
        flex-direction: column;
        gap: 8px;
    }
}

.site-footer-new {
    background: #fff;
    color: #000;
    margin-top: 0;
}

.footer-top {
    background: #f7f7f7;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 42px 12%;
    align-items: center;
    gap: 80px;
}

.footer-social {
    display: flex;
    gap: 14px;
    align-items: center;
}

    .footer-social a {
        color: #000;
        font-size: 24px;
    }

.footer-info h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 22px;
}

.footer-info p {
    font-size: 15px;
    line-height: 1.45;
    margin: 0 0 6px;
    color: #000;
}

.footer-bottom-new {
    background: #fff;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 36px 12%;
    align-items: center;
    font-size: 14px;
}

    .footer-bottom-new div:last-child {
        text-align: right;
    }

.footer-logo {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 36px 24px;
    }

    .footer-bottom-new {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
        padding: 30px 24px;
    }

        .footer-bottom-new div:last-child {
            text-align: center;
        }

    .footer-social {
        justify-content: center;
    }
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 7px 12px;
    background: rgba(17, 17, 17, 0.82);
    color: #fff;
    border-radius: 999px;
    pointer-events: none;
    z-index: 1000000;
    opacity: 0;
    transform: translate3d(-50px, -50px, 0);
    transition: opacity 0.2s ease;
    backdrop-filter: blur(10px);
}

    .custom-cursor span {
        display: block;
        font-size: 9px;
        letter-spacing: 1.6px;
        font-weight: 400;
        line-height: 1;
    }

    .custom-cursor.visible.with-text {
        opacity: 1;
    }

    .custom-cursor.hover {
        opacity: 0;
    }

@media (max-width: 992px) {
    .custom-cursor {
        display: none;
    }
}

/* CINEMATIC PROJECT DETAIL */

.project-cinematic-hero {
    position: relative;
    height: calc(100vh - 88px);
    min-height: 640px;
    background: #111;
    overflow: hidden;
}

    .project-cinematic-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.82;
        transform: scale(1.02);
    }

.project-cinematic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.5)), linear-gradient(to right, rgba(0,0,0,0.45), rgba(0,0,0,0.05));
}

.project-cinematic-title {
    position: absolute;
    left: 5%;
    bottom: 9%;
    color: #fff;
    max-width: 1100px;
}

    .project-cinematic-title span {
        display: block;
        margin-bottom: 18px;
        font-size: 11px;
        letter-spacing: 3px;
        text-transform: uppercase;
        opacity: 0.78;
    }

    .project-cinematic-title h1 {
        margin: 0;
        font-size: clamp(52px, 8vw, 128px);
        font-weight: 300;
        letter-spacing: -4px;
        line-height: 0.95;
    }

.project-cinematic-info {
    background: #fff;
    padding: 96px 0 72px;
}

.project-cinematic-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 100px;
    align-items: start;
}

.project-sticky-meta {
    position: sticky;
    top: 120px;
    border-top: 1px solid #ddd;
}

    .project-sticky-meta div {
        padding: 22px 0;
        border-bottom: 1px solid #ddd;
    }

    .project-sticky-meta span {
        display: block;
        margin-bottom: 7px;
        font-size: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #999;
    }

    .project-sticky-meta p {
        margin: 0;
        font-size: 15px;
        color: #111;
        font-weight: 300;
    }

.project-cinematic-description {
    max-width: 760px;
}

    .project-cinematic-description span {
        display: block;
        margin-bottom: 22px;
        font-size: 11px;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: #999;
    }

    .project-cinematic-description p {
        margin: 0;
        font-size: clamp(22px, 2.2vw, 34px);
        line-height: 1.55;
        font-weight: 300;
        letter-spacing: -0.8px;
        color: #111;
    }

.project-cinematic-gallery {
    background: #fff;
    padding: 30px 0 110px;
}

.cinematic-image-wide {
    width: min(1320px, 100%);
    height: 76vh;
    min-height: 520px;
    margin: 0 auto 90px;
    overflow: hidden;
    background: #111;
    cursor: pointer;
}

    .cinematic-image-wide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s ease, opacity 1s ease;
    }

    .cinematic-image-wide:hover img {
        transform: scale(1.035);
        opacity: 0.86;
    }

.cinematic-image-split {
    width: min(1180px, 100%);
    margin: 0 auto 90px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
}

    .cinematic-image-split.reverse {
        grid-template-columns: 0.85fr 1.15fr;
    }

        .cinematic-image-split.reverse .cinematic-image-box {
            order: 2;
        }

        .cinematic-image-split.reverse .cinematic-image-note {
            order: 1;
            text-align: right;
        }

.cinematic-image-box {
    height: 620px;
    overflow: hidden;
    background: #111;
    cursor: pointer;
}

    .cinematic-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s ease, opacity 1s ease;
    }

    .cinematic-image-box:hover img {
        transform: scale(1.04);
        opacity: 0.86;
    }

.cinematic-image-note span {
    display: block;
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 3px;
    color: #aaa;
}

.cinematic-image-note p {
    margin: 0;
    font-size: clamp(28px, 4vw, 58px);
    line-height: 1;
    font-weight: 300;
    letter-spacing: -2px;
    color: #111;
}

@media (max-width: 992px) {
    .project-cinematic-hero {
        height: 72vh;
        min-height: 560px;
    }

    .project-cinematic-title h1 {
        font-size: clamp(44px, 10vw, 86px);
        letter-spacing: -2px;
    }

    .project-cinematic-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .project-sticky-meta {
        position: static;
    }

    .cinematic-image-wide {
        height: 56vh;
        min-height: 360px;
        margin-bottom: 54px;
    }

    .cinematic-image-split,
    .cinematic-image-split.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 54px;
    }

        .cinematic-image-split.reverse .cinematic-image-box,
        .cinematic-image-split.reverse .cinematic-image-note {
            order: initial;
            text-align: left;
        }

    .cinematic-image-box {
        height: 420px;
    }
}

@media (max-width: 576px) {
    .project-cinematic-hero {
        height: 68vh;
        min-height: 500px;
    }

    .project-cinematic-title {
        left: 24px;
        right: 24px;
        bottom: 52px;
    }

    .project-cinematic-info {
        padding: 64px 0 42px;
    }

    .project-cinematic-description p {
        font-size: 21px;
        line-height: 1.65;
    }

    .project-cinematic-gallery {
        padding-bottom: 70px;
    }

    .cinematic-image-wide {
        height: 420px;
        min-height: 420px;
    }

    .cinematic-image-box {
        height: 380px;
    }

    .cinematic-image-note p {
        font-size: 30px;
        letter-spacing: -1px;
    }
}

/* IMAGE OPTIMIZATION */

.optimized-image {
    opacity: 0;
    transform: scale(1.015);
    transition: opacity 1s ease, transform 1.4s ease;
    will-change: transform, opacity;
}

    .optimized-image.loaded {
        opacity: 1;
        transform: scale(1);
    }

.lazy-image {
    background: #f2f2f2;
}

/* MOBILE EXPERIENCE UPGRADE */

.mobile-menu-footer {
    display: none;
}

@media (max-width: 992px) {
    .main-navbar {
        position: relative;
        z-index: 5000;
    }

    .home-page .main-navbar {
        position: fixed;
    }

    .main-navbar .navbar {
        padding: 18px 0;
    }

    .main-navbar .site-logo {
        font-size: 16px;
        letter-spacing: 3px;
        position: relative;
        z-index: 5002;
    }

    .mobile-menu-button {
        position: relative;
        z-index: 5002;
        width: 42px;
        height: 42px;
        padding: 0;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
    }

        .mobile-menu-button span {
            width: 22px;
            margin: 6px auto;
            transition: 0.3s ease;
        }

        .mobile-menu-button[aria-expanded="true"] span:first-child {
            transform: translateY(3.5px) rotate(45deg);
        }

        .mobile-menu-button[aria-expanded="true"] span:last-child {
            transform: translateY(-3.5px) rotate(-45deg);
        }

    .mobile-menu-panel {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(8, 8, 8, 0.96);
        backdrop-filter: blur(20px);
        padding: 120px 28px 34px !important;
        z-index: 5001;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.55s cubic-bezier(.77, 0, .18, 1), opacity 0.4s ease;
    }

        .mobile-menu-panel.show {
            transform: translateY(0);
            opacity: 1;
        }

    .mobile-menu-list {
        gap: 0 !important;
    }

        .mobile-menu-list .nav-item {
            border-bottom: 1px solid rgba(255,255,255,0.12);
        }

        .mobile-menu-list .nav-link {
            color: #fff !important;
            font-size: clamp(34px, 10vw, 58px);
            font-weight: 300;
            letter-spacing: -1.5px;
            line-height: 1;
            padding: 22px 0 !important;
            text-shadow: none !important;
        }

            .mobile-menu-list .nav-link::after {
                display: none;
            }

    .mobile-menu-footer {
        display: block;
        position: absolute;
        left: 28px;
        right: 28px;
        bottom: 34px;
        color: rgba(255,255,255,0.72);
    }

        .mobile-menu-footer span {
            display: block;
            margin-bottom: 8px;
            font-size: 11px;
            letter-spacing: 3px;
        }

        .mobile-menu-footer p {
            margin: 0;
            font-size: 13px;
            color: rgba(255,255,255,0.52);
        }

    body.menu-open {
        overflow: hidden;
    }

        body.menu-open .main-navbar .site-logo,
        body.menu-open .main-navbar .custom-toggler span {
            color: #fff;
        }

        body.menu-open .main-navbar .custom-toggler span {
            background: #fff;
        }

    .home-slider-counter {
        right: 24px;
        bottom: 24px;
        font-size: 10px;
    }

    .center-page-title {
        margin-bottom: 34px;
    }

        .center-page-title h1 {
            font-size: 29px;
        }

    .projects-minimal-page {
        padding: 38px 0 62px;
    }

    .minimal-project-grid {
        width: min(680px, 100%);
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 18px;
    }

    .minimal-project-card h3 {
        font-size: 10px;
        letter-spacing: 1px;
        margin-top: 9px;
    }

    .about-minimal-page {
        padding: 52px 0 72px;
    }

    .about-minimal-layout {
        padding-bottom: 42px;
    }

    .about-minimal-content {
        max-width: 640px;
    }

        .about-minimal-content .about-lead {
            font-size: 20px;
            line-height: 1.65;
        }

        .about-minimal-content p {
            font-size: 14px;
            line-height: 1.85;
        }

    .about-service-list {
        margin-top: 42px;
    }

        .about-service-list div {
            padding: 28px 0;
        }

    .contact-minimal-page {
        padding-top: 52px;
    }

    .contact-form-wrapper {
        width: min(560px, calc(100% - 40px));
        margin-bottom: 68px;
    }

    .contact-bottom-info {
        padding: 30px 24px;
        gap: 26px;
    }

    .project-cinematic-hero {
        height: 72vh;
        min-height: 540px;
    }

    .project-cinematic-title {
        left: 28px;
        right: 28px;
        bottom: 54px;
    }

        .project-cinematic-title h1 {
            font-size: clamp(42px, 12vw, 74px);
            letter-spacing: -2px;
        }

    .project-cinematic-info {
        padding: 58px 0 42px;
    }

    .project-cinematic-grid {
        gap: 38px;
    }

    .project-cinematic-description p {
        font-size: 21px;
        line-height: 1.65;
    }

    .cinematic-image-wide {
        height: 52vh;
        min-height: 360px;
        margin-bottom: 46px;
    }

    .cinematic-image-split,
    .cinematic-image-split.reverse {
        gap: 20px;
        margin-bottom: 46px;
    }

    .cinematic-image-box {
        height: 390px;
    }

    .cinematic-image-note p {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 38px 26px;
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-bottom-new {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: left;
        padding: 28px 26px;
    }

        .footer-bottom-new div:last-child {
            text-align: left;
        }

    .footer-logo {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .main-navbar .container-fluid {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .mobile-menu-panel {
        padding: 112px 24px 30px !important;
    }

    .mobile-menu-list .nav-link {
        font-size: clamp(32px, 12vw, 52px);
        padding: 20px 0 !important;
    }

    .home-slide img {
        object-position: center;
    }

    .minimal-project-grid {
        grid-template-columns: 1fr;
        width: min(360px, 100%);
        gap: 34px;
    }

    .projects-minimal-page {
        padding-top: 34px;
    }

    .center-page-title h1 {
        font-size: 27px;
    }

    .about-minimal-content {
        padding: 0 4px;
    }

        .about-minimal-content .about-lead {
            font-size: 19px;
        }

    .contact-form-wrapper h1 {
        font-size: 16px;
    }

    .minimal-contact-form input,
    .minimal-contact-form textarea {
        font-size: 10px;
    }

    .project-cinematic-hero {
        height: 68vh;
        min-height: 480px;
    }

    .project-cinematic-title h1 {
        font-size: clamp(38px, 13vw, 64px);
    }

    .cinematic-image-wide {
        height: 380px;
        min-height: 380px;
    }

    .cinematic-image-box {
        height: 360px;
    }

    .footer-info h4 {
        font-size: 15px;
    }

    .footer-info p {
        font-size: 13px;
    }
}

/* ADMIN IMAGE UI */

.admin-image-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.admin-image-preview-card {
    border: 1px solid #e5e5e5;
    padding: 10px;
    background: #fff;
}

    .admin-image-preview-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        display: block;
        margin-bottom: 10px;
    }

.main-image-btn,
.delete-image-btn,
.main-radio-label {
    width: 100%;
    display: block;
    text-align: center;
    border: 1px solid #111;
    background: #fff;
    color: #111;
    padding: 8px 10px;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
}

    .main-image-btn.active,
    .main-radio-label:has(input:checked) {
        background: #111;
        color: #fff;
    }

.delete-image-btn {
    border-color: #c0392b;
    color: #c0392b;
    margin-top: 8px;
}

    .delete-image-btn:hover {
        background: #c0392b;
        color: #fff;
    }

.main-radio-label input {
    margin-right: 6px;
}

/* COMPACT PROJECT DETAIL */

.project-compact-gallery-section {
    background: #fff;
    padding: 70px 0 36px;
}

.project-compact-gallery {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.project-compact-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #111;
    cursor: pointer;
}

    .project-compact-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease, opacity 0.8s ease;
    }

    .project-compact-image:hover img {
        transform: scale(1.055);
        opacity: 0.86;
    }

.project-detail-bottom-info {
    background: #fff;
    padding: 54px 0 100px;
}

.project-bottom-grid {
    width: min(1080px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: start;
}

.project-bottom-meta {
    border-top: 1px solid #ddd;
}

    .project-bottom-meta div {
        padding: 18px 0;
        border-bottom: 1px solid #ddd;
    }

    .project-bottom-meta span {
        display: block;
        margin-bottom: 6px;
        color: #999;
        font-size: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .project-bottom-meta p {
        margin: 0;
        color: #111;
        font-size: 14px;
        font-weight: 300;
    }

.project-bottom-description span {
    display: block;
    margin-bottom: 18px;
    color: #999;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.project-bottom-description p {
    margin: 0;
    color: #222;
    font-size: 18px;
    line-height: 1.9;
    font-weight: 300;
    word-break: break-word;
    overflow-wrap: anywhere;
}

@media (max-width: 992px) {
    .admin-image-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-compact-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .project-bottom-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }
}

@media (max-width: 576px) {
    .admin-image-preview-grid {
        grid-template-columns: 1fr;
    }

    .project-compact-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .project-compact-gallery-section {
        padding-top: 42px;
    }

    .project-detail-bottom-info {
        padding: 42px 0 70px;
    }

    .project-bottom-description p {
        font-size: 16px;
        line-height: 1.8;
    }
}

/* ADMIN CATEGORY UPLOAD UI */

.admin-edit-section {
    padding: 28px;
    border: 1px solid #e8e8e8;
    background: #fff;
    margin-bottom: 28px;
}

    .admin-edit-section h4 {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 22px;
    }

.admin-edit-actions {
    display: flex;
    gap: 8px;
}

.admin-main-preview {
    max-width: 360px;
}

.admin-main-preview-card {
    border: 1px solid #e5e5e5;
    padding: 10px;
    background: #fff;
}

    .admin-main-preview-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

    .admin-main-preview-card span {
        display: block;
        margin-top: 10px;
        font-size: 12px;
        color: #666;
    }

.category-upload-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.category-upload-card {
    border: 1px solid #e6e6e6;
    padding: 20px;
    background: #fafafa;
}

    .category-upload-card h5 {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .category-upload-card p {
        font-size: 13px;
        color: #777;
        margin-bottom: 14px;
    }

.admin-category-image-group {
    margin-bottom: 36px;
}

    .admin-category-image-group h5 {
        font-size: 15px;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 16px;
        color: #111;
    }

@media (max-width: 992px) {
    .category-upload-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .category-upload-grid {
        grid-template-columns: 1fr;
    }

    .admin-edit-section {
        padding: 20px;
    }

    .admin-edit-actions {
        flex-direction: column;
    }
}

/* PROJECT DETAIL FILTER NAV */

.project-image-filter {
    width: min(1180px, 100%);
    margin: 0 auto 28px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .project-image-filter button {
        border: none;
        background: transparent;
        color: #999;
        font-size: 11px;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        padding: 0 0 6px;
        transition: 0.25s ease;
    }

        .project-image-filter button:hover,
        .project-image-filter button.active {
            color: #111;
        }

        .project-image-filter button.active {
            border-bottom: 1px solid #111;
        }

.filterable-project-image {
    transition: opacity 0.35s ease, transform 0.35s ease, width 0.35s ease;
}

    .filterable-project-image.hidden-by-filter {
        display: none;
    }

@media (max-width: 576px) {
    .project-image-filter {
        justify-content: flex-start;
        gap: 16px;
        margin-bottom: 22px;
    }

        .project-image-filter button {
            font-size: 10px;
            letter-spacing: 1.3px;
        }
}

/* HOME SINGLE IMAGE */

.home-single-image {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .home-single-image img {
        width: 1200px;
        max-width: 85vw;
        height: auto;
    }

    .home-single-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.05), rgba(0,0,0,0.22) );
        pointer-events: none;
    }

/* Eski slider counter gizle */
.home-slider-counter {
    display: none !important;
}

/* PROJECT STATUS FILTER */

.project-status-filter {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: -16px 0 42px;
    flex-wrap: wrap;
}

    .project-status-filter button {
        border: none;
        background: transparent;
        color: #999;
        font-size: 11px;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        padding: 0 0 6px;
        transition: 0.25s ease;
    }

        .project-status-filter button:hover,
        .project-status-filter button.active {
            color: #111;
        }

        .project-status-filter button.active {
            border-bottom: 1px solid #111;
        }

.project-status-item {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

    .project-status-item.hidden-project {
        display: none;
    }

.minimal-project-image {
    position: relative;
}

.project-status-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    padding: 7px 10px;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

    .project-status-badge.completed {
        background: rgba(0, 0, 0, 0.62);
    }

    .project-status-badge.ongoing {
        background: rgba(0, 0, 0, 0.82);
    }

@media (max-width: 576px) {
    .project-status-filter {
        gap: 18px;
        margin-bottom: 32px;
    }

        .project-status-filter button {
            font-size: 10px;
            letter-spacing: 1.3px;
        }
}

/* INTERIOR / EXTERIOR FILTER */

.project-image-sub-filter {
    width: min(1180px, 100%);
    margin: -12px auto 28px;
    display: none;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

    .project-image-sub-filter.active {
        display: flex;
    }

    .project-image-sub-filter button {
        border: none;
        background: transparent;
        color: #aaa;
        font-size: 10px;
        letter-spacing: 1.6px;
        text-transform: uppercase;
        padding: 0 0 5px;
        transition: 0.25s ease;
    }

        .project-image-sub-filter button:hover,
        .project-image-sub-filter button.active {
            color: #111;
        }

        .project-image-sub-filter button.active {
            border-bottom: 1px solid #111;
        }

@media (max-width: 576px) {
    .project-image-sub-filter {
        justify-content: flex-start;
        gap: 14px;
        margin-bottom: 22px;
    }

        .project-image-sub-filter button {
            font-size: 9px;
            letter-spacing: 1.2px;
        }
}

.footer-top {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 120px;
    flex-wrap: wrap;
}

.footer-social h4,
.footer-info h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: 20px;
}

.footer-social a {
    text-decoration: none;
    color: #111;
    transition: .3s;
}

    .footer-social a:hover {
        opacity: .6;
    }

.footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    text-align: center;
}

.footer-social,
.footer-info {
    text-align: center;
}

    .footer-social h4,
    .footer-info h4 {
        font-size: 14px;
        letter-spacing: .18em;
        text-transform: uppercase;
        margin-bottom: 22px;
    }

    .footer-social a {
        color: #111;
        text-decoration: none;
        font-size: 32px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

        .footer-social a:hover {
            opacity: .55;
        }

    .footer-info p {
        margin: 8px 0;
    }

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
}