:root {
  --ink: #1a0e0a;
  --graphite: #2a1810;
  --slate: #5a4a42;
  --slate-light: #8a7a72;
  --bone: #ffffff;
  --pure-white: #ffffff;
  --cream: #fbf6f2;
  --line: rgba(141, 45, 23, 0.10);

  /* Brand — Mahindra Maroon */
  --brand: #8d2d17;
  --brand-dark: #6e2010;
  --brand-light: #a8442c;
  --brand-deeper: #4f1408;
  --brand-soft: rgba(141, 45, 23, 0.08);

  /* Accent — warm sand (derived, low-key supporting tone) */
  --sand: #c89b6a;
  --sand-light: #ddb98a;
  --sand-deep: #a87f4f;
  --sand-line: rgba(200, 155, 106, 0.40);
  --sand-soft-bg: rgba(200, 155, 106, 0.10);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-rendering: optimizeLegibility; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 80px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; background: var(--cream); }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
.h-section {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
  font-weight: 500;
  line-height: 1.06;
  font-size: clamp(33px, 5vw, 56px);
  color: var(--brand);
  margin-top: 1rem;
}
.h-section em { font-style: italic; color: var(--sand-deep); font-weight: 400; }
.lead {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  color: var(--slate);
  font-weight: 400;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 1.1rem;
  display: block;
}
.section-head .eyebrow::before,
.section-head .eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--sand);
  vertical-align: middle;
  opacity: 0.6;
}
.section-head .eyebrow::before { margin-right: 12px; }
.section-head .eyebrow::after { margin-left: 12px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translate3d(0, 24px, 0); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: translate3d(0,0,0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1; transform:none; transition:none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.75rem; border-radius: 9999px; font-weight: 600;
  font-size: 14.5px; letter-spacing: .02em; line-height: 1;
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap; border: 1px solid transparent;
}
.btn span { transition: transform .25s var(--ease); }
.btn:hover span { transform: translateX(3px); }
.btn-sm { padding: .7rem 1.3rem; font-size: 13px; }
.btn-block { width: 100%; }

.btn-brand {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff; border-color: var(--brand);
  box-shadow: 0 1px 0 rgba(255,255,255,.15) inset, 0 8px 20px -8px rgba(141,45,23,.45);
}
.btn-brand:hover {
  background: linear-gradient(180deg, var(--brand-light) 0%, var(--brand) 100%);
  border-color: var(--sand); transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 16px 36px -10px rgba(141,45,23,.55), 0 0 0 1px var(--sand-line);
}
.btn-ink {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deeper) 100%);
  color: #fff; border-color: var(--brand-dark);
}
.btn-ink:hover { background: linear-gradient(180deg, var(--brand-light) 0%, var(--brand) 100%); border-color: var(--sand); transform: translateY(-2px); }
.btn-light {
  background: rgba(255,255,255,.7); color: var(--brand); border-color: var(--sand);
  backdrop-filter: blur(10px);
}
.btn-light:hover { background: var(--sand-soft-bg); border-color: var(--sand-deep); color: var(--brand-dark); transform: translateY(-2px); }
.btn-glass {
  background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.3);
  backdrop-filter: blur(12px);
}
.btn-glass:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.55); transform: translateY(-2px); }

