:root {
  --ink: #161b17;
  --charcoal: #0f1713;
  --forest: #234734;
  --forest-2: #345f45;
  --wine: #5a1f2c;
  --brass: #b88a42;
  --mist: #eef1ec;
  --ivory: #faf8f1;
  --paper: #ffffff;
  --muted: #68716a;
  --line: rgba(22, 27, 23, 0.14);
  --shadow: 0 28px 80px rgba(15, 23, 19, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body::selection {
  color: var(--paper);
  background: var(--forest);
}

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

img {
  max-width: 100%;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 90px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: var(--ink);
  background: rgba(225, 227, 224, 0.92);
  border-bottom: 1px solid rgba(22, 27, 23, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--brass);
  border-radius: 50%;
  color: var(--brass);
  font-weight: 800;
  font-family: Georgia, "Times New Roman", serif;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  padding: 8px;
  cursor: pointer;
  z-index: 100;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  display: block;
}

.badge-247 {
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  background: var(--brass);
  color: var(--charcoal);
  padding: 2px 10px;
  border-radius: 99px;
  vertical-align: middle;
  margin-left: 12px;
  font-family: Inter, ui-sans-serif, system-ui;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0;
}

.brand small {
  margin-top: 1px;
  color: rgba(22, 27, 23, 0.68);
  font-size: 12px;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: clamp(14px, 2vw, 26px);
  color: rgba(22, 27, 23, 0.68);
  font-size: 14.5px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 8px 0;
  color: var(--ink);
  transition: color 180ms ease;
}

.nav a:hover {
  color: #b3302a;
}

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

.nav a:hover::after {
  transform: scaleX(1);
}

.primary-btn,
.secondary-btn,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
}

.primary-btn,
.lead-form button {
  color: var(--paper);
  background: var(--wine);
}

.secondary-btn {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 780px;
  padding: 138px clamp(18px, 5vw, 74px) 78px;
  overflow: hidden;
  color: var(--paper);
  background: var(--charcoal);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.04);
}

@keyframes heroImageSettle {
  from {
    transform: scale(1.055);
    filter: saturate(0.78) contrast(1.08) blur(2px);
  }

  to {
    transform: scale(1);
    filter: saturate(0.94) contrast(1.04) blur(0);
  }
}

@keyframes heroTextRise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 17, 14, 0.92), rgba(11, 17, 14, 0.58) 48%, rgba(11, 17, 14, 0.18)),
    linear-gradient(0deg, rgba(11, 17, 14, 0.8), rgba(11, 17, 14, 0.12) 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 1040px;
}

body.has-animations .hero-image {
  animation: heroImageSettle 1800ms cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

body.has-animations .hero-content > * {
  opacity: 0;
  transform: translateY(26px);
  animation: heroTextRise 820ms cubic-bezier(0.2, 0.72, 0.18, 1) forwards;
}

body.has-animations .hero-content > :nth-child(1) {
  animation-delay: 140ms;
}

body.has-animations .hero-content > :nth-child(2) {
  animation-delay: 250ms;
}

body.has-animations .hero-content > :nth-child(3) {
  animation-delay: 360ms;
}

body.has-animations .hero-content > :nth-child(4) {
  animation-delay: 470ms;
}

body.has-animations .hero-content > :nth-child(5) {
  animation-delay: 580ms;
}

body.has-animations .hero-content > :nth-child(6) {
  animation-delay: 690ms;
}

.eyebrow,
.panel-label,
.card-label {
  margin: 0 0 13px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
}

.hero-kicker {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.hero-copy {
  max-width: 860px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.62;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-bottom: 36px;
}

.hero-contact-callout {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  max-width: 100%;
  margin-bottom: 36px;
  padding: 16px 20px;
  color: var(--paper);
  background: rgba(9, 13, 11, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 18px 48px rgba(9, 13, 11, 0.24);
  backdrop-filter: blur(14px);
}

.hero-contact-callout > span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-callout-numbers {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1;
}

.hero-callout-numbers a {
  color: var(--paper);
}

.hero-callout-numbers .separator {
  color: var(--brass);
  font-size: 0.8em;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 30px;
}

.lead-form small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.5;
}

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

.lead-form label {
  display: grid;
  gap: 8px;
  color: #38413b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.lead-form input:focus {
  outline: 2px solid rgba(184, 138, 66, 0.35);
  outline-offset: 0;
}

.section {
  padding: clamp(72px, 9vw, 122px) clamp(18px, 5vw, 74px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  background: var(--paper);
}

.intro-copy {
  position: sticky;
  top: 104px;
}

.intro-copy p,
.section-heading p,
.featured-residence p,
.project-card p,
.location p,
.final-copy p,
.footer p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.intro-notes {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.intro-notes article {
  padding: 32px;
  background: var(--ivory);
}

.intro-notes span {
  display: block;
  margin-bottom: 42px;
  color: var(--brass);
  font-weight: 900;
}

.intro-notes h3 {
  font-size: 28px;
}

.intro-notes .single-note {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: clamp(34px, 5vw, 58px);
  text-align: center;
}

.intro-notes .single-note p {
  max-width: 560px;
}

.intro-notes .single-note span {
  margin-bottom: 30px;
}

.collection {
  background: var(--mist);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 46px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.featured-residence {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 0;
  margin-bottom: 28px;
  background: var(--paper);
  box-shadow: 0 22px 70px rgba(15, 23, 19, 0.12);
}

.featured-residence img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.featured-residence > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 62px);
}

.featured-price {
  display: inline-grid;
  gap: 6px;
  align-self: flex-start;
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--ivory);
  border-left: 4px solid var(--brass);
}

.featured-price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-price strong {
  color: var(--forest);
  font-size: 20px;
}

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

.project-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(22, 27, 23, 0.1);
}

.project-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  background: var(--mist);
}

