:root {
  --bg: #ffffff;
  --bg-deep: #f8f6f2;
  --bg-ink: #fdfcf9;
  --text: #1f2933;
  --muted: #6b7280;
  --warm-grey: #4b5563;
  --champagne: #f3ead8;
  --gold: #d4af37;
  --gold-bright: #b88918;
  --gold-soft: rgba(212, 175, 55, 0.12);
  --cta: #d4af37;
  --cta-bright: #f7e7a1;
  --glass: rgba(255, 255, 255, 0.72);
  --line: rgba(31, 41, 51, 0.09);
  --gold-line: rgba(212, 175, 55, 0.34);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --soft-shadow: 0 16px 44px rgba(99, 71, 16, 0.1);
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f7e7a1 58%, #ead08a 100%);
  --container: min(1200px, calc(100vw - 40px));
  --scrollY: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at 70% 0%, rgba(212, 175, 55, 0.16), transparent 30%),
    radial-gradient(circle at 8% 28%, rgba(243, 234, 216, 0.82), transparent 28%),
    linear-gradient(180deg, var(--bg), var(--bg-deep) 48%, var(--bg-ink));
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

html,
body,
a,
button,
.magnetic {
  cursor: none;
}

.custom-cursor {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.custom-cursor.is-visible {
  opacity: 1;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 999px;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform, width, height, opacity;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: #d4af37;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.28);
}

.custom-cursor.is-hovering .cursor-dot {
  width: 12px;
  height: 12px;
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.5);
}

@media (hover: none), (pointer: coarse) {
  html,
  body,
  a,
  button,
  .magnetic {
    cursor: auto;
  }

  .custom-cursor {
    display: none;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.45;
  z-index: -1;
}

a,
button,
input {
  font: inherit;
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  position: relative;
  padding: 80px 0;
  scroll-margin-top: 110px;
}

.section:empty {
  display: none;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.price-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0 0;
  padding: 10px 18px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  margin-bottom: 14px;
  font-size: 5.8rem;
}

h2 {
  margin-bottom: 14px;
  font-size: 3.7rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.65rem;
}

p,
li,
span {
  color: var(--muted);
  line-height: 1.75;
}

strong {
  color: var(--text);
}

.topbar {
  position: fixed;
  top: 58px;
  left: 50%;
  z-index: 40;
  width: var(--container);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.offer-bar {
  position: fixed;
  top: 10px;
  left: 50%;
  z-index: 41;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(720px, calc(100vw - 32px));
  min-height: 38px;
  padding: 8px 18px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.offer-bar span,
.offer-bar strong {
  color: currentColor;
  line-height: 1.2;
}

.offer-bar span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.offer-bar strong {
  font-size: 0.92rem;
  font-weight: 900;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 0 0 auto;
  overflow: hidden;
}

.logo {
  height: 75px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.brand-logo {
  height: 96px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 12px;
}

.topbar.scrolled .brand-logo {
  height: 70px;
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-copy small,
.topnav a {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.topnav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.15vw, 18px);
  margin-left: auto;
  min-width: 0;
}

.topnav a,
.footer-links a {
  position: relative;
  transition: color 0.4s ease-in-out;
}

.topnav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold-gradient);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.12);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-in-out;
}

.topnav a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.topnav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.topbar-actions {
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  overflow: hidden;
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow);
  transition: all 0.4s ease-in-out;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.32) 46%, transparent 62%);
  transform: translateX(-120%) skewX(-18deg);
  transition: transform 0.75s ease;
}

.button span {
  position: relative;
  z-index: 2;
  color: currentColor;
  line-height: 1.2;
}

.button-primary {
  color: #3d2b09;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.24), rgba(247, 231, 161, 0.42));
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.16);
  animation: ctaPulse 4s ease-in-out infinite;
}

.button-ghost {
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--gold-line);
  backdrop-filter: blur(20px);
}

.button:hover {
  transform: translateY(-2px);
  color: #3d2b09;
  border-color: rgba(212, 175, 55, 0.52);
  background: var(--gold-gradient);
  box-shadow: 0 12px 30px rgba(99, 71, 16, 0.14);
}

