:root {
  --golden-yellow: #fd961e;
  --golden-yellow-deep: #d67a08;
  --dark-gray: #232323;
  --medium-gray: #444;
  --light-gray: #a8a8a8;
  --very-light-gray: #f7f7f7;
  --spring-wood: #f9f6f3;
  --warm-cream: #fffaf3;
  --warm-sand: #f8f0e4;
  --section-a: #f9f6f3;
  --section-b: #f3ebe1;
  --surface: #fff8f0;
  --white: #ffffff;
  --black: #000000;
  --border-soft: rgba(35, 35, 35, 0.1);
  --border-warm: rgba(176, 113, 28, 0.18);
  --alt-font: "Plus Jakarta Sans", sans-serif;
  --primary-font: "Inter", sans-serif;
  --header-h: 77px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1280px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--primary-font);
  color: var(--dark-gray);
  background: var(--section-a);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.section {
  padding: clamp(72px, 10vw, 140px) clamp(20px, 5vw, 64px);
}

.eyebrow {
  font-family: var(--primary-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--golden-yellow);
  margin-bottom: 18px;
}

.display-heading {
  font-family: var(--alt-font);
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark-gray);
  margin-bottom: 24px;
}

.section-lead {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--medium-gray);
  max-width: 540px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--alt-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.btn-primary {
  background: var(--golden-yellow);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--golden-yellow-deep);
}

.btn-dark {
  background: var(--dark-gray);
  color: var(--white);
}

.btn-dark:hover {
  background: #000;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-block {
  width: 100%;
}

.site-header {
  position: relative;
  z-index: 1000;
  height: var(--header-h);
  background: var(--section-a);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--section-a);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.header-spacer {
  display: none;
  width: 100%;
  height: var(--header-h);
  pointer-events: none;
}

.header-spacer.is-active {
  display: block;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 1;
  min-width: 0;
  max-width: min(420px, 48vw);
}

.header-logo img {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.header-logo-secondary {
  height: 28px;
}

.header-logo-divider {
  width: 1px;
  height: 28px;
  background: rgba(35, 35, 35, 0.2);
  flex-shrink: 0;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 40px;
  margin-left: auto;
}

.header-nav a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--dark-gray);
  transition: color 0.25s ease;
}

.header-nav a:hover {
  color: var(--golden-yellow);
}

.header-cta {
  display: none;
  padding: 12px 22px;
  margin-left: 8px;
}

@media (max-width: 1023px) {
  .header-cta {
    display: none !important;
  }
}

.menu-toggle {
  margin-left: auto;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark-gray);
  transition: background 0.3s ease, transform 0.3s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 999;
  background: rgba(249, 246, 243, 0.98);
  padding: 40px 28px;
  backdrop-filter: blur(16px);
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-nav a {
  font-family: var(--alt-font);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark-gray);
}

.mobile-nav .btn {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 77px);
  overflow: hidden;
  background: var(--section-b);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/banner.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
}

.hero-rera {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 210px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 767px) {
  .hero-bg {
    background-image: url("../images/mbanner.jpg");
  }

  .hero-rera {
    right: 2px;
    width: 118px;
    padding: 4px;
    top: 0;
  }
}

.intro {
  background: linear-gradient(180deg, var(--section-a) 0%, var(--warm-sand) 100%);
}

.intro-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 48px;
  align-items: center;
}

.intro-kicker {
  font-family: var(--alt-font);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 600;
  color: var(--dark-gray);
  line-height: 1.45;
  margin-bottom: 18px;
}

.intro-copy .display-heading {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.intro-text p {
  margin-bottom: 18px;
  color: var(--medium-gray);
  font-size: 1.02rem;
  line-height: 1.85;
}

.intro-closing {
  font-family: var(--alt-font);
  font-weight: 500;
  color: var(--dark-gray) !important;
  font-style: italic;
  margin-bottom: 0 !important;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-top: 32px;
}

.intro-rera {
  width: 360px;
  height: auto;
  object-fit: contain;
  display: block;
}

.intro-status {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}

.intro-status li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-gray);
}

.intro-status img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.intro-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

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