/* ============ HEADER ============ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: box-shadow .3s ease;
}
.header-row {
  max-width: 1400px; margin: 0 auto; padding: 0 1.25rem; height: 66px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo {
  font-family: var(--font-display); font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 600; letter-spacing: .03em; color: var(--brand); flex-shrink: 0; white-space: nowrap;
}
.logo .sub { color: var(--ink); font-weight: 500; }
.logo .dot { color: var(--sand-deep); }
.header-cta {
  flex-shrink: 0; padding: .6rem 1.15rem; background: var(--brand); color: #fff;
  border-radius: 9999px; font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: .4rem;
  border: 1px solid var(--brand); transition: all .3s var(--ease); white-space: nowrap;
}
.header-cta:hover { background: var(--brand-dark); border-color: var(--sand); transform: translateY(-1px); }
@media (max-width: 520px) {
  .header-row { height: 58px; }
  .header-cta { padding: .5rem .8rem; font-size: 11.5px; gap: .3rem; }
  .header-cta svg { width: 12px; height: 12px; }
}

/* Action bar */
.action-bar-wrap {
  position: fixed; top: 66px; left: 0; right: 0; z-index: 55;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.04);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 90%, transparent 100%);
}
.action-bar {
  max-width: 1400px; margin: 0 auto; padding: .5rem 1rem;
  display: flex; align-items: center; gap: .45rem;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.action-bar::-webkit-scrollbar { display: none; }
.action-chip {
  display: inline-flex; align-items: center; padding: .5rem 1.05rem;
  font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
  color: var(--brand); white-space: nowrap; border-radius: 9999px;
  background: rgba(255,255,255,.6); border: 1px solid rgba(141,45,23,.14);
  backdrop-filter: blur(8px); transition: all .35s var(--ease); flex-shrink: 0;
}
.action-chip:hover { background: var(--brand); color: #fff; border-color: var(--brand); transform: translateY(-1px); box-shadow: 0 8px 20px -10px rgba(141,45,23,.45); }
@media (max-width: 768px) {
  .action-bar-wrap { top: 58px; }
  .action-chip { padding: .45rem .9rem; font-size: 11.5px; }
}

.page-offset { padding-top: 112px; }
@media (max-width: 768px) { .page-offset { padding-top: 100px; } }

.micro-strip {
  background: var(--cream); padding: 4px 1rem; text-align: center;
  border-bottom: 1px solid rgba(0,0,0,.025);
}
.micro-strip p {
  font-size: 8.5px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(141,45,23,.3); font-weight: 600; margin: 0;
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: auto;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; isolation: isolate; padding: 2.5rem 0 3rem;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,14,10,.55) 0%, rgba(26,14,10,.3) 38%, rgba(26,14,10,.72) 100%),
    radial-gradient(ellipse at center, rgba(0,0,0,.1) 0%, rgba(26,14,10,.4) 100%);
}
.hero-inner {
  position: relative; max-width: 760px; width: 100%; padding: 2.5rem 1.5rem;
  text-align: center; color: #fff;
  display: flex; flex-direction: column; align-items: center;
}
.hero-presents {
  display: block; font-size: 11px; letter-spacing: .38em; text-transform: uppercase;
  color: var(--sand-light); margin-bottom: 1.5rem; font-weight: 600;
}
.hero-mainline {
  font-family: var(--font-display); font-optical-sizing: auto;
  font-size: clamp(40px, 8vw, 92px); line-height: .96; letter-spacing: -0.025em;
  margin: 0 0 1.1rem; color: #fff; font-weight: 500;
  text-shadow: 0 4px 32px rgba(0,0,0,.45);
}
.hero-mainline em { color: var(--sand-light); font-style: italic; font-weight: 400; }
.hero-sub {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(18px, 2.4vw, 27px); color: rgba(255,255,255,.9);
  margin: 0 0 1.25rem; letter-spacing: .005em;
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
}
.hero-support {
  font-size: clamp(11px, 1.2vw, 13px); letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.78); font-weight: 600; margin: 0 0 1.5rem;
}
.hero-support .dot-sep { color: var(--sand-light); margin: 0 .5rem; }
.hero-price-pill {
  display: inline-flex; align-items: baseline; gap: .6rem;
  margin: 0 auto 1.75rem; padding: .6rem 1.4rem;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--sand-line); border-radius: 9999px;
}
.hpp-label { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); font-weight: 600; }
.hpp-amount { font-family: var(--font-display); font-size: 19px; font-weight: 500; color: #fff; }
.hpp-amount .ast { color: var(--sand-light); font-size: .6em; vertical-align: super; }

.hero-usp-strip {
  list-style: none; padding: 0; margin: 0 auto 2rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem .55rem; max-width: 580px;
}
.hero-usp-strip li {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,.92); padding: .45rem .9rem;
  border: 1px solid rgba(255,255,255,.26); border-radius: 999px;
  background: rgba(255,255,255,.06); backdrop-filter: blur(8px);
}

