:root {
    --brand: #124c3c;
    --brand-dark: #0b3328;
    --accent: #e6b325;
    --ink: #16231f;
    --muted: #63736d;
    --line: #dfe8e3;
    --soft: #f3f8f5;
    --white: #ffffff;
    --shadow: 0 22px 55px rgba(18, 76, 60, 0.12);
    --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: #fbfdfc;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }

.top-strip { background: var(--brand-dark); color: #eaf7f0; font-size: 14px; }
.top-strip__inner { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; }
.top-strip a { color: var(--accent); font-weight: 700; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(18, 76, 60, .12);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; color: var(--brand); letter-spacing: -.03em; font-size: 22px; }
.brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: var(--brand); }
.brand strong { color: var(--ink); }
.brand--footer { color: #fff; margin-bottom: 16px; }
.brand--footer strong { color: #fff; }
.site-nav { display: flex; align-items: center; gap: 26px; font-weight: 700; color: #31433d; }
.site-nav a { transition: color .2s ease, transform .2s ease; }
.site-nav a:hover, .site-nav a.active { color: var(--brand); }
.nav-button { background: var(--brand); color: #fff !important; padding: 11px 18px; border-radius: 999px; box-shadow: 0 12px 26px rgba(18, 76, 60, .18); }
.menu-toggle { display: none; border: 0; background: var(--soft); border-radius: 12px; padding: 10px 13px; font-size: 22px; color: var(--brand); }

.flash-message { margin-top: 16px; padding: 14px 18px; background: #e9f8ee; border: 1px solid #bce4c9; border-radius: 14px; color: #205b31; font-weight: 700; }

.hero { padding: 76px 0 58px; background: radial-gradient(circle at 85% 5%, rgba(230,179,37,.26), transparent 28%), linear-gradient(135deg, #f7fbf8 0%, #eaf4ef 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .72fr; align-items: center; gap: 48px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--brand); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 99px; background: var(--accent); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 7vw, 76px); line-height: .95; letter-spacing: -.06em; margin-bottom: 22px; }
h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.06; letter-spacing: -.04em; margin-bottom: 14px; }
h3 { font-size: 20px; line-height: 1.2; margin-bottom: 8px; }
.hero-copy p { max-width: 640px; color: var(--muted); font-size: 19px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; border: 0; cursor: pointer; background: var(--brand); color: #fff; min-height: 48px; padding: 0 22px; border-radius: 999px; font-weight: 800; box-shadow: 0 14px 30px rgba(18, 76, 60, .18); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--brand-dark); box-shadow: 0 18px 34px rgba(18, 76, 60, .22); }
.button--light { background: #fff; color: var(--brand); }
.button--outline { background: transparent; color: var(--brand); border: 1px solid var(--brand); box-shadow: none; }
.button--ghost { background: #eef7f2; color: var(--brand); box-shadow: none; }
.button--small { min-height: 40px; padding: 0 16px; font-size: 14px; }
.button--full { width: 100%; }

.search-panel, .filter-card, .enquiry-card, .detail-card, .service-card, .property-card, .cta-panel, .empty-state {
    background: #fff;
    border: 1px solid rgba(18, 76, 60, .1);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.search-panel { padding: 28px; }
.search-panel h2, .filter-card h2, .enquiry-card h2 { font-size: 24px; letter-spacing: -.03em; }
label { display: grid; gap: 7px; color: #40534c; font-size: 14px; font-weight: 800; margin-bottom: 15px; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; font: inherit; color: var(--ink); background: #fff; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
textarea { min-height: 112px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(18, 76, 60, .1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.stats-section { padding: 28px 0; background: #fff; border-block: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stats-grid div { padding: 22px; border-radius: 18px; background: var(--soft); }
.stats-grid strong { display: block; color: var(--brand); font-size: 34px; line-height: 1; letter-spacing: -.05em; }
.stats-grid span { color: var(--muted); font-weight: 700; font-size: 14px; }

.section { padding: 76px 0; }
.section--compact { padding: 50px 0 76px; }
.section--soft { background: var(--soft); }
.section-heading { text-align: center; max-width: 650px; margin: 0 auto 34px; }
.section-heading--left { text-align: left; margin: 0; }
.section-heading p { color: var(--muted); }
.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.property-card { overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.property-card:hover { transform: translateY(-4px); box-shadow: 0 28px 60px rgba(18, 76, 60, .16); }
.property-card__image { display: flex; align-items: flex-start; justify-content: space-between; min-height: 210px; padding: 16px; background: linear-gradient(135deg, rgba(18,76,60,.86), rgba(18,76,60,.28)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='600' viewBox='0 0 900 600'%3E%3Cpath fill='%23eaf4ef' d='M0 0h900v600H0z'/%3E%3Cpath fill='%23ffffff' d='M120 352h180v128H120zM345 260h230v220H345zM620 320h170v160H620z'/%3E%3Cpath fill='%23124c3c' opacity='.28' d='M90 352l120-115 120 115zM320 260l140-132 140 132zM590 320l120-105 110 105z'/%3E%3C/svg%3E") center/cover; }
.property-card__badge, .property-card__type { background: #fff; color: var(--brand); font-size: 12px; font-weight: 900; padding: 8px 11px; border-radius: 999px; }
.property-card__type { background: var(--accent); color: var(--ink); }
.property-card__body { padding: 22px; }
.property-card__price { color: var(--brand); font-size: 22px; font-weight: 900; margin-bottom: 8px; }
.property-card h3 a:hover { color: var(--brand); }
.muted { color: var(--muted); }
.property-card p { color: var(--muted); font-size: 14px; }
.property-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.property-meta span, .feature-list span { background: var(--soft); color: #31433d; border-radius: 999px; padding: 8px 11px; font-size: 12px; font-weight: 800; }
.card-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.center-action { text-align: center; margin-top: 34px; }

.service-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 22px; align-items: stretch; }
.service-card { padding: 26px; box-shadow: none; }
.service-card span { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; background: var(--brand); color: #fff; border-radius: 50%; font-weight: 900; margin-bottom: 20px; }
.service-card p { color: var(--muted); }

.cta-panel { display: grid; grid-template-columns: .9fr 1fr; gap: 30px; align-items: center; padding: 34px; background: linear-gradient(135deg, #fff, #eef7f2); }
.mini-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-form textarea, .mini-form button { grid-column: 1 / -1; }
.mini-form input, .mini-form textarea { margin: 0; }

.page-hero, .detail-hero { padding: 58px 0; background: linear-gradient(135deg, var(--brand-dark), var(--brand)); color: #fff; }
.page-hero p, .detail-hero p { color: rgba(255,255,255,.78); max-width: 720px; }
.page-hero .eyebrow, .detail-hero .eyebrow { color: var(--accent); }
.listing-layout { display: grid; grid-template-columns: 310px 1fr; gap: 30px; align-items: start; }
.filter-card, .enquiry-card { position: sticky; top: 104px; padding: 24px; }
.reset-link { display: block; text-align: center; margin-top: 14px; color: var(--brand); font-weight: 800; }
.result-bar { display: flex; align-items: center; justify-content: space-between; padding: 15px 18px; background: #fff; border: 1px solid var(--line); border-radius: 16px; margin-bottom: 20px; color: var(--muted); }
.result-bar strong { color: var(--brand); font-size: 24px; }
.property-grid--list { grid-template-columns: repeat(2, 1fr); }
.empty-state { padding: 42px; text-align: center; }

.detail-hero__grid { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: end; }
.back-link { display: inline-block; color: rgba(255,255,255,.85); margin-bottom: 18px; font-weight: 800; }
.detail-price { background: #fff; color: var(--ink); padding: 22px 26px; border-radius: 20px; min-width: 230px; }
.detail-price span { display: block; color: var(--muted); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.detail-price strong { color: var(--brand); font-size: 28px; }
.detail-layout { display: grid; grid-template-columns: 1fr 350px; gap: 30px; align-items: start; }
.detail-gallery { min-height: 430px; border-radius: 28px; margin-bottom: 24px; padding: 18px; background: linear-gradient(135deg, rgba(18,76,60,.82), rgba(18,76,60,.2)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1000' height='620' viewBox='0 0 1000 620'%3E%3Crect fill='%23eaf4ef' width='1000' height='620'/%3E%3Cpath fill='%23fff' d='M120 370h210v150H120zM380 260h300v260H380zM720 330h170v190H720z'/%3E%3Cpath fill='%23124c3c' opacity='.3' d='M85 370l140-140 140 140zM345 260l185-165 185 165zM690 330l120-110 120 110z'/%3E%3C/svg%3E") center/cover; }
.detail-gallery span { background: var(--accent); border-radius: 999px; padding: 10px 15px; font-weight: 900; }
.detail-card { padding: 28px; margin-bottom: 24px; box-shadow: none; }
.overview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 20px; }
.overview-grid div { background: var(--soft); border-radius: 18px; padding: 18px; }
.overview-grid strong { display: block; color: var(--brand); font-size: 22px; }
.overview-grid span { color: var(--muted); font-size: 13px; font-weight: 800; }
.feature-list { display: flex; flex-wrap: wrap; gap: 10px; }
.phone-box { display: block; background: var(--soft); color: var(--brand); border-radius: 16px; padding: 14px; margin: 16px 0 20px; font-weight: 900; text-align: center; }
.property-grid--small { grid-template-columns: repeat(3, 1fr); }
.property-grid--small .property-card__image { min-height: 150px; }
.property-grid--small .property-card__body { padding: 16px; }

.site-footer { background: var(--brand-dark); color: rgba(255,255,255,.78); padding: 58px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .75fr .75fr; gap: 48px; }
.site-footer h3 { color: #fff; }
.site-footer a { display: block; color: rgba(255,255,255,.8); margin-bottom: 9px; }
.site-footer a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 32px; padding-top: 20px; font-size: 14px; }

@media (max-width: 980px) {
    .hero-grid, .cta-panel, .listing-layout, .detail-layout, .detail-hero__grid { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr 1fr; }
    .property-grid, .property-grid--list, .property-grid--small { grid-template-columns: 1fr 1fr; }
    .filter-card, .enquiry-card { position: static; }
}

@media (max-width: 760px) {
    .top-strip__inner { flex-direction: column; gap: 4px; }
    .menu-toggle { display: inline-flex; }
    .site-nav { display: none; position: absolute; top: 78px; left: 16px; right: 16px; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 18px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 14px; }
    .site-nav.is-open { display: flex; }
    .hero { padding-top: 48px; }
    h1 { font-size: 44px; }
    .stats-grid, .property-grid, .property-grid--list, .property-grid--small, .footer-grid, .overview-grid, .service-grid { grid-template-columns: 1fr; }
    .form-row, .mini-form { grid-template-columns: 1fr; }
    .mini-form textarea, .mini-form button { grid-column: auto; }
    .cta-panel, .detail-card, .search-panel { padding: 24px; }
}

/* Admin dashboard */
.admin-body {
    min-height: 100vh;
    background: #f3f8f5;
    display: grid;
    grid-template-columns: 280px 1fr;
}
.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    background: var(--brand-dark);
    color: #fff;
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 900;
    font-size: 20px;
}
.admin-brand img, .admin-login-logo img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
}
.admin-menu {
    display: grid;
    gap: 8px;
}
.admin-menu a, .admin-logout button {
    color: rgba(255,255,255,.82);
    padding: 13px 14px;
    border-radius: 14px;
    font-weight: 800;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font: inherit;
}
.admin-menu a:hover, .admin-menu a.active, .admin-logout button:hover {
    color: #fff;
    background: rgba(255,255,255,.12);
}
.admin-logout {
    margin-top: auto;
}
.admin-logout button {
    width: 100%;
}
.admin-main {
    padding: 34px;
    min-width: 0;
}
.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 26px;
}
.admin-topbar h1 {
    font-size: clamp(32px, 4vw, 52px);
    margin: 0;
}
.admin-kicker {
    color: var(--brand);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
}
.admin-alert {
    padding: 15px 18px;
    border-radius: 16px;
    margin-bottom: 18px;
    font-weight: 700;
}
.admin-alert ul {
    margin: 8px 0 0;
    padding-left: 18px;
}
.admin-alert--success {
    background: #e9f8ee;
    border: 1px solid #bce4c9;
    color: #205b31;
}
.admin-alert--error {
    background: #fff2f2;
    border: 1px solid #f2b8b8;
    color: #8a2020;
}
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}
.admin-stats-grid article, .admin-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(18, 76, 60, .08);
}
.admin-stats-grid article {
    padding: 24px;
}
.admin-stats-grid span {
    display: block;
    color: var(--muted);
    font-weight: 800;
    margin-bottom: 10px;
}
.admin-stats-grid strong {
    color: var(--brand);
    font-size: 40px;
    line-height: 1;
}
.admin-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.admin-card {
    padding: 24px;
}
.admin-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}
.admin-card__header--wrap {
    align-items: flex-start;
    flex-wrap: wrap;
}
.admin-card__header h2 {
    font-size: 26px;
    margin: 0;
}
.admin-card__header a, .admin-list__item a, .admin-table a, .admin-enquiry a {
    color: var(--brand);
    font-weight: 900;
}
.admin-list {
    display: grid;
    gap: 12px;
}
.admin-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.admin-list__item:last-child {
    border-bottom: 0;
}
.admin-list__item span, .admin-table td span, .admin-date {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}
.admin-status {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 12px !important;
    font-weight: 900 !important;
    text-transform: capitalize;
}
.admin-status--active, .admin-status--contacted {
    background: #e9f8ee;
    color: #205b31 !important;
}
.admin-status--draft {
    background: #fff6dc;
    color: #806100 !important;
}
.admin-status--new {
    background: #e8f2ff;
    color: #164e8a !important;
}
.admin-status--closed {
    background: #edf0f2;
    color: #44505a !important;
}
.admin-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.admin-filter input, .admin-filter select {
    width: auto;
    min-width: 170px;
    margin: 0;
    min-height: 42px;
}
.admin-table-wrap {
    overflow-x: auto;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 840px;
}
.admin-table th, .admin-table td {
    text-align: left;
    padding: 15px 12px;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}
.admin-table th {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.admin-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.admin-actions form, .admin-enquiry__actions form {
    margin: 0;
}
.admin-actions button, .admin-enquiry__actions button {
    border: 0;
    background: transparent;
    color: #a72b2b;
    font-weight: 900;
    cursor: pointer;
    padding: 0;
    font: inherit;
}
.admin-pagination {
    margin-top: 20px;
}
.admin-pagination nav > div:first-child {
    display: none;
}
.admin-pagination span, .admin-pagination a {
    margin-right: 6px;
}
.admin-form {
    display: grid;
    gap: 18px;
}
.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.admin-form label, .admin-login-card label {
    color: #31433d;
    font-weight: 900;
}
.admin-form input, .admin-form select, .admin-form textarea, .admin-login-card input, .admin-enquiry__actions select {
    margin-top: 8px;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 14px;
    font: inherit;
    color: var(--ink);
    background: #fff;
}
.admin-help {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}
.admin-check {
    display: flex !important;
    align-items: center;
    gap: 10px;
}
.admin-check input {
    width: auto !important;
    margin: 0 !important;
}
.admin-form-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.admin-current-image {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--soft);
    border-radius: 18px;
    padding: 12px;
    color: var(--muted);
    font-weight: 800;
}
.admin-current-image img {
    width: 100px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
}
.admin-enquiry-list {
    display: grid;
    gap: 16px;
}
.admin-enquiry {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    background: #fbfdfc;
}
.admin-enquiry__top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}
.admin-enquiry h3 {
    margin: 0 0 4px;
}
.admin-enquiry p {
    margin-bottom: 10px;
}
.admin-enquiry__property {
    color: var(--muted);
    font-weight: 800;
}
.admin-enquiry__actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 14px;
}
.admin-enquiry__actions form {
    display: flex;
    align-items: center;
    gap: 8px;
}
.admin-enquiry__actions select {
    margin: 0;
    min-height: 38px;
}
.admin-enquiry__actions button[type="submit"] {
    background: var(--brand);
    color: #fff;
    border-radius: 999px;
    padding: 9px 12px;
}
.admin-enquiry__actions form:last-child button {
    background: #fff2f2;
    color: #a72b2b;
}
.admin-login-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 80% 10%, rgba(230,179,37,.24), transparent 28%), linear-gradient(135deg, #f7fbf8, #eaf4ef);
    padding: 24px;
}
.admin-login-card {
    width: min(460px, 100%);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 34px;
}
.admin-login-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--brand);
    font-weight: 900;
    margin-bottom: 24px;
}
.admin-login-card h1 {
    font-size: 38px;
    margin-bottom: 8px;
}
.admin-login-card p {
    color: var(--muted);
}
.admin-login-card form {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

@media (max-width: 980px) {
    .admin-body {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        position: static;
        height: auto;
    }
    .admin-menu {
        grid-template-columns: repeat(2, 1fr);
    }
    .admin-stats-grid, .admin-two-col, .admin-form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .admin-main {
        padding: 22px 16px;
    }
    .admin-topbar, .admin-card__header, .admin-enquiry__top {
        align-items: flex-start;
        flex-direction: column;
    }
    .admin-stats-grid, .admin-two-col, .admin-form-grid, .admin-menu {
        grid-template-columns: 1fr;
    }
    .admin-filter, .admin-filter input, .admin-filter select {
        width: 100%;
    }
}

/* Facebook/social posts */
.section--facebook {
    background: linear-gradient(135deg, #ffffff, #f3f8f5);
}
.facebook-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: start;
}
.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 26px;
}
.social-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(18, 76, 60, .1);
    border-radius: 22px;
    box-shadow: var(--shadow);
}
.social-card__image {
    min-height: 170px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 14px;
    background: linear-gradient(135deg, rgba(18,76,60,.88), rgba(18,76,60,.24)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='560' viewBox='0 0 900 560'%3E%3Crect fill='%23eaf4ef' width='900' height='560'/%3E%3Ccircle cx='675' cy='150' r='70' fill='%23e6b325' opacity='.75'/%3E%3Cpath d='M130 390h640v92H130z' fill='%23fff'/%3E%3Cpath d='M185 390l150-150 150 150zM425 390l105-115 105 115z' fill='%23124c3c' opacity='.35'/%3E%3C/svg%3E") center/cover;
    background-size: cover;
    background-position: center;
}
.social-card__image span {
    background: #fff;
    color: var(--brand);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 900;
}
.social-card__body {
    padding: 18px;
}
.social-card__date {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}
.social-card__body p {
    color: var(--muted);
    font-size: 14px;
}
.social-card__body a {
    color: var(--brand);
    font-weight: 900;
}
.facebook-embed-card {
    background: #fff;
    border: 1px solid rgba(18, 76, 60, .1);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 18px;
    position: sticky;
    top: 104px;
}
.facebook-iframe-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: var(--soft);
}
.facebook-iframe-wrap iframe {
    width: 100% !important;
    max-width: 100%;
}
.empty-state--social {
    grid-column: 1 / -1;
    text-align: left;
}
.admin-top-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.admin-card--wide {
    margin-top: 24px;
}
@media (max-width: 1100px) {
    .facebook-grid {
        grid-template-columns: 1fr;
    }
    .facebook-embed-card {
        position: static;
    }
}
@media (max-width: 980px) {
    .social-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 680px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
    .admin-top-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }
    .admin-top-actions .button {
        width: 100%;
    }
}

/* Carousel update: properties, Facebook posts and photos */
.section-heading--with-actions {
    max-width: 1160px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
}
.section-heading--with-actions > div:first-child {
    max-width: 680px;
}
.carousel-actions {
    display: inline-flex;
    gap: 10px;
    flex: 0 0 auto;
}
.carousel-btn {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(18, 76, 60, .18);
    border-radius: 50%;
    background: #fff;
    color: var(--brand);
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(18, 76, 60, .10);
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.carousel-btn:hover {
    transform: translateY(-2px);
    background: var(--brand);
    color: #fff;
}
.carousel-shell {
    position: relative;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 2px 28px;
    scrollbar-width: thin;
    scrollbar-color: rgba(18,76,60,.35) transparent;
}
.carousel-track::-webkit-scrollbar {
    height: 8px;
}
.carousel-track::-webkit-scrollbar-thumb {
    background: rgba(18,76,60,.35);
    border-radius: 99px;
}
.carousel-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    scroll-snap-align: start;
    min-width: 0;
}
.carousel-slide > article {
    height: 100%;
}
.carousel-slide--social {
    flex-basis: calc((100% - 36px) / 3);
}
.carousel-slide--gallery {
    flex-basis: calc((100% - 48px) / 3);
}
.property-carousel .property-card,
.social-carousel .social-card,
.gallery-carousel .gallery-card {
    min-height: 100%;
}
.section--gallery {
    background: #fff;
}
.gallery-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(18, 76, 60, .1);
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.gallery-card__image {
    min-height: 300px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 16px;
    background: linear-gradient(135deg, rgba(18,76,60,.88), rgba(18,76,60,.24)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='560' viewBox='0 0 900 560'%3E%3Crect fill='%23eaf4ef' width='900' height='560'/%3E%3Ccircle cx='675' cy='150' r='70' fill='%23e6b325' opacity='.75'/%3E%3Cpath d='M130 390h640v92H130z' fill='%23fff'/%3E%3Cpath d='M185 390l150-150 150 150zM425 390l105-115 105 115z' fill='%23124c3c' opacity='.35'/%3E%3C/svg%3E") center/cover;
    background-size: cover;
    background-position: center;
}
.gallery-card__image span {
    background: #fff;
    color: var(--brand);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 900;
}
.gallery-card__body {
    padding: 20px;
}
.gallery-card__body p {
    color: var(--muted);
    font-size: 14px;
}
.admin-table-thumb {
    width: 96px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
}

@media (max-width: 1100px) {
    .carousel-slide,
    .carousel-slide--social,
    .carousel-slide--gallery {
        flex-basis: calc((100% - 24px) / 2);
    }
}

@media (max-width: 760px) {
    .section-heading--with-actions {
        align-items: flex-start;
        flex-direction: column;
    }
    .carousel-actions {
        width: 100%;
        justify-content: flex-end;
    }
    .carousel-slide,
    .carousel-slide--social,
    .carousel-slide--gallery {
        flex-basis: min(88%, 360px);
    }
    .gallery-card__image {
        min-height: 240px;
    }
}

.admin-note {
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(18, 76, 60, .14);
    border-radius: 18px;
    background: rgba(234, 244, 239, .75);
    color: var(--ink);
    line-height: 1.6;
}
.admin-two-col--import {
    align-items: start;
}
.admin-check--inline {
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
}
.admin-check--inline input {
    width: auto;
}

/* Property gallery update */
.detail-photo-gallery {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 20px;
    margin: -4px 0 24px;
    box-shadow: 0 18px 50px rgba(18,76,60,.06);
}
.detail-photo-gallery__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}
.detail-photo-gallery__heading h2 {
    margin: 0;
    font-size: 26px;
}
.detail-photo-gallery__heading span {
    color: var(--brand);
    background: var(--soft);
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 900;
}
.detail-photo-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.detail-photo-thumb {
    min-height: 150px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding: 10px;
    border: 1px solid rgba(18, 76, 60, .12);
}
.detail-photo-thumb span {
    background: rgba(255,255,255,.94);
    color: var(--brand);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
}
.admin-gallery-manager {
    background: var(--soft);
    border-radius: 20px;
    padding: 16px;
}
.admin-gallery-manager h3 {
    margin: 0 0 14px;
}
.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
}
.admin-gallery-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
}
.admin-gallery-item img {
    width: 100%;
    height: 105px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
}
.admin-delete-image {
    width: 100%;
    border: 0;
    border-radius: 999px;
    background: #fff3f1;
    color: #9d2d20;
    cursor: pointer;
    font-weight: 900;
    padding: 9px 12px;
}
.admin-delete-image:hover {
    background: #ffd8d2;
}
@media (max-width: 760px) {
    .detail-photo-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .detail-photo-thumb {
        min-height: 120px;
    }
}

/* Premium homepage cleanup update */
.premium-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 74px;
    background:
        radial-gradient(circle at 86% 12%, rgba(230,179,37,.28), transparent 26%),
        radial-gradient(circle at 12% 88%, rgba(18,76,60,.16), transparent 30%),
        linear-gradient(135deg, #0b3328 0%, #124c3c 44%, #f4efe1 44.2%, #f9fbf8 100%);
}
.premium-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -24% 48%;
    height: 280px;
    border-radius: 999px;
    background: rgba(255,255,255,.26);
    filter: blur(34px);
    transform: rotate(-8deg);
}
.premium-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 54px;
    align-items: center;
}
.premium-hero__content {
    color: #fff;
}
.premium-hero__content .eyebrow {
    color: var(--accent);
}
.premium-hero__content h1 {
    max-width: 780px;
    font-size: clamp(46px, 7vw, 86px);
    color: #fff;
}
.premium-hero__content p {
    max-width: 690px;
    color: rgba(255,255,255,.78);
    font-size: 20px;
}
.premium-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 28px;
}
.premium-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 170px));
    gap: 14px;
}
.premium-trust-row div {
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 20px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(16px);
}
.premium-trust-row strong {
    display: block;
    color: var(--accent);
    font-size: 26px;
    line-height: 1;
}
.premium-trust-row span {
    color: rgba(255,255,255,.78);
    font-size: 13px;
    font-weight: 800;
}
.premium-search-card {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.68);
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(8, 48, 37, .24);
    padding: 28px;
}
.premium-search-card__top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}
.premium-search-card__top span {
    color: var(--muted);
    font-weight: 800;
}
.premium-search-card__top strong {
    color: var(--brand);
    font-size: 26px;
    letter-spacing: -.04em;
}
.premium-strip {
    background: #fff;
    border-bottom: 1px solid rgba(18,76,60,.1);
}
.premium-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 18px 0;
}
.premium-strip__grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--brand);
    font-weight: 900;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.premium-strip__grid a:hover {
    transform: translateY(-2px);
    background: var(--brand);
    color: #fff;
}
.premium-featured-section,
.premium-gallery-section {
    background: #fbfdfc;
}
.premium-social-section,
.premium-service-section {
    background: linear-gradient(135deg, #ffffff, #f0f7f3);
}
.premium-heading h2 {
    max-width: 720px;
}
.premium-heading__links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.premium-carousel-shell {
    overflow: visible;
}
.premium-carousel-shell .carousel-track {
    padding: 6px 2px 18px;
}
.premium-empty-state {
    width: 100%;
    text-align: left;
}
.premium-featured-section .property-card,
.premium-social-section .social-card,
.premium-gallery-section .gallery-card,
.premium-service-card,
.premium-cta-panel {
    border-color: rgba(18,76,60,.08);
    box-shadow: 0 26px 70px rgba(18,76,60,.10);
}
.premium-service-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}
.premium-service-intro {
    padding-right: 20px;
}
.premium-service-intro p,
.premium-service-card p,
.premium-cta-panel p {
    color: var(--muted);
}
.premium-service-card {
    background: #fff;
    border: 1px solid rgba(18, 76, 60, .1);
    border-radius: 28px;
    padding: 30px;
}
.premium-service-card span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-weight: 900;
    margin-bottom: 22px;
}
.premium-cta-section {
    background: #fff;
}
.premium-cta-panel {
    display: grid;
    grid-template-columns: .88fr 1fr;
    gap: 36px;
    align-items: center;
    padding: 42px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 88% 14%, rgba(230,179,37,.18), transparent 25%),
        linear-gradient(135deg, #ffffff, #eef7f2);
    border: 1px solid rgba(18,76,60,.10);
}
.premium-whatsapp-link {
    display: inline-flex;
    margin-top: 6px;
    color: var(--brand);
    font-weight: 900;
}

@media (max-width: 980px) {
    .premium-hero {
        background: linear-gradient(135deg, #0b3328, #124c3c);
    }
    .premium-hero__grid,
    .premium-service-grid,
    .premium-cta-panel {
        grid-template-columns: 1fr;
    }
    .premium-strip__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .premium-hero {
        padding: 58px 0 52px;
    }
    .premium-hero__grid {
        gap: 28px;
    }
    .premium-trust-row,
    .premium-strip__grid {
        grid-template-columns: 1fr;
    }
    .premium-search-card,
    .premium-cta-panel {
        padding: 24px;
        border-radius: 24px;
    }
    .premium-heading__links {
        width: 100%;
        justify-content: space-between;
    }
}

/* Ultra premium homepage + social connect update */
:root {
    --brand: #0f5b46;
    --brand-dark: #062d23;
    --brand-900: #04241c;
    --gold: #d5a934;
    --gold-soft: #fff4cc;
    --cream: #fbf7ec;
    --ink: #101f1a;
    --muted: #6a7a73;
    --line: rgba(15, 91, 70, .13);
    --soft: #f3f8f5;
    --shadow: 0 28px 80px rgba(6, 45, 35, .12);
    --shadow-lg: 0 40px 110px rgba(6, 45, 35, .18);
}

body {
    font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 5% 0%, rgba(213,169,52,.09), transparent 28%),
        linear-gradient(180deg, #fbfdfc 0%, #f9fcfa 100%);
}

h1, h2, h3, .brand, .button, .nav-button {
    font-family: Sora, Manrope, system-ui, sans-serif;
}

.top-strip {
    background: linear-gradient(90deg, var(--brand-900), var(--brand-dark));
    font-size: 13px;
}
.top-strip__inner--premium {
    align-items: center;
}
.top-strip__links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.top-strip__links a {
    color: rgba(255,255,255,.86);
    font-weight: 800;
}
.top-strip__links a:last-child {
    color: var(--gold);
}

.site-header {
    transition: box-shadow .25s ease, background .25s ease, transform .25s ease;
}
.site-header.is-scrolled {
    box-shadow: 0 18px 45px rgba(6,45,35,.08);
    background: rgba(255,255,255,.96);
}
.nav-button {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    box-shadow: 0 16px 32px rgba(6,45,35,.18);
}
.nav-button:hover {
    transform: translateY(-2px);
}

.lux-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-family: Sora, Manrope, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.lux-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.lux-hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 88px 0 82px;
    background:
        linear-gradient(115deg, rgba(6,45,35,.96) 0%, rgba(15,91,70,.93) 47%, rgba(245,238,217,.84) 47.2%, rgba(255,255,255,.98) 100%),
        radial-gradient(circle at 78% 12%, rgba(213,169,52,.28), transparent 30%);
}
.lux-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, #000, transparent 62%);
    opacity: .55;
}
.lux-hero__orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(16px);
    opacity: .65;
    animation: luxFloat 8s ease-in-out infinite;
}
.lux-hero__orb--one {
    width: 210px;
    height: 210px;
    right: 10%;
    top: 16%;
    background: rgba(213,169,52,.28);
}
.lux-hero__orb--two {
    width: 310px;
    height: 310px;
    left: -90px;
    bottom: -90px;
    background: rgba(255,255,255,.08);
    animation-delay: -2.5s;
}
.lux-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 62px;
    align-items: center;
}
.lux-hero__copy {
    color: #fff;
}
.lux-hero__copy h1 {
    max-width: 820px;
    margin: 16px 0 22px;
    color: #fff;
    font-size: clamp(46px, 7vw, 88px);
    line-height: .9;
    letter-spacing: -.075em;
}
.lux-hero__copy p {
    max-width: 720px;
    color: rgba(255,255,255,.80);
    font-size: 19px;
    line-height: 1.75;
}
.lux-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0 30px;
}
.button--gold {
    background: linear-gradient(135deg, var(--gold), #f4d36f);
    color: #14241e;
    box-shadow: 0 18px 40px rgba(213,169,52,.30);
}
.button--gold:hover {
    background: linear-gradient(135deg, #e6bb48, #ffe08a);
    color: #14241e;
}
.button--glass {
    background: rgba(255,255,255,.14);
    color: #fff;
    border: 1px solid rgba(255,255,255,.24);
    box-shadow: none;
    backdrop-filter: blur(18px);
}
.button--glass:hover {
    background: rgba(255,255,255,.22);
}
.lux-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 176px));
    gap: 14px;
}
.lux-metrics div {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
    backdrop-filter: blur(18px);
}
.lux-metrics div::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.13), transparent);
    transform: translateX(-120%);
    animation: luxShine 5s ease-in-out infinite;
}
.lux-metrics strong {
    display: block;
    color: var(--gold);
    font-size: 28px;
    line-height: 1;
    letter-spacing: -.04em;
}
.lux-metrics span {
    display: block;
    margin-top: 6px;
    color: rgba(255,255,255,.76);
    font-size: 12px;
    font-weight: 800;
}
.lux-hero__panel {
    display: grid;
    gap: 18px;
}
.lux-search-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 34px;
    background: rgba(255,255,255,.90);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
}
.lux-search-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--brand), var(--gold));
}
.lux-search-card__head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}
.lux-search-card__head span {
    color: var(--muted);
    font-weight: 900;
}
.lux-search-card__head strong {
    color: var(--brand);
    font-family: Sora, Manrope, sans-serif;
    font-size: 24px;
    letter-spacing: -.04em;
}
.lux-feature-card {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 16px;
    align-items: center;
    position: relative;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 28px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 24px 55px rgba(6,45,35,.13);
    transition: transform .25s ease, box-shadow .25s ease;
}
.lux-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 34px 75px rgba(6,45,35,.18);
}
.lux-feature-card__tag {
    position: absolute;
    top: -12px;
    left: 20px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--gold);
    color: #17251f;
    font-size: 11px;
    font-weight: 900;
}
.lux-feature-card__image {
    min-height: 100px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(15,91,70,.72), rgba(15,91,70,.28)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='360' viewBox='0 0 500 360'%3E%3Crect fill='%23eaf4ef' width='500' height='360'/%3E%3Cpath fill='%23ffffff' d='M70 210h115v80H70zM210 150h150v140H210zM380 190h85v100h-85z'/%3E%3Cpath fill='%230f5b46' opacity='.32' d='M50 210l80-75 80 75zM190 150l95-90 95 90zM360 190l65-58 65 58z'/%3E%3C/svg%3E") center/cover;
}
.lux-feature-card__body strong {
    display: block;
    color: var(--brand);
    font-size: 22px;
    font-weight: 900;
}
.lux-feature-card__body span {
    display: block;
    color: var(--ink);
    font-weight: 900;
    line-height: 1.25;
}

