:root {
  --ink: #161914;
  --forest: #243226;
  --forest-2: #314536;
  --gold: #c4a35a;
  --gold-2: #d4b56e;
  --cream: #f4efe6;
  --sand: #e7dccb;
  --paper: #fffcf7;
  --muted: #6c6a63;
  --line: rgba(36, 50, 38, 0.12);
  --shadow: 0 18px 50px rgba(22, 25, 20, 0.08);
  --radius: 18px;
  --max: 1180px;
    --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 88px 0; }
.section.alt { background: var(--cream); }
.eyebrow {
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}
h1, h2, h3, .serif { font-family: var(--font); font-weight: 600; letter-spacing: -0.02em; }
h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.05; margin: 8px 0 16px; }
h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.15; margin: 8px 0 18px; }
h3 { font-size: 28px; margin: 0 0 10px; }
.lede { font-size: 18px; color: var(--muted); max-width: 640px; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,252,247,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}
.header-inner, .nav-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 76px; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 58px; width: auto; display: block; }
.logo-footer img { height: 92px; filter: brightness(0) invert(1); }
.nav { display: flex; gap: 22px; align-items: center; font-size: 14px; }
.nav a:hover { color: var(--forest); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  appearance: none;
  -webkit-appearance: none;
}
.nav-dropdown-toggle::after {
  content: "▾";
  font-size: 11px;
  opacity: .75;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 180px;
  padding: 8px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 60;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: var(--cream);
  color: var(--forest);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}
.mobile-nav-label {
  display: block;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.header-cta { display: flex; gap: 8px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; border-radius: 999px; padding: 12px 20px;
  font: inherit; font-weight: 600; font-size: 14px; transition: .2s ease;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-2); }