.project-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.project-card h3 {
  font-size: 27px;
}

.project-card strong {
  margin-top: auto;
  color: var(--forest);
  font-size: 17px;
}

.project-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 14px;
  color: var(--paper);
  background: var(--forest);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.price-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.masterplan {
  padding: clamp(72px, 9vw, 122px) clamp(18px, 5vw, 74px);
  background: var(--paper);
}

.masterplan-image {
  max-width: 980px;
  max-height: 720px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.masterplan-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 720px;
  object-fit: contain;
}

.amenities {
  background: var(--charcoal);
  color: var(--paper);
}

.amenities .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

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

.amenity-gallery figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: #15221c;
}

.amenity-gallery figure::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(15, 23, 19, 0.95) 0%, rgba(15, 23, 19, 0.4) 50%, rgba(15, 23, 19, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.amenity-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px;
  z-index: 2;
  text-align: center;
}

.amenity-overlay span {
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.amenity-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.amenity-gallery figure:hover img {
  transform: scale(1.06);
}

.amenities-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 64px);
  margin-top: 54px;
  padding-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.amenities-column h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--brass);
  margin-bottom: 24px;
  font-size: 22px;
  letter-spacing: 0.2px;
}

.amenities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
}

.amenities-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.amenities-list li svg {
  color: var(--brass);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  background: var(--ivory);
}

.location-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  position: sticky;
  top: 104px;
}

.location-item,
.location-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: var(--paper);
  color: var(--forest);
  font-weight: 850;
  font-size: 14px;
}

.location-item svg,
.location-list a svg {
  color: var(--forest-2);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.location-list a {
  background: var(--forest);
  color: var(--paper);
  justify-content: center;
  transition: background 220ms ease;
  font-weight: 900;
}

.location-list a svg {
  color: var(--paper);
}

.location-list a:hover {
  background: var(--forest-2);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(15, 23, 19, 0.94), rgba(15, 23, 19, 0.82)),
    url("assets/showcase/highgardens-brand.jpg") center / cover;
}

.final-copy {
  max-width: 740px;
}

