:root {
  --ink-980: #050607;
  --ink-950: #090a0d;
  --ink-930: #0d1014;
  --ink-900: #12161c;
  --ink-860: #1a2028;
  --slate-500: #495261;
  --slate-400: #5e6878;
  --gold-100: #f5e5ba;
  --gold-200: #e5c785;
  --gold-300: #cb9d57;
  --gold-400: #8e6632;
  --stone-200: #ded7c7;
  --stone-300: #c8c0b1;
  --stone-400: #9a9285;
  --line: rgba(203, 157, 87, 0.22);
  --line-strong: rgba(203, 157, 87, 0.4);
  --surface: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shell: min(1180px, calc(100% - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: #f8f3ea;
  background:
    radial-gradient(circle at 16% 12%, rgba(126, 137, 153, 0.14), transparent 23%),
    radial-gradient(circle at 84% 8%, rgba(169, 177, 189, 0.08), transparent 20%),
    radial-gradient(circle at 50% 40%, rgba(103, 25, 36, 0.08), transparent 24%),
    linear-gradient(180deg, #040506 0%, #0a0c10 34%, #07080a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 34%, transparent 84%);
  opacity: 0.3;
}

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

button,
input,
select,
iframe {
  font: inherit;
}

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

.site-shell {
  position: relative;
  overflow: clip;
}

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

.section {
  position: relative;
  padding: 106px 0;
  scroll-margin-top: 100px;
}

.section::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 50%;
  width: min(1120px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(203, 157, 87, 0.3), transparent);
}

.section--compact {
  padding-top: 76px;
  padding-bottom: 84px;
}

.section--tinted {
  background:
    radial-gradient(circle at 18% 0%, rgba(118, 126, 139, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0));
}

.card-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 46%),
    rgba(10, 12, 16, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(203, 157, 87, 0.08);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
}

.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--gold-200);
}

.mini-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-300));
}

.section-heading {
  max-width: 680px;
}

.section-heading--center {
  margin: 0 auto;
  text-align: center;
}

.section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold-200);
}

.section-heading__eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-300));
}

.section-heading__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
}

.section-heading__copy {
  margin: 20px 0 0;
  max-width: 62ch;
  color: var(--stone-300);
  font-size: 1rem;
  line-height: 1.85;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.button--primary {
  color: #fff9ef;
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, #6d1621, #9d2432 54%, #6b131e);
  box-shadow: 0 18px 40px rgba(123, 21, 33, 0.28);
}

.button--secondary,
.button--ghost {
  color: var(--gold-100);
  border-color: rgba(203, 157, 87, 0.24);
  background: rgba(255, 255, 255, 0.025);
}

.button--ghost {
  color: #efe7d7;
  border-color: rgba(255, 255, 255, 0.12);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(6, 7, 10, 0.76);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.navbar--scrolled {
  background: rgba(6, 7, 10, 0.94);
  border-color: rgba(203, 157, 87, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

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

.brand__mark {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(203, 157, 87, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  flex: 0 0 58px;
}

.brand__logo {
  width: 48px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

.brand__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand__title {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.24rem;
  line-height: 0.9;
  color: #f5e8cf;
  white-space: nowrap;
}

.brand__tag {
  display: inline-flex;
  min-width: max-content;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--stone-400);
}

.navbar__desktop {
  display: flex;
  align-items: center;
  gap: 22px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.navbar__links a,
.navbar__mobile a {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-300);
  transition: color 0.2s ease;
}

.navbar__links a:hover,
.navbar__mobile a:hover {
  color: var(--gold-100);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(203, 157, 87, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--gold-100);
}

.navbar__mobile {
  display: none;
}

.hero {
  position: relative;
  padding: 42px 0 84px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -6% auto auto 58%;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 125, 138, 0.16) 0%, transparent 66%);
  filter: blur(22px);
}

.hero__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 412px);
  gap: 36px;
  align-items: center;
}

.hero__copy {
  max-width: 660px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(203, 157, 87, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-100);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.hero__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-300));
}

.hero__title {
  margin: 24px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 6.4vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-shadow: 0 0 36px rgba(245, 229, 186, 0.05);
}

.hero__subtitle {
  margin: 0;
  max-width: 58ch;
  color: var(--stone-300);
  font-size: 1.07rem;
  line-height: 1.9;
}

