/* ===== Tokens ===== */
:root {
  --white: #ffffff;
  --paper: #f6f7f4;     /* very light warm grey */
  --ink: #14181f;       /* near-black */
  --ink-soft: #5b6470;
  --navy: #0A1F44;      /* brand dark */
  --navy-deep: #081834;
  --gold: #B5945A;      /* refined gold */
  --gold-deep: #9a7c45;
  --line: #e6e6e0;
  --max: 1240px;
  --r: 22px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }

/* ===== Eyebrow + headings ===== */
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: .8rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 20px; }
.eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); display: inline-block; }
.head { margin-bottom: 64px; }
.head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.head h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.head__sub { color: var(--ink-soft); font-size: 1.08rem; margin-top: 16px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px; border-radius: 999px; font-weight: 600; font-size: .94rem;
  transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s; cursor: pointer; border: 1.5px solid transparent;
}
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-deep); transform: translateY(-3px); box-shadow: 0 16px 30px -16px rgba(10,31,68,.6); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -14px rgba(0,0,0,.4); }
.btn--outline { background: transparent; color: var(--navy); border-color: rgba(10,31,68,.25); }
.btn--outline:hover { border-color: var(--navy); transform: translateY(-3px); }

/* ===== Nav (floating pill) ===== */
.nav { position: fixed; top: 18px; left: 0; right: 0; z-index: 100; display: flex; justify-content: center; padding: 0 20px; transition: top .4s var(--ease); }
.nav__pill {
  width: 100%; max-width: var(--max); display: flex; align-items: center; gap: 24px;
  background: rgba(255,255,255,.72); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.6); border-radius: 999px; padding: 11px 14px 11px 24px;
  box-shadow: 0 18px 50px -26px rgba(20,24,31,.4); transition: background .4s, box-shadow .4s;
}
.nav.scrolled .nav__pill { background: rgba(255,255,255,.92); box-shadow: 0 14px 40px -22px rgba(20,24,31,.55); }
.nav__brand { display: flex; align-items: center; gap: 9px; color: var(--navy); }
.nav__mark { color: var(--navy); display: grid; place-items: center; }
.nav__word { font-weight: 800; letter-spacing: .12em; font-size: .95rem; }
.nav__links { display: flex; gap: 6px; margin: 0 auto; }
.nav__links a { font-size: .88rem; font-weight: 500; color: var(--ink); padding: 8px 16px; border-radius: 999px; transition: background .3s, color .3s; }
.nav__links a:hover { color: var(--navy); }
.nav__links a.active { background: var(--paper); }
.nav__cta { background: var(--navy); color: #fff; font-weight: 600; font-size: .88rem; padding: 11px 24px; border-radius: 999px; transition: background .3s, transform .3s; }
.nav__cta:hover { background: var(--navy-deep); transform: translateY(-2px); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ===== Hero ===== */
.hero { position: relative; height: 100vh; min-height: 620px; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; will-change: transform; }
.hero__media img, .hero__video { width: 100%; height: 114%; object-fit: cover; display: block; }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,16,30,.78) 0%, rgba(8,16,30,.15) 50%, rgba(8,16,30,.25) 100%); }
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 32px 9vh; }
.hero h1 { font-size: clamp(2.8rem, 8vw, 6.4rem); font-weight: 800; letter-spacing: -0.04em; }
.hero__lead { font-size: 1.12rem; max-width: 460px; margin: 26px 0 34px; color: rgba(255,255,255,.85); font-weight: 400; }

/* ===== Services (numbered list) ===== */
.services { background: var(--white); }
.svc-list { border-top: 1px solid var(--line); }
.svc {
  display: grid; grid-template-columns: 1fr auto; grid-template-areas: "title num" "desc num";
  align-items: center; gap: 4px 30px; padding: 34px 8px; border-bottom: 1px solid var(--line);
  transition: padding-left .4s var(--ease), background .4s;
}
.svc:hover { padding-left: 28px; background: var(--paper); }
.svc h3 { grid-area: title; font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 800; color: var(--ink-soft); transition: color .35s; }
.svc:hover h3 { color: var(--ink); }
.svc p { grid-area: desc; color: var(--ink-soft); font-size: .98rem; max-width: 620px; }
.svc__num { grid-area: num; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; color: var(--line); transition: color .35s; letter-spacing: -0.02em; }
.svc:hover .svc__num { color: var(--gold); }

