:root {
  --green-900: #103f35;
  --green-800: #185143;
  --green-700: #286b55;
  --leaf: #7f9d58;
  --gold: #caa75e;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --ink: #17211d;
  --muted: #65716b;
  --line: rgba(16, 63, 53, 0.16);
  --shadow: 0 24px 70px rgba(16, 63, 53, 0.16);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 170px;
  max-height: 56px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: var(--green-900);
  font-size: 0.93rem;
  font-weight: 650;
}

.main-nav a {
  position: relative;
  padding-block: 8px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.header-cta,
.btn,
form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 3px;
  font-weight: 750;
  cursor: pointer;
}

.header-cta,
.btn.primary,
form button {
  color: white;
  background: var(--green-800);
}

.btn.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.1);
}

.btn.dark {
  color: var(--green-900);
  border-color: var(--green-900);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: 126px clamp(18px, 4vw, 58px) 110px;
  overflow: hidden;
  color: white;
}

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

.hero-media {
  background:
    linear-gradient(90deg, rgba(14, 45, 37, 0.72), rgba(14, 45, 37, 0.18)),
    url("assets/wv elevation.jpeg") center/cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at 78% 40%, rgba(202, 167, 94, 0.3), transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(3.5rem, 10vw, 8.2rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 16px;
  color: var(--green-900);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

h3 {
  color: var(--green-900);
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.tagline {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.hero-alert {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  max-width: min(620px, 100%);
  opacity: 0;
  transform: translateY(18px);
  animation: hero-alert-enter 0.95s ease-out 0.2s forwards;
}

.hero-alert-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.hero-alert-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  color: inherit;
}

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

@keyframes hero-alert-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-alert-pill--label {
  background: linear-gradient(90deg, #d28d27 0%, #f1b34b 100%);
  color: #1f1a0f;
}

.hero-alert-pill--message {
  background: rgba(10, 10, 10, 0.88);
  color: #fff;
}

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

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 16, 12, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-card {
  width: min(540px, 100%);
  background: rgba(255, 253, 248, 0.98);
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(16, 63, 53, 0.22);
  padding: 32px 32px 28px;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 33, 25, 0.08);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.popup-eyebrow {
  color: var(--green-800);
  margin-bottom: 10px;
}

.popup-card h2 {
  margin-bottom: 10px;
  color: var(--green-900);
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  line-height: 1.05;
}

.popup-text {
  margin: 0 0 22px;
  color: rgba(23, 33, 25, 0.82);
  font-size: 1rem;
  line-height: 1.75;
}

.popup-form {
  display: grid;
  gap: 12px;
}

.popup-form input,
.popup-form button {
  width: 100%;
}

.popup-form input {
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(16, 63, 53, 0.18);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.popup-form button {
  min-height: 52px;
  border-radius: 8px;
  background: var(--green-800);
  color: white;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.popup-overlay.active .popup-card {
  transform: translateY(0);
}

.popup-card {
  transform: translateY(18px);
  transition: transform 0.28s ease;
}

.lead-card {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: 130px;
  z-index: 2;
  width: min(350px, calc(100% - 36px));
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.95);
  box-shadow: var(--shadow);
}

.lead-card p {
  margin-bottom: 16px;
  color: var(--green-900);
  font-family: Georgia, serif;
  font-size: 1.55rem;
}

form {
  display: grid;
  gap: 12px;
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 2px;
  font: inherit;
}

.hero-stats {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(16, 63, 53, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats div {
  min-height: 86px;
  padding: 18px clamp(18px, 4vw, 54px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.9rem;
  line-height: 1;
}

.hero-stats span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 94px clamp(18px, 5vw, 84px);
}

.intro-band {
  background: var(--cream);
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.feature-grid article {
  min-height: 240px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.feature-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: Georgia, serif;
}

.feature-grid p,
.plan-info p,
.story p,
.location-copy p,
.contact-copy p,
.split-copy p,
.spacez p,
.engineering-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.split-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto 24px;
}

.split-copy > div {
  padding: 28px;
  background: rgba(255, 253, 248, 0.68);
  border: 1px solid var(--line);
}

.walkthrough {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: stretch;
  background: var(--green-900);
}

.video-panel {
  position: relative;
  min-height: 520px;
}

.video-panel img {
  height: 100%;
  object-fit: cover;
}

.video-panel button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  color: white;
  background: rgba(202, 167, 94, 0.94);
  border: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.video-panel span {
  margin-left: 5px;
  font-size: 2rem;
}

.walkthrough-copy {
  display: grid;
  align-content: center;
  padding: clamp(36px, 6vw, 78px);
}

.walkthrough-copy h2 {
  color: white;
}

.walkthrough-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.text-link {
  width: max-content;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.plans {
  background: linear-gradient(180deg, var(--paper), #eef4ee);
}

.experience {
  background: linear-gradient(180deg, var(--paper), #eef4ee);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
  align-items: stretch;
  max-width: 1220px;
  margin: 0 auto;
}

.highlight-panel {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 46px);
  background: var(--green-900);
  box-shadow: var(--shadow);
}

.highlight-panel h3 {
  color: white;
  font-family: Georgia, serif;
  font-size: 2rem;
}

.highlight-panel ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.82);
  list-style: none;
}

.highlight-panel li {
  padding-left: 22px;
  position: relative;
}

.highlight-panel li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.floor-preview {
  margin: 0;
  padding: 18px;
  overflow: auto;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.floor-preview img {
  height: 620px;
  object-fit: contain;
  object-position: center top;
  background: white;
}

.floor-preview figcaption {
  margin-top: 14px;
  color: var(--green-900);
  font-weight: 800;
  text-align: center;
}

.plan-layout {
  max-width: 1120px;
  margin: 0 auto;
}

.plan-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.plan-tabs button {
  min-width: 128px;
  min-height: 44px;
  color: var(--green-900);
  background: white;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-weight: 800;
  cursor: pointer;
}

.plan-tabs button.active {
  color: white;
  background: var(--green-800);
}

.plan-card {
  display: none;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.plan-card.active {
  display: grid;
}

.plan-art {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, minmax(88px, 1fr));
  gap: 8px;
  min-height: 340px;
  padding: 12px;
  background: #dfe9df;
  border: 1px solid var(--line);
}

.room {
  display: grid;
  place-items: center;
  color: var(--green-900);
  background: #fffaf0;
  border: 1px solid rgba(16, 63, 53, 0.2);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.living {
  grid-column: span 2;
  grid-row: span 2;
}

.kitchen {
  grid-column: span 2;
}

.master,
.guest {
  grid-column: span 2;
}

.balcony {
  grid-column: span 4;
  color: white;
  background: var(--leaf);
}

.study {
  background: #f4e4bd;
}

.plan-info {
  padding: 8px clamp(0px, 3vw, 36px);
}

.plan-info h3 {
  font-family: Georgia, serif;
  font-size: 2rem;
}

.story {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 88px clamp(18px, 5vw, 84px);
  background: var(--green-900);
}

.story h2,
.story .eyebrow {
  color: white;
}

.story p {
  color: rgba(255, 255, 255, 0.72);
}

.story img {
  height: min(62vw, 580px);
  object-fit: cover;
}

.engineering {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 88px clamp(18px, 5vw, 84px);
  background: var(--green-900);
}

.engineering h2,
.engineering .eyebrow {
  color: white;
}

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

.callout-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.callout-grid span {
  min-height: 64px;
  padding: 18px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--gold);
  font-weight: 800;
}

.site-image {
  margin: 0;
}

.site-image img {
  height: min(58vw, 560px);
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
}

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

.project-gallery img:nth-child(3),
.project-gallery img:nth-child(4) {
  object-fit: contain;
  object-position: top center;
  background: white;
  border: 1px solid var(--line);
}

.amenities {
  padding: 86px clamp(18px, 5vw, 84px);
  background: var(--cream);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
}

.amenity-grid span {
  display: flex;
  align-items: center;
  min-height: 66px;
  padding: 0 18px;
  color: var(--green-900);
  background: white;
  border-left: 3px solid var(--gold);
  font-weight: 800;
}

.location {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: stretch;
}

.location .eyebrow,
.contact .eyebrow {
  color: var(--gold);
}

.nearby-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.nearby-list p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.nearby-list strong {
  color: var(--green-900);
}

.nearby-list span {
  color: var(--gold);
  font-weight: 800;
}

.map-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    linear-gradient(45deg, rgba(16, 63, 53, 0.08) 25%, transparent 25% 50%, rgba(16, 63, 53, 0.08) 50% 75%, transparent 75%),
    #e9efe9;
  background-size: 80px 80px;
  border: 1px solid var(--line);
}

.map-card::before,
.map-card::after {
  position: absolute;
  content: "";
  background: rgba(202, 167, 94, 0.55);
}

.map-card::before {
  top: 44%;
  left: -10%;
  width: 120%;
  height: 24px;
  transform: rotate(-8deg);
}

.map-card::after {
  top: -10%;
  left: 54%;
  width: 22px;
  height: 120%;
  transform: rotate(18deg);
}

.map-pin {
  position: absolute;
  top: 44%;
  left: 48%;
  z-index: 1;
  padding: 14px 18px;
  color: white;
  background: var(--green-800);
  border: 2px solid var(--gold);
  border-radius: 3px;
  font-weight: 800;
  transform: translate(-50%, -50%);
}

.map-card p {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  z-index: 1;
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  line-height: 1.06;
}

.map-link {
  margin-top: 24px;
}

.spacez {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  padding: 88px clamp(18px, 5vw, 84px);
  background: var(--cream);
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 5vw, 70px);
  padding: 88px clamp(18px, 5vw, 84px);
  background: var(--green-900);
}

.contact h2 {
  color: white;
}

.contact-copy p,
.contact-copy li {
  color: rgba(255, 255, 255, 0.74);
}

.contact-copy ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.contact-form {
  padding: 26px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 66px;
  height: 54px;
  color: white;
  background: #1fae5b;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  font-size: 0.85rem;
  font-weight: 900;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 84px);
  color: rgba(255, 255, 255, 0.7);
  background: #092820;
  font-size: 0.84rem;
}

footer p {
  margin: 0;
}

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

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
    width: 44px;
    height: 44px;
    color: var(--green-900);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 2px;
    font-size: 1.2rem;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.open {
    position: absolute;
    top: 78px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 4px;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .lead-card {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: end;
    width: min(430px, 100%);
    margin-top: 34px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 42px;
  }

  .hero-stats {
    position: relative;
    inset: auto;
    margin-top: 34px;
  }

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

  .walkthrough,
  .story,
  .location,
  .contact,
  .experience-grid,
  .engineering,
  .spacez {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 118px;
  }

  .menu-toggle {
    width: auto;
    min-width: 58px;
    height: 40px;
    padding: 0 10px;
    font-size: 0.82rem;
    font-weight: 800;
  }

  .main-nav.open {
    top: 68px;
    right: 12px;
    left: 12px;
  }

  .hero {
    padding: 96px 14px 34px;
  }

  .hero-media {
    background-position: 57% center;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3.1rem, 16vw, 4.4rem);
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.75rem);
  }

  .eyebrow {
    font-size: 0.7rem;
    line-height: 1.45;
  }

  .tagline {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .lead-card {
    padding: 18px;
  }

  .lead-card p {
    font-size: 1.35rem;
  }

  .hero-actions,
  .plan-tabs {
    display: grid;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-right: -14px;
    margin-left: -14px;
  }

  .hero-stats div {
    min-height: 76px;
    padding: 14px 18px;
  }

  .hero-stats strong {
    font-size: 1.45rem;
  }

  .hero-stats span {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .section,
  .story,
  .amenities,
  .location,
  .contact,
  .engineering,
  .spacez {
    padding-block: 64px;
    padding-inline: 14px;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .feature-grid article,
  .split-copy > div,
  .highlight-panel,
  .contact-form {
    padding: 22px;
  }

  .feature-grid,
  .amenity-grid,
  .plan-card,
  .gallery-grid,
  .split-copy,
  .callout-grid {
    grid-template-columns: 1fr;
  }

  .floor-preview img {
    width: auto;
    min-width: 760px;
    height: 520px;
    max-width: none;
  }

  .floor-preview figcaption {
    position: sticky;
    left: 0;
    width: fit-content;
    padding-right: 16px;
    text-align: left;
  }

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

  .gallery-grid img:first-child {
    grid-row: span 1;
  }

  .plan-card {
    padding: 18px;
  }

  .plan-art {
    grid-template-rows: repeat(4, 76px);
    min-height: 0;
  }

  footer {
    display: grid;
  }
}

@media (max-width: 420px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .nearby-list p {
    display: grid;
    gap: 6px;
  }

  .map-card {
    min-height: 330px;
  }

  .map-card p {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .whatsapp {
    right: 14px;
    bottom: 14px;
  }
}
