* {
    box-sizing: border-box;
}

:root {
    --background: #f5f5f2;
    --surface: #ffffff;
    --surface-muted: #ebece7;
    --text: #17201b;
    --text-muted: #5c655f;
    --primary: #173f2b;
    --primary-dark: #0f2e1e;
    --accent: #c69b54;
    --border: #d7dbd5;
    --shadow: 0 18px 50px rgba(23, 32, 27, 0.10);
    --radius: 18px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(15, 46, 30, 0.96);
    color: #ffffff;
    backdrop-filter: blur(12px);
}

.header-content {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    font-weight: 800;
    letter-spacing: 0.12em;
}

nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

nav a {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
}

nav a:hover {
    color: #ffffff;
}

.menu-button {
    display: none;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
}

.hero {
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(12, 39, 25, 0.96),
            rgba(23, 63, 43, 0.76)
        );
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(198, 155, 84, 0.23),
            transparent 35%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-block: 100px;
}

.hero h1 {
    max-width: 820px;
    margin: 14px 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 500;
    line-height: 0.98;
}

.hero-description {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.24rem;
}

.eyebrow,
.section-label {
    margin: 0;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button.primary {
    background: var(--accent);
    color: #1f1a12;
}

.button.secondary {
    border-color: rgba(255, 255, 255, 0.45);
    background: transparent;
    color: #ffffff;
}

.section .button.secondary {
    border-color: var(--primary);
    color: var(--primary);
}

.button.whatsapp {
    background: #1eaf58;
    color: #ffffff;
}

.full-width {
    width: 100%;
}

.summary {
    position: relative;
    z-index: 3;
    margin-top: -44px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.summary article {
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    border-right: 1px solid var(--border);
}

.summary article:last-child {
    border-right: 0;
}

.summary strong {
    color: var(--primary);
}

.summary span {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.section {
    padding-block: 100px;
}

.section-muted {
    background: var(--surface-muted);
}

.section h2 {
    max-width: 780px;
    margin: 10px 0 42px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.08;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-placeholder {
    min-height: 340px;
    margin: 0;
    display: grid;
    place-items: center;
    border: 1px dashed #9ba49e;
    border-radius: var(--radius);
    background:
        linear-gradient(
            135deg,
            #dde1dc,
            #cdd3cd
        );
    color: var(--text-muted);
}

.asset-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-card {
    min-height: 240px;
    padding: 30px;
    border: 1px solid rgba(23, 63, 43, 0.10);
    border-radius: var(--radius);
    background: var(--surface);
}

.feature-card h3 {
    margin-top: 0;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-muted);
}

.two-column {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 70px;
    align-items: start;
}

.specification-list {
    margin: 0;
    border-top: 1px solid var(--border);
}

.specification-list div {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding-block: 18px;
    border-bottom: 1px solid var(--border);
}

.specification-list dt {
    color: var(--text-muted);
}

.specification-list dd {
    margin: 0;
    font-weight: 700;
}

.price-card {
    position: sticky;
    top: 110px;
    padding: 36px;
    border-radius: var(--radius);
    background: var(--primary);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.price-card .price {
    margin: 18px 0;
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.3rem;
}

.map-placeholder {
    min-height: 420px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: var(--radius);
    background:
        linear-gradient(
            135deg,
            #d9ddd8,
            #c5ccc6
        );
    text-align: center;
}

.map-placeholder iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: var(--radius);
}

.document-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.document-card {
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 12px 30px rgba(23, 32, 27, 0.06);
}

.document-card strong {
    color: var(--primary);
    font-size: 1.15rem;
}

.document-card span {
    color: var(--text-muted);
}

.contact-section {
    background: var(--primary-dark);
    color: #ffffff;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.78);
}

.contact-form {
    padding: 34px;
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--text);
}

.contact-form label {
    display: block;
    margin: 16px 0 6px;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #ffffff;
}

.contact-form button {
    width: 100%;
    margin-top: 20px;
    border: 0;
}

.qr-section {
    text-align: center;
}

.qr-placeholder {
    width: 190px;
    height: 190px;
    display: grid;
    place-items: center;
    margin: 30px auto 18px;
    border: 2px dashed var(--primary);
    border-radius: 12px;
    color: var(--primary);
    font-weight: 800;
}

footer {
    padding-block: 28px;
    background: #0a2115;
    color: rgba(255, 255, 255, 0.72);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 0.86rem;
}


@media (max-width: 980px) {

    .summary-grid,
    .feature-grid,
    .document-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .price-card {
        position: static;
    }

    nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        background: var(--primary-dark);
    }

    nav.open {
        display: flex;
    }

    .menu-button {
        display: block;
    }
}


@media (max-width: 680px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .hero {
        min-height: 590px;
    }

    .hero-content {
        padding-block: 70px;
    }

    .summary {
        margin-top: 0;
    }

    .summary-grid,
    .gallery-grid,
    .feature-grid,
    .document-grid {
        grid-template-columns: 1fr;
    }

    .summary article {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .section {
        padding-block: 72px;
    }

    .specification-list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .footer-content {
        flex-direction: column;
    }
}


/* ============================================================
   PMOS RUKO CEGER - REAL PROPERTY PHOTO UPDATE
   ============================================================ */

.hero-ruko {
    position: relative;
    background:
        linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.55)
        ),
        url("../images/01_tampak_depan_ruko_ceger.png")
        center center / cover no-repeat;
}

.real-gallery {
    align-items: stretch;
}

.gallery-photo {
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.gallery-photo img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.gallery-photo figcaption {
    padding: 14px 16px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .gallery-photo img {
        height: auto;
    }
}