/* ===== Featured Listing ===== */
.listings { background: var(--paper); }
.listing { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; background: var(--white); border-radius: var(--r); overflow: hidden; box-shadow: 0 30px 70px -40px rgba(20,24,31,.45); }
.listing + .listing { margin-top: 36px; }
.listing--reverse .listing__gallery { order: 2; }
.listing--reverse .listing__info { padding: 30px 8px 30px 40px; }
.listing__gallery { padding: 16px; }
.listing__main { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; }
.listing__main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s var(--ease); }
.listing__status { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--navy); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; }
.listing__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 10px; }
.listing__thumb { padding: 0; border: 2px solid transparent; border-radius: 10px; overflow: hidden; cursor: pointer; background: none; aspect-ratio: 4/3; transition: border-color .3s; }
.listing__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.listing__thumb.is-active { border-color: var(--gold); }
.listing__thumb:hover { border-color: var(--gold-deep); }
.listing__info { padding: 30px 40px 30px 8px; }
.listing__info h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; }
.listing__loc { font-size: .9rem; font-weight: 600; color: var(--ink-soft); margin-top: 4px; }
.listing__price { font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 800; color: var(--gold-deep); margin: 18px 0 22px; letter-spacing: -0.02em; }
.listing__specs { list-style: none; display: flex; gap: 14px; padding: 0; margin: 0 0 22px; }
.listing__specs li { flex: 1; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 14px 10px; text-align: center; }
.listing__specs strong { display: block; font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; }
.listing__specs span { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.listing__desc { font-size: .96rem; color: var(--ink-soft); line-height: 1.65; margin-bottom: 26px; }
.listing__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.folio-cta { display: flex; justify-content: center; margin-top: 48px; }
.folio-cta .btn svg { transition: transform .3s var(--ease); }
.folio-cta .btn:hover svg { transform: translate(2px, -2px); }

/* ===== New Launches ===== */
.launches { background: var(--white); }
.launch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.launch-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.launch-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -34px rgba(20,24,31,.45); border-color: transparent; }
.launch-card__img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.launch-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.launch-card:hover .launch-card__img img { transform: scale(1.06); }
.launch-card__body { padding: 20px 22px 24px; }
.launch-card__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 4px; }
.launch-badge { position: absolute; top: 14px; left: 14px; font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(4px); }
.launch-badge--live { background: rgba(181,148,90,.92); color: #fff; }
.launch-badge--selling { background: rgba(10,31,68,.9); color: #fff; }
.launch-card__district { font-size: .8rem; font-weight: 700; color: var(--ink-soft); flex-shrink: 0; }
.launch-card h3 { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
.launch-card__loc { font-size: .8rem; font-weight: 600; color: var(--gold-deep); margin-bottom: 12px; }
.launch-card__desc { font-size: .9rem; color: var(--ink-soft); line-height: 1.6; }
.launches__note { text-align: center; font-size: .8rem; color: var(--ink-soft); margin-top: 30px; }

/* ===== About ===== */
.about { background: var(--white); }
.about__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: center; }
.about__media { border-radius: var(--r); overflow: hidden; box-shadow: 0 30px 60px -38px rgba(20,24,31,.5); }
.about__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about__text h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 22px; }
.about__text > p { color: var(--ink-soft); font-size: 1.05rem; max-width: 520px; }
.creds { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 34px; }
.creds li { font-size: .82rem; font-weight: 600; color: var(--navy); background: var(--paper); border: 1px solid var(--line); padding: 9px 16px; border-radius: 999px; }

/* ===== CTA card ===== */
.cta-wrap { background: var(--paper); }
.cta-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center; background: var(--white); border-radius: 28px; padding: 18px; box-shadow: 0 30px 70px -40px rgba(20,24,31,.45); overflow: hidden; }
.cta-card__text { padding: 40px 30px 40px 40px; }
.cta-tab { display: block; width: 46px; height: 5px; border-radius: 3px; background: var(--gold); margin-bottom: 26px; }
.cta-card__text h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); margin-bottom: 16px; }
.cta-card__text p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 30px; max-width: 380px; }
.cta-card__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-card__media { border-radius: 18px; overflow: hidden; align-self: stretch; min-height: 320px; }
.cta-card__media img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Footer ===== */
.footer { background: var(--navy); color: rgba(255,255,255,.62); padding: 80px 0 36px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__logo { display: flex; align-items: center; gap: 10px; color: #fff; margin-bottom: 16px; }
.footer__logo span { font-weight: 800; letter-spacing: .12em; }
.footer__brand p { font-size: .95rem; max-width: 260px; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.8); transition: background .3s, color .3s, border-color .3s; }
.footer__social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer__col h4, .footer__newsletter h4 { color: #fff; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; position: relative; padding-bottom: 12px; }
.footer__col h4::after, .footer__newsletter h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 26px; height: 2px; background: var(--gold); }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: .92rem; transition: color .3s; }
.footer__col a:hover { color: #fff; }
.footer__newsletter p { font-size: .92rem; margin-bottom: 18px; max-width: 260px; }
.footer__contact { display: block; font-size: .95rem; color: rgba(255,255,255,.85); margin-bottom: 9px; transition: color .3s; }
.footer__contact:hover { color: var(--gold); }
.footer__regions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding: 44px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__regions h5 { color: #fff; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(181,148,90,.5); }
.footer__regions div { display: flex; flex-direction: column; gap: 9px; }
.footer__regions a { font-size: .9rem; transition: color .3s; }
.footer__regions a:hover { color: #fff; }
.footer__bar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 30px; font-size: .82rem; letter-spacing: .04em; }

/* ===== Floating WhatsApp ===== */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 90; width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 14px 32px -10px rgba(37,211,102,.6); transition: transform .35s var(--ease); }
.wa-float:hover { transform: translateY(-4px) scale(1.05); }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav__links.open { display: flex; flex-direction: column; gap: 6px; position: absolute; top: 74px; left: 20px; right: 20px; background: #fff; padding: 18px; border-radius: 22px; box-shadow: 0 24px 50px -26px rgba(0,0,0,.4); margin: 0; }
  .nav__toggle { display: flex; }
  .nav__pill { padding-right: 18px; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media { max-width: 460px; }
  .listing { grid-template-columns: 1fr; }
  .listing__info, .listing--reverse .listing__info { padding: 8px 24px 30px; }
  .listing--reverse .listing__gallery { order: 0; }
  .launch-grid { grid-template-columns: 1fr 1fr; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-card__media { min-height: 240px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer__regions { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .wrap, .hero__inner { padding-left: 20px; padding-right: 20px; }
  .section { padding: 84px 0; }
  .svc { grid-template-columns: 1fr; grid-template-areas: "num" "title" "desc"; gap: 6px; }
  .svc__num { font-size: 1.4rem; }
  .launch-grid { grid-template-columns: 1fr; }
  .footer__top, .footer__regions { grid-template-columns: 1fr; }
  .nav__cta { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .wa-float { animation: none; }
}
