/* ==========================================================================
   Lands Inner-Works — Premium Frontend Design System (Phase B)
   Hand-crafted, lightweight CSS. No framework runtime.
   Fonts: Playfair Display (headings) + Montserrat (body), loaded in head.
   ========================================================================== */

:root {
    /* Brand */
    --forest: #123A2A;
    --forest-2: #2E5E3A;
    --ivory: #F7F2E8;
    --gold: #B99A5B;
    --gold-soft: #cdb27c;
    --charcoal: #111412;

    /* Derived neutrals */
    --ivory-2: #fbf8f1;
    --line: rgba(17, 20, 18, 0.10);
    --line-gold: rgba(185, 154, 91, 0.45);
    --muted: #5b6660;
    --shadow-sm: 0 2px 10px rgba(17, 20, 18, 0.06);
    --shadow-md: 0 14px 40px rgba(17, 20, 18, 0.10);
    --shadow-lg: 0 30px 70px rgba(17, 20, 18, 0.16);

    --serif: "Playfair Display", Georgia, "Times New Roman", serif;
    --sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --container: 1200px;
    --radius: 16px;
    --radius-lg: 22px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--charcoal);
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--forest); margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
p { margin: 0 0 1rem; }

/* ---- Layout primitives --------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--forest { background: var(--forest); color: var(--ivory); }
.section--forest h1, .section--forest h2, .section--forest h3 { color: var(--ivory); }
.section--ivory2 { background: var(--ivory-2); }
.center { text-align: center; }
.grid { display: grid; gap: 28px; }
@media (min-width: 700px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 760px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.maxw-720 { max-width: 720px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---- Eyebrow / section heads -------------------------------------------- */
.eyebrow {
    font-family: var(--sans);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); display: inline-block; }
.center .eyebrow::after { content: ""; width: 28px; height: 1px; background: var(--gold); display: inline-block; }
.section--forest .eyebrow { color: var(--gold-soft); }
.lead { font-size: 1.12rem; color: var(--muted); }
.section--forest .lead { color: rgba(247, 242, 232, 0.78); }
.section-head { margin-bottom: 48px; }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 26px;
    font-size: .85rem; font-weight: 600; letter-spacing: .04em;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
    will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #1c1606; box-shadow: 0 8px 22px rgba(185, 154, 91, .35); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-forest { background: var(--forest); color: var(--ivory); }