.hero__meta,
.hero__cta,
.hero__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__meta {
  margin-top: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(203, 157, 87, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: #f7f0e3;
  font-size: 0.82rem;
}

.pill--offer {
  background: linear-gradient(135deg, rgba(117, 125, 138, 0.18), rgba(106, 21, 31, 0.16));
  color: var(--gold-100);
}

.hero__cta {
  margin-top: 32px;
}

.hero__contact {
  margin-top: 22px;
  align-items: center;
  color: #efe6d3;
  font-size: 1rem;
}

.hero__contact strong {
  color: var(--gold-100);
}

.hero__text-link {
  color: var(--gold-200);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero__note {
  margin: 20px 0 0;
  max-width: 56ch;
  color: rgba(239, 230, 211, 0.76);
  font-size: 0.94rem;
  line-height: 1.78;
}

.hero__form-shell {
  position: relative;
  scroll-margin-top: 116px;
}

.enquiry-card {
  position: relative;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(203, 157, 87, 0.28);
  background:
    radial-gradient(circle at top right, rgba(89, 96, 107, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(10, 12, 16, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.enquiry-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(203, 157, 87, 0.08);
  border-radius: 22px;
  pointer-events: none;
}

.enquiry-card--highlighted {
  animation: enquiryPulse 1.6s ease;
}

@keyframes enquiryPulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(203, 157, 87, 0);
  }

  25% {
    transform: translateY(-2px);
    box-shadow: 0 0 0 6px rgba(203, 157, 87, 0.12);
  }

  100% {
    transform: translateY(0);
    box-shadow: var(--shadow);
  }
}

.enquiry-card__ornament {
  width: 72px;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
}

.enquiry-card__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-200);
}

.enquiry-card__title {
  margin: 16px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.35rem;
  line-height: 1;
}

.enquiry-card__copy {
  margin: 0 0 22px;
  color: var(--stone-300);
  font-size: 0.94rem;
  line-height: 1.75;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: var(--stone-300);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(203, 157, 87, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field select {
  color-scheme: dark;
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.field select option {
  color: #efe5d0;
  background: #11151d;
}

.field select option:checked {
  background: #1b2330;
  color: #fff2da;
}

.field input:focus,
.field select:focus {
  border-color: rgba(203, 157, 87, 0.42);
  box-shadow: 0 0 0 3px rgba(203, 157, 87, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.field__error {
  color: #f6b6b6;
  font-size: 0.8rem;
}

.enquiry-form__submit {
  width: 100%;
  margin-top: 8px;
}

.form-success {
  margin: 16px 0 0;
  color: var(--gold-100);
  font-size: 0.92rem;
  line-height: 1.6;
}

.hero__visual-frame {
  position: relative;
  margin-top: 34px;
  aspect-ratio: var(--hero-video-ratio, 16 / 9);
  min-height: 0;
  max-height: min(72vh, 620px);
  background: #05070b;
}

.hero__visual-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(203, 157, 87, 0.08);
  pointer-events: none;
}

.visual-tag {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 2;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(8, 9, 12, 0.76);
  border: 1px solid rgba(203, 157, 87, 0.16);
  color: var(--gold-100);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  pointer-events: none;
}

.hero__media,
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #05070b;
}

.video-play-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(203, 157, 87, 0.4);
  background: rgba(8, 11, 16, 0.86);
  color: var(--gold-100);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.video-play-fallback--overview {
  top: calc(50% - 4px);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.04), rgba(7, 8, 10, 0.72)),
    radial-gradient(circle at 18% 10%, rgba(118, 126, 139, 0.12), transparent 26%),
    radial-gradient(circle at 80% 26%, rgba(103, 25, 36, 0.1), transparent 26%);
  pointer-events: none;
}

.hero__visual-copy {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  max-width: 520px;
  pointer-events: none;
}

.hero__visual-copy strong {
  display: block;
  margin: 18px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.96;
  color: #fff3dd;
}

.hero__visual-copy p {
  margin: 0;
  color: rgba(238, 229, 213, 0.82);
  line-height: 1.8;
}

.highlight-strip {
  position: relative;
  z-index: 1;
  padding-bottom: 12px;
}

.highlight-strip__rail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(203, 157, 87, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(203, 157, 87, 0.12);
  color: #efe6d3;
  background: rgba(10, 12, 16, 0.7);
  font-size: 0.86rem;
}

.highlight-pill__diamond {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-200);
  transform: rotate(45deg);
}

.overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
  margin-top: 34px;
  align-items: start;
}

.overview-showcase {
  width: 100%;
  margin: 0;
  min-height: 0;
  aspect-ratio: var(--overview-video-ratio, 16 / 9);
  max-height: min(70vh, 620px);
  background: #05070b;
}

