/* ===========================================================
   Lush Villas Seminyak — v2 Home Page
   Based on Figma design (file: JAAdzFND9dYD1WGgXQok2T)
   =========================================================== */

:root {
    --c-white: #ffffff;
    --c-black: #000000;
    --c-ink: #1b1c1c;
    --c-ink-2: #272727;
    --c-text: #555555;
    --c-text-2: #5f5e5e;
    --c-border: #f5f5f5;
    --c-border-2: #e5e5e5;
    --c-card-soft: #e9e8e7;
    --c-bg-soft: #f7f7f7;
    --c-cream: #fcfaee;
    --c-brand: #672f25;
    --c-bronze: #a6967b;
    --c-bronze-2: #a7977b;
    --c-gold: #ffe082;
    --c-gold-dark: #725c00;
    --c-sage: #6c7b79;
    --c-green: #006e1f;
    --c-footer: #231f20;
    --c-btn: #0d0d0d;

    --radius-pill: 9999px;
    --radius-btn: 12px;

    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, .25);
    --shadow-card: 0 10px 30px -12px rgba(0, 0, 0, .12);

    --font: "DM Sans", system-ui, sans-serif;
    --font-mono: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--c-ink-2);
    background: var(--c-white);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ---------- buttons / pills ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2em;
    border-radius: var(--radius-btn);
    transition: transform .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--c-btn); color: #fff; }
.btn-primary:hover { background: #222; }
.btn-outline { background: #fff; color: var(--c-ink-2); border: 1px solid var(--c-ink-2); }
.btn-lg { padding: 18px 32px; font-size: 13px; box-shadow: var(--shadow-lg); }

.pill {
    display: inline-block;
    padding: 8px 20px;
    background: var(--c-brand);
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .18em;
}

/* ---------- section basics ---------- */
section { padding: 96px 0; }
.eyebrow {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--c-text);
}
.section-title {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.07;
    color: var(--c-ink-2);
    margin: 0 0 16px;
}
.section-sub {
    font-size: 15px;
    color: var(--c-text);
    line-height: 1.6;
    margin: 0;
}

/* ---------- NAV ---------- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--c-border);
}
.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.nav__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--c-ink-2);
    text-transform: uppercase;
    line-height: 1;
}
.nav__brand-1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .02em;
}
.nav__brand-2 {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .4em;
    margin-top: 6px;
    padding-left: .4em; /* optical centering to offset trailing tracking */
}
.nav__menu {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0; padding: 0;
}
.nav__menu a {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--c-text);
    transition: color .2s;
}
.nav__menu a:hover { color: var(--c-ink-2); }
.nav__toggle { display: none; font-size: 24px; color: var(--c-ink-2); }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 220px 0 120px;
    background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.55)), url("../images/v2/hero-bg.png") center/cover no-repeat;
    color: #fff;
}
.hero__content {
    max-width: 720px;
    margin: 0;
    text-align: left;
}
.hero__pill { margin-bottom: 28px; }
.hero h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 600;
    line-height: 1.0;
    margin: 0 0 24px;
    letter-spacing: -.01em;
}
.hero__sub {
    font-size: 18px;
    line-height: 1.625;
    max-width: 540px;
    margin: 0 0 48px;
    color: rgba(255,255,255,.92);
}
.hero__stats {
    display: flex;
    gap: 48px;
    align-items: center;
}
.hero__stat { }
.hero__stat-num {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}
.hero__stat-label {
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .18em;
}
.hero__divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,.4);
}

/* ---------- LISTING (Available Units) ---------- */
.listing { background: #fff; }
.listing__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.listing__link {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--c-text);
    border-bottom: 2px solid var(--c-text);
    padding-bottom: 4px;
}
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.property-card {
    background: #fff;
    border: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s;
}
.property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.property-card__img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.property-card__img img { width: 100%; height: 100%; object-fit: cover; }
.property-card__badge {
    position: absolute;
    top: 16px; left: 16px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--c-ink-2);
    border-radius: var(--radius-pill);
}
.property-card__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.property-card__name {
    font-size: 26px;
    font-weight: 600;
    margin: 0;
    color: var(--c-ink-2);
}
.property-card__loc {
    font-size: 14px;
    font-weight: 300;
    color: var(--c-text);
}
.property-card__loc i { margin-right: 6px; color: var(--c-bronze); }
.property-card__price { font-size: 18px; font-weight: 600; color: var(--c-ink-2); }
.property-card__meta {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--c-border);
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--c-text);
}
.property-card__btn {
    display: block;
    text-align: center;
    padding: 14px;
    border: 1px solid #000;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .13em;
    transition: background .2s, color .2s;
}
.property-card__btn:hover { background: #000; color: #fff; }

/* ---------- OVERVIEW (16 units) ---------- */
.overview {
    background: #000;
    color: #fff;
    padding: 128px 0;
}
.overview__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.overview__visual {
    position: relative;
}
.overview__visual img {
    width: 100%;
    height: 544px;
    object-fit: cover;
    display: block;
}
.overview__badge {
    position: absolute;
    left: 32px;
    bottom: -48px;
    background: #a6967b;
    color: #fff;
    padding: 36px 48px;
    min-width: 260px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .4);
}
.overview__badge-num {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
}
.overview__badge-cap {
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .18em;
    line-height: 1.5;
}
.overview__title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 32px;
    color: #fff;
}
.overview__text {
    font-size: 15px;
    line-height: 1.95;
    color: rgba(255, 255, 255, .75);
    margin: 0 0 48px;
    max-width: 543px;
}
.overview__feats { display: flex; flex-direction: column; gap: 28px; }
.overview__feat {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.overview__feat-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}
.overview__feat h5 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 4px;
    color: #fff;
    line-height: 1.27;
}
.overview__feat p {
    margin: 0;
    font-size: 15px;
    line-height: 1.33;
    color: rgba(255, 255, 255, .7);
}
@media (max-width: 992px) {
    .overview { padding: 80px 0; }
    .overview__grid { grid-template-columns: 1fr; gap: 64px; }
    .overview__badge { left: 20px; bottom: -32px; padding: 28px 32px; min-width: 220px; }
    .overview__visual img { height: 420px; }
}