.button:active {
  transform: translateY(-1px) scale(0.99);
  color: #3d2b09;
  border-color: rgba(212, 175, 55, 0.52);
  background: var(--gold-gradient);
  box-shadow: 0 10px 24px rgba(99, 71, 16, 0.12);
}

.button:hover::before {
  transform: translateX(120%) skewX(-18deg);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  color: #3d2b09;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(247, 231, 161, 0.44));
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.3) 46%, transparent 62%);
  transform: translateX(-120%) skewX(-18deg);
  transition: transform 0.75s ease;
}

.floating-whatsapp span {
  position: relative;
  z-index: 2;
  color: currentColor;
  font-weight: 800;
  line-height: 1;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.52);
  background: var(--gold-gradient);
  box-shadow: 0 12px 30px rgba(99, 71, 16, 0.14);
}

.floating-whatsapp:active {
  transform: translateY(-1px) scale(0.99);
  background: var(--gold-gradient);
}

.floating-whatsapp:hover::before {
  transform: translateX(120%) skewX(-18deg);
}

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

.hero-bg {
  position: absolute;
  top: -80px;
  right: 0;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: calc(100% + 160px);
  object-fit: cover;
  object-position: center;
  transform: translateY(var(--scrollY)) scale(1.1);
  filter: brightness(1.08) saturate(0.96) contrast(0.96);
  animation: floatImage 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 62% 35%, rgba(255, 255, 255, 0.08), rgba(248, 246, 242, 0.42)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(248, 246, 242, 0.86)),
    linear-gradient(90deg, rgba(253, 252, 249, 0.9), rgba(255, 255, 255, 0.28), rgba(253, 252, 249, 0.62));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 100svh;
  padding-top: 210px;
  padding-bottom: 72px;
}

.hero-content h1 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 5.4vw, 5.35rem);
  overflow-wrap: normal;
  text-wrap: balance;
}

.hero-content h1 span {
  display: inline-block;
}

.hero-line,
.hero-price {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 700;
}

.hero-price {
  margin-bottom: 28px;
  color: var(--gold-bright);
}

.countdown-card {
  width: min(520px, 100%);
  margin: 14px 0 28px;
  padding: 18px;
  border: 1px solid var(--gold-line);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.countdown-card > span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 10px;
  text-align: center;
}

.countdown-grid strong {
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1;
}

.countdown-grid small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.countdown-expired {
  margin: 0;
  color: var(--gold-bright);
  font-weight: 900;
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.icon-item {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  text-align: center;
  transition: all 0.4s ease-in-out;
}

.icon-item:hover,
.amenity-item.is-active,
.icon-item:active {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 14px rgba(99, 71, 16, 0.1));
}

.icon-svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--warm-grey);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease, filter 0.3s ease;
}

.icon-item:hover .icon-svg,
.amenity-item.is-active .icon-svg,
.icon-item:active .icon-svg {
  stroke: var(--gold);
  filter: drop-shadow(0 6px 10px rgba(212, 175, 55, 0.16));
}

.amenity-item.is-active strong,
.amenity-item:active strong {
  color: var(--gold-bright);
}

.icon-item strong {
  font-size: 1rem;
}

.icon-item span {
  max-width: 220px;
  font-size: 0.92rem;
}

.amenity-shell,
.split-layout,
.site-visit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
}

.amenity-shell {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

.amenities-icons {
  align-self: center;
}

.nearby-panel,
.about-image,
.property-card,
.pricing-card,
.plan-card,
.testimonial-card,
.gallery-card,
.lead-form,
.faq-card {
  background: var(--glass);
  border: 1px solid var(--gold-line);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.about-image,
.property-card,
.pricing-card,
.plan-card,
.testimonial-card,
.gallery-card,
.lead-form,
.faq-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.about-image::before,
.property-card::before,
.pricing-card::before,
.plan-card::before,
.testimonial-card::before,
.gallery-card::before,
.lead-form::before,
.faq-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(247, 231, 161, 0.18) 45%, transparent 62%);
  transform: translateX(-125%) skewX(-16deg);
  transition: transform 0.8s ease;
}

.about-image:hover::before,
.property-card:hover::before,
.pricing-card:hover::before,
.plan-card:hover::before,
.testimonial-card:hover::before,
.gallery-card:hover::before,
.lead-form:hover::before,
.faq-card:hover::before {
  transform: translateX(125%) skewX(-16deg);
}

