/* Northern Pine — modern landing (HTML/CSS/JS only) */

:root {
    --bg: #f5f8fc;
    --bg-dark: #0c1524;
    --surface: #ffffff;
    --text: #141f2a;
    --muted: #4a5a6a;
    --accent: #d4af61;
    --accent-bright: #e8c77b;
    --accent-soft: rgba(212, 175, 97, 0.18);
    --pine: #2ea3f2;
    --pine-deep: #1b6fad;
    --pine-glow: rgba(46, 163, 242, 0.35);
    --radius: 16px;
    --radius-lg: 26px;
    --shadow: 0 24px 56px rgba(12, 21, 36, 0.14);
    --shadow-soft: 0 10px 36px rgba(12, 21, 36, 0.09);
    --shadow-glow: 0 12px 40px var(--pine-glow);
    --font: "Outfit", system-ui, sans-serif;
    --font-alt: "Instrument Sans", system-ui, sans-serif;
    --font-serif: "Playfair Display", Georgia, serif;
    --header-h: 72px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    background-image: radial-gradient(ellipse 100% 70% at 100% -15%, rgba(212, 175, 97, 0.12) 0%, transparent 52%), radial-gradient(ellipse 70% 55% at 0% 105%, rgba(46, 163, 242, 0.09) 0%, transparent 48%), radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
    background-attachment: fixed;
}

::selection {
    background: var(--accent-soft);
    color: var(--pine-deep);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--pine);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--accent);
}

.container {
    width: min(1120px, 92vw);
    margin-inline: auto;
}


/* Header */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.75rem 0;
    transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled {
    background: rgba(245, 248, 252, 0.88);
    backdrop-filter: blur(14px) saturate(1.2);
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid rgba(46, 163, 242, 0.06);
}

.header-inner {
    width: min(1120px, 92vw);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: inherit;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.logo-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--pine), var(--pine-deep));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(46, 163, 242, 0.35);
}

.logo-text {
    font-size: 1.05rem;
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-img--footer {
    height: 44px;
}

.project-page .site-header:not(.is-scrolled) .logo-img {
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}

.page-facilities-ocbd .site-header:not(.is-scrolled) .logo-img {
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-nav a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
}

.site-nav a:hover {
    color: var(--pine);
}


/* Project dropdown */

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    text-decoration: none;
}

.nav-dropdown-trigger::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.65;
    margin-top: 2px;
}

.nav-dropdown-panel {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-dropdown-label {
    margin: 0 0 0.4rem;
    padding: 0 0.25rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.nav-dropdown-list {
    margin: 0 0 0.65rem;
    padding: 0;
    list-style: none;
}

.nav-dropdown-list a,
.nav-dropdown-solo {
    display: block;
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.nav-dropdown-list a:hover,
.nav-dropdown-solo:hover {
    background: var(--accent-soft);
    color: var(--pine);
}

.nav-dropdown-solo {
    display: block;
    margin-top: 0.35rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (min-width: 861px) {
    .nav-item.has-dropdown .nav-dropdown-panel {
        position: absolute;
        top: calc(100% + 0.65rem);
        left: 0;
        min-width: 240px;
        padding: 0.85rem 0.65rem;
        background: var(--surface);
        border-radius: 14px;
        box-shadow: 0 20px 50px rgba(15, 31, 28, 0.15), 0 0 1px rgba(0, 0, 0, 0.08);
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        pointer-events: none;
        transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
        z-index: 200;
    }
    .nav-item.has-dropdown:hover .nav-dropdown-panel,
    .nav-item.has-dropdown:focus-within .nav-dropdown-panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    .nav-item.has-dropdown.is-expanded .nav-dropdown-panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.btn-nav-cta {
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: var(--pine);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(46, 163, 242, 0.25);
}

.btn-nav-cta:hover {
    background: var(--pine-deep);
    color: #fff !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s var(--ease), opacity 0.25s;
}

@media (max-width: 860px) {
    .nav-toggle {
        display: flex;
    }
    .site-nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem 1.5rem 1.5rem;
        background: rgba(245, 248, 252, 0.97);
        backdrop-filter: blur(14px) saturate(1.15);
        box-shadow: var(--shadow-soft);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s var(--ease), opacity 0.35s;
    }
    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .site-nav>a,
    .site-nav>.nav-item {
        padding: 0.65rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .nav-item.has-dropdown {
        flex-direction: column;
        align-items: stretch;
    }
    .nav-dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 0.15rem 0;
        text-align: left;
    }
    .nav-dropdown-trigger::after {
        margin-left: auto;
    }
    .nav-item.has-dropdown .nav-dropdown-panel {
        display: none;
        padding: 0.5rem 0 0.75rem 0.85rem;
        margin-bottom: 0.25rem;
        border-left: 3px solid var(--accent);
    }
    .nav-item.has-dropdown.is-expanded .nav-dropdown-panel {
        display: block;
    }
    .nav-dropdown-solo {
        border-top: none;
        padding: 0.5rem 0.6rem;
        margin-top: 0;
    }
    .btn-nav-cta {
        text-align: center;
        margin-top: 0.5rem;
    }
}


/* Beranda: header di atas hero (teks terang) */

.page-home .site-header {
    background: transparent;
    transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s, border-color 0.35s;
}

.page-home .site-header:not(.is-scrolled) {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.18) 60%, transparent 100%);
}

.page-home .site-header:not(.is-scrolled) .logo-img {}

.page-home .site-header.is-scrolled {
    background: rgba(245, 248, 252, 0.92);
    border-bottom: 1px solid rgba(46, 163, 242, 0.06);
}

.page-home .site-header:not(.is-scrolled) .logo,
.page-home .site-header:not(.is-scrolled) .site-nav>a,
.page-home .site-header:not(.is-scrolled) .nav-dropdown-trigger {
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.page-home .site-header:not(.is-scrolled) .nav-toggle span {
    background: #fff;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.page-home .site-header:not(.is-scrolled) .btn-nav-cta {
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

.page-home .site-header:not(.is-scrolled) .btn-nav-cta:hover {
    background: #fff;
    color: var(--pine) !important;
    border-color: #fff;
}

.page-home .site-header.is-scrolled .logo,
.page-home .site-header.is-scrolled .site-nav>a,
.page-home .site-header.is-scrolled .nav-dropdown-trigger {
    color: var(--text);
    text-shadow: none;
}

.page-home .site-header.is-scrolled .nav-toggle span {
    background: var(--text);
    box-shadow: none;
}

.page-home .site-header.is-scrolled .btn-nav-cta {
    background: var(--pine);
    color: #fff !important;
    border: none;
    box-shadow: 0 6px 22px rgba(46, 163, 242, 0.28);
}

.page-home .site-header:not(.is-scrolled) .nav-item.has-dropdown .nav-dropdown-panel {
    background: var(--surface);
}

.page-home .site-header:not(.is-scrolled) .nav-dropdown-list a,
.page-home .site-header:not(.is-scrolled) .nav-dropdown-solo {
    color: var(--text);
    text-shadow: none;
}


/* Strip nilai proposisi (marketing) */

.trust-strip {
    position: relative;
    z-index: 2;
    margin-top: -2.5rem;
    padding: 0 0 2.5rem;
}

.trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft), 0 0 0 1px rgba(46, 163, 242, 0.06);
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.35rem 0;
}

.trust-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--accent-soft), rgba(46, 163, 242, 0.08));
    color: var(--pine);
    font-size: 0.95rem;
    line-height: 1;
}