/* ---------- BANNER + FEATURES (Global Standards) ---------- */
.banner {
    background: var(--c-brand);
    color: #fff;
    padding: 56px 0;
}
.banner__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 32px;
}
.banner h2 {
    font-size: 31px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    text-align: left;
}
.banner__grid span {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    letter-spacing: .02em;
}
@media (max-width: 768px) {
    .banner__grid { grid-template-columns: 1fr; text-align: center; }
    .banner h2 { text-align: center; }
}
.features { background: var(--c-cream); padding: 96px 0; }
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}
.feature-tile {
    padding: 24px;
}
.feature-tile__icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    color: var(--c-bronze);
    font-size: 32px;
    margin-bottom: 20px;
}
.feature-tile h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--c-ink);
}
.feature-tile p {
    font-size: 14px;
    color: var(--c-text);
    line-height: 1.6;
    margin: 0;
}

/* ---------- ROI BENTO ---------- */
.roi { background: var(--c-bg-soft); }
.roi__head { text-align: left; margin-bottom: 56px; max-width: 720px; }
.roi__head h2 { font-size: 45px; font-weight: 600; color: #000; margin: 0 0 16px; }
.roi__bento {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}
.bento-card {
    padding: 40px;
    background: #fff;
    box-shadow: var(--shadow-card);
    border-radius: 4px;
}
.bento-a { grid-column: 1; grid-row: 1; }
.bento-b {
    grid-column: 2; grid-row: 1;
    background: var(--c-brand);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.bento-b::before {
    content: "";
    position: absolute; inset: 0;
    background: url("../images/v2/strategic-locations.png") center/cover no-repeat;
    opacity: .15;
}
.bento-b > * { position: relative; }
.bento-c { grid-column: 1; grid-row: 2; }
.bento-d {
    grid-column: 2; grid-row: 2;
    background: var(--c-sage);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.bento-card__icon { font-size: 28px; color: var(--c-bronze); margin-bottom: 20px; }
.bento-card h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 16px;
}
.bento-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--c-text);
    margin: 0 0 24px;
}
.bento-b p, .bento-d p { color: var(--c-card-soft); }
.bento-a__stats {
    display: flex;
    gap: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(208,198,175,.3);
}
.bento-a__stat-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #000;
    margin-bottom: 6px;
}
.bento-a__stat-val { font-size: 37px; font-weight: 600; color: #000; line-height: 1; }
.bento-a__stat-val.brand { color: var(--c-brand); }
.market-row { margin-bottom: 20px; }
.market-row__head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}
.market-row__label { font-weight: 500; color: var(--c-ink-2); }
.market-row__val { font-family: var(--font-mono); font-weight: 700; font-size: 18px; color: var(--c-green); }
.market-row__bar { height: 8px; background: var(--c-card-soft); border-radius: var(--radius-pill); overflow: hidden; }
.market-row__bar span { display: block; height: 100%; background: var(--c-green); border-radius: var(--radius-pill); }

/* ---------- STEPS ---------- */
.steps { background: #fff; text-align: center; }
.steps__head { max-width: 680px; margin: 0 auto 72px; }
.steps__head h2 { font-size: 45px; font-weight: 600; color: var(--c-ink); margin: 0 0 16px; }
.steps__flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.steps__flow::before {
    content: "";
    position: absolute;
    top: 40px; left: 12%; right: 12%;
    height: 1px;
    background: rgba(208,198,175,.5);
    z-index: 0;
}
.step { position: relative; z-index: 1; }
.step__circle {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(208,198,175,.4);
    box-shadow: var(--shadow-card);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0 auto 24px;
}
.step.is-highlight .step__circle {
    background: var(--c-gold-dark);
    border-color: var(--c-gold-dark);
    color: var(--c-bronze);
}
.step h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--c-ink);
    margin: 0 0 8px;
}
.step p {
    font-size: 14px;
    color: var(--c-text);
    line-height: 1.6;
    margin: 0;
}
.step.is-highlight h4 { color: var(--c-bronze); }