.about-image:hover,
.property-card:hover,
.pricing-card:hover,
.plan-card:hover,
.testimonial-card:hover,
.gallery-card:hover,
.lead-form:hover,
.faq-card:hover {
  border-color: rgba(247, 231, 161, 0.42);
  box-shadow: var(--soft-shadow);
  transform: translateY(-2px);
}

.property-card:active,
.pricing-card:active,
.plan-card:active,
.gallery-card:active,
.faq-card:active {
  border-color: rgba(247, 231, 161, 0.42);
  box-shadow: var(--soft-shadow);
  transform: translateY(-1px) scale(0.995);
}

.about-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}

.about-metrics span {
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--gold-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  overflow-wrap: anywhere;
}

.about-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-bright);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.15;
}

.about-image {
  height: 520px;
}

.about-image img,
.property-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.8s ease;
}

.about-image:hover img,
.property-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.04);
}

.nearby-panel {
  min-height: 250px;
  padding: 26px;
}

.typed-text {
  min-height: 150px;
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.85;
  text-align: left;
  white-space: pre-line;
}

@media (min-width: 1025px) {
  .hero-content {
    min-height: 100svh;
    padding-top: 220px;
    padding-bottom: 78px;
  }

  .hero-content h1 {
    max-width: 760px;
    font-size: clamp(4.1rem, 5.9vw, 5.55rem);
    line-height: 1.04;
  }

  .hero-line,
  .hero-price {
    font-size: 1.18rem;
  }

  .countdown-card {
    width: min(520px, 46vw);
  }

  .topbar .button {
    min-height: 48px;
    padding: 11px 18px;
  }

  .topbar .button span {
    max-width: 104px;
    line-height: 1.15;
  }

  .nearby-panel {
    min-height: 224px;
  }
}

.location-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.location-points span {
  color: var(--text);
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.property-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 330px;
}

.property-card div {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  padding: 28px;
}

.property-card span {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.property-card strong {
  color: var(--gold-bright);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  padding: 28px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pricing-card-featured {
  transform: scale(1.04);
  border-color: rgba(245, 208, 111, 0.42);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(243, 234, 216, 0.72));
  box-shadow: 0 16px 46px rgba(212, 175, 55, 0.16);
}

.pricing-card strong {
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.85rem;
  line-height: 1.05;
}

.pricing-card span,
.plan-card span {
  color: var(--gold-bright);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.floor-plan-viewer {
  display: grid;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}

.floor-plan-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 4px 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.floor-plan-tabs::-webkit-scrollbar {
  display: none;
}

.floor-tab {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--gold-bright);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: all 0.35s ease-in-out;
}

.floor-tab:hover,
.floor-tab.is-active,
.floor-tab:focus-visible {
  border-color: rgba(212, 175, 55, 0.78);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(247, 231, 161, 0.46));
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.13);
  color: var(--text);
  transform: translateY(-2px);
}

.floor-layout-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 5px;
  width: max-content;
  max-width: 100%;
  margin: -8px auto 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 999px;
  background: rgba(248, 246, 242, 0.86);
  overflow-x: auto;
  scrollbar-width: none;
}

.floor-layout-tabs::-webkit-scrollbar {
  display: none;
}

.floor-layout-tab {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--gold-bright);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: all 0.35s ease-in-out;
}

.floor-layout-tab:hover,
.floor-layout-tab.is-active,
.floor-layout-tab:focus-visible {
  border-color: rgba(212, 175, 55, 0.76);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(247, 231, 161, 0.5));
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.13);
  color: var(--text);
  transform: translateY(-2px);
}

.floor-plan-image {
  position: relative;
  display: block;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.floor-plan-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(247, 231, 161, 0.2) 45%, transparent 62%);
  transform: translateX(-125%) skewX(-16deg);
  transition: transform 0.8s ease;
}

.floor-plan-image:hover,
.floor-plan-image:focus-visible {
  border-color: rgba(212, 175, 55, 0.56);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.floor-plan-image:hover::after,
.floor-plan-image:focus-visible::after {
  transform: translateX(125%) skewX(-16deg);
}

.floor-plan-stage {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(420px, 56vw, 680px);
  overflow: auto;
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08), transparent 38%),
    #ffffff;
  overscroll-behavior: contain;
}