.trust-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 0.15rem;
}

.trust-item span:last-child {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.4;
}

@media (max-width: 960px) {
    .trust-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .trust-strip {
        margin-top: -1.25rem;
        padding-bottom: 1.75rem;
    }
    .trust-strip-inner {
        grid-template-columns: 1fr;
        padding: 1rem 1.15rem;
    }
}

.section-keunggulan-kawasan--home {
    background: linear-gradient(180deg, var(--bg) 0%, rgba(235, 243, 252, 0.95) 45%, var(--bg) 100%) !important;
    padding-bottom: 4rem !important;
}

.pg-section-title--centered {
    width: min(1200px, 92vw);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


/* Hero / Slider */

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: var(--header-h);
}

.hero-slider {
    position: relative;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    overflow: hidden;
    border-radius: 0 0 clamp(20px, 4vw, var(--radius-lg)) clamp(20px, 4vw, var(--radius-lg));
    background: var(--bg-dark);
    box-shadow: 0 28px 80px rgba(12, 21, 36, 0.22);
}

.slides {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s var(--ease), transform 1.1s var(--ease);
    transform: scale(1.04);
}

.slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 115deg, rgba(12, 21, 36, 0.82) 0%, rgba(15, 45, 40, 0.38) 42%, rgba(20, 60, 52, 0.2) 72%, rgba(212, 175, 97, 0.08) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    z-index: 2;
    left: min(8vw, 4rem);
    bottom: min(12vh, 5rem);
    max-width: 560px;
    color: #fff;
}

.slide-eyebrow {
    font-family: var(--font-alt);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
    margin: 0 0 0.75rem;
}

.slide h1,
.slide h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.15rem, 5vw, 3.5rem);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin: 0 0 1rem;
    text-wrap: balance;
}

.slide-desc {
    font-size: 1.05rem;
    opacity: 0.92;
    margin: 0 0 1.5rem;
    max-width: 46ch;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-bright), var(--accent));
    color: var(--bg-dark);
    box-shadow: 0 12px 36px rgba(212, 175, 97, 0.42);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 44px rgba(212, 175, 97, 0.5);
}

.btn-block {
    width: 100%;
}

.slider-btn {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    backdrop-filter: blur(8px);
    transition: background 0.2s, transform 0.2s;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.22);
}

.slider-btn-prev {
    left: 1.25rem;
}

.slider-btn-next {
    right: 1.25rem;
}

.slider-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 1.75rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.slider-dot[aria-selected="true"] {
    background: var(--accent);
    transform: scale(1.15);
}

.slider-progress {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
}

.slider-progress-bar {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), #fff);
    transition: width linear;
}

@media (max-width: 640px) {
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    .slider-btn-prev {
        left: 0.75rem;
    }
    .slider-btn-next {
        right: 0.75rem;
    }
    .slide-content {
        left: 1.25rem;
        right: 1.25rem;
        bottom: 5rem;
        max-width: none;
    }
}


/* Sections */

.section {
    padding: clamp(4rem, 10vw, 6rem) 0;
}

.section-label {
    display: inline-block;
    font-family: var(--font-alt);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pine);
    margin-bottom: 0.85rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-soft), rgba(46, 163, 242, 0.08));
    border: 1px solid rgba(46, 163, 242, 0.1);
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-head h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    margin: 0 0 0.75rem;
    color: var(--pine-deep);
}

.section-head p {
    margin: 0;
    color: var(--muted);
}

.section-head--center .section-label {
    display: inline-block;
}


/* Home: proyek baru (Morizora + Montana) */

.section-new-projects {
    background: linear-gradient(180deg, #eef4fc 0%, var(--bg) 48%, var(--bg) 100%);
}

.section-new-projects .section-head {
    margin-bottom: 2.5rem;
}

.new-projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.new-project-tile {
    position: relative;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(46, 163, 242, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.new-project-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.new-project-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: linear-gradient(135deg, var(--accent-bright), var(--accent));
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.new-project-figure {
    display: block;
    line-height: 0;
    margin: 0;
}

.new-project-figure img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.new-project-caption {
    padding: 1.35rem 1.4rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.new-project-caption h3 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 500;
    margin: 0 0 0.65rem;
    color: var(--pine-deep);
    letter-spacing: 0.02em;
}

.new-project-caption>p {
    margin: 0 0 0.85rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted);
}

.new-project-highlights {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    font-size: 0.88rem;
    color: var(--text);
}

.new-project-highlights li {
    padding: 0.35rem 0 0.35rem 1.1rem;
    position: relative;
    line-height: 1.45;
}

.new-project-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

.new-project-caption .link-arrow {
    margin-top: auto;
}

@media (max-width: 860px) {
    .new-projects-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}


/* Home: masterplan */

.section-masterplan {
    background: linear-gradient(180deg, var(--bg) 0%, #e8f2fc 42%, var(--bg) 100%);
}

.masterplan-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(46, 163, 242, 0.1);
    background: var(--surface);
    line-height: 0;
}

.masterplan-wrap img {
    width: 100%;
    height: auto;
    display: block;
}


/* Home: CTA marketing gallery */

.section-home-gallery-cta {
    background: linear-gradient(180deg, #fdfcfa 0%, #f5f2ec 50%, var(--bg) 100%);
}

.home-gallery-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.home-gallery-cta-inner h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--pine-deep);
    margin: 0 0 0.85rem;
}

.home-gallery-cta-inner>p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--muted);
}

.home-gallery-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    align-items: center;
    margin-top: 1.75rem;
}

