:root {
    --primary: #00a651;
    --primary-dark: #008c44;
    --primary-light: rgba(0,166,81,.08);
    --accent: #333333;
    --accent-light: #555555;
    --bg: #ffffff;
    --card: #ffffff;
    --text: #333333;
    --text-light: #6b7280;
    --border: #e5e7eb;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,.08);
    --shadow-lg: 0 16px 40px rgba(0,0,0,.12);
    --max: 1200px;
    --font: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    --header-h: 70px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; width: 100%; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; width: 100%; max-width: 100vw; }
a { text-decoration: none; color: inherit; transition: .2s; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 4px; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; width: 100%; }

/* === SHARED HEADER === */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--header-bg, #fff); border-bottom: 1px solid var(--header-border, var(--border)); color: var(--header-text, var(--text)); --primary: #00a651; --primary-dark: #008c44; --primary-light: rgba(0,166,81,.08); --text: #333333; --text-light: #6b7280; }
.header-top { display: flex; align-items: center; justify-content: space-between; height: var(--header-h, 70px); }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; color: var(--header-text, var(--text)); }
.brand img { height: 42px; width: auto; }
.brand-mark { width: 38px; height: 38px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 1rem; }
.header-nav { display: flex; align-items: center; gap: 2px; }
.header-nav a { padding: 10px 14px; color: var(--header-text, var(--text)); font-size: .88rem; font-weight: 500; border-radius: 8px; white-space: nowrap; transition: .2s; min-height: 44px; display: inline-flex; align-items: center; }
.header-nav a:hover, .header-nav a.active { color: var(--primary); background: var(--primary-light); }
.header-contact { display: flex; align-items: center; gap: 16px; font-size: .85rem; }
.header-contact a { color: var(--header-text, var(--text-light)); opacity: .8; }
.header-contact a:hover { color: var(--primary); }
.header-phone { font-weight: 600; font-size: .92rem; color: var(--primary); display: flex; align-items: center; gap: 6px; }
.header-phone svg { flex-shrink: 0; }

/* === SHARED DROPDOWN === */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a svg { transition: .2s; }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 260px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius, 8px); box-shadow: var(--shadow-lg, 0 16px 40px rgba(0,0,0,.12)); padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s; z-index: 200; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: 12px 20px; color: var(--text); font-size: .88rem; font-weight: 500; white-space: nowrap; min-height: 44px; }
.nav-dropdown-menu a:hover { background: var(--primary-light); color: var(--primary); }
.nav-dropdown-menu .dd-city { padding: 6px 20px 4px; font-size: .72rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .5px; }
.nav-dropdown-menu .dd-divider { height: 1px; background: var(--border); margin: 4px 0; }

/* === SHARED HAMBURGER === */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 12px; min-width: 44px; min-height: 44px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: .3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === SHARED HEADER RESPONSIVE === */
@media (max-width: 768px) {
    .hamburger { display: block; }
    .header-nav { display: none; }
    .header-contact { display: none; }
    .header-nav.mobile-open { display: flex; flex-direction: column; position: absolute; top: var(--header-h, 70px); left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 8px 24px; box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,.08)); z-index: 200; }
    .header-nav.mobile-open a { padding: 12px 14px; }
    .header-nav.mobile-open .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0; min-width: auto; display: none; }
    .header-nav.mobile-open .nav-dropdown-menu a { padding-left: 32px; font-size: .85rem; }
    .header-nav.mobile-open .nav-dropdown.open .nav-dropdown-menu { display: block; }
}

