:root {
  --bg: #07020b;
  --bg-elevated: #120917;
  --bg-soft: #17121a;
  --stripe: rgba(92, 95, 94, 0.16);
  --panel: rgba(17, 10, 22, 0.78);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --gold: #d79c49;
  --gold-soft: #f2c989;
  --ivory: #f3eee7;
  --ivory-deep: #e5ddd1;
  --text: #f7f1e6;
  --text-dark: #231b14;
  --muted: rgba(247, 241, 230, 0.72);
  --muted-dark: rgba(35, 27, 20, 0.72);
  --line: rgba(215, 156, 73, 0.24);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
  --header-height: 94px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(215, 156, 73, 0.12), transparent 28%),
    repeating-linear-gradient(
      -35deg,
      transparent 0 52px,
      var(--stripe) 52px 64px
    ),
    var(--bg);
  line-height: 1.6;
}

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

button,
input,
a {
  font: inherit;
}

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

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 5vw, 5.6rem);
}

h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

p {
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease,
    color 220ms ease, box-shadow 220ms ease;
}

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

.button-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #160d03;
  box-shadow: 0 18px 30px rgba(215, 156, 73, 0.22);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
}

.button-secondary {
  background: rgba(215, 156, 73, 0.12);
  color: var(--text);
  border-color: rgba(215, 156, 73, 0.28);
}

.button-inline {
  margin-top: 20px;
}