.home-gallery-cta-actions .btn {
    box-shadow: 0 10px 28px rgba(12, 21, 36, 0.12);
}


/* About */

.grid-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-copy h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.55rem, 2.6vw, 2.1rem);
    font-weight: 500;
    margin: 0 0 1rem;
    letter-spacing: 0.02em;
    color: var(--pine-deep);
}

.about-copy p {
    color: var(--muted);
    margin: 0 0 1.5rem;
}

.about-stats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-stats li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-stats strong {
    font-size: 1.75rem;
    color: var(--pine);
}

.about-stats span {
    font-size: 0.85rem;
    color: var(--muted);
}

.about-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.about-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(46, 163, 242, 0.06);
}

.about-card img {
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

.about-badge {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    background: var(--surface);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    max-width: 220px;
}

.about-badge span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.about-badge strong {
    display: block;
    font-size: 1.25rem;
    color: var(--pine);
    margin: 0.15rem 0;
}

.about-badge small {
    font-size: 0.7rem;
    color: var(--muted);
}

@media (max-width: 900px) {
    .grid-about {
        grid-template-columns: 1fr;
    }
}


/* Type cards */

.section-types {
    background: linear-gradient(180deg, var(--bg) 0%, #e3f0fa 100%);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.type-card {
    position: relative;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(46, 163, 242, 0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.35s;
}

.type-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pine), var(--accent));
    opacity: 0;
    transform: scaleX(0.6);
    transform-origin: left;
    transition: opacity 0.35s var(--ease), transform 0.45s var(--ease);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    z-index: 4;
    pointer-events: none;
}

.type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow), 0 0 0 1px rgba(212, 175, 97, 0.25);
    border-color: rgba(212, 175, 97, 0.35);
}

.type-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.type-card-media {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.type-card-media img {
    aspect-ratio: 16/11;
    object-fit: cover;
    width: 100%;
    transition: transform 0.6s var(--ease);
}

.type-card:hover .type-card-media img {
    transform: scale(1.05);
}

.type-card h3 {
    margin: 1.25rem 1.25rem 0.35rem;
    font-size: 1.25rem;
}

.type-meta {
    margin: 0 1.25rem 0.75rem;
    font-size: 0.88rem;
    color: var(--pine);
    font-weight: 600;
}

.type-card p:last-of-type {
    margin: 0 1.25rem 1rem;
    font-size: 0.95rem;
    color: var(--muted);
    flex: 1;
}

.link-arrow {
    margin: 0 1.25rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--pine);
}

.link-arrow::after {
    content: " →";
}

@media (max-width: 960px) {
    .cards {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-inline: auto;
    }
}


/* Facilities */

.section-facilities {
    position: relative;
    background: linear-gradient(165deg, var(--pine-deep) 0%, #0a2824 55%, var(--pine-deep) 100%);
    color: #e8f0ee;
    overflow: hidden;
}

.section-facilities::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(212, 175, 97, 0.12) 0%, transparent 45%), radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.section-facilities .container {
    position: relative;
    z-index: 1;
}

.section-facilities .section-label {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 97, 0.35);
}

.section-facilities .section-head h2 {
    color: #f2faf7;
}

.facility-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem 2rem;
}

.facility-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.facility-icon {
    color: var(--accent);
    font-size: 0.65rem;
    margin-top: 0.35rem;
}


/* Location */

.grid-location {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: start;
}

.location-copy h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    letter-spacing: -0.02em;
}

.location-copy p {
    color: var(--muted);
    margin: 0;
}

.location-copy .location-address {
    margin-top: 1.35rem;
    line-height: 1.65;
}

.location-map iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.map-note {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0.75rem 0 0;
}

@media (max-width: 900px) {
    .grid-location {
        grid-template-columns: 1fr;
    }
}


/* CTA */

.section-cta {
    padding-bottom: 5rem;
}

.cta-inner {
    position: relative;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: var(--shadow), var(--shadow-glow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    border: 1px solid rgba(46, 163, 242, 0.08);
}

.cta-inner::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(212, 175, 97, 0.55), rgba(46, 163, 242, 0.35), rgba(212, 175, 97, 0.25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.cta-copy h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    margin: 0 0 0.75rem;
    font-size: clamp(1.55rem, 2.6vw, 2.15rem);
    letter-spacing: 0.02em;
    color: var(--pine-deep);
}

.cta-copy p {
    margin: 0;
    color: var(--muted);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-form label span {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--muted);
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg);
}

.cta-form textarea {
    min-height: 6rem;
    resize: vertical;
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 1px;
    border-color: transparent;
}

.form-hint {
    min-height: 1.25rem;
    margin: 0;
    font-size: 0.9rem;
    color: var(--pine);
}

@media (max-width: 800px) {
    .cta-inner {
        grid-template-columns: 1fr;
    }
}


/* Reveal on scroll */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Footer */

.site-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 2.5rem 0 1.5rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    gap: 1rem;
    max-width: 420px;
}

.footer-brand .logo-mark,
.footer-brand .logo-img {
    flex-shrink: 0;
}

.footer-brand p {
    margin: 0.35rem 0 0;
    font-size: 0.9rem;
    opacity: 0.85;
}

.site-footer .footer-brand a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-footer .footer-brand a:hover {
    color: var(--accent-bright);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copy {
    text-align: center;
    font-size: 0.78rem;
    opacity: 0.55;
    margin: 2rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* ----- Facilities page (facilities.html) ----- */

.page-facilities main {
    padding-top: var(--header-h);
}

.fac-hero {
    position: relative;
    min-height: 78vh;
    min-height: 78dvh;
    display: flex;
    align-items: flex-end;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    background: var(--bg-dark);
}

.fac-hero-bg {
    position: absolute;
    inset: 0;
}

.fac-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fac-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 165deg, rgba(15, 31, 28, 0.92) 0%, rgba(15, 31, 28, 0.55) 55%, rgba(15, 31, 28, 0.35) 100%);
}

.fac-hero-inner {
    position: relative;
    z-index: 1;
    padding: clamp(3rem, 8vw, 5rem) 0 clamp(2.5rem, 6vw, 4rem);
    color: #fff;
    max-width: 720px;
}

.fac-ref {
    font-size: 0.78rem;
    opacity: 0.75;
    margin: 0 0 1rem;
}

.fac-ref a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.fac-hero-title {
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin: 0 0 1.25rem;
}

.fac-hero-line {
    display: block;
    text-transform: uppercase;
    font-family: var(--font-alt);
}

.fac-hero-accent {
    color: var(--accent);
}