/* HERO */
.hero { position: relative; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; padding: 72px 0 56px; overflow: hidden; min-height: 420px; display: flex; align-items: center; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.5s ease; will-change: opacity, transform; }
.hero-slide.active { opacity: 1; }
@keyframes heroKenBurns { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }
.hero-slide.active { animation: heroKenBurns 8s ease-in-out forwards; }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 860px; margin: 0 auto; }
.hero-bubble { display: block; background: rgba(0,0,0,.72); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 16px; padding: 28px 36px; box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.hero-bubble h1, .hero-bubble p { text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.15; margin-bottom: 16px; font-weight: 700; letter-spacing: -.3px; }
.hero p { max-width: 700px; font-size: 1.05rem; color: #fff; }
.hero .breadcrumb { font-size: .88rem; color: rgba(255,255,255,.95); margin-bottom: 16px; }
.hero .breadcrumb a { color: rgba(255,255,255,.95); text-decoration: underline; text-underline-offset: 2px; }
.hero .breadcrumb a:hover { color: #fff; }

/* SEARCH BAR */
.search-bar { margin-top: 32px; background: #fff; border-radius: var(--radius-lg); padding: 20px 24px; box-shadow: var(--shadow-lg); }
.search-bar-label { font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.search-bar-form { display: flex; gap: 16px; align-items: end; flex-wrap: wrap; }
.search-field { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 150px; }
.search-field label { font-size: .78rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: .5px; }
.search-dropdown { position: relative; }
.search-dropdown-btn { display: flex; align-items: center; justify-content: space-between; gap: 8px; width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px; background: #fff; color: var(--text); font-family: var(--font); font-size: .9rem; cursor: pointer; text-align: left; min-height: 42px; }
.search-dropdown-btn:hover { border-color: var(--primary); }
.search-dropdown-btn svg { flex-shrink: 0; transition: transform .2s; }
.search-dropdown.open .search-dropdown-btn svg { transform: rotate(180deg); }
.search-dropdown-btn .sd-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search-dropdown-panel { display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: #fff; border: 1px solid var(--border); border-radius: 8px; box-shadow: var(--shadow-md); z-index: 50; max-height: 240px; overflow-y: auto; padding: 6px 0; }
.search-dropdown.open .search-dropdown-panel { display: block; }
.search-dropdown-item { display: flex; align-items: center; gap: 10px; padding: 8px 14px; cursor: pointer; font-size: .88rem; transition: background .1s; }
.search-dropdown-item:hover { background: var(--primary-light); }
.search-dropdown-item input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--primary); cursor: pointer; flex-shrink: 0; }
.search-btn { padding: 10px 28px; background: var(--primary); color: #fff; border: none; border-radius: 8px; font-family: var(--font); font-weight: 700; font-size: .92rem; cursor: pointer; white-space: nowrap; transition: .2s; align-self: flex-end; }
.search-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* STATS */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 32px; background: rgba(0,0,0,.72); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 16px; padding: 6px 0; box-shadow: 0 8px 32px rgba(0,0,0,.3); max-width: 860px; margin-left: auto; margin-right: auto; }
.stat-item { text-align: center; padding: 18px 14px; border-right: 1px solid rgba(255,255,255,.15); }
.stat-item:last-child { border-right: none; }
.stat-item b { display: block; font-size: 1.6rem; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.stat-item span { font-size: .82rem; color: rgba(255,255,255,.95); }

/* SECTIONS */
.section { padding: 64px 0; }
.section-alt { background: #f8f9fa; }
.section h2 { font-size: 1.75rem; margin-bottom: 8px; font-weight: 700; letter-spacing: -.3px; }
.section-intro { color: var(--text-light); margin-bottom: 28px; max-width: 680px; font-size: .95rem; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: 10px; border: 1px solid transparent; font-family: var(--font); font-weight: 600; font-size: .92rem; cursor: pointer; transition: .2s; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--border); color: var(--text); background: #fff; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-detail { border: 2px solid var(--primary); color: var(--primary); background: #fff; font-weight: 700; }
.btn-detail:hover { background: var(--primary); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-white { background: #fff; color: var(--primary); border: 1px solid #fff; font-weight: 700; }
.btn-white:hover { background: rgba(255,255,255,.9); color: var(--primary-dark); }
.btn-ghost { background: transparent; border: 1px solid rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* PROJECT CARDS */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: #f0f0f0; min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end; transition: .3s; cursor: pointer; }
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project-card-img { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.project-card:hover .project-card-img img { transform: scale(1.08); }
.project-card-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(0deg, rgba(0,0,0,.5) 0%, transparent 60%); transition: .4s; }
.project-card:hover .project-card-overlay { background: linear-gradient(0deg, rgba(0,0,0,.6) 0%, transparent 70%); }
.project-card-body { position: relative; z-index: 1; padding: 20px; }
.project-card-info { background: rgba(255,255,255,.95); border-radius: var(--radius); padding: 14px 16px; transition: .3s; backdrop-filter: blur(4px); }
.project-card:hover .project-card-info { box-shadow: var(--shadow-md); }
.project-card-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: .75rem; font-weight: 700; margin-bottom: 8px; }
.badge-active { background: var(--primary); color: #fff; }
.project-card h3 { font-size: 1.15rem; margin-bottom: 2px; font-weight: 700; color: var(--text); }
.project-card .card-meta { font-size: .82rem; color: var(--text-light); }
.project-card .card-desc { font-size: .85rem; color: var(--text-light); line-height: 1.5; margin-top: 6px; }
.project-card-nophoto { background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%); min-height: 260px; }

/* DISPOSITION GRID */
.disp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.disp-card { background: var(--primary); color: #fff; border: none; border-radius: var(--radius); padding: 24px 20px; text-align: center; transition: .2s; }
.disp-card:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.disp-card h3 { font-size: 1.2rem; margin-bottom: 4px; color: #fff; }
.disp-card p { color: rgba(255,255,255,.85); font-size: .85rem; }

/* DATA TABLE */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--border); background: #fff; }
.data-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.data-table thead { background: var(--primary); color: #fff; }
.data-table th { padding: 13px 16px; text-align: left; font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .5px; white-space: nowrap; }
.data-table th:nth-last-child(-n+2) { text-align: right; }
.data-table th:last-child { text-align: center; }
.data-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.data-table td:nth-last-child(-n+2) { text-align: right; }
.data-table td:last-child { text-align: center; }
.data-table tbody tr { transition: .15s; }
.data-table tbody tr:hover { background: var(--primary-light); }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table .unit-link { color: var(--primary); font-weight: 600; }
.data-table .unit-link:hover { text-decoration: underline; }

/* FILTER PILLS */
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.pill { padding: 10px 18px; border-radius: 24px; font-size: .85rem; font-weight: 600; border: 1px solid var(--border); background: #fff; color: var(--text); transition: .2s; min-height: 44px; display: inline-flex; align-items: center; }
.pill:hover { border-color: var(--primary); color: var(--primary); }
.pill.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* UNIT DETAIL */
.unit-hero { background: var(--primary); color: #fff; padding: 28px 0; }
.unit-hero .breadcrumb { color: rgba(255,255,255,.7); }
.unit-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.unit-hero .breadcrumb a:hover { color: #fff; }
.unit-title { font-size: 1.8rem; font-weight: 700; margin: 8px 0 4px; }
.unit-subtitle { font-size: 1rem; opacity: .7; }
.unit-params { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin-top: 32px; }
.unit-param { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; }
.unit-param-label { font-size: .78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.unit-param-value { font-size: 1.1rem; font-weight: 700; }
.unit-param-price { border-color: var(--primary); background: var(--primary-light); }
.unit-param-price .unit-param-value { color: var(--primary-dark); font-size: 1.25rem; }
.unit-cta { margin-top: 32px; padding: 28px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.unit-cta h3 { font-size: 1.15rem; margin-bottom: 4px; }
.unit-cta p { color: var(--text-light); font-size: .9rem; }
.related-units { margin-top: 40px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; margin-top: 16px; }
.related-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; display: flex; justify-content: space-between; align-items: center; transition: .2s; }
.related-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }

/* PANELS */
.panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.split { display: grid; grid-template-columns: 1.3fr .7fr; gap: 20px; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; border-radius: var(--radius-lg); padding: 40px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.cta-banner h2 { font-size: 1.5rem; margin-bottom: 6px; }
.cta-banner p { opacity: .8; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; background: var(--border); position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 12px; background: linear-gradient(0deg, rgba(0,0,0,.7), transparent); color: #fff; font-size: .78rem; font-weight: 500; }

/* FOOTER */
.site-footer { background: #005c2e; color: rgba(255,255,255,.95); padding: 56px 0 0; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-col h4, .footer-heading { color: #fff; font-size: .92rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .5px; }
.footer-col p { font-size: .88rem; line-height: 1.7; }
.footer-col a { color: rgba(255,255,255,.85); font-size: .88rem; display: block; padding: 8px 0; min-height: 44px; display: flex; align-items: center; }
.footer-col a:hover { color: #fff; }
.footer-col p a { display: inline; padding: 0; min-height: auto; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; color: #fff; font-weight: 700; font-size: 1.05rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .82rem; color: rgba(255,255,255,.85); }
.footer-bottom a { color: rgba(255,255,255,.85); }
.footer-bottom a:hover { color: #fff; }

/* UNIT MODAL */
.um-overlay { display:none; position:fixed; inset:0; z-index:10000; background:rgba(0,0,0,.55); backdrop-filter:blur(3px); -webkit-backdrop-filter:blur(3px); opacity:0; transition:opacity .25s ease; }
.um-overlay.active { opacity:1; }
.um-dialog { position:fixed; z-index:10001; background:#fff; overflow-y:auto; -webkit-overflow-scrolling:touch; transition:transform .3s cubic-bezier(.4,0,.2,1),opacity .25s ease; }
@media (min-width:769px) {
    .um-dialog { top:50%;left:50%;transform:translate(-50%,-50%) scale(.95);opacity:0;width:680px;max-width:92vw;max-height:88vh;border-radius:16px;box-shadow:0 20px 60px rgba(0,0,0,.25); }
    .um-overlay.active .um-dialog { transform:translate(-50%,-50%) scale(1);opacity:1; }
}
@media (max-width:768px) {
    .um-dialog { bottom:0;left:0;right:0;top:5vh;border-radius:18px 18px 0 0;transform:translateY(100%);opacity:1;box-shadow:0 -8px 40px rgba(0,0,0,.2); }
    .um-overlay.active .um-dialog { transform:translateY(0); }
}
.um-close { position:absolute;top:14px;right:14px;width:36px;height:36px;border:none;background:#f3f4f6;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:2;transition:background .15s; }
.um-close:hover { background:#e5e7eb; }
.um-close svg { width:18px;height:18px;stroke:#374151;stroke-width:2.5; }
.um-nav { position:absolute;top:50%;transform:translateY(-50%);width:40px;height:40px;border:none;background:#f3f4f6;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:2;transition:background .15s,opacity .15s; }
.um-nav:hover { background:#e5e7eb; }
.um-nav:disabled { opacity:.3;cursor:default; }
.um-nav svg { width:18px;height:18px;stroke:#374151;stroke-width:2.5; }
@media (min-width:769px) { .um-nav-prev { left:-56px; } .um-nav-next { right:-56px; } }
@media (max-width:768px) { .um-nav-prev { left:8px;top:auto;bottom:16px;transform:none; } .um-nav-next { right:8px;top:auto;bottom:16px;transform:none; } }
.um-body { padding:28px 32px 32px; }
@media (max-width:768px) { .um-body { padding:20px 18px 80px; } }
.um-drag-handle { display:none;width:40px;height:4px;background:#d1d5db;border-radius:2px;margin:10px auto 0; }
@media (max-width:768px) { .um-drag-handle { display:block; } }
.um-header { margin-bottom:20px; }
.um-title { font-size:1.35rem;font-weight:700;color:var(--text);line-height:1.3; }
.um-subtitle { font-size:.9rem;color:var(--text-light);margin-top:4px; }
.um-params { display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:20px; }
@media (min-width:769px) { .um-params { grid-template-columns:1fr 1fr 1fr; } }
.um-param { background:#f9fafb;border-radius:10px;padding:12px 14px;border:1px solid var(--border); }
.um-param-label { display:block;font-size:.78rem;color:var(--text-light);text-transform:uppercase;letter-spacing:.3px;margin-bottom:2px; }
.um-param-value { display:block;font-size:1.05rem;font-weight:600;color:var(--text); }
.um-param-price { background:linear-gradient(135deg,var(--primary) 0%,var(--primary-dark) 100%);border-color:transparent; }
.um-param-price .um-param-label { color:rgba(255,255,255,.8); }
.um-param-price .um-param-value { color:#fff;font-size:1.15rem; }
.um-section { margin-bottom:18px; }
.um-section h3 { font-size:.95rem;font-weight:600;color:var(--text);margin-bottom:8px; }
.um-section p { color:var(--text-light);line-height:1.6;font-size:.92rem; }
.um-floorplan { width:100%;border-radius:10px;border:1px solid var(--border); }
.um-cta { display:flex;gap:10px;flex-wrap:wrap;margin-top:20px;padding-top:18px;border-top:1px solid var(--border); }
.um-inquiry { margin-top:20px;padding-top:18px;border-top:1px solid var(--border); }
.um-inquiry h3 { font-size:1rem;font-weight:600;margin-bottom:12px;color:var(--text); }
.um-form-prefill { background:#f0fdf4;border:1px solid #bbf7d0;border-radius:8px;padding:10px 14px;font-size:.88rem;color:#166534;margin-bottom:12px; }
.um-form-row { display:flex;gap:10px;margin-bottom:10px; }
.um-form-row input, .um-form textarea { width:100%;padding:10px 14px;border:1px solid var(--border);border-radius:8px;font-family:var(--font);font-size:.9rem; }
.um-form-row input:focus, .um-form textarea:focus { outline:none;border-color:var(--primary);box-shadow:0 0 0 3px var(--primary-light); }
.um-form-actions { display:flex;gap:10px;margin-top:12px; }
.um-loading { display:flex;align-items:center;justify-content:center;padding:60px; }
.um-spinner { width:32px;height:32px;border:3px solid #e5e7eb;border-top-color:var(--primary);border-radius:50%;animation:umSpin .7s linear infinite; }
@keyframes umSpin { to { transform:rotate(360deg); } }

/* EMPTY */
.empty { padding: 40px; text-align: center; color: var(--text-light); border: 1px dashed var(--border); border-radius: var(--radius-lg); background: #fff; }

/* BADGE */
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: .78rem; font-weight: 700; }
.badge-free { background: #dcfce7; color: #166534; }
.badge-reserved { background: #fef3c7; color: #92400e; }
.badge-sold { background: #fee2e2; color: #991b1b; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .stats-strip .stat-item { border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
    .stats-strip .stat-item:nth-child(2n) { border-right: none; }
    .stats-strip .stat-item:nth-last-child(-n+2) { border-bottom: none; }
    .split { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .hero { padding: 48px 0 36px; min-height: 320px; }
    .hero h1 { font-size: 1.8rem; overflow-wrap: break-word; word-wrap: break-word; }
    .hero-bubble { display: block; max-width: 100%; padding: 20px 24px; border-radius: 12px; }
    .search-bar-form { flex-direction: column; }
    .search-field { min-width: 100%; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); margin-top: 20px; }
    .stat-item { padding: 14px 10px; }
    .stat-item b { font-size: 1.3rem; }
    .projects-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 40px 0; }
    .cta-banner { flex-direction: column; text-align: center; padding: 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .unit-params { grid-template-columns: repeat(2, 1fr); }
    .unit-cta { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .hero { padding: 36px 0 24px; min-height: 280px; }
    .hero h1 { font-size: 1.5rem; }
    .hero-bubble { padding: 16px 18px; border-radius: 10px; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); margin-top: 16px; }
    .stat-item b { font-size: 1.1rem; }
    .stat-item span { font-size: .75rem; }
    .stats-strip .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); padding: 10px 8px; }
    .stats-strip .stat-item:last-child { border-bottom: none; }
    .unit-params { grid-template-columns: 1fr; }
}
@media print {
    .site-header, .hamburger, .search-bar, .cta-banner, .site-footer, .unit-cta .btn { display: none !important; }
    .hero { background: #00a651 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; padding: 20px 0; }
    .section { padding: 20px 0; }
    .project-card { break-inside: avoid; box-shadow: none; border: 1px solid #ccc; }
    .project-card:hover { transform: none; }
    .data-table { font-size: .8rem; }
    a[href]::after { content: none; }
    body { font-size: 12pt; line-height: 1.5; }
}

/* === WIDTH MODE ROW LAYOUT === */
.pb-row { display:flex; flex-wrap:wrap; gap:24px; }
.pb-col-half { flex:0 0 calc(50% - 12px); min-width:0; }
.pb-col-third { flex:0 0 calc(33.333% - 16px); min-width:0; }
@media (max-width:768px) {
    .pb-col-half, .pb-col-third { flex:0 0 100%; }
}