.amenities {
  background: linear-gradient(180deg, var(--section-b) 0%, #efe4d6 100%);
}

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

.amenities-header {
  margin-bottom: 48px;
  max-width: 640px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.amenity-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 20px;
  background: rgba(255, 248, 240, 0.88);
  border: 1px solid rgba(176, 113, 28, 0.14);
  transition: transform 0.35s var(--ease), border-color 0.35s ease, box-shadow 0.35s var(--ease);
}

.amenity-card:hover {
  transform: translateY(-3px);
  border-color: rgba(253, 150, 30, 0.45);
  box-shadow: 0 14px 30px rgba(88, 55, 13, 0.08);
}

.amenity-icon {
  width: 48px;
  height: 48px;
  color: var(--golden-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenity-icon svg {
  width: 100%;
  height: 100%;
}

.amenity-card > span:last-child {
  font-family: var(--alt-font);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--dark-gray);
  line-height: 1.35;
}

.gallery {
  background: #0f0f0f;
  color: var(--white);
}

.gallery .eyebrow {
  color: var(--golden-yellow);
}

.gallery .display-heading {
  color: var(--white);
  margin-bottom: 24px;
}

.gallery-shell {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-tabs {
  display: inline-flex;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.gallery-tab {
  position: relative;
  padding: 12px 28px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.gallery-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--golden-yellow);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.gallery-tab.is-active {
  color: var(--white);
}

.gallery-tab.is-active::after {
  transform: scaleX(1);
}

.gallery-slider {
  width: 100%;
}

.gallery-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.gallery-viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s var(--ease);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.gallery-nav svg {
  width: 18px;
  height: 18px;
  display: block;
}

.gallery-nav:hover {
  background: var(--golden-yellow);
  border-color: var(--golden-yellow);
}

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

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

.gallery-counter {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  margin: 0;
  font-family: var(--alt-font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--white);
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 12px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.gallery-progress {
  margin-top: 18px;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.gallery-progress-fill {
  display: block;
  height: 100%;
  width: 12.5%;
  background: var(--golden-yellow);
  transition: width 0.4s var(--ease);
}

.specs {
  background: linear-gradient(180deg, var(--section-a) 0%, var(--section-b) 100%);
}

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

.specs-header {
  max-width: 640px;
  margin-bottom: 48px;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.spec-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(176, 113, 28, 0.14);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease), border-color 0.35s ease, transform 0.35s var(--ease);
}

.spec-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--golden-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.spec-card.is-open::before,
.spec-card:hover::before {
  transform: scaleX(1);
}

.spec-card:hover {
  border-color: rgba(253, 150, 30, 0.35);
  box-shadow: 0 16px 36px rgba(88, 55, 13, 0.08);
}

.spec-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 22px 22px 18px;
  text-align: left;
  color: var(--dark-gray);
}

.spec-index {
  font-family: var(--alt-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--golden-yellow);
  min-width: 1.8em;
}

.spec-title {
  font-family: var(--alt-font);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.spec-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}

.spec-icon::before,
.spec-icon::after {
  content: "";
  position: absolute;
  background: var(--golden-yellow);
  transition: transform 0.3s var(--ease);
}

.spec-icon::before {
  width: 18px;
  height: 1.5px;
  top: 8px;
  left: 0;
}

.spec-icon::after {
  width: 1.5px;
  height: 18px;
  top: 0;
  left: 8px;
}

.spec-card.is-open .spec-icon::after {
  transform: scaleY(0);
}

.spec-body {
  display: none;
  padding: 0 22px 24px;
}

.spec-card.is-open .spec-body {
  display: block;
}

.spec-body ul {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(176, 113, 28, 0.12);
  padding-top: 6px;
}

.spec-body li {
  position: relative;
  padding: 12px 0 12px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.92rem;
  color: var(--medium-gray);
  line-height: 1.65;
}

.spec-body li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--golden-yellow);
}

.location {
  background: linear-gradient(180deg, var(--section-a) 0%, var(--warm-sand) 100%);
}

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

.location-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.destinations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.dest-group {
  background: var(--surface);
  border: 1px solid var(--border-warm);
  padding: 28px 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.dest-group:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(88, 55, 13, 0.1);
}

.dest-group h3 {
  font-family: var(--alt-font);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-warm);
  color: var(--dark-gray);
}

.dest-group li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.95rem;
}

.dest-group li span {
  color: var(--medium-gray);
}

.dest-group li em {
  font-style: normal;
  font-weight: 600;
  color: var(--golden-yellow);
  white-space: nowrap;
}