.btn-forest:hover { background: var(--forest-2); }
.btn-outline { background: transparent; border-color: rgba(17,20,18,.22); color: var(--forest); }
.btn-outline:hover { border-color: var(--forest); background: var(--forest); color: var(--ivory); }
.btn-ghost-light { background: transparent; border-color: rgba(247,242,232,.4); color: var(--ivory); }
.btn-ghost-light:hover { background: var(--ivory); color: var(--forest); }
.btn-wa {
    background: linear-gradient(135deg, #25D366 0%, #1a8a4c 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37,211,102,.26);
}
.btn-wa:hover {
    background: linear-gradient(135deg, #1fc05a 0%, #167a3e 100%);
    box-shadow: 0 8px 26px rgba(37,211,102,.38);
}
.btn-sm { padding: 10px 18px; font-size: .78rem; }
.btn-block { width: 100%; }

/* ---- Header -------------------------------------------------------------- */
.topbar {
    background: var(--charcoal); color: rgba(247,242,232,.85);
    font-size: .78rem; letter-spacing: .02em;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar a { color: rgba(247,242,232,.85); transition: color .2s; }
.topbar a:hover { color: var(--gold-soft); }
.topbar__contacts { display: flex; gap: 22px; align-items: center; }
.topbar__note { color: var(--gold-soft); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .68rem; }
@media (max-width: 760px) { .topbar { display: none; } }

.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(247, 242, 232, 0.86);
    backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s var(--ease), background .3s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(251, 248, 241, 0.95); }
.site-header .container { display: flex; align-items: center; gap: 18px; min-height: 78px; }
.brand { display: flex; align-items: center; }
.brand img { height: 44px; width: auto; }
.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav a {
    padding: 9px 12px; font-size: .8rem; font-weight: 500; color: var(--charcoal);
    border-radius: 8px; position: relative; transition: color .2s;
    white-space: nowrap; letter-spacing: .005em;
}
.nav a::after {
    content: ""; position: absolute; left: 12px; right: 12px; bottom: 5px; height: 1.5px;
    background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav a:hover { color: var(--forest); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--forest); }
.header-cta { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.header-wa-mobile { display: none; }
.nav-toggle { display: none; }

@media (max-width: 1180px) {
    .nav a { padding: 9px 9px; font-size: .76rem; }
    .header-cta .btn-outline { display: none; }
}
@media (max-width: 1024px) {
    .nav, .header-cta { display: none; }
    .site-header .container { gap: 12px; min-height: 64px; }
    .brand img { height: 38px; }
    .header-wa-mobile { display: inline-flex; margin-left: auto; }
}

/* Mobile drawer */
.mobile-menu {
    position: fixed; inset: 0; z-index: 60; background: var(--forest); color: var(--ivory);
    transform: translateX(100%); transition: transform .35s var(--ease);
    display: flex; flex-direction: column; padding: 24px;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu__top img { height: 38px; }
.mobile-close { background: transparent; border: 0; color: var(--ivory); font-size: 2rem; line-height: 1; }
.mobile-menu nav { display: flex; flex-direction: column; margin-top: 28px; gap: 4px; }
.mobile-menu nav a {
    font-family: var(--serif); font-size: 1.5rem; padding: 12px 0;
    border-bottom: 1px solid rgba(247,242,232,.12); color: var(--ivory);
}
.mobile-menu nav a:hover { color: var(--gold-soft); }
.mobile-menu__cta { margin-top: auto; display: grid; gap: 12px; }
body.menu-open { overflow: hidden; }
body.lightbox-open { overflow: hidden; }

/* ---- Hero ---------------------------------------------------------------- */
.hero { position: relative; color: var(--ivory); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 22s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
/* YouTube background video layer — fades in only once confirmed playing */
.hero__video {
    position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s var(--ease);
    pointer-events: none; overflow: hidden;
}
.hero.video-playing .hero__video { opacity: .92; }
.hero__video iframe {
    position: absolute; top: 50%; left: 50%; width: 100vw; height: 56.25vw;
    min-height: 100%; min-width: 177.78vh; transform: translate(-50%, -50%); border: 0;
    filter: saturate(1.05);
}
.hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(130% 100% at 18% 28%, rgba(17,20,18,.52), transparent 60%),
        linear-gradient(180deg, rgba(17,20,18,.68) 0%, rgba(18,58,42,.72) 45%, rgba(18,58,42,.94) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: clamp(96px, 17vh, 200px) 0 clamp(64px, 9vh, 110px); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero__sub { font-size: 1.18rem; max-width: 60ch; color: rgba(247,242,232,.9); margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(247,242,232,.2); }
.hero__stat .num { font-family: var(--serif); font-size: 2rem; color: var(--gold-soft); }
.hero__stat .lbl { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,242,232,.75); }

/* Page banner (interior pages) */
.page-hero { background: var(--forest); color: var(--ivory); position: relative; overflow: hidden; }
.page-hero::after {
    content: ""; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px;
    border-radius: 50%; border: 1px solid rgba(185,154,91,.25);
}
.page-hero__inner { position: relative; z-index: 1; padding: clamp(56px, 9vw, 96px) 0; }
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero p { color: rgba(247,242,232,.82); max-width: 62ch; font-size: 1.08rem; }

/* ---- Breadcrumbs --------------------------------------------------------- */
.breadcrumbs { font-size: .8rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { margin: 0 8px; color: var(--line-gold); }
.page-hero .breadcrumbs, .page-hero .breadcrumbs a { color: rgba(247,242,232,.7); }

/* ---- Cards / listings ---------------------------------------------------- */
.card {
    background: #fff; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); border: 1px solid var(--line);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.listing-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--forest); }
.listing-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .listing-card__media img { transform: scale(1.05); }
.listing-card__badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
    font-size: .66rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--forest);
    backdrop-filter: blur(4px);
}
.badge--demo { background: rgba(17,20,18,.78); color: var(--gold-soft); }
.badge--type { position: absolute; top: 14px; right: 14px; background: rgba(18,58,42,.9); color: var(--ivory); }
.status-dot { display: inline-flex; align-items: center; gap: 7px; font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.status-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.status-dot.is-available::before { background: #2f9e54; }
.status-dot.is-reserved::before { background: #c9952f; }
.status-dot.is-sold::before { background: #b34b3a; }
.status-dot.is-unavailable::before { background: #8a8a8a; }

.listing-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.listing-card__loc { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.listing-card__title { font-size: 1.22rem; margin-bottom: 10px; }
.listing-card__title a:hover { color: var(--gold); }
.listing-card__desc { font-size: .92rem; color: var(--muted); margin-bottom: 16px; }
.listing-card__meta { display: flex; flex-wrap: wrap; gap: 14px 20px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 16px; font-size: .82rem; }
.listing-card__meta .k { color: var(--muted); display: block; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 2px; }
.listing-card__meta .v { font-weight: 600; color: var(--charcoal); }
.listing-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { font-family: var(--serif); font-size: 1.4rem; color: var(--forest); }
.price small { font-family: var(--sans); font-size: .72rem; color: var(--muted); display: block; letter-spacing: .04em; }
.listing-card__actions { display: flex; gap: 8px; }

/* ---- Feature / value cards ---------------------------------------------- */
.feature {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 26px; box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature__icon {
    width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
    background: var(--ivory); color: var(--forest); margin-bottom: 18px; border: 1px solid var(--line-gold);
}
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { font-size: .92rem; color: var(--muted); margin: 0; }
.section--forest .feature { background: rgba(255,255,255,.04); border-color: rgba(247,242,232,.14); }
.section--forest .feature h3 { color: var(--ivory); }
.section--forest .feature p { color: rgba(247,242,232,.72); }
.section--forest .feature__icon { background: rgba(247,242,232,.06); color: var(--gold-soft); border-color: rgba(185,154,91,.35); }

.icon { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.6; }

/* ---- Trust / split ------------------------------------------------------- */
.split { display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--media-right .split__media { order: 2; } }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/4; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.quote-card { background: var(--ivory); border-left: 3px solid var(--gold); padding: 18px 22px; border-radius: 0 12px 12px 0; font-style: italic; color: var(--forest); margin: 22px 0; }

/* ---- Process / steps ----------------------------------------------------- */
.steps { display: grid; gap: 22px; counter-reset: step; }
@media (min-width: 760px) { .steps-3 { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding: 28px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.section--forest .step { background: rgba(255,255,255,.04); border-color: rgba(247,242,232,.14); }
.step__num {
    font-family: var(--serif); font-size: 1.05rem; width: 46px; height: 46px; border-radius: 50%;
    display: grid; place-items: center; background: var(--forest); color: var(--gold-soft);
    margin-bottom: 16px; font-weight: 600;
}
.section--forest .step__num { background: var(--gold); color: var(--forest); }
.step h3 { font-size: 1.12rem; margin-bottom: 6px; }
.step p { font-size: .9rem; color: var(--muted); margin: 0; }
.section--forest .step h3 { color: var(--ivory); }
.section--forest .step p { color: rgba(247,242,232,.72); }

/* ---- Location tiles ------------------------------------------------------ */
.loc-tile { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; display: block; box-shadow: var(--shadow-sm); }
.loc-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.loc-tile:hover img { transform: scale(1.06); }
.loc-tile__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,20,18,0) 35%, rgba(17,20,18,.82) 100%); }
.loc-tile__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; color: var(--ivory); }
.loc-tile__body h3 { color: #fff; font-size: 1.35rem; margin-bottom: 4px; }
.loc-tile__count { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-soft); }
.loc-tile__link { margin-top: 8px; font-size: .82rem; color: var(--ivory); display: inline-flex; gap: 6px; opacity: .9; }

/* ---- CTA band ------------------------------------------------------------ */
.cta-band { background: var(--forest); color: var(--ivory); border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 70px); text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ---- Filters bar --------------------------------------------------------- */
.filters { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 20px; }
.filters__grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .filters__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .filters__grid { grid-template-columns: repeat(4, 1fr); } }
.field label { display: block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.field select, .field input, .field textarea {
    width: 100%; padding: 12px 14px; font-family: inherit; font-size: .9rem; color: var(--charcoal);
    background: var(--ivory-2); border: 1px solid var(--line); border-radius: 10px; transition: border-color .2s, box-shadow .2s;
}
.field select:focus, .field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(185,154,91,.18); background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.filters__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.result-count { font-size: .85rem; color: var(--muted); }
.result-count strong { color: var(--forest); }

/* ---- Single land details ------------------------------------------------- */
/* ---- Full photo gallery (land detail pages) ----------------------------- */
.pg-gallery { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }

/* Hero row — first two Main View images */
.pg-gallery__hero { display: grid; gap: 8px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .pg-gallery__hero { grid-template-columns: 1fr 1fr; } }

.pg-gallery__cell--hero { height: 300px; }
@media (min-width: 820px) { .pg-gallery__cell--hero { height: 420px; } }

/* Grid — all remaining images */
.pg-gallery__grid { display: grid; gap: 8px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .pg-gallery__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .pg-gallery__grid { grid-template-columns: repeat(4, 1fr); } }

/* Individual cell */
.pg-gallery__cell {
  position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: zoom-in; background: var(--line); height: 180px;
}
@media (min-width: 820px) { .pg-gallery__cell:not(.pg-gallery__cell--hero) { height: 200px; } }

.pg-gallery__cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s var(--ease);
  display: block;
}
.pg-gallery__cell:hover img { transform: scale(1.05); }

.detail-grid { display: grid; gap: 40px; }
@media (min-width: 980px) { .detail-grid { grid-template-columns: 1fr 360px; align-items: start; } }
.fact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 600px) { .fact-grid { grid-template-columns: repeat(3, 1fr); } }
.fact { background: #fff; padding: 18px 20px; }
.fact .k { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.fact .v { font-weight: 600; color: var(--forest); font-size: .98rem; }
.prose p { color: #2a312d; }
.prose h2, .prose h3 { margin-top: 1.6em; }
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-size: .8rem; padding: 7px 14px; border-radius: 999px; background: var(--ivory); border: 1px solid var(--line-gold); color: var(--forest); }
.ul-check { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ul-check li { position: relative; padding-left: 30px; color: #2a312d; }
.ul-check li::before { content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px; border-radius: 50%; background: var(--gold); box-shadow: inset 0 0 0 2px #fff, 0 0 0 1px var(--gold); }

.sticky-cta { position: sticky; top: 100px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 26px; }
.sticky-cta .price { font-size: 2rem; }
.sticky-cta .stack { display: grid; gap: 10px; margin: 18px 0; }
.disclaimer { font-size: .82rem; color: var(--muted); background: var(--ivory); border: 1px dashed var(--line-gold); border-radius: 12px; padding: 16px 18px; }
.disclaimer strong { color: var(--forest); }

/* ---- FAQ accordion ------------------------------------------------------- */
.faq-group { max-width: 820px; margin: 0 auto; }
.faq-cat { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin: 36px 0 14px; font-weight: 600; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; background: transparent; border: 0; padding: 20px 22px; font-size: 1.02rem; font-weight: 600; color: var(--forest); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .plus { flex: 0 0 auto; width: 22px; height: 22px; position: relative; transition: transform .3s var(--ease); }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; }
.faq-q .plus::before { left: 0; right: 0; top: 10px; height: 2px; }
.faq-q .plus::after { top: 0; bottom: 0; left: 10px; width: 2px; transition: transform .3s var(--ease); }
.faq-item.is-open .plus::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a__inner { padding: 0 22px 20px; color: var(--muted); }

/* ---- Forms (public, UI only) -------------------------------------------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: clamp(24px, 4vw, 40px); }
.form-grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .form-grid.cols-2 > .field--full { grid-column: 1 / -1; } .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .86rem; color: var(--muted); }
.consent input { margin-top: 4px; }
.form-note { font-size: .82rem; color: var(--muted); }
.alert-success { background: #eaf4ec; border: 1px solid #bcdcc4; color: #1c5b34; padding: 16px 18px; border-radius: 12px; margin-bottom: 24px; display: flex; gap: 12px; align-items: flex-start; }

/* ---- Insights / blog ----------------------------------------------------- */
.post-card__media { aspect-ratio: 16/10; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .post-card__media img { transform: scale(1.05); }
.post-meta { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.post-card__body { padding: 22px; }
.article { max-width: 760px; margin: 0 auto; }
.article p { font-size: 1.08rem; color: #2a312d; line-height: 1.8; }
.article h2 { margin-top: 1.8em; }
.article__hero { aspect-ratio: 16/8; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 36px; }
.article__hero img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Legal / policy pages ------------------------------------------------ */
.policy { max-width: 820px; margin: 0 auto; }
.policy h2 { font-size: 1.4rem; margin-top: 2em; }
.policy p, .policy li { color: #2a312d; }
.policy ul { padding-left: 20px; }
.policy ul li { margin-bottom: 8px; }

/* ---- Error pages --------------------------------------------------------- */
.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center; background: var(--forest); color: var(--ivory); }
.error-page h1 { color: #fff; font-size: clamp(4rem, 16vw, 9rem); margin-bottom: 0; }
.error-page .code { color: var(--gold-soft); letter-spacing: .3em; text-transform: uppercase; font-size: .8rem; }
.error-page p { color: rgba(247,242,232,.8); max-width: 48ch; margin: 12px auto 28px; }

/* ---- Footer -------------------------------------------------------------- */
.site-footer { background: var(--charcoal); color: rgba(247,242,232,.72); padding-top: 72px; font-size: .9rem; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer-brand__mark { display: flex; align-items: baseline; gap: 10px; font-family: var(--serif); font-size: 1.5rem; color: var(--ivory); line-height: 1; }
.footer-brand__mark .zz { font-family: var(--sans); font-size: .7rem; letter-spacing: .3em; color: var(--gold-soft); text-transform: uppercase; }
.site-footer h4 { font-family: var(--sans); color: var(--ivory); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-links a { transition: color .2s, padding .2s; }
.footer-links a:hover { color: var(--gold-soft); padding-left: 4px; }
.footer-contact a { color: rgba(247,242,232,.8); }
.footer-contact a:hover { color: var(--gold-soft); }
.footer-wa { display: grid; gap: 10px; margin-top: 16px; }
.site-footer .disclaimer-foot { font-size: .8rem; color: rgba(247,242,232,.5); border-top: 1px solid rgba(247,242,232,.12); margin-top: 56px; padding: 26px 0; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; }
.footer-bottom .legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ---- WhatsApp float ------------------------------------------------------ */
.wa-float {
    position: fixed; right: 20px; bottom: 20px; z-index: 45;
    width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
    display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.45);
    transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---- Utilities ----------------------------------------------------------- */
.text-gold { color: var(--gold); }
.divider-gold { width: 60px; height: 2px; background: var(--gold); border: 0; margin: 22px 0; }
.center .divider-gold { margin-left: auto; margin-right: auto; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 28px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.tag { font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); background: var(--ivory); border: 1px solid var(--line); border-radius: 999px; padding: 5px 11px; }

/* ---- Reveal on scroll ---------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   PHASE 2 — Premium refinement: texture, motion, mobile nav, modals
   ========================================================================== */

/* ---- Subtle section texture / detailing ---------------------------------- */
.section { position: relative; }
.section--texture::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
    background:
        radial-gradient(60% 50% at 85% 0%, rgba(185,154,91,.12), transparent 70%),
        radial-gradient(50% 60% at 0% 100%, rgba(46,94,58,.35), transparent 70%);
}
.section--texture > .container { position: relative; z-index: 1; }
.section--ivory2 { background:
    linear-gradient(180deg, #fbf8f1 0%, #f7f1e6 100%); }
/* elegant gold hairline divider between stacked sections */
.section + .section::before {
    content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: min(1100px, 86%); height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-gold), transparent);
    opacity: .6;
}

/* ---- Button glow / active states ----------------------------------------- */
.btn:active { transform: translateY(0) scale(.985); }
.btn-glow { position: relative; }
.btn-glow::after {
    content: ""; position: absolute; inset: 0; border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(185,154,91,.45); transition: box-shadow .4s var(--ease); pointer-events: none;
}
.btn-glow:hover::after { box-shadow: 0 0 26px 2px rgba(185,154,91,.5); }
.btn-forest:hover { box-shadow: 0 12px 30px rgba(18,58,42,.32); }
.btn-outline:focus-visible, .btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---- Interactive feature cards ------------------------------------------- */
.feature--interactive { position: relative; overflow: hidden; }
.feature--interactive::before {
    content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-soft));
    transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.feature--interactive:hover::before { transform: scaleX(1); }
.feature--interactive:hover .feature__icon {
    background: var(--forest); color: var(--gold-soft); border-color: var(--forest);
    transform: translateY(-2px) rotate(-3deg);
}
.feature__icon { transition: background .3s var(--ease), color .3s, transform .3s var(--ease), border-color .3s; }

/* ---- Card image tilt (split media) --------------------------------------- */
.tilt { transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.tilt:hover { transform: perspective(1200px) rotateX(1.2deg) rotateY(-1.6deg) translateY(-4px); box-shadow: var(--shadow-lg); }

/* ---- Badge note ---------------------------------------------------------- */
.badge--note { position: absolute; bottom: 14px; left: 14px; top: auto;
    background: rgba(17,20,18,.72); color: var(--gold-soft); }

/* ---- Live ticker --------------------------------------------------------- */
.ticker {
    background: var(--charcoal); color: rgba(247,242,232,.82);
    border-top: 1px solid rgba(185,154,91,.25); border-bottom: 1px solid rgba(185,154,91,.25);
    overflow: hidden; white-space: nowrap; position: relative;
}
.ticker::before, .ticker::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--charcoal), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--charcoal), transparent); }
.ticker__track { display: inline-flex; align-items: center; gap: 0; padding: 13px 0; animation: tickerScroll 46s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item { display: inline-flex; align-items: center; font-size: .8rem; letter-spacing: .04em; padding: 0 30px; text-transform: none; }
.ticker__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-right: 14px; box-shadow: 0 0 0 4px rgba(185,154,91,.18); }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Timeline (buyer journey) -------------------------------------------- */
.timeline { position: relative; display: grid; gap: 6px; max-width: 880px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 23px; top: 8px; bottom: 8px; width: 2px;
    background: linear-gradient(180deg, var(--gold), rgba(185,154,91,.2)); }
.timeline__step { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 20px; align-items: start;
    padding: 16px; border-radius: var(--radius); transition: background .3s var(--ease), transform .3s var(--ease); }
.timeline__step:hover { background: #fff; box-shadow: var(--shadow-sm); transform: translateX(4px); }
.timeline__num { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; z-index: 1;
    background: var(--forest); color: var(--gold-soft); font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
    box-shadow: 0 0 0 6px var(--ivory-2); transition: background .3s, color .3s, transform .3s var(--ease); }
.timeline__step:hover .timeline__num { background: var(--gold); color: var(--forest); transform: scale(1.06); }
.timeline__body h3 { font-size: 1.18rem; margin: 6px 0 4px; }
.timeline__body p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ---- CTA band ornament --------------------------------------------------- */
.cta-band--ornament::before, .cta-band--ornament::after {
    content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(185,154,91,.22); pointer-events: none;
}
.cta-band--ornament::before { width: 320px; height: 320px; top: -140px; right: -100px; }
.cta-band--ornament::after { width: 200px; height: 200px; bottom: -110px; left: -60px; }

/* ---- Footer brand logo --------------------------------------------------- */
.footer-brand__logo { display: inline-flex; }
.footer-brand__logo img { height: 48px; width: auto; }

/* ---- Reveal: stagger + variants ------------------------------------------ */
.reveal.stagger.is-visible > * { animation: revealUp .7s var(--ease) backwards; }
.reveal.stagger.is-visible > *:nth-child(1) { animation-delay: .04s; }
.reveal.stagger.is-visible > *:nth-child(2) { animation-delay: .12s; }
.reveal.stagger.is-visible > *:nth-child(3) { animation-delay: .20s; }
.reveal.stagger.is-visible > *:nth-child(4) { animation-delay: .28s; }
.reveal.stagger.is-visible > *:nth-child(5) { animation-delay: .36s; }
.reveal.stagger.is-visible > *:nth-child(6) { animation-delay: .44s; }
.reveal.stagger.is-visible > *:nth-child(7) { animation-delay: .52s; }
.reveal.stagger.is-visible > *:nth-child(8) { animation-delay: .60s; }
@keyframes revealUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* ---- Back to top --------------------------------------------------------- */
.to-top {
    position: fixed; right: 20px; bottom: 86px; z-index: 44;
    width: 46px; height: 46px; border-radius: 14px; border: 1px solid var(--line-gold);
    background: rgba(247,242,232,.92); color: var(--forest); backdrop-filter: blur(8px);
    display: grid; place-items: center; box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background .25s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--forest); color: var(--gold-soft); border-color: var(--forest); }
.to-top svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (min-width: 1025px) { .to-top { bottom: 88px; right: 24px; } }

/* ---- Bottom mobile navigation (primary mobile pattern) ------------------- */
.bottom-nav { display: none; }
@media (max-width: 1024px) {
    .bottom-nav {
        display: grid; grid-template-columns: repeat(5, 1fr);
        position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 55;
        background: rgba(247,242,232,.82); backdrop-filter: saturate(160%) blur(18px);
        border: 1px solid rgba(255,255,255,.5); border-radius: 22px;
        box-shadow: 0 12px 40px rgba(17,20,18,.18), inset 0 1px 0 rgba(255,255,255,.5);
        padding: 8px 6px; padding-bottom: max(8px, env(safe-area-inset-bottom));
    }
    .bottom-nav__item {
        display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
        background: transparent; border: 0; padding: 6px 2px; color: var(--muted); border-radius: 14px;
        font-family: var(--sans); transition: color .2s var(--ease);
    }
    .bottom-nav__icon { display: grid; place-items: center; width: 26px; height: 26px; }
    .bottom-nav__icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s var(--ease); }
    .bottom-nav__label { font-size: .64rem; font-weight: 600; letter-spacing: .03em; }
    .bottom-nav__item.is-active { color: var(--forest); }
    .bottom-nav__item:active .bottom-nav__icon svg { transform: scale(.9); }
    /* centre Home action — raised gold pill */
    .bottom-nav__item--center { position: relative; }
    .bottom-nav__item--center .bottom-nav__icon {
        width: 52px; height: 52px; border-radius: 50%; margin-top: -26px;
        background: linear-gradient(160deg, var(--gold-soft), var(--gold)); color: #1c1606;
        box-shadow: 0 10px 24px rgba(185,154,91,.5); border: 3px solid var(--ivory-2);
    }
    .bottom-nav__item--center .bottom-nav__icon svg { width: 24px; height: 24px; stroke-width: 2; }
    .bottom-nav__item--center.is-active { color: var(--forest); }
    /* keep content clear of the floating bar + reposition floats */
    body { padding-bottom: 78px; }
    /* wa-float is redundant on mobile — bottom nav "More" sheet already surfaces WhatsApp */
    .wa-float { display: none; }
    .to-top { bottom: 90px; right: 16px; }
}

/* ---- Modals -------------------------------------------------------------- */
.modal-root { position: fixed; inset: 0; z-index: 90; display: none; }
.modal-root.is-open { display: grid; place-items: center; padding: 20px; }
.modal-backdrop { position: fixed; inset: 0; background: rgba(17,20,18,.62); backdrop-filter: blur(4px); animation: fadeIn .3s var(--ease); }
.modal {
    position: relative; z-index: 1; width: min(620px, 100%); max-height: 90vh; overflow-y: auto;
    background: var(--ivory); border: 1px solid var(--line-gold); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); padding: clamp(24px, 4vw, 40px);
    animation: modalIn .4s var(--ease);
}
.modal__close { position: absolute; top: 14px; right: 16px; background: transparent; border: 0; font-size: 1.8rem; line-height: 1; color: var(--muted); transition: color .2s; }
.modal__close:hover { color: var(--forest); }
.modal__title { font-size: clamp(1.5rem, 3.4vw, 2rem); margin: 6px 0 8px; }
.modal__intro { color: var(--muted); font-size: .96rem; margin-bottom: 8px; }
.modal__parcel { font-size: .86rem; color: var(--forest); background: rgba(185,154,91,.12); border: 1px solid var(--line-gold); border-radius: 10px; padding: 10px 14px; margin: 6px 0 18px; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
body.modal-open { overflow: hidden; }

/* ---- Listing facts: extra rows ------------------------------------------- */
.fact .v small { display: block; font-weight: 500; color: var(--muted); font-size: .8rem; }

/* ---- Checklist readability on dark sections (fixes low-contrast bug) ------ */
.section--forest .ul-check li,
.page-hero .ul-check li { color: rgba(247, 242, 232, .9); }
.section--forest .ul-check li::before,
.page-hero .ul-check li::before { box-shadow: inset 0 0 0 2px var(--forest), 0 0 0 1px var(--gold); }
/* Scannable checklist card variant */
.checklist {
    display: grid; gap: 12px; list-style: none; padding: 0; margin: 18px 0 0;
}
.checklist li {
    display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px;
    background: rgba(255,255,255,.05); border: 1px solid rgba(247,242,232,.14);
    border-radius: 12px; color: rgba(247,242,232,.92); font-size: .95rem;
    transition: background .25s var(--ease), transform .25s var(--ease), border-color .25s;
}
.checklist li:hover { background: rgba(255,255,255,.09); transform: translateX(4px); border-color: var(--line-gold); }
.checklist li svg { flex: 0 0 auto; width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-top: 1px; }
.section--ivory2 .checklist li, .section:not(.section--forest) .checklist li { background: #fff; border-color: var(--line); color: #2a312d; }

/* ---- Reduced motion ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
    .hero__bg img, .ticker__track { animation: none !important; }
    .reveal.stagger.is-visible > * { animation: none !important; }
    .hero__video { display: none !important; }
}

/* ==========================================================================
   PHASE 3 — Mobile refinement, filter collapsible, premium polish
   ========================================================================== */

/* ---- Mobile hero improvements -------------------------------------------- */
@media (max-width: 767px) {
    .hero__inner {
        padding-top: clamp(72px, 14vh, 120px);
        padding-bottom: clamp(48px, 8vh, 80px);
        text-align: center;
    }
    .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); max-width: 100%; }
    .hero__sub { font-size: 1.05rem; max-width: 100%; text-align: center; }
    .eyebrow { justify-content: center; }
    .hero__cta {
        flex-direction: column; align-items: center; gap: 12px;
    }
    .hero__cta .btn { width: 100%; max-width: 320px; justify-content: center; }
    .hero__stats {
        justify-content: center; gap: 24px; margin-top: 36px;
        flex-wrap: wrap;
    }
    .hero__stat { text-align: center; }
}

/* ---- Mobile filter: collapsible panel ------------------------------------ */
.filters-topbar {
    display: none; /* hidden on desktop */
}
.filter-panel { /* desktop: always open */ }
.desktop-show { display: block; }

@media (max-width: 759px) {
    /* Show the compact topbar on mobile */
    .filters-topbar {
        display: flex; align-items: center; justify-content: space-between;
        padding: 10px 0;
    }
    .filters-topbar__count {
        font-size: .88rem; color: var(--muted);
    }
    .filters-topbar__count strong { color: var(--charcoal); font-weight: 700; }

    /* The expand/collapse toggle button */
    .filter-toggle {
        display: inline-flex; align-items: center; gap: 6px;
        padding: 8px 16px; border-radius: 999px;
        border: 1px solid var(--line-gold); background: transparent;
        font-family: var(--sans); font-size: .78rem; font-weight: 600;
        color: var(--forest); letter-spacing: .04em;
        transition: background .22s, border-color .22s, color .22s;
    }
    .filter-toggle:hover { background: var(--forest); color: var(--ivory); border-color: var(--forest); }
    .filter-toggle svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

    /* Collapsed state */
    .filter-panel {
        max-height: 0; overflow: hidden;
        transition: max-height .38s cubic-bezier(0.22, 0.61, 0.36, 1);
    }
    .filter-panel.is-open { max-height: 520px; }

    /* Slim down the filter form on mobile */
    .filters {
        border: none; box-shadow: none;
        background: transparent; padding: 12px 0 4px;
    }
    .filters__grid { grid-template-columns: 1fr; gap: 10px; }
    .filters__foot { padding-top: 8px; }
    .desktop-show { display: none; }
}

/* ---- WhatsApp float: desktop-only refinements ---------------------------- */
@media (min-width: 1025px) {
    .wa-float {
        width: 52px; height: 52px;
        background: linear-gradient(145deg, #25D366 0%, #1a8a4c 100%);
        box-shadow: 0 10px 30px rgba(37,211,102,.38);
    }
    .wa-float:hover { transform: scale(1.07); box-shadow: 0 14px 36px rgba(37,211,102,.50); }
    .wa-float svg { width: 26px; height: 26px; }
}

/* ---- Header WhatsApp button: icon alignment on mobile -------------------- */
@media (max-width: 1024px) {
    .header-wa-mobile {
        padding: 9px 14px; gap: 6px;
        border-radius: 999px;
        background: linear-gradient(135deg, #25D366 0%, #1a8a4c 100%);
        box-shadow: 0 4px 14px rgba(37,211,102,.28);
    }
    .header-wa-mobile .icon { width: 16px; height: 16px; }
}

/* ---- Section header topbar: sticky position aware ----------------------- */
.filters-section { top: 64px !important; }
@media (max-width: 1024px) { .filters-section { top: 64px !important; } }

/* ---- Typography micro-refinements --------------------------------------- */
.hero__stat .num { font-size: clamp(1.5rem, 4vw, 2rem); }

/* ---- Listing card: hover lift refinement -------------------------------- */
.card { transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* ---- btn-glow: updated pulse for gold button ---------------------------- */
.btn-gold.btn-glow {
    box-shadow: 0 8px 22px rgba(185,154,91,.4), 0 0 0 0 rgba(185,154,91,.3);
    animation: goldPulse 2.8s ease-in-out infinite;
}
@keyframes goldPulse {
    0%, 100% { box-shadow: 0 8px 22px rgba(185,154,91,.4), 0 0 0 0 rgba(185,154,91,.3); }
    50% { box-shadow: 0 10px 28px rgba(185,154,91,.5), 0 0 0 8px rgba(185,154,91,.0); }
}