/* ---------- TRUST ---------- */
.trust {
    background: var(--c-ink);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.trust::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/v2/transparency-bg.png") left center/cover no-repeat;
    opacity: .6;
}
.trust::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(27,28,28,1) 40%, rgba(27,28,28,0));
}
.trust__content { position: relative; z-index: 1; max-width: 600px; }
.trust h2 {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 24px;
}
.trust p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--c-card-soft);
    margin: 0 0 40px;
}
.trust__partners-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--c-gold);
    margin-bottom: 20px;
}
.trust__partners {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.trust__partners img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .85;
}

/* ---------- FINAL CTA ---------- */
.final { background: var(--c-bg-soft); text-align: center; }
.final h2 {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--c-ink);
    margin: 0 0 20px;
}
.final p {
    font-size: 18px;
    color: var(--c-text);
    max-width: 600px;
    margin: 0 auto 40px;
}
.final__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--c-footer);
    color: #fff;
    padding: 72px 0 32px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer__logo { width: 136px; height: auto; filter: brightness(0) invert(1); }
.footer__brand-name {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin: 16px 0 24px;
}
.footer__badges { display: flex; flex-direction: column; gap: 16px; }
.footer__badge-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .18em;
    margin-bottom: 8px;
    color: #fff;
}
.footer__badge-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}
.footer h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,.85);
    transition: color .2s;
}
.footer ul a:hover { color: #fff; }
.footer__contact { font-size: 12px; line-height: 1.7; color: rgba(255,255,255,.85); margin: 0 0 16px; }
.footer__social { display: flex; gap: 16px; font-size: 20px; color: var(--c-bronze-2); }
.footer__social a:hover { color: #fff; }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: rgba(255,255,255,.6);
}
.footer__bottom-badges { display: flex; gap: 24px; color: rgba(255,255,255,.85); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .container { padding: 0 32px; }
    section { padding: 72px 0; }
    .nav__inner { padding: 16px 32px; }
    .nav__menu { display: none; }
    .nav__toggle { display: block; }
    .hero { padding: 140px 0 80px; }
    .hero h1 { font-size: 56px; }
    .property-grid { grid-template-columns: 1fr 1fr; }
    .overview__grid { grid-template-columns: 1fr; gap: 40px; }
    .features__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .roi__bento { grid-template-columns: 1fr; }
    .bento-a, .bento-b, .bento-c, .bento-d { grid-column: 1; grid-row: auto; }
    .steps__flow { grid-template-columns: 1fr 1fr; gap: 48px; }
    .steps__flow::before { display: none; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .final h2 { font-size: 40px; }
    .section-title, .overview__title, .roi__head h2, .steps__head h2, .trust h2 { font-size: 34px; }
}
@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .nav__inner { padding: 14px 20px; }
    .nav__brand { font-size: 15px; }
    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: 44px; }
    .hero__sub { font-size: 16px; }
    .hero__stats { gap: 24px; }
    .hero__stat-num { font-size: 28px; }
    .property-grid { grid-template-columns: 1fr; }
    .features__grid { grid-template-columns: 1fr; }
    .steps__flow { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .final h2 { font-size: 32px; }
    .section-title, .overview__title, .roi__head h2, .steps__head h2, .trust h2 { font-size: 28px; }
    .overview__card-num { font-size: 72px; }
    .bento-a__stats { flex-direction: column; gap: 24px; }
}

/* ===========================================================
   project.html — Villas Listing
   =========================================================== */

.listing-hero {
    padding: 160px 0 64px;
    background: #fff;
}
.listing-hero__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
    flex-wrap: wrap;
}
.listing-hero__title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.05;
    color: var(--c-ink-2);
    margin: 0 0 20px;
    letter-spacing: -.01em;
}
.listing-hero__sub {
    font-size: 15px;
    color: var(--c-text);
    line-height: 1.7;
    max-width: 480px;
    margin: 0;
}
.listing-hero__count {
    display: flex;
    align-items: center;
    gap: 16px;
}
.listing-hero__count-num {
    font-size: 56px;
    font-weight: 600;
    color: var(--c-bronze);
    line-height: 1;
}
.listing-hero__count-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--c-bronze);
    line-height: 1.5;
}

.listing-page {
    background: var(--c-bg-soft);
    padding: 64px 0 96px;
}
.listing-page__grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: flex-start;
}