.floor-plan-stage img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 2000px;
  max-height: 78vh;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.45s ease;
  transform-origin: center;
  will-change: transform;
}

.floor-plan-image:hover .floor-plan-stage img,
.floor-plan-image:focus-visible .floor-plan-stage img {
  transform: scale(1.025);
}

.floor-plan-image.is-switching .floor-plan-stage img {
  opacity: 0;
  transform: scale(0.985);
}

.floor-plan-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  text-align: left;
  backdrop-filter: blur(10px);
}

.floor-plan-caption strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
}

.floor-plan-caption small {
  color: var(--muted);
  font-weight: 700;
}

.plan-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(17, 17, 17, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.plan-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.plan-lightbox-stage {
  display: grid;
  place-items: center;
  width: min(96vw, 1180px);
  height: 90vh;
  overflow: auto;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.plan-lightbox-stage img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 2000px;
  max-height: none;
  background: #ffffff;
  transform-origin: center;
}

.plan-lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(247, 231, 161, 0.52);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font: inherit;
  font-weight: 900;
  transition: all 0.3s ease;
}

.plan-lightbox-close:hover,
.plan-lightbox-close:focus-visible {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(247, 231, 161, 0.62));
  transform: translateY(-2px);
}

.specifications {
  background:
    radial-gradient(circle at 18% 12%, rgba(212, 175, 55, 0.11), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(248, 246, 242, 0.78));
}

.spec-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  overflow-x: auto;
  margin: -8px auto 30px;
  padding: 6px 4px 12px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.spec-tabs::-webkit-scrollbar {
  display: none;
}

.spec-tab {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--gold-bright);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: all 0.35s ease-in-out;
}

.spec-tab:hover,
.spec-tab.is-active,
.spec-tab:focus-visible {
  border-color: rgba(212, 175, 55, 0.76);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(247, 231, 161, 0.5));
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.13);
  color: var(--text);
  transform: translateY(-2px);
}

.spec-panel {
  display: none;
}

.spec-panel.is-active {
  display: block;
  animation: specFade 0.35s ease both;
}

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

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

.spec-card,
.feature-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  transition: all 0.4s ease-in-out;
}

.feature-card {
  min-height: 210px;
}

.spec-card::before,
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(247, 231, 161, 0.16) 45%, transparent 62%);
  transform: translateX(-125%) skewX(-16deg);
  transition: transform 0.8s ease;
}

.spec-card:hover,
.feature-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.spec-card:hover::before,
.feature-card:hover::before {
  transform: translateX(125%) skewX(-16deg);
}

.spec-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(247, 231, 161, 0.44));
  color: var(--gold);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.spec-icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 0.35s ease, stroke 0.35s ease;
}

.spec-card:hover .spec-icon,
.feature-card:hover .spec-icon {
  border-color: rgba(212, 175, 55, 0.68);
  box-shadow: 0 12px 26px rgba(212, 175, 55, 0.16);
  color: var(--gold-bright);
  transform: scale(1.06);
}

.spec-card:hover .spec-icon svg,
.feature-card:hover .spec-icon svg {
  transform: scale(1.08);
}

.spec-card h3,
.feature-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.2rem;
}

.spec-card ul {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  color: var(--warm-grey);
  line-height: 1.55;
}

.spec-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.6em;
  border-radius: 999px;
  background: var(--gold);
}

.feature-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--warm-grey);
  line-height: 1.65;
}

.unit-size-module {
  display: grid;
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.unit-size-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.unit-size-head .eyebrow {
  margin-bottom: 8px;
}

.unit-size-head h3 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.unit-type-tabs {
  display: flex;
  gap: 10px;
  padding: 5px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 999px;
  background: rgba(248, 246, 242, 0.86);
}

.unit-type-tab {
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--gold-bright);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  transition: all 0.35s ease;
}

.unit-type-tab:hover,
.unit-type-tab.is-active,
.unit-type-tab:focus-visible {
  border-color: rgba(212, 175, 55, 0.52);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(247, 231, 161, 0.55));
  color: var(--text);
  box-shadow: 0 10px 22px rgba(212, 175, 55, 0.12);
  transform: translateY(-1px);
}