.lux-social-band {
    position: relative;
    z-index: 2;
    margin-top: -34px;
}
.lux-social-band__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 0 0 26px;
}
.lux-social-band__grid a {
    padding: 18px 20px;
    border: 1px solid rgba(15,91,70,.10);
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 20px 50px rgba(6,45,35,.08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.lux-social-band__grid a:hover {
    transform: translateY(-4px);
    border-color: rgba(213,169,52,.44);
    box-shadow: 0 30px 70px rgba(6,45,35,.12);
}
.lux-social-band__grid span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .10em;
}
.lux-social-band__grid strong {
    display: block;
    margin-top: 5px;
    color: var(--brand);
    font-size: 15px;
}

.lux-category-section {
    padding-top: 38px;
    padding-bottom: 42px;
}
.lux-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.lux-category-grid a {
    min-height: 178px;
    padding: 24px;
    border: 1px solid rgba(15,91,70,.10);
    border-radius: 30px;
    background:
        radial-gradient(circle at 86% 18%, rgba(213,169,52,.18), transparent 28%),
        #fff;
    box-shadow: 0 20px 55px rgba(6,45,35,.07);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.lux-category-grid a:hover {
    transform: translateY(-6px);
    background:
        radial-gradient(circle at 86% 18%, rgba(213,169,52,.28), transparent 28%),
        linear-gradient(135deg, #ffffff, #f4faf6);
    box-shadow: 0 32px 75px rgba(6,45,35,.12);
}
.lux-category-grid span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--brand-dark);
    color: #fff;
    font-weight: 900;
    font-size: 12px;
}
.lux-category-grid strong {
    display: block;
    color: var(--ink);
    font-family: Sora, Manrope, sans-serif;
    font-size: 18px;
    margin-bottom: 9px;
}
.lux-category-grid small {
    color: var(--muted);
    font-weight: 700;
    line-height: 1.5;
}

.lux-featured-section,
.lux-gallery-section {
    background: linear-gradient(180deg, #fbfdfc 0%, #ffffff 100%);
}
.lux-updates-section,
.lux-proof-section {
    background:
        radial-gradient(circle at 5% 8%, rgba(213,169,52,.08), transparent 28%),
        linear-gradient(135deg, #ffffff, #f1f8f4);
}
.lux-heading {
    max-width: none;
}
.lux-heading h2 {
    max-width: 780px;
    font-size: clamp(32px, 4.6vw, 56px);
}
.lux-heading p {
    max-width: 660px;
}
.lux-carousel-shell {
    overflow: visible;
}
.lux-carousel-shell .carousel-track {
    padding: 8px 4px 22px;
    scroll-snap-type: x mandatory;
}
.carousel-slide {
    scroll-snap-align: start;
}
.lux-featured-section .property-card,
.lux-updates-section .social-card,
.lux-gallery-section .gallery-card {
    border: 1px solid rgba(15,91,70,.10);
    border-radius: 30px;
    box-shadow: 0 26px 70px rgba(6,45,35,.10);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.lux-featured-section .property-card:hover,
.lux-updates-section .social-card:hover,
.lux-gallery-section .gallery-card:hover {
    transform: translateY(-8px);
    border-color: rgba(213,169,52,.38);
    box-shadow: 0 36px 90px rgba(6,45,35,.16);
}
.property-card__image,
.social-card__image,
.gallery-card__image {
    position: relative;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
}
.property-card__image::after,
.social-card__image::after,
.gallery-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.20) 48%, transparent 100%);
    transform: translateX(-120%);
    transition: transform .6s ease;
}
.property-card:hover .property-card__image::after,
.social-card:hover .social-card__image::after,
.gallery-card:hover .gallery-card__image::after {
    transform: translateX(120%);
}
.property-card__badge,
.property-card__type,
.social-card__image span,
.gallery-card__image span {
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 24px rgba(6,45,35,.10);
}
.property-card__body,
.social-card__body,
.gallery-card__body {
    padding: 24px;
}
.property-card__price {
    color: var(--brand);
    font-family: Sora, Manrope, sans-serif;
}
.carousel-btn {
    width: 46px;
    height: 46px;
    background: #fff;
    border-color: rgba(15,91,70,.12);
    box-shadow: 0 18px 38px rgba(6,45,35,.10);
}
.carousel-btn:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-2px);
}