.button-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(7, 2, 11, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 168px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.site-nav a {
  position: relative;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: clip;
}

.hero-media,
.hero-sheen,
.final-cta-media {
  position: absolute;
  inset: 0;
}

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

.hero-sheen {
  background:
    linear-gradient(90deg, rgba(7, 2, 11, 0.92) 0%, rgba(7, 2, 11, 0.84) 30%, rgba(7, 2, 11, 0.56) 56%, rgba(7, 2, 11, 0.74) 100%),
    linear-gradient(180deg, rgba(7, 2, 11, 0.2) 0%, rgba(7, 2, 11, 0.75) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 42px;
  align-items: center;
  padding: 72px 0;
}

.hero-copy {
  max-width: 720px;
}

.hero-intro {
  margin-top: 22px;
  max-width: 62ch;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.hero-highlights article,
.stat-card,
.plan-card,
.feature-card,
.spec-card,
.amenity-card,
.quote-panel,
.lead-card,
.villa-card,
.feature-card,
.gallery-card,
.faq-item,
.masterplan-points article {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-highlights article {
  padding: 18px;
  border-radius: var(--radius-md);
}

.hero-highlights strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 1.45rem;
  font-weight: 800;
}

.hero-highlights span,
.section-copy p,
.feature-card p,
.plan-card p,
.spec-card p,
.faq-answer p,
.footer-grid p,
.footer-grid a,
.footer-bottom p {
  color: var(--muted);
}

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

.lead-card {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(7, 2, 11, 0.72);
}

.lead-card-top {
  margin-bottom: 24px;
}

.lead-card h2,
.lead-card h3 {
  margin-bottom: 10px;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  font-size: 0.88rem;
  color: var(--muted);
}

.lead-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.lead-form input::placeholder {
  color: rgba(247, 241, 230, 0.44);
}

.form-status {
  min-height: 22px;
  font-size: 0.9rem;
  color: var(--gold-soft);
}

.villa-metrics span,
.location-pills span,
.contact-block strong,
.footer-grid h3 {
  color: var(--text);
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-ivory {
  color: var(--text-dark);
  background:
    radial-gradient(circle at top left, rgba(215, 156, 73, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 20%),
    var(--ivory);
}

.section-ivory .eyebrow,
.section-ivory .section-copy p,
.section-ivory .section-heading p,
.section-ivory .plan-card p,
.section-ivory .spec-card p,
.section-ivory .faq-answer p,
.section-ivory .quote-panel p,
.section-ivory .stat-card span,
.section-ivory .villa-card p,
.section-ivory .location-pills span,
.section-ivory .landmark-grid p {
  color: var(--muted-dark);
}

.section-ivory .hero-highlights article,
.section-ivory .stat-card,
.section-ivory .plan-card,
.section-ivory .feature-card,
.section-ivory .spec-card,
.section-ivory .amenity-card,
.section-ivory .quote-panel,
.section-ivory .lead-card,
.section-ivory .villa-card,
.section-ivory .gallery-card,
.section-ivory .faq-item,
.section-ivory .masterplan-points article {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(35, 27, 20, 0.08);
}

.section-ivory .amenity-card h3 {
  color: var(--text-dark);
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading.center {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.overview-grid,
.masterplan-layout,
.location-layout,
.amenities-layout,
.final-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.section-copy {
  display: grid;
  gap: 18px;
}

.stats-grid,
.highlight-grid,
.configuration-grid,
.spec-grid,
.gallery-grid,
.amenity-grid,
.landmark-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 8px;
}

.stat-card {
  padding: 20px;
  border-radius: 18px;
}

.stat-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.stat-card strong {
  font-size: 1.15rem;
}

.visual-stack {
  display: grid;
  gap: 20px;
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: auto;
}

.image-frame.tall img {
  max-height: 460px;
}

.quote-panel {
  padding: 24px;
  border-radius: 24px;
}

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

.feature-card {
  padding: 26px;
  border-radius: 24px;
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(215, 156, 73, 0.14);
  color: var(--gold-soft);
  font-weight: 800;
}

.masterplan-points {
  display: grid;
  gap: 16px;
}

.masterplan-points article {
  padding: 18px 20px;
  border-radius: 18px;
}

.masterplan-points strong {
  display: block;
  margin-bottom: 6px;
}

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

.villa-card {
  overflow: hidden;
  border-radius: 28px;
}

.villa-card-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.villa-card .image-frame img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.villa-metrics,
.location-pills,
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.villa-metrics span,
.location-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(215, 156, 73, 0.1);
  border: 1px solid rgba(215, 156, 73, 0.22);
  font-size: 0.92rem;
}

.section-ivory .villa-metrics span {
  color: var(--text-dark);
  background: rgba(215, 156, 73, 0.16);
  border-color: rgba(215, 156, 73, 0.3);
  font-weight: 700;
}

.tab-shell {
  display: grid;
  gap: 24px;
}

.tab-buttons {
  display: inline-flex;
  gap: 12px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tab-buttons button {
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.tab-buttons button.is-active {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #160d03;
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.plan-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.floorplan-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 16px;
}

.floorplan-card .image-frame {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
}

.floorplan-card .image-frame img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  padding: 14px;
}

.floorplan-card .plan-card {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.plan-copy {
  display: grid;
  gap: 16px;
}

.plan-card {
  padding: 22px;
  border-radius: 22px;
}

.plan-card h3 {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 6px;
}

.plan-card table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 0.82rem;
}

.plan-card th, .plan-card td {
  padding: 8px 8px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-card th {
  font-weight: 700;
  color: var(--gold-soft);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--gold);
}

.plan-card td:first-child, .plan-card th:first-child {
  padding-left: 0;
  width: 38px;
}

.plan-card td:last-child, .plan-card th:last-child {
  padding-right: 0;
  text-align: right;
}

.plan-card tr:last-child td {
  border-bottom: 0;
}

.plan-card tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.plan-site-size {
  display: inline-block;
  align-self: flex-start;
  margin-top: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(215, 156, 73, 0.12);
  border: 1px solid rgba(215, 156, 73, 0.22);
  color: var(--gold-soft);
}

.floorplan-summary-banner {
  margin-top: 48px;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(215, 156, 73, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  text-align: center;
}

.floorplan-summary-banner h4 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
}

.summary-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
}

.summary-stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.summary-stat-item span {
  font-size: 0.88rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-stat-item strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
}

.summary-stat-item.total-highlight {
  background: linear-gradient(135deg, rgba(215, 156, 73, 0.15), rgba(215, 156, 73, 0.05));
  border: 1px solid rgba(215, 156, 73, 0.3);
}

.summary-stat-item.total-highlight span {
  color: var(--gold-soft);
  font-weight: 700;
}

.summary-stat-item.total-highlight strong {
  color: var(--gold-soft);
  font-size: 1.6rem;
  text-shadow: 0 0 10px rgba(215, 156, 73, 0.15);
}

.summary-stat-item.total-highlight small {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .summary-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .summary-stats-grid {
    grid-template-columns: 1fr;
  }
}

.amenities-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: stretch;
}

.amenities-copy {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.amenities-copy h2 {
  margin-bottom: 14px;
}

.amenities-copy p {
  max-width: 62ch;
  margin: 0 auto;
}

.amenity-visual {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(14px, 1.6vw, 18px);
  border-radius: 34px;
  border: 1px solid rgba(35, 27, 20, 0.08);
  background:
    radial-gradient(circle at top right, rgba(215, 156, 73, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74));
  box-shadow: 0 28px 60px rgba(73, 54, 29, 0.12);
}

.amenity-badge {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(21, 15, 10, 0.72);
  backdrop-filter: blur(14px);
  color: rgba(255, 248, 236, 0.94);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.amenity-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(215, 156, 73, 0.18);
}

.amenity-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 24px;
  background: #fffdf9;
}

.amenity-grid {
  display: grid;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
}

.amenity-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 196px;
  height: 100%;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(35, 27, 20, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
  box-shadow: 0 16px 34px rgba(88, 65, 29, 0.08);
}

.amenity-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(215, 156, 73, 0.92), rgba(215, 156, 73, 0.3) 68%, transparent);
}

.amenity-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(247, 236, 219, 0.98), rgba(242, 230, 210, 0.72));
  box-shadow: inset 0 0 0 1px rgba(215, 156, 73, 0.2);
  color: var(--gold);
}