/* Hero download cards (5) */
.hero-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .65rem;
  width: 100%; max-width: 540px; margin: 0 auto;
}
.hero-cards .hc-wide { grid-column: 1 / -1; }
.hero-card {
  display: flex; align-items: center; gap: .8rem;
  padding: .95rem 1.1rem; border-radius: 14px;
  background: rgba(255,255,255,.09);
  border: 1px solid var(--sand-line);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: all .35s var(--ease); text-align: left;
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 14px 40px -20px rgba(0,0,0,.5);
}
.hero-card:hover {
  background: rgba(255,255,255,.16); border-color: var(--sand-light);
  transform: translateY(-3px);
  box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 22px 50px -22px rgba(0,0,0,.6);
}
.hc-icon {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,155,106,.18); border: 1px solid var(--sand-line);
}
.hc-icon svg { width: 19px; height: 19px; stroke: var(--sand-light); }
.hc-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.hc-title { font-size: 13.5px; font-weight: 700; color: #fff; letter-spacing: .01em; }
.hc-sub { font-size: 10.5px; color: rgba(255,255,255,.7); font-weight: 500; }
.hero-card.hc-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-color: var(--brand-light); justify-content: center;
}
.hero-card.hc-primary:hover { background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 100%); border-color: var(--sand); }
.hero-card.hc-primary .hc-icon { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.25); }
.hero-card.hc-primary .hc-icon svg { stroke: #fff; }
.hero-card.hc-primary .hc-title { color: #fff; }
.hero-card.hc-primary .hc-sub { color: rgba(255,255,255,.82); }

/* ============ SECTIONS ============ */
.section { padding: 5rem 1.25rem; }
.section-lg { padding: 6rem 1.25rem; }
@media (min-width: 768px) { .section { padding: 7rem 2rem; } .section-lg { padding: 8.5rem 2rem; } }
@media (max-width: 760px) { .section { padding: 4rem 1.25rem; } }
.bg-cream { background: var(--cream); }
.bg-white {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(141,45,23,.025), transparent 60%), #fff;
}
.container { max-width: 1240px; margin: 0 auto; }
.container-narrow { max-width: 860px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 3.5rem; }
@media (min-width: 768px) { .section-head { margin-bottom: 4.5rem; } }
.text-center { text-center: center; text-align: center; }
.mt-xl { margin-top: 3.5rem; }

/* ============ HIGHLIGHTS (metallic dark) ============ */
.highlights {
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(200,155,106,.06), transparent 70%),
    linear-gradient(180deg, var(--brand-deeper) 0%, #2e0c04 100%);
  padding: 6rem 1.25rem; color: #fff; position: relative; overflow: hidden;
}
.highlights::before, .highlights::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  width: 200px; height: 1px; background: linear-gradient(90deg, transparent, var(--sand), transparent);
}
.highlights::before { top: 0; }
.highlights::after { bottom: 0; width: 120px; opacity: .6; }
.highlights .h-section { color: #fff; }
.highlights .h-section em { color: var(--sand-light); }
.highlights .eyebrow { color: var(--sand-light); }
.metallic-grid {
  max-width: 1240px; margin: 3rem auto 0;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem;
}
@media (max-width: 1024px) { .metallic-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .metallic-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; } }
.metallic-tile {
  background: linear-gradient(160deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 60%, rgba(200,155,106,.06) 100%);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,.08); border-radius: 4px;
  padding: 2.25rem 1.1rem 1.85rem; text-align: center; position: relative; overflow: hidden;
  transition: all .5s var(--ease);
}
.metallic-tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand), transparent); opacity: .5; transition: opacity .5s var(--ease);
}
.metallic-tile:hover { transform: translateY(-4px); border-color: var(--sand-line); }
.metallic-tile:hover::before { opacity: 1; }
.metallic-num {
  display: block; font-family: var(--font-display); font-size: clamp(30px, 4vw, 46px);
  line-height: 1; color: var(--sand-light); letter-spacing: -0.02em; font-weight: 500;
}
.metallic-num small { font-size: .36em; vertical-align: super; margin-left: 3px; letter-spacing: .04em; color: rgba(221,185,138,.85); }
.metallic-label {
  display: block; margin-top: .8rem; font-size: 10px; letter-spacing: .26em;
  text-transform: uppercase; color: rgba(255,255,255,.78); font-weight: 500; line-height: 1.4;
}