/* ===== Filters ===== */
.filters {
    background: #fff;
    padding: 28px 24px;
    border: 1px solid var(--c-border);
    position: sticky;
    top: 100px;
}
.filters__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.filters__head h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--c-ink-2);
}
.filters__reset {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--c-brand);
    font-weight: 600;
}
.filters__reset:hover { text-decoration: underline; }
.filters__group { margin-bottom: 24px; }
.filters__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--c-ink-2);
    margin-bottom: 12px;
}
.filters__inputs { display: flex; flex-direction: column; gap: 8px; }
.filters__input {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-pill);
    font-family: var(--font);
    font-size: 13px;
    color: var(--c-ink-2);
    background: #fff;
}
.filters__input:focus { outline: none; border-color: var(--c-bronze); }
.filters__pills { display: flex; gap: 6px; flex-wrap: wrap; }
.filters__pill {
    padding: 8px 14px;
    border: 1px solid var(--c-border);
    background: #fff;
    font-size: 12px;
    font-weight: 500;
    color: var(--c-text);
    border-radius: 4px;
    transition: all .15s;
}
.filters__pill:hover { border-color: var(--c-bronze); }
.filters__pill.is-active {
    background: var(--c-bronze);
    border-color: var(--c-bronze);
    color: #fff;
}
.filters__slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: var(--c-border-2);
    border-radius: 9999px;
    outline: none;
}
.filters__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px; height: 18px;
    background: var(--c-bronze);
    border-radius: 50%;
    cursor: pointer;
}
.filters__slider::-moz-range-thumb {
    width: 18px; height: 18px;
    background: var(--c-bronze);
    border-radius: 50%;
    cursor: pointer;
    border: 0;
}
.filters__range-marks {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--c-text);
    margin-top: 6px;
}
.filters__select {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-pill);
    font-family: var(--font);
    font-size: 13px;
    color: var(--c-ink-2);
    background: #fff;
    cursor: pointer;
}

/* ===== Villa grid ===== */
.villas__meta {
    font-size: 13px;
    color: var(--c-text);
    margin-bottom: 24px;
}
.villas__meta span { font-weight: 600; color: var(--c-ink-2); }
.villas__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.villas__empty {
    text-align: center;
    padding: 80px 24px;
    color: var(--c-text);
}
.villas__empty i { font-size: 48px; margin-bottom: 16px; color: var(--c-border-2); }
.villas__empty button {
    color: var(--c-brand);
    text-decoration: underline;
    font-weight: 600;
    background: none;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

/* ===== Villa card ===== */
.villa-card {
    background: #fff;
    border: 1px solid var(--c-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}
.villa-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.villa-card__img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.villa-card__img img { width: 100%; height: 100%; object-fit: cover; }
.villa-card__yield {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--c-gold);
    color: var(--c-ink-2);
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-radius: 4px;
}
.villa-card__featured {
    position: absolute;
    top: 14px; left: 100px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    color: var(--c-ink-2);
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-radius: 4px;
}
.villa-card__heart {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    color: var(--c-ink-2);
    font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: color .15s;
}
.villa-card__heart:hover { color: #c0392b; }
.villa-card__body { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.villa-card__loc {
    font-size: 12px;
    color: var(--c-text);
}
.villa-card__loc i { color: var(--c-bronze); margin-right: 6px; }
.villa-card__name {
    font-size: 24px;
    font-weight: 600;
    color: var(--c-ink-2);
    margin: 0;
}
.villa-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}
.villa-card__meta {
    display: flex;
    gap: 14px;
    font-size: 13px;
    color: var(--c-text);
}
.villa-card__meta i { color: var(--c-bronze); margin-right: 4px; }
.villa-card__price { text-align: right; }
.villa-card__price-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--c-text);
    margin-bottom: 2px;
}
.villa-card__price-val {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-ink-2);
}
.villa-card__price-val span {
    font-size: 11px;
    font-weight: 400;
    color: var(--c-text);
}
.villa-card__btn {
    display: block;
    text-align: center;
    padding: 13px;
    border: 1px solid var(--c-ink-2);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--c-ink-2);
    transition: all .2s;
}
.villa-card__btn:hover { background: var(--c-ink-2); color: #fff; }

/* ===== Why Invest ===== */
.why-invest {
    background: #fff;
    padding: 96px 0;
    text-align: center;
}
.why-invest__eyebrow {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--c-bronze);
    margin-bottom: 16px;
}
.why-invest__title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--c-ink-2);
    margin: 0 0 56px;
}
.why-invest__stats {
    display: flex;
    justify-content: center;
    gap: 96px;
    flex-wrap: wrap;
}
.why-invest__stat-num {
    font-size: 48px;
    font-weight: 700;
    color: var(--c-bronze);
    line-height: 1;
    margin-bottom: 8px;
}
.why-invest__stat-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--c-text);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .listing-hero { padding: 130px 0 48px; }
    .listing-hero__title { font-size: 40px; }
    .listing-hero__count-num { font-size: 44px; }
    .listing-page__grid { grid-template-columns: 1fr; gap: 24px; }
    .filters { position: static; }
    .villas__grid { grid-template-columns: 1fr 1fr; }
    .why-invest__title { font-size: 28px; }
    .why-invest__stats { gap: 48px; }
    .why-invest__stat-num { font-size: 36px; }
}
@media (max-width: 640px) {
    .listing-hero__title { font-size: 32px; }
    .listing-hero__inner { flex-direction: column; align-items: flex-start; }
    .villas__grid { grid-template-columns: 1fr; }
    .villa-card__row { flex-direction: column; align-items: flex-start; gap: 12px; }
    .villa-card__price { text-align: left; }
}