.btn-dark { background: var(--forest); color: #fff; }
.btn-outline { background: transparent; border: 1px solid var(--ink); }
.btn-wa { background: #128c4a; color: #fff; }
.btn-call { background: var(--ink); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.menu-toggle { display: none; background: none; border: 0; font-size: 26px; }

.hero {
  min-height: 88vh;
  position: relative;
  display: grid;
  align-items: end;
  color: #fff;
  background: #1c261e center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: center;
  animation: kenburns 22s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes kenburns {
  from { transform: scale(1.05) translate(0, 0); }
  to { transform: scale(1.14) translate(-1.5%, -1%); }
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(22,25,20,.15) 0%, rgba(22,25,20,.78) 100%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(196,163,90,.18) 0%, transparent 70%);
  z-index: 1;
  animation: hero-glow 5s ease-in-out infinite alternate;
}
@keyframes hero-glow {
  from { opacity: .92; }
  to { opacity: 1; }
}
.hero-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-shimmer {
  position: absolute;
  inset: -20% -40%;
  background: linear-gradient(
    105deg,
    transparent 42%,
    rgba(255,255,255,.06) 48%,
    rgba(196,163,90,.14) 50%,
    rgba(255,255,255,.06) 52%,
    transparent 58%
  );
  animation: hero-shimmer 7s ease-in-out infinite;
}
@keyframes hero-shimmer {
  0%, 100% { transform: translateX(-30%) skewX(-8deg); opacity: 0; }
  15% { opacity: 1; }
  50% { transform: translateX(30%) skewX(-8deg); opacity: 1; }
  85% { opacity: 0; }
}
.hero-rays {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 70%;
  background: conic-gradient(from 200deg at 70% 30%, transparent 0deg, rgba(196,163,90,.12) 18deg, transparent 36deg, rgba(255,255,255,.05) 52deg, transparent 70deg);
  animation: hero-rays 12s linear infinite;
  opacity: .7;
}
@keyframes hero-rays {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-particles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(196,163,90,.55);
  box-shadow: 0 0 12px rgba(196,163,90,.35);
  animation: particle-float var(--dur, 9s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes particle-float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .2; }
  25% { transform: translate(12px, -28px) scale(1.15); opacity: .75; }
  50% { transform: translate(-8px, -52px) scale(.9); opacity: .45; }
  75% { transform: translate(16px, -24px) scale(1.05); opacity: .65; }
}
.hero-anim {
  opacity: 0;
  transform: translateY(28px);
}
.hero.is-loaded .hero-anim {
  animation: hero-rise .9s cubic-bezier(.2,.7,.2,1) var(--d, 0s) forwards;
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
.hero-actions .btn {
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero.is-loaded .hero-actions .btn { opacity: 0; }
.hero.is-loaded .hero-actions .btn:nth-child(1) { animation: btn-pop .5s ease .65s both; }
.hero.is-loaded .hero-actions .btn:nth-child(2) { animation: btn-pop .5s ease .73s both; }
.hero.is-loaded .hero-actions .btn:nth-child(3) { animation: btn-pop .5s ease .81s both; }
.hero.is-loaded .hero-actions .btn:nth-child(4) { animation: btn-pop .5s ease .89s both; }
@keyframes btn-pop {
  0% { opacity: 0; transform: translateY(16px) scale(.94); }
  70% { transform: translateY(-2px) scale(1.02); }
  100% { opacity: 1; transform: none; }
}
.hero-actions .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: 999px;
  opacity: 0;
  animation: scroll-fade 1s ease 1.2s forwards;
}
.hero-scroll span {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--gold-2);
  border-radius: 999px;
  animation: scroll-dot 1.6s ease-in-out infinite;
}
@keyframes scroll-fade {
  to { opacity: 1; }
}
@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: .25; }
}
.skyline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 72px;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(#1a211c, #1a211c) 4% 100% / 18px 22px no-repeat,
    linear-gradient(#243226, #243226) 9% 100% / 28px 38px no-repeat,
    linear-gradient(#1f2a22, #1f2a22) 16% 100% / 22px 52px no-repeat,
    linear-gradient(#2c3e2d, #2c3e2d) 22% 100% / 36px 44px no-repeat,
    linear-gradient(#243226, #243226) 30% 100% / 20px 28px no-repeat,
    linear-gradient(#314536, #314536) 36% 100% / 42px 64px no-repeat,
    linear-gradient(#1f2a22, #1f2a22) 46% 100% / 26px 36px no-repeat,
    linear-gradient(#2c3e2d, #2c3e2d) 54% 100% / 34px 50px no-repeat,
    linear-gradient(#243226, #243226) 62% 100% / 18px 26px no-repeat,
    linear-gradient(#314536, #314536) 68% 100% / 48px 70px no-repeat,
    linear-gradient(#1f2a22, #1f2a22) 78% 100% / 24px 40px no-repeat,
    linear-gradient(#2c3e2d, #2c3e2d) 85% 100% / 32px 56px no-repeat,
    linear-gradient(#243226, #243226) 93% 100% / 20px 30px no-repeat;
  animation: skyline-rise 1.4s ease-out both;
}
.skyline::after {
  content: "";
  position: absolute;
  inset: 12px 0 18px;
  background-image: radial-gradient(circle, rgba(196,163,90,.85) 1.1px, transparent 1.4px);
  background-size: 18px 16px;
  opacity: .55;
  animation: windows-glow 2.8s ease-in-out infinite alternate;
}
@keyframes skyline-rise {
  from { transform: translateY(28px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes windows-glow {
  from { opacity: .28; }
  to { opacity: .7; }
}
.hero-inner { position: relative; z-index: 3; padding: 60px 0 96px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 28px; }
.pill {
  border: 1px solid rgba(255,255,255,.28);
  padding: 7px 12px; border-radius: 999px; font-size: 13px; background: rgba(255,255,255,.08);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.rera { display: inline-flex; gap: 8px; align-items: center; color: var(--gold-2); font-weight: 600; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.card, .stat, .amenity, .prop-card, .form, .spec-group, .map-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.stat, .amenity, .card {
  padding: 24px 26px;
}
.form {
  padding: 28px 30px;
}
.prop-card {
  padding: 14px 14px 20px;
}
.prop-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}
.amenity:hover { border-color: var(--gold); transform: translateY(-4px); transition: .25s ease; }
.stat strong, .amenity strong { display: block; font-size: 18px; font-family: var(--font); font-weight: 700; }
.stat span, .muted { color: var(--muted); }
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.prop-body { padding: 16px 8px 4px; }
.prop-body h3 { font-size: 20px; }
.price { color: var(--forest); font-weight: 700; }
.cta-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px;
}
.form h3 { margin-bottom: 6px; }
label { display: block; font-size: 13px; font-weight: 600; margin: 12px 0 6px; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line);
  font: inherit; background: var(--paper);
}
textarea { min-height: 110px; resize: vertical; }
.hp { position: absolute; left: -9999px; }
.alert {
  padding: 12px 14px; border-radius: 12px; margin-bottom: 14px;
  background: #e8f5e9; color: #1b5e20;
}
.map-wrap { padding: 12px; }
.map-wrap iframe { width: 100%; height: 360px; border: 0; border-radius: 12px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.tabs a, .filter {
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); font-size: 13px;
}
.tabs a.active, .filter.active { background: var(--forest); color: #fff; border-color: var(--forest); }
.table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.table th, .table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.spec-group { margin-bottom: 18px; padding: 20px 22px; }
figure {
  margin: 0;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
figure img { width: 100%; height: auto; border-radius: 10px; }
figcaption { padding: 10px 4px 2px; font-size: 13px; color: var(--muted); }
.zoom-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.zoom-trigger img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .35s ease;
}
.gallery-zoom {
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.gallery-zoom img {
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}
.zoom-trigger:hover img { transform: scale(1.04); }
.zoom-trigger::after {
  content: "⌕";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(22,25,20,.72);
  color: #fff;
  font-size: 14px;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.zoom-trigger:hover::after { opacity: 1; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10,12,10,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 56px 72px;
}
.lightbox[hidden] { display: none; }
.lightbox-img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  background: #fff;
}
.lightbox-caption {
  position: absolute;
  left: 0; right: 0; bottom: 18px;
  text-align: center;
  color: #efe8d8;
  margin: 0;
  font-size: 14px;
  padding: 0 20px;
}
.lightbox-close {
  position: absolute;
  top: 16px; right: 18px;
  width: 44px; height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(196,163,90,.85); color: #161914; }
body.lightbox-open { overflow: hidden; }
.reveal {
  opacity: 0;
  transform: translateY(22px);
}
.reveal.is-in {
  animation: storey-up .75s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes storey-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
.prop-card img, .gallery-grid img {
  transition: transform .8s ease;
}
.prop-card:hover img { transform: scale(1.04); }
.crane {
  position: absolute;
  right: 8%;
  bottom: 64px;
  width: 4px;
  height: 0;
  background: var(--gold);
  z-index: 2;
  animation: crane-build 2.2s ease-out forwards;
  pointer-events: none;
  transform-origin: bottom center;
}
.crane::after {
  content: "";
  position: absolute;
  top: 0; left: -18px;
  width: 40px; height: 3px;
  background: var(--gold-2);
  transform-origin: left center;
  animation: crane-swing 5s ease-in-out 2.4s infinite alternate;
}
.crane-hook {
  position: absolute;
  top: 3px;
  right: -2px;
  width: 2px;
  height: 18px;
  background: var(--gold-2);
  animation: hook-sway 3s ease-in-out 2.4s infinite alternate;
}
.crane-hook::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--gold-2);
  border-top: none;
  border-radius: 0 0 4px 4px;
}
@keyframes crane-swing {
  from { transform: rotate(-6deg); }
  to { transform: rotate(8deg); }
}
@keyframes hook-sway {
  from { transform: rotate(4deg); transform-origin: top center; }
  to { transform: rotate(-6deg); transform-origin: top center; }
}
@keyframes crane-build {
  from { height: 0; }
  to { height: 88px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after, .page-hero::before, .skyline, .skyline::after, .crane, .crane::after, .crane-hook,
  .hero-shimmer, .hero-rays, .hero-particles span, .hero-scroll, .hero-scroll span,
  .hero-anim, .reveal, .prop-card img, .heading-anim {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .heading-anim::after { width: 72px !important; }
}
.float-cta {
  position: fixed; right: 16px; bottom: 16px; z-index: 50; display: flex; flex-direction: column; gap: 10px;
}
.float-cta a {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700;
  box-shadow: var(--shadow);
}
.float-cta .call { background: var(--ink); }
.float-cta .wa { background: #128c4a; }
.site-footer { background: var(--ink); color: #d9d4c8; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.site-footer a:hover { color: var(--gold); }
.disclaimer { font-size: 12px; color: #9d988c; margin-top: 28px; }
.legal-nav { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; margin-top: 18px; }
.page-hero {
  min-height: 46vh;
  position: relative;
  display: grid;
  align-items: end;
  color: #fff;
  background: #1c261e center/cover no-repeat;
  padding: 88px 0 72px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: center;
  animation: kenburns 22s ease-in-out infinite alternate;
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,25,20,.22) 0%, rgba(22,25,20,.78) 100%);
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .lede, .page-hero p { color: rgba(255,255,255,.88); max-width: 720px; }
.page-hero .tabs a { color: #fff; border-color: rgba(255,255,255,.35); }
.page-hero .tabs a.active { background: #fff; color: var(--ink); border-color: #fff; }
.video-wrap { aspect-ratio: 16/9; background: #000; border-radius: var(--radius); overflow: hidden; }
.video-wrap iframe { width: 100%; height: 100%; border: 0; }
.pagination { display: flex; gap: 8px; list-style: none; padding: 0; margin-top: 24px; }
.pagination .page-link, .pagination a, .pagination span {
  display: inline-flex; padding: 8px 12px; border: 1px solid var(--line); border-radius: 10px;
}
.mobile-nav { display: none; }

/* Homepage — Flora brochures & content blocks */
.hero-tagline { font-weight: 600; letter-spacing: .02em; opacity: .95; }
.rounded-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
.rounded-trigger { width: 100%; border: 0; padding: 0; background: none; cursor: zoom-in; }
.check-list {
  list-style: none; padding: 0; margin: 20px 0 0;
  display: grid; gap: 10px;
}
.check-list li {
  position: relative; padding-left: 28px; line-height: 1.5;
}
.check-list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--forest); font-weight: 700;
}
.grid-2-check { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 24px; }
.brochure-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 28px;
}
.brochure-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.brochure-card .zoom-trigger { display: block; }
.brochure-card img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; object-position: top; }
.brochure-card-body { padding: 18px 20px 22px; }
.brochure-card-wide { display: grid; grid-template-columns: 1.2fr 1fr; align-items: stretch; }
.brochure-card-wide img { aspect-ratio: 16/10; height: 100%; object-fit: cover; }
.price-banner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: start;
  padding: 32px; border-radius: var(--radius); background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.price-xl { font-size: clamp(28px, 4vw, 42px); color: var(--forest); font-weight: 700; margin: 8px 0 12px; font-family: var(--font); }
.final-cta { background: linear-gradient(180deg, #f7f4ed 0%, #fff 100%); }

/* Animated section headings */
.heading-anim {
  opacity: 0;
  transform: translateY(22px);
}
.heading-anim.is-in {
  animation: heading-rise .85s cubic-bezier(.2,.7,.2,1) forwards;
}
.heading-anim.is-in::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  animation: heading-line .75s ease .25s forwards;
}
.heading-gold.heading-anim.is-in::after {
  background: linear-gradient(90deg, #e8d5a8, var(--gold-2), #e8d5a8);
  animation: heading-line .85s ease .2s forwards, heading-shimmer 2.4s ease-in-out 1s infinite;
}
@keyframes heading-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes heading-line {
  to { width: 72px; }
}
@keyframes heading-shimmer {
  0%, 100% { opacity: .85; }
  50% { opacity: 1; box-shadow: 0 0 12px rgba(196,163,90,.45); }
}

/* Flora Homez — unified project showcase */
.project-showcase {
  --showcase-bg: #0f1828;
  --showcase-bg-alt: #152238;
  --showcase-text: #eef2f7;
  --showcase-muted: rgba(238,242,247,.72);
  background: var(--showcase-bg);
  color: var(--showcase-text);
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}
.project-showcase-head {
  padding: 56px 0 36px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196,163,90,.14), transparent 70%),
    linear-gradient(180deg, #121f34, var(--showcase-bg));
}
.project-showcase-label {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(196,163,90,.45);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 16px;
}
.project-showcase-title {
  font-family: var(--font);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #f0e2bc, var(--gold-2), #c4a35a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.project-showcase-tagline {
  font-size: 18px;
  color: var(--showcase-muted);
  margin: 10px 0 18px;
}
.project-showcase-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  font-size: 14px;
  color: var(--showcase-muted);
}
.project-showcase-meta span::before {
  content: "◆ ";
  color: var(--gold-2);
  font-size: 10px;
}
.project-showcase-body { padding-bottom: 0; }
.project-block { padding: 52px 0; }
.project-block-alt { background: var(--showcase-bg-alt); }
.project-block-label {
  display: block;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 8px;
}
.project-showcase .heading-anim.is-in::after { background: linear-gradient(90deg, var(--gold-2), #e8d5a8); }
.project-showcase-foot {
  padding: 36px 0 52px;
  background: linear-gradient(180deg, var(--showcase-bg-alt), #0a121f);
  text-align: center;
  border-top: 1px solid rgba(196,163,90,.2);
}
.project-showcase-foot p { font-size: 18px; margin-bottom: 18px; color: var(--showcase-muted); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.btn-outline-light:hover { background: rgba(255,255,255,.08); color: #fff; }
.check-list-light li::before { color: var(--gold-2); }
.muted-light { color: var(--showcase-muted); font-size: 14px; }
.brochure-card-dark {
  background: rgba(255,255,255,.04);
  border-color: rgba(196,163,90,.22);
}
.brochure-card-dark .brochure-card-body strong { color: #fff; }
.brochure-card-dark .brochure-card-body p { color: var(--showcase-muted); }
.price-banner-dark {
  background: rgba(255,255,255,.04);
  border-color: rgba(196,163,90,.25);
  color: var(--showcase-text);
}
.price-banner-dark .price-xl { color: var(--gold-2); }
.stat-dark {
  background: rgba(255,255,255,.05);
  border-color: rgba(196,163,90,.18);
  color: var(--showcase-text);
}
.stat-dark span { color: var(--showcase-muted); }
.amenity-dark {
  background: rgba(255,255,255,.04);
  border-color: rgba(196,163,90,.18);
}
.amenity-dark strong { color: #fff; }
.amenity-dark p { color: var(--showcase-muted); }

/* Visit modal */
.modal[hidden] { display: none !important; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,24,40,.72);
  backdrop-filter: blur(4px);
}
.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(90vh, 860px);
  overflow: auto;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  animation: modal-in .35s ease;
}
.modal-dialog .form-modal {
  margin: 0;
  border: 0;
  box-shadow: none;
  border-radius: var(--radius);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(22,25,20,.08);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.modal-close:hover { background: rgba(22,25,20,.14); }
body.modal-open { overflow: hidden; }
@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav.open { display: flex; flex-direction: column; gap: 12px; padding-bottom: 18px; }
  .grid-3, .grid-4, .grid-2, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
  .grid-2-check, .brochure-grid, .price-banner, .brochure-card-wide { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .section { padding: 56px 0; }
}
