:root {
  --bg: #f7f1e6;
  --surface: #fffcf5;
  --surface-strong: #fff8ea;
  --text: #1d1a17;
  --muted: #5f564d;
  --line: rgba(70, 50, 29, 0.12);
  --gold: #ad8451;
  --gold-strong: #8c6639;
  --deep: #2a2622;
  --shadow: 0 20px 60px rgba(27, 20, 12, 0.18);
  --radius: 24px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(173, 132, 81, 0.18), transparent 28%),
    linear-gradient(180deg, #f5eedf 0%, #fcf9f2 24%, #f7f1e6 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(19, 17, 15, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand img {
  width: 120px;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.site-nav a:hover {
  color: #fff;
}

.call-pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #c79e68);
  color: #fff;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: min(920px, 100vh);
  overflow: clip;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-mobile {
  display: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(19, 13, 8, 0.84) 0%, rgba(19, 13, 8, 0.58) 38%, rgba(19, 13, 8, 0.22) 68%, rgba(19, 13, 8, 0.42) 100%),
    linear-gradient(180deg, rgba(16, 10, 6, 0.12) 0%, rgba(16, 10, 6, 0.42) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: end;
  min-height: min(920px, 100vh);
  padding: 120px 0 60px;
}

.hero-copy {
  color: #fff;
  max-width: 700px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--gold);
  font-weight: 800;
}

.hero h1,
.section h2,
.modal-content h2,
.urgency h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(3.6rem, 7vw, 6.8rem);
}