/* ===========================================================
   villa-*.html — Detail Pages
   =========================================================== */

.detail-gallery { padding: 104px 0 0; background: #fff; }
.detail-gallery__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 580px;
}
.detail-gallery__main { grid-row: 1 / 3; overflow: hidden; }
.detail-gallery__side { overflow: hidden; }
.detail-gallery__grid img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.detail-gallery__grid a:hover img,
.detail-gallery__grid div:hover img { transform: scale(1.03); }

.detail-title { background: #fff; padding: 48px 0 0; }
.detail-title__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.detail-title__eyebrow {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--c-bronze);
    margin-bottom: 12px;
}
.detail-title__name {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    color: var(--c-ink-2);
    letter-spacing: -.01em;
}
.detail-title__price { text-align: right; }
.detail-title__price-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--c-bronze);
    margin-bottom: 6px;
}
.detail-title__price-val {
    font-size: 48px;
    font-weight: 600;
    color: var(--c-bronze);
    line-height: 1;
}
.detail-title__price-sub {
    font-size: 12px;
    color: var(--c-text);
    margin-top: 8px;
}

.detail-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 32px 40px;
    background: var(--c-bg-soft);
    border-radius: 4px;
}
.detail-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.detail-stat__icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    color: var(--c-bronze);
    font-size: 18px;
    margin-bottom: 4px;
}
.detail-stat__label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--c-text);
}
.detail-stat__val {
    font-size: 22px;
    font-weight: 600;
    color: var(--c-ink-2);
    line-height: 1.1;
}

.detail-body { padding: 96px 0; background: var(--c-bg-soft); }
.detail-body__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: flex-start;
}
.detail-body__heading {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--c-ink-2);
    margin: 0 0 28px;
    letter-spacing: -.005em;
}
.detail-body__text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--c-text);
    margin: 0 0 20px;
}
.detail-feats {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.detail-feat {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.detail-feat__icon {
    flex: 0 0 auto;
    color: var(--c-bronze);
    font-size: 18px;
    padding-top: 2px;
}
.detail-feat h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--c-ink-2);
    margin: 0 0 6px;
}
.detail-feat p {
    font-size: 13px;
    color: var(--c-text);
    line-height: 1.55;
    margin: 0;
}

.invest-card {
    background: #fff;
    padding: 36px 32px;
    border: 1px solid var(--c-border);
    position: sticky;
    top: 100px;
}
.invest-card__title {
    font-size: 22px;
    font-weight: 600;
    color: var(--c-ink-2);
    margin: 0 0 24px;
}
.invest-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-size: 14px;
    color: var(--c-text);
    border-bottom: 1px solid var(--c-border);
}
.invest-card__row strong {
    color: var(--c-ink-2);
    font-weight: 600;
}
.invest-card__row strong.neg { color: #c0392b; }
.invest-card__row strong.brand { color: var(--c-bronze); font-size: 20px; }
.invest-card__row--net {
    border-bottom: 0;
    padding-top: 18px;
    font-weight: 600;
    color: var(--c-ink-2);
}
.invest-card__payback {
    background: var(--c-brand);
    color: #fff;
    padding: 16px 20px;
    margin: 20px 0 24px;
    border-radius: 4px;
}
.invest-card__payback-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
}
.invest-card__payback-head strong { font-size: 13px; font-weight: 600; }
.invest-card__payback-bar {
    height: 6px;
    background: rgba(255,255,255,.2);
    border-radius: 9999px;
    overflow: hidden;
}
.invest-card__payback-bar span {
    display: block;
    height: 100%;
    background: #fff;
    border-radius: 9999px;
}
.invest-card__cta {
    display: flex;
    width: 100%;
}