/* ============ PRICING ============ */
.price-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 600px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  background: linear-gradient(180deg, #fff 0%, #fdfaf8 100%);
  border: 1px solid var(--sand-line); border-radius: 6px; padding: 1.85rem;
  position: relative; overflow: hidden; transition: all .5s var(--ease);
  box-shadow: 0 1px 0 #fff inset, 0 8px 22px -16px rgba(141,45,23,.18);
}
.price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand), transparent);
}
.price-card:hover {
  transform: translateY(-5px); border-color: var(--sand);
  box-shadow: 0 1px 0 #fff inset, 0 28px 56px -24px rgba(141,45,23,.28);
}
.pc-type { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--brand); font-weight: 700; }
.pc-type.signature { color: var(--sand-deep); }
.pc-size { font-family: var(--font-display); font-weight: 500; font-size: 46px; line-height: 1; margin-top: .55rem; letter-spacing: -0.025em; color: var(--graphite); }
.pc-size .u { font-size: 16px; color: var(--slate-light); margin-left: 4px; }
.pc-sub { font-size: 12.5px; color: var(--slate-light); margin-top: .3rem; }
.pc-divider { height: 1px; background: var(--sand-line); margin: 1.3rem 0; }
.pc-starts { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--sand-deep); font-weight: 700; }
.pc-price { font-family: var(--font-display); font-weight: 500; font-size: 30px; margin-top: .25rem; letter-spacing: -0.02em; color: var(--graphite); }
.pc-price .u { color: var(--slate-light); }
.pc-por { font-family: var(--font-display); font-weight: 500; font-size: 22px; margin-top: .25rem; color: var(--graphite); }

/* ============ FLOOR PLANS (gated) ============ */
.plan-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 600px) { .plan-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .plan-grid { grid-template-columns: repeat(3, 1fr); } }
.plan-card {
  background: #fff; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--sand-line); transition: all .45s var(--ease); position: relative;
}
.plan-card:hover { transform: translateY(-5px); border-color: var(--sand); box-shadow: 0 28px 60px -28px rgba(141,45,23,.25); }
.gated { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--cream); }
.gated-fill {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--brand-soft) 0%, rgba(200,155,106,.1) 100%);
  display: flex; align-items: center; justify-content: center;
}
.gated-fill svg { width: 56px; height: 56px; stroke: rgba(141,45,23,.25); }
.gated::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(255,255,255,.55) 100%);
}
.gated-cta { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; padding: 1.2rem; z-index: 2; }
.plan-card .meta { padding: 1.1rem 1.25rem 1.4rem; }
.plan-card .meta .t { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--sand-deep); font-weight: 700; }
.plan-card .meta .t.brand { color: var(--brand); }
.plan-card .meta .name { font-family: var(--font-display); font-weight: 500; font-size: 20px; margin-top: .3rem; color: var(--graphite); }
.plan-card-dark {
  background: linear-gradient(160deg, rgba(200,155,106,.1), transparent 60%), linear-gradient(180deg, var(--brand) 0%, var(--brand-deeper) 100%);
  color: #fff; border-radius: 6px; border: 1px solid var(--sand-line);
  padding: 2.25rem; display: flex; flex-direction: column; justify-content: space-between; min-height: 280px; position: relative; overflow: hidden;
}
.plan-card-dark::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--sand), transparent); }
.plan-card-dark .label { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--sand-light); font-weight: 600; }
.plan-card-dark h4 { font-family: var(--font-display); font-weight: 500; font-size: 25px; line-height: 1.15; margin: .6rem 0 .85rem; }
.plan-card-dark p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.72); margin: 0; }