.lux-proof-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}
.lux-proof-copy {
    padding-right: 26px;
}
.lux-proof-copy h2 {
    font-size: clamp(32px, 4.2vw, 54px);
}
.lux-proof-copy p,
.lux-proof-grid article p,
.lux-cta-panel p {
    color: var(--muted);
}
.lux-proof-grid article {
    padding: 30px;
    border: 1px solid rgba(15,91,70,.10);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 24px 65px rgba(6,45,35,.08);
}
.lux-proof-grid article span {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 9px 13px;
    border-radius: 999px;
    background: var(--brand-dark);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.lux-cta-section {
    background: #fff;
}
.lux-cta-panel {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 44px;
    align-items: center;
    padding: 46px;
    border: 1px solid rgba(15,91,70,.11);
    border-radius: 36px;
    background:
        radial-gradient(circle at 92% 10%, rgba(213,169,52,.18), transparent 28%),
        radial-gradient(circle at 5% 100%, rgba(15,91,70,.12), transparent 32%),
        linear-gradient(135deg, #ffffff, #f3faf6);
    box-shadow: 0 32px 90px rgba(6,45,35,.10);
}
.lux-cta-panel h2 {
    font-size: clamp(32px, 4.4vw, 54px);
}
.lux-cta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.lux-cta-links a,
.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 15px;
    border-radius: 999px;
    background: rgba(15,91,70,.08);
    color: var(--brand);
    font-weight: 900;
}
.lux-cta-links a:hover,
.footer-socials a:hover {
    background: var(--brand);
    color: #fff;
}

.site-footer--premium {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 10%, rgba(213,169,52,.12), transparent 26%),
        linear-gradient(135deg, var(--brand-900), var(--brand-dark));
}
.footer-grid--premium {
    grid-template-columns: 1.1fr .7fr .8fr;
}
.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.footer-socials a {
    background: rgba(255,255,255,.09);
    color: rgba(255,255,255,.88);
    margin: 0;
}

