:root {
  --bg: #f4efe4;
  --surface: rgba(255, 251, 243, 0.86);
  --surface-strong: #fcf8f0;
  --forest: #1c3b26;
  --forest-soft: #2d5b3a;
  --gold: #c6a15a;
  --gold-soft: #ebd2a0;
  --text: #1f241d;
  --muted: #5e665f;
  --line: rgba(28, 59, 38, 0.12);
  --shadow: 0 24px 60px rgba(28, 40, 29, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --hero-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 242, 210, 0.5), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg) 100%);
}

.inner-page {
  --hero-progress: 1;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 0;
  padding: 0;
  overflow: visible;
  pointer-events: none;
}

.site-header::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 84px;
  backdrop-filter: blur(calc(16px * var(--hero-progress)));
  background: rgba(251, 248, 242, calc(0.94 * var(--hero-progress)));
  border-bottom: 1px solid rgba(28, 59, 38, calc(0.08 * var(--hero-progress)));
  box-shadow: 0 14px 32px rgba(20, 35, 24, calc(0.08 * var(--hero-progress)));
  pointer-events: none;
}

.nav-shell {
  position: relative;
  height: 0;
  pointer-events: none;
}

.brand {
  display: block;
  position: absolute;
  left: 0;
  z-index: 2;
  width: calc(156px + ((1 - var(--hero-progress)) * 94px));
  height: calc(58px + ((1 - var(--hero-progress)) * 34px));
  top: calc(12px + ((1 - var(--hero-progress)) * 34px));
  pointer-events: auto;
}

.brand img {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(156px + ((1 - var(--hero-progress)) * 94px));
  height: calc(156px + ((1 - var(--hero-progress)) * 94px));
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(20, 35, 24, 0.16);
}

.highlight-number,
.location-card h3,
.site-footer strong {
  font-family: "Cormorant Garamond", serif;
}

.site-nav {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.site-nav a {
  position: absolute;
  pointer-events: auto;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: calc(0.88rem + (0.04rem * var(--hero-progress)));
  color: rgb(
    calc(255 - (216 * var(--hero-progress))),
    calc(252 - (196 * var(--hero-progress))),
    calc(245 - (202 * var(--hero-progress)))
  );
  top: calc(var(--start-top) * 1px + ((var(--end-top) - var(--start-top)) * 1px * var(--hero-progress)));
  left: calc(var(--start-left) * 1% + ((var(--end-left) - var(--start-left)) * 1% * var(--hero-progress)));
  transform: translate(-50%, -50%);
  text-align: left;
  text-shadow: 0 4px 18px rgba(8, 12, 9, calc(0.28 * (1 - var(--hero-progress))));
}

.site-nav a:nth-child(1) {
  --start-top: 150;
  --end-top: 42;
  --start-left: 88;
  --end-left: 38;
}

.site-nav a:nth-child(2) {
  --start-top: 188;
  --end-top: 42;
  --start-left: 88;
  --end-left: 47;
}

.site-nav a:nth-child(3) {
  --start-top: 226;
  --end-top: 42;
  --start-left: 88;
  --end-left: 56;
}

.site-nav a:nth-child(4) {
  --start-top: 264;
  --end-top: 42;
  --start-left: 88;
  --end-left: 64;
}

.site-nav a:nth-child(5) {
  --start-top: 302;
  --end-top: 42;
  --start-left: 88;
  --end-left: 73;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.header-tools {
  position: absolute;
  top: calc(18px + ((1 - var(--hero-progress)) * 18px));
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  pointer-events: auto;
}

.tool-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: rgb(
    calc(255 - (216 * var(--hero-progress))),
    calc(252 - (196 * var(--hero-progress))),
    calc(245 - (202 * var(--hero-progress)))
  );
  text-shadow: 0 4px 18px rgba(8, 12, 9, calc(0.28 * (1 - var(--hero-progress))));
}

.tool-link svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tool-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.nav-cta {
  min-height: 50px;
  padding: 0 22px;
  background: linear-gradient(135deg, #cfaa5d 0%, #b78640 100%);
  color: #fffdf9;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(107, 74, 28, calc(0.18 + (0.08 * var(--hero-progress))));
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 14px;
  right: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--forest);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: clip;
  min-height: 100svh;
}

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

.hero-media {
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: 62% center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 900ms ease,
    transform 5.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 221, 153, 0.2), transparent 24%),
    linear-gradient(90deg, rgba(16, 22, 17, 0.6) 0%, rgba(16, 22, 17, 0.28) 42%, rgba(16, 22, 17, 0.16) 100%),
    linear-gradient(180deg, rgba(16, 22, 17, 0.06) 0%, rgba(16, 22, 17, 0.2) 100%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  min-height: 100svh;
  padding: 0 0 48px;
}