.fac-hero-lead {
    font-size: 1.08rem;
    line-height: 1.65;
    opacity: 0.92;
    margin: 0 0 1.75rem;
    max-width: 58ch;
}

.fac-section {
    background: var(--bg);
}

.fac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.fac-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.fac-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.fac-card-media img {
    aspect-ratio: 16/10;
    object-fit: cover;
    width: 100%;
}

.fac-card h3 {
    margin: 1.1rem 1.25rem 0.4rem;
    font-size: 1.15rem;
}

.fac-card p {
    margin: 0 1.25rem 1.25rem;
    font-size: 0.95rem;
    color: var(--muted);
}

@media (max-width: 960px) {
    .fac-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .fac-grid {
        grid-template-columns: 1fr;
    }
}

.fac-surround {
    background: linear-gradient(180deg, #e3f0fa 0%, var(--bg) 100%);
}

.surround-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 2rem;
    align-items: start;
}

.surround-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.surround-list li {
    padding: 1rem 1.15rem;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    font-size: 0.98rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.surround-list strong {
    color: var(--pine);
}

.surround-map iframe {
    width: 100%;
    min-height: 340px;
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

@media (max-width: 900px) {
    .surround-grid {
        grid-template-columns: 1fr;
    }
}

.fac-cta-banner {
    padding-bottom: 4.5rem;
}

.fac-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: var(--pine-deep);
    color: #e8f0ee;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.fac-cta-inner h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    letter-spacing: -0.02em;
}

.fac-cta-inner p {
    margin: 0;
    opacity: 0.88;
    max-width: 48ch;
}

.fac-cta-inner .btn-primary {
    flex-shrink: 0;
}


/* ----- Promo page (promo.html) ----- */

.page-promotions {
    position: relative;
    min-height: 100vh;
}

.promo-page-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: var(--bg);
}

.promo-page-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=2000&q=70");
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    filter: saturate(0.8);
}

.promo-page-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(245, 248, 252, 0.92) 0%, rgba(245, 248, 252, 0.82) 40%, rgba(245, 248, 252, 0.94) 100%);
}

.page-promotions .site-header {
    background: rgba(245, 248, 252, 0.78);
    backdrop-filter: blur(12px) saturate(1.15);
}

.page-promotions main {
    padding-top: var(--header-h);
}

.promo-hero {
    padding: clamp(2.5rem, 6vw, 4rem) 0 1rem;
}

.promo-hero-inner {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
}

.promo-hero-eyebrow {
    font-family: var(--font-alt);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pine);
    margin: 0 0 0.75rem;
}

.promo-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.12;
    margin: 0 0 1rem;
    color: var(--pine-deep);
}

.promo-hero-lead {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.65;
}

.promo-list-section {
    padding-top: 1.5rem;
    padding-bottom: clamp(4rem, 10vw, 5.5rem);
}

.promo-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.promo-card {
    display: grid;
    grid-template-columns: minmax(260px, 38%) 1fr;
    gap: 0;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(15, 31, 28, 0.12), 0 2px 8px rgba(15, 31, 28, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.65);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 72px rgba(15, 31, 28, 0.16), 0 4px 12px rgba(15, 31, 28, 0.08);
}

.promo-card-media {
    position: relative;
    min-height: 280px;
}

.promo-card-media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.promo-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.promo-badge-gold {
    background: linear-gradient(135deg, var(--accent-bright), var(--accent));
    color: var(--bg-dark);
}

.promo-badge-accent {
    background: var(--pine);
    color: #fff;
}

.promo-badge-dark {
    background: var(--bg-dark);
    color: #fff;
}

.promo-badge-outline {
    top: auto;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.92);
    color: var(--pine);
    border: 1px solid rgba(46, 163, 242, 0.2);
    backdrop-filter: blur(6px);
}

.promo-card-media .promo-badge-outline:nth-of-type(2) {
    left: auto;
    right: 1rem;
    bottom: 1rem;
}

.promo-card-body {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    display: flex;
    flex-direction: column;
}

.promo-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.promo-card-meta time {
    font-size: 0.82rem;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
}

.promo-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    background: var(--accent-soft);
    color: var(--pine-deep);
}

.promo-card-title {
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0 0 1rem;
    color: var(--text);
}

.promo-card-desc {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

.promo-card-desc-tight {
    margin-bottom: 1.25rem;
}

.promo-highlight {
    margin: 0 0 1rem;
    padding: 1rem 1.15rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(46, 163, 242, 0.08), rgba(200, 165, 106, 0.12));
    border-left: 4px solid var(--pine);
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--text);
}

.promo-lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
    margin-bottom: 1.25rem;
}

.promo-list-block {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.promo-list-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pine);
    margin: 0 0 0.65rem;
}

.promo-list-block ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.promo-list-block li+li {
    margin-top: 0.35rem;
}

.promo-card-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.35rem;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.92rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
    color: #fff;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    color: var(--text);
    border: 2px solid rgba(26, 38, 36, 0.15);
    background: transparent;
    transition: border-color 0.2s, background 0.2s;
}

.btn-outline-dark:hover {
    border-color: var(--pine);
    background: rgba(46, 163, 242, 0.06);
    color: var(--pine);
}

.promo-card-footnote {
    margin: 0.85rem 0 0;
    font-size: 0.82rem;
    color: var(--muted);
}

@media (max-width: 860px) {
    .promo-card {
        grid-template-columns: 1fr;
    }
    .promo-card-media {
        min-height: 220px;
    }
    .promo-card-media img {
        min-height: 220px;
        max-height: 280px;
    }
    .promo-lists {
        grid-template-columns: 1fr;
    }
    .promo-card-media .promo-badge-outline:nth-of-type(2) {
        left: 1rem;
        right: auto;
        top: 3.25rem;
        bottom: auto;
    }
}


/* ----- Project detail page (e.g. Pine Garden) ----- */

.project-page .site-header {
    background: transparent;
    transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s;
}

.project-page .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
}

.project-page .site-header:not(.is-scrolled) .logo,
.project-page .site-header:not(.is-scrolled) .site-nav>a,
.project-page .site-header:not(.is-scrolled) .nav-dropdown-trigger {}

.project-page .site-header:not(.is-scrolled) .logo-mark {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
}

.project-page .site-header:not(.is-scrolled) .nav-toggle span {
    background: #fff;
}

.project-page .site-header:not(.is-scrolled) .btn-nav-cta {
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: none;
}

.project-page .site-header:not(.is-scrolled) .btn-nav-cta:hover {
    background: #fff;
    color: var(--pine) !important;
}