/* ============ AMENITIES (dark luxury) ============ */
.section-usps {
  background: linear-gradient(180deg, var(--brand-deeper) 0%, #2e0c04 100%);
  padding: 7rem 1.25rem; position: relative; overflow: hidden; color: #fff;
}
.section-usps::before { content: ''; position: absolute; top: -30%; right: -20%; width: 60%; height: 160%; background: radial-gradient(closest-side, rgba(200,155,106,.1), transparent); pointer-events: none; }
.section-usps .h-section { color: #fff; }
.section-usps .h-section em { color: var(--sand-light); }
.section-usps .eyebrow { color: var(--sand-light); }
.section-usps .lead { color: rgba(255,255,255,.72); }
.section-usps .section-head { position: relative; z-index: 1; }
.usp-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; position: relative; z-index: 1; }
@media (min-width: 600px) { .usp-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .usp-grid { grid-template-columns: repeat(3, 1fr); } }
.usp-card {
  background: linear-gradient(160deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.01) 100%);
  border: 1px solid var(--sand-line); border-radius: 4px; padding: 2.25rem 1.85rem;
  backdrop-filter: blur(10px); position: relative; overflow: hidden;
  transition: all .5s var(--ease); min-height: 200px;
  display: flex; flex-direction: column; gap: 1rem;
}
.usp-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--sand), transparent); opacity: .4; transition: opacity .5s var(--ease); }
.usp-card:hover { transform: translateY(-4px); border-color: var(--sand); background: linear-gradient(160deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.02) 100%); }
.usp-card:hover::before { opacity: 1; }
.usp-icon { width: 40px; height: 40px; color: var(--sand-light); }
.usp-icon svg { width: 100%; height: 100%; stroke: var(--sand-light); }
.usp-title { font-family: var(--font-display); font-weight: 500; font-size: 21px; line-height: 1.18; color: #fff; margin: 0; }
.usp-sub { font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,.65); margin: 0; }
.scarcity-strip {
  margin: 3rem auto 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem;
  position: relative; z-index: 1; padding-top: 2rem; border-top: 1px solid rgba(200,155,106,.15);
}
.ss-pill {
  display: inline-flex; align-items: center; padding: .45rem 1rem; font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--sand-light); font-weight: 700;
  background: rgba(200,155,106,.06); border: 1px solid var(--sand); border-radius: 9999px;
}

/* ============ GALLERY ============ */
.gallery-wrap { position: relative; }
.ag-label { max-width: 1240px; margin: 0 auto 1.25rem; padding: 0 1.25rem; }
.ag-track {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 0 6rem 1rem 1.25rem;
}
.ag-track::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .ag-track { padding: 0 14rem 1.5rem 2rem; gap: 1.25rem; } }
.ag-slide {
  flex: 0 0 80vw; max-width: 480px; aspect-ratio: 3/2; border-radius: 14px; overflow: hidden;
  scroll-snap-align: start; box-shadow: 0 12px 28px -14px rgba(0,0,0,.2); position: relative; background: var(--cream);
}
@media (min-width: 768px) { .ag-slide { flex: 0 0 520px; max-width: 520px; border-radius: 18px; } }
.ag-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.ag-slide:hover img { transform: scale(1.04); }
.ag-slide .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem 1.25rem .9rem;
  background: linear-gradient(to top, rgba(26,14,10,.85), transparent);
  color: #fff; font-family: var(--font-display); font-style: italic; font-size: 17px;
}
.ag-hint { text-align: center; margin-top: 1rem; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--brand); font-weight: 700; display: flex; align-items: center; gap: .6rem; justify-content: center; }
.ag-arrow { color: var(--sand-deep); font-size: 17px; animation: arrowSlide 1.6s ease-in-out infinite; }
@keyframes arrowSlide { 0%,100% { transform: translateX(0); opacity: .65; } 50% { transform: translateX(8px); opacity: 1; } }
.gallery-cta-wrap { text-align: center; margin-top: 2.5rem; }