.hero-subtitle {
  margin: 14px 0 24px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
  font-size: 1.05rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.gold {
  background: linear-gradient(135deg, var(--gold), #c79e68);
  color: #fff;
  box-shadow: 0 16px 40px rgba(173, 132, 81, 0.3);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.button.dark {
  background: var(--deep);
  color: #fff;
}

.lead-card,
.mini-form,
.compare-card,
.price-card,
.plan-card,
.developer-aside,
.modal-panel,
.location-map,
.decision-grid img {
  box-shadow: var(--shadow);
}

.lead-card,
.mini-form,
.price-card,
.developer-aside,
.modal-panel {
  background: rgba(255, 252, 245, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
}

.lead-card,
.mini-form,
.modal-content .enquiry-form {
  display: grid;
  gap: 12px;
}

.lead-card {
  padding: 28px;
}

.lead-card h2,
.mini-form h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  line-height: 0.98;
}

input {
  width: 100%;
  border: 1px solid rgba(70, 50, 29, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  padding: 15px 16px;
  color: var(--text);
}

input:focus {
  outline: 2px solid rgba(173, 132, 81, 0.3);
  border-color: rgba(173, 132, 81, 0.5);
}

.consent {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.consent.dark {
  color: var(--muted);
}

.cta-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.cta-strip-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ticker {
  overflow: hidden;
  background: #1c1712;
  color: #f9e7ca;
  white-space: nowrap;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-track {
  display: inline-flex;
  gap: 38px;
  padding: 14px 0;
  min-width: max-content;
  animation: scroll 28s linear infinite;
  font-size: 13px;
  letter-spacing: 0.16em;
  font-weight: 800;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.stats {
  padding: 26px 0;
  background: linear-gradient(180deg, #fcf7ee 0%, #f7f1e6 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stats article {
  padding: 20px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.stats article:last-child {
  border-right: 0;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.stats span {
  color: var(--muted);
}

.section {
  padding: 88px 0;
}

.section h2,
.urgency h2,
.modal-content h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  margin-bottom: 18px;
}

.section h2 span {
  color: var(--gold-strong);
}

.section p {
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.03rem;
}

.overview {
  text-align: center;
}

.overview .button {
  margin-top: 14px;
}

.highlight {
  background: linear-gradient(180deg, #fffcf4 0%, #f8f1e5 100%);
}

.highlight-grid,
.location-grid,
.developer-grid,
.decision-grid,
.urgency-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.highlight-media {
  position: relative;
}

.highlight-media img,
.gallery-grid img,
.location-map img,
.decision-grid img,
.plan-card img,
.modal-panel > img {
  border-radius: var(--radius);
}

.badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  background: rgba(28, 23, 18, 0.92);
  color: #fff;
  padding: 18px 20px;
  border-radius: 18px;
}

.badge strong {
  font-size: 2rem;
}

.feature-list,
.compare-card ul,
.location-list,
.developer-aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list li {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(70, 50, 29, 0.08);
}

.feature-list span,
.compare-card li,
.location-list li,
.developer-aside li {
  color: var(--muted);
}

.urgency {
  background: #2a2622;
  color: #fff;
}

.urgency p {
  color: rgba(255, 255, 255, 0.78);
}

.mini-form {
  padding: 22px;
}

.compare {
  background: linear-gradient(180deg, #f8f1e5 0%, #fcf9f2 100%);
}

.compare-grid,
.price-grid,
.plan-grid,
.gallery-grid,
.amenity-grid {
  display: grid;
  gap: 24px;
}

.compare-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compare-card {
  position: relative;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.compare-card.featured {
  background: linear-gradient(180deg, #fff8eb 0%, #fffdfa 100%);
  border-color: rgba(173, 132, 81, 0.26);
}

.compare-card .tag {
  position: absolute;
  top: 18px;
  right: 18px;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.card-label {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
}

.compare-card h3,
.price-card h3,
.plan-card h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.card-meta {
  margin: 0 0 16px;
}

.compare-card ul {
  display: grid;
  gap: 12px;
}

.compare-card li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.price-grid {
  grid-template-columns: repeat(2, minmax(0, 320px));
  justify-content: center;
}

.price-card {
  padding: 26px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.price-row strong {
  color: var(--text);
}

.price-card .button {
  margin-top: 18px;
}

.amenities {
  background: linear-gradient(180deg, #fffcf5 0%, #f7f1e6 100%);
}

.amenity-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.amenity-grid div {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  text-align: center;
  font-weight: 700;
}

.plan-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plan-card {
  padding: 18px;
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.gallery {
  background: linear-gradient(180deg, #f7f1e6 0%, #fffaf2 100%);
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.location-map {
  overflow: hidden;
  border-radius: var(--radius);
}

.location-list {
  display: grid;
  gap: 12px;
}

.location-list li {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
}

.decision {
  background: #221e1a;
  color: #fff;
}

.decision p {
  color: rgba(255, 255, 255, 0.76);
}

.decision-grid img {
  width: 100%;
}

.decision-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.developer {
  background: linear-gradient(180deg, #fffaf2 0%, #f8f1e5 100%);
}

.developer-aside {
  padding: 24px;
}

.developer-aside img {
  width: 140px;
  margin-bottom: 20px;
}

.developer-aside ul {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.site-footer {
  padding: 36px 0 92px;
  background: #161310;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer p {
  line-height: 1.75;
}

.rera {
  color: #fff;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: underline;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 28;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.floating-cta a,
.floating-cta button {
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #1f7a47, #27a160);
  box-shadow: var(--shadow);
}

.floating-cta a:last-of-type,
.floating-cta button {
  background: linear-gradient(135deg, var(--gold), #c79e68);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 8, 6, 0.72);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  width: min(420px, calc(100% - 32px));
  margin: 9vh auto 0;
  overflow: hidden;
}

.modal-panel > img {
  width: 100%;
  max-height: 110px;
  object-fit: cover;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.modal-content {
  padding: 16px;
  background: var(--surface);
}

.modal-content .section-kicker {
  margin-bottom: 8px;
  font-size: 10px;
}

.modal-content h2 {
  font-size: clamp(1.7rem, 4vw, 2.25rem);
  margin-bottom: 12px;
  line-height: 1;
}

.modal-form {
  gap: 8px;
}

.modal-form input {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
}

.modal-form .button {
  padding: 10px 16px;
  font-size: 14px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 18, 13, 0.74);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.success-message {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(39, 161, 96, 0.1);
  color: #17653d;
  border: 1px solid rgba(39, 161, 96, 0.24);
}

.error-message {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(184, 49, 49, 0.08);
  color: #8f2727;
  border: 1px solid rgba(184, 49, 49, 0.18);
}

body.modal-open {
  overflow: hidden;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.thank-you-card {
  width: min(560px, 100%);
  padding: 42px 32px;
  text-align: center;
  background: rgba(255, 252, 245, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.thank-you-card h1 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 0.95;
}

.thank-you-card p {
  color: var(--muted);
  line-height: 1.8;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 20px;
    background: rgba(24, 21, 18, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .highlight-grid,
  .location-grid,
  .developer-grid,
  .decision-grid,
  .urgency-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .amenity-grid,
  .gallery-grid,
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 110px 40px;
  }
}

@media (max-width: 720px) {
  .hero-desktop {
    display: none;
  }

  .hero-mobile {
    display: block;
  }

  .section {
    padding: 68px 0;
  }

  .stats-grid,
  .amenity-grid,
  .gallery-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .stats article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats article:last-child {
    border-bottom: 0;
  }

  .hero-actions,
  .decision-actions,
  .cta-strip-row {
    flex-direction: column;
  }

  .hero-actions .button,
  .decision-actions .button,
  .cta-strip-row .button,
  .floating-cta a,
  .floating-cta button {
    width: 100%;
    text-align: center;
  }

  .floating-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .floating-cta > * {
    flex: 1 1 30%;
  }
}
