:root {
  --bg: #f8fcf9;
  --ink: #173533;
  --muted: #536966;
  --accent: #15a7bd;
  --accent-dark: #0b7f93;
  --accent-soft: #def5ee;
  --accent-mid: #35a852;
  --line: #d7e9e1;
  --gold: #f2dfb8;
  --deep: #0d3733;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.site-shell { min-height: 100vh; overflow: hidden; background: var(--bg); }

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  border-bottom: 1px solid rgba(255,255,255,.6);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
}
.nav-inner {
  position: relative;
  height: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img { width: auto; height: 44px; object-fit: contain; }
.nav-links { display: none; align-items: center; gap: 28px; color: var(--muted); font-size: 14px; font-weight: 500; }
.nav-links a:not(.whatsapp-btn):hover { color: var(--accent); }
.mobile-actions { display: flex; align-items: center; gap: 8px; }
.whatsapp-btn {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background: #25d366;
  padding: 8px 16px;
  color: white;
  font-size: 14px;
  font-weight: 800;
  transition: background .25s ease, transform .25s ease;
}
.whatsapp-btn:hover { background: #20bd5a; }
.wa-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 2px;
  box-shadow: 0 0 0 2px rgba(255,255,255,.92);
}
.mobile-wa { min-height: 44px; margin: 8px; padding: 8px 14px; }
.menu-btn {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--accent-dark);
}
.menu-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.mobile-menu {
  border-top: 1px solid var(--line);
  background: white;
  padding: 10px 20px 18px;
}
.mobile-menu a { display: block; padding: 10px 0; color: var(--muted); font-weight: 600; }