.project-page .site-header.is-scrolled .logo,
.project-page .site-header.is-scrolled .site-nav>a,
.project-page .site-header.is-scrolled .nav-dropdown-trigger {
    color: var(--text);
}

.project-page .site-header.is-scrolled .nav-toggle span {
    background: var(--text);
}

.project-page .site-header.is-scrolled .btn-nav-cta {
    background: var(--pine);
    color: #fff !important;
    border: none;
}


/* Dropdown on project hero: light panel unchanged */

.project-page .site-header:not(.is-scrolled) .nav-item.has-dropdown .nav-dropdown-panel {
    background: var(--surface);
}

.project-page .site-header:not(.is-scrolled) .nav-dropdown-list a,
.project-page .site-header:not(.is-scrolled) .nav-dropdown-solo {
    color: var(--text);
}

.pg-hero {
    position: relative;
    min-height: 92vh;
    min-height: 92dvh;
    display: flex;
    align-items: flex-end;
    margin-top: calc(-1 * var(--header-h));
    padding-top: var(--header-h);
}

.pg-hero-bg {
    position: absolute;
    inset: 0;
}

.pg-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pg-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(15, 31, 28, 0.75) 0%, rgba(15, 31, 28, 0.35) 55%, rgba(15, 31, 28, 0.25) 100%);
}

.pg-hero-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 35%;
    background: linear-gradient(to top, var(--bg) 0%, rgba(245, 248, 252, 0) 100%);
    pointer-events: none;
}

.pg-hero-inner {
    position: relative;
    z-index: 1;
    width: min(1200px, 92vw);
    margin: 0 auto;
    padding: clamp(4rem, 12vh, 7rem) 0 clamp(3rem, 8vh, 5rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
    align-items: end;
}

.pg-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 7vw, 4.25rem);
    font-weight: 500;
    line-height: 1.05;
    color: #fff;
    margin: 0 0 1.25rem;
    letter-spacing: 0.02em;
}

.pg-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-video {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--bg-dark);
    background: rgba(255, 255, 255, 0.92);
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s var(--ease);
}

.btn-video:hover {
    transform: translateY(-2px);
    color: var(--bg-dark);
}

.pg-hero-desc {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    max-width: 42ch;
    justify-self: end;
}

@media (max-width: 800px) {
    .pg-hero-inner {
        grid-template-columns: 1fr;
    }
    .pg-hero-desc {
        justify-self: start;
        max-width: none;
    }
}

.pg-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
}

.pg-section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 500;
    color: var(--text);
    margin: 0 0 1.75rem;
    letter-spacing: 0.04em;
}


/* Unit showcase */

.unit-showcase {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.unit-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem;
    margin-bottom: 1.85rem;
    max-width: 100%;
    background: linear-gradient(145deg, rgba(46, 163, 242, 0.07), rgba(212, 175, 97, 0.1));
    border-radius: 999px;
    border: 1px solid rgba(46, 163, 242, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 8px 28px rgba(12, 21, 36, 0.06);
}

.unit-tab {
    padding: 0.62rem 1.4rem;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    border: none;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.25s var(--ease), background 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.3s var(--ease);
}

.unit-tab:hover {
    color: var(--pine);
    background: rgba(255, 255, 255, 0.55);
}

.unit-tab:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.unit-tab.is-active {
    color: var(--pine-deep);
    background: var(--surface);
    box-shadow: 0 4px 18px rgba(46, 163, 242, 0.14), 0 0 0 1px rgba(212, 175, 97, 0.45), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transform: translateY(-1px);
}

.unit-tabs--many {
    border-radius: var(--radius-lg);
    gap: 0.25rem;
    padding: 0.35rem;
}

.unit-tabs--many .unit-tab {
    padding: 0.5rem 0.85rem;
    font-size: 0.76rem;
}

@media (max-width: 520px) {
    .unit-tabs:not(.unit-tabs--many) {
        border-radius: var(--radius-lg);
        justify-content: center;
    }
    .unit-tab {
        padding: 0.55rem 1.1rem;
        font-size: 0.82rem;
    }
}

.unit-display {
    display: grid;
    grid-template-columns: 92px 1fr minmax(260px, 340px);
    gap: 0;
    align-items: stretch;
    background: var(--surface);
    padding: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(12, 21, 36, 0.11), 0 0 0 1px rgba(46, 163, 242, 0.07);
    position: relative;
}

.unit-display::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(212, 175, 97, 0.45), rgba(46, 163, 242, 0.2), rgba(212, 175, 97, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
}

.unit-thumbs {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1.1rem 0.9rem;
    background: linear-gradient(180deg, #f2f7f4 0%, #e8f0ec 100%);
    border-right: 1px solid rgba(46, 163, 242, 0.08);
    z-index: 1;
}

.unit-thumb {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: var(--surface);
    box-shadow: 0 2px 8px rgba(12, 21, 36, 0.06);
    opacity: 0.88;
    transition: opacity 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.unit-thumb:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(46, 163, 242, 0.12);
}

.unit-thumb.is-active {
    opacity: 1;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(212, 175, 97, 0.35), 0 8px 20px rgba(46, 163, 242, 0.15);
    transform: scale(1.02);
}

.unit-thumb img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    display: block;
}

.unit-main {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 300px;
    margin: 1rem;
    background: linear-gradient(145deg, #e5ebe6, #dcd8cf);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.unit-main::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(180deg, transparent 40%, rgba(12, 21, 36, 0.12) 100%);
    z-index: 1;
}

.unit-main img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
    transition: transform 0.75s var(--ease);
}

.unit-main:hover img {
    transform: scale(1.04);
}

.unit-sold-out {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    padding: 0.45rem 1.25rem;
    background: #c41e1e;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    transform: rotate(-12deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.unit-sold-out[hidden] {
    display: none;
}

.unit-aside {
    padding: 1.35rem 1.25rem 1.5rem;
    background: linear-gradient(180deg, #fafbfd 0%, rgba(245, 248, 252, 0.85) 100%);
    border-left: 1px solid rgba(46, 163, 242, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.unit-aside-title {
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 3vw, 2rem);
    font-weight: 500;
    margin: 0 0 1rem;
    color: var(--pine-deep);
    letter-spacing: 0.02em;
    line-height: 1.15;
}

.unit-specs {
    margin: 0 0 1.35rem;
    padding: 1rem 1.05rem;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.6;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid rgba(46, 163, 242, 0.09);
    box-shadow: 0 4px 16px rgba(12, 21, 36, 0.05);
}

.unit-specs strong {
    color: var(--pine);
    font-weight: 700;
}

.unit-features {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.unit-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text);
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    background: rgba(46, 163, 242, 0.04);
    border: 1px solid rgba(46, 163, 242, 0.06);
    transition: background 0.2s var(--ease), border-color 0.2s;
}

.unit-features li:hover {
    background: rgba(212, 175, 97, 0.1);
    border-color: rgba(212, 175, 97, 0.25);
}

.unit-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--accent-soft), rgba(46, 163, 242, 0.1));
    color: var(--pine);
    display: grid;
    place-items: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(46, 163, 242, 0.08);
}