.overview-showcase__image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  filter: brightness(0.82) saturate(0.88) contrast(1.04);
}

.overview-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.14) 0%, rgba(7, 8, 10, 0.24) 24%, rgba(7, 8, 10, 0.76) 100%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: start;
  align-content: start;
}

.stat-card {
  padding: 14px 16px;
  border: 1px solid rgba(203, 157, 87, 0.16);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  min-height: 102px;
  display: grid;
  align-content: center;
}

.stat-card__label {
  display: block;
  margin-bottom: 8px;
  color: var(--stone-400);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.stat-card__value {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 1.5vw, 1.75rem);
  line-height: 1.12;
  color: var(--gold-100);
}

.section--overview .section-heading {
  max-width: 760px;
}

.section--overview .section-heading__title {
  font-size: clamp(2.25rem, 4.4vw, 3.8rem);
  line-height: 1.02;
}

.section--overview .section-heading__copy {
  max-width: 58ch;
  margin-top: 14px;
  line-height: 1.55;
}

.offer-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 26px;
  padding: 34px;
  background:
    radial-gradient(circle at 80% 20%, rgba(104, 114, 127, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 52%),
    #0c0f13;
}

.offer-card {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(203, 157, 87, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(16, 18, 22, 0.92);
}

.offer-card__eyebrow {
  color: var(--stone-300);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.offer-card__value {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1;
  color: var(--gold-100);
}

.residences-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.residence-card {
  padding: 34px;
  min-height: 300px;
}

.residence-card__index {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(203, 157, 87, 0.2);
  color: var(--gold-100);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
}

.residence-card h3 {
  margin: 22px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.05;
}

.residence-card p {
  margin: 0 0 28px;
  max-width: 34ch;
  color: var(--stone-300);
  line-height: 1.8;
}

.amenities-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 24px;
  margin-top: 42px;
  align-items: stretch;
}

.amenities-visuals {
  display: grid;
  gap: 16px;
  align-content: start;
}

.amenities-visual {
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(203, 157, 87, 0.14);
  object-fit: cover;
  display: block;
}

.amenities-visual--hero {
  aspect-ratio: 16 / 10;
  min-height: 360px;
}

.amenities-visual--clubhouse {
  aspect-ratio: 16 / 10;
  min-height: 360px;
}

.amenities-content {
  padding: 34px;
  display: grid;
  align-content: start;
  gap: 16px;
}

.amenities-content h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.02;
}

.amenities-content p {
  margin: 0;
  color: var(--stone-300);
  line-height: 1.8;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.amenity-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(203, 157, 87, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: #efe6d3;
  font-size: 0.9rem;
}

.amenity-list__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-300);
  flex: 0 0 7px;
}

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

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.support-copy {
  margin: 20px 0 26px;
  max-width: 48ch;
  color: var(--stone-300);
  line-height: 1.85;
}

.masterplan-board {
  min-height: 0;
  padding: 0;
  background: rgba(8, 10, 13, 0.92);
}

.masterplan-board__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.map-panel,
.location-card,
.final-cta,
.developer-card {
  padding: 34px;
}

.map-panel {
  display: grid;
  gap: 18px;
  background:
    radial-gradient(circle at center, rgba(148, 157, 170, 0.08), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 42%),
    rgba(10, 12, 16, 0.9);
}

.map-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(203, 157, 87, 0.16);
  background: rgba(255, 255, 255, 0.02);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-panel__footer {
  display: grid;
  gap: 14px;
}

.map-panel__footer p,
.location-card p {
  margin: 0;
  color: var(--stone-300);
  line-height: 1.82;
}

.location-panel .section-heading {
  margin-bottom: 30px;
}

.location-card strong {
  display: block;
  margin: 12px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  line-height: 1.02;
}

.location-card__address {
  margin-top: 8px !important;
  font-size: 1.03rem;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
}

.feature-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #efe6d3;
}

.feature-list__mark {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border: 1px solid var(--gold-200);
  transform: rotate(45deg);
}

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

.connectivity-showcase {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.connectivity-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.connectivity-card {
  padding: 24px 18px;
  text-align: center;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
}

.connectivity-card__mins {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  line-height: 0.9;
  color: var(--gold-100);
}

.connectivity-card__unit {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--stone-400);
  font-size: 0.76rem;
}

.connectivity-card strong {
  font-size: 1.06rem;
  line-height: 1.24;
}

.connectivity-card p {
  margin: 0;
  color: var(--stone-400);
  font-size: 0.92rem;
}