.hero {
  position: relative;
  min-height: 760px;
  padding-top: 64px;
  background: #201b1e;
  color: white;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .74;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,35,32,.28), rgba(9,45,42,.58), rgba(9,38,35,.84));
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 700px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-copy { max-width: 900px; margin: 0 auto; }
.hero-kicker { display: inline-block; margin: 0 0 16px; color: #c8fbff; font-size: 16px; font-weight: 800; }
.hero-project { margin-bottom: 12px; color: var(--gold); font-size: 20px; font-weight: 800; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 14px; font-size: 48px; line-height: 1; font-weight: 800; }
.hero-location { margin: 0 auto 18px; max-width: 760px; color: var(--gold); font-size: 20px; font-weight: 800; }
.hero-type { margin-bottom: 12px; color: white; font-size: 38px; line-height: 1.06; font-weight: 900; }
.hero-price { margin-bottom: 0; color: #c8fbff; font-size: 42px; line-height: 1.05; font-weight: 900; }
.hero-facts {
  margin: 24px auto 0;
  display: flex;
  max-width: 780px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero-facts span { color: white; font-size: 32px; line-height: 1.1; font-weight: 800; }
.hero-facts span:last-child { color: #c8fbff; }
.hero-facts i { display: none; width: 1px; height: 32px; background: rgba(255,255,255,.26); }
.hero-sub { margin-top: 16px; color: var(--gold); font-size: 18px; font-weight: 700; }
.hero-ctas { margin-top: 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }

.btn {
  display: inline-flex;
  min-height: 48px;
  width: auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  border: 0;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: white; box-shadow: 0 18px 38px rgba(21,167,189,.28); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { border: 1px solid rgba(255,255,255,.8); background: rgba(255,255,255,.12); color: white; }
.btn-ghost:hover { background: rgba(255,255,255,.2); }

.section-inner { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.why-section { padding: 56px 0; }
.eyebrow { margin-bottom: 12px; color: var(--accent-dark); font-size: 14px; font-weight: 800; text-align: center; text-transform: uppercase; letter-spacing: 0; }
h2 { margin-bottom: 28px; color: var(--ink); font-size: 34px; line-height: 1.08; text-align: center; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 20px;
}
.feature-tile { text-align: center; }
.icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-mid);
}
.icon-box::before { content: ""; width: 32px; height: 32px; background: currentColor; mask: var(--icon) center/contain no-repeat; }
.icon-box[data-icon="title"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3h10a2 2 0 0 1 2 2v16l-4-2-3 2-3-2-4 2V5a2 2 0 0 1 2-2z' fill='black'/%3E%3Cpath d='M9 8h6M9 12h6' stroke='white' stroke-width='1.6'/%3E%3C/svg%3E"); }
.icon-box[data-icon="land"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m3 6 6-3 6 3 6-3v15l-6 3-6-3-6 3zm6-3v15m6-12v15' stroke='black' stroke-width='2' fill='none'/%3E%3C/svg%3E"); }
.icon-box[data-icon="shield"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z' fill='black'/%3E%3C/svg%3E"); }
.icon-box[data-icon="road"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 22 10 2h4l3 20M12 6v3m0 4v3m0 3v3' stroke='black' stroke-width='2' fill='none'/%3E%3C/svg%3E"); }
.icon-box[data-icon="growth"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 19h16M7 16V9m5 7V5m5 11v-4M4 12l5-5 4 4 7-7' stroke='black' stroke-width='2' fill='none'/%3E%3C/svg%3E"); }
.icon-box[data-icon="convenience"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 8V7a5 5 0 0 1 10 0v1h3l-1.4 13H5.4L4 8zm2 0h6V7a3 3 0 0 0-6 0z' fill='black'/%3E%3C/svg%3E"); }
.feature-tile h3 { margin: 12px auto 0; max-width: 180px; color: var(--ink); font-size: 15px; line-height: 1.35; }
.feature-tile p { margin: 8px auto 0; max-width: 230px; color: var(--muted); font-size: 13px; line-height: 1.45; font-weight: 600; }
.why-cta { margin: 34px auto 0; display: flex; width: max-content; }

.location-section, .layout-section { padding: 64px 0; background: white; }
.layout-section { background: #eef8f3; }
.location-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}
.image-card {
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: #eaf7f3;
  padding: 0;
  box-shadow: 0 22px 55px rgba(41,37,39,.12);
  cursor: zoom-in;
}
.image-card img { width: 100%; height: 100%; object-fit: cover; }
.location-points {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.location-points h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
}
.location-points ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.location-points li {
  position: relative;
  padding: 13px 12px 13px 42px;
  border-radius: 6px;
  background: #f5fbf8;
  color: var(--ink);
  font-weight: 800;
}
.location-points li strong,
.location-points li span {
  display: block;
}
.location-points li strong {
  line-height: 1.28;
}
.location-points li span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
  font-weight: 600;
}
.location-points li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 5px white;
}
.center-cta { display: flex; justify-content: center; }
.location-cta { margin-top: 28px; }
.master-plan-wrap { margin-top: 36px; }
.availability {
  margin-top: 18px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: white;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(41,37,39,.08);
}
.availability p { margin-bottom: 6px; color: var(--muted); font-weight: 700; }
.availability strong { display: block; margin-bottom: 16px; }
.progress-label { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 13px; font-weight: 700; }
.progress-label b { color: var(--accent-dark); text-align: right; }
.progress-note { margin: 10px 0 0; color: var(--ink); font-size: 14px; font-weight: 800; }
.progress-bar { margin-top: 8px; height: 10px; overflow: hidden; border-radius: 999px; background: var(--line); }
.progress-bar span { display: block; width: 80%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--accent-mid), var(--accent)); }

.property-card {
  overflow: hidden;
  border-radius: 6px;
  background: white;
  box-shadow: 0 22px 55px rgba(41,37,39,.14);
}
.property-photo img { width: 100%; height: 270px; object-fit: cover; }
.property-content { padding: 24px; }
.property-content h3 { margin-bottom: 18px; font-size: 24px; }
.room-icons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.room-icons span {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--deep);
  font-weight: 900;
}
.room-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--accent-mid);
  mask: var(--room-icon) center/contain no-repeat;
}
.room-icon.bed { --room-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 11V5h7a4 4 0 0 1 4 4v2h7v8h-2v-2H5v2H3zm2 0h7V9a2 2 0 0 0-2-2H5z' fill='black'/%3E%3C/svg%3E"); }
.room-icon.bath { --room-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3a3 3 0 0 1 3 3v5h11v2a7 7 0 0 1-4 6.3V22h-2v-2H9v2H7v-2.7A7 7 0 0 1 3 13v-2h5V6a1 1 0 0 0-2 0H4a3 3 0 0 1 3-3z' fill='black'/%3E%3C/svg%3E"); }
.spec-grid { display: grid; gap: 10px; margin-bottom: 20px; }
.spec-grid p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.spec-grid span { color: var(--muted); }
.spec-grid strong { text-align: right; }
.floor-plan-grid {
  display: grid;
  gap: 12px;
  margin: 20px 0 14px;
}
.floor-plan {
  display: block;
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 6px;
  background: #fbfff9;
  padding: 14px;
  cursor: zoom-in;
}
.floor-plan img { width: 100%; max-height: 360px; object-fit: contain; }
.price-block {
  margin: 10px 0 22px;
  text-align: center;
}
.price-block span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.price-block strong {
  display: block;
  color: var(--accent-dark);
  font-size: 32px;
  line-height: 1.12;
  font-weight: 900;
}

.gallery-section { padding: 64px 0; }
.gallery-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}
.gallery-card {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: #f3e6eb;
  cursor: zoom-in;
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: 999px;
  background: rgba(32,27,30,.72);
  padding: 7px 12px;
  color: white;
  font-size: 13px;
  font-weight: 800;
}
.side-card span { display: none; }
.side-card { display: block; width: 22vw; height: 190px; opacity: .55; }
.main-card { width: 54vw; max-width: 760px; height: 260px; box-shadow: 0 22px 55px rgba(41,37,39,.16); }
.gallery-controls {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.round-btn {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--accent-dark);
  box-shadow: 0 10px 30px rgba(41,37,39,.08);
  cursor: pointer;
}
.dots { display: flex; align-items: center; gap: 7px; }
.dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--line);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.dots button.active { width: 32px; background: var(--accent); }

.lead-section {
  position: relative;
  padding: 64px 0;
  background: var(--deep) url("assets/site/contact-bg.jpg") center/cover no-repeat;
}
.lead-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,38,34,.72), rgba(4,38,34,.86));
}
.lead-section .section-inner { position: relative; z-index: 1; }
.lead-inner { max-width: 720px; text-align: center; }
.lead-section h2 { color: white; }
.lead-section .eyebrow { color: #c8fbff; }
.lead-copy { margin: 0 auto 26px; color: rgba(255,255,255,.82); }
.lead-form { display: grid; gap: 16px; text-align: left; }
.lead-form label { display: grid; gap: 8px; color: white; font-size: 14px; font-weight: 800; }
.lead-form input, .lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  padding: 0 14px;
  color: var(--ink);
  outline: none;
}
.lead-form input:focus, .lead-form select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(21,167,189,.16); }
.phone-row { display: grid; grid-template-columns: 120px 1fr; gap: 10px; }
.submit-btn { justify-self: center; margin-top: 6px; }