@media (max-width: 900px) {
    .unit-display {
        grid-template-columns: 1fr;
    }
    .unit-display::before {
        display: none;
    }
    .unit-thumbs {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 0.6rem;
        padding: 0.85rem 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(46, 163, 242, 0.08);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    .unit-thumbs::-webkit-scrollbar {
        height: 6px;
    }
    .unit-thumbs::-webkit-scrollbar-thumb {
        background: rgba(46, 163, 242, 0.2);
        border-radius: 999px;
    }
    .unit-main {
        margin: 0 1rem 1rem;
    }
    .unit-aside {
        border-left: none;
        border-top: 1px solid rgba(46, 163, 242, 0.08);
        padding: 1.25rem 1.1rem 1.5rem;
    }
    .unit-main img {
        min-height: 240px;
    }
}


/* Project amenity cards */

.pg-amenities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.pg-amenity-card {
    background: var(--surface);
    border: 1px solid rgba(200, 165, 106, 0.45);
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.25rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.pg-amenity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.pg-amenity-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(200, 165, 106, 0.25), rgba(200, 165, 106, 0.08));
    color: #8a6d3a;
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
}

.pg-amenity-card h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: #6b542c;
    margin: 0 0 0.5rem;
}

.pg-amenity-card p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.55;
}

.pg-amenity-source {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pine);
    margin: -0.15rem 0 0.5rem;
}

.pg-amenities-intro {
    text-align: center;
    max-width: 34rem;
    margin: -0.5rem auto 1.75rem;
    padding: 0 1rem;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

.section-keunggulan-kawasan--home .pg-section-title {
    margin-bottom: 0.5rem;
}

.pg-amenities--home-eight {
    margin-top: 0;
}

@media (max-width: 960px) {
    .pg-amenities {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .pg-amenities {
        grid-template-columns: 1fr;
    }
}


/* Floating WhatsApp */

.wa-fab {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 150;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform 0.25s var(--ease);
}

.wa-fab:hover {
    transform: scale(1.06);
    color: #fff;
}

.wa-fab svg {
    width: 28px;
    height: 28px;
}


/* Mobile fixed bottom bar */

.mobile-bottom-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 200;
        background: var(--surface);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
        border-top: 1px solid rgba(46, 163, 242, 0.08);
        padding: 0;
    }
    .mobile-bottom-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.85rem 0.75rem;
        font-family: inherit;
        font-size: 0.9rem;
        font-weight: 700;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: background 0.2s;
    }
    .mobile-bottom-btn--wa {
        background: linear-gradient(135deg, #25d366, #128c7e);
        color: #fff;
    }
    .mobile-bottom-btn--wa:hover {
        background: #128c7e;
        color: #fff;
    }
    .mobile-bottom-btn--tel {
        background: var(--pine);
        color: #fff;
    }
    .mobile-bottom-btn--tel:hover {
        background: var(--pine-deep);
        color: #fff;
    }
    .wa-fab {
        bottom: 4.5rem;
        display: none;
    }
    body {
        padding-bottom: 3.5rem;
    }
}


/* Stub project pages */

.page-stub .stub-main {
    padding-top: calc(var(--header-h) + 2.5rem);
    padding-bottom: 2rem;
    max-width: 720px;
}

.page-stub .stub-title {
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    font-weight: 500;
    margin: 0 0 1rem;
    color: var(--text);
}

.page-stub .stub-lead {
    margin: 0 0 1.5rem;
    color: var(--muted);
    line-height: 1.65;
}


/* Contact page */

.page-contact .contact-main {
    padding-top: var(--header-h);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}

.contact-title {
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
}

.contact-lead {
    margin: 0 0 1.5rem;
    color: var(--muted);
    line-height: 1.65;
}

.contact-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-list li {
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-list strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pine);
    margin-bottom: 0.25rem;
}

.contact-list a {
    font-weight: 600;
}

.contact-wa-btn {
    margin-top: 0.25rem;
}

.contact-form-wrap {
    background: var(--surface);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 1.25rem;
}

@media (max-width: 800px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* Commercial & Business district pages */

.page-commercial .commercial-main {
    padding-top: 0;
}

.comm-hero {
    position: relative;
    line-height: 0;
}

.comm-hero img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.comm-hero-caption {
    padding: 2rem 0 0.5rem;
}

.comm-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 500;
    margin: 0 0 0.75rem;
    color: var(--text);
}

.comm-hero-caption p {
    margin: 0;
    max-width: 62ch;
    color: var(--muted);
    line-height: 1.6;
}

.comm-product-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.comm-product-card {
    display: grid;
    grid-template-columns: minmax(200px, 38%) 1fr;
    gap: 1.5rem;
    align-items: start;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.comm-product-media img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
}

.comm-product-body {
    padding: 1.25rem 1.25rem 1.25rem 0;
}

.comm-product-body h2 {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    color: var(--pine);
}

.comm-product-sub {
    margin: 0 0 0.75rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.comm-product-body ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.comm-product-body li+li {
    margin-top: 0.5rem;
}

.comm-business-lead {
    max-width: 62ch;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.comm-business-inner {
    max-width: 960px;
    margin: 0 auto;
}

.comm-business-note {
    margin-top: 1.25rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.comm-business-note a {
    font-weight: 600;
}

.bd-page-hero {
    padding: calc(var(--header-h) + 3rem) 0 3rem;
    background: linear-gradient(165deg, rgba(46, 163, 242, 0.11) 0%, var(--bg) 50%, rgba(212, 175, 97, 0.09) 100%);
}

.bd-page-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 500;
    margin: 0 0 1rem;
    color: var(--pine-deep);
    letter-spacing: 0.02em;
}

.bd-page-hero-lead {
    margin: 0 0 1.75rem;
    max-width: 58ch;
    font-size: 1.08rem;
    line-height: 1.65;
    color: var(--muted);
}

.bd-page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.comm-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.35rem;
}


/* Commercial District — selling points (card grid) */

.comm-selling-section {
    padding-top: clamp(2rem, 5vw, 3rem);
    background: linear-gradient(180deg, var(--bg) 0%, rgba(250, 248, 244, 0.9) 50%, var(--bg) 100%);
}

.comm-selling-section .section-head {
    max-width: 640px;
    margin-bottom: 2.25rem;
}

.comm-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.comm-feature-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
    .comm-feature-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .comm-feature-grid--4 {
        grid-template-columns: 1fr;
    }
}

