:root {
  --navy: #07182f;
  --navy-2: #0c2749;
  --gold: #c9a45d;
  --gold-2: #f0d99a;
  --ink: #102033;
  --muted: #6b7280;
  --line: rgba(201, 164, 93, 0.24);
  --white: #ffffff;
  --soft: #f6f4ef;
  --shadow: 0 24px 70px rgba(7, 24, 47, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 24, 47, 0.78), rgba(7, 24, 47, 0.12));
  transition: 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 24, 47, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand img {
  width: 58px;
  height: 42px;
  object-fit: contain;
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  padding: 4px;
}

.brand strong, .brand small { display: block; line-height: 1.1; }
.brand strong { font-family: "Cinzel", serif; font-size: 15px; letter-spacing: 0.3px; }
.brand small { color: var(--gold-2); font-size: 11px; text-transform: uppercase; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.main-nav a { opacity: 0.9; }
.main-nav a:hover { color: var(--gold-2); }

.header-actions { display: flex; gap: 10px; }
.menu-toggle { display: none; color: var(--white); background: transparent; border: 0; font-size: 24px; }

.btn {
  border: 0;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-gold { color: #07182f; background: linear-gradient(135deg, var(--gold-2), var(--gold)); box-shadow: 0 14px 30px rgba(201,164,93,0.26); }
.btn-white { color: var(--navy); background: var(--white); }
.btn-navy { color: var(--white); background: var(--navy); }
.btn-ghost { color: var(--white); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28); }
.btn-ghost-light { color: var(--white); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.38); }

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 34px;
  padding: 128px clamp(20px, 5vw, 72px) 72px;
  color: var(--white);
  overflow: hidden;
}

.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media {
  background: url("./assets/building-elevation.jpg") center/cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    radial-gradient(circle at 80% 20%, rgba(201,164,93,0.24), transparent 28%),
    linear-gradient(90deg, rgba(7,24,47,0.96), rgba(7,24,47,0.72) 42%, rgba(7,24,47,0.20));
}

.hero-content, .hero-form { position: relative; z-index: 1; }
.eyebrow, .section-tag, .form-kicker {
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
}

.hero h1 {
  margin: 14px 0 14px;
  font-family: "Cinzel", serif;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.9;
  max-width: 940px;
}

.hero h1 small {
  display: block;
  margin-top: 16px;
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero p { font-size: clamp(18px, 2.4vw, 28px); max-width: 720px; margin: 0 0 24px; color: rgba(255,255,255,0.88); }
.hero-badges, .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.hero-badges span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 700;
}
.hero-phone { display: inline-flex; gap: 10px; align-items: center; font-weight: 900; color: var(--gold-2); font-size: 18px; }

.glass-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 8px;
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.hero-form { padding: 28px; }
.hero-form h2, .modal-panel h2 { margin: 8px 0 8px; font-family: "Cinzel", serif; font-size: 28px; }
.hero-form p, .modal-panel p { font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.lead-form { display: grid; gap: 12px; }
.lead-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16,32,51,0.13);
  border-radius: 8px;
  padding: 0 14px;
  outline: none;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
}
.lead-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,164,93,0.18); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip div { padding: 24px clamp(16px, 3vw, 42px); border-right: 1px solid rgba(255,255,255,0.12); }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { font-family: "Cinzel", serif; color: var(--gold-2); }
.trust-strip span { margin-top: 6px; color: rgba(255,255,255,0.7); font-size: 13px; }

.section { padding: clamp(70px, 8vw, 118px) clamp(20px, 5vw, 72px); }
.unlock-section {
  padding: clamp(46px, 6vw, 82px) clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, #fffaf0, #ffffff);
  border-bottom: 1px solid rgba(7,24,47,0.08);
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.resource-grid article {
  padding: 22px;
  border-radius: 8px;
  border: 1px solid rgba(201,164,93,0.24);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(7,24,47,0.08);
}
.resource-grid i { color: var(--gold); font-size: 28px; }
.resource-grid p { color: var(--muted); line-height: 1.6; font-size: 14px; }
.split, .clubhouse, .lifestyle, .location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}
.section-tag { color: var(--gold); }
.section-tag.light { color: var(--gold-2); }
.section h2, .section-head h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.06;
  margin: 12px 0 18px;
}
.section-copy p, .section-head p { color: var(--muted); line-height: 1.8; font-size: 16px; }
.section-head { max-width: 880px; margin: 0 auto 42px; text-align: center; }