.promise {
  background: linear-gradient(180deg, var(--section-b) 0%, #efe4d6 100%);
  position: relative;
  overflow: hidden;
}

.promise::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -8%;
  width: min(520px, 55vw);
  height: min(520px, 55vw);
  border: 1px solid rgba(176, 113, 28, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.promise-shell {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.promise-header {
  display: grid;
  gap: 32px;
  align-items: end;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(176, 113, 28, 0.22);
}

.promise-header .display-heading {
  margin-bottom: 12px;
  max-width: 14ch;
}

.promise-project {
  font-family: var(--alt-font);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--medium-gray);
}

.promise-terms {
  margin-left: 6px;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--medium-gray);
  opacity: 0.85;
  white-space: nowrap;
}

.promise-rate {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 4px;
  align-items: center;
  padding: 24px 28px;
  background: var(--dark-gray);
  color: var(--white);
  max-width: 280px;
}

.promise-rate-value {
  grid-row: 1 / span 2;
  font-family: var(--alt-font);
  font-size: clamp(2.75rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--golden-yellow);
}

.promise-rate-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  align-self: end;
}

.promise-rate-note {
  font-size: 12px;
  line-height: 1.45;
  opacity: 0.7;
  align-self: start;
}

.promise-body {
  display: grid;
  gap: 28px;
  margin-bottom: 56px;
}

.promise-lead {
  max-width: 720px;
}

.promise-lead p {
  color: var(--medium-gray);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.85;
}

.promise-highlight {
  margin: 0;
  padding: 28px 28px 28px 32px;
  border-left: 3px solid var(--golden-yellow);
  background: rgba(255, 248, 240, 0.88);
  box-shadow: 0 12px 40px rgba(88, 55, 13, 0.06);
}

.promise-highlight p {
  color: var(--dark-gray);
  font-family: var(--alt-font);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  font-weight: 500;
  line-height: 1.75;
}

.promise-highlight strong {
  color: var(--golden-yellow-deep);
  font-weight: 700;
}

.promise-clauses {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(176, 113, 28, 0.22);
}

.promise-clause {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(176, 113, 28, 0.16);
  transition: background 0.35s var(--ease);
}

.promise-clause:hover {
  background: rgba(255, 248, 240, 0.55);
}

.promise-num {
  font-family: var(--alt-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--golden-yellow);
  padding-top: 4px;
}