.unit-size-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  animation: specFade 0.3s ease both;
}

.unit-size-table caption {
  padding: 0 0 14px;
  color: var(--gold-bright);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.unit-size-table th,
.unit-size-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(31, 41, 51, 0.08);
}

.unit-size-table thead th {
  color: var(--text);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(247, 231, 161, 0.46));
  font-weight: 900;
}

.unit-size-table tbody th {
  color: var(--text);
  font-weight: 900;
}

.unit-size-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.06);
}

.unit-size-table tbody tr:last-child th,
.unit-size-table tbody tr:last-child td {
  border-bottom: 0;
}

.unit-size-cards {
  display: none;
  animation: specFade 0.3s ease both;
}

.unit-size-card {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
}

.unit-size-card:hover {
  border-color: rgba(212, 175, 55, 0.48);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}

.unit-size-card span {
  color: var(--text);
  font-weight: 900;
}

.unit-size-card strong {
  color: var(--gold-bright);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
}

.spec-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

@keyframes specFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.checkmark {
  color: var(--gold-bright);
  font-size: 1.6rem;
  line-height: 1;
}

.review-carousel {
  overflow-x: auto;
  overflow-y: visible;
  padding: 8px 0 26px;
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.review-carousel::-webkit-scrollbar {
  display: none;
}

.review-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: reviewScroll 46s linear infinite;
  will-change: transform;
}

.review-carousel:hover .review-track {
  animation-play-state: paused;
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 clamp(292px, 28vw, 350px);
  min-height: 292px;
  padding: 22px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(247, 231, 161, 0.15) 45%, transparent 62%);
  transform: translateX(-125%) skewX(-16deg);
  transition: transform 0.8s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.11);
}

.review-card:hover::before {
  transform: translateX(125%) skewX(-16deg);
}

.review-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-head img {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.review-head div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.review-head strong {
  color: var(--text);
  font-size: 1rem;
}

.review-head span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.review-stars {
  position: relative;
  z-index: 2;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.review-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  color: var(--warm-grey);
  line-height: 1.75;
}

@keyframes reviewScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

.gallery-card {
  min-height: 270px;
  overflow: hidden;
}

.gallery-card-large {
  grid-column: span 2;
  min-height: 350px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.02) contrast(1.02);
}

.content-bullets {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding-left: 20px;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

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

.lead-form span {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

.lead-form input {
  min-height: 54px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  padding: 0 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
}

.lead-form input:focus {
  border-color: rgba(212, 175, 55, 0.48);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

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

.faq-card {
  position: relative;
  padding: 24px;
  cursor: pointer;
}

.faq-card strong {
  display: block;
  padding-right: 30px;
}

.faq-card p {
  margin: 12px 0 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.34s ease, opacity 0.34s ease, transform 0.34s ease;
}

.faq-card.open p {
  max-height: 180px;
  opacity: 1;
  transform: translateY(0);
}

.faq-card::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--gold-bright);
  font-size: 1.35rem;
  font-weight: 800;
  transition: transform 0.3s ease;
}

.faq-card.open::after {
  transform: rotate(45deg);
}

.footer {
  position: relative;
  padding: 62px 0 34px;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  background:
    radial-gradient(circle at 16% 0%, rgba(212, 175, 55, 0.14), transparent 30%),
    linear-gradient(180deg, #fdfcf9, #f3ead8);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 30px;
  align-items: end;
}

.footer h2 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 2.6rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  visibility: visible;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.14);
  }
  50% {
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
  }
}

@keyframes floatImage {
  from {
    filter: brightness(1.05) saturate(0.94) contrast(0.96);
  }
  to {
    filter: brightness(1.12) saturate(1) contrast(0.98);
  }
}