.hero-copy {
  max-width: 640px;
  color: #fffdf8;
  margin-top: clamp(340px, 46vh, 470px);
  transform: translateY(calc(-8px - (12px * var(--hero-progress))));
}

.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.77rem;
  font-weight: 800;
  color: var(--gold-soft);
}

.hero h1,
.section-heading h2,
.lifestyle-panel h2,
.location-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  line-height: 0.96;
  max-width: 16ch;
}

.inner-page .site-header {
  height: auto;
  pointer-events: auto;
}

.inner-page .site-header::before {
  height: 84px;
  backdrop-filter: blur(16px);
  background: rgba(251, 248, 242, 0.96);
  border-bottom: 1px solid rgba(28, 59, 38, 0.08);
  box-shadow: 0 14px 32px rgba(20, 35, 24, 0.08);
}

.inner-page .nav-shell {
  height: 84px;
  pointer-events: auto;
}

.inner-page main {
  padding-top: 84px;
}

.hero-text {
  max-width: 58ch;
  margin: 20px 0 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 252, 245, 0.9);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, #d1b06f 0%, #b48c49 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(125, 84, 25, 0.24);
}

.button-secondary {
  background: rgba(255, 248, 233, 0.12);
  border: 1px solid rgba(255, 248, 233, 0.48);
  color: #fff;
  backdrop-filter: blur(12px);
}

.location-card-label {
  margin: 0 0 18px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-soft);
}

.highlight-card,
.lifestyle-panel,
.location-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.enquiry-section {
  padding: 0;
  margin-top: -42px;
  position: relative;
  z-index: 1;
}

.enquiry-card {
  padding: 28px 28px 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(31, 36, 29, 0.08);
  border: 1px solid rgba(28, 59, 38, 0.06);
}

.enquiry-card h2 {
  margin: 0 0 22px;
  font-size: 1rem;
  font-weight: 800;
  color: #3d8b51;
}

.enquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 22px;
}

.enquiry-form input,
.enquiry-form select {
  width: 100%;
  min-height: 34px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid rgba(28, 59, 38, 0.18);
  background: linear-gradient(180deg, #f8f4e8 0%, #f5f0e2 100%);
  color: #676d67;
  font-size: 0.94rem;
  outline: none;
}

.enquiry-form input::placeholder {
  color: #7a7f79;
  font-size: 0.94rem;
}

.enquiry-form select {
  appearance: none;
  font-size: 0.94rem;
  background-image:
    linear-gradient(45deg, transparent 50%, #7a7f79 50%),
    linear-gradient(135deg, #7a7f79 50%, transparent 50%),
    linear-gradient(180deg, #f8f4e8 0%, #f5f0e2 100%);
  background-position:
    calc(100% - 22px) calc(50% - 4px),
    calc(100% - 14px) calc(50% - 4px),
    0 0;
  background-size: 8px 8px, 8px 8px, 100% 100%;
  background-repeat: no-repeat;
}

.enquiry-submit {
  min-width: 220px;
  min-height: 60px;
  border: 0;
  border-radius: 14px;
  background: #3f8b4d;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.enquiry-submit:hover {
  transform: translateY(-1px);
  background: #347641;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding: 110px 0;
}

.about-enquiry-shell {
  position: relative;
  overflow: hidden;
  padding-bottom: 64px;
  background:
    linear-gradient(
      90deg,
      var(--bg) 0%,
      var(--bg) 44%,
      rgba(244, 239, 228, 0.96) 52%,
      rgba(244, 239, 228, 0.72) 58%,
      rgba(244, 239, 228, 0.22) 66%,
      rgba(244, 239, 228, 0) 74%
    ),
    url("images/project.webp") right top / auto 100% no-repeat;
}

.about-enquiry-shell::after {
  display: none;
}

.two-column,
.about-layout,
.location-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.about-layout {
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
}

.about-copy {
  max-width: 700px;
  padding-right: 12px;
}

.about-visual {
  min-height: 1px;
}

.section-heading h2,
.lifestyle-panel h2,
.location-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.96;
  color: var(--forest);
}

.section-heading-centered {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-copy p,
.lifestyle-panel p,
.location-copy p,
.location-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.section-copy p + p,
.lifestyle-panel p + p,
.location-copy p + p,
.location-card p + p {
  margin-top: 16px;
}

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

.highlights-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(248, 242, 229, 0.28) 0%, rgba(244, 239, 228, 0.34) 100%),
    url("images/background.webp") center center / cover fixed no-repeat;
}

.highlights-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 244, 214, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(248, 242, 229, 0.12) 0%, rgba(244, 239, 228, 0.2) 100%);
  pointer-events: none;
}