/* ===== Comparables ===== */
.comparables { background: #fff; padding: 96px 0; }
.comparables__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 32px;
    flex-wrap: wrap;
}
.comparables__title {
    font-size: 36px;
    font-weight: 600;
    color: var(--c-ink-2);
    margin: 0 0 8px;
}
.comparables__sub {
    font-size: 14px;
    color: var(--c-text);
    margin: 0;
}
.comparables__link {
    font-size: 13px;
    font-weight: 500;
    color: var(--c-ink-2);
}
.comparables__link i { margin-left: 8px; transition: transform .2s; }
.comparables__link:hover i { transform: translateX(4px); }
.comparables__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.comp-card {
    background: #fff;
    border: 1px solid var(--c-border);
    transition: transform .25s, box-shadow .25s;
}
.comp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.comp-card a { display: block; }
.comp-card__img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.comp-card__img img { width: 100%; height: 100%; object-fit: cover; }
.comp-card__yield {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    color: var(--c-ink-2);
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-radius: 9999px;
}
.comp-card__body { padding: 20px 24px 24px; }
.comp-card__body h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--c-ink-2);
}
.comp-card__loc {
    font-size: 12px;
    color: var(--c-text);
    margin-bottom: 8px;
}
.comp-card__price {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-ink-2);
}

@media (max-width: 992px) {
    .detail-gallery { padding-top: 90px; }
    .detail-gallery__grid { height: auto; grid-template-columns: 1fr; grid-template-rows: auto; }
    .detail-gallery__main { grid-row: auto; height: 360px; }
    .detail-gallery__side { height: 220px; }
    .detail-title__name { font-size: 32px; }
    .detail-title__price-val { font-size: 36px; }
    .detail-title__row { align-items: flex-start; }
    .detail-title__price { text-align: left; }
    .detail-stats { grid-template-columns: 1fr 1fr; gap: 24px; padding: 24px; }
    .detail-body { padding: 64px 0; }
    .detail-body__grid { grid-template-columns: 1fr; gap: 48px; }
    .detail-body__heading { font-size: 28px; }
    .invest-card { position: static; }
    .comparables { padding: 64px 0; }
    .comparables__grid { grid-template-columns: 1fr; }
    .comparables__title { font-size: 28px; }
}
@media (max-width: 640px) {
    .detail-feats { grid-template-columns: 1fr; }
    .detail-stats { grid-template-columns: 1fr; }
}

/* ===========================================================
   about-us.html
   =========================================================== */

.about-hero {
    position: relative;
    min-height: 85vh;
    padding: 160px 0 80px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.6)), url("../images/v2/about-hero.webp") center/cover no-repeat;
    display: flex;
    align-items: center;
}
.about-hero > .container { width: 100%; }
.about-hero__content { text-align: left; }
.about-hero__brand {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 48px;
}
.about-hero__brand-1 { font-size: 22px; font-weight: 700; letter-spacing: .02em; }
.about-hero__brand-2 { font-size: 10px; font-weight: 400; letter-spacing: .4em; margin-top: 6px; padding-left: .4em; }
.about-hero__title {
    font-size: clamp(44px, 7vw, 80px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.01em;
    margin: 0 0 32px;
}
.about-hero__eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 14px;
    color: #fff;
}
.about-hero__sub {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,.88);
    margin: 0 0 36px;
    max-width: 520px;
}
.about-hero__cta { display: inline-block; }

/* ---- Origin Story ---- */
.origin { padding: 120px 0; background: #fff; }
.origin__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.origin__title {
    font-size: 44px;
    font-weight: 700;
    color: var(--c-ink-2);
    margin: 0 0 32px;
    line-height: 1.1;
    letter-spacing: -.01em;
}
.origin__content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--c-text);
    margin: 0 0 18px;
    max-width: 520px;
}
.origin__visual img {
    width: 100%;
    max-width: 480px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* ---- Simple Belief ---- */
.belief {
    background: var(--c-ink);
    color: #fff;
    padding: 120px 0;
    text-align: center;
}
.belief__inner { max-width: 760px; margin: 0 auto; }
.belief__title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 40px;
    color: #fff;
}
.belief p {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255,255,255,.75);
    margin: 0 0 20px;
}

/* ---- Lush Pillars ---- */
.pillars {
    background: #0d0d0d;
    color: #fff;
    padding: 120px 0;
}
.pillars__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.pillars__visual img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}
.pillars__eyebrow {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--c-bronze);
    margin-bottom: 16px;
}
.pillars__title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
    margin: 0 0 40px;
}
.accordion-item {
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.accordion__head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    background: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color .2s;
}
.accordion__head:hover { color: var(--c-bronze); }
.accordion__head i {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    transition: transform .3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}
.accordion-item.is-open .accordion__head i {
    transform: rotate(180deg);
    background: var(--c-bronze);
    border-color: var(--c-bronze);
}
.accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}
.accordion-item.is-open .accordion__body {
    max-height: 300px;
    padding: 0 0 22px;
}
.accordion__body p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,.7);
    margin: 0;
    max-width: 560px;
}