.comm-feature-card {
    background: #fff;
    border: 1px solid rgba(42, 38, 32, 0.1);
    border-radius: 12px;
    padding: 1.5rem 1.35rem 1.6rem;
    text-align: left;
    box-shadow: 0 4px 20px rgba(15, 31, 28, 0.04);
    transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.comm-feature-card:hover {
    border-color: rgba(200, 165, 106, 0.45);
    box-shadow: 0 12px 36px rgba(15, 31, 28, 0.08);
    transform: translateY(-3px);
}

.comm-feature-icon {
    color: #b8954a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.comm-feature-icon svg {
    display: block;
}

.comm-feature-title {
    font-family: var(--font-serif);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a67c32;
    margin: 0 0 0.75rem;
    line-height: 1.35;
}

.comm-feature-desc {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.65;
    color: #4a524e;
    font-weight: 400;
}

@media (max-width: 1100px) {
    .comm-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .comm-feature-grid {
        grid-template-columns: 1fr;
    }
    .comm-feature-card {
        padding: 1.25rem 1.15rem;
    }
}


/* Morizora / Northern Pine — kartu keunggulan dengan border emas halus */

.mz-amenity-section .comm-feature-card,
.np-amenity-section .comm-feature-card {
    border: 1px solid rgba(181, 149, 74, 0.48);
    box-shadow: 0 4px 22px rgba(166, 124, 50, 0.07);
}

.mz-amenity-section .comm-feature-card:hover,
.np-amenity-section .comm-feature-card:hover {
    border-color: rgba(166, 124, 50, 0.65);
    box-shadow: 0 14px 40px rgba(166, 124, 50, 0.12);
}

.comm-masterplan-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--surface);
}

.comm-masterplan-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 700px) {
    .comm-product-card {
        grid-template-columns: 1fr;
    }
    .comm-product-body {
        padding: 0 1.25rem 1.25rem;
    }
    .comm-product-media img {
        min-height: 180px;
        max-height: 240px;
    }
}


/* —— OCBD Facilities page (hero + mosaic + surrounding) —— */

.page-facilities-ocbd .site-header {
    background: transparent;
    transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.page-facilities-ocbd .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.page-facilities-ocbd .site-header:not(.is-scrolled) .logo,
.page-facilities-ocbd .site-header:not(.is-scrolled) .site-nav>a,
.page-facilities-ocbd .site-header:not(.is-scrolled) .nav-dropdown-trigger {}

.page-facilities-ocbd .site-header:not(.is-scrolled) .nav-toggle span {
    background: #fff;
}

.page-facilities-ocbd .site-header:not(.is-scrolled) .btn-nav-cta {
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.page-facilities-ocbd .site-header.is-scrolled .logo,
.page-facilities-ocbd .site-header.is-scrolled .site-nav>a,
.page-facilities-ocbd .site-header.is-scrolled .nav-dropdown-trigger {
    color: var(--pine);
}

.page-facilities-ocbd .site-header.is-scrolled .nav-toggle span {
    background: var(--pine);
}

.page-facilities-ocbd .site-header.is-scrolled .btn-nav-cta {
    background: var(--accent);
    color: #fff !important;
    border-color: transparent;
}

.fac-ocbd-hero {
    position: relative;
    min-height: min(92vh, 900px);
    display: flex;
    align-items: flex-end;
    padding: clamp(6rem, 12vw, 8rem) 0 clamp(3rem, 8vw, 5rem);
    color: #fff;
}

.fac-ocbd-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fac-ocbd-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fac-ocbd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 105deg, rgba(10, 18, 32, 0.55) 0%, rgba(10, 18, 32, 0.35) 45%, rgba(10, 18, 32, 0.2) 100%);
}

.fac-ocbd-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: end;
}

.fac-ocbd-hero-title {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 600;
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    line-height: 1.05;
    letter-spacing: 0.02em;
    text-transform: capitalize;
}

.fac-ocbd-hero-title-line2 {
    display: block;
}

.fac-ocbd-hero-lead {
    margin: 0;
    font-size: clamp(0.95rem, 1.35vw, 1.05rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    max-width: 42ch;
    justify-self: end;
}

.fac-ocbd-mosaic-section {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
    background: #faf9f7;
}

.fac-ocbd-section-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 600;
    color: #1a1f2a;
    margin: 0 0 2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fac-ocbd-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.fac-ocbd-tile {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 260px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.fac-ocbd-tile--wide {
    grid-column: 1 / -1;
    min-height: 320px;
}

.fac-ocbd-tile-media {
    position: absolute;
    inset: 0;
}

.fac-ocbd-tile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease);
}

.fac-ocbd-tile:hover .fac-ocbd-tile-media img {
    transform: scale(1.04);
}

.fac-ocbd-tile-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.5rem 1.5rem 1.35rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
    color: #fff;
}

.fac-ocbd-tile-caption h3 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.fac-ocbd-tile-caption p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
}

.fac-ocbd-surround {
    position: relative;
    padding: clamp(3.5rem, 8vw, 5rem) 0;
    background-color: #eef1f4;
    background-image: var(--surround-bg);
    background-size: cover;
    background-position: center;
}

.fac-ocbd-surround::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(250, 249, 247, 0.88);
    pointer-events: none;
}

.fac-ocbd-surround .container {
    position: relative;
    z-index: 1;
}

.fac-ocbd-section-title--onbg {
    text-align: center;
    margin-bottom: 2.5rem;
}

.fac-ocbd-surround-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 2rem;
}

.fac-ocbd-surround-col {
    text-align: center;
}

.fac-ocbd-surround-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.fac-ocbd-surround-col h3 {
    margin: 0 0 0.85rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1a1f2a;
}

.fac-ocbd-surround-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #3d4555;
}

.fac-ocbd-surround-col li+li {
    margin-top: 0.35rem;
}

.fac-ocbd-cta {
    padding: 3rem 0 4rem;
    background: #fff;
}

.fac-ocbd-cta-inner {
    text-align: center;
    color: var(--muted);
}

.fac-ocbd-cta-inner p {
    margin: 0 0 1rem;
}