.highlights-section .container {
  position: relative;
  z-index: 1;
}

.highlight-card {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(28, 59, 38, 0.04) 0%, rgba(28, 59, 38, 0.02) 100%),
    rgba(255, 252, 245, 0.88);
  border: 1px solid rgba(28, 59, 38, 0.08);
}

.highlight-number {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 3rem;
  line-height: 0.85;
  color: var(--forest);
}

.highlight-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  color: #253629;
}

.highlight-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.masterplan-section {
  background: #fffdf8;
  padding: 84px 0 56px;
}

.masterplan-shell {
  text-align: center;
}

.masterplan-heading {
  max-width: 820px;
  margin: 0 auto 44px;
}

.masterplan-eyebrow {
  margin: 0 0 10px;
  color: #3d8b51;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.masterplan-heading h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #242a24;
}

.masterplan-visual {
  width: 100%;
}

.masterplan-visual img {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: block;
}

.lifestyle-section {
  position: relative;
  background: #fffdf8;
  padding: 60px 0 72px;
}

.lifestyle-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 180px;
  background: linear-gradient(180deg, rgba(17, 26, 18, 0.04) 0%, rgba(17, 26, 18, 0) 100%);
  pointer-events: none;
}

.lifestyle-shell {
  position: relative;
  z-index: 1;
}

.lifestyle-heading {
  max-width: 980px;
  margin-bottom: 36px;
}

.lifestyle-heading h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.75rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: #1f241d;
}

.lifestyle-list {
  border-top: 1px solid rgba(28, 59, 38, 0.12);
}

.lifestyle-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(28, 59, 38, 0.12);
}

.lifestyle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #7e96a8;
}

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

.lifestyle-copy h3 {
  margin: 0 0 4px;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #212622;
}

.lifestyle-copy p {
  margin: 0;
  max-width: 860px;
  color: #4f5750;
  font-size: 1rem;
  line-height: 1.6;
}

.lifestyle-item-detail .lifestyle-copy h3 {
  margin-bottom: 10px;
}

.lifestyle-item-detail .lifestyle-copy p {
  max-width: 920px;
  line-height: 1.8;
}

.feature-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.feature-list li + li {
  margin-top: 10px;
}

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

.amenities-section {
  padding: 64px 0 78px;
  background: linear-gradient(180deg, #edf5ef 0%, #eef5ee 100%);
}

.amenities-section .container {
  width: min(95vw, 1440px);
}

.amenities-shell {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.amenities-heading {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.amenities-heading .eyebrow {
  color: #3d8b51;
}

.amenities-heading h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.04;
  color: #242b25;
}

.amenities-heading h2 span {
  color: #3d8b51;
}

.amenities-intro {
  max-width: 700px;
  margin: 18px auto 0;
  color: #6b726d;
  line-height: 1.8;
}

.amenities-carousel {
  position: relative;
}

.amenities-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 12px;
}

.amenities-grid::-webkit-scrollbar {
  display: none;
}

.amenity-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 0 0 436px;
  min-height: 286px;
  padding: 22px 22px 24px;
  border-radius: 24px;
  background: linear-gradient(160deg, #3f5f46, #2e4735 58%, #223428);
  box-shadow: 0 18px 34px rgba(37, 48, 40, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.amenity-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 31, 24, 0.18), rgba(18, 31, 24, 0.72)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(99, 131, 106, 0.64), rgba(42, 68, 49, 0.4));
  z-index: -2;
}

.amenity-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -26% 24%;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 210, 116, 0.18), transparent 70%);
  z-index: -1;
}

.amenity-card--children::before {
  background:
    linear-gradient(180deg, rgba(15, 28, 22, 0.18), rgba(12, 24, 19, 0.74)),
    url("images/childrenplayarea.webp") center/cover no-repeat;
}