/* ---- Team ---- */
.team { padding: 120px 0; background: #F9F9F9; }
.team__head { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.team__eyebrow {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--c-text);
    margin-bottom: 16px;
}
.team__title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--c-ink-2);
    margin: 0 0 32px;
    letter-spacing: -.01em;
}
.team__sub {
    font-size: 14px;
    line-height: 1.75;
    color: var(--c-text);
    margin: 0 0 16px;
}
.team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.team-card {
    text-align: center;
}
.team-card__photo {
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--c-bg-soft);
}
.team-card__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.team-card__name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--c-ink-2);
}
.team-card__role {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--c-text);
    margin-bottom: 10px;
}
.team-card__bio {
    font-size: 13px;
    line-height: 1.55;
    color: var(--c-text);
    margin: 0;
    max-width: 260px;
    margin: 0 auto;
}

/* ---- Quote ---- */
.quote { padding: 80px 0 120px; background: #fff; }
.quote__grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
}
.quote__portrait {
    aspect-ratio: 1/1;
    overflow: hidden;
}
.quote__portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
}
.quote__body {
    margin: 0;
    position: relative;
}
.quote__mark {
    font-size: 72px;
    line-height: 1;
    color: var(--c-bronze);
    font-family: Georgia, serif;
    margin-bottom: 12px;
}
.quote__body p {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--c-ink-2);
    margin: 0 0 24px;
}
.quote__body cite {
    font-size: 12px;
    font-style: normal;
    color: var(--c-text);
    line-height: 1.55;
}
.quote__body cite strong { color: var(--c-ink-2); font-weight: 600; }

/* ---- About CTA ---- */
.about-cta {
    padding: 96px 0;
    background: var(--c-ink);
    color: #fff;
    background: linear-gradient(180deg, rgba(13,13,13,.88), rgba(13,13,13,.92)), url("../images/v2/about-hero.webp") center/cover no-repeat;
}
.about-cta__inner { text-align: center; max-width: 680px; margin: 0 auto; }
.about-cta h2 {
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 16px;
    color: #fff;
}
.about-cta p {
    font-size: 14px;
    color: rgba(255,255,255,.8);
    margin: 0 0 32px;
    line-height: 1.6;
}
.about-cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.about-cta .btn-primary { background: #A6967B; }
.about-cta .btn-primary:hover { background: #8f8068; }
.about-cta .btn-outline { background: transparent; color: #fff; border-color: #fff; }
.about-cta .btn-outline:hover { background: #fff; color: var(--c-ink); }

@media (max-width: 992px) {
    .about-hero { min-height: 70vh; padding: 130px 0 60px; }
    .about-hero__title { font-size: 44px; }
    .origin { padding: 80px 0; }
    .origin__grid { grid-template-columns: 1fr; gap: 48px; }
    .origin__title { font-size: 32px; }
    .belief { padding: 80px 0; }
    .belief__title { font-size: 30px; }
    .pillars { padding: 80px 0; }
    .pillars__grid { grid-template-columns: 1fr; gap: 48px; }
    .team { padding: 80px 0; }
    .team__title { font-size: 32px; }
    .team__grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .quote__grid { grid-template-columns: 1fr; text-align: center; }
    .quote__portrait { max-width: 240px; margin: 0 auto; }
    .quote__body p { font-size: 20px; }
    .about-cta { padding: 72px 0; }
    .about-cta h2 { font-size: 28px; }
}

/* ===========================================================
   contact.html
   =========================================================== */

.contact-hero {
    padding: 160px 0 56px;
    background: #fff;
}
.contact-hero__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
    flex-wrap: wrap;
}
.contact-hero__title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.05;
    margin: 0 0 20px;
    color: var(--c-ink-2);
    letter-spacing: -.01em;
}
.contact-hero__sub {
    font-size: 14px;
    color: var(--c-text);
    line-height: 1.65;
    margin: 0;
    max-width: 460px;
}
.contact-hero__stats {
    display: flex;
    gap: 16px;
}
.contact-hero__stat {
    background: var(--c-bg-soft);
    padding: 22px 28px;
    min-width: 150px;
    text-align: center;
}
.contact-hero__stat-num {
    font-size: 26px;
    font-weight: 700;
    color: var(--c-ink-2);
    line-height: 1;
    margin-bottom: 8px;
}
.contact-hero__stat-label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--c-text);
}

.contact-body { padding: 56px 0 96px; background: #fff; }
.contact-body__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 32px;
    align-items: flex-start;
}