@media (max-width: 1024px) {
  .icon-row,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .pricing-card-featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
    text-align: center;
  }

  .container {
    padding: 0 20px;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .topbar {
    top: 58px;
    width: calc(100vw - 16px);
    border-radius: 28px;
  }

  .brand-logo {
    height: 74px;
    max-width: 140px;
  }

  .offer-bar {
    top: 8px;
    width: calc(100vw - 16px);
    min-height: 38px;
    padding: 8px 12px;
    gap: 8px;
  }

  .offer-bar span {
    font-size: 0.58rem;
  }

  .offer-bar strong {
    font-size: 0.78rem;
  }

  .topnav,
  .topbar-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 4px;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
  }

  .topbar.nav-open .topnav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: grid;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
  }

  .hero-content {
    justify-items: center;
    padding-top: 116px;
    padding-bottom: 48px;
    text-align: center;
  }

  .hero-line,
  .hero-price {
    font-size: 1rem;
  }

  .countdown-card {
    margin-top: 12px;
    margin-bottom: 18px;
    padding: 14px;
  }

  .countdown-grid strong {
    font-size: 1.35rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .button {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.86rem;
  }

  .icon-row,
  .split-layout,
  .site-visit-grid,
  .pricing-grid,
  .property-grid,
  .gallery-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-card {
    flex-basis: min(82vw, 330px);
    min-height: auto;
    text-align: left;
  }

  .amenity-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 100%;
  }

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

  .nearby-panel {
    width: 100%;
    min-height: 0;
    padding: 22px;
  }

  .typed-text {
    min-height: 0;
    text-align: left;
  }

  .property-card {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 100%;
    min-height: 420px;
  }

  .property-card img {
    height: 180px;
  }

  .section-heading {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card strong {
    font-size: 1.55rem;
  }

  .floor-plan-tabs {
    justify-content: flex-start;
    margin-inline: -20px;
    padding-inline: 20px;
  }

  .floor-tab {
    min-height: 44px;
    padding-inline: 18px;
  }

  .floor-plan-stage {
    min-height: 0;
    justify-content: start;
    overflow-x: auto;
    padding: 0;
  }

  .floor-plan-stage img {
    width: 100%;
    max-width: 100%;
    max-height: none;
  }

  .floor-plan-caption {
    position: static;
    display: grid;
    padding: 14px;
    border-width: 1px 0 0;
    border-radius: 0;
    background: #ffffff;
  }

  .floor-layout-tabs {
    width: 100%;
  }

  .floor-layout-tab {
    flex: 1;
    min-height: 44px;
    padding-inline: 12px;
  }

  .plan-lightbox-stage {
    width: 100%;
    height: 86vh;
    justify-content: start;
  }

  .plan-lightbox-stage img {
    width: max(100%, 980px);
    max-width: none;
  }

  .spec-tabs {
    justify-content: flex-start;
    margin-inline: -20px;
    padding-inline: 20px;
  }

  .spec-card-grid,
  .amenity-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
    gap: 16px;
  }

  .spec-card,
  .feature-card {
    min-height: auto;
    padding: 18px;
  }

  .spec-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
  }

  .spec-icon svg {
    width: 28px;
    height: 28px;
  }

  .spec-card h3,
  .feature-card h3 {
    font-size: 1rem;
  }

  .unit-size-module {
    padding: 18px;
  }

  .unit-size-head {
    display: grid;
    text-align: center;
  }

  .unit-type-tabs {
    justify-content: center;
    width: 100%;
  }

  .unit-type-tab {
    flex: 1;
    min-height: 44px;
    padding-inline: 12px;
  }

  .unit-size-table {
    display: none;
  }

  .unit-size-cards {
    display: grid;
    gap: 12px;
  }

  .spec-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-card-large {
    grid-column: span 2;
  }

  .map-container {
    height: 400px;
  }

  .about-metrics {
    grid-template-columns: 1fr;
  }

  .about-metrics span {
    min-height: 92px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    text-align: center;
  }

  .footer h2 {
    font-size: 1.75rem;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .brand-copy small {
    font-size: 0.62rem;
  }

  .brand-logo {
    height: 62px;
    max-width: 118px;
  }

  .icon-item span {
    font-size: 0.82rem;
  }

  .nearby-panel,
  .property-card div,
  .pricing-card,
  .plan-card,
  .testimonial-card,
  .lead-form,
  .faq-card {
    padding: 16px;
  }

  .typed-text {
    font-size: 0.96rem;
  }

  .about-image {
    min-height: 320px;
  }

  .plan-lightbox {
    padding: 14px;
  }

  .plan-lightbox-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }
}

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