.promise-clause h3 {
  font-family: var(--alt-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.promise-clause p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 58ch;
}

.promise-notes {
  display: grid;
  gap: 16px;
  margin-top: 40px;
  padding-top: 8px;
}

.promise-note {
  padding: 28px 24px;
  background: rgba(255, 248, 240, 0.9);
  border: 1px solid rgba(176, 113, 28, 0.18);
}

.promise-note h3 {
  font-family: var(--alt-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.promise-note p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 70ch;
}

.promise-note--why {
  background: var(--dark-gray);
  border-color: var(--dark-gray);
}

.promise-note--why h3 {
  color: var(--golden-yellow);
}

.promise-note--why p {
  color: rgba(255, 255, 255, 0.78);
}

@media (min-width: 768px) {
  .promise-header {
    grid-template-columns: 1fr auto;
    gap: 48px;
  }

  .promise-body {
    grid-template-columns: 1fr 1.05fr;
    gap: 40px;
    align-items: start;
  }

  .promise-clauses {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
  }

  .promise-clause:nth-child(odd) {
    padding-right: 24px;
    border-right: 1px solid rgba(176, 113, 28, 0.12);
  }

  .promise-clause:nth-child(even) {
    padding-left: 24px;
  }

  .promise-notes {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
  }

  .promise-note {
    padding: 32px 28px;
  }
}

@media (min-width: 1024px) {
  .promise-header {
    padding-bottom: 48px;
    margin-bottom: 48px;
  }

  .promise-body {
    gap: 64px;
    margin-bottom: 72px;
  }

  .promise-clause {
    padding: 32px 0;
  }
}

.enquire {
  background: linear-gradient(180deg, var(--section-a) 0%, var(--warm-sand) 100%);
  border-top: 1px solid var(--border-soft);
}

.enquire-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 48px;
}

.enquire-copy .eyebrow {
  margin-bottom: 14px;
}

.enquire-copy .display-heading {
  margin-bottom: 14px;
}

.enquire-copy .section-lead {
  max-width: 34ch;
  margin-bottom: 0;
}

.enquire-meta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.enquire-meta-project {
  font-family: var(--alt-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.enquire-meta-rera {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin-bottom: 8px;
}

.enquire-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

.enquire-brochure {
  margin-top: 0;
}

.rera-qr {
  margin-top: 0;
  width: auto;
  height: 100px;
  object-fit: contain;
}

.enquire-form {
  background: var(--dark-gray);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(28px, 4vw, 44px);
  color: rgba(255, 255, 255, 0.78);
}

.enquire-form .config-field {
  margin: 4px 0 22px;
}

.enquire-form .config-field legend {
  color: rgba(255, 255, 255, 0.9);
}

.enquire-form .config-option span {
  min-height: 48px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.enquire-form .config-option:hover span {
  border-color: rgba(253, 150, 30, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.enquire-form .config-option input:checked + span {
  background: var(--golden-yellow);
  border-color: var(--golden-yellow);
  color: var(--dark-gray);
}

.enquire-form .field {
  margin-bottom: 18px;
}

.enquire-form .field label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--alt-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.enquire-form .field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
  color: #fff;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.enquire-form .field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.enquire-form .field input:focus {
  border-color: var(--golden-yellow);
  background: rgba(255, 255, 255, 0.1);
  border-bottom-color: var(--golden-yellow);
}

.enquire-form .consent {
  margin: 6px 0 24px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.enquire-form .btn-dark {
  margin-top: 0;
  width: 100%;
  padding: 16px 24px;
  background: var(--golden-yellow);
  color: var(--dark-gray);
}

.enquire-form .btn-dark:hover {
  background: var(--golden-yellow-deep);
  color: #fff;
}

.enquire-form .form-status {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.enquire-form .form-status.is-success {
  color: #7dcea0;
}

.enquire-form .form-status.is-error {
  color: #f5a9a0;
}

.config-field {
  margin: 0 0 16px;
  padding: 0;
  border: none;
  min-inline-size: 0;
}

.config-field legend {
  padding: 0;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-gray);
}

.config-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.config-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.config-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.config-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--border-soft);
  background: var(--spring-wood);
  color: var(--dark-gray);
  font-family: var(--alt-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.config-option:hover span {
  border-color: #cfcfcf;
}

.config-option input:checked + span {
  background: var(--dark-gray);
  border-color: var(--dark-gray);
  color: var(--white);
}

.config-option input:focus-visible + span {
  outline: 2px solid var(--golden-yellow);
  outline-offset: 2px;
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--dark-gray);
}

.field input {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--border-soft);
  background: transparent;
  font-size: 1rem;
  color: var(--dark-gray);
  outline: none;
  transition: border-color 0.3s ease;
}

.field input:focus {
  border-bottom-color: var(--golden-yellow);
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.6;
  color: var(--medium-gray);
  margin: 8px 0 28px;
}

.consent input {
  margin-top: 3px;
  accent-color: var(--golden-yellow);
  flex-shrink: 0;
}

.form-status {
  margin-top: 14px;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.form-status.is-error { color: #c0392b; }
.form-status.is-success { color: #1e7a3a; }

.modal[hidden] {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 14, 0.72);
  backdrop-filter: blur(5px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--dark-gray);
  padding: 32px 26px 28px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
}

.modal-header {
  margin-bottom: 22px;
  padding-right: 36px;
}

.modal-dialog .display-heading {
  font-size: clamp(1.4rem, 3vw, 1.65rem);
  margin: 0 0 8px;
  line-height: 1.2;
  color: #fff;
}

.modal-dialog .section-lead {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: none;
  color: rgba(255, 255, 255, 0.55);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.modal-close svg {
  width: 14px;
  height: 14px;
}

.modal-close:hover {
  background: var(--golden-yellow);
  border-color: var(--golden-yellow);
  color: var(--dark-gray);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.modal-form .field {
  margin-bottom: 14px;
}

.modal-form .field label {
  display: block;
  margin-bottom: 7px;
  font-family: var(--alt-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.modal-form .field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.94rem;
  color: #fff;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.modal-form .field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.modal-form .field input:focus {
  border-color: var(--golden-yellow);
  background: rgba(255, 255, 255, 0.1);
}

.modal-form .config-field {
  margin: 4px 0 16px;
}

.modal-form .config-field legend {
  color: rgba(255, 255, 255, 0.9);
}

.modal-form .config-option span {
  min-height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.modal-form .config-option:hover span {
  border-color: rgba(253, 150, 30, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.modal-form .config-option input:checked + span {
  background: var(--golden-yellow);
  border-color: var(--golden-yellow);
  color: var(--dark-gray);
}

.modal-form .consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0 0 18px;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}

.modal-form .consent input {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--golden-yellow);
}

.modal-form .btn-block {
  width: 100%;
  padding: 14px 18px;
  font-size: 12px;
  background: var(--golden-yellow);
  color: var(--dark-gray);
}

.modal-form .btn-block:hover {
  background: var(--golden-yellow-deep);
  color: #fff;
}

.modal-form .form-status {
  margin-top: 10px;
  min-height: 1em;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

.modal-form .form-status.is-success {
  color: #7dcea0;
}

.modal-form .form-status.is-error {
  color: #f5a9a0;
}

body.modal-open {
  overflow: hidden;
}

.map-section {
  width: 100%;
  padding: 0;
  margin: 0;
  line-height: 0;
  background: var(--section-b);
  overflow: hidden;
}

.map-frame {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

@media (max-width: 767px) {
  .map-frame {
    height: 320px;
  }
}

.site-footer {
  background: linear-gradient(180deg, #fff4e8 0%, var(--section-b) 100%);
  padding: 64px clamp(20px, 5vw, 64px) 0;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 36px;
  align-items: start;
}

.footer-brand .footer-logo img {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
}

.footer-project {
  margin: 0 0 6px;
  font-family: var(--alt-font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.footer-promoter {
  margin: 0;
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.footer-contact h4,
.footer-rera h4 {
  font-family: var(--alt-font);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--dark-gray);
}

.footer-contact p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  line-height: 1.7;
  max-width: 38ch;
  margin-bottom: 10px;
}

.footer-contact a {
  color: var(--dark-gray);
  font-weight: 600;
}

.footer-contact a:hover {
  color: var(--golden-yellow);
}

.footer-phone a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-rera {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-rera-qr {
  width: 260px;
  margin-bottom: 10px;

}

.footer-rera-no {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-gray);
  letter-spacing: 0.02em;
}

.footer-bottom {
  max-width: var(--max);
  margin: 40px auto 0;
  padding: 24px 0;
  border-top: 1px solid var(--border-warm);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--medium-gray);
  line-height: 1.7;
}

.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reveal,
.reveal-image {
  will-change: transform, opacity;
}

@media (min-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .amenity-card {
    padding: 28px 24px;
  }

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

  .enquire-layout {
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
    align-items: start;
  }

  .enquire-copy {
    padding-top: 12px;
  }

  .footer-grid {
    grid-template-columns: 1.1fr 1.2fr auto;
    gap: 40px 48px;
    align-items: start;
  }

  .footer-rera {
    align-items: flex-end;
    text-align: right;
  }

  .specs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .spec-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  .spec-card::before {
    transform: scaleX(1);
  }

  .spec-body {
    display: block;
    flex: 1;
    padding: 0 24px 26px;
  }

  .spec-icon {
    display: none;
  }

  .spec-toggle {
    pointer-events: none;
    cursor: default;
    grid-template-columns: auto 1fr;
    padding: 24px 24px 14px;
  }

  .spec-title {
    font-size: 1.1rem;
  }
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .intro-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
  }

  .intro-media {
    aspect-ratio: 4 / 5;
  }

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

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

  .specs-grid .spec-card:nth-child(4),
  .specs-grid .spec-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (min-width: 1024px) {
  .gallery-header {
    margin-bottom: 48px;
  }

  .gallery-viewport {
    aspect-ratio: 21 / 10;
  }
}

@media (max-width: 767px) {
  .intro-copy {
    text-align: center;
  }

  .intro-actions {
    justify-content: center;
  }

  .intro-rera {
    width: min(220px, 70vw);
    margin-inline: auto;
  }

  .intro-status {
    justify-content: center;
  }

  .intro-status li {
    justify-content: center;
  }

  .intro-media {
    max-width: 100%;
    margin-inline: auto;
  }

  .amenities-header,
  .location-header,
  .gallery-header {
    text-align: center;
    margin-inline: auto;
  }

  .amenities-header .section-lead,
  .location-header .section-lead,
  .gallery-header .section-lead {
    margin-inline: auto;
  }

  .promise-header {
    text-align: center;
    justify-items: center;
  }

  .promise-header .display-heading {
    max-width: none;
    margin-inline: auto;
  }

  .promise-header-copy {
    text-align: center;
  }

  .promise-rate {
    justify-content: center;
    margin-inline: auto;
  }

  .enquire-copy,
  .enquire-meta {
    text-align: center;
    align-items: center;
  }

  .enquire-copy .section-lead {
    margin-inline: auto;
  }

  .enquire-cta-row {
    justify-content: center;
  }

  .enquire-meta {
    width: 100%;
  }

  .rera-qr {
    margin-inline: auto;
  }

  .footer-grid,
  .footer-brand,
  .footer-contact,
  .footer-rera {
    text-align: center;
    align-items: center;
  }

  .footer-brand .footer-logo {
    display: inline-flex;
    justify-content: center;
  }

  .footer-contact p {
    margin-inline: auto;
  }

  .footer-phone a {
    justify-content: center;
  }

  .footer-rera {
    text-align: center;
  }

  .footer-rera-qr {
    margin-inline: auto;
  }

  .footer-bottom {
    text-align: center;
  }

  .gallery-viewport {
    aspect-ratio: 4 / 3;
  }

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

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

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

  .gallery-counter {
    right: 10px;
    bottom: 10px;
    font-size: 12px;
    padding: 6px 10px;
  }

  .gallery-tab {
    padding: 12px 18px;
  }

  .gallery-tabs {
    justify-content: center;
  }
}

@media (max-width: 1023px) {
  .header-logo {
    gap: 8px;
    max-width: calc(100% - 56px);
  }

  .header-logo img {
    height: 32px;
  }

  .header-logo-secondary {
    height: 22px;
  }

  .header-logo-divider {
    height: 22px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 64px;
  }

  .header-logo {
    gap: 6px;
    max-width: calc(100% - 48px);
  }

  .header-logo img {
    height: 26px;
  }

  .header-logo-secondary {
    height: 18px;
  }

  .header-logo-divider {
    height: 18px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 12px;
  }
}

.side-enquire {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 1090;
  transform: translateY(-50%);
  padding: 22px 12px;
  border: none;
  border-radius: 6px 0 0 6px;
  background: var(--dark-gray);
  color: var(--white);
  font-family: var(--alt-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: -6px 10px 28px rgba(0, 0, 0, 0.18);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), opacity 0.25s ease;
}

.side-enquire span {
  display: inline-block;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.side-enquire:hover,
.side-enquire:focus-visible {
  background: #000;
  padding-right: 16px;
  outline: none;
}

body.modal-open .side-enquire {
  opacity: 0;
  pointer-events: none;
}

.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.float-btn svg {
  width: 24px;
  height: 24px;
  display: block;
}

.float-btn--whatsapp {
  background: #25d366;
}

.float-btn--call {
  background: var(--golden-yellow);
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.float-btn--call:hover {
  background: var(--golden-yellow-deep);
}

.float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  white-space: nowrap;
  background: var(--dark-gray);
  color: var(--white);
  font-family: var(--alt-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s var(--ease);
}

.float-btn:hover .float-tooltip,
.float-btn:focus-visible .float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 480px) {
  .side-enquire {
    padding: 16px 9px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .float-actions {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }

  .float-btn svg {
    width: 22px;
    height: 22px;
  }

  .float-tooltip {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.thankyou-page {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--section-a) 0%, var(--warm-sand) 100%);
}

.thankyou-page .site-header {
  position: relative;
}

.thankyou {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 64px;
}

.thankyou-card {
  width: min(100%, 560px);
  text-align: center;
  background: var(--dark-gray);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(36px, 6vw, 56px) clamp(24px, 5vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.22);
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  color: var(--golden-yellow);
}

.thankyou-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.thankyou-card .eyebrow {
  margin-bottom: 12px;
}

.thankyou-card .display-heading {
  color: #fff;
  margin-bottom: 16px;
}

.thankyou-copy {
  max-width: 38ch;
  margin: 0 auto 28px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.thankyou-note {
  margin-top: 28px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 560px) {
  .thankyou-actions {
    flex-direction: column;
  }

  .thankyou-actions .btn {
    width: 100%;
  }
}