.mini-grid, .invest-grid, .location-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.mini-grid div, .invest-grid article, .location-cards article {
  border: 1px solid rgba(7,24,47,0.08);
  background: var(--white);
  padding: 22px;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(7,24,47,0.08);
}
.mini-grid i, .invest-grid i, .location-cards i { color: var(--gold); font-size: 24px; margin-bottom: 12px; }
.mini-grid strong, .mini-grid span { display: block; }
.mini-grid span, .invest-grid p, .location-cards p { color: var(--muted); line-height: 1.6; font-size: 14px; }

.image-stack { position: relative; }
.image-stack img, .clubhouse-gallery img, .gallery-grid img, .lifestyle-media img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.floating-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  color: var(--white);
  background: rgba(7,24,47,0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.navy-section {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(201,164,93,0.18), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}
.navy-section .section-head h2, .navy-section h3 { color: var(--white); }
.navy-section p { color: rgba(255,255,255,0.72); }
.highlight-grid, .amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.highlight-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
}
.highlight-card span { color: var(--gold-2); font-weight: 900; }
.center-cta { text-align: center; margin-top: 34px; }

.amenity-grid article {
  min-height: 160px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  border-radius: 8px;
  border: 1px solid rgba(7,24,47,0.08);
  background: linear-gradient(180deg, #fff, #fbf7ed);
  box-shadow: 0 16px 44px rgba(7,24,47,0.08);
  transition: 0.25s ease;
}
.amenity-grid article:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.amenity-grid i { color: var(--gold); font-size: 30px; }
.amenity-grid h3 { margin: 10px 0 0; font-size: 16px; }

.clubhouse { background: var(--soft); }
.clubhouse-gallery {
  display: grid;
  gap: 18px;
}
.clubhouse-gallery img:first-child { height: 390px; }
.clubhouse-gallery img:last-child { height: 260px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-grid img { height: 280px; cursor: zoom-in; transition: 0.25s ease; }
.gallery-grid img:hover { transform: translateY(-6px) scale(1.01); }
.gallery-grid img:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: 578px;
}
.gallery-grid img:nth-child(7) {
  grid-column: span 2;
}

.floor-section {
  background: linear-gradient(135deg, rgba(7,24,47,0.92), rgba(7,24,47,0.72)), url("./assets/building-elevation.jpg") center/cover fixed;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}
.floor-lock, .floor-reveal {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}
.gated-content { display: none; }
.gated-content.visible { display: block; }
.plan-card {
  background: var(--white);
  color: var(--ink);
  padding: 30px;
  border-radius: 8px;
}
.plan-card i { color: var(--gold); font-size: 42px; }
.floor-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 22px 0;
}
.floor-plan-grid figure {
  margin: 0;
  border: 1px solid rgba(7,24,47,0.10);
  border-radius: 8px;
  overflow: hidden;
  background: #fbf8ef;
  box-shadow: 0 14px 34px rgba(7,24,47,0.08);
}
.floor-plan-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
  transition: transform 0.25s ease;
}
.floor-plan-grid figure:hover img { transform: scale(1.04); }
.floor-plan-grid figcaption {
  padding: 12px 14px;
  font-weight: 900;
  font-size: 13px;
  color: var(--navy);
}
.floor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.map-placeholder {
  min-height: 460px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  padding: 0;
}
.map-placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}
.map-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(7,24,47,0.88);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.map-card i { color: var(--gold-2); font-size: 24px; margin-bottom: 8px; }
.map-card strong, .map-card span { display: block; }
.map-card span { color: rgba(255,255,255,0.78); line-height: 1.5; margin: 6px 0 14px; }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.timeline div { position: relative; padding: 26px; border: 1px solid rgba(255,255,255,0.16); border-radius: 8px; background: rgba(255,255,255,0.07); }
.timeline span { width: 12px; height: 12px; border-radius: 50%; background: var(--gold-2); display: block; margin-bottom: 16px; }

.check-list { padding: 0; margin: 22px 0 0; list-style: none; display: grid; gap: 12px; }
.check-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--gold); margin-right: 10px; }
.invest { background: var(--soft); }
.invest-grid { grid-template-columns: repeat(3, 1fr); }