/* ============ CONNECTIVITY ============ */
.conn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .conn-grid { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; } }
@media (min-width: 1024px) { .conn-grid { grid-template-columns: repeat(6, 1fr); } }
.conn-card {
  background: #fff; border-radius: 6px; padding: 1.5rem 1.25rem;
  border: 1px solid var(--sand-line); transition: all .4s var(--ease);
  display: flex; flex-direction: column; gap: .5rem; position: relative; overflow: hidden;
}
.conn-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--sand), transparent); }
.conn-card:hover { transform: translateY(-3px); border-color: var(--sand); box-shadow: 0 18px 40px -22px rgba(141,45,23,.25); }
.conn-ic { width: 34px; height: 34px; color: var(--brand); opacity: .85; }
.conn-ic svg { width: 100%; height: 100%; stroke: var(--brand); }
.conn-min { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 3.5vw, 34px); line-height: 1; color: var(--brand); letter-spacing: -0.025em; }
.conn-min .u { font-size: 13px; color: var(--sand-deep); margin-left: 2px; }
.conn-l { font-size: 12.5px; color: var(--graphite); font-weight: 500; line-height: 1.35; }
.conn-callout {
  margin-top: 1.5rem; background: linear-gradient(160deg, rgba(200,155,106,.08), transparent 60%), linear-gradient(180deg, var(--brand) 0%, var(--brand-deeper) 100%);
  color: #fff; border-radius: 6px; padding: 2rem 1.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  align-items: center; border: 1px solid var(--sand-line); position: relative; overflow: hidden;
}
.conn-callout::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--sand), transparent); }
@media (min-width: 768px) { .conn-callout { grid-template-columns: auto 1fr; padding: 2.5rem 3rem; gap: 3rem; } }
.conn-callout-num { font-family: var(--font-display); font-weight: 500; font-size: clamp(64px, 9vw, 104px); line-height: .9; letter-spacing: -0.04em; color: var(--sand-light); }
.conn-callout-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .75rem; }
.conn-callout-list li { position: relative; padding-left: 1.2rem; font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,.82); }
.conn-callout-list li::before { content: ''; position: absolute; left: 0; top: .55em; width: 5px; height: 5px; background: var(--sand-light); border-radius: 50%; }

/* ============ LOCATION (dark map) ============ */
.map-frame {
  width: 100%; height: 440px; border: 0; border-radius: 16px; display: block;
  filter: invert(0.92) hue-rotate(180deg) contrast(0.9) saturate(0.6);
}
@media (min-width: 768px) { .map-frame { height: 520px; } }
.flex-center { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: .75rem; }

/* ============ VIDEO CONFERENCE CTA ============ */
.vc-card {
  background: linear-gradient(160deg, rgba(200,155,106,.08), transparent 60%), linear-gradient(180deg, var(--brand) 0%, var(--brand-deeper) 100%);
  color: #fff; border-radius: 16px; padding: 2.5rem 1.75rem; text-align: center; position: relative; overflow: hidden;
  border: 1px solid var(--sand-line);
}
.vc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--sand), transparent); }
@media (min-width: 768px) { .vc-card { padding: 4rem 3rem; } }
.vc-card .icon-circle { width: 60px; height: 60px; border-radius: 50%; background: rgba(200,155,106,.14); border: 1px solid var(--sand-line); display: inline-flex; align-items: center; justify-content: center; margin-bottom: .5rem; }
.vc-card h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 4vw, 42px); line-height: 1.1; margin: .75rem 0; }
.vc-card h3 em { font-style: italic; color: var(--sand-light); }
.vc-card .eyebrow { color: var(--sand-light); }

/* ============ ABOUT ============ */
.heritage-section {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(141,45,23,.03), transparent 60%), #fff;
  padding: 6rem 1.25rem; text-align: center;
}
.heritage-headline { font-family: var(--font-display); font-size: clamp(34px, 5vw, 54px); line-height: 1.05; color: var(--brand); margin: 1.25rem 0; font-weight: 500; }
.heritage-body { max-width: 720px; margin: 0 auto; color: var(--slate); font-size: 15.5px; line-height: 1.75; }
.heritage-body + .heritage-body { margin-top: 1.25rem; }
.legacy-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; max-width: 820px; margin: 3rem auto 0; }
@media (min-width: 600px) { .legacy-stats { grid-template-columns: repeat(4, 1fr); } }
.legacy-tile {
  text-align: center; padding: 2rem 1rem; border: 1px solid var(--sand-line);
  background: linear-gradient(180deg, #fff, #fdfaf8); position: relative; overflow: hidden; border-radius: 4px;
}
.legacy-tile::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--sand), transparent); }
.legacy-num { font-family: var(--font-display); font-size: 44px; line-height: 1; color: var(--brand); letter-spacing: -0.01em; font-weight: 500; }
.legacy-label { display: block; margin-top: .65rem; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--brand); font-weight: 600; }
.legacy-sub { display: block; margin-top: .4rem; font-size: 12px; color: var(--slate); }