footer {
  padding: 32px 20px 40px;
  background: #f8fcf9;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}
footer p { margin: 0 0 8px; }
footer a { color: var(--accent-dark); font-weight: 800; }
.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  padding: 12px;
  box-shadow: 0 14px 35px rgba(37,211,102,.34);
  transition: transform .25s ease;
}
.floating-wa:hover { transform: scale(1.05); }
.wa-float-logo { width: 34px; height: 34px; border-radius: 50%; background: white; padding: 2px; object-fit: contain; box-shadow: 0 0 0 3px rgba(255,255,255,.95); }

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: rgba(20,16,18,.86);
  padding: 28px;
}
.modal[hidden] { display: none; }
.modal img { max-width: min(1100px, 94vw); max-height: 86vh; border-radius: 6px; background: white; object-fit: contain; }
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: white;
  cursor: pointer;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (min-width: 640px) {
  .hero-ctas, .hero-facts { flex-direction: row; }
  .hero-facts i { display: block; }
}
@media (min-width: 768px) {
  .nav-inner { padding: 0 32px; }
  .brand img { height: 46px; }
  .nav-links { display: flex; }
  .mobile-actions, .mobile-menu { display: none; }
  .hero { min-height: 820px; }
  .hero-inner { min-height: 760px; padding: 56px 48px; }
  .hero-kicker { font-size: 20px; }
  .hero-project { font-size: 24px; }
  h1 { font-size: 56px; }
  .hero-type { font-size: 58px; }
  .hero-price { font-size: 64px; }
  .hero-facts span { font-size: 48px; }
  .hero-sub, .hero-location { font-size: 22px; }
  .why-section { padding: 72px 0; }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 32px; }
  .feature-tile h3 { font-size: 18px; max-width: 260px; }
  .feature-tile p { font-size: 14px; max-width: 280px; }
  .location-section, .layout-section, .gallery-section, .lead-section { padding: 76px 0; }
  .location-layout { grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: 36px; }
  .master-plan-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 28px; align-items: center; }
  .property-card { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); }
  .property-photo img { height: 100%; min-height: 620px; }
  .property-content { padding: 34px; }
  .floor-plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .main-card { height: 460px; width: 56vw; }
  .side-card { height: 320px; width: 20vw; }
}
