:root {
  --navy: #071a30;
  --navy-2: #0d2948;
  --ink: #102038;
  --muted: #5f6674;
  --gold: #c99545;
  --gold-2: #f0bd68;
  --paper: #fffaf3;
  --white: #ffffff;
  --line: rgba(18, 32, 56, 0.12);
  --shadow: 0 24px 70px rgba(16, 28, 48, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(155px, 230px) 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px clamp(20px, 4.4vw, 84px);
  transition: background 240ms ease, padding 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(7, 22, 40, 0.86);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand img {
  width: clamp(150px, 15vw, 235px);
  height: auto;
}

.nav-shell {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.8vw, 30px);
  padding: 9px 10px 9px 28px;
  color: var(--white);
  background: rgba(5, 18, 34, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.nav-shell a {
  font-size: 0.96rem;
  font-weight: 650;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-shell a:hover {
  color: var(--gold-2);
  transform: translateY(-1px);
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), #b77b30);
  border-radius: 999px;
}

.nav-call svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(6, 20, 38, 0.62);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 170px clamp(20px, 4.4vw, 84px) 150px;
  color: var(--white);
  background: var(--navy);
}

.hero-video,
.motion-fallback,
.motion-fallback img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video,
.motion-fallback img {
  object-fit: cover;
}

.motion-fallback {
  z-index: 0;
}

.hero-video {
  z-index: 1;
}

.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 15, 30, 0.96) 0%, rgba(6, 22, 41, 0.8) 34%, rgba(6, 22, 41, 0.25) 65%, rgba(4, 15, 30, 0.1) 100%),
    linear-gradient(0deg, rgba(5, 14, 26, 0.78) 0%, rgba(5, 14, 26, 0) 35%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, calc(100vw - clamp(40px, 8.8vw, 168px)));
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(4rem, 6vw, 6.6rem);
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.22);
}

h1 span,
h2 span {
  display: block;
}

h1 .homes-word {
  display: inline;
}

h2 {
  color: var(--ink);
  font-size: clamp(2.4rem, 4.2vw, 4.6rem);
}

.gold-rule {
  display: block;
  width: 72px;
  height: 3px;
  margin: 24px 0 16px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
}

.hero-copy {
  width: min(560px, 100%);
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.6vw, 1.26rem);
}

.hero-cards,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-cards {
  margin-bottom: 28px;
}

.price-card,
.ready-card {
  min-height: 94px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.price-card {
  min-width: 258px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 18px 26px;
  background: rgba(5, 20, 37, 0.68);
  border: 1px solid var(--gold-2);
}

.price-card span {
  color: var(--gold-2);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.price-card strong {
  font-family: var(--serif);
  font-size: 2.75rem;
  line-height: 1;
}

.price-card sup {
  font-family: var(--sans);
  font-size: 0.9rem;
}

.ready-card {
  min-width: 285px;
  gap: 16px;
  padding: 18px 24px;
  color: var(--ink);
  background: rgba(255, 252, 247, 0.94);
  border: 1px solid rgba(201, 149, 69, 0.38);
}

.ready-card p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.45;
}

.ready-card span:not(.mini-icon) {
  display: block;
}

.mini-icon,
.line-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.mini-icon svg,
.line-icon svg,
.small-icon svg {
  width: 52%;
  height: 52%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #d3a252, #b97b31);
  box-shadow: 0 18px 40px rgba(185, 123, 49, 0.3);
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(8, 25, 45, 0.45);
}

.btn-outline:hover {
  border-color: var(--gold-2);
  background: rgba(8, 25, 45, 0.82);
}

.offer-badge {
  position: absolute;
  z-index: 4;
  right: clamp(22px, 5vw, 88px);
  top: 21%;
  display: grid;
  place-content: center;
  width: clamp(112px, 11vw, 158px);
  aspect-ratio: 1;
  color: #071a30;
  background: #f5cf78;
  clip-path: polygon(50% 0%, 58% 8%, 69% 5%, 75% 15%, 86% 16%, 90% 27%, 100% 34%, 95% 45%, 100% 55%, 92% 64%, 94% 76%, 82% 80%, 76% 91%, 64% 91%, 55% 100%, 45% 92%, 33% 95%, 26% 84%, 15% 82%, 11% 70%, 1% 63%, 6% 51%, 0% 42%, 9% 33%, 8% 21%, 21% 17%, 27% 6%, 39% 8%);
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.offer-badge span,
.offer-badge strong,
.offer-badge small {
  display: block;
  line-height: 1.05;
}

.offer-badge span,
.offer-badge strong {
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  font-weight: 800;
}

.offer-badge small {
  margin-top: 8px;
  font-size: clamp(0.62rem, 0.9vw, 0.8rem);
  font-weight: 800;
}

.highlights {
  position: relative;
  z-index: 5;
  padding: 0 clamp(20px, 8vw, 150px);
  margin-top: -54px;
}

.highlight-panel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  min-height: 132px;
  padding: 22px 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(201, 149, 69, 0.16);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 clamp(18px, 2.3vw, 34px);
  border-right: 1px solid var(--line);
}

.highlight-item:last-child {
  border-right: 0;
}

.highlight-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.06rem;
  line-height: 1.25;
}