.faq-list { max-width: 920px; margin: 0 auto; display: grid; gap: 12px; }
.faq-list details {
  border: 1px solid rgba(7,24,47,0.1);
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(7,24,47,0.06);
}
.faq-list summary { cursor: pointer; font-weight: 900; }
.faq-list p { color: var(--muted); line-height: 1.7; }

.contact-section {
  padding: clamp(72px, 8vw, 118px) 20px;
  background: linear-gradient(135deg, rgba(7,24,47,0.88), rgba(7,24,47,0.72)), url("./assets/club-house-3.jpg") center/cover;
}
.contact-card {
  max-width: 860px;
  margin: 0 auto;
  color: var(--white);
  text-align: center;
  padding: clamp(28px, 6vw, 60px);
}
.contact-card img { width: 130px; margin: 0 auto 18px; background: rgba(255,255,255,0.92); border-radius: 8px; padding: 8px; }
.contact-card h2 { font-family: "Cinzel", serif; font-size: clamp(30px, 5vw, 54px); margin: 10px 0; }
.contact-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  padding: 40px clamp(20px, 5vw, 72px) 90px;
  background: #050f1e;
  color: var(--white);
}
.site-footer strong { font-family: "Cinzel", serif; color: var(--gold-2); }
.site-footer p { color: rgba(255,255,255,0.66); line-height: 1.7; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-end; font-weight: 700; font-size: 13px; }
.site-footer a:hover { color: var(--gold-2); }
.fine-print { grid-column: 1 / -1; font-size: 12px; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 18px; }

.floating-btn {
  position: fixed;
  right: 20px;
  z-index: 999;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}
.call-float { bottom: 94px; background: var(--navy); border: 0; }
.whatsapp-float { bottom: 24px; background: #25d366; }
.mobile-cta { display: none; }

.modal, .lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(5,15,30,0.78);
}
.modal.active, .lightbox.active { display: flex; }
.modal-panel {
  width: min(460px, 100%);
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}
.modal-close, .lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  display: grid;
  place-items: center;
}
.lightbox img { max-height: 86vh; max-width: 92vw; border-radius: 8px; }
.lightbox-close { color: var(--navy); background: var(--white); }
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 2100;
  transform: translate(-50%, 120px);
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: 0.28s ease;
}
.toast.show { transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(28px); transition: 0.75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.09); }
}

@media (max-width: 1180px) {
  .main-nav {
    position: fixed;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(7,24,47,0.96);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    backdrop-filter: blur(18px);
  }
  .main-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .header-actions { margin-left: auto; }
}

@media (max-width: 920px) {
  .site-header { padding: 12px 14px; gap: 10px; }
  .brand { min-width: 0; }
  .brand span { display: none; }
  .brand img { width: 50px; }
  .header-actions .btn { padding: 10px 12px; font-size: 12px; min-height: 40px; }
  .hero, .floor-section, .split, .clubhouse, .lifestyle, .location-layout {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 112px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(7,24,47,0.94), rgba(7,24,47,0.56)); }
  .hero-form { display: none; }
  .trust-strip, .highlight-grid, .amenity-grid, .timeline, .invest-grid, .resource-grid, .floor-plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img:first-child, .gallery-grid img:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
    height: 280px;
  }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; }
}

@media (max-width: 620px) {
  body { padding-bottom: 62px; }
  .header-actions { display: flex; }
  .header-actions .btn:first-child { display: none; }
  .hero { min-height: 92vh; }
  .hero h1 { font-size: 46px; }
  .hero-actions .btn { width: 100%; }
  .trust-strip, .highlight-grid, .amenity-grid, .mini-grid, .location-cards, .timeline, .invest-grid, .gallery-grid, .resource-grid, .floor-plan-grid {
    grid-template-columns: 1fr;
  }
  .floor-plan-grid img { height: 210px; }
  .gallery-grid img, .gallery-grid img:first-child, .clubhouse-gallery img:first-child, .clubhouse-gallery img:last-child {
    height: 260px;
  }
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--navy);
    border-top: 1px solid var(--line);
  }
  .mobile-cta a, .mobile-cta button {
    min-height: 58px;
    border: 0;
    color: var(--white);
    background: transparent;
    font-weight: 900;
    font-size: 12px;
  }
  .mobile-cta button:nth-child(2) { background: var(--gold); color: var(--navy); }
  .floating-btn { right: 14px; width: 48px; height: 48px; }
  .call-float { bottom: 132px; }
  .whatsapp-float { bottom: 76px; }
}