.floating-socials {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: grid;
    gap: 10px;
}
.floating-socials a {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(6,45,35,.22);
    transition: transform .25s ease, background .25s ease;
}
.floating-socials a:hover {
    transform: translateY(-3px) scale(1.04);
    background: var(--gold);
    color: #14241e;
}

[data-animate] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}
[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes luxFloat {
    0%, 100% { transform: translate3d(0,0,0); }
    50% { transform: translate3d(0,-18px,0); }
}
@keyframes luxShine {
    0%, 70% { transform: translateX(-130%); }
    100% { transform: translateX(130%); }
}

@media (max-width: 1100px) {
    .lux-hero {
        background: linear-gradient(135deg, var(--brand-900), var(--brand));
    }
    .lux-hero__grid,
    .lux-proof-grid,
    .lux-cta-panel {
        grid-template-columns: 1fr;
    }
    .lux-hero__panel {
        max-width: 560px;
    }
    .lux-category-grid,
    .lux-social-band__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .top-strip__inner--premium {
        align-items: flex-start;
    }
    .top-strip__links {
        gap: 10px;
    }
    .lux-hero {
        min-height: auto;
        padding: 60px 0 52px;
    }
    .lux-hero__grid {
        gap: 30px;
    }
    .lux-hero__copy h1 {
        font-size: clamp(40px, 13vw, 58px);
    }
    .lux-hero__copy p {
        font-size: 16px;
    }
    .lux-metrics,
    .lux-social-band__grid,
    .lux-category-grid {
        grid-template-columns: 1fr;
    }
    .lux-social-band {
        margin-top: 0;
        padding-top: 16px;
    }
    .lux-search-card,
    .lux-cta-panel {
        padding: 24px;
        border-radius: 26px;
    }
    .lux-feature-card {
        grid-template-columns: 1fr;
    }
    .lux-feature-card__image {
        min-height: 180px;
    }
    .lux-heading {
        gap: 18px;
    }
    .floating-socials {
        right: 14px;
        bottom: 14px;
    }
    .floating-socials a {
        width: 44px;
        height: 44px;
    }
}

/* LPW-inspired MACM theme update - distinct MACM branding, not copied assets */
:root {
    --lpw-green: #009432;
    --lpw-green-dark: #007126;
    --lpw-orange: #ff4a17;
    --lpw-text: #202124;
    --lpw-muted: #6a7278;
    --lpw-line: #e5e9ec;
    --lpw-bg: #f4f6f8;
    --lpw-card: #ffffff;
    --lpw-shadow: 0 12px 28px rgba(20, 28, 35, .12);
    --lpw-soft-shadow: 0 6px 16px rgba(20, 28, 35, .08);
}

body.lpw-theme-body {
    background: #fff;
    color: var(--lpw-text);
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
}

body.lpw-theme-body h1,
body.lpw-theme-body h2,
body.lpw-theme-body h3,
body.lpw-theme-body .brand {
    font-family: 'Raleway', 'Open Sans', Arial, sans-serif;
}

.mobile-only { display: none; }
.d-none-mobile { display: block; }

.lpw-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0,0,0,.08);
}