.amenity-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity-card-copy {
  display: grid;
  align-content: start;
  gap: 10px;
}

.amenity-card h3 {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.amenity-card p {
  margin: 0;
  max-width: 30ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted-dark);
}

.lifestyle-grid {
  display: grid;
  gap: 34px;
}

.lifestyle-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.lifestyle-copy p {
  max-width: 62ch;
  margin: 0 auto;
}

.lifestyle-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.lifestyle-card {
  position: relative;
  padding: 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(215, 156, 73, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.04);
}

.lifestyle-card img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.lifestyle-card figcaption {
  padding: 16px 8px 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.location-layout {
  display: block;
}

.location-shell {
  display: grid;
  gap: 26px;
  padding: clamp(24px, 2.8vw, 36px);
  border-radius: 24px;
  border: 1px solid rgba(35, 27, 20, 0.08);
  background:
    radial-gradient(circle at top left, rgba(215, 156, 73, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82));
  box-shadow: 0 30px 62px rgba(73, 54, 29, 0.1);
}

.location-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.82fr);
  gap: 28px;
  align-items: end;
  margin: 0;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(35, 27, 20, 0.08);
  text-align: left;
}

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

.location-heading-intro {
  max-width: 34ch;
  margin: 0;
  color: var(--muted-dark);
}

.location-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 30px;
  align-items: stretch;
}

.location-map-card {
  position: relative;
  height: 100%;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(35, 27, 20, 0.08);
  background:
    radial-gradient(circle at top left, rgba(215, 156, 73, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76));
  box-shadow: 0 18px 34px rgba(73, 54, 29, 0.08);
}

.location-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 12px;
  background: rgba(21, 15, 10, 0.78);
  color: rgba(255, 248, 236, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(215, 156, 73, 0.16);
}

.location-map-card img {
  border-radius: 12px;
  background: #fffdf9;
}

.location-map-card figcaption {
  padding: 14px 4px 2px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted-dark);
}

.location-summary-shell {
  height: 100%;
  align-content: start;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(35, 27, 20, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.8));
  box-shadow: 0 18px 34px rgba(73, 54, 29, 0.08);
}

.location-summary-top {
  display: grid;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(35, 27, 20, 0.08);
}

.location-summary-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.location-summary-top h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  line-height: 0.98;
}

.location-summary-text {
  margin: 0;
  color: var(--muted-dark);
  max-width: 50ch;
}

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