/* ============ FAQ ============ */
.faq-item { background: #fff; border-radius: 6px; padding: 1.25rem 1.5rem; border: 1px solid var(--sand-line); transition: border-color .3s ease; margin-bottom: .75rem; }
.faq-item:hover { border-color: var(--sand); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--brand); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--sand-line); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; color: var(--sand-deep); flex-shrink: 0; transition: all .3s var(--ease); }
.faq-item[open] .faq-icon { transform: rotate(45deg); color: #fff; background: var(--brand); border-color: var(--brand); }
.faq-item p { margin: 1rem 0 0; color: var(--slate); font-size: 15px; line-height: 1.65; }
@media (min-width: 768px) { .faq-item { padding: 1.5rem 1.85rem; } .faq-item summary .q { font-size: 20px; } }

/* ============ RERA ============ */
.rera-card {
  background: linear-gradient(160deg, rgba(200,155,106,.04), transparent 60%), #fff;
  border: 1px solid var(--sand); border-radius: 6px; padding: 2.5rem;
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: center; position: relative;
}
.rera-card::before { content: ''; position: absolute; inset: 6px; border: 1px solid var(--sand-line); border-radius: 4px; pointer-events: none; }
@media (min-width: 768px) { .rera-card { grid-template-columns: 2fr 1fr; } }
.rera-card .eyebrow { color: var(--sand-deep); }
.rera-card h3 { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); margin: 0; color: var(--brand); font-weight: 500; }
.rera-card p { color: var(--slate); font-size: 13.5px; line-height: 1.6; }
.rera-card a { color: var(--brand); border-bottom: 1px solid currentColor; }
.rera-qr { background: #fff; padding: 1rem; border-radius: 8px; border: 1px solid var(--sand-line); width: fit-content; margin: 0 auto; text-align: center; }
.rera-qr svg { width: 130px; height: 130px; }
.rera-qr .l { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--sand-deep); margin-top: .5rem; font-weight: 600; }

/* ============ PRE-REGISTER ============ */
.prereg-section {
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(200,155,106,.06), transparent 70%),
    linear-gradient(180deg, var(--brand-deeper) 0%, var(--brand) 100%);
  color: #fff; position: relative; overflow: hidden; padding: 6rem 1.25rem;
}
.prereg-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; text-align: center; }
.prereg-section .eyebrow { color: var(--sand-light); }
.prereg-section h2 { font-family: var(--font-display); font-size: clamp(33px, 5vw, 56px); color: #fff; margin: 1rem 0; font-weight: 500; letter-spacing: -0.02em; }
.prereg-section h2 em { font-style: italic; color: var(--sand-light); }
.prereg-section .lead { color: rgba(255,255,255,.75); }
.form-field { margin-bottom: 1.4rem; text-align: left; }
.form-label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--sand-light); font-weight: 600; margin-bottom: .4rem; display: block; }
.lux-input {
  background: rgba(255,255,255,.06); border: none; border-bottom: 1px solid var(--sand-line);
  padding: .85rem 0; font-size: 17px; width: 100%; color: #fff; font-family: inherit; transition: border-color .3s ease;
}
.lux-input:focus { outline: none; border-bottom-color: var(--sand-light); }
.lux-input::placeholder { color: rgba(255,255,255,.4); }