.final-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-lines a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.contact-form {
  padding: 28px;
  color: var(--ink);
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.footer {
  padding: 34px clamp(18px, 5vw, 74px) 92px;
  background: #090d0b;
  color: var(--paper);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-disclaimer {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer-rera {
  display: grid;
  grid-template-columns: minmax(150px, auto) 92px;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.rera-info strong,
.rera-info span {
  display: block;
}

.rera-info strong {
  color: var(--paper);
  font-size: 13px;
  line-height: 1.4;
}

.rera-info span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 700;
}

.rera-qr-img {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: contain;
  background: var(--paper);
}

.sticky-left,
.sticky-right {
  position: fixed;
  bottom: 20px;
  z-index: 999;
}

.sticky-left {
  left: 20px;
}

.sticky-right {
  right: 20px;
}

.sticky-left a,
.sticky-right a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: var(--paper);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(15, 23, 19, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sticky-right .btn-call {
  background: var(--forest);
}

.sticky-left .btn-whatsapp {
  background: #1ebd60;
  border-color: rgba(255, 255, 255, 0.18);
}

.sticky-right .btn-call:hover {
  background: var(--forest-2);
}

.sticky-left .btn-whatsapp:hover {
  background: #25d366;
}

body.has-animations .topbar,
body.has-animations .sticky-left,
body.has-animations .sticky-right {
  transition:
    background-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

body.has-animations.is-scrolled .topbar {
  background: rgba(220, 222, 218, 0.96);
  box-shadow: 0 10px 30px rgba(15, 23, 19, 0.08);
}

body.has-animations .reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 850ms cubic-bezier(0.2, 0.72, 0.18, 1),
    transform 900ms cubic-bezier(0.2, 0.72, 0.18, 1),
    filter 900ms cubic-bezier(0.2, 0.72, 0.18, 1);
  transition-delay: var(--reveal-delay, 0ms);
  filter: blur(6px);
  will-change: opacity, transform, filter;
}

body.has-animations .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

body.has-animations .reveal-left {
  transform: translateX(-34px);
}

body.has-animations .reveal-right {
  transform: translateX(34px);
}

body.has-animations .reveal-scale {
  transform: translateY(28px) scale(0.975);
}

body.has-animations .reveal-left.is-visible,
body.has-animations .reveal-right.is-visible,
body.has-animations .reveal-scale.is-visible {
  transform: translateX(0) translateY(0) scale(1);
}

@media (hover: hover) {
  .project-card,
  .amenity-gallery figure,
  .primary-btn,
  .secondary-btn,
  .sticky-left a,
  .sticky-right a {
    transition:
      transform 220ms ease,
      box-shadow 220ms ease,
      background-color 220ms ease,
      border-color 220ms ease;
  }

  .project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 70px rgba(15, 23, 19, 0.16);
  }

  .amenity-gallery figure:hover {
    transform: translateY(-5px);
  }

  .primary-btn:hover,
  .secondary-btn:hover,
  .sticky-left a:hover,
  .sticky-right a:hover {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  body.has-animations .reveal,
  body.has-animations .hero-content > * {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: rgba(225, 227, 224, 0.98);
    border-bottom: 1px solid rgba(22, 27, 23, 0.08);
    padding: 0 clamp(18px, 4vw, 58px);
    gap: 16px;
    z-index: 49;
    box-shadow: 0 10px 30px rgba(15, 23, 19, 0.08);
    backdrop-filter: blur(18px);
    
    /* Animation base properties */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: max-height 320ms cubic-bezier(0.4, 0, 0.2, 1), opacity 260ms ease, transform 320ms cubic-bezier(0.4, 0, 0.2, 1), padding 320ms ease;
    pointer-events: none;
  }

  .nav.active {
    max-height: 320px;
    opacity: 1;
    transform: translateY(0);
    padding: 24px clamp(18px, 4vw, 58px);
    pointer-events: auto;
  }

  .intro,
  .featured-residence,
  .location,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    position: static;
  }

  .project-grid,
  .amenity-gallery,

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-rera {
    justify-self: start;
  }

  .contact-form {
    max-width: 560px;
  }
}

@media (max-width: 720px) {
  .topbar {
    min-height: 80px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 18px;
  }

  .hero {
    min-height: auto;
    padding: 112px 16px 44px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

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

  .hero-contact-callout {
    display: grid;
    width: 100%;
    padding: 15px;
  }

  .hero-callout-numbers {
    gap: 7px;
    font-size: 25px;
  }

  .contact-form {
    padding: 22px;
  }

  .section,
  .masterplan {
    padding: 58px 16px;
  }

  .featured-residence img {
    min-height: 300px;
  }

  .project-card img {
    aspect-ratio: 1.34;
  }

  .amenity-gallery figure,
  .amenity-gallery img {
    min-height: 145px;
  }

  .amenity-overlay {
    padding: 12px 8px;
  }

  .amenity-overlay span {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .amenities-highlights {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 36px;
    padding-top: 36px;
  }

  .amenities-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer {
    padding-bottom: 84px;
  }

  .footer-rera {
    grid-template-columns: 1fr 82px;
    width: 100%;
  }

  .rera-qr-img {
    width: 82px;
    height: 82px;
  }

  .sticky-left,
  .sticky-right {
    bottom: 12px;
  }

  .sticky-left {
    left: 12px;
  }

  .sticky-right {
    right: 12px;
  }

  .sticky-left a,
  .sticky-right a {
    width: 48px;
    height: 48px;
  }
}