.amenity-card--garden::before {
  background:
    linear-gradient(180deg, rgba(18, 31, 24, 0.16), rgba(11, 24, 16, 0.72)),
    url("images/garden.webp") center/cover no-repeat;
}

.amenity-card--pool::before {
  background:
    linear-gradient(180deg, rgba(13, 31, 26, 0.18), rgba(11, 26, 21, 0.76)),
    url("images/amenity1.webp") center/cover no-repeat;
}

.amenity-card--gym::before {
  background:
    linear-gradient(180deg, rgba(20, 26, 23, 0.18), rgba(15, 21, 18, 0.78)),
    url("images/indoorgym.webp") center/cover no-repeat;
}

.amenity-card--reception::before {
  background:
    linear-gradient(180deg, rgba(26, 23, 18, 0.14), rgba(18, 19, 16, 0.74)),
    url("images/reception.webp") center/cover no-repeat;
}

.amenity-card--guestroom::before {
  background:
    linear-gradient(180deg, rgba(26, 22, 18, 0.16), rgba(17, 18, 16, 0.76)),
    url("images/guestroom.webp") center/cover no-repeat;
}

.amenity-card--sitarea::before {
  background:
    linear-gradient(180deg, rgba(16, 27, 21, 0.18), rgba(12, 21, 17, 0.74)),
    url("images/sitarea.webp") center/cover no-repeat;
}

.amenity-card--boxcricket::before {
  background:
    linear-gradient(180deg, rgba(19, 30, 21, 0.16), rgba(12, 22, 16, 0.76)),
    url("images/boxcricket.webp") center/cover no-repeat;
}

.amenity-card--gatedcommunity::before {
  background:
    linear-gradient(180deg, rgba(17, 28, 22, 0.16), rgba(11, 22, 18, 0.76)),
    url("images/gatedcommunity.webp") center/cover no-repeat;
}

.amenity-card--servantquarters::before {
  background:
    linear-gradient(180deg, rgba(24, 24, 20, 0.16), rgba(17, 18, 16, 0.76)),
    url("images/serventquarters.webp") center/cover no-repeat;
}

.amenity-card--banquethall::before {
  background:
    linear-gradient(180deg, rgba(30, 21, 18, 0.12), rgba(18, 17, 15, 0.74)),
    url("images/banquethall.webp") center/cover no-repeat;
}

.amenity-card--associationroom::before {
  background:
    linear-gradient(180deg, rgba(26, 23, 18, 0.16), rgba(17, 18, 15, 0.76)),
    url("images/associationroom.webp") center/cover no-repeat;
}

.amenity-card--previewtheatre::before {
  background:
    linear-gradient(180deg, rgba(18, 18, 22, 0.14), rgba(12, 12, 16, 0.82)),
    url("images/previewtheatre.webp") center/cover no-repeat;
}

.amenity-card--joggingtrack::before {
  background:
    linear-gradient(180deg, rgba(14, 27, 20, 0.12), rgba(10, 21, 16, 0.74)),
    url("images/joggingtrack.webp") center/cover no-repeat;
}

.amenity-card--security::before {
  background:
    linear-gradient(180deg, rgba(18, 24, 22, 0.14), rgba(10, 16, 14, 0.8)),
    url("images/24x7security.webp") center/cover no-repeat;
}

.amenity-card--badminton::before {
  background:
    linear-gradient(180deg, rgba(17, 23, 20, 0.14), rgba(11, 16, 14, 0.78)),
    url("images/badminton.webp") center/cover no-repeat;
}

.amenity-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
  color: #fffef8;
  backdrop-filter: blur(6px);
}

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

.amenity-card h3 {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: #fffdfa;
}

.amenity-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.72;
  color: rgba(247, 242, 233, 0.86);
}

.amenities-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.amenities-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(36, 60, 42, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #4f5d53;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(34, 47, 37, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.amenities-control:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(34, 47, 37, 0.12);
  color: #21402d;
}

.clubhouse-section {
  background: #201d17;
  padding: 78px 0;
}

.clubhouse-shell {
  width: min(95vw, 1440px);
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(320px, 0.8fr);
  gap: 40px;
  align-items: center;
}

.clubhouse-visual img {
  width: 100%;
  display: block;
  border-radius: 4px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
}