.site-footer--ocbd-fac {
    background: #152238;
    color: rgba(255, 255, 255, 0.88);
    padding: 2.75rem 0 1.75rem;
}

.fac-ocbd-footer-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.fac-ocbd-footer-brand .logo-img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}

.fac-ocbd-social {
    display: flex;
    gap: 0.65rem;
    margin-top: 1rem;
}

.fac-ocbd-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.fac-ocbd-social a:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

.fac-ocbd-footer-block strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.65rem;
    color: rgba(255, 255, 255, 0.95);
}

.fac-ocbd-footer-block p {
    margin: 0 0 0.35rem;
    font-size: 0.9rem;
    line-height: 1.55;
}

.fac-ocbd-footer-block a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-footer--ocbd-fac .footer-copy {
    text-align: center;
    margin: 1.5rem 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

.site-footer--ocbd-fac .footer-links a {
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 900px) {
    .fac-ocbd-hero-inner {
        grid-template-columns: 1fr;
    }
    .fac-ocbd-hero-lead {
        justify-self: start;
        max-width: none;
    }
    .fac-ocbd-mosaic {
        grid-template-columns: 1fr;
    }
    .fac-ocbd-tile--wide {
        grid-column: 1;
    }
    .fac-ocbd-surround-grid {
        grid-template-columns: 1fr 1fr;
    }
    .fac-ocbd-footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .fac-ocbd-social {
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .fac-ocbd-surround-grid {
        grid-template-columns: 1fr;
    }
}


/* ----- Penjualan properti: benefit grid + CTA band (semua halaman proyek) ----- */

.section-sales-benefits {
    padding: clamp(3rem, 8vw, 4.5rem) 0;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(227, 235, 230, 0.65) 50%, var(--bg) 100%);
}

.sales-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.sales-benefit-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.35rem;
    border: 1px solid rgba(46, 163, 242, 0.08);
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.sales-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.sales-benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    background: linear-gradient(145deg, var(--accent-soft), rgba(46, 163, 242, 0.1));
    color: var(--pine);
}

.sales-benefit-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--pine-deep);
}

.sales-benefit-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--muted);
}

@media (max-width: 900px) {
    .sales-benefits-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
    }
}

.sales-cta-band {
    padding: clamp(2.5rem, 6vw, 3.5rem) 0;
    background: linear-gradient(125deg, var(--pine-deep) 0%, #0a2824 45%, var(--pine) 100%);
    color: rgba(255, 255, 255, 0.94);
    position: relative;
    overflow: hidden;
}

.sales-cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 20%, rgba(212, 175, 97, 0.18) 0%, transparent 42%);
    pointer-events: none;
}

.sales-cta-band-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.sales-cta-band-inner h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 500;
    margin: 0 0 0.5rem;
    letter-spacing: 0.02em;
    color: #fff;
}

.sales-cta-band-inner>div:first-child p {
    margin: 0;
    max-width: 46ch;
    font-size: 0.98rem;
    line-height: 1.6;
    opacity: 0.9;
}

.sales-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.sales-cta-band .btn-primary {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.35rem;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--pine-deep);
    border-color: #fff;
}

.pg-hero-actions {
    gap: 0.65rem;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.55);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--pine-deep);
    border-color: #fff;
}


/* Hero komersial — teks di atas gambar */

.comm-hero--immersive {
    position: relative;
    line-height: 0;
    margin-top: calc(-1 * var(--header-h));
    padding-top: var(--header-h);
}

.comm-hero-visual {
    position: relative;
    max-height: min(78vh, 640px);
    overflow: hidden;
}

.comm-hero-visual img {
    width: 100%;
    height: min(78vh, 640px);
    object-fit: cover;
}

.comm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 105deg, rgba(12, 21, 36, 0.88) 0%, rgba(15, 45, 40, 0.45) 50%, rgba(20, 60, 52, 0.35) 100%);
    pointer-events: none;
}

.comm-hero--immersive .comm-hero-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: clamp(2rem, 6vw, 4rem) 0;
    color: #fff;
    line-height: 1.6;
}

.comm-hero--immersive .comm-hero-title {
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.comm-hero--immersive .comm-hero-caption p {
    margin: 0 0 1.25rem;
    max-width: 52ch;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.02rem;
}

.section-label--on-dark {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.fac-ocbd-lead-id {
    margin: 1rem 0 0;
    max-width: 52ch;
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

.fac-ocbd-cta-inner h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.45rem, 2.5vw, 1.85rem);
    font-weight: 500;
    color: var(--pine-deep);
    margin: 0 0 0.5rem;
}

.fac-ocbd-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.25rem;
}

.footer-links--row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-top: 1.5rem;
}

.footer-links--row a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.92rem;
}

.footer-links--row a:hover {
    color: var(--accent-bright);
}


/* Halaman kontak — hero + peta */

.page-contact .contact-hero {
    padding: calc(var(--header-h) + 2.5rem) 0 2.5rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(46, 163, 242, 0.08) 0%, transparent 100%);
}

.page-contact .contact-hero .section-label {
    margin-bottom: 0.75rem;
}

.contact-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    margin: 0 0 0.75rem;
    color: var(--pine-deep);
    letter-spacing: 0.02em;
}

.contact-hero-lead {
    margin: 0 auto;
    max-width: 540px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.contact-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    margin-top: 1.75rem;
}

.contact-trust-pill {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid rgba(46, 163, 242, 0.1);
    color: var(--pine);
    box-shadow: var(--shadow-soft);
}

.contact-map-section {
    padding: 0 0 clamp(3rem, 8vw, 4rem);
}

.contact-map-section .location-map iframe {
    width: 100%;
    min-height: 280px;
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.contact-title {
    font-family: var(--font-serif);
    font-weight: 500;
}


/* Promo — chip kepercayaan */

.promo-trust-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
}

.promo-trust-chip {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid rgba(46, 163, 242, 0.1);
    color: var(--pine-deep);
    box-shadow: var(--shadow-soft);
}

.promo-closing-cta {
    padding: clamp(3rem, 8vw, 4rem) 0;
}

.promo-closing-inner {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(46, 163, 242, 0.08);
    box-shadow: var(--shadow-soft);
}

.promo-closing-inner h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.45rem, 2.5vw, 1.9rem);
    font-weight: 500;
    margin: 0 0 0.65rem;
    color: var(--pine-deep);
}

.promo-closing-inner p {
    margin: 0 0 1.25rem;
    color: var(--muted);
    line-height: 1.65;
}

.promo-closing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}