/* ============ FOOTER ============ */
.footer {
  background: linear-gradient(180deg, var(--brand-deeper) 0%, #1a0603 100%);
  padding: 5rem 1.25rem 3rem; position: relative;
}
.footer::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 1px; background: linear-gradient(90deg, transparent, var(--sand), transparent); }
.footer-top { text-align: center; margin-bottom: 3rem; }
.footer-top .brand-mark { font-family: var(--font-display); font-size: 22px; color: var(--sand-light); letter-spacing: .12em; }
.footer-top .since { display: block; font-size: 9.5px; letter-spacing: .42em; color: var(--sand-deep); margin-top: .5rem; }
.footer-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer .brand-line { font-family: var(--font-display); font-size: 24px; font-weight: 500; color: var(--sand-light); letter-spacing: -0.01em; }
.footer .brand-line .sub { color: #fff; }
.footer p, .footer li { color: rgba(255,255,255,.62); }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; font-size: 14px; }
.footer ul li { color: rgba(255,255,255,.72); }
.footer .col-head { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--sand-light); margin: 0 0 1rem; font-weight: 600; }
.footer-links a { color: var(--sand-light); border-bottom: 1px solid rgba(200,155,106,.3); transition: all .2s; }
.footer-links a:hover { color: #fff; border-color: var(--sand-light); }
.footer-disclaimer { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(200,155,106,.14); font-size: 11.5px; color: rgba(255,255,255,.42); line-height: 1.7; max-width: 1200px; margin-left: auto; margin-right: auto; }
.footer-disclaimer strong { color: var(--sand-light); }
.footer-copy { font-size: 11.5px; color: rgba(255,255,255,.35); margin-top: 1.5rem; text-align: center; }

/* ============ FLOATING + STICKY ============ */
.wa-float {
  position: fixed; bottom: 86px; right: 18px; z-index: 50; width: 58px; height: 58px;
  border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,.55), 0 2px 8px rgba(0,0,0,.12);
  transition: transform .3s var(--ease); animation: waPulse 3s ease-in-out infinite;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 12px 28px -8px rgba(37,211,102,.55), 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 12px 28px -8px rgba(37,211,102,.55), 0 0 0 14px rgba(37,211,102,0); }
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 32px; height: 32px; }
@media (min-width: 900px) { .wa-float { bottom: 28px; right: 28px; width: 62px; height: 62px; } }
@media (prefers-reduced-motion: reduce) { .wa-float { animation: none; } }

.sticky-footer {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 55;
  background: rgba(26,14,10,.92); backdrop-filter: blur(18px);
  border-top: 1px solid var(--sand-line);
  padding: .5rem .35rem max(.5rem, env(safe-area-inset-bottom));
}
.sf-grid { max-width: 100%; display: grid; grid-template-columns: repeat(4, 1fr); gap: .35rem; padding: 0 .35rem; }
.sf-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .2rem;
  padding: .55rem .25rem; border-radius: 12px; font-size: 10px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; min-height: 54px; transition: all .2s ease; border: 1px solid transparent; color: #fff;
}
.sf-btn .ic { width: 18px; height: 18px; }
.sf-call { background: rgba(255,255,255,.08); }
.sf-wa { background: #25D366; }
.sf-price { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deeper) 100%); }
.sf-visit { background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 100%); }
.sf-btn:hover { transform: translateY(-1px); }
@media (min-width: 900px) {
  .sticky-footer { display: none !important; }
  body { padding-bottom: 0 !important; }
}
@media (max-width: 899px) { .wa-float { bottom: 74px; } }

/* ============ PRIVACY MODAL ============ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(26,14,10,.6);
  backdrop-filter: blur(8px); display: none; align-items: flex-start; justify-content: center;
  padding: 2rem 1rem; overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal-card {
  background: #fbf6f2; max-width: 780px; width: 100%; border-radius: 12px; padding: 2.5rem 2rem;
  margin: auto; position: relative; box-shadow: 0 40px 100px -30px rgba(0,0,0,.5);
  border: 1px solid var(--sand-line);
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(141,45,23,.08); border: 1px solid var(--sand-line); color: var(--brand);
  font-size: 20px; display: flex; align-items: center; justify-content: center; line-height: 1;
}
.modal-card h1 { color: var(--brand); font-family: var(--font-display); font-size: 28px; margin-bottom: 8px; font-weight: 500; }
.modal-card .updated { color: var(--slate-light); font-size: 13px; margin-top: 0; }
.modal-card h2 { font-size: 16px; margin-top: 28px; color: var(--ink); font-family: var(--font-display); font-weight: 600; }
.modal-card p, .modal-card li { font-size: 14.5px; color: var(--slate); line-height: 1.7; }
.modal-card a { color: var(--brand); }
.modal-card ul { padding-left: 1.2rem; }

a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