.clubhouse-copy {
  max-width: 420px;
  color: rgba(255, 250, 240, 0.92);
}

.clubhouse-eyebrow {
  margin: 0 0 12px;
  color: #d7b449;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.clubhouse-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: #fffdfa;
}

.clubhouse-subtitle {
  margin: 10px 0 0;
  color: rgba(255, 245, 225, 0.94);
  font-size: 1.08rem;
  font-weight: 500;
}

.clubhouse-copy p {
  color: rgba(255, 250, 240, 0.84);
  line-height: 1.9;
}

.clubhouse-copy p + p {
  margin-top: 12px;
}

.clubhouse-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  margin-top: 22px;
  border: 1px solid rgba(215, 180, 73, 0.72);
  color: #f3e5b5;
  border-radius: 4px;
  font-weight: 600;
  background: transparent;
}

.floorplans-section {
  background: #fbf8f2;
  padding: 56px 0 54px;
}

.floorplans-shell {
  width: min(95vw, 1440px);
}

.floorplans-heading {
  text-align: center;
  margin-bottom: 26px;
}

.floorplans-eyebrow {
  margin: 0 0 18px;
  color: #434743;
  font-size: 1rem;
  font-weight: 500;
}

.floorplans-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(28, 59, 38, 0.12);
}

.floorplans-tab {
  min-height: 54px;
  padding: 0 26px;
  border: 2px solid #232a24;
  background: #fffdfa;
  color: #232a24;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.floorplans-tab.is-active {
  border-color: #d8b44b;
  color: #d8b44b;
}

.floorplans-panel {
  margin-top: 22px;
}

.floorplans-frame {
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(28, 59, 38, 0.08);
  box-shadow: 0 18px 44px rgba(31, 36, 29, 0.08);
}

.floorplans-frame img {
  width: 100%;
  display: block;
}

.reviews-section {
  padding: 82px 0 42px;
  background: #fffdf8;
}

.reviews-shell {
  position: relative;
  width: min(95vw, 1440px);
}

.reviews-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 12px;
}

.reviews-track::-webkit-scrollbar,
.glimpse-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 320px;
  min-height: 206px;
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(28, 59, 38, 0.12);
  box-shadow: 0 10px 28px rgba(31, 36, 29, 0.05);
}

.review-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.review-avatar,
.review-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c56f39 0%, #8d3f1d 100%);
  color: #fff;
  font-weight: 800;
}

.review-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.review-author h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  color: #222923;
}

.review-author p {
  margin: 2px 0 0;
  color: #8a8f8b;
  font-size: 0.88rem;
}

.review-stars {
  margin: 12px 0 10px;
  color: #f4b400;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.review-copy {
  margin: 0;
  color: #2d312e;
  line-height: 1.55;
}

.review-copy + .review-copy {
  margin-top: 14px;
}

.review-more {
  display: inline-block;
  margin-top: 18px;
  color: #8a8f8b;
  font-size: 0.94rem;
  font-weight: 500;
}

.reviews-controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.carousel-button,
.glimpse-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(28, 59, 38, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #5a635d;
  font-size: 1.7rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(31, 36, 29, 0.08);
  pointer-events: auto;
}

.carousel-button[data-carousel-prev] {
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-button[data-carousel-next] {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
}

.reviews-score {
  margin: 8px 0 0;
  text-align: center;
  color: #2b302c;
}

.glimpse-section {
  padding: 64px 0 48px;
  background: #fffdf8;
}

.glimpse-shell {
  padding: 68px 0 64px;
  border-radius: 32px;
  background: #eaf4ee;
}

.glimpse-header {
  max-width: 820px;
  text-align: center;
}

.glimpse-header h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.04;
  color: #202621;
}

.glimpse-header h2 span {
  color: #3d8b51;
}

.glimpse-header p {
  max-width: 620px;
  margin: 18px auto 0;
  color: #69706a;
  line-height: 1.75;
}

.glimpse-carousel {
  position: relative;
  margin-top: 34px;
  padding: 0 64px;
}

.glimpse-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.glimpse-card {
  flex: 0 0 190px;
  margin: 0;
  height: 210px;
  overflow: hidden;
  background: #dde6de;
  border-radius: 18px;
}

.glimpse-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.glimpse-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.glimpse-arrow[data-carousel-prev] {
  left: 12px;
}

.glimpse-arrow[data-carousel-next] {
  right: 12px;
}