.highlight-item p {
  margin: 3px 0 0;
  color: var(--muted);
  line-height: 1.35;
}

.section {
  padding: clamp(72px, 7.5vw, 128px) clamp(20px, 8vw, 150px);
}

.about-section {
  padding-top: clamp(70px, 7vw, 110px);
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 149, 69, 0.1), transparent 34%),
    var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) minmax(260px, 0.92fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 3.4vw, 54px);
  align-items: center;
}

.video-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: var(--navy);
  box-shadow: 0 22px 55px rgba(17, 32, 54, 0.18);
  cursor: pointer;
}

.video-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  transition: transform 360ms ease;
}

.video-card:hover img {
  transform: scale(1.04);
}

.play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: rgba(8, 25, 45, 0.35);
  backdrop-filter: blur(8px);
}

.play-button::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 23px;
  border-left: 20px solid #fff;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}

.about-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: #303848;
  font-size: 1.04rem;
}

.benefits-card,
.property-card,
.nearby-card,
.amenity-card {
  border: 1px solid rgba(201, 149, 69, 0.18);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 16px 48px rgba(18, 32, 56, 0.08);
}

.benefits-card {
  padding: 28px;
  border-radius: 12px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  padding: 13px 0;
  color: #303848;
}

.benefit-item + .benefit-item {
  border-top: 1px solid rgba(18, 32, 56, 0.08);
}

.small-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(201, 149, 69, 0.72);
  border-radius: 7px;
}

.small-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

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

.amenity-card {
  min-height: 184px;
  padding: 28px;
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.amenity-card:hover,
.nearby-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 149, 69, 0.42);
  box-shadow: 0 24px 60px rgba(18, 32, 56, 0.12);
}

.amenity-card h3,
.property-card h3,
.floor-placeholder h3,
.nearby-card h3 {
  margin: 18px 0 7px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.amenity-card p,
.floor-placeholder p,
.nearby-card p {
  margin: 0;
  color: var(--muted);
}

.split-section,
.gallery-section {
  background: #fff;
}

.floor-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.floor-placeholder {
  min-height: 430px;
  display: grid;
  place-content: center;
  padding: 34px;
  border: 1px dashed rgba(201, 149, 69, 0.68);
  border-radius: 12px;
  text-align: center;
  background:
    linear-gradient(rgba(7, 26, 48, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 48, 0.04) 1px, transparent 1px),
    #fffaf3;
  background-size: 34px 34px;
}

.placeholder-mark {
  justify-self: center;
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  color: var(--gold);
  border: 1px solid rgba(201, 149, 69, 0.7);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
}

.property-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3.6vw, 48px);
  border-radius: 12px;
}

.property-card h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

dl {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(18, 32, 56, 0.09);
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 750;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--navy);
  box-shadow: 0 18px 46px rgba(18, 32, 56, 0.12);
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms ease, opacity 380ms ease;
}