.location-route {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(35, 27, 20, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 20px rgba(73, 54, 29, 0.05);
}

.location-route-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(247, 236, 219, 0.96), rgba(242, 230, 210, 0.74));
  box-shadow: inset 0 0 0 1px rgba(215, 156, 73, 0.2);
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.location-route strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.location-route p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted-dark);
}

.location-landmarks {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.location-landmarks article {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(35, 27, 20, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 20px rgba(73, 54, 29, 0.05);
}

.location-landmarks article::before {
  content: "";
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(215, 156, 73, 0.38));
}

.location-card-label {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.location-landmarks h3 {
  font-size: clamp(1.26rem, 1.8vw, 1.55rem);
  line-height: 1.1;
}

.location-landmarks p:last-child {
  color: var(--muted-dark);
}

.location-summary-shell .button-ghost {
  background: rgba(35, 27, 20, 0.04);
  color: var(--text-dark);
  border-color: rgba(35, 27, 20, 0.14);
}

.landmark-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 10px;
}

.landmark-grid article {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(35, 27, 20, 0.08);
  background: rgba(255, 255, 255, 0.5);
}

.location-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.spec-card {
  padding: 22px;
  border-radius: 22px;
}

.gallery-slider {
  display: grid;
  gap: 22px;
}

.gallery-viewport {
  position: relative;
  overflow: hidden;
  padding: clamp(14px, 1.5vw, 18px);
  border-radius: 34px;
  border: 1px solid rgba(35, 27, 20, 0.08);
  background:
    radial-gradient(circle at top left, rgba(215, 156, 73, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72));
  box-shadow: 0 24px 56px rgba(73, 54, 29, 0.11);
}

.gallery-track {
  display: flex;
  transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.section-ivory .gallery-slide {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.gallery-slide {
  flex: 0 0 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.gallery-slide-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(280px, 50vw, 620px);
  padding: clamp(10px, 1.4vw, 18px);
  border-radius: 24px;
  background: #fbf8f2;
}

.gallery-slide img {
  width: 100%;
  height: auto;
  max-height: clamp(260px, 48vw, 584px);
  object-fit: contain;
}

.gallery-slide span {
  display: block;
  padding: 18px 6px 4px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text-dark);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(35, 27, 20, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text-dark);
  box-shadow: 0 12px 28px rgba(73, 54, 29, 0.14);
  transform: translateY(-50%);
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.gallery-nav:hover,
.gallery-nav:focus-visible {
  transform: translateY(-50%) scale(1.04);
  background: rgba(255, 255, 255, 0.96);
}

.gallery-nav-prev {
  left: 22px;
}

.gallery-nav-next {
  right: 22px;
}

.gallery-nav span {
  font-size: 2rem;
  line-height: 1;
}

.gallery-slider-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gallery-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(35, 27, 20, 0.18);
  transition: width 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.gallery-dot.is-active {
  width: 30px;
  background: var(--gold);
}

.gallery-status {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(35, 27, 20, 0.64);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

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

.faq-item {
  border-radius: 20px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-size: 1.04rem;
  font-weight: 700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 260ms ease, padding 260ms ease;
}

.faq-item.is-open .faq-answer {
  max-height: 240px;
  padding: 0 24px 22px;
}

.final-cta {
  position: relative;
  overflow: clip;
  padding: 120px 0;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 2, 11, 0.96) 0%, rgba(7, 2, 11, 0.9) 30%, rgba(7, 2, 11, 0.64) 54%, rgba(7, 2, 11, 0.88) 100%),
    linear-gradient(180deg, rgba(7, 2, 11, 0.16), rgba(7, 2, 11, 0.82));
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 34%, rgba(7, 2, 11, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(7, 2, 11, 0.24) 0%, transparent 34%, transparent 70%, rgba(7, 2, 11, 0.22) 100%);
  pointer-events: none;
}

.final-cta-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.96fr);
  gap: 44px;
  align-items: center;
}