.location-page {
  background:
    radial-gradient(circle at top left, rgba(255, 240, 205, 0.3), transparent 24%),
    linear-gradient(180deg, #fbf8f2 0%, #f4efe4 100%);
}

.location-page-hero {
  padding: 72px 0 18px;
}

.location-article {
  max-width: 1080px;
}

.location-article-header {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.location-article-header h1,
.location-article-body h2,
.location-map-heading h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.05em;
  color: #1e2320;
}

.location-article-header h1 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 1.02;
}

.location-article-header h1 span {
  color: #3d8b51;
}

.location-article-body {
  margin-top: 34px;
}

.location-article-body h2,
.location-map-heading h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  line-height: 1.1;
}

.location-article-body h2 + p {
  margin-top: 12px;
}

.location-article-body p,
.location-map-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.location-article-body > p + h2,
.location-article-body > ul + h2,
.location-article-body > p + p,
.location-article-body > ul + p {
  margin-top: 18px;
}

.location-article-list {
  margin: 14px 0 0;
  padding: 0 0 0 22px;
}

.location-article-list li {
  position: relative;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.location-article-list li + li {
  margin-top: 8px;
}

.location-story-section {
  padding-top: 8px;
  padding-bottom: 44px;
}

.location-article-button {
  margin-top: 24px;
}

.location-map-section {
  padding-top: 22px;
  padding-bottom: 76px;
}

.location-map-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.location-map-frame {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(28, 59, 38, 0.08);
  box-shadow: 0 20px 48px rgba(31, 36, 29, 0.08);
  background: #fff;
}

.location-map-frame iframe {
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
}

.location-card {
  padding: 34px;
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.98) 0%, rgba(241, 233, 212, 0.95) 100%);
  border: 1px solid rgba(198, 161, 90, 0.26);
}

.location-card h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 0.95;
  color: var(--forest);
}

.closing-cta-section {
  padding: 0;
  background: #184d27;
}

.closing-cta {
  padding: 66px 0 76px;
}

.closing-cta h2 {
  margin: 0 0 28px;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.6rem, 4.8vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  color: #fffdf8;
}

.closing-cta-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.closing-cta-form input,
.closing-cta-form textarea,
.closing-cta-form button {
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font: inherit;
}

.closing-cta-form input,
.closing-cta-form textarea {
  padding: 14px 14px;
  background: #fff;
  color: #263028;
}

.closing-cta-form textarea {
  grid-column: 1 / -1;
  min-height: 92px;
  resize: vertical;
}

.closing-cta-form button {
  grid-column: 1 / -1;
  min-height: 46px;
  background: #255f2d;
  color: #fffdf8;
  cursor: pointer;
}