.gallery-item:hover img {
  transform: scale(1.055);
  opacity: 0.9;
}

.gallery-item span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(6, 20, 38, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 750;
}

.location-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 243, 0.94)),
    var(--paper);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.map-card {
  padding: clamp(28px, 4vw, 54px);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

address {
  margin: 18px 0 24px;
  color: #303848;
  font-style: normal;
}

.map-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(7, 26, 48, 0.92), rgba(15, 46, 78, 0.82)),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255, 255, 255, 0.06) 20px 22px);
}

.nearby-grid {
  display: grid;
  gap: 18px;
}

.nearby-card {
  padding: 24px;
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nearby-card h3 {
  margin-top: 12px;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(72px, 7.5vw, 128px) clamp(20px, 8vw, 150px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 26, 48, 0.98), rgba(12, 42, 73, 0.95)),
    var(--navy);
}

.lead-copy h2 {
  color: #fff;
}

.lead-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

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

.enquiry-form span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
}

.full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  outline: 0;
}

input {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  padding: 13px 14px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(240, 189, 104, 0.16);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--gold-2);
}

.site-footer {
  padding: 56px clamp(20px, 8vw, 150px) 86px;
  color: rgba(255, 255, 255, 0.74);
  background: #051222;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.6fr 1.1fr 0.8fr;
  gap: 30px;
}

.footer-logo {
  width: 190px;
  margin-bottom: 12px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  display: block;
  margin: 6px 0;
}

.site-footer a:hover {
  color: var(--gold-2);
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 22;
  display: grid;
  place-content: center;
  width: 92px;
  height: 92px;
  color: #fff;
  background: #16c65f;
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(11, 158, 73, 0.34);
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-float img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.mobile-conversion {
  display: none;
}

.video-dialog {
  width: min(960px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.video-dialog::backdrop {
  background: rgba(3, 12, 23, 0.78);
}

.video-dialog button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  font-size: 1.5rem;
  cursor: pointer;
}

.video-dialog video {
  width: 100%;
}

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

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

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

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

  .hero-video {
    display: none;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .nav-shell {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    display: grid;
    justify-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 14px;
    background: rgba(6, 19, 36, 0.96);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav-shell a {
    padding: 13px 12px;
    border-radius: 8px;
  }

  .nav-shell a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-call {
    justify-content: center;
    margin-top: 8px;
  }

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

  .highlight-item {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .highlight-item:nth-last-child(-n + 1) {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .about-grid,
  .location-grid,
  .lead-section {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  body {
    padding-bottom: 66px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: 148px;
  }

  .hero {
    min-height: 100vh;
    align-items: flex-end;
    padding: 128px 20px 118px;
  }

  .hero-content {
    width: calc(100vw - 40px);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 15, 30, 0.92) 0%, rgba(6, 22, 41, 0.68) 58%, rgba(6, 22, 41, 0.2) 100%),
      linear-gradient(0deg, rgba(5, 14, 26, 0.88) 0%, rgba(5, 14, 26, 0.08) 54%);
  }

  h1 {
    font-size: clamp(2.65rem, 11.2vw, 3.25rem);
  }

  h1 .homes-word {
    display: block;
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .hero-cards,
  .hero-actions {
    display: grid;
  }

  .price-card,
  .ready-card,
  .btn {
    width: 100%;
  }

  .offer-badge {
    display: none;
  }

  .highlights {
    margin-top: -36px;
    padding: 0 16px;
  }

  .highlight-panel {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }

  .highlight-item {
    border-bottom: 1px solid var(--line);
  }

  .highlight-item:nth-last-child(-n + 1) {
    grid-column: auto;
  }

  .section,
  .lead-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .amenity-grid,
  .floor-grid,
  .gallery-grid,
  .enquiry-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }

  .gallery-item:first-child {
    grid-row: auto;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-conversion {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 26;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #061526;
    box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.22);
  }

  .mobile-conversion a {
    min-height: 62px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-conversion a:last-child {
    color: #091a2e;
    background: var(--gold-2);
    border-right: 0;
  }
}
