/* =========================================
   RESPONSIVE
   ========================================= */

/* Hide mobile-only nav items on desktop */
.mobile-nav-head,
.mobile-nav-socials {
    display: none;
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    body {
        overflow-x: hidden;
    }

    /* ---------- Header Mobile ---------- */
    .site-header {
        position: absolute;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        height: 108px;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        border-radius: 0;
        padding: 22px 24px 0;
        z-index: 1000;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        overflow: visible;
    }

    /* lengkungan cream global mobile */
    .site-header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;

        width: 100vw;
        height: 350px;

        transform: translateX(-50%);
        background: var(--cream);
        z-index: -1;
        pointer-events: none;

        -webkit-mask: radial-gradient(
            ellipse 78% 72% at 50% 100%,
            transparent 0 98.5%,
            #000 99%
        );

        mask: radial-gradient(
            ellipse 78% 72% at 50% 100%,
            transparent 0 98.5%,
            #000 99%
        );
    }

    .brand,
    .menu-toggle {
        position: relative;
        z-index: 2;
    }

    .brand {
        height: auto;
        align-items: flex-start;
        position: relative;
        z-index: 1003;
    }

    .header-logo {
        width: 70px;
        height: auto;
        object-fit: contain;
        object-position: left top;
    }

    .menu-toggle {
        display: flex;
        width: 42px;
        height: 60px;
        background: transparent;
        border: 0;
        padding: 0;
        margin-top: 12px;
        position: relative;
        z-index: 1004;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        gap: 8px;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 40px;
        height: 2px;
        margin: 0;
        background: rgba(23, 50, 31, 0.78);
        border-radius: 999px;
        transition: 0.3s ease;
    }

    .menu-toggle.active span {
        background: rgba(255, 248, 232, 0.9);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

/* ---------- Mobile Nav Panel ---------- */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 58%;
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        background: linear-gradient(
            180deg,
            rgba(21, 61, 30, 0.822) 0%,
            rgba(10, 41, 20, 0.97) 100%
        );
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: -40px 0 40px rgba(0, 0, 0, 0.15);

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;

        gap: 0;
        padding: 24px 20px 30px;
        z-index: 1002;
        overflow-y: auto;
        transition: right 0.35s ease;
    }

    .main-nav.active {
        right: 0;
    }

    .mobile-nav-head {
        display: block;
        width: 100%;
        margin-bottom: 34px;
    }

    .mobile-nav-logo {
        display: block;
        width: 100px;
        height: auto;
        object-fit: contain;
    }

    .main-nav > a {
        position: relative;
        width: 100%;
        color: var(--cream);
        font-size: 20px;
        line-height: 1.2;
        padding: 0 0 11px;
        margin-bottom: 12px;
        opacity: 0.58;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .main-nav > a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        transform: none;
        width: 30px;
        height: 1px;
        background: var(--gold);
        opacity: 0.28;
        transition: width 0.25s ease, opacity 0.25s ease;
    }

    .main-nav > a.active {
        color: var(--cream);
        opacity: 1;
    }

    .main-nav > a.active::after {
        width: 44px;
        height: 1.5px;
        opacity: 1;
        background: var(--gold);
    }

    .main-nav > a:hover {
        color: var(--cream);
        opacity: 1;
        transform: translateX(4px);
    }

    .main-nav > a:hover::after {
        width: 44px;
        opacity: 1;
        background: var(--gold);
    }

    .mobile-nav-socials {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
        margin-top: 16px;
        padding-top: 17px;
        border-top: 1px solid rgba(255, 248, 232, 0.18);
    }

    .mobile-nav-socials a {
        width: auto;
        height: auto;
        padding: 0;
        margin: 0;
        color: var(--cream);
        font-size: 20px;
        line-height: 1;
        opacity: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: color 0.25s ease, transform 0.25s ease;
    }

    .mobile-nav-socials a::after {
        display: none;
    }

    .mobile-nav-socials a:hover {
        color: var(--gold);
        transform: translateY(-2px);
    }

    body.nav-open {
        overflow: hidden;
    }

    /* ---------- Hero Mobile ---------- */
    .hero-section {
        position: relative;
        min-height: 670px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        isolation: isolate;

        background:
            linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.30)),
            url("../img/hero.png") center top / cover no-repeat;
        background-attachment: scroll;
    }

    /* cream lengkung atas */
    .hero-section::before {
        display: none;
    }

    /* wave bawah */
    .hero-section::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 100%;
        height: 48px;
        background-image: url("../img/niche-wave.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: bottom;
        z-index: 5;
        pointer-events: none;
    }

    .hero-overlay {
        z-index: 2;
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.04) 0%,
            rgba(0, 0, 0, 0.16) 42%,
            rgba(0, 0, 0, 0.28) 100%
        );
    }

    .hero-content {
        position: relative;
        z-index: 4;
        width: 100%;
        max-width: 100%;
        margin-top: 165px;
        margin-bottom: 50px;
        padding: 0 10px;
        text-align: center;
        color: var(--cream);
    }

    .hero-small {
        display: none;
    }

    .mobile-hide-br {
        display: none;
    }


    .hero-content h1 {
        font-size: clamp(32px, 8vw, 38px);
        line-height: 0.95;
        font-weight: 500;
        letter-spacing: 1.5px;
        margin-bottom: 5px;
        white-space: nowrap;
    }

    .hero-subtitle,
    .hero-subtitle2 {
        display: inline;
        font-size: clamp(12px, 3vw, 15px);
        line-height: 1.2;
        letter-spacing: 1.5px;
        font-style: italic;
        margin: 0;
    }

    .hero-subtitle2::before {
        content: " - ";
    }

    .hero-content .btn-outline {
        display: flex;
        width: fit-content;
        margin: 34px auto 0;
    }

    .btn-outline {
        align-items: center;
        justify-content: center;
        padding: 9px 20px;
        font-size: clamp(14px, 3vw, 15px);
        border-radius: 999px;
        border-width: 1px;
        background: rgba(255, 248, 232, 0.06);
        backdrop-filter: blur(2px);
    }

    /* ---------- Global Mobile Heading ---------- */
    .section-heading {
        gap: 14px;
        margin-bottom: 34px;
    }

    .section-heading span {
        width: 45px;
        height: 1px;
    }

    .section-heading h2 {
        font-size: 32px;
        line-height: 1;
    }

    /* ---------- Services Mobile ---------- */
    .services-section {
        padding: 50px 24px 95px;
        overflow: hidden;
    }

    .services-heading {
        gap: 10px;
        margin-bottom: 60px;
        text-align: center;
    }

    .services-heading h2 {
        font-size: 32px;
        line-height: 1;
    }

    .services-heading span {
        width: 160px;
        height: 1px;
        opacity: 0.58;
    }

    .services-wrapper {
        width: 100%;
        max-width: 370px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 22px;
        justify-content: center;
        align-items: stretch;
    }

    .service-card {
        position: relative;
        min-height: 170px;
        border-radius: 12px;
        padding: 18px 12px 16px;
        display: grid;
        grid-template-rows: 38px 46px 1fr;
        align-items: start;
        justify-items: center;
        text-align: center;
        background: rgb(23 50 31 / 97%);
    }

    .service-icon {
        position: static;
        transform: none;
        width: 35px;
        height: 35px;
        font-size: 15px;
        margin: 0 auto 0;
        background: rgba(255, 248, 232, 0.45);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-icon i {
        transform: translateY(0);
    }

    .service-card h3 {
        align-self: center;
        font-size: 17px;
        line-height: 0.95;
        margin: 0;
        text-align: center;
        max-width: 128px;
    }

    .service-card p {
        align-self: start;
        max-width: 125px;
        font-size: 10px;
        line-height: 1.22;
        text-align: center;
        margin: 0 auto;
    }

    .service-card:nth-child(2) h3,
    .service-card:nth-child(3) h3,
    .service-card:nth-child(4) h3 {
        max-width: 118px;
    }

    .service-card:nth-child(2) p,
    .service-card:nth-child(3) p,
    .service-card:nth-child(4) p {
        max-width: 122px;
    }

    .decor-left {
        width: 130px;
        height: 130px;
        left: -22px;
        bottom: 15px;
        opacity: 0.52;
    }

    /* ---------- Projects Mobile ---------- */
    .projects-section {
        padding: 52px 16px 92px;
    }

    .wave-top {
        top: -34px;
        height: 78px;
        background-size: 100% 100%;
    }

    .projects-container {
        width: 100%;
        max-width: 310px;
        margin: 0 auto;
    }

    .project-title {
        width: 100%;
        margin-bottom: 26px;
        padding: 0;
    }

    .project-title h2 {
        font-size: 32px;
        margin-bottom: 22px;
    }

    .project-title h2::after {
        width: 34px;
        height: 1px;
        bottom: -10px;
    }

    .project-title p {
        width: 100%;
        max-width: 275px;
        font-size: 12px;
        line-height: 1.45;
    }

    .project-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .project-card {
        border-radius: 8px;
        overflow: hidden;
    }

    .project-card-link {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        min-height: 116px;
    }

    .project-card img {
        width: 52%;
        height: auto;
        min-height: 116px;
        object-fit: cover;
        object-position: center;
        flex-shrink: 0;
    }

    .project-body {
        width: 48%;
        padding: 12px 12px 10px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .project-category {
        font-size: 5px;
        letter-spacing: 1.35px;
        margin-bottom: 12px;
    }

    .project-category::after {
        width: 20px;
        bottom: -4px;
        height: 1px;
    }

    .project-body h3 {
        font-size: 14px;
        line-height: 0.95;
        margin-bottom: 8px;
    }

    .project-body p {
        font-size: 7.5px;
        line-height: 1.32;
        margin-bottom: 12px;
    }

    .project-view {
        margin-top: auto;
        display: inline-flex;
        align-items: center;
        gap: 3px;

        width: fit-content;
        font-size: 6.8px;
        letter-spacing: 1.25px;
        line-height: 1;
    }

    .project-view span {
        position: relative;
        display: inline-block;
        width: 14px;
        height: 1em;
        flex-shrink: 0;
        font-size: 0;
        line-height: 1;

        transform: translateY(0);
        transition: transform 0.25s ease;
    }

    .project-view span::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 13px;
        height: 1px;
        background: currentColor;
        transform: translateY(-50%);
        border-radius: 999px;
    }

    .project-view span::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        width: 5px;
        height: 5px;
        border-top: 1.25px solid currentColor;
        border-right: 1.25px solid currentColor;
        transform: translateY(-50%) rotate(45deg);
    }

    .project-card:hover .project-view span {
        transform: translateX(2px);
    }

    .project-card:nth-child(even) .project-card-link {
        flex-direction: row-reverse;
    }

    .wave-bottom {
        height: 44px;
    }

    /* ---------- Story Mobile ---------- */
    .story-section {
        min-height: auto;
        padding: 50px 22px 78px;
        overflow: hidden;
    }

    .story-content {
        width: 100%;
        max-width: 315px;
    }

    .story-content p {
        font-size: 11px;
        line-height: 1.45;
        margin-bottom: 26px;
    }

    .btn-primary {
        font-size: 14px;
        padding: 6px 18px;
        min-width: 0;
    }

    .story-bg-circle {
        width: 170px;
        height: 170px;
        right: -60px;
        bottom: -70px;
        background: rgba(23, 50, 31, 0.045);
    }

    .story-bg-circle::before {
        width: 92px;
        height: 136px;
        right: 26px;
        bottom: 16px;
        border-width: 1px;
    }

    .story-bg-circle::after {
        width: 54px;
        height: 82px;
        right: 46px;
        bottom: 30px;
        border-width: 1px;
    }

    .story-section::before {
        display: none;
    }

    /* ---------- Footer Mobile ---------- */
    .site-footer {
        margin: 0;
        width: 100%;
        padding: 34px 26px 24px;
        border-radius: 45px 45px 0 0;
        background: linear-gradient(90deg, #14361F 0%, #0F311D 100%);
        overflow: hidden;
    }

    .footer-inner {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1px 1fr;
        grid-template-areas:
            "brand brand brand"
            "contact divider right";
        column-gap: 18px;
        row-gap: 0;
        padding-bottom: 26px;
        border-bottom: 1px solid rgba(219, 176, 57, 0.42);
        align-items: start;
    }

    /* BRAND TOP */
    .footer-brand {
        grid-area: brand;
        align-items: center;
        text-align: center;
        padding-bottom: 24px;
        margin-bottom: 10px;
        position: relative;
    }

    .footer-logo-img {
        width: 126px;
        margin-bottom: 14px;
    }

    .footer-logo-img img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .footer-brand::before {
        content: "";
        order: 2;
        display: block;
        width: 154px;
        height: 1px;
        background: rgba(219, 176, 57, 0.46);
        margin: 0 auto 14px;
    }

    .footer-brand small {
        order: 3;
        display: block;
        font-size: 10.5px;
        line-height: 1.45;
        letter-spacing: 0.8px;
        color: rgba(255, 248, 232, 0.78);
    }

    .footer-brand::after {
        display: none;
    }

    /* LEFT COLUMN */
    .footer-contact {
        grid-area: contact;
        width: 100%;
        padding-right: 0;
        position: relative;
    }

    .footer-contact::after {
        content: "";
        position: absolute;
        top: 0;
        right: -19px;
        width: 1px;
        height: 100%;
        min-height: 210px;
        background: rgba(219, 176, 57, 0.42);
    }

    /* RIGHT COLUMN */
    .footer-social {
        grid-area: right;
        width: 100%;
        padding-left: 0;
        margin: 0 0 24px;
    }

    .footer-links {
        grid-area: right;
        width: 100%;
        padding-left: 0;
        margin-top: 80px;
    }

    /* TITLES */
    .footer-column h3 {
        font-size: 15.5px;
        line-height: 1;
        margin-bottom: 21px;
        color: var(--cream);
    }

    .footer-column h3::after {
        width: 30px;
        height: 1px;
        bottom: -8px;
        background: rgba(219, 176, 57, 0.52);
    }

    /* CONTACT LIST */
    .footer-contact ul,
    .footer-links ul {
        list-style: none;
    }

    .footer-contact li {
        margin-bottom: 14px;
    }

    .footer-contact li a {
        display: grid;
        grid-template-columns: 23px minmax(0, 1fr);
        gap: 9px;
        align-items: center;
    }

    .footer-contact li a i {
        width: 22px;
        height: 22px;
        font-size: 10px;
        border-width: 1px;
        border-color: rgba(255, 248, 232, 0.62);
    }

    .footer-contact li a span {
        display: block;
        font-size: 8.2px;
        line-height: 1.32;
        color: rgba(255, 248, 232, 0.74);
        word-break: break-word;
    }

    .footer-contact li a span,
    .footer-contact li a i {
        transition:
            color 0.25s ease,
            border-color 0.25s ease;
    }

    .footer-contact li a:hover span {
        color: rgba(219, 176, 57, 0.72);
    }

    .footer-contact li a:hover i {
        color: rgba(219, 176, 57, 0.72);
        border-color: rgba(219, 176, 57, 0.72);
    }

    /* SOCIAL */
    .social-links {
        display: flex;
        align-items: center;
        gap: 13px;
        flex-wrap: nowrap;
        margin: 0;
    }

    .social-links i {
        font-size: 18px;
    }

    .social-links .fa-facebook-f,
    .social-links .fa-tiktok {
        font-size: 17px;
    }

    /* QUICK LINKS */
    .footer-links li {
        display: flex;
        align-items: flex-start;
        gap: 6px;
        font-size: 8.2px;
        line-height: 1.35;
        margin-bottom: 8px;
        color: rgba(255, 248, 232, 0.74);
    }

    .footer-links li::before {
        content: ">";
        color: rgba(219, 176, 57, 0.62);
        font-size: 10px;
        margin-top: 0;
    }

    .footer-links a {
        color: rgba(255, 248, 232, 0.74);
    }

    /* COPYRIGHT */
    .footer-bottom {
        width: 100%;
        padding-top: 18px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 8.4px;
        line-height: 1.35;
        max-width: 210px;
        margin: 0 auto;
        color: rgba(255, 248, 232, 0.78);
    }

    .footer-contact,
    .footer-social,
    .footer-links {
        min-width: 0;
    }

    .footer-contact {
        max-width: 100%;
    }

    .footer-social,
    .footer-links {
        max-width: 100%;
    }

    /* ---------- Scroll top ---------- */
    .niche-scroll-to-top {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
    }

    .niche-scroll-track,
    .niche-scroll-progress {
        stroke-width: 4;
    }

    .niche-scroll-arrow {
        width: 34px;
        height: 34px;
    }

    .niche-scroll-arrow::before {
        width: 10px;
        height: 10px;
        margin-top: 5px;
    }

    /* =========================================
       CONTACT PAGE MOBILE
       ========================================= */

    .contact-body {
        background: var(--cream-old);
    }

    .contact-page {
        position: relative;
        min-height: 100vh;
        background: var(--cream-old);
        padding: 128px 40px 100px;
        overflow: hidden;
    }

    /* arch besar dekor belakang title */
    .contact-page::before {
        display: none;
    }

    .contact-page::after {
        content: "";
        position: absolute;
        right: -120px;
        bottom: 20px;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        background: rgba(255, 248, 232, 0.22);
        z-index: 1;
        pointer-events: none;
    }

    .contact-container {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 330px;
        margin: 0 auto;
    }

    .contact-intro {
        max-width: 260px;
        margin-bottom: 34px;
    }

    .contact-intro h1 {
        font-size: 40px;
        line-height: 0.95;
        font-weight: 500;
        letter-spacing: 0.5px;
        color: var(--green);
        margin-bottom: 14px;
        margin-top: 50px;
    }

    .contact-intro p {
        width: 250px;
        font-size: 15px;
        line-height: 1.35;
        color: rgba(23, 50, 31, 0.9);
        margin-bottom: 0;
    }

    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 25px;
        align-items: stretch;
    }

    /* left contact card */
    .contact-info-card {
        width: 100%;
        min-height: auto;
        background: var(--cream);
        border-radius: 14px;
        padding: 18px 22px 20px;
        box-shadow: 0 2px 18px rgba(252, 189, 2, 0.13);
        transition:
            transform 0.35s ease,
            box-shadow 0.35s ease;
    }

    .contact-info-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 28px rgba(23, 50, 31, 0.14);
    }

    .contact-info-item {
        display: grid;
        grid-template-columns: 22px minmax(0, 1fr);
        align-items: center;
        gap: 9px;
        padding: 9px 0;
        border-bottom: 1px solid rgba(23, 50, 31, 0.14);
    }

    .contact-info-item:first-child {
        padding-top: 0;
    }

    .contact-info-item:last-of-type {
        margin-bottom: 15px;
    }

    .contact-icon {
        width: 20px;
        height: 20px;
        border: 1px solid var(--green);
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: var(--green);
        font-size: 11px;
        transition:
            background 0.3s ease,
            color 0.3s ease,
            border-color 0.3s ease,
            transform 0.3s ease;
    }

    .contact-info-card:hover .contact-icon {
        background: var(--green);
        color: var(--cream);
        border-color: var(--green);
        transform: scale(1.06);
    }

    .contact-info-item p {
        font-size: 12px;
        line-height: 1.25;
        font-weight: 600;
        color: var(--green);
        margin: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .contact-socials {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-top: 10px;
        padding-left: 0;
    }

    .contact-socials a {
        width: 18px;
        height: 18px;
        display: grid;
        place-items: center;
        font-size: 17px;
        color: var(--green);
        transition:
            color 0.25s ease,
            transform 0.25s ease;
    }

    .contact-socials a:hover {
        color: var(--gold);
        transform: translateY(-3px);
    }

    /* right form card */
    .contact-form-card {
        width: 100%;
        min-height: auto;
        position: relative;
        overflow: hidden;
        border-radius: 14px;
        padding: 18px 18px 18px;
        background: linear-gradient(90deg, #17321F 0%, #23482d 100%);
        box-shadow: 0 8px 22px rgba(252, 189, 2, 0.18);
        transition:
            transform 0.35s ease,
            box-shadow 0.35s ease;
    }

    .contact-form-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 30px rgba(252, 189, 2, 0.22);
    }

    .contact-form-card::after {
        content: "";
        position: absolute;
        right: -45px;
        bottom: -45px;
        width: 130px;
        height: 130px;
        border-radius: 50%;
        background: rgba(255, 248, 232, 0.045);
        z-index: 0;
    }

    .contact-form-card > * {
        position: relative;
        z-index: 2;
    }

    .contact-form-card h2 {
        position: relative;
        display: inline-block;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 5px;
        font-weight: 600;
        margin-bottom: 22px;
        color: var(--cream);
    }

    .contact-form-card h2::after {
        content: "";
        display: block;
        width: 46px;
        height: 1px;
        background: rgba(219, 176, 57, 0.85);
        margin-top: 7px;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 8px 8px;
        font-size: 12px;
        border-radius: 5px;
        border: 1px solid rgba(219, 176, 57, 0.58);
        background: transparent;
        color: var(--cream);
        outline: none;
        transition:
            border-color 0.25s ease,
            background 0.25s ease,
            box-shadow 0.25s ease;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: rgba(255, 248, 232, 0.72);
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
        border-color: var(--gold);
        background: rgba(255, 248, 232, 0.035);
        box-shadow: 0 0 0 3px rgba(219, 176, 57, 0.12);
    }

    .contact-form textarea {
        min-height: 92px;
        resize: none;
    }

    .contact-form button {
        align-self: flex-end;
        margin-top: 8px;
        padding: 8px 11px;
        font-size: 12px;
        border-radius: 5px;
        border: 0;
        background: var(--cream);
        color: var(--green);
        cursor: pointer;
        transition:
            background 0.28s ease,
            color 0.28s ease,
            transform 0.28s ease;
    }

    .contact-form button:hover {
        background: var(--green-dark);
        color: var(--gold);
        transform: translateY(-2px);
    }

    /* notif */
    .form-alert {
        top: 88px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        min-width: auto;
        width: calc(100% - 44px);
        max-width: 330px;
        padding: 12px 38px 12px 14px;
        font-size: 12px;
        border-radius: 10px;
    }

    .alert-close {
        right: 12px;
        font-size: 20px;
    }


    /* =========================================
       ABOUT PAGE MOBILE
       ========================================= */

    body.about-body {
        background: var(--cream);
        overflow-x: hidden;
    }

    body.about-body .about-page {
        position: relative;
        background: var(--cream);
        overflow: hidden;
    }

    body.about-body .about-story-section {
        position: relative;
        min-height: 635px;
        padding: 0;
        margin: 0;
        background: var(--cream);
        overflow: hidden;
    }

    body.about-body .about-page::before,
    body.about-body .about-page::after {
        display: none;
    }

    .about-story-section::before,
    .about-story-section::after {
        display: none;
    }

    body.about-body .about-mobile-arch {
        display: block;
        position: absolute;
        top: 72px;
        left: 50%;
        width: 520px;
        height: 370px;
        transform: translateX(-50%);
        background: var(--cream-old);
        border-radius: 50% 50% 0 0 / 18% 18% 0 0;
        z-index: 1;
        pointer-events: none;
    }

    body.about-body .about-mobile-arch::after {
        display: none;
        content: none;
    }

    body.about-body .about-story-container {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 393px;
        height: 635px;
        margin: 0 auto;
        padding: 0;
        display: block;
    }

    /* decorative */
    body.about-body .about-story-container::before {
        content: "";
        position: absolute;
        left: -56px;
        bottom: 80px;
        width: 112px;
        height: 155px;
        border: 1px solid rgba(23, 50, 31, 0.13);
        border-radius: 90px 90px 0 0;
        z-index: 1;
        pointer-events: none;
    }

    body.about-body .about-story-container::after {
        content: "";
        position: absolute;
        left: -60px;
        bottom: 15px;
        width: 155px;
        height: 155px;
        border-radius: 50%;
        background: var(--cream-old);
        opacity: 0.38;
        z-index: 0;
        pointer-events: none;
    }

    body.about-body .about-copy,
    body.about-body .about-visual {
        display: block;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
        position: static;
    }

    /* ABOUT US */
    body.about-body .about-kicker {
        position: absolute;
        top: 150px;
        left: 113px;
        width: max-content;
        margin: 0;
        padding: 0;
        color: var(--green);
    }

    body.about-body .about-kicker span {
        position: relative;
        display: block;
        font-size: 9px;
        line-height: 1;
        font-weight: 450;
        letter-spacing: 4px;
        color: var(--green);
    }

    body.about-body .about-kicker span::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 45px;
        height: 1px;
        background: var(--gold);
    }

    /* OUR STORY */
    body.about-body .about-copy h1 {
        position: absolute;
        top: 180px;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        font-size: 38px;
        line-height: 0.95;
        font-weight: 500;
        letter-spacing: 0.4px;
        color: var(--green);
        text-align: center;
    }

    /* PARAGRAPH */
    body.about-body .about-copy > p {
        position: absolute;
        left: 67px;
        width: 255px;
        max-width: 255px;
        margin: 0;
        padding: 0;
        font-size: 10.6px;
        line-height: 1.22;
        font-weight: 400;
        color: rgba(23, 50, 31, 0.94);
        text-align: left;
    }

    body.about-body .about-copy > p:nth-of-type(1) {
        top: 235px;
    }

    body.about-body .about-copy > p:nth-of-type(2) {
        top: 286px;
    }

    /* AREA GAMBAR */
    body.about-body .about-visual {
        position: absolute;
        top: 374px;
        left: 0;
        width: 100%;
        height: 220px;
        overflow: visible;
    }

    body.about-body .about-main-image {
        position: absolute;
        top: 0;
        left: 74px;
        width: 230px;
        height: 146px;
        margin: 0;
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 8px 14px rgba(23, 50, 31, 0.18);
        z-index: 2;
    }

    body.about-body .about-accent-image {
        position: absolute;
        top: 86px;
        right: 47px;
        width: 97px;
        height: 146px;
        margin: 0;
        border-radius: 4px;
        overflow: hidden;
        background: var(--cream);
        box-shadow: 0 8px 14px rgba(23, 50, 31, 0.22);
        z-index: 4;
    }

    body.about-body .about-main-image img,
    body.about-body .about-accent-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }

    body.about-body .about-accent-image img {
        filter: saturate(0.65) brightness(1.15) contrast(0.9);
    }

    /* hover gambar */
    body.about-body .about-visual:hover .about-main-image {
        transform: translateY(-6px);
        box-shadow: 0 18px 34px rgba(250, 222, 66, 0.199);
    }

    body.about-body .about-visual:hover .about-accent-image {
        transform: translate(8px, -8px);
        box-shadow: 0 18px 34px rgba(250, 222, 66, 0.199);
    }

    /* NOTE BAWAH */
    body.about-body .about-note {
        position: absolute;
        top: 529px;
        left: 74px;
        width: 165px;
        margin: 0;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        z-index: 5;
    }

    body.about-body .about-note::before,
    body.about-body .about-note::after {
        display: none;
        content: none;
    }

    body.about-body .about-note:hover {
        transform: none;
        box-shadow: none;
    }

    body.about-body .about-note p {
        margin: 6px;
        padding: 0;
        font-size: 10.8px;
        line-height: 1.22;
        font-weight: 400;
        color: rgba(23, 50, 31, 0.94);
        text-align: left;
    }

    /* =========================================
       PROJECTS PAGE
       ========================================= */

    body.projects-body {
        background: var(--cream-old);
        overflow-x: hidden;
    }

    body.projects-body .projects-main {
        position: relative;
        background: var(--cream-old);
        overflow: hidden;
    }

    body.projects-body .projects-page {
        position: relative;
        min-height: 828px;
        padding: 132px 0 90px;
        background: var(--cream-old);
        overflow: hidden;
    }

    /* curve cream bagian atas */
    body.projects-body .projects-bg-shape {
        display: none;
    }

    /* DECOR MOBILE */
    body.projects-body .projects-decor-right {
        display: block;
    }

    body.projects-body .projects-decor-right::before {
        content: "";
        position: absolute;
        left: -88px;
        top: 115px;
        width: 190px;
        height: 190px;
        border-radius: 50%;
        background: rgba(255, 248, 232, 0.14);
        z-index: 1;
        pointer-events: none;
    }

    body.projects-body .projects-decor-right::after {
        content: "";
        position: absolute;
        left: -34px;
        bottom: 650px;
        width: 92px;
        height: 135px;
        border: 1px solid rgba(219, 176, 57, 0.62);
        border-radius: 75px 75px 0 0;
        z-index: 1;
        pointer-events: none;
    }

    body.projects-body .projects-decor-bottom {
        display: block;
        position: absolute;
        right: -110px;
        bottom: -50px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(255, 248, 232, 0.20);
        z-index: 1;
        pointer-events: none;
    }

    body.projects-body .projects-decor-bottom::after {
        content: "";
        position: absolute;
        right: 55px;
        bottom: 58px;
        width: 105px;
        height: 150px;
        border: 1px solid rgba(23, 50, 31, 0.12);
        border-radius: 80px 80px 0 0;
    }

    body.projects-body .projects-page-inner {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: 337px;
        margin: 0 auto;
        padding: 0 0;
        margin-top: 50px;
        margin-bottom: 80px;
    }

    /* TITLE */
    body.projects-body .projects-page-title {
        width: 100%;
        text-align: center;
        color: var(--green);
        margin: 0 0 48px;
    }

    body.projects-body .projects-page-title h1 {
        margin: 0 0 10px;
        font-size: 32px;
        line-height: 1;
        font-weight: 500;
        letter-spacing: 4.5px;
        text-transform: uppercase;
        color: var(--green);
    }

    body.projects-body .projects-title-line {
        width: 160px;
        height: 1px;
        background: var(--green);
        opacity: 0.72;
        margin: 0 auto 22px;
    }

    body.projects-body .projects-page-title p {
        width: 255px;
        margin: 0 auto;
        font-size: 12px;
        line-height: 1.25;
        font-weight: 400;
        text-align: center;
        color: rgba(23, 50, 31, 0.92);
    }

    /* GRID */
    body.projects-body .projects-category-grid {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    /* CARD */
    body.projects-body .projects-category-card {
        width: 100%;
        min-height: 135px;
        padding: 6px;
        display: grid;
        grid-template-columns: 130px 1fr;
        align-items: center;
        gap: 16px;

        background: var(--cream);
        border: 1px solid rgba(219, 176, 57, 0.78);
        border-radius: 13px;
        color: var(--green);
        text-decoration: none;
        overflow: hidden;

        transition:
            transform 0.28s ease,
            box-shadow 0.28s ease,
            border-color 0.28s ease;
    }

    body.projects-body .projects-category-card:hover {
        transform: translateY(-3px);
        border-color: var(--gold);
        box-shadow: 0 12px 24px rgba(23, 50, 31, 0.12);
    }

    /* IMAGE */
    body.projects-body .projects-category-image-frame {
        width: 130px;
        height: 122px;
        border-radius: 10px;
        overflow: hidden;
        border: 1px solid rgba(219, 176, 57, 0.88);
        background: #d7d3c9;
        flex-shrink: 0;
    }

    body.projects-body .projects-category-image-frame img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
        filter: brightness(0.58);
        transition:
            filter 0.3s ease,
            transform 0.3s ease;
    }

    body.projects-body .projects-category-card:hover .projects-category-image-frame img {
        filter: brightness(1);
        transform: scale(1.025);
    }

    /* CONTENT */
    body.projects-body .projects-category-content {
        min-height: 96px;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: transparent;
        border: 0;
        border-radius: 0;
    }

    body.projects-body .projects-category-content h2 {
        position: relative;
        width: fit-content;
        margin: 0 0 17px;
        padding-bottom: 7px;
        font-size: 20px;
        line-height: 1;
        font-weight: 400;
        color: var(--green);
        transition: color 0.25s ease;
    }

    body.projects-body .projects-category-content h2::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 36px;
        height: 1px;
        background: var(--gold);
        transition: width 0.28s ease;
    }

    body.projects-body .projects-category-card:hover .projects-category-content h2::after {
        width: 52px;
    }

    /* VIEW LINK */
    body.projects-body .projects-view-link {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        width: fit-content;
        margin: 0;
        color: var(--green);
        transition: color 0.25s ease;
        margin-top: 9px;
    }

    body.projects-body .projects-view-text {
        font-size: 13px;
        line-height: 1;
        font-weight: 400;
        color: inherit;
    }

    body.projects-body .projects-view-arrow {
        font-size: 19px;
        line-height: 1;
        color: inherit;
        transform: translateY(-1px);
        transition:
            transform 0.25s ease,
            color 0.25s ease;
    }

    body.projects-body .projects-category-card:hover .projects-view-link,
    body.projects-body .projects-category-card:hover .projects-view-text,
    body.projects-body .projects-category-card:hover .projects-view-arrow {
        color: var(--gold);
    }

    body.projects-body .projects-category-card:hover .projects-view-arrow {
        transform: translate(6px, -1px);
    }


    /* =========================
       PROJECT CATEGORY PAGE - MOBILE
       Residentials / Commercials / Office
       ========================= */

    /* HERO TEXT MOBILE */
    body.project-category-body .project-category-hero {
        min-height: 750px;
        padding: 0;
    }

    body.project-category-body .project-category-hero-content {
        top: 50%;
        left: 50%;
        width: min(300px, calc(100% - 42px));
        transform: translate(-50%, -30%);
    }

    /* WAVE HERO MOBILE */
    body.project-category-body .project-category-hero::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 100%;
        height: 48px;
        background-image: url("../img/niche-wave.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: bottom;
        z-index: 5;
        pointer-events: none;
    }

    body.project-category-body .project-item-card::before {
        content: "";
        position: absolute;
        right: -50px;
        bottom: -50px;
        width: 118px;
        height: 118px;
        border-radius: 50%;
        background: rgba(255, 248, 232, 0.16);
        z-index: 0;
        pointer-events: none;
        transition:
            transform 0.32s ease,
            opacity 0.32s ease,
            background 0.32s ease;
    }

    body.project-category-body .project-category-hero-content h1 {
        width: 100%;
        margin: 0 auto 11px;
        font-size: 46px;
        line-height: 0.96;
        font-weight: 500;
        text-align: center;
    }

    body.project-category-body .project-category-hero-content span {
        width: 68px;
        margin: 0 auto 26px;
    }

    body.project-category-body .project-category-hero-content p {
        width: min(275px, 100%);
        margin: 0 auto;
        font-size: 15px;
        line-height: 1.26;
        text-align: center;
    }

    /* CARD WRAPPER */
    body.project-category-body .project-category-inner {
        width: min(292px, 100%);
        margin: 0 auto;
    }

    body.project-category-body .project-list-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
        max-width: 292px;
        margin: 0 auto;
        grid-auto-rows: auto;
    }

    /* CARD */
    body.project-category-body .project-item-card {
        width: 100%;
        min-height: 300px;
        height: auto;
        padding: 9px 9px 9px;
        border-radius: 11px;
        background: var(--green);
        color: var(--cream);
    }

    body.project-category-body .project-item-card:hover {
        transform: translateY(-4px);
        border-color: var(--gold);
        background: var(--cream);
        color: var(--green);
        box-shadow: 0 16px 30px rgba(23, 50, 31, 0.16);
    }

    body.project-category-body .project-item-card:hover::before {
        background: rgba(23, 50, 31, 0.10);
        transform: scale(1.16);
        opacity: 0.9;
    }

    /* IMAGE */
    body.project-category-body .project-item-image {
        height: 140px;
        margin-bottom: 11px;
        border-radius: 8px;
    }

    /* DATE */
    body.project-category-body .project-item-date {
        margin: 0 0 10px;
        padding-bottom: 7px;
        font-size: 7.4px;
        letter-spacing: 1.35px;
        color: rgba(255, 248, 232, 0.78);
    }

    body.project-category-body .project-item-date::after {
        width: 30px;
    }

    body.project-category-body .project-item-card:hover .project-item-date {
        color: rgba(23, 50, 31, 0.78);
    }

    body.project-category-body .project-item-card:hover .project-item-date::after {
        width: 50px;
    }

    /* TITLE */
    body.project-category-body .project-item-card h2 {
        width: calc(100% - 44px);
        margin: 0;
        font-size: 22px;
        line-height: 1.04;
        font-weight: 400;
        color: var(--cream);
    }

    body.project-category-body .project-item-card:hover h2 {
        color: var(--green);
    }

    /* TYPE PILL */
    body.project-category-body .project-item-type {
        margin-top: 42px;
        padding: 5px 9px;
        font-size: 7px;
        letter-spacing: 1px;
        color: rgba(255, 248, 232, 0.72);
        border-color: rgba(255, 248, 232, 0.22);
        background: rgba(255, 248, 232, 0.08);
    }

    body.project-category-body .project-item-card:hover .project-item-type {
        color: rgba(23, 50, 31, 0.78);
        border-color: rgba(23, 50, 31, 0.18);
        background: rgba(23, 50, 31, 0.06);
    }

    /* ARROW */
    body.project-category-body .project-item-arrow {
        right: 12px;
        bottom: 12px;
        width: 33px;
        height: 33px;
        background: rgba(255, 248, 232, 0.18);
        color: var(--cream);
    }

    body.project-category-body .project-item-arrow::before {
        font-size: 17px;
        transform: translate(-50%, -54%);
    }

    body.project-category-body .project-item-card:hover .project-item-arrow {
        background: var(--green);
        color: var(--cream);
    }

    /* BACK LINK MOBILE */
    body.project-category-body .project-back-link {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;

        width: fit-content;
        margin-top: 58px;
        padding: 11px 18px;

        border: 1px solid rgba(219, 176, 57, 0.72);
        border-radius: 10px;
        background: var(--green);
        color: var(--gold);

        font-size: 13px;
        line-height: 1;
        letter-spacing: 0.2px;
        text-decoration: none;

        box-shadow: 0 10px 22px rgba(23, 50, 31, 0.14);
        overflow: hidden;
        isolation: isolate;

        transition:
            transform 0.28s ease,
            background 0.28s ease,
            color 0.28s ease,
            border-color 0.28s ease,
            box-shadow 0.28s ease;
    }

    body.project-category-body .project-back-link::before {
        content: "";
        position: absolute;
        left: -34px;
        bottom: -36px;
        width: 76px;
        height: 76px;
        border-radius: 50%;
        background: rgba(255, 248, 232, 0.10);
        pointer-events: none;
        z-index: 0;
        transition:
            transform 0.28s ease,
            background 0.28s ease;
    }

    body.project-category-body .project-back-link:hover {
        transform: translateY(-3px);
        background: var(--cream);
        color: var(--green);
        border-color: var(--gold);
        box-shadow: 0 14px 28px rgba(23, 50, 31, 0.18);
    }

    body.project-category-body .project-back-link:hover::before {
        transform: scale(1.18);
        background: rgba(23, 50, 31, 0.08);
    }

    body.project-category-body .project-back-link span {
        position: relative;
        z-index: 2;
        display: inline-block;
        transform: translateY(-1px);
        transition: transform 0.25s ease;
    }

    body.project-category-body .project-back-link:hover span {
        transform: translate(-3px, -1px);
    }

    body.project-category-body .project-back-link > * {
        position: relative;
        z-index: 2;
    }

    /* =========================================
       PROJECT DETAIL PAGE - MOBILE
       ========================================= */

    body.project-detail-body {
        background: var(--cream-old);
        overflow-x: hidden;
    }

    .project-detail-body .project-detail-main {
        position: relative;
        min-height: 100vh;
        background: var(--cream-old);
        overflow: hidden;
    }

    /* ---------- HERO MOBILE ---------- */
    .project-detail-body .project-detail-hero {
        position: relative;
        min-height: 670px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        isolation: isolate;
        background: var(--cream-old);
    }

    .project-detail-body .project-detail-hero-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center top;
        z-index: 0;
        filter: brightness(0.54) saturate(0.9);
    }

    .project-detail-body .project-detail-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background:
            linear-gradient(
                to bottom,
                rgba(23, 50, 31, 0.44) 0%,
                rgba(23, 50, 31, 0.28) 48%,
                rgba(23, 50, 31, 0.48) 100%
            );
    }

    .project-detail-body .project-detail-hero::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 100%;
        height: 48px;
        background-image: url("../img/niche-wave-cream-old.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: bottom;
        z-index: 5;
        pointer-events: none;
    }

    .project-detail-body .project-detail-hero-content {
        position: relative;
        z-index: 4;
        width: min(315px, calc(100% - 48px));
        margin-top: 165px;
        margin-bottom: 50px;
        color: var(--cream);
    }

    .project-detail-body .project-detail-category {
        position: relative;
        width: fit-content;
        margin-bottom: 20px;
        padding-bottom: 8px;

        font-size: 9px;
        line-height: 1;
        letter-spacing: 2.8px;
        text-transform: uppercase;
        color: var(--gold);
    }

    .project-detail-body .project-detail-category::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 48px;
        height: 1px;
        background: var(--gold);
    }

    .project-detail-body .project-detail-hero-content h1 {
        width: 100%;
        margin: 0 0 22px;

        font-size: clamp(38px, 10.5vw, 50px);
        line-height: 1;
        font-weight: 500;
        color: var(--cream);
    }

    .project-detail-body .project-detail-hero-content p {
        width: min(300px, 100%);
        margin: 0;

        font-size: 14.5px;
        line-height: 1.32;
        color: rgba(255, 248, 232, 0.9);
    }

    .project-detail-body .project-hero-back {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 8px;

        width: fit-content;
        margin-top: 68px;
        padding: 10px 17px;

        border: 1px solid rgba(219, 176, 57, 0.68);
        border-radius: 999px;

        background: rgba(255, 248, 232, 0.14);
        color: var(--cream);

        font-size: 13px;
        line-height: 1;
        text-decoration: none;

        backdrop-filter: blur(8px);
        box-shadow: 0 10px 22px rgba(23, 50, 31, 0.16);

        transition:
            transform 0.28s ease,
            background 0.28s ease,
            color 0.28s ease,
            border-color 0.28s ease,
            box-shadow 0.28s ease;
    }

    .project-detail-body .project-hero-back span {
        display: inline-block;
        transform: translateY(-1px);
        transition: transform 0.25s ease;
    }

    .project-detail-body .project-hero-back:hover {
        transform: translateY(-3px);
        background: var(--cream);
        color: var(--green);
        border-color: var(--gold);
        box-shadow: 0 14px 28px rgba(23, 50, 31, 0.22);
    }

    .project-detail-body .project-hero-back:hover span {
        transform: translate(-3px, -1px);
    }

    /* ---------- CONTENT MOBILE ---------- */
    .project-detail-body .project-detail-content {
        position: relative;
        z-index: 4;
        padding: 58px 7% 112px;
        background: var(--cream-old);
        overflow: visible;
    }

    .project-detail-body .project-detail-content::before {
        content: "";
        position: absolute;
        right: -165px;
        bottom: -205px;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        background: rgba(255, 248, 232, 0.22);
        z-index: 1;
        pointer-events: none;
    }

    .project-detail-body .project-detail-content::after {
        content: "";
        position: absolute;
        right: 18px;
        bottom: -8px;
        width: 112px;
        height: 180px;
        border: 1px solid rgba(23, 50, 31, 0.12);
        border-radius: 70px 70px 0 0;
        z-index: 1;
        pointer-events: none;
    }

    /* ---------- MAIN GALLERY MOBILE - IMPROVED ---------- */

    .project-detail-body .project-gallery-wrap {
        position: relative;
        z-index: 3;
        width: min(350px, 100%);
        margin: 0 auto 56px;
    }

    /* card gallery mobile */
    .project-detail-body .project-gallery-shell {
        position: relative;
        z-index: 2;
        padding: 13px 13px 12px;
        border: 1px solid rgba(219, 176, 57, 0.40);
        border-radius: 13px;
        background: rgba(255, 248, 232, 0.28);
        box-shadow: 0 14px 30px rgba(23, 50, 31, 0.10);
        backdrop-filter: blur(4px);
    }

    /* header atas gallery */
    .project-detail-body .project-gallery-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

    .project-detail-body .project-gallery-heading span {
        position: relative;
        display: inline-block;
        padding-right: 11px;

        font-size: 11px;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: var(--gold);
    }

    .project-detail-body .project-gallery-heading span::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        width: 1.5px;
        height: 16px;
        background: rgba(219, 176, 57, 0.58);
        transform: translateY(-50%);
    }

    /* date kanan atas */
    .project-detail-body .project-gallery-date-badge {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }

    .project-detail-body .project-gallery-date-badge i {
        position: relative;
        padding-right: 8px;
        font-size: 16px;
        line-height: 1;
        color: var(--gold);
    }

    .project-detail-body .project-gallery-date-badge i::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        width: 1.5px;
        height: 16px;
        background: rgba(219, 176, 57, 0.58);
        transform: translateY(-50%);
    }

    .project-detail-body .project-gallery-date-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .project-detail-body .project-gallery-date-text small {
        font-size: 7.5px;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 0.7px;
        text-transform: uppercase;
        color: rgba(23, 50, 31, 0.58);
    }

    .project-detail-body .project-gallery-date-text strong {
        font-size: 12px;
        line-height: 1;
        font-weight: 600;
        color: var(--green);
    }

    /* stage */
    .project-detail-body .project-gallery-stage {
        position: relative;
    }

    /* gambar slider dibuat lebih terlihat */
    .project-detail-body .project-gallery-slider {
        position: relative;
        width: 100%;
        height: 282px;
        border-radius: 9px;
        overflow: hidden;

        background: rgba(23, 50, 31, 0.12);
        border: 1px solid rgba(219, 176, 57, 0.38);
        box-shadow: 0 14px 28px rgba(23, 50, 31, 0.13);
    }

    .project-detail-body .project-gallery-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.9) saturate(0.98);
    }

    /* mobile: hide overlay biar nggak penuh */
    .project-detail-body .project-gallery-overlay-info {
        display: none;
    }

    /* tombol mobile tetap terlihat */
    .project-detail-body .project-slider-btn {
        opacity: 0.92;
        visibility: visible;

        width: 34px;
        height: 34px;

        background: rgba(255, 248, 232, 0.88);
        border: 1px solid rgba(219, 176, 57, 0.55);
        color: var(--green);

        box-shadow: 0 8px 18px rgba(23, 50, 31, 0.16);

        transition:
            opacity 0.25s ease,
            background 0.25s ease,
            color 0.25s ease,
            border-color 0.25s ease,
            box-shadow 0.25s ease,
            transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* warna tombol saat hover / tap mobile */
    .project-detail-body .project-slider-btn:hover,
    .project-detail-body .project-slider-btn:active,
    .project-detail-body .project-slider-btn:focus {
        background: var(--green);
        color: var(--cream);
        border-color: var(--green);
        box-shadow: 0 12px 24px rgba(23, 50, 31, 0.24);
    }

    .project-detail-body .project-slider-btn::before {
        font-size: 21px;
        color: currentColor;
    }

    .project-detail-body .project-slider-prev {
        left: 15px;
        transform: translate(-5px, -50%) scale(0.94);
    }

    .project-detail-body .project-slider-next {
        right: 15px;
        transform: translate(5px, -50%) scale(0.94);
    }

    .project-detail-body .project-gallery-stage:hover .project-slider-btn,
    .project-detail-body .project-gallery-stage:active .project-slider-btn,
    .project-detail-body .project-gallery-stage:focus-within .project-slider-btn {
        opacity: 1;
    }

    .project-detail-body .project-gallery-stage:hover .project-slider-prev,
    .project-detail-body .project-gallery-stage:active .project-slider-prev,
    .project-detail-body .project-gallery-stage:focus-within .project-slider-prev {
        transform: translate(0, -50%) scale(1);
    }

    .project-detail-body .project-gallery-stage:hover .project-slider-next,
    .project-detail-body .project-gallery-stage:active .project-slider-next,
    .project-detail-body .project-gallery-stage:focus-within .project-slider-next {
        transform: translate(0, -50%) scale(1);
    }

    .project-detail-body .project-slider-prev:hover,
    .project-detail-body .project-slider-prev:active {
        transform: translate(-3px, -50%) scale(1);
    }

    .project-detail-body .project-slider-next:hover,
    .project-detail-body .project-slider-next:active {
        transform: translate(3px, -50%) scale(1);
    }

    /* dots */
    .project-detail-body .project-gallery-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-top: 12px;
    }

    .project-detail-body .project-gallery-dots button {
        width: 5px;
        height: 5px;
        border: 0;
        border-radius: 999px;
        background: rgba(23, 50, 31, 0.22);
    }

    .project-detail-body .project-gallery-dots button.active {
        width: 18px;
        background: var(--green);
    }

    /* ---------- PROJECT NAV MOBILE ---------- */
    .project-detail-body .project-project-nav {
        position: relative;
        z-index: 3;
        width: min(342px, 100%);
        margin: 0 auto 34px;
        padding-top: 24px;

        border-top: 1px solid rgba(255, 248, 232, 0.68);

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        align-items: stretch;
    }

    .project-detail-body .project-nav-side {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }

    /* ---------- PREV / NEXT CARD MOBILE ---------- */
    .project-detail-body .project-preview-nav {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 0;
        padding: 6px;
        border-radius: 11px;

        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 5px;

        background: rgba(255, 248, 232, 0.24);
        border: 1px solid rgba(219, 176, 57, 0.46);
        color: var(--green);
        text-decoration: none;
        overflow: hidden;
        box-shadow: 0 12px 26px rgba(23, 50, 31, 0.10);

        transition:
            transform 0.28s ease,
            background 0.28s ease,
            border-color 0.28s ease,
            box-shadow 0.28s ease;
    }

    .project-detail-body .project-preview-nav::before {
        content: "";
        position: absolute;
        bottom: -52px;
        width: 116px;
        height: 116px;
        border-radius: 50%;
        background: rgba(255, 248, 232, 0.23);
        z-index: 0;
        pointer-events: none;

        transition:
            transform 0.28s ease,
            background 0.28s ease;
    }

    .project-detail-body .project-preview-nav:hover {
        transform: translateY(-4px);
        background: rgba(255, 248, 232, 0.42);
        border-color: var(--gold);
        box-shadow: 0 16px 30px rgba(23, 50, 31, 0.15);
    }

    .project-detail-body .project-preview-nav:hover::before {
        transform: scale(1.12);
        background: rgba(23, 50, 31, 0.08);
    }

    .project-detail-body .project-preview-prev,
    .project-detail-body .project-preview-next {
        grid-template-columns: none;
        padding: 8px;
        text-align: left;
    }

    .project-detail-body .project-preview-prev {
        align-items: flex-end;
    }

    .project-detail-body .project-preview-next {
        align-items: flex-start;
    }

    .project-detail-body .project-preview-prev::before {
        left: auto;
        right: -54px;
        top: -54px;
        bottom: auto;
    }

    .project-detail-body .project-preview-next::before {
        right: -54px;
    }

    .project-detail-body .project-preview-image {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 58px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid rgba(219, 176, 57, 0.38);
        background: rgba(23, 50, 31, 0.12);
    }

    .project-detail-body .project-preview-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.82) saturate(0.95);

        transition:
            transform 0.38s ease,
            filter 0.38s ease;
    }

    .project-detail-body .project-preview-nav:hover .project-preview-image img {
        transform: scale(1.06);
        filter: brightness(0.98) saturate(1);
    }

    .project-detail-body .project-preview-info {
        position: relative;
        z-index: 2;
        width: 100%;
        padding: 0 !important;
    }

    .project-detail-body .project-preview-info h2 {
        display: none;
    }

    .project-detail-body .project-preview-info span {
        position: relative;
        display: inline-block;
        margin: 0;
        padding-bottom: 4px;

        font-size: 7px;
        line-height: 1;
        letter-spacing: 1.15px;
        text-transform: uppercase;
        color: rgba(23, 50, 31, 0.62);

        white-space: nowrap;
    }

    .project-detail-body .project-preview-info span::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 24px;
        height: 1px;
        background: var(--gold);
        transition: width 0.28s ease;
    }

    .project-detail-body .project-preview-nav:hover .project-preview-info span::after {
        width: 38px;
    }

    .project-detail-body .project-preview-prev::after,
    .project-detail-body .project-preview-next::after {
        content: "";
        position: absolute;
        bottom: 6px;
        z-index: 3;

        width: 23px;
        height: 23px;
        border-radius: 50%;

        display: grid;
        place-items: center;

        background: var(--green);
        color: var(--cream);

        font-family: Arial, sans-serif;
        font-size: 12px;
        line-height: 1;

        box-shadow: 0 8px 16px rgba(23, 50, 31, 0.15);
        transition:
            transform 0.25s ease,
            background 0.25s ease,
            color 0.25s ease;
    }

    .project-detail-body .project-preview-prev::after {
        content: "←";
        left: auto;
        right: 6px;
        top: 6px;
        bottom: auto;
        padding-bottom: 1px;
        padding-left: 1px;
    }

    .project-detail-body .project-preview-next::after {
        content: "→";
        right: 6px;
        padding-bottom: 1px;
        padding-right: 1px;
    }

    .project-detail-body .project-preview-prev:hover::after {
        transform: translateX(-3px);
        background: var(--gold);
        color: var(--green);
    }

    .project-detail-body .project-preview-next:hover::after {
        transform: translateX(3px);
        background: var(--gold);
        color: var(--green);
    }

    /* ---------- BACK BUTTON MOBILE ---------- */
    .project-detail-body .project-nav-back {
        position: relative;
        width: fit-content;
        min-width: 0;
        height: 36px;
        padding: 0 15px;

        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;

        border: 1px solid rgba(219, 176, 57, 0.72);
        border-radius: 10px;
        background: var(--green);
        color: var(--gold);

        font-size: 13px;
        line-height: 1;
        text-decoration: none;

        box-shadow: 0 10px 22px rgba(23, 50, 31, 0.14);
        overflow: hidden;

        transition:
            transform 0.28s ease,
            background 0.28s ease,
            color 0.28s ease,
            border-color 0.28s ease,
            box-shadow 0.28s ease;
    }

    .project-detail-body .project-nav-back::before {
        content: "";
        position: absolute;
        left: -32px;
        bottom: -34px;
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background: rgba(255, 248, 232, 0.10);
        pointer-events: none;

        transition:
            transform 0.28s ease,
            background 0.28s ease;
    }

    .project-detail-body .project-nav-back span {
        position: relative;
        z-index: 2;
        display: inline-block;
        transform: translateY(-1px);
        transition: transform 0.25s ease;
    }

    .project-detail-body .project-nav-back:hover {
        transform: translateY(-3px);
        background: var(--cream);
        color: var(--green);
        border-color: var(--gold);
        box-shadow: 0 14px 28px rgba(23, 50, 31, 0.18);
    }

    .project-detail-body .project-nav-back:hover::before {
        transform: scale(1.16);
        background: rgba(23, 50, 31, 0.08);
    }

    .project-detail-body .project-nav-back:hover span {
        transform: translate(-3px, -1px);
    }

    .project-detail-body .project-nav-back-under {
        align-self: flex-start;
        margin-top: 0;
    }

    .project-detail-body .project-nav-left:has(> .project-nav-back:only-child) {
        justify-content: center;
        align-items: flex-start;
        min-height: 112px;
    }

    .project-detail-body .project-nav-left:has(> .project-nav-back:only-child) .project-nav-back {
        align-self: flex-start;
        height: 36px;
        padding: 0 15px;
    }

    /* ---------- FOOTER CONNECT MOBILE ---------- */
    .project-detail-body .site-footer {
        position: relative;
        z-index: 20;
        margin-top: -55px;
    }
}