.final-cta-copy {
  max-width: 640px;
  padding: 36px 34px 32px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(7, 2, 11, 0.44);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.final-cta-copy h2 {
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.final-cta-copy p {
  color: rgba(247, 241, 230, 0.9);
}

.final-cta-copy .final-actions {
  margin-top: 8px;
}

.final-cta-copy .button-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.final-cta-copy .contact-block {
  margin-top: 28px;
  gap: 12px;
}

.final-cta-copy .contact-block > div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.final-cta-copy .contact-block strong {
  display: block;
  margin-bottom: 4px;
}

.final-cta-copy .contact-block a,
.final-cta-copy .contact-block span {
  color: rgba(247, 241, 230, 0.94);
}

.contact-block {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.contact-block a,
.contact-block span {
  color: var(--text);
}

.site-footer {
  background:
    radial-gradient(circle at top right, rgba(215, 156, 73, 0.14), transparent 24%),
    repeating-linear-gradient(-35deg, transparent 0 52px, var(--stripe) 52px 64px),
    #050009;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(220px, 0.9fr) minmax(220px, 0.9fr);
  align-items: start;
  gap: 40px clamp(28px, 4vw, 72px);
  padding: 72px 0 32px;
  width: min(1040px, 100%);
  margin: 0 auto;
}

.footer-grid > div {
  min-width: 0;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 20px;
  max-width: 420px;
}

.footer-brand img {
  width: 150px;
  height: auto;
  margin-bottom: 0;
}

.footer-brand p {
  max-width: 380px;
  line-height: 1.75;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 12px;
}

.footer-grid h3 {
  margin-bottom: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.footer-grid p,
.footer-grid a,
.text-link {
  display: block;
  margin-bottom: 0;
}

.footer-address p,
.footer-cta a,
.footer-cta .text-link {
  line-height: 1.65;
}

.footer-cta {
  justify-items: start;
}

.footer-cta a {
  transition: color 220ms ease, transform 220ms ease;
}

.footer-cta a:hover,
.footer-cta a:focus-visible,
.footer-cta .text-link:hover,
.footer-cta .text-link:focus-visible {
  color: var(--gold-soft);
}

.text-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold-soft);
  text-align: left;
  font-weight: 700;
}

.footer-bottom {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 32;
  display: grid;
  gap: 12px;
}

.floating-action {
  min-width: 134px;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.floating-action.call {
  background: rgba(255, 255, 255, 0.94);
  color: #120917;
}

.floating-action.whatsapp {
  background: #1fa95e;
  color: white;
}

.mobile-sticky-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 35;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(7, 2, 11, 0.94);
  border: 1px solid rgba(215, 156, 73, 0.24);
  box-shadow: var(--shadow);
}

.mobile-sticky-bar a {
  min-height: 48px;
  padding: 0 10px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
}

.mobile-sticky-bar a:first-child {
  background: rgba(255, 255, 255, 0.92);
  color: #120917;
}

.mobile-sticky-bar a:last-child {
  background: #1fa95e;
  color: white;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 2, 6, 0.7);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  padding: 32px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(7, 2, 11, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.lightbox-panel {
  width: min(1040px, 100%);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.5rem;
}

.lightbox-figure {
  margin: 18px 0 0;
}

.lightbox-figure img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 18px;
}

.lightbox-figure figcaption {
  margin-top: 14px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .hero-grid,
  .overview-grid,
  .masterplan-layout,
  .amenities-layout,
  .location-layout,
  .final-cta-grid,
  .plan-layout,
  .faq-layout,
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 54px;
  }

  .hero-highlights,
  .stats-grid,
  .highlight-grid,
  .configuration-grid,
  .spec-grid,
  .gallery-grid,
  .floorplan-grid,
  .landmark-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .amenity-card {
    min-height: 180px;
  }

  .lifestyle-visuals {
    gap: 20px;
  }

  .gallery-slide-media {
    min-height: clamp(260px, 46vw, 520px);
  }

  .location-shell {
    padding: 28px;
  }

  .location-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .location-stage {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .location-summary-shell {
    padding: 24px;
  }

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

  .footer-grid {
    width: min(820px, 100%);
    gap: 30px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-brand p {
    max-width: 560px;
  }

  .footer-column {
    padding-top: 0;
  }

  .footer-bottom {
    width: min(820px, 100%);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 82px;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 20px;
    background: rgba(7, 2, 11, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

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

  .header-actions {
    display: none;
  }

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

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

  .amenity-card {
    min-height: 0;
  }

  .amenity-badge {
    top: 20px;
    left: 20px;
    padding: 9px 14px;
    font-size: 0.74rem;
  }

  .lifestyle-visuals {
    grid-template-columns: 1fr;
  }

  .location-shell {
    padding: 24px;
    border-radius: 20px;
  }

  .location-summary-shell {
    padding: 22px;
    border-radius: 16px;
  }

  .location-map-card {
    padding: 14px;
    border-radius: 16px;
  }

  .location-badge {
    top: 20px;
    left: 20px;
    padding: 9px 14px;
    font-size: 0.74rem;
  }

  .location-route {
    gap: 14px;
  }

  .final-cta-copy {
    max-width: none;
    padding: 30px 26px 28px;
  }

  .gallery-nav {
    width: 48px;
    height: 48px;
  }

  .gallery-nav-prev {
    left: 16px;
  }

  .gallery-nav-next {
    right: 16px;
  }
}

@media (max-width: 720px) {
  .section,
  .final-cta {
    padding: 82px 0;
  }

  .hero-grid {
    padding: 34px 0 92px;
    gap: 28px;
  }

  .hero-copy,
  .section-heading.center {
    max-width: none;
  }

  .hero-highlights,
  .stats-grid,
  .highlight-grid,
  .configuration-grid,
  .spec-grid,
  .gallery-grid,
  .floorplan-grid,
  .amenity-grid,
  .landmark-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .amenity-card {
    min-height: 0;
    padding: 20px 18px;
  }

  .amenity-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .amenity-badge {
    top: 16px;
    left: 16px;
    padding: 8px 12px;
    gap: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .location-shell {
    padding: 20px;
    gap: 22px;
    border-radius: 18px;
  }

  .location-heading {
    padding-bottom: 18px;
  }

  .location-summary-shell {
    padding: 18px;
    border-radius: 14px;
  }

  .location-summary-top h3 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .location-map-card {
    padding: 12px;
    border-radius: 14px;
  }

  .location-map-card img {
    border-radius: 10px;
  }

  .location-map-card figcaption {
    padding: 14px 4px 2px;
    font-size: 0.92rem;
  }

  .location-badge {
    top: 16px;
    left: 16px;
    gap: 8px;
    padding: 8px 12px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    border-radius: 10px;
  }

  .location-route {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
  }

  .location-route-index {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .lifestyle-card {
    padding: 12px;
    border-radius: 24px;
  }

  .lifestyle-card img {
    border-radius: 18px;
  }

  .lifestyle-card figcaption {
    padding: 14px 6px 2px;
    font-size: 0.92rem;
  }

  .gallery-viewport {
    padding: 12px;
    border-radius: 24px;
  }

  .gallery-slide-media {
    min-height: 220px;
    padding: 10px;
    border-radius: 18px;
  }

  .gallery-slide span {
    padding: 16px 2px 2px;
    font-size: 0.96rem;
  }

  .gallery-slider-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-nav {
    width: 44px;
    height: 44px;
  }

  .gallery-nav:hover,
  .gallery-nav:focus-visible {
    transform: translateY(-50%) scale(1.04);
  }

  .gallery-nav span {
    font-size: 1.6rem;
  }

  .final-cta-copy {
    padding: 24px 20px 22px;
    border-radius: 24px;
  }

  .final-cta-copy .contact-block > div {
    padding: 13px 14px;
    border-radius: 16px;
  }

  .button,
  .hero-actions,
  .location-actions,
  .final-actions {
    width: 100%;
  }

  .hero-actions .button,
  .location-actions .button,
  .final-actions .button {
    width: 100%;
  }

  .lead-card,
  .modal-panel {
    padding: 24px;
  }

  .floating-actions {
    display: none;
  }

  .mobile-sticky-bar {
    display: grid;
  }

  .footer-grid {
    width: 100%;
    gap: 24px;
    padding: 60px 0 20px;
  }

  .footer-brand {
    gap: 16px;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-column {
    gap: 10px;
  }

  .footer-bottom {
    width: 100%;
    padding: 18px 0 24px;
  }
}