.site-footer {
  margin-top: 0;
  padding: 64px 0 22px;
  background: #fff;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(180px, 1fr));
  gap: 34px;
  align-items: start;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand-mark img {
  width: 123px;
  height: 123px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-brand-mark span {
  display: flex;
  flex-direction: column;
}

.site-footer strong {
  display: block;
  font-size: 1rem;
  color: var(--forest);
}

.footer-brand-mark small {
  margin-top: 2px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7d845f;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-links h3 {
  margin: 0 0 18px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #59725f;
}

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

.footer-links a,
.site-footer a {
  display: inline-block;
  margin: 0 0 10px;
  font-weight: 500;
  font-size: 0.82rem;
  color: #476d43;
}

.footer-links p {
  margin: 0 0 12px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #476d43;
}

.footer-socials svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-reach a {
  margin: 0;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid rgba(28, 59, 38, 0.18);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  font-size: 0.74rem;
  color: #5f685f;
}

.footer-credit-link {
  font-weight: 700;
  color: #476d43;
}

@media (max-width: 1100px) {
  .hero-layout,
  .about-layout,
  .highlight-grid,
  .two-column,
  .location-layout,
  .clubhouse-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enquiry-form {
    grid-template-columns: 1fr 1fr;
  }

  .enquiry-submit {
    min-width: 100%;
    min-height: 60px;
  }

  .hero-layout {
    align-items: center;
  }

  .masterplan-visual img {
    width: min(100%, 960px);
  }

  .hero-copy {
    margin-top: clamp(310px, 36vh, 390px);
  }

  .closing-cta {
    padding: 54px 0 60px;
  }

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

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

  .glimpse-track {
    gap: 10px;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: auto;
    pointer-events: auto;
  }

  .site-header::before {
    height: 64px;
    backdrop-filter: blur(16px);
    background: rgba(251, 248, 242, 0.96);
    border-bottom: 1px solid rgba(28, 59, 38, 0.08);
    box-shadow: none;
  }

  .nav-shell {
    height: 64px;
    pointer-events: auto;
  }

  .brand {
    position: relative;
    left: 0;
    top: 6px;
    width: 60px;
    height: 60px;
  }

  .brand img {
    width: 60px;
    height: 60px;
  }

  .menu-toggle {
    display: inline-block;
    pointer-events: auto;
    top: 8px;
    width: 42px;
    height: 42px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    bottom: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: auto;
    gap: 0;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 251, 243, 0.98);
    border: 1px solid rgba(28, 59, 38, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
    color: #27382b;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    pointer-events: none;
  }

  .site-nav a {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 14px 12px;
    border-radius: 14px;
    text-shadow: none;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-cta {
    margin-top: 8px;
  }

  .header-tools {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-layout,
  .two-column,
  .about-layout,
  .highlight-grid,
  .location-layout,
  .clubhouse-shell,
  .footer-shell {
    grid-template-columns: 1fr;
    display: grid;
  }

  .enquiry-section {
    margin-top: 10px;
  }

  .about-enquiry-shell {
    padding-bottom: 42px;
    background: linear-gradient(180deg, #fbf8f2 0%, #f4efe4 100%);
  }

  .enquiry-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-shell {
    gap: 12px;
  }

  .hero-layout {
    min-height: 100svh;
    align-items: end;
    padding: 108px 0 48px;
  }

  .hero-copy {
    max-width: 430px;
    margin-top: auto;
    transform: none;
  }

  .hero .eyebrow {
    margin-bottom: 14px;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.2rem, 8vw, 3.15rem);
    line-height: 0.98;
  }

  .hero-text {
    max-width: 34ch;
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .section {
    padding: 82px 0;
  }

  .about-layout,
  .location-layout {
    gap: 24px;
  }

  .about-copy {
    max-width: none;
    padding-right: 0;
  }

  .about-visual {
    display: block;
    min-height: 260px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255, 248, 233, 0.08) 0%, rgba(17, 26, 18, 0.08) 100%),
      url("images/project.webp") center center / cover no-repeat;
    box-shadow: 0 18px 34px rgba(31, 36, 29, 0.08);
  }

  .section-heading h2,
  .location-copy h2,
  .location-article-header h1,
  .location-article-body h2,
  .location-map-heading h2 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1;
  }

  .section-copy p,
  .location-copy p,
  .location-card p,
  .location-article-body p,
  .location-map-heading p {
    line-height: 1.75;
  }

  .location-page-hero {
    padding: 52px 0 28px;
  }

  .location-article-body {
    margin-top: 24px;
  }

  .location-map-heading {
    margin-bottom: 22px;
  }

  .location-map-frame {
    border-radius: 22px;
  }

  .location-map-frame iframe {
    height: 420px;
  }

  .enquiry-card {
    padding: 22px;
  }

  .highlights-section {
    background-attachment: scroll;
  }

  .highlight-grid {
    gap: 14px;
  }

  .highlight-card {
    padding: 22px;
  }

  .highlight-number {
    font-size: 2.5rem;
    margin-bottom: 14px;
  }

  .masterplan-heading {
    margin-bottom: 28px;
  }

  .masterplan-heading h2,
  .amenities-heading h2,
  .clubhouse-copy h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .masterplan-visual img {
    width: 100%;
  }

  .floorplans-shell {
    width: 100%;
  }

  .floorplans-heading {
    margin-bottom: 18px;
  }

  .floorplans-tabs {
    display: grid;
    width: 100%;
    gap: 10px;
    border-bottom: 0;
    padding-bottom: 0;
  }

  .floorplans-tab {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.92rem;
  }

  .floorplans-panel {
    margin-top: 16px;
  }

  .floorplans-frame {
    padding: 12px;
  }

  .amenities-shell {
    padding: 0;
  }

  .amenities-heading {
    margin-bottom: 28px;
  }

  .amenities-intro {
    line-height: 1.7;
  }

  .amenities-carousel {
    padding: 0;
  }

  .amenity-card {
    flex-basis: 388px;
    min-height: 272px;
    padding: 20px 18px 22px;
  }

  .amenity-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 84px;
  }

  .amenity-icon svg {
    width: 30px;
    height: 30px;
  }

  .amenity-card h3 {
    font-size: 1rem;
  }

  .amenity-card p {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .amenities-controls {
    margin-top: 16px;
  }

  .clubhouse-section {
    padding: 56px 0;
  }

  .clubhouse-shell {
    gap: 26px;
  }

  .clubhouse-copy {
    max-width: none;
  }

  .clubhouse-visual img {
    border-radius: 18px;
  }

  .location-card {
    padding: 24px;
  }

  .masterplan-section,
  .floorplans-section,
  .lifestyle-section,
  .amenities-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .lifestyle-heading {
    margin-bottom: 26px;
  }

  .closing-cta-section {
    padding: 0;
  }

  .reviews-section {
    padding: 56px 0 30px;
  }

  .reviews-shell {
    width: 100%;
  }

  .reviews-track {
    gap: 14px;
  }

  .review-card {
    flex-basis: 86vw;
    min-width: 0;
  }

  .review-card {
    min-height: auto;
  }

  .reviews-controls {
    display: none;
  }

  .glimpse-section {
    padding: 48px 0 32px;
  }

  .glimpse-shell {
    border-radius: 24px;
    padding: 44px 0 40px;
  }

  .glimpse-header h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .glimpse-carousel {
    margin-top: 26px;
    padding: 0 18px;
  }

  .glimpse-track {
    gap: 12px;
  }

  .glimpse-card {
    flex-basis: 72vw;
  }

  .glimpse-card {
    height: 180px;
    border-radius: 18px;
  }

  .glimpse-arrow {
    display: none;
  }

  .closing-cta {
    padding: 42px 0 48px;
  }

  .closing-cta h2 {
    margin-bottom: 22px;
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .closing-cta-form {
    grid-template-columns: 1fr;
  }

  .closing-cta-form textarea,
  .closing-cta-form button {
    grid-column: auto;
  }

  .footer-brand-mark img {
    width: 54px;
    height: 54px;
  }

  .site-footer strong {
    font-size: 1.5rem;
  }

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

  .lifestyle-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 0;
  }

  .lifestyle-icon {
    width: 34px;
    height: 34px;
  }

  .lifestyle-icon svg {
    width: 24px;
    height: 24px;
  }

  .lifestyle-copy h3 {
    font-size: 1.35rem;
  }

  .floorplans-tabs {
    gap: 12px;
    padding-bottom: 18px;
  }

  .floorplans-tab {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .amenities-arrow {
    display: none;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .site-header::before,
  .nav-shell {
    height: 58px;
  }

  .brand {
    top: 5px;
    width: 52px;
    height: 52px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .menu-toggle {
    top: 7px;
    width: 40px;
    height: 40px;
  }

  .hero-layout {
    min-height: 100svh;
    padding: 96px 0 40px;
  }

  .hero-copy {
    transform: none;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 10.2vw, 2.6rem);
  }

  .hero-text {
    font-size: 0.9rem;
  }

  .reviews-track {
    gap: 14px;
  }

  .review-card {
    flex-basis: 84vw;
    padding: 16px;
  }

  .review-author h3 {
    font-size: 0.94rem;
  }

  .reviews-score {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .glimpse-shell {
    border-radius: 20px;
    padding: 38px 0 34px;
  }

  .glimpse-carousel {
    padding: 0 14px;
  }

  .glimpse-track {
    gap: 10px;
  }

  .glimpse-card {
    flex-basis: 76vw;
    height: 168px;
    border-radius: 16px;
  }

  .about-visual {
    min-height: 220px;
    border-radius: 20px;
  }

  .location-article-body {
    margin-top: 20px;
  }

  .location-map-frame iframe {
    height: 320px;
  }

  .highlight-card,
  .location-card {
    padding: 22px;
  }

  .amenity-card {
    flex-basis: 82vw;
    min-height: 258px;
    padding: 18px 18px 20px;
  }

  .amenities-controls {
    gap: 10px;
  }

  .amenities-control {
    width: 42px;
    height: 42px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .enquiry-card {
    padding: 20px 18px;
  }

  .closing-cta {
    padding: 34px 0 38px;
  }

  .closing-cta-form input,
  .closing-cta-form textarea {
    padding: 12px;
  }

  .enquiry-form input,
  .enquiry-form select,
  .enquiry-submit {
    min-height: 40px;
  }
}