/* =========================================
   TABLET
   ========================================= */

@media (min-width: 768px) and (max-width: 1024px) {

    body {
        overflow-x: hidden;
    }

    .mobile-nav-head,
    .mobile-nav-socials {
        display: none;
    }

    /* =========================================
       HEADER TABLET
       ========================================= */

    .site-header {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: min(760px, calc(100% - 46px));
        height: 76px;
        padding: 0 28px 0 18px;
        border-radius: 999px;
        background: rgba(246, 240, 223, 0.9);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 999;
    }

    .brand {
        height: 100%;
    }

    .header-logo {
        width: 126px;
        height: 54px;
        object-fit: contain;
        object-position: left center;
    }

    .main-nav {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .main-nav a {
        font-size: 18px;
        padding: 8px 2px 9px;
        line-height: 1;
    }

    .main-nav a::after {
        bottom: 3px;
        height: 1px;
    }

    .main-nav a:hover::after,
    .main-nav a.active::after {
        width: 55%;
    }

    .menu-toggle {
        display: none;
    }


    /* =========================================
       HOME - HERO TABLET
       ========================================= */

    .hero-section {
        min-height: 590px;
        padding: 130px 6% 95px;
        align-items: center;
        background-position: center;
    }

    .hero-section::before {
        top: -8px;
        left: -8%;
        width: 116%;
        height: 155px;
    }

    .hero-section::after {
        height: 118px;
    }

    .hero-overlay {
        background: radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.05), transparent 35%);
    }

    .hero-content {
        max-width: 460px;
        margin-top: 150px;
        margin-bottom: 150px;
    }

    .hero-small {
        display: block;
        font-size: 18px;
        margin-bottom: 7px;
    }

    .hero-content h1 {
        font-size: clamp(48px, 6.2vw, 72px);
        line-height: 0.88;
        letter-spacing: -0.5px;
        margin-bottom: 10px;
    }

    .hero-subtitle,
    .hero-subtitle2 {
        display: block;
        font-size: 20px;
        line-height: 1.2;
        letter-spacing: 0;
    }

    .hero-subtitle {
        margin-top: 16px;
    }

    .hero-subtitle2 {
        margin-bottom: 28px;
    }

    .btn-outline {
        font-size: 16px;
        padding: 10px 22px;
    }


    /* =========================================
       HOME - SERVICES TABLET
       ========================================= */

    .services-section {
        padding: 72px 6% 210px;
    }

    .services-heading {
        gap: 16px;
        margin-bottom: 82px;
    }

    .services-heading h2 {
        font-size: clamp(38px, 5vw, 56px);
        line-height: 1;
    }

    .services-heading span {
        width: 310px;
        height: 1.5px;
    }

    .services-wrapper {
        width: min(100%, 900px);
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }

    .service-card {
        min-height: 280px;
        padding: 72px 14px 18px;
        border-radius: 16px;
    }

    .service-icon {
        top: 40px;
        width: 56px;
        height: 56px;
        font-size: 25px;
    }

    .service-card h3 {
        font-size: 24px;
        line-height: 0.95;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 1.22;
        max-width: 170px;
    }

    .decor-left {
        width: 230px;
        height: 230px;
        left: -20px;
        bottom: 24px;
        opacity: 0.48;
    }


    /* =========================================
       HOME - PROJECTS PREVIEW TABLET
       ========================================= */

    .projects-section {
        padding: 86px 6% 210px;
    }

    .wave-top {
        height: 128px;
        top: -44px;
    }

    .projects-container {
        width: min(100%, 960px);
    }

    .project-title {
        width: min(540px, 100%);
        margin-bottom: 30px;
    }

    .project-title h2 {
        font-size: clamp(40px, 5vw, 56px);
        margin-bottom: 32px;
    }

    .project-title h2::after {
        bottom: -14px;
        width: 38px;
        height: 1.5px;
    }

    .project-title p {
        width: min(520px, 100%);
        font-size: 17px;
        line-height: 1.35;
    }

    .project-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .project-card {
        border-radius: 8px;
    }

    .project-card img {
        height: 220px;
    }

    .project-body {
        padding: 16px 17px 19px;
    }

    .project-category {
        font-size: 9px;
        letter-spacing: 2.2px;
        margin-bottom: 17px;
    }

    .project-category::after {
        width: 40px;
        bottom: -7px;
    }

    .project-body h3 {
        font-size: 24px;
        line-height: 1.05;
        margin-bottom: 12px;
    }

    .project-body p {
        font-size: 13px;
        line-height: 1.35;
        margin-bottom: 24px;
    }

    .project-view {
        font-size: 10px;
        letter-spacing: 1.9px;
        gap: 7px;
    }

    .project-view span {
        width: 21px;
        height: 9px;
    }

    .project-view span::before {
        width: 21px;
    }

    .project-view span::after {
        width: 7px;
        height: 7px;
    }

    .wave-bottom {
        height: 86px;
    }


    /* =========================================
       HOME - STORY TABLET
       ========================================= */

    .story-section {
        min-height: 380px;
        padding: 82px 6% 180px;
    }

    .section-heading {
        gap: 20px;
        margin-bottom: 48px;
    }

    .section-heading span {
        width: 88px;
        height: 1.5px;
    }

    .section-heading h2 {
        font-size: clamp(38px, 5vw, 54px);
    }

    .story-content {
        width: min(550px, 100%);
    }

    .story-content p {
        font-size: 18px;
        line-height: 1.45;
        margin-bottom: 42px;
    }

    .btn-primary {
        font-size: 20px;
        padding: 10px 24px;
    }

    .story-bg-circle {
        width: 370px;
        height: 370px;
        right: -110px;
        bottom: -150px;
    }

    .story-bg-circle::before {
        width: 195px;
        height: 280px;
        right: 58px;
        bottom: 38px;
    }

    .story-bg-circle::after {
        width: 115px;
        height: 184px;
        right: 98px;
        bottom: 58px;
    }

    .story-section::before {
        width: 118px;
        height: 118px;
        left: -40px;
        bottom: 100px;
        border-width: 1.5px;
    }


    /* =========================================
       CONTACT PAGE TABLET
       ========================================= */

    .contact-body {
        background: var(--cream-old);
    }

    .contact-page {
        min-height: 100vh;
        padding: 145px 6% 105px;
        background: var(--cream-old);
        overflow: hidden;
    }

    .contact-page::after {
        right: -150px;
        bottom: 75px;
        width: 320px;
        height: 320px;
    }

    .contact-container {
        width: min(900px, 100%);
    }

    .contact-intro {
        max-width: 560px;
        margin-bottom: 38px;
    }

    .contact-intro h1 {
        font-size: clamp(58px, 7vw, 80px);
        line-height: 0.94;
        margin-bottom: 22px;
    }

    .contact-intro p {
        width: min(500px, 100%);
        font-size: 20px;
        line-height: 1.42;
        margin-bottom: 40px;
    }

    .contact-content {
        display: grid;
        grid-template-columns: minmax(310px, 1fr) minmax(350px, 1fr);
        gap: 26px;
        align-items: stretch;
    }

    .contact-info-card {
        min-height: 370px;
        padding: 34px 30px 30px;
        border-radius: 13px;
    }

    .contact-info-item {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 14px;
        padding: 15px 0;
        border-bottom-width: 1.5px;
    }

    .contact-info-item:last-of-type {
        margin-bottom: 22px;
    }

    .contact-icon {
        width: 31px;
        height: 31px;
        font-size: 14px;
        border-width: 1.5px;
    }

    .contact-info-item p {
        font-size: 15px;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .contact-socials {
        gap: 22px;
        margin-top: 8px;
        padding-left: 0;
    }

    .contact-socials a {
        width: 31px;
        height: 31px;
        font-size: 24px;
    }

    .contact-form-card {
        min-height: 370px;
        padding: 25px;
        border-radius: 13px;
    }

    .contact-form-card::after {
        right: -45px;
        bottom: -45px;
        width: 140px;
        height: 140px;
    }

    .contact-form-card h2 {
        font-size: 16px;
        letter-spacing: 3.6px;
        margin-bottom: 24px;
    }

    .contact-form-card h2::after {
        width: 50px;
        margin-top: 8px;
    }

    .contact-form {
        gap: 11px;
    }

    .form-row {
        gap: 8px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 11px 12px;
        font-size: 15px;
        border-radius: 4px;
    }

    .contact-form textarea {
        min-height: 116px;
    }

    .contact-form button {
        font-size: 14px;
        padding: 10px 15px;
        margin-top: 8px;
    }

    .form-alert {
        top: 110px;
        right: 28px;
        min-width: 280px;
        max-width: 360px;
        padding: 14px 42px 14px 18px;
        font-size: 14px;
        border-radius: 12px;
    }


    /* =========================================
       ABOUT PAGE TABLET
       ========================================= */

    body.about-body {
        background: var(--cream-old);
    }

    body.about-body .about-page {
        background: var(--cream-old);
        min-height: 100vh;
    }

    body.about-body .about-story-section {
        position: relative;
        min-height: 690px;
        padding: 145px 6% 45px;
        background: var(--cream-old);
        overflow: visible;
        z-index: 1;
    }

    body.about-body .about-story-section::before {
        content: "";
        position: absolute;
        left: -105px;
        top: 130px;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: rgba(255, 248, 232, 0.14);
        z-index: 1;
        pointer-events: none;
        display: block;
    }

    body.about-body .about-story-section::after {
        content: "";
        position: absolute;
        left: -42px;
        bottom: 250px;
        width: 125px;
        height: 185px;
        border: 1px solid rgba(23, 50, 31, 0.10);
        border-radius: 90px 90px 0 0;
        z-index: 1;
        pointer-events: none;
        display: block;
    }

    body.about-body .about-mobile-arch {
        position: absolute;
        right: -130px;
        bottom: -235px;
        left: auto;
        top: auto;
        width: 420px;
        height: 420px;
        transform: none;
        border-radius: 50%;
        background: rgba(255, 248, 232, 0.20);
        z-index: 1;
        pointer-events: none;
        display: block;
    }

    body.about-body .about-mobile-arch::after {
        content: "";
        position: absolute;
        right: 86px;
        bottom: 112px;
        width: 165px;
        height: 245px;
        border: 1px solid rgba(23, 50, 31, 0.12);
        border-radius: 105px 105px 0 0;
        display: block;
    }

    body.about-body .about-story-container {
        position: relative;
        z-index: 2;
        width: min(900px, 100%);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
        align-items: center;
        gap: 42px;
    }

    body.about-body .about-kicker {
        margin-bottom: 34px;
    }

    body.about-body .about-kicker span {
        position: relative;
        display: inline-block;
        font-size: 14px;
        letter-spacing: 5px;
        color: var(--green);
        text-transform: uppercase;
    }

    body.about-body .about-kicker span::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 62px;
        height: 1.4px;
        background: var(--gold);
    }

    body.about-body .about-copy h1 {
        font-size: clamp(48px, 6vw, 62px);
        line-height: 1;
        font-weight: 500;
        color: var(--green);
        margin-bottom: 24px;
    }

    body.about-body .about-copy > p {
        max-width: 430px;
        font-size: 17px;
        line-height: 1.36;
        color: rgba(23, 50, 31, 0.88);
        margin-bottom: 20px;
    }

    body.about-body .about-note {
        width: min(330px, 100%);
        margin-top: 50px;
        margin-left: 18px;
        padding: 13px 18px;
        border-radius: 10px;
        background: rgba(255, 248, 232, 0.72);
        box-shadow: 0 8px 20px rgba(50, 44, 23, 0.12);
        transition:
            transform 0.32s ease,
            box-shadow 0.32s ease,
            background 0.32s ease;
    }

    body.about-body .about-note:hover {
        transform: translateY(-5px);
        background: rgba(255, 248, 232, 0.86);
        box-shadow: 0 14px 28px rgba(219, 176, 57, 0.28);
    }

    body.about-body .about-note::before {
        left: 18px;
        top: 13px;
        bottom: 13px;
        width: 1.2px;
    }

    body.about-body .about-note p {
        padding-left: 18px;
        font-size: 16px;
        line-height: 1.28;
    }

    body.about-body .about-visual {
        position: relative;
        min-height: 390px;
        z-index: 2;
    }

    body.about-body .about-main-image {
        position: absolute;
        top: 18px;
        left: 0;
        width: 275px;
        height: 370px;
        border-radius: 9px;
    }

    body.about-body .about-accent-image {
        position: absolute;
        right: 0;
        bottom: -54px;
        width: 220px;
        height: 235px;
        border-radius: 9px;
    }

    body.about-body .about-main-image img,
    body.about-body .about-accent-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    body.about-body .about-visual:hover .about-main-image {
        transform: translateY(-5px);
        box-shadow: 0 15px 28px rgba(250, 222, 66, 0.17);
    }

    body.about-body .about-visual:hover .about-accent-image {
        transform: translate(6px, -6px);
        box-shadow: 0 15px 28px rgba(250, 222, 66, 0.17);
    }

    body.about-body .about-visual:hover img {
        transform: scale(1.035);
        filter: contrast(1.03) saturate(1.03);
    }


    /* =========================================
       FOOTER TABLET
       ========================================= */

    .site-footer {
        padding: 64px 5.5% 28px;
        border-radius: 64px 64px 0 0;
    }

    .footer-inner {
        width: min(100%, 940px);
        grid-template-columns: 1fr 1.35fr 0.9fr 0.85fr;
        gap: 30px;
        padding-bottom: 40px;
    }

    .footer-logo-img {
        width: 136px;
        margin-bottom: 18px;
    }

    .footer-brand small {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .footer-column h3 {
        font-size: 19px;
        margin-bottom: 26px;
    }

    .footer-column h3::after {
        bottom: -9px;
        width: 32px;
    }

    .footer-contact li {
        margin-bottom: 13px;
    }

    .footer-contact li a {
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 9px;
    }

    .footer-contact li a i {
        width: 25px;
        height: 25px;
        font-size: 11px;
    }

    .footer-contact li a span {
        font-size: 11.5px;
        line-height: 1.3;
        overflow-wrap: anywhere;
    }

    .footer-links li {
        gap: 8px;
        font-size: 12.5px;
        margin-bottom: 14px;
    }

    .social-links {
        gap: 14px;
    }

    .social-links i {
        font-size: 19px;
    }

    .social-links .fa-facebook-f,
    .social-links .fa-tiktok {
        font-size: 17px;
    }

    .footer-bottom {
        width: min(100%, 940px);
        padding-top: 24px;
    }

    .footer-bottom p {
        font-size: 11.5px;
    }

    /* =========================================
       TABLET - FOOTER
       ========================================= */

    .site-footer {
        position: relative;
        z-index: 20;
    }

    /* ---------- HOME ---------- */
    body:not(.about-body):not(.contact-body) .story-section {
        padding-bottom: 175px;
        overflow: visible;
        z-index: 1;
    }

    body:not(.about-body):not(.contact-body) .story-bg-circle {
        bottom: -210px;
        z-index: 1;
    }

    body:not(.about-body):not(.contact-body) .site-footer {
        margin-top: -58px;
    }

    /* ---------- CONTACT ---------- */
    /* isi contact */
    body.contact-body .contact-page {
        min-height: 660px;
        padding: 220px 6% 55px;
        overflow: visible;
        z-index: 1;
    }

    body.contact-body .contact-page::after {
        bottom: -55px;
        z-index: 1;
    }

    body.contact-body .contact-container {
        position: relative;
        z-index: 3;
    }

    /* footer contact naik sedikit */
    body.contact-body .site-footer {
        margin-top: 100px;
    }

    /* ---------- ABOUT ---------- */
    /* isi about */
    body.about-body .about-story-section {
        min-height: 665px;
        padding: 280px 6% 35px;
        overflow: visible;
        z-index: 1;
    }

    body.about-body .about-story-container {
        position: relative;
        z-index: 3;
    }

    /* decor masuk ke belakang footer */
    body.about-body .about-mobile-arch {
        bottom: -260px;
        z-index: 1;
    }

    body.about-body .about-mobile-arch::after {
        bottom: 125px;
    }

    /* footer about naik */
    body.about-body .site-footer {
        margin-top: -100px;
    }

    /* =========================================
       SCROLL TO TOP TABLET
       ========================================= */

    .niche-scroll-to-top {
        width: 60px;
        height: 60px;
        right: 22px;
        bottom: 22px;
    }

    .niche-scroll-track,
    .niche-scroll-progress {
        stroke-width: 4.5;
    }

    .niche-scroll-arrow {
        width: 39px;
        height: 39px;
    }

    .niche-scroll-arrow::before {
        width: 12px;
        height: 12px;
        margin-top: 6px;
    }

    /* =========================================
       PROJECTS PAGE
       ========================================= */

    .projects-body {
        background: var(--cream-old);
    }

    /* wrapper */
    .projects-body .projects-main {
        position: relative;
        background: var(--cream-old);
        overflow: visible;
        z-index: 1;
    }

    .projects-body .projects-page {
        position: relative;
        min-height: auto;
        padding: 175px 0 165px;
        background: var(--cream-old);
        overflow: visible;
        z-index: 1;
    }

    /* curve cream atas */
    .projects-body .projects-bg-shape {
        position: absolute;
        top: 0;
        left: 50%;
        width: 200vw;
        height: 230px;
        transform: translateX(-50%);
        background: rgba(255, 248, 232, 0.42);
        z-index: 1;
        pointer-events: none;

        -webkit-mask: radial-gradient(
            ellipse 30% 68% at 50% 100%,
            transparent 0 98.5%,
            #000 99%
        );

        mask: radial-gradient(
            ellipse 30% 68% at 50% 100%,
            transparent 0 98.5%,
            #000 99%
        );
    }

    /* decor kiri atas */
    .projects-body .projects-decor-right::before {
        content: "";
        position: absolute;
        left: -105px;
        top: 132px;
        width: 245px;
        height: 245px;
        border-radius: 50%;
        background: rgba(255, 248, 232, 0.14);
        z-index: 1;
        pointer-events: none;
    }

    /* decor kiri bawah */
    .projects-body .projects-decor-right::after {
        content: "";
        position: absolute;
        left: -45px;
        bottom: 360px;
        width: 122px;
        height: 178px;
        border: 1px solid rgba(23, 50, 31, 0.10);
        border-radius: 90px 90px 0 0;
        z-index: 1;
        pointer-events: none;
    }

    /* decor kanan bawah */
    .projects-body .projects-decor-bottom {
        position: absolute;
        right: -135px;
        bottom: -225px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(255, 248, 232, 0.20);
        z-index: 1;
        pointer-events: none;
    }

    .projects-body .projects-decor-bottom::after {
        content: "";
        position: absolute;
        right: 112px;
        bottom: 103px;
        width: 150px;
        height: 225px;
        border: 2px solid rgba(42, 97, 59, 0.18);
        border-radius: 95px 95px 0 0;
    }

    /* content wrapper */
    .projects-body .projects-page-inner {
        position: relative;
        z-index: 3;
        width: min(920px, calc(100% - 64px));
        margin: 0 auto;
    }

    /* title */
    .projects-body .projects-page-title {
        text-align: center;
        color: var(--green);
        margin: 0 0 50px;
    }

    .projects-body .projects-page-title h1 {
        font-size: clamp(50px, 7vw, 62px);
        font-weight: 500;
        line-height: 1;
        margin-bottom: 10px;
    }

    .projects-body .projects-title-line {
        width: 310px;
        height: 1.5px;
        background: var(--green);
        opacity: 0.72;
        margin: 0 auto 18px;
    }

    .projects-body .projects-page-title p {
        width: min(500px, 100%);
        margin: 32px auto 0;
        font-size: 18px;
        line-height: 1.38;
        color: var(--green);
    }

    .projects-body .projects-category-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        align-items: stretch;
    }

    /* card */
    .projects-body .projects-category-card {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: 0;
        padding: 12px;
        border-radius: 15px;
        background: var(--cream);
        color: var(--green);
        text-decoration: none;
        transition:
            transform 0.28s ease,
            box-shadow 0.28s ease;
    }

    .projects-body .projects-category-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 28px rgba(23, 50, 31, 0.12);
    }

    /* image */
    .projects-body .projects-category-image-frame {
        position: relative;
        overflow: hidden;
        height: 205px;
        flex-shrink: 0;
        border: 1px solid rgba(219, 176, 57, 0.85);
        border-bottom: none;
        border-radius: 12px 12px 0 0;
        background: #d7d3c9;
    }

    .projects-body .projects-category-image-frame img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        filter: brightness(0.58);
        transition:
            transform 0.35s ease,
            filter 0.35s ease;
    }

    .projects-body .projects-category-card:hover .projects-category-image-frame img {
        filter: brightness(1);
        transform: scale(1.025);
    }

    /* content bawah card */
    .projects-body .projects-category-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 84px;
        padding: 11px 12px 10px;
        background: var(--cream);
        border: 1px solid rgba(219, 176, 57, 0.85);
        border-top: none;
        border-radius: 0 0 12px 12px;
    }

    .projects-body .projects-category-content h2 {
        position: relative;
        display: inline-block;
        width: fit-content;
        margin-bottom: 12px;
        padding-bottom: 7px;
        font-size: 25px;
        font-weight: 400;
        line-height: 1;
        color: var(--green);
        transition: color 0.25s ease;
    }

    .projects-body .projects-category-content h2::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 36px;
        height: 1px;
        background: var(--gold);
        transition: width 0.28s ease;
    }

    .projects-body .projects-category-card:hover .projects-category-content h2::after {
        width: 68px;
    }

    .projects-body .projects-view-link {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        width: fit-content;
        margin-top: 8px;
        margin-bottom: 7px;
        color: var(--green);
        transition: color 0.25s ease;
    }

    .projects-body .projects-view-text {
        font-size: 14px;
        line-height: 1;
        transition: color 0.25s ease;
    }

    .projects-body .projects-view-arrow {
        font-size: 15px;
        line-height: 1;
        transition:
            transform 0.25s ease,
            color 0.25s ease;
    }

    .projects-body .projects-category-card:hover .projects-view-link,
    .projects-body .projects-category-card:hover .projects-view-text,
    .projects-body .projects-category-card:hover .projects-view-arrow {
        color: var(--gold);
    }

    .projects-body .projects-category-card:hover .projects-view-arrow {
        transform: translateX(3px);
    }

    .projects-body .site-footer {
        position: relative;
        z-index: 20;
        margin-top: -72px;
    }

    /* =========================================
       PROJECT CATEGORY PAGE - TABLET
       Residentials / Commercials / Office
       ========================================= */

    .project-category-body {
        background: var(--cream);
    }

    .project-category-body .project-category-main {
        position: relative;
        min-height: 100vh;
        background: var(--cream);
        overflow: visible;
    }

    /* HERO TABLET */
    .project-category-body .project-category-hero {
        min-height: 720px;
        padding: 0 6%;
        overflow: hidden;
    }

    .project-category-body .project-category-hero-bg {
        object-position: center;
        filter: brightness(0.72) saturate(0.92);
    }

    .project-category-body .project-category-hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(255, 248, 232, 0.30),
            rgba(255, 248, 232, 0.50)
        );
    }

    .project-category-body .project-category-hero::before {
        left: -110px;
        top: 125px;
        width: 240px;
        height: 240px;
    }

    .project-category-body .project-category-hero::after {
        bottom: -38px;
        height: 125px;
    }

    .project-category-body .project-category-hero-content {
        top: 50%;
        left: 50%;
        width: min(650px, calc(100% - 80px));
        transform: translate(-50%, -44%);
    }

    .project-category-body .project-category-hero-content h1 {
        font-size: clamp(58px, 7vw, 74px);
        line-height: 0.96;
        margin: 0 auto 14px;
    }

    .project-category-body .project-category-hero-content span {
        width: 86px;
        margin: 0 auto 24px;
    }

    .project-category-body .project-category-hero-content p {
        width: min(560px, 100%);
        font-size: 21px;
        line-height: 1.22;
    }

    /* SECTION TABLET */
    .project-category-body .project-category-section {
        padding: 76px 6% 120px;
        min-height: 560px;
        overflow: visible;
    }

    .project-category-body .project-category-section::before {
        right: -170px;
        bottom: -235px;
        width: 430px;
        height: 430px;
    }

    .project-category-body .project-category-section::after {
        right: 25px;
        bottom: -24px;
        width: 150px;
        height: 230px;
        border-radius: 95px 95px 0 0;
    }

    .project-category-body .project-category-inner {
        width: min(860px, 100%);
        margin: 0 auto;
    }

    .project-category-body .project-category-inner::before {
        left: -95px;
        top: 8px;
        width: 125px;
        height: 125px;
    }

    /* GRID TETAP 2 KOLOM SEPERTI DESKTOP */
    .project-category-body .project-list-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
        align-items: stretch;
        grid-auto-rows: minmax(340px, auto);
    }

    /* CARD TABLET */
    .project-category-body .project-item-card {
        min-height: 340px;
        height: 100%;
        padding: 12px 12px 12px;
        border-radius: 12px;
        background: var(--green);
        color: var(--cream);
        box-shadow: 0 12px 26px rgba(23, 50, 31, 0.12);
    }

    .project-category-body .project-item-card::before {
        right: -58px;
        bottom: -58px;
        width: 135px;
        height: 135px;
        background: rgba(255, 248, 232, 0.16);
    }

    .project-category-body .project-item-card:hover {
        transform: translateY(-6px);
        border-color: var(--gold);
        background: var(--cream);
        color: var(--green);
        box-shadow: 0 18px 34px rgba(23, 50, 31, 0.17);
    }

    .project-category-body .project-item-card:hover::before {
        background: rgba(23, 50, 31, 0.10);
        transform: scale(1.14);
        opacity: 0.9;
    }

    /* IMAGE */
    .project-category-body .project-item-image {
        height: 175px;
        margin-bottom: 14px;
        border-radius: 8px;
    }

    .project-category-body .project-item-image img {
        filter: brightness(0.78) saturate(0.92);
    }

    /* DATE */
    .project-category-body .project-item-date {
        margin: 0 0 13px;
        padding-bottom: 8px;
        font-size: 9px;
        letter-spacing: 1.8px;
        color: rgba(255, 248, 232, 0.78);
    }

    .project-category-body .project-item-date::after {
        width: 34px;
    }

    .project-category-body .project-item-card:hover .project-item-date {
        color: rgba(23, 50, 31, 0.78);
    }

    .project-category-body .project-item-card:hover .project-item-date::after {
        width: 62px;
    }

    /* TITLE */
    .project-category-body .project-item-card h2 {
        width: calc(100% - 54px);
        margin: 0;
        font-size: clamp(30px, 4vw, 38px);
        line-height: 1.02;
        font-weight: 400;
        color: var(--cream);
    }

    .project-category-body .project-item-card:hover h2 {
        color: var(--green);
    }

    /* TYPE PILL */
    .project-category-body .project-item-type {
        margin-top: 34px;
        padding: 6px 11px;
        font-size: 9px;
        letter-spacing: 1.3px;
        color: rgba(255, 248, 232, 0.72);
        border-color: rgba(255, 248, 232, 0.22);
        background: rgba(255, 248, 232, 0.08);
    }

    .project-category-body .project-item-card:hover .project-item-type {
        color: rgba(23, 50, 31, 0.78);
        border-color: rgba(23, 50, 31, 0.18);
        background: rgba(23, 50, 31, 0.06);
    }

    /* ARROW */
    .project-category-body .project-item-arrow {
        right: 15px;
        bottom: 15px;
        width: 38px;
        height: 38px;
        background: rgba(255, 248, 232, 0.18);
        color: var(--cream);
    }

    .project-category-body .project-item-arrow::before {
        font-size: 20px;
        transform: translate(-50%, -54%);
    }

    .project-category-body .project-item-card:hover .project-item-arrow {
        transform: translateX(5px);
        background: var(--green);
        color: var(--cream);
    }

    /* BACK LINK TABLET */
    .project-category-body .project-back-link {
        margin-top: 68px;
        padding: 13px 23px;
        border-radius: 12px;
        font-size: 16px;
    }

    .project-category-body .project-back-link::before {
        left: -38px;
        bottom: -40px;
        width: 86px;
        height: 86px;
    }

    /* FOOTER CONNECT */
    .project-category-body .site-footer {
        position: relative;
        z-index: 20;
        margin-top: -65px;
    }

    /* =========================================
       PROJECT DETAIL PAGE - TABLET
       ========================================= */

    .project-detail-body {
        background: var(--cream-old);
    }

    .project-detail-body .project-detail-main {
        background: var(--cream-old);
        overflow: visible;
    }

    /* HERO TABLET */
    .project-detail-body .project-detail-hero {
        min-height: 690px;
        padding: 115px 6% 185px;
        align-items: center;
    }

    .project-detail-body .project-detail-hero::after {
        height: 125px;
    }

    .project-detail-body .project-detail-hero-content {
        width: min(560px, 100%);
        margin-top: 110px;
    }

    .project-detail-body .project-detail-category {
        margin-bottom: 26px;
        padding-bottom: 9px;
        font-size: 11px;
        letter-spacing: 3.2px;
    }

    .project-detail-body .project-detail-category::after {
        width: 54px;
    }

    .project-detail-body .project-detail-hero-content h1 {
        width: min(680px, 118%);
        margin: 0 0 30px;
        font-size: clamp(50px, 7vw, 68px);
        line-height: 1.06;
    }

    .project-detail-body .project-detail-hero-content p {
        width: min(580px, 100%);
        font-size: 20px;
        line-height: 1.28;
    }

    .project-detail-body .project-hero-back {
        margin-top: 110px;
        padding: 12px 20px;
        font-size: 14px;
    }

    /* CONTENT TABLET */
    .project-detail-body .project-detail-content {
        padding: 78px 6% 125px;
    }

    .project-detail-body .project-detail-content::before {
        right: -170px;
        bottom: -210px;
        width: 455px;
        height: 455px;
    }

    .project-detail-body .project-detail-content::after {
        right: 35px;
        bottom: -8px;
        width: 150px;
        height: 235px;
        border-radius: 95px 95px 0 0;
    }

    /* GALLERY TABLET */
    .project-detail-body .project-gallery-wrap {
        width: min(820px, 100%);
        margin: 0 auto 76px;
    }

    .project-detail-body .project-gallery-wrap::before {
        left: -26px;
        top: -26px;
        width: 130px;
        height: 130px;
    }

    .project-detail-body .project-gallery-wrap::after {
        right: -28px;
        bottom: 16px;
        width: 96px;
        height: 96px;
    }

    .project-detail-body .project-gallery-slider {
        height: 390px;
        border-radius: 12px;
    }

    .project-detail-body .project-gallery-slide img {
        transition:
            transform 0.45s ease,
            filter 0.35s ease;
    }

    .project-detail-body .project-gallery-slider:hover .project-gallery-slide.active img {
        transform: scale(1.035);
        filter: brightness(0.95) saturate(1);
    }

   /* TABLET: tombol slider selalu terlihat */
    .project-detail-body .project-gallery-stage .project-slider-btn {
        opacity: 1;
        visibility: visible;

        width: 44px;
        height: 44px;

        background: rgba(255, 248, 232, 0.88);
        color: var(--green);
        border-color: rgba(219, 176, 57, 0.55);

        box-shadow: 0 10px 22px rgba(23, 50, 31, 0.16);

        transition:
            background 0.25s ease,
            color 0.25s ease,
            border-color 0.25s ease,
            box-shadow 0.25s ease,
            transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .project-detail-body .project-gallery-stage .project-slider-btn::before {
        font-size: 25px;
        color: currentColor;
    }

    .project-detail-body .project-gallery-stage .project-slider-prev {
        left: 22px;
        transform: translate(-2px, -50%) scale(0.98);
    }

    .project-detail-body .project-gallery-stage .project-slider-next {
        right: 22px;
        transform: translate(2px, -50%) scale(0.98);
    }

    /* saat area gambar disentuh / aktif */
    .project-detail-body .project-gallery-stage:hover .project-slider-prev,
    .project-detail-body .project-gallery-stage:active .project-slider-prev,
    .project-detail-body .project-gallery-stage:focus-within .project-slider-prev {
        transform: translate(0, -50%) scale(1);
    }

    .project-detail-body .project-gallery-stage:hover .project-slider-next,
    .project-detail-body .project-gallery-stage:active .project-slider-next,
    .project-detail-body .project-gallery-stage:focus-within .project-slider-next {
        transform: translate(0, -50%) scale(1);
    }

    /* warna tombol saat ditekan / hover tablet */
    .project-detail-body .project-gallery-stage .project-slider-btn:hover,
    .project-detail-body .project-gallery-stage .project-slider-btn:active,
    .project-detail-body .project-gallery-stage .project-slider-btn:focus {
        background: var(--green);
        color: var(--cream);
        border-color: var(--green);
        box-shadow: 0 14px 28px rgba(23, 50, 31, 0.24);
    }

    .project-detail-body .project-gallery-stage .project-slider-prev:hover,
    .project-detail-body .project-gallery-stage .project-slider-prev:active,
    .project-detail-body .project-gallery-stage .project-slider-prev:focus {
        transform: translate(-4px, -50%) scale(1);
    }

    .project-detail-body .project-gallery-stage .project-slider-next:hover,
    .project-detail-body .project-gallery-stage .project-slider-next:active,
    .project-detail-body .project-gallery-stage .project-slider-next:focus {
        transform: translate(4px, -50%) scale(1);
    }

    .project-detail-body .project-gallery-dots {
        margin-top: 16px;
    }

    .project-detail-body .project-gallery-dots button {
        width: 6px;
        height: 6px;
    }

    .project-detail-body .project-gallery-dots button.active {
        width: 21px;
    }

    /* PREVIEW NAV TABLET */
    .project-detail-body .project-project-nav {
        width: min(820px, 100%);
        margin: 0 auto 44px;
        padding-top: 34px;
        gap: 24px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-detail-body .project-nav-side {
        gap: 18px;
    }

    /* CARD PREV / NEXT */
    .project-detail-body .project-preview-nav {
        min-height: 128px;
        padding: 14px;
        gap: 16px;
        border-radius: 12px;
    }

    .project-detail-body .project-preview-nav::before {
        bottom: -54px;
        width: 120px;
        height: 120px;
    }

    /* PREVIOUS: teks kiri, gambar kanan */
    .project-detail-body .project-preview-prev {
        grid-template-columns: minmax(0, 1fr) 145px;
        padding-left: 22px;
        padding-right: 14px;
    }

    .project-detail-body .project-preview-prev::before {
        left: -50px;
    }

    .project-detail-body .project-preview-prev::after {
        left: 18px;
        bottom: 15px;
    }

    .project-detail-body .project-preview-prev .project-preview-info {
        padding-left: 50px;
        padding-right: 6px;
    }

    /* NEXT: gambar kiri, teks kanan */
    .project-detail-body .project-preview-next {
        grid-template-columns: 145px minmax(0, 1fr);
        padding-left: 14px;
        padding-right: 22px;
    }

    .project-detail-body .project-preview-next::before {
        right: -50px;
    }

    .project-detail-body .project-preview-next::after {
        right: 18px;
        bottom: 15px;
    }

    .project-detail-body .project-preview-next .project-preview-info {
        padding-left: 6px;
        padding-right: 50px;
    }

    /* IMAGE */
    .project-detail-body .project-preview-image {
        width: 145px;
        height: 92px;
        border-radius: 9px;
    }

    /* TEXT */
    .project-detail-body .project-preview-info span {
        margin-bottom: 10px;
        padding-bottom: 6px;
        font-size: 9px;
        letter-spacing: 1.45px;
        white-space: nowrap;
    }

    .project-detail-body .project-preview-info span::after {
        width: 32px;
    }

    .project-detail-body .project-preview-nav:hover .project-preview-info span::after {
        width: 58px;
    }

    .project-detail-body .project-preview-info h2 {
        max-width: 185px;
        font-size: clamp(21px, 2.6vw, 28px);
        line-height: 0.98;
    }

    /* ARROW */
    .project-detail-body .project-preview-prev::after,
    .project-detail-body .project-preview-next::after {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    /* BACK CARD */
    .project-detail-body .project-nav-back {
        padding: 13px 22px;
        border-radius: 11px;
        font-size: 16px;
    }

    .project-detail-body .project-nav-back::before {
        left: -36px;
        bottom: -38px;
        width: 82px;
        height: 82px;
    }

    .project-detail-body .project-nav-back-under {
        align-self: flex-start;
        margin-top: 0;
    }

    /* FOOTER CONNECT */
    .project-detail-body .site-footer {
        position: relative;
        z-index: 20;
        margin-top: -60px;
    }
}


/* =========================================
   SMALL MOBILE 

   @media (max-width: 480px) {

    .site-header {
        padding: 22px 20px 0;
    }

    .header-logo {
        width: 78px;
    }

    .menu-toggle {
        margin-top: 15px;
    }

    .main-nav {
        width: 58%;
        padding: 20px 18px 24px;
    }

    .mobile-nav-logo {
        width: 124px;
    }

    .hero-section {
        min-height: 602px;
        background:
            linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.30)),
            url("../img/hero.png") center top / cover no-repeat;
    }

    .hero-section::before {
        left: -14%;
        width: 128%;
        height: 158px;
    }

    .hero-content {
        margin: 146px auto 0;
        padding: 0 24px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle,
    .hero-subtitle2 {
        font-size: 11.5px;
    }

    .services-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .services-wrapper {
        max-width: 286px;
        gap: 16px 18px;
    }

    .projects-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .projects-container {
        max-width: 310px;
    }

    .story-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .site-footer {
        margin: 0 10px;
        padding: 30px 16px 22px;
        border-radius: 30px 30px 0 0;
    }

    .footer-inner {
        column-gap: 20px;
    }

    .footer-logo-img {
        width: 142px;
    }

    .footer-contact li a span,
    .footer-links li {
        font-size: 8px;
    }
}
   ========================================= */