.nearby-panel {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.nearby-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nearby-tab {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(203, 157, 87, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--stone-300);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nearby-tab:hover {
  color: #fff2dc;
  transform: translateY(-1px);
}

.nearby-tab--active {
  color: #fff3de;
  border-color: rgba(203, 157, 87, 0.34);
  background: linear-gradient(135deg, rgba(126, 15, 33, 0.42), rgba(80, 20, 25, 0.26));
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.nearby-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(203, 157, 87, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.nearby-item__name {
  color: #f2e8d9;
  font-size: 0.96rem;
  line-height: 1.3;
}

.nearby-item__time {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(203, 157, 87, 0.2);
  display: inline-flex;
  align-items: center;
  color: var(--gold-100);
  font-weight: 700;
  font-size: 0.88rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.gallery-card {
  position: relative;
  min-height: 270px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(203, 157, 87, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.gallery-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.92);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.05) 0%, rgba(5, 6, 8, 0.14) 36%, rgba(5, 6, 8, 0.82) 100%);
  pointer-events: none;
}

.gallery-card__caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: #fff5e2;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.developer-card {
  display: grid;
  grid-template-columns: minmax(180px, 250px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.developer-card__logo {
  width: min(100%, 180px);
  margin: 0 auto;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.22));
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 26px;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(104, 114, 127, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 48%),
    #0c0f13;
}

.footer {
  padding: 0 0 30px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(203, 157, 87, 0.14);
  color: var(--stone-400);
  font-size: 0.84rem;
}

@media (max-width: 1180px) {
  .navbar__links {
    gap: 18px;
  }

  .brand__title {
    font-size: 1.12rem;
  }

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

@media (max-width: 1080px) {
  .navbar__desktop {
    display: none;
  }

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

  .navbar__mobile {
    display: block;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    transition: max-height 0.3s ease, border-color 0.3s ease;
  }

  .navbar__mobile--open {
    max-height: 420px;
    border-color: rgba(203, 157, 87, 0.1);
  }

  .navbar__mobile-inner {
    display: grid;
    gap: 16px;
    padding: 18px 0 24px;
  }

  .hero__top,
  .overview-layout,
  .offer-band,
  .masterplan-layout,
  .location-layout,
  .developer-card,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: none;
  }

  .hero__form-shell {
    max-width: 460px;
  }

  .hero__visual-frame {
    min-height: 0;
  }

  .amenities-layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .overview-showcase {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 84px 0;
  }

  .brand__copy {
    gap: 2px;
  }

  .brand__title {
    font-size: 1.02rem;
    white-space: normal;
  }

  .brand__tag {
    display: none;
  }

  .hero {
    padding-top: 24px;
  }

  .hero__title {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .hero__subtitle,
  .section-heading__copy,
  .support-copy,
  .map-panel__footer p,
  .location-card p,
  .hero__visual-copy p {
    font-size: 0.96rem;
    line-height: 1.78;
  }

  .hero__visual-frame {
    min-height: 0;
  }

  .hero__visual-copy {
    left: 24px;
    right: 24px;
    bottom: 18px;
  }

  .hero__visual-copy strong {
    font-size: clamp(1.5rem, 6.9vw, 2.2rem);
    margin: 12px 0 8px;
  }

  .hero__visual-copy p {
    display: none;
  }

  .highlight-strip__rail {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    border-radius: 28px;
  }

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

  .section--overview .section-heading__title {
    font-size: clamp(2.1rem, 10.5vw, 3.2rem);
  }

  .amenities-visual--hero,
  .amenities-visual--clubhouse {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .amenity-list {
    grid-template-columns: 1fr;
  }

  .connectivity-cards,
  .nearby-grid {
    grid-template-columns: 1fr;
  }

  .stat-card__value,
  .location-card strong {
    font-size: 1.8rem;
  }

  .final-cta__actions,
  .location-actions,
  .hero__cta {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .footer__inner {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .section-shell {
    width: min(100% - 20px, 100%);
  }

  .hero__eyebrow,
  .pill {
    width: 100%;
    justify-content: center;
  }

  .highlight-pill {
    min-width: max-content;
  }

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

  .overview-showcase {
    min-height: 0;
  }

  .map-panel,
  .location-card,
  .offer-band,
  .offer-card,
  .developer-card,
  .final-cta,
  .residence-card,
  .stat-card,
  .enquiry-card {
    padding: 24px;
  }

  .brand__mark {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .brand__logo {
    width: 42px;
  }

  .map-frame {
    aspect-ratio: 4 / 5;
  }
}