/* ---- Booking card ---- */
.book-card {
    background: #fff;
    border: 1px solid var(--c-border);
    padding: 40px 36px;
}
.book-card__title {
    font-size: 30px;
    font-weight: 700;
    color: var(--c-ink-2);
    margin: 0 0 28px;
}
.book-form { display: flex; flex-direction: column; gap: 20px; }
.book-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.book-col { display: flex; flex-direction: column; }
.book-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--c-text);
    margin-bottom: 12px;
}
.book-input {
    padding: 14px 18px;
    border: 1px solid var(--c-border);
    background: var(--c-bg-soft);
    font-family: var(--font);
    font-size: 13px;
    color: var(--c-ink-2);
    border-radius: 2px;
}
.book-input:focus { outline: none; border-color: var(--c-bronze); background: #fff; }
.book-submit {
    background: var(--c-ink);
    color: #fff;
    padding: 16px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .18em;
    border: 0;
    cursor: pointer;
    transition: background .2s;
}
.book-submit:hover { background: #333; }

/* ---- Calendar ---- */
.calendar {
    background: var(--c-bg-soft);
    padding: 16px;
    border-radius: 4px;
}
.calendar__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.calendar__month {
    font-size: 14px;
    font-weight: 700;
    color: var(--c-ink-2);
}
.calendar__nav { display: flex; gap: 4px; }
.calendar__nav button {
    width: 24px; height: 24px;
    border-radius: 4px;
    font-size: 11px;
    color: var(--c-ink-2);
    background: transparent;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}
.calendar__nav button:hover { background: rgba(0,0,0,.08); }
.calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 6px;
}
.calendar__weekdays span {
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    color: var(--c-text);
    padding: 4px 0;
}
.calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.cal-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--c-ink-2);
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s, color .15s;
}
.cal-cell:hover:not(.is-past):not(.is-selected) { background: rgba(0,0,0,.06); }
.cal-cell.is-past { color: rgba(0,0,0,.3); cursor: not-allowed; }
.cal-cell.is-selected {
    background: var(--c-brand);
    color: #fff;
    border-radius: 8px;
}
.cal-empty { aspect-ratio: 1; }

/* ---- Slots ---- */
.slots { display: flex; flex-direction: column; gap: 8px; }
.slot {
    width: 100%;
    padding: 14px 18px;
    background: var(--c-bg-soft);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    color: var(--c-ink-2);
    text-align: left;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    transition: all .15s;
}
.slot:hover:not(.is-active) { background: #ebebeb; }
.slot.is-active {
    background: var(--c-brand);
    color: #fff;
}

/* ---- Sidebar ---- */
.contact-side { display: flex; flex-direction: column; gap: 20px; }
.hq-card {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 4px;
}
.hq-card img { width: 100%; height: 100%; object-fit: cover; }
.hq-card__overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 24px 28px;
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.8));
    color: #fff;
}
.hq-card__eyebrow {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .18em;
    opacity: .85;
    margin-bottom: 4px;
}
.hq-card__title {
    font-size: 20px;
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-info__row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-info__icon {
    flex: 0 0 44px;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--c-bg-soft);
    color: var(--c-ink-2);
    font-size: 15px;
    border-radius: 4px;
}
.contact-info__label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--c-text);
    margin-bottom: 6px;
}
.contact-info__value {
    font-size: 13px;
    line-height: 1.65;
    color: var(--c-ink-2);
}
.contact-info__value a { color: var(--c-ink-2); }
.contact-info__value a:hover { color: var(--c-brand); }

.support-box {
    background: var(--c-bg-soft);
    padding: 24px 28px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.support-item__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--c-ink-2);
}
.support-item__head i { color: var(--c-bronze); font-size: 14px; }
.support-item p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--c-text);
    margin: 0;
}

@media (max-width: 992px) {
    .contact-hero { padding: 130px 0 48px; }
    .contact-hero__title { font-size: 40px; }
    .contact-hero__inner { flex-direction: column; align-items: flex-start; }
    .contact-body__grid { grid-template-columns: 1fr; }
    .book-card { padding: 32px 24px; }
    .book-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .contact-hero__title { font-size: 30px; }
    .book-card__title { font-size: 24px; }
}

/* ===========================================================
   Mobile Nav Overlay
   =========================================================== */
body.nav-open { overflow: hidden; }

.nav__overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(13, 13, 13, .98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 32px;
}
.nav__overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.nav__overlay-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}
.nav__overlay-close:hover { background: rgba(255, 255, 255, .16); }
.nav__overlay-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: center;
}
.nav__overlay-menu a {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -.01em;
    transition: color .2s, transform .25s ease;
    display: inline-block;
}
.nav__overlay-menu a:hover {
    color: var(--c-bronze);
    transform: translateY(-2px);
}
.nav__overlay .btn { min-width: 200px; }

/* Scale-in animation for menu items */
.nav__overlay-menu li {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .4s ease, transform .4s ease;
}
.nav__overlay.is-open .nav__overlay-menu li {
    opacity: 1;
    transform: translateY(0);
}
.nav__overlay.is-open .nav__overlay-menu li:nth-child(1) { transition-delay: .08s; }
.nav__overlay.is-open .nav__overlay-menu li:nth-child(2) { transition-delay: .14s; }
.nav__overlay.is-open .nav__overlay-menu li:nth-child(3) { transition-delay: .20s; }
.nav__overlay.is-open .nav__overlay-menu li:nth-child(4) { transition-delay: .26s; }
.nav__overlay.is-open .btn {
    opacity: 0;
    animation: navFadeUp .4s .32s ease forwards;
}
@keyframes navFadeUp {
    to { opacity: 1; transform: translateY(0); }
}