.lpw-topline {
    background: #fff;
}

.lpw-topline__inner {
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand--lpw,
.brand--lpw-footer {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #17392f;
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
}

.brand--lpw img,
.brand--lpw-footer img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eef2f0;
}

.lpw-top-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
}

.lpw-top-actions a {
    color: #222;
    font-weight: 600;
    text-decoration: none;
}

.lpw-top-actions a:hover { color: var(--lpw-green); }

.lpw-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lpw-icon-link svg,
.lpw-social-icons svg,
.lpw-floating-socials svg,
.lpw-nav-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.lpw-post-btn {
    background: var(--lpw-orange);
    color: #fff !important;
    border-radius: 4px;
    padding: 9px 14px;
    font-weight: 800 !important;
    box-shadow: 0 5px 12px rgba(255,74,23,.24);
}

.lpw-main-nav {
    background: var(--lpw-green);
}

.lpw-main-nav__inner {
    min-height: 42px;
    display: flex !important;
    align-items: center;
    gap: 0;
    position: static !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.lpw-main-nav__inner a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.lpw-main-nav__inner a:hover,
.lpw-main-nav__inner a.active {
    background: var(--lpw-green-dark);
    color: #fff;
}

.lpw-nav-spacer { flex: 1; }
.lpw-nav-social { width: 42px; padding: 0 !important; }
.lpw-nav-social svg { width: 17px; height: 17px; }

.lpw-hero { background: #fff; }
.lpw-hero__banner { position: relative; min-height: 485px; overflow: hidden; background: #102f38; }
.lpw-hero__slides { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(3, 1fr); }
.lpw-hero__panel { min-height: 485px; position: relative; background-position: center; background-size: cover; }
.lpw-hero__panel:after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.14)); }
.lpw-hero__panel--one { background: linear-gradient(135deg, #071c2e, #0d5f3c 55%, #194b38); }
.lpw-hero__panel--two { background: linear-gradient(135deg, #243b55, #141e30); }
.lpw-hero__panel--three { background: linear-gradient(135deg, #155f4c, #e8f0e2); }
.lpw-hero__panel--one:before,
.lpw-hero__panel--two:before,
.lpw-hero__panel--three:before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,0)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='400' viewBox='0 0 600 400'%3E%3Crect fill='none' width='600' height='400'/%3E%3Cpath d='M80 270h100v80H80zM220 215h155v135H220zM410 250h95v100h-95z' fill='white' opacity='.12'/%3E%3Cpath d='M50 270l80-80 80 80zM195 215l105-95 105 95zM390 250l70-65 70 65z' fill='white' opacity='.18'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 86%, cover;
    background-position: center bottom;
    opacity: .75;
}

.lpw-hero__content {
    position: relative;
    z-index: 2;
    min-height: 485px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 610px;
    align-items: end;
    gap: 28px;
    padding-top: 54px;
    padding-bottom: 42px;
}

.lpw-hero__copy {
    align-self: center;
    color: #fff;
    max-width: 570px;
    text-shadow: 0 2px 14px rgba(0,0,0,.2);
}

.lpw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffd335;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 900;
    font-size: 12px;
}

.lpw-eyebrow:before {
    content: '';
    display: inline-block;
    width: 34px;
    height: 2px;
    background: #ffd335;
}

.lpw-hero h1 {
    font-size: clamp(42px, 5.8vw, 74px);
    line-height: .94;
    letter-spacing: -0.065em;
    margin: 14px 0 18px;
    color: #fff;
    font-weight: 900;
}

.lpw-hero p {
    color: rgba(255,255,255,.9);
    max-width: 530px;
    font-size: 17px;
    line-height: 1.7;
}

.lpw-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.lpw-hero__badges span {
    display: inline-flex;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 10px 13px;
    border-radius: 6px;
    font-weight: 800;
}

.lpw-search-wrap { align-self: end; }

.lpw-searchbox {
    width: 100%;
    max-width: 610px;
    background: rgba(20,20,20,.78);
    padding: 14px 16px 18px;
    border-radius: 6px;
    box-shadow: 0 24px 50px rgba(0,0,0,.28);
}

.lpw-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.lpw-tabs button {
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: #fff;
    padding: 9px 14px;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
}

.lpw-tabs button.active { background: var(--lpw-green); }

.lpw-main-search-row {
    display: grid;
    grid-template-columns: 1fr 116px;
    gap: 0;
}

.lpw-main-search-row input,
.lpw-filter-row select,
.lpw-newsletter input {
    width: 100%;
    height: 46px;
    border-radius: 5px;
    border: 1px solid #d7dddf;
    padding: 0 13px;
    font: inherit;
    color: #333;
}

.lpw-main-search-row input { border-top-right-radius: 0; border-bottom-right-radius: 0; }
.lpw-main-search-row button {
    border: 0;
    background: var(--lpw-orange);
    color: #fff;
    border-radius: 0 5px 5px 0;
    font-weight: 900;
    cursor: pointer;
}

.lpw-filter-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.lpw-featured-now {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    align-items: center;
    width: 360px;
    margin: 15px 0 0 auto;
    background: #fff;
    color: #202124;
    padding: 12px;
    border-radius: 6px;
    box-shadow: var(--lpw-shadow);
    position: relative;
    text-decoration: none;
}

.lpw-featured-now > span {
    position: absolute;
    left: 12px;
    top: -12px;
    color: #222;
    background: #ffd335;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 900;
}

.lpw-featured-now__thumb {
    height: 64px;
    border-radius: 4px;
    background: #d9eee5 center/cover no-repeat;
}
.lpw-featured-now strong { display: block; color: var(--lpw-green); font-size: 20px; font-weight: 900; }
.lpw-featured-now small { color: #333; font-weight: 800; }

.lpw-quick-actions {
    background: #f2f3f8;
    padding: 48px 0 42px;
}

.lpw-quick-actions h2,
.lpw-popular-searches h2 {
    text-align: left;
    font-size: 28px;
    color: #333;
    margin: 0 0 4px;
    font-weight: 800;
}

.lpw-quick-actions p { color: var(--lpw-muted); margin-bottom: 24px; }

.lpw-action-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.lpw-action-grid a {
    display: block;
    min-height: 162px;
    background: #fff;
    border: 1px solid #cfd6da;
    border-radius: 6px;
    padding: 18px 14px;
    color: #333;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.lpw-action-grid a:hover {
    transform: translateY(-4px);
    border-color: var(--lpw-green);
    box-shadow: var(--lpw-soft-shadow);
}

.lpw-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(0,148,50,.12);
    color: var(--lpw-green);
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 14px;
}

.lpw-action-grid strong { display: block; color: var(--lpw-green); font-size: 15px; line-height: 1.25; margin-bottom: 8px; }
.lpw-action-grid small { color: #687278; line-height: 1.45; }

.lpw-ad-strip { padding: 42px 0 20px; }
.lpw-ad-card {
    min-height: 190px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, #113d61, #0a1a2f 58%, #19432f);
    color: #fff;
    border-radius: 4px;
    padding: 34px 42px;
    box-shadow: var(--lpw-shadow);
    overflow: hidden;
    position: relative;
}
.lpw-ad-card:after {
    content: '';
    position: absolute;
    right: 5%;
    top: -50%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.lpw-ad-card span { color: #ffd335; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.lpw-ad-card h2 { color: #fff; font-size: 34px; max-width: 760px; margin: 8px 0 8px; text-align: left; }
.lpw-ad-card p { color: rgba(255,255,255,.82); margin: 0; }
.lpw-ad-card a { position: relative; z-index: 1; background: var(--lpw-orange); color: #fff; padding: 13px 18px; border-radius: 4px; font-weight: 900; text-decoration: none; }

.lpw-section { padding: 50px 0; }
.lpw-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
    border-bottom: 1px solid #eceff1;
    padding-bottom: 14px;
}
.lpw-section-heading span {
    display: block;
    color: var(--lpw-green);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    margin-bottom: 6px;
}
.lpw-section-heading h2 { text-align: left; color: #333; font-size: 32px; margin: 0; font-weight: 700; }
.lpw-section-heading a { color: var(--lpw-green); font-weight: 800; text-decoration: none; white-space: nowrap; }

.lpw-property-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.lpw-theme-body .property-card {
    border-radius: 8px;
    border: 1px solid #d9dee2;
    box-shadow: 0 3px 8px rgba(0,0,0,.07);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease;
}
.lpw-theme-body .property-card:hover { transform: translateY(-4px); box-shadow: var(--lpw-shadow); }
.lpw-theme-body .property-card__image { min-height: 175px; border-radius: 0; }
.lpw-theme-body .property-card__badge { background: #ffd335; color: #172520; border-radius: 3px; }
.lpw-theme-body .property-card__type { background: #fff; color: var(--lpw-green); border-radius: 3px; }
.lpw-theme-body .property-card__body { padding: 15px 16px 18px; }
.lpw-theme-body .property-card__price { color: var(--lpw-green); font-size: 20px; font-weight: 900; }
.lpw-theme-body .property-card h3 { font-size: 16px; line-height: 1.25; margin: 0 0 8px; }
.lpw-theme-body .property-card h3 a { color: #2575a7; }
.lpw-theme-body .property-card p { font-size: 13px; color: #686f75; }
.lpw-theme-body .property-meta span { background: #eef6f1; color: #31443d; border-radius: 4px; padding: 6px 8px; }
.lpw-theme-body .button { border-radius: 4px; }
.lpw-theme-body .button--small { padding: 8px 13px; }
.lpw-theme-body .button:not(.button--ghost) { background: var(--lpw-green); }
.lpw-theme-body .button--ghost { color: var(--lpw-green); background: #eef7f2; }

.lpw-hot-section { background: #f2f3f8; }
.lpw-hot-carousel { position: relative; }
.lpw-hot-slide { flex: 0 0 292px; }
.lpw-floating-prev,
.lpw-floating-next {
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    z-index: 5;
    background: #fff;
    box-shadow: var(--lpw-soft-shadow);
}
.lpw-floating-prev { left: -20px; }
.lpw-floating-next { right: -20px; }

.lpw-info-tools { padding-top: 64px; padding-bottom: 64px; }
.lpw-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}
.lpw-tools-grid article {
    min-height: 245px;
    border-radius: 8px;
    padding: 34px;
    background: #fff;
    border: 1px solid #e1e6e8;
    box-shadow: var(--lpw-soft-shadow);
    position: relative;
    overflow: hidden;
}
.lpw-tools-grid article:after {
    content: '';
    position: absolute;
    right: 20px;
    bottom: -42px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(0,148,50,.08);
}
.lpw-tools-grid span { color: var(--lpw-orange); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.lpw-tools-grid h3 { color: #333; font-size: 28px; max-width: 520px; }
.lpw-tools-grid p { color: var(--lpw-muted); max-width: 520px; }

.lpw-social-section { background: linear-gradient(180deg, #f3f8f5, #fff); }
.lpw-social-carousel { position: relative; }
.lpw-theme-body .social-card {
    border: 1px solid #d9dee2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0,0,0,.07);
}
.lpw-theme-body .social-card__image { min-height: 160px; border-radius: 0; }
.lpw-theme-body .social-card__image span { background: #fff; color: #1877f2; border-radius: 3px; }
.lpw-theme-body .social-card__body { padding: 16px; }
.lpw-theme-body .social-card h3 { font-size: 17px; color: #333; }
.lpw-theme-body .social-card a { color: var(--lpw-green); font-weight: 900; }

.lpw-popular-searches { background: #fff; }
.lpw-search-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-top: 24px;
}
.lpw-search-columns h3 { font-size: 16px; color: #555; border-bottom: 1px solid #e5e5e5; padding-bottom: 10px; margin: 0 0 10px; }
.lpw-search-columns a { display: block; color: #555; padding: 5px 0; font-size: 13px; text-decoration: none; }
.lpw-search-columns a:hover { color: var(--lpw-green); }

.lpw-enquiry { padding: 55px 0 65px; background: #fff; }
.lpw-enquiry__panel {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 34px;
    padding: 42px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8fbf9, #eef7f2);
    border: 1px solid #e0e8e3;
    box-shadow: var(--lpw-shadow);
}
.lpw-enquiry__panel span { color: var(--lpw-orange); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.lpw-enquiry__panel h2 { text-align: left; font-size: 42px; line-height: 1; color: #111; margin: 8px 0 14px; font-weight: 900; }
.lpw-enquiry__panel p { color: var(--lpw-muted); }
.lpw-enquiry__quick-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.lpw-enquiry__quick-links a { background: #e9f5ef; color: var(--lpw-green); border-radius: 999px; padding: 9px 14px; font-weight: 900; text-decoration: none; }
.lpw-enquiry-form { align-self: center; }
.lpw-enquiry-form input,
.lpw-enquiry-form textarea { border-radius: 5px; border: 1px solid #dfe5e7; }
.lpw-enquiry-form button { background: var(--lpw-green); color: #fff; border: 0; height: 46px; border-radius: 5px; font-weight: 900; }

.lpw-footer {
    background: #e7e7e7;
    color: #111;
    padding-top: 42px;
}
.lpw-footer__grid {
    display: grid;
    grid-template-columns: 1.15fr .72fr .85fr 1.2fr;
    gap: 34px;
    padding-bottom: 34px;
}
.lpw-footer h3 { color: #111; font-size: 17px; margin-bottom: 16px; font-weight: 600; }
.lpw-footer p,
.lpw-footer a { color: #111; font-size: 13px; line-height: 1.8; }
.lpw-footer a { display: block; text-decoration: none; }
.lpw-footer a:hover { color: var(--lpw-green); }
.lpw-social-icons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.lpw-social-icons a {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--lpw-green);
    color: #fff;
}
.lpw-newsletter label { display: block; font-weight: 700; margin: 10px 0 8px; }
.lpw-newsletter div { display: grid; grid-template-columns: 1fr 105px; }
.lpw-newsletter input { border-radius: 0; }
.lpw-newsletter button { border: 0; background: var(--lpw-green); color: #fff; font-weight: 800; }
.lpw-footer__bottom { background: #333; color: #fff; padding: 18px 0; font-size: 12px; }

.lpw-floating-socials {
    position: fixed;
    right: 18px;
    bottom: 24px;
    z-index: 999;
    display: grid;
    gap: 10px;
}
.lpw-floating-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--lpw-green);
    box-shadow: var(--lpw-shadow);
}
.lpw-floating-socials a:nth-child(2) { background: #1877f2; }
.lpw-floating-socials a:nth-child(3) { background: #263238; }
.lpw-floating-socials svg { width: 20px; height: 20px; fill: currentColor; }

.lpw-theme-body [data-animate] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}
.lpw-theme-body [data-animate].is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1100px) {
    .lpw-hero__content { grid-template-columns: 1fr; align-items: center; }
    .lpw-search-wrap { align-self: auto; }
    .lpw-featured-now { margin-left: 0; }
    .lpw-action-grid { grid-template-columns: repeat(3, 1fr); }
    .lpw-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .d-none-mobile { display: none; }
    .mobile-only { display: flex; }
    .lpw-mobile-head { height: 62px; align-items: center; justify-content: space-between; padding: 0 16px; background: #fff; }
    .lpw-menu-toggle { display: inline-flex !important; width: 42px; height: 38px; border: 1px solid #dfe5e7; border-radius: 5px; background: #fff; align-items: center; justify-content: center; }
    .lpw-main-nav { position: relative; }
    .lpw-main-nav__inner.site-nav {
        display: none !important;
        position: absolute !important;
        top: 100%;
        left: 12px;
        right: 12px;
        z-index: 999;
        background: var(--lpw-green) !important;
        border-radius: 0 0 8px 8px !important;
        padding: 10px !important;
        flex-direction: column;
        align-items: stretch;
        box-shadow: var(--lpw-shadow) !important;
    }
    .lpw-main-nav__inner.site-nav.is-open { display: flex !important; }
    .lpw-main-nav__inner a { justify-content: flex-start; min-height: 38px; }
    .lpw-nav-spacer { display: none; }
    .lpw-nav-social { width: auto; }
    .lpw-hero__banner,
    .lpw-hero__panel,
    .lpw-hero__content { min-height: auto; }
    .lpw-hero__slides { grid-template-columns: 1fr; }
    .lpw-hero__panel:nth-child(n+2) { display: none; }
    .lpw-hero__content { padding-top: 46px; padding-bottom: 38px; }
    .lpw-hero h1 { font-size: 44px; }
    .lpw-searchbox { max-width: none; }
    .lpw-filter-row { grid-template-columns: 1fr; }
    .lpw-main-search-row { grid-template-columns: 1fr; gap: 8px; }
    .lpw-main-search-row input,
    .lpw-main-search-row button { border-radius: 5px; height: 46px; }
    .lpw-featured-now { width: 100%; }
    .lpw-action-grid,
    .lpw-property-row,
    .lpw-tools-grid,
    .lpw-search-columns,
    .lpw-enquiry__panel { grid-template-columns: 1fr; }
    .lpw-ad-card { grid-template-columns: 1fr; padding: 28px; }
    .lpw-ad-card h2 { font-size: 28px; }
    .lpw-section-heading { align-items: flex-start; flex-direction: column; }
    .lpw-section-heading h2 { font-size: 27px; }
    .lpw-enquiry__panel h2 { font-size: 34px; }
    .lpw-footer__grid { grid-template-columns: 1fr; }
    .lpw-floating-prev { left: 4px; }
    .lpw-floating-next { right: 4px; }
}

@media (max-width: 520px) {
    .lpw-tabs { overflow-x: auto; }
    .lpw-tabs button { white-space: nowrap; }
    .lpw-action-grid { grid-template-columns: 1fr; }
    .lpw-newsletter div { grid-template-columns: 1fr; gap: 8px; }
    .lpw-newsletter button { height: 42px; }
    .lpw-floating-socials { right: 12px; bottom: 16px; }
}


/* Header, font and social icon polish - 2026-07-01 */
body.lpw-theme-body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #1f2933;
}

body.lpw-theme-body h1,
body.lpw-theme-body h2,
body.lpw-theme-body h3,
body.lpw-theme-body .brand,
body.lpw-theme-body .lpw-tabs button,
body.lpw-theme-body .lpw-post-btn,
body.lpw-theme-body .button {
    font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
}

.lpw-topline__inner {
    height: 74px;
}

.brand--lpw,
.brand--lpw-footer {
    font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand--lpw strong,
.brand--lpw-footer strong {
    font-weight: 800;
}

.lpw-top-actions {
    gap: 10px;
    font-family: 'Open Sans', Arial, sans-serif;
}

.lpw-icon-link {
    gap: 7px;
    height: 34px;
    padding: 0 11px 0 8px;
    border: 1px solid #e2e8e5;
    border-radius: 999px;
    background: #fff;
    color: #203029 !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(16, 24, 40, .05);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.lpw-icon-link:hover {
    transform: translateY(-1px);
    border-color: #c9d8d2;
    box-shadow: 0 8px 18px rgba(16, 24, 40, .09);
}

.lpw-icon-link svg {
    width: 18px;
    height: 18px;
}

.lpw-icon-link--facebook svg { color: #1877f2; }
.lpw-icon-link--whatsapp svg { color: #25d366; }
.lpw-icon-link--email svg { color: #0f5b46; }
.lpw-icon-link--phone svg { color: #ff4a17; }

.lpw-post-btn {
    padding: 13px 20px;
    border-radius: 7px;
    font-size: 15px;
    letter-spacing: -.01em;
    box-shadow: 0 10px 22px rgba(255, 74, 23, .24);
}

.lpw-main-nav__inner {
    min-height: 46px;
}

.lpw-main-nav__inner a:not(.lpw-nav-social) {
    min-height: 46px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.01em;
}

.lpw-nav-social {
    width: auto !important;
    min-height: 46px !important;
    padding: 0 12px !important;
    gap: 7px;
    font-size: 13px !important;
}

.lpw-nav-social svg {
    width: 20px;
    height: 20px;
}

.lpw-nav-social span {
    display: inline-block;
    font-weight: 800;
}

.lpw-hero__banner {
    min-height: 470px;
}

.lpw-hero__panel {
    min-height: 470px;
}

.lpw-hero__content {
    min-height: 470px;
    grid-template-columns: minmax(0, 48%) minmax(500px, 52%);
    align-items: center;
    gap: 36px;
    padding-top: 48px;
    padding-bottom: 44px;
}

.lpw-hero__copy {
    max-width: 610px;
}

.lpw-hero h1 {
    font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
    font-size: clamp(44px, 4.5vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.035em;
    font-weight: 800;
    margin: 15px 0 18px;
    max-width: 620px;
}

.lpw-hero p {
    font-size: 17px;
    line-height: 1.65;
    max-width: 560px;
}

.lpw-eyebrow {
    font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
    letter-spacing: .13em;
    font-weight: 800;
}

.lpw-searchbox {
    max-width: 575px;
    margin-left: auto;
    border-radius: 8px;
    background: rgba(16, 24, 30, .84);
}

.lpw-featured-now {
    margin-right: 0;
    border-radius: 8px;
}

.lpw-floating-socials a {
    width: 46px;
    height: 46px;
}

.lpw-floating-socials a:first-child { background: #25d366; }
.lpw-floating-socials a:nth-child(2) { background: #1877f2; }
.lpw-floating-socials a:nth-child(3) { background: #0f5b46; }

@media (max-width: 1240px) {
    .lpw-top-actions {
        gap: 7px;
    }
    .lpw-icon-link span {
        display: none;
    }
    .lpw-icon-link {
        width: 36px;
        padding: 0;
        justify-content: center;
    }
    .lpw-hero__content {
        grid-template-columns: minmax(0, 1fr) minmax(460px, 540px);
    }
    .lpw-hero h1 {
        font-size: clamp(42px, 4.7vw, 58px);
    }
}

@media (max-width: 1100px) {
    .lpw-hero__content {
        grid-template-columns: 1fr;
    }
    .lpw-searchbox {
        margin-left: 0;
    }
}

@media (max-width: 820px) {
    .brand--lpw {
        font-size: 20px;
    }
    .lpw-main-nav__inner a:not(.lpw-nav-social),
    .lpw-nav-social {
        min-height: 40px !important;
    }
    .lpw-nav-social span {
        display: inline-block;
    }
    .lpw-hero h1 {
        font-size: clamp(38px, 10vw, 46px);
        line-height: 1.08;
        letter-spacing: -0.025em;
    }
}

@media (max-width: 520px) {
    .lpw-hero__content {
        padding-top: 36px;
    }
    .lpw-hero h1 {
        font-size: 38px;
    }
}


/* Remove duplicate social buttons from green nav and floating right side - 2026-07-01 */
.lpw-main-nav__inner {
    justify-content: flex-start;
}
.lpw-main-nav__inner .lpw-nav-spacer,
.lpw-main-nav__inner .lpw-nav-social,
.lpw-floating-socials {
    display: none !important;
}
.lpw-top-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
}
@media (max-width: 1100px) {
    .lpw-topline__inner {
        height: auto;
        min-height: 74px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}


/* Typography and contact page refinement - 2026-07-01 */
body.lpw-theme-body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: -0.006em;
}

body.lpw-theme-body h1,
body.lpw-theme-body h2,
body.lpw-theme-body h3,
body.lpw-theme-body .brand {
    font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.lpw-main-nav__inner a:not(.lpw-nav-social) {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 600 !important;
    font-size: 13.5px;
    letter-spacing: -0.01em;
}

.lpw-hero h1 {
    font-weight: 700 !important;
    font-size: clamp(42px, 4.2vw, 58px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.045em !important;
    max-width: 680px;
}

.lpw-hero p,
.page-hero p,
.detail-hero p {
    font-weight: 400;
    letter-spacing: -0.01em;
}

.page-hero,
.detail-hero {
    padding: 64px 0 70px;
    background: linear-gradient(135deg, #083928 0%, #0f5b46 55%, #0a3a31 100%);
}

.page-hero h1,
.detail-hero h1 {
    font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
    font-weight: 700 !important;
    font-size: clamp(42px, 4.4vw, 64px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.045em !important;
    max-width: 980px;
}

.eyebrow,
.lpw-eyebrow,
.lpw-section-heading span,
.lpw-ad-card span,
.lpw-tools-grid span,
.lpw-enquiry__panel span {
    font-weight: 700 !important;
    letter-spacing: .1em !important;
}

.lpw-tabs button,
.lpw-main-search-row button,
.lpw-post-btn,
.lpw-theme-body .button,
.lpw-enquiry-form button {
    font-weight: 700 !important;
}

.lpw-theme-body .property-card__price,
.detail-price strong,
.result-bar strong {
    font-weight: 700 !important;
}

.lpw-theme-body .property-card h3,
.lpw-theme-body .property-card h3 a,
.lpw-featured-now small,
.lpw-featured-now strong {
    font-weight: 600 !important;
}

.lpw-theme-body .property-meta span,
.feature-list span,
.phone-box,
.reset-link,
.back-link {
    font-weight: 600 !important;
}

.lpw-top-actions a:not(.lpw-post-btn) {
    font-weight: 600 !important;
}

.lpw-icon-link {
    font-weight: 600 !important;
    border-color: #dde7e3;
}

.lpw-footer h3,
.lpw-footer a,
.lpw-footer p {
    letter-spacing: -0.005em;
}

.contact-hero {
    background:
        radial-gradient(circle at 82% 20%, rgba(255, 211, 53, .18), transparent 28%),
        linear-gradient(135deg, #082d24, #0f5b46 58%, #072a25);
    color: #fff;
    padding: 78px 0 70px;
}

.contact-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: center;
}

.contact-hero h1 {
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.04;
    margin: 14px 0 16px;
    color: #fff;
}

.contact-hero p {
    max-width: 720px;
    color: rgba(255,255,255,.86);
    font-size: 17px;
    line-height: 1.75;
}

.contact-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.contact-hero__actions a,
.contact-methods a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.contact-hero__actions a {
    background: #fff;
    color: #0f5b46;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(0,0,0,.18);
}

.contact-hero__actions svg,
.contact-methods svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex: 0 0 auto;
}

.contact-hero__card {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(12px);
    box-shadow: 0 26px 60px rgba(0,0,0,.18);
}

.contact-hero__card strong {
    display: block;
    font-size: 24px;
    margin-bottom: 12px;
}

.contact-hero__card span {
    display: block;
    color: rgba(255,255,255,.82);
    margin-top: 8px;
}

.contact-section {
    background: #f4f6f8;
    padding: 64px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 28px;
    align-items: start;
}

.contact-info-panel,
.contact-form-panel,
.contact-map-card {
    background: #fff;
    border: 1px solid #e1e7e4;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(20, 28, 35, .08);
}

.contact-info-panel,
.contact-form-panel {
    padding: 30px;
}

.contact-info-panel h2,
.contact-form-panel h2,
.contact-map-card h2 {
    text-align: left;
    color: #15231f;
    font-size: 32px;
    margin: 0 0 20px;
}

.contact-methods {
    display: grid;
    gap: 12px;
}

.contact-methods a {
    min-height: 72px;
    padding: 14px 16px;
    border: 1px solid #e1e7e4;
    border-radius: 12px;
    color: #0f5b46;
    background: #fbfdfc;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-methods a:hover {
    transform: translateY(-2px);
    border-color: #bfd8cd;
    box-shadow: 0 10px 18px rgba(15,91,70,.08);
}

.contact-methods strong {
    display: block;
    color: #172520;
    margin-bottom: 2px;
}

.contact-methods span span,
.contact-methods span {
    color: #52625c;
}

.contact-hours {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e7ecea;
}

.contact-hours h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.contact-hours ul {
    margin: 0;
    padding-left: 18px;
    color: #52625c;
    line-height: 1.9;
}

.contact-form-panel > span {
    display: inline-block;
    color: #ff4a17;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 10px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form-grid textarea {
    grid-column: 1 / -1;
    min-height: 145px;
}

.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
    border-radius: 8px;
    border: 1px solid #dfe7e3;
    background: #fff;
}

.contact-form-panel button {
    width: 100%;
    margin-top: 16px;
    height: 48px;
    border: 0;
    border-radius: 8px;
    background: #0f5b46;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.contact-map-section {
    padding: 0 0 70px;
    background: #f4f6f8;
}

.contact-map-card {
    padding: 30px;
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 28px;
    align-items: center;
}

.contact-map-card p {
    color: #52625c;
}

.contact-map-frame {
    overflow: hidden;
    min-height: 360px;
    border-radius: 12px;
    border: 1px solid #dfe7e3;
    background: #edf4f0;
}

.contact-map-frame iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

@media (max-width: 980px) {
    .contact-hero__grid,
    .contact-grid,
    .contact-map-card {
        grid-template-columns: 1fr;
    }
    .contact-hero__card {
        max-width: 520px;
    }
}

@media (max-width: 640px) {
    .lpw-hero h1,
    .page-hero h1,
    .detail-hero h1,
    .contact-hero h1 {
        font-size: 38px !important;
        line-height: 1.1 !important;
    }
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-panel,
    .contact-form-panel,
    .contact-map-card {
        padding: 22px;
    }
    .contact-hero,
    .contact-section {
        padding: 46px 0;
    }
}

/* Footer visibility fix - make MACM brand readable on light LPW-style footer */
body.lpw-theme-body .lpw-footer .brand--lpw-footer,
body.lpw-theme-body .lpw-footer .brand--lpw-footer span,
body.lpw-theme-body .lpw-footer .brand--lpw-footer strong {
    color: #0f2f27 !important;
}

body.lpw-theme-body .lpw-footer .brand--lpw-footer strong {
    font-weight: 700;
}

body.lpw-theme-body .lpw-footer p,
body.lpw-theme-body .lpw-footer a,
body.lpw-theme-body .lpw-footer label {
    color: #1f2f2b;
}

body.lpw-theme-body .lpw-footer h3 {
    color: #0f2f27;
    font-weight: 700;
}

body.lpw-theme-body .lpw-footer__bottom,
body.lpw-theme-body .lpw-footer__bottom .container {
    color: #ffffff;
}

/* Admin professional compact UX refresh */
.admin-body,
.admin-login-body,
.admin-body h1,
.admin-body h2,
.admin-body h3,
.admin-body .button,
.admin-login-body h1,
.admin-login-body h2,
.admin-login-body h3,
.admin-login-body .button {
    font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.admin-body {
    background: linear-gradient(180deg, #f6faf8 0%, #eef6f2 100%);
    grid-template-columns: 248px minmax(0, 1fr);
    color: #102620;
    line-height: 1.45;
}

.admin-sidebar {
    background: linear-gradient(180deg, #062d23 0%, #073629 100%);
    padding: 22px 16px;
    gap: 18px;
    box-shadow: 18px 0 48px rgba(6, 45, 35, .12);
}

.admin-brand {
    gap: 11px;
    font-size: 17px;
    font-weight: 750;
    letter-spacing: -.02em;
    padding: 0 4px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.admin-brand img,
.admin-login-logo img {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255,255,255,.68);
}

.admin-menu {
    gap: 5px;
}

.admin-menu a,
.admin-logout button {
    display: flex;
    align-items: center;
    min-height: 44px;
    color: rgba(255,255,255,.78);
    padding: 10px 13px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -.01em;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.admin-menu a:hover,
.admin-menu a.active,
.admin-logout button:hover {
    color: #fff;
    background: rgba(255,255,255,.13);
    transform: translateX(2px);
}

.admin-menu a.active {
    box-shadow: inset 3px 0 0 #d5a934;
}

.admin-main {
    width: min(100%, 1420px);
    padding: 26px 30px 34px;
}

.admin-topbar {
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 22px;
}

.admin-topbar h1 {
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.02;
    letter-spacing: -.055em;
    font-weight: 800;
}

.admin-kicker {
    display: inline-flex;
    margin-bottom: 6px;
    color: #0f5b46;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
}

.admin-top-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
}

.admin-body .button,
.admin-login-body .button {
    min-height: 42px;
    padding: 0 17px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.01em;
    box-shadow: 0 12px 24px rgba(6,45,35,.13);
}

.admin-body .button--small {
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
}

.admin-body .button--light {
    background: #fff;
    color: #0f5b46;
    border: 1px solid rgba(15,91,70,.10);
    box-shadow: 0 10px 22px rgba(6,45,35,.08);
}

.admin-body .button--outline {
    background: #fff;
    color: #0f5b46;
    border: 1px solid rgba(15,91,70,.30);
}

.admin-alert {
    padding: 12px 15px;
    border-radius: 14px;
    margin-bottom: 16px;
    font-weight: 650;
}

.admin-stats-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.admin-stats-grid article,
.admin-card {
    border-color: rgba(15,91,70,.12);
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(6, 45, 35, .07);
}

.admin-stats-grid article {
    padding: 18px;
}

.admin-stats-grid span {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .01em;
}

.admin-stats-grid strong {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -.05em;
}

.admin-two-col {
    gap: 18px;
}

.admin-card {
    padding: 20px;
}

.admin-card__header {
    gap: 14px;
    margin-bottom: 16px;
}

.admin-card__header h2 {
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: -.035em;
    font-weight: 750;
}

.admin-card__header a,
.admin-list__item a,
.admin-table a,
.admin-enquiry a {
    color: #0f5b46;
    font-weight: 700;
}

.admin-help,
.admin-card__header p.muted,
.admin-card__header p {
    color: #6a7a73;
    font-size: 12.5px;
    font-weight: 500;
}

.admin-list {
    gap: 0;
}

.admin-list__item {
    gap: 12px;
    padding: 12px 0;
}

.admin-list__item strong,
.admin-table td strong {
    font-weight: 720;
    letter-spacing: -.015em;
}

.admin-list__item span,
.admin-table td span,
.admin-date {
    font-size: 12.5px;
    font-weight: 500;
}

.admin-status {
    padding: 5px 9px;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    letter-spacing: .01em;
}

.admin-filter {
    align-items: center;
    gap: 8px;
}

.admin-filter input,
.admin-filter select {
    min-height: 38px;
    min-width: 150px;
    border-radius: 12px;
    padding: 9px 12px;
    font-size: 13px;
}

.admin-table {
    min-width: 820px;
}

.admin-table th,
.admin-table td {
    padding: 12px 10px;
}

.admin-table th {
    color: #64766e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
}

.admin-table tbody tr:hover {
    background: #f8fbf9;
}

.admin-actions {
    gap: 7px;
}

.admin-actions a,
.admin-actions button {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    padding: 0 10px;
    font-size: 12.5px;
    font-weight: 700;
    background: #eef7f2;
    color: #0f5b46;
}

.admin-actions button {
    background: #fff1ee;
    color: #a33a2b;
}

.admin-pagination {
    margin-top: 16px;
}

.admin-form {
    gap: 14px;
}

.admin-form-section {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(15,91,70,.11);
    border-radius: 18px;
    background: #fbfdfc;
}

.admin-form-section__title {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(15,91,70,.10);
}

.admin-form-section__title > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 50%;
    background: #e9f4ef;
    color: #0f5b46;
    font-size: 12px;
    font-weight: 800;
}

.admin-form-section__title h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.25;
    letter-spacing: -.025em;
    font-weight: 750;
}

.admin-form-section__title p {
    margin: 3px 0 0;
    color: #6a7a73;
    font-size: 12.5px;
}

.admin-form-grid {
    gap: 12px;
}

.admin-form-grid--compact {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.admin-form-grid--three {
    grid-template-columns: repeat(4, minmax(160px, 1fr));
}

.admin-field--wide {
    grid-column: span 2;
}

.admin-form label,
.admin-login-card label {
    gap: 6px;
    margin-bottom: 0;
    color: #263f37;
    font-size: 13px;
    font-weight: 650;
    letter-spacing: -.005em;
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.admin-login-card input,
.admin-enquiry__actions select {
    margin-top: 0;
    border-color: rgba(15,91,70,.16);
    border-radius: 12px;
    padding: 10px 12px;
    min-height: 42px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 1px 0 rgba(6,45,35,.02);
}

.admin-form textarea {
    min-height: 96px;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus,
.admin-login-card input:focus,
.admin-enquiry__actions select:focus {
    border-color: #0f5b46;
    box-shadow: 0 0 0 3px rgba(15,91,70,.09);
}

.admin-check {
    font-size: 14px !important;
    font-weight: 600 !important;
}

.admin-check--card {
    display: flex !important;
    width: fit-content;
    padding: 12px 14px;
    border: 1px solid rgba(15,91,70,.13);
    border-radius: 14px;
    background: #fff;
}

.admin-current-image {
    width: fit-content;
    min-width: min(420px, 100%);
    gap: 12px;
    border: 1px solid rgba(15,91,70,.10);
    border-radius: 14px;
    padding: 10px;
    font-weight: 650;
}

.admin-current-image img {
    width: 92px;
    height: 62px;
    border-radius: 10px;
}

.admin-gallery-manager {
    background: #fff;
    border: 1px solid rgba(15,91,70,.11);
    border-radius: 16px;
    padding: 14px;
}

.admin-gallery-manager h3 {
    font-size: 16px;
    font-weight: 750;
}

.admin-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
    gap: 10px;
}

.admin-gallery-item {
    border-radius: 14px;
    padding: 8px;
}

.admin-gallery-item img {
    height: 88px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.admin-delete-image {
    padding: 8px 10px;
    font-size: 12.5px;
    font-weight: 700;
}

.admin-form-actions {
    gap: 9px;
}

.admin-form-actions--sticky {
    position: sticky;
    bottom: 0;
    z-index: 5;
    padding: 14px 0 0;
    background: linear-gradient(180deg, rgba(255,255,255,0), #fff 30%);
}

.admin-enquiry-list {
    gap: 12px;
}

.admin-enquiry {
    padding: 15px;
    border-radius: 16px;
}

.admin-enquiry h3 {
    font-size: 17px;
    font-weight: 750;
}

.admin-enquiry p {
    font-size: 14px;
}

.admin-login-body {
    background: radial-gradient(circle at 86% 8%, rgba(213,169,52,.18), transparent 28%), linear-gradient(135deg, #f7fbf8, #eaf4ef);
}

.admin-login-card {
    border-radius: 24px;
    padding: 30px;
}

.admin-login-logo {
    font-weight: 750;
}

.admin-login-card h1 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -.045em;
}

@media (max-width: 1200px) {
    .admin-stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .admin-form-grid--three {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
    }
}

@media (max-width: 980px) {
    .admin-body {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        position: static;
        height: auto;
    }
    .admin-menu {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .admin-main {
        width: 100%;
        padding: 22px 18px 30px;
    }
    .admin-topbar {
        align-items: flex-start;
        flex-direction: column;
    }
    .admin-top-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 680px) {
    .admin-sidebar {
        padding: 18px 14px;
    }
    .admin-menu,
    .admin-stats-grid,
    .admin-two-col,
    .admin-form-grid,
    .admin-form-grid--compact,
    .admin-form-grid--three {
        grid-template-columns: 1fr;
    }
    .admin-field--wide {
        grid-column: auto;
    }
    .admin-card,
    .admin-form-section {
        padding: 16px;
    }
    .admin-top-actions,
    .admin-top-actions .button,
    .admin-filter,
    .admin-filter input,
    .admin-filter select {
        width: 100%;
    }
}

/* Clean content and typography pass - 2026-07-01 */
:root {
    --macm-font-body: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --macm-font-heading: 'Sora', 'Manrope', system-ui, sans-serif;
}

body.lpw-theme-body,
body.admin-body,
body.admin-login-body,
body.lpw-theme-body input,
body.lpw-theme-body select,
body.lpw-theme-body textarea,
body.admin-body input,
body.admin-body select,
body.admin-body textarea,
body.admin-login-body input {
    font-family: var(--macm-font-body) !important;
    font-weight: 500;
    letter-spacing: -0.012em;
}

body.lpw-theme-body h1,
body.lpw-theme-body h2,
body.lpw-theme-body h3,
body.lpw-theme-body .brand,
body.lpw-theme-body .lpw-hero h1,
body.lpw-theme-body .page-hero h1,
body.lpw-theme-body .detail-hero h1,
body.lpw-theme-body .contact-hero h1,
body.admin-body h1,
body.admin-body h2,
body.admin-body h3,
body.admin-login-body h1,
body.admin-login-body h2,
body.admin-login-body h3 {
    font-family: var(--macm-font-heading) !important;
    font-weight: 700 !important;
    letter-spacing: -0.04em;
}

body.lpw-theme-body p,
body.lpw-theme-body li,
body.lpw-theme-body .muted,
body.admin-body p,
body.admin-body li,
body.admin-body .muted {
    font-weight: 500;
    line-height: 1.72;
}

body.lpw-theme-body a,
body.lpw-theme-body button,
body.lpw-theme-body .button,
body.lpw-theme-body label,
body.admin-body a,
body.admin-body button,
body.admin-body .button,
body.admin-body label,
body.admin-login-body button,
body.admin-login-body label {
    font-weight: 650 !important;
}

body.lpw-theme-body .lpw-post-btn,
body.lpw-theme-body .lpw-tabs button,
body.lpw-theme-body .lpw-main-search-row button,
body.lpw-theme-body .property-card__price,
body.lpw-theme-body .detail-price strong,
body.lpw-theme-body .phone-box,
body.admin-body .admin-status,
body.admin-body .admin-actions a,
body.admin-body .admin-actions button {
    font-weight: 700 !important;
}

body.lpw-theme-body .lpw-hero h1 {
    font-size: clamp(42px, 4.25vw, 58px) !important;
    line-height: 1.08 !important;
}

body.lpw-theme-body .detail-card h2,
body.lpw-theme-body .enquiry-card h2 {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.12;
}

body.lpw-theme-body .detail-card p {
    color: #1f2f2b;
    font-size: 16px;
    line-height: 1.78;
}

body.lpw-theme-body .overview-grid strong {
    font-family: var(--macm-font-heading);
    font-weight: 700;
}

body.admin-body .admin-form-section__title {
    padding-bottom: 8px;
}

body.admin-body .admin-form-section__title h3 {
    font-size: 16px;
    font-weight: 700 !important;
}

body.admin-body .admin-form input,
body.admin-body .admin-form select,
body.admin-body .admin-form textarea,
body.admin-login-body input {
    font-weight: 500;
}

body.admin-body .admin-card__header p,
body.admin-body .admin-help {
    display: none !important;
}

body.admin-body .admin-topbar h1 {
    font-size: clamp(30px, 3vw, 42px);
}
