:root {
  --emerald: #0f4d3a;
  --gold: #c8a24a;
  --ivory: #f8f3e8;
  --mint: #ddefe5;
  --forest: #12372a;
  --leaf: #1f6f55;
  --sage: #7f9f8f;
  --white: #fffdf8;
  --ink: #12372a;
  --muted: rgba(18, 55, 42, 0.68);
  --line: rgba(15, 77, 58, 0.16);
  --gold-line: rgba(200, 162, 74, 0.36);
  --shadow: 0 20px 58px rgba(18, 55, 42, 0.14);
  --soft-shadow: 0 12px 34px rgba(18, 55, 42, 0.11);
  --radius: 8px;
  --max: 1180px;
  --black: var(--forest);
  --charcoal: var(--forest);
  --charcoal-2: var(--emerald);
  --gold-soft: #e2c876;
  --champagne: var(--mint);
  --pearl: var(--ivory);
  --glass: rgba(18, 55, 42, 0.78);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 6%, rgba(221, 239, 229, 0.9), transparent 28rem),
    radial-gradient(circle at 92% 2%, rgba(200, 162, 74, 0.14), transparent 24rem),
    linear-gradient(180deg, var(--ivory) 0%, #f4efe4 45%, var(--mint) 100%);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 220;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--forest);
  content: "";
  opacity: 1;
  pointer-events: none;
  transform-origin: top;
  transition: opacity 760ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-loaded::before {
  opacity: 0;
  transform: scaleY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 230;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(200, 162, 74, 0.18);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), var(--emerald));
  box-shadow: 0 0 18px rgba(200, 162, 74, 0.36);
  transform: scaleX(0);
  transform-origin: left;
}

body.menu-open,
body.lightbox-open,
body.wa-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(200, 162, 74, 0.32);
  color: var(--forest);
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 86px 0;
}

.section.compact {
  padding: 58px 0;
}

.section.dark-band {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.42), rgba(255, 253, 248, 0.18)),
    var(--mint);
  border-block: 1px solid rgba(15, 77, 58, 0.11);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.section-grid.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.92fr);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--emerald);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(200, 162, 74, 0.08));
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 860px;
  font-size: clamp(2.15rem, 4.2vw, 3.85rem);
}

h2 {
  font-size: clamp(1.68rem, 2.85vw, 2.72rem);
}

h3 {
  font-size: clamp(1.18rem, 1.65vw, 1.55rem);
}

h4 {
  font-size: 1.06rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  color: rgba(18, 55, 42, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.78;
}

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

.text-gold {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  color: var(--forest);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translate3d(var(--magnet-x, 0), calc(var(--magnet-y, 0) - 2px), 0);
}

.btn-primary {
  border-color: rgba(200, 162, 74, 0.62);
  background: linear-gradient(135deg, #b89139, var(--gold) 46%, #eed389);
  color: var(--forest);
  box-shadow: 0 14px 28px rgba(200, 162, 74, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(200, 162, 74, 0.32);
}

.btn-secondary {
  border-color: rgba(15, 77, 58, 0.32);
  background: rgba(248, 243, 232, 0.76);
  color: var(--emerald);
}

.btn-secondary:hover {
  border-color: rgba(15, 77, 58, 0.62);
  background: var(--white);
}

.btn-ghost {
  border-color: rgba(15, 77, 58, 0.22);
  background: rgba(255, 253, 248, 0.54);
  color: var(--emerald);
}

.btn-ghost:hover {
  border-color: rgba(15, 77, 58, 0.52);
  background: var(--white);
}

.hero .btn-ghost,
.page-hero .btn-ghost {
  border-color: rgba(255, 253, 248, 0.38);
  background: rgba(255, 253, 248, 0.1);
  color: var(--ivory);
}

.hero .btn-ghost:hover,
.page-hero .btn-ghost:hover {
  border-color: rgba(255, 253, 248, 0.72);
  background: rgba(255, 253, 248, 0.18);
}

.btn.small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.btn.full {
  width: 100%;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(221, 239, 229, 0.16);
  background: rgba(18, 55, 42, 0.82);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  border-color: rgba(200, 162, 74, 0.3);
  background: rgba(18, 55, 42, 0.95);
  box-shadow: 0 12px 34px rgba(18, 55, 42, 0.24);
}

.nav-wrap {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(200, 162, 74, 0.72);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(200, 162, 74, 0.28), rgba(221, 239, 229, 0.1)),
    var(--emerald);
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.34rem;
  font-weight: 700;
  box-shadow: inset 0 0 18px rgba(255, 253, 248, 0.14);
}

.brand-text strong {
  display: block;
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.22rem;
  line-height: 1;
}

.brand-text span {
  display: block;
  margin-top: 3px;
  color: rgba(248, 243, 232, 0.74);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.desktop-nav a,
.mobile-nav a {
  position: relative;
  padding: 10px 12px;
  color: rgba(248, 243, 232, 0.78);
  font-size: 0.94rem;
  font-weight: 800;
  transition: color 180ms ease, transform 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold-soft);
}

.desktop-nav a:hover {
  transform: translateY(-1px);
}

.desktop-nav a.active::after {
  position: absolute;
  right: 12px;
  bottom: 4px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  animation: navGlow 2.8s ease-in-out infinite;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(200, 162, 74, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.08);
  color: var(--ivory);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--gold-soft);
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-panel {
  position: fixed;
  z-index: 70;
  top: 76px;
  right: 0;
  left: 0;
  display: none;
  border-bottom: 1px solid rgba(200, 162, 74, 0.25);
  background: rgba(18, 55, 42, 0.98);
  backdrop-filter: blur(18px);
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-nav-panel.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 18px 0 24px;
}

.mobile-nav a {
  border: 1px solid rgba(248, 243, 232, 0.12);
  border-radius: var(--radius);
  background: rgba(248, 243, 232, 0.07);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 136px 0 78px;
  background:
    linear-gradient(90deg, rgba(18, 55, 42, 0.94), rgba(18, 55, 42, 0.64) 54%, rgba(18, 55, 42, 0.9)),
    linear-gradient(180deg, rgba(18, 55, 42, 0.12), var(--forest) 100%),
    var(--hero-image) center / cover no-repeat;
  background-position: center, center, center calc(50% + var(--hero-scroll, 0px));
}

.hero::before {
  position: absolute;
  inset: -4%;
  background:
    radial-gradient(circle at calc(26% + var(--mx, 0px)) calc(30% + var(--my, 0px)), rgba(200, 162, 74, 0.2), transparent 28rem),
    radial-gradient(circle at 74% 72%, rgba(221, 239, 229, 0.15), transparent 24rem);
  content: "";
  pointer-events: none;
  animation: ambientPulse 8s ease-in-out infinite;
}

.hero::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(221, 239, 229, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221, 239, 229, 0.08) 1px, transparent 1px);
  background-size: 74px 74px;
  content: "";
  opacity: 0.2;
  animation: particleDrift 24s linear infinite;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(30px, 5vw, 54px);
  align-items: end;
}

.hero-copy {
  max-width: 830px;
}

.hero .eyebrow,
.hero h1,
.hero .lead {
  color: var(--ivory);
}

.hero .eyebrow::before {
  background: linear-gradient(90deg, var(--gold), rgba(248, 243, 232, 0.24));
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lead,
.hero-actions,
.highlight-grid {
  animation: heroReveal 760ms ease both;
}

.hero-copy h1 {
  animation-delay: 80ms;
}

.hero-copy .lead {
  max-width: 680px;
  margin-top: 20px;
  color: rgba(248, 243, 232, 0.84);
  animation-delay: 150ms;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  animation-delay: 220ms;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  animation-delay: 300ms;
}

.highlight-pill {
  min-height: 86px;
  border: 1px solid rgba(200, 162, 74, 0.28);
  border-radius: var(--radius);
  background: rgba(248, 243, 232, 0.12);
  padding: 15px;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.08);
}

.highlight-pill strong {
  display: block;
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.12;
}

.highlight-pill span {
  display: block;
  margin-top: 6px;
  color: rgba(248, 243, 232, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-panel {
  position: relative;
  border: 1px solid rgba(200, 162, 74, 0.34);
  border-radius: var(--radius);
  background: rgba(248, 243, 232, 0.96);
  padding: 18px;
  box-shadow: 0 30px 90px rgba(7, 34, 25, 0.34);
  backdrop-filter: blur(18px);
  animation: floatPanel 7s ease-in-out infinite;
  transform-style: preserve-3d;
}

.hero-panel::before {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(200, 162, 74, 0.75), transparent 34%, rgba(15, 77, 58, 0.2));
  content: "";
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 1 / 1.02;
  border-radius: var(--radius);
  object-fit: cover;
}

.hero-panel-info {
  margin-top: 16px;
}

.hero-panel-info strong {
  display: block;
  color: var(--emerald);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel-info h3 {
  margin-top: 7px;
  color: var(--forest);
  font-size: 1.46rem;
}

.hero-panel-info p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.98rem;
}

.page-hero {
  position: relative;
  min-height: 52vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px 0 64px;
  background:
    linear-gradient(90deg, rgba(18, 55, 42, 0.93), rgba(18, 55, 42, 0.58)),
    linear-gradient(180deg, rgba(18, 55, 42, 0.06), rgba(18, 55, 42, 0.92) 100%),
    var(--hero-image) center / cover no-repeat;
  background-position: center, center, center calc(50% + var(--page-hero-scroll, 0px));
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 28% 28%, rgba(200, 162, 74, 0.24), transparent 25rem);
  content: "";
  animation: ambientPulse 9s ease-in-out infinite;
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero .lead,
.breadcrumbs {
  animation: heroReveal 760ms ease both;
}

.page-hero h1 {
  animation-delay: 90ms;
}

.page-hero .lead {
  animation-delay: 170ms;
}

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

.page-hero h1,
.page-hero .lead,
.page-hero .eyebrow {
  color: var(--ivory);
}

.page-hero .lead {
  max-width: 700px;
  margin-top: 18px;
  color: rgba(248, 243, 232, 0.84);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(248, 243, 232, 0.72);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--gold-soft);
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(15, 77, 58, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(15, 77, 58, 0.13);
  box-shadow: var(--soft-shadow);
}

.stat {
  min-height: 138px;
  display: grid;
  align-content: center;
  gap: 5px;
  background: rgba(255, 253, 248, 0.9);
  padding: 26px;
}

.stat strong {
  color: var(--emerald);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.72rem, 2.45vw, 2.35rem);
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 0.96rem;
}

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

.project-card,
.lux-card,
.amenity-card,
.plan-card,
.blog-card,
.trust-badge,
.testimonial-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.95), rgba(248, 243, 232, 0.84)),
    var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translate3d(0, 0, 0);
  transform-style: preserve-3d;
}

.project-card:hover,
.lux-card:hover,
.amenity-card:hover,
.plan-card:hover,
.blog-card:hover,
.testimonial-card:hover {
  border-color: rgba(200, 162, 74, 0.56);
  box-shadow: 0 24px 58px rgba(18, 55, 42, 0.18), 0 0 0 4px rgba(200, 162, 74, 0.08);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-5px) scale(1.006);
}

.premium-hover::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(200, 162, 74, 0.16), transparent 34%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.premium-hover:hover::after {
  opacity: 1;
}

.project-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.project-media img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1), filter 760ms ease;
}

.project-card:hover .project-media img,
.showcase-item:hover img,
.gallery-item:hover img,
.blog-card:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.06);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(200, 162, 74, 0.45);
  border-radius: 999px;
  background: rgba(248, 243, 232, 0.86);
  color: var(--emerald);
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.project-media .tag {
  position: absolute;
  top: 14px;
  left: 14px;
}

.project-body {
  padding: 22px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.project-meta span,
.mini-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  border: 1px solid rgba(15, 77, 58, 0.12);
  border-radius: 999px;
  background: rgba(221, 239, 229, 0.55);
  color: rgba(18, 55, 42, 0.76);
  padding: 6px 10px;
  font-size: 0.86rem;
}

.project-price {
  display: block;
  margin-top: 10px;
  color: var(--emerald);
  font-size: 1.04rem;
  font-weight: 900;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.feature-grid,
.amenity-grid,
.trust-grid,
.location-grid,
.floor-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid.three,
.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lux-card,
.amenity-card,
.trust-badge {
  padding: 24px;
}

.icon-box {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(200, 162, 74, 0.42);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(221, 239, 229, 0.82), rgba(200, 162, 74, 0.14));
  color: var(--emerald);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 700;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease;
}

.lux-card:hover .icon-box,
.amenity-card:hover .icon-box,
.trust-badge:hover .icon-box,
.plan-card:hover .icon-box {
  box-shadow: 0 12px 28px rgba(200, 162, 74, 0.18);
  transform: translateY(-3px) rotate(-3deg);
}

.lux-card h3,
.amenity-card h3,
.trust-badge h3 {
  margin-top: 16px;
  font-size: 1.24rem;
}

.lux-card p,
.amenity-card p,
.trust-badge p {
  margin-top: 9px;
  font-size: 0.98rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 238px;
  gap: 18px;
}

.showcase-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 77, 58, 0.17);
  border-radius: var(--radius);
  background: var(--mint);
  box-shadow: var(--soft-shadow);
  isolation: isolate;
}

.showcase-item::before,
.gallery-item::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(248, 243, 232, 0.24) 45%, transparent 72%);
  content: "";
  opacity: 0;
  transform: translateX(-70%);
  transition: opacity 260ms ease, transform 780ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.showcase-item:hover::before,
.gallery-item:hover::before {
  opacity: 1;
  transform: translateX(70%);
}

.showcase-item.large {
  grid-row: span 2;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.showcase-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(18, 55, 42, 0.82));
  content: "";
}

.showcase-label {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
}

.showcase-label strong {
  display: block;
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.24rem;
  line-height: 1.12;
}

.showcase-label span {
  color: rgba(248, 243, 232, 0.78);
  font-size: 0.94rem;
}

.plan-card {
  padding: 24px;
}

.plan-card .plan-size {
  display: block;
  margin: 16px 0 8px;
  color: var(--emerald);
  font-size: 1.12rem;
  font-weight: 900;
}

.plan-specs {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
}

.plan-specs span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(15, 77, 58, 0.12);
  padding-bottom: 8px;
  color: rgba(18, 55, 42, 0.75);
  font-size: 0.93rem;
}

.plan-specs em {
  font-style: normal;
  font-weight: 800;
}

.location-card {
  border-left: 2px solid rgba(200, 162, 74, 0.5);
  padding: 8px 0 8px 18px;
}

.location-card strong {
  display: block;
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.16rem;
}

.location-card span {
  color: var(--muted);
  font-size: 0.96rem;
}

.map-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(15, 77, 58, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 32%, rgba(200, 162, 74, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(221, 239, 229, 0.95), rgba(248, 243, 232, 0.88)),
    var(--mint);
  box-shadow: var(--shadow);
}

.map-panel::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 77, 58, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 77, 58, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  opacity: 0.62;
}

.map-pin {
  position: absolute;
  display: grid;
  width: 132px;
  min-height: 68px;
  place-items: center;
  border: 1px solid rgba(15, 77, 58, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  color: var(--forest);
  padding: 10px;
  text-align: center;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(18, 55, 42, 0.16);
  animation: mapPinFloat 4.8s ease-in-out infinite;
}

.map-pin.main {
  top: 46%;
  left: 45%;
  border-color: rgba(200, 162, 74, 0.68);
  background: linear-gradient(135deg, var(--emerald), var(--leaf));
  color: var(--ivory);
}

.map-pin.school {
  top: 18%;
  left: 14%;
  animation-delay: 0.3s;
}

.map-pin.hospital {
  right: 12%;
  top: 24%;
  animation-delay: 0.8s;
}

.map-pin.metro {
  right: 18%;
  bottom: 18%;
  animation-delay: 1.2s;
}

.map-pin.mall {
  bottom: 14%;
  left: 16%;
  animation-delay: 1.6s;
}

.lead-panel {
  border: 1px solid rgba(15, 77, 58, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(221, 239, 229, 0.68)),
    var(--ivory);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
}

.lead-panel h2 {
  font-size: clamp(1.62rem, 2.45vw, 2.28rem);
}

.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

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

.field {
  display: grid;
  gap: 8px;
}

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

.field label {
  color: rgba(18, 55, 42, 0.82);
  font-size: 0.91rem;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(15, 77, 58, 0.18);
  border-radius: var(--radius);
  outline: none;
  background: rgba(255, 253, 248, 0.92);
  color: var(--forest);
  padding: 12px 14px;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(15, 77, 58, 0.62);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(15, 77, 58, 0.09);
  transform: translateY(-1px);
}

.field select option {
  background: var(--ivory);
  color: var(--forest);
}

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

.form-status {
  display: none;
  border: 1px solid rgba(15, 77, 58, 0.26);
  border-radius: var(--radius);
  background: rgba(221, 239, 229, 0.78);
  color: var(--forest);
  padding: 14px 16px;
}

.form-status.show {
  display: block;
  animation: formStatusIn 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.testimonial-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.testimonial-track {
  display: flex;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-slide {
  min-width: 100%;
}

.testimonial-card {
  min-height: 360px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
}

.testimonial-card::before {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 162, 74, 0.22), transparent 68%);
  content: "";
  pointer-events: none;
}

.testimonial-profile {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.testimonial-profile img {
  width: 92px;
  height: 92px;
  border: 2px solid rgba(200, 162, 74, 0.5);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(18, 55, 42, 0.18);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 520ms ease;
}

.testimonial-card:hover .testimonial-profile img {
  box-shadow: 0 18px 40px rgba(18, 55, 42, 0.22);
  transform: scale(1.045);
}

.testimonial-profile strong {
  display: block;
  margin-top: 6px;
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.34rem;
  line-height: 1.05;
}

.testimonial-profile em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 800;
}

.stars {
  color: var(--emerald);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote {
  position: relative;
  z-index: 1;
  margin-top: 0;
  color: rgba(18, 55, 42, 0.88);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.18rem, 2vw, 1.62rem);
  line-height: 1.28;
}

.buyer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  border-top: 1px solid rgba(15, 77, 58, 0.13);
  padding-top: 18px;
}

.buyer strong {
  color: var(--forest);
}

.buyer span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.slider-controls {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.dot {
  width: 38px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 77, 58, 0.22);
  padding: 0;
}

.dot.active {
  background: var(--gold);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(15, 77, 58, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 8px 22px rgba(18, 55, 42, 0.06);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.faq-item:hover {
  border-color: rgba(200, 162, 74, 0.38);
  box-shadow: 0 14px 34px rgba(18, 55, 42, 0.1);
  transform: translateY(-2px);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--forest);
  padding: 18px 20px;
  text-align: left;
  font-weight: 900;
}

.faq-question span {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(200, 162, 74, 0.38);
  border-radius: 50%;
  color: var(--emerald);
  transition: transform 220ms ease;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

.faq-item.open {
  border-color: rgba(200, 162, 74, 0.46);
  box-shadow: 0 18px 42px rgba(18, 55, 42, 0.12), inset 0 0 0 1px rgba(200, 162, 74, 0.08);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer p {
  padding: 0 20px 20px;
}

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

.gallery-item {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(15, 77, 58, 0.16);
  border-radius: var(--radius);
  background: var(--mint);
  box-shadow: var(--soft-shadow);
}

.gallery-item.wide {
  grid-column: span 2;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1), filter 760ms ease;
}

.gallery-item button {
  position: absolute;
  inset: 0;
  border: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(18, 55, 42, 0.82));
  color: var(--ivory);
  padding: 20px;
  text-align: left;
}

.gallery-item span {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: var(--ivory);
  font-weight: 900;
}

.lightbox {
  position: fixed;
  z-index: 150;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(18, 55, 42, 0.88);
  padding: 24px;
}

.lightbox.open {
  display: flex;
  animation: fadeIn 220ms ease both;
}

.lightbox-inner {
  position: relative;
  max-width: min(100%, 1050px);
}

.lightbox img {
  max-height: 82vh;
  border: 1px solid rgba(200, 162, 74, 0.32);
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow);
  animation: lightboxImageIn 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(200, 162, 74, 0.44);
  border-radius: 50%;
  background: var(--forest);
  color: var(--ivory);
  font-size: 1.35rem;
}

.blog-card {
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  transition: transform 650ms ease;
}

.blog-card .project-body {
  padding: 22px;
}

.article-body {
  display: grid;
  gap: 22px;
  max-width: 840px;
}

.article-body h2 {
  margin-top: 18px;
  font-size: clamp(1.46rem, 2.35vw, 2.08rem);
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: rgba(18, 55, 42, 0.76);
}

.project-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: end;
}

.detail-facts {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(200, 162, 74, 0.34);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(200, 162, 74, 0.22);
  box-shadow: 0 24px 70px rgba(18, 55, 42, 0.24);
}

.detail-facts div {
  display: grid;
  gap: 4px;
  background: rgba(248, 243, 232, 0.94);
  padding: 16px;
}

.detail-facts span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-facts strong {
  color: var(--forest);
}

.site-footer {
  border-top: 1px solid rgba(200, 162, 74, 0.24);
  background:
    radial-gradient(circle at 18% 0%, rgba(200, 162, 74, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--emerald), var(--forest));
  padding: 70px 0 30px;
}

.site-footer p,
.site-footer span,
.site-footer a {
  color: rgba(248, 243, 232, 0.76);
}

.site-footer h3 {
  color: var(--ivory);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.75fr 1fr;
  gap: 34px;
}

.footer-col h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 9px 0;
  font-size: 0.96rem;
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.site-footer .btn-primary {
  color: var(--forest);
}

.site-footer .btn-secondary {
  color: var(--emerald);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-row a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(200, 162, 74, 0.34);
  border-radius: 50%;
  color: var(--gold-soft);
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  border-top: 1px solid rgba(248, 243, 232, 0.1);
  padding-top: 20px;
  color: rgba(248, 243, 232, 0.64);
  font-size: 0.88rem;
}

.wa-root {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
}

.wa-prompt {
  position: absolute;
  right: 72px;
  bottom: 12px;
  width: max-content;
  max-width: 190px;
  border: 1px solid rgba(200, 162, 74, 0.4);
  border-radius: 999px;
  background: rgba(248, 243, 232, 0.94);
  color: var(--forest);
  padding: 9px 13px;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(18, 55, 42, 0.18);
  backdrop-filter: blur(14px);
}

.wa-launch {
  position: relative;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(200, 162, 74, 0.64);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(200, 162, 74, 0.26), rgba(15, 77, 58, 0.64)),
    var(--emerald);
  color: var(--ivory);
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(18, 55, 42, 0.32), 0 0 0 8px rgba(15, 77, 58, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.wa-launch:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 55px rgba(18, 55, 42, 0.36), 0 0 0 10px rgba(15, 77, 58, 0.12);
}

.wa-launch svg {
  width: 30px;
  height: 30px;
}

.wa-widget {
  position: absolute;
  right: 0;
  bottom: 82px;
  width: min(calc(100vw - 32px), 420px);
  max-height: min(78vh, 680px);
  display: none;
  overflow: hidden;
  border: 1px solid rgba(200, 162, 74, 0.38);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: 0 28px 90px rgba(18, 55, 42, 0.3);
}

.wa-widget.open {
  display: block;
  animation: widgetIn 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.wa-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(15, 77, 58, 0.12);
  background:
    linear-gradient(135deg, rgba(200, 162, 74, 0.18), rgba(221, 239, 229, 0.2)),
    var(--forest);
  padding: 16px;
}

.wa-agent {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(200, 162, 74, 0.46);
  border-radius: 50%;
  background: var(--emerald);
  color: var(--ivory);
  font-weight: 900;
}

.wa-agent strong {
  display: block;
  color: var(--ivory);
  line-height: 1.2;
}

.wa-agent span {
  display: block;
  color: rgba(248, 243, 232, 0.72);
  font-size: 0.84rem;
}

.wa-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(248, 243, 232, 0.14);
  border-radius: 50%;
  background: rgba(248, 243, 232, 0.08);
  color: var(--ivory);
}

.wa-body {
  max-height: calc(min(78vh, 680px) - 76px);
  overflow: auto;
  padding: 16px;
}

.wa-bubble {
  border-radius: var(--radius);
  background: rgba(221, 239, 229, 0.86);
  padding: 12px 14px;
  color: rgba(18, 55, 42, 0.84);
  font-size: 0.94rem;
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.quick-reply {
  border: 1px solid rgba(15, 77, 58, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--emerald);
  padding: 8px 10px;
  font-size: 0.84rem;
  font-weight: 900;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

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

.quick-reply.active {
  border-color: rgba(200, 162, 74, 0.54);
  background: rgba(200, 162, 74, 0.18);
  color: var(--forest);
}

.wa-form {
  margin-top: 14px;
}

.wa-form .form-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.wa-form .field label {
  font-size: 0.84rem;
}

.wa-form .field input,
.wa-form .field select,
.wa-form .field textarea {
  min-height: 42px;
  padding: 10px 12px;
  font-size: 0.92rem;
}

.wa-form .field textarea {
  min-height: 86px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.motion-fade-up {
  transform: translateY(28px);
}

.motion-slide-left {
  transform: translateX(-34px);
}

.motion-slide-right {
  transform: translateX(34px);
}

.motion-scale {
  transform: scale(0.94);
}

.image-reveal {
  clip-path: inset(0 0 18% 0 round var(--radius));
  filter: saturate(0.9);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.22, 1, 0.36, 1), clip-path 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 900ms ease;
}

.image-reveal.is-visible {
  clip-path: inset(0 round var(--radius));
  filter: saturate(1);
}

.motion-scene {
  isolation: isolate;
}

.motion-scene::before {
  position: absolute;
  z-index: -1;
  inset: 12% 0 auto;
  height: 42%;
  background:
    radial-gradient(circle at 18% 28%, rgba(200, 162, 74, 0.09), transparent 22rem),
    radial-gradient(circle at 86% 48%, rgba(15, 77, 58, 0.08), transparent 24rem);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateY(28px) scale(0.98);
  transition: opacity 900ms ease, transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-scene.scene-visible::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.motion-text {
  position: relative;
  display: inline-block;
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
  transform: translateY(18px);
  transition: clip-path 850ms cubic-bezier(0.22, 1, 0.36, 1), transform 850ms cubic-bezier(0.22, 1, 0.36, 1), opacity 650ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-text.is-visible,
.scene-visible .motion-text {
  clip-path: inset(0);
  transform: translateY(0);
}

.motion-text::after {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200, 162, 74, 0.82), transparent);
  content: "";
  opacity: 0;
  transform: translateX(-30%);
  transition: opacity 500ms ease 280ms, transform 900ms cubic-bezier(0.22, 1, 0.36, 1) 220ms;
}

.motion-text.is-visible::after,
.scene-visible .motion-text::after {
  opacity: 0.75;
  transform: translateX(30%);
}

.motion-card,
.motion-panel,
.motion-image,
.motion-list > *,
.motion-border,
.motion-parallax {
  will-change: transform, opacity;
}

.motion-parallax {
  translate: 0 var(--parallax-y, 0px);
}

.motion-panel {
  position: relative;
  overflow: hidden;
}

.motion-panel::after,
.motion-border::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(200, 162, 74, 0.52), transparent 22%, transparent 78%, rgba(15, 77, 58, 0.24));
  content: "";
  opacity: 0;
  pointer-events: none;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
  transition: opacity 360ms ease;
}

.motion-panel:hover::after,
.motion-border:hover::before {
  opacity: 1;
}

.motion-spotlight {
  position: relative;
}

.motion-list > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--list-delay, 0ms);
}

.motion-list.is-visible > *,
.motion-list.scene-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.plan-specs.motion-list span,
.article-body.motion-list > * {
  transition-delay: var(--list-delay, 0ms);
}

.plan-specs span {
  transform-origin: left;
  transition: transform 260ms ease, border-color 260ms ease, color 260ms ease;
}

.plan-card:hover .plan-specs span {
  border-color: rgba(200, 162, 74, 0.32);
  transform: translateX(4px);
}

.footer-col a,
.social-row a {
  transition: color 220ms ease, border-color 220ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1), background 220ms ease;
}

.footer-col a:hover {
  transform: translateX(4px);
}

.social-row a:hover {
  border-color: rgba(200, 162, 74, 0.72);
  background: rgba(248, 243, 232, 0.08);
  transform: translateY(-3px);
}

.motion-card .project-body,
.motion-card .plan-specs,
.motion-card .testimonial-profile,
.motion-card .quote,
.motion-card .buyer {
  transform: translateZ(24px);
}

.motion-image img {
  transform-origin: center;
}

.scene-visible .motion-image img {
  animation: cinematicImageSettle 1200ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.project-grid .reveal:nth-child(2),
.feature-grid .reveal:nth-child(2),
.amenity-grid .reveal:nth-child(2),
.trust-grid .reveal:nth-child(2),
.floor-grid .reveal:nth-child(2),
.blog-grid .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.project-grid .reveal:nth-child(3),
.feature-grid .reveal:nth-child(3),
.amenity-grid .reveal:nth-child(3),
.trust-grid .reveal:nth-child(3),
.floor-grid .reveal:nth-child(3),
.blog-grid .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.closing-section {
  padding-top: 74px;
}

.closing-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(200, 162, 74, 0.32);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 22%, rgba(200, 162, 74, 0.2), transparent 18rem),
    linear-gradient(135deg, rgba(18, 55, 42, 0.97), rgba(15, 77, 58, 0.94));
  padding: clamp(28px, 5vw, 54px);
  box-shadow: 0 26px 80px rgba(18, 55, 42, 0.24);
}

.closing-panel::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(248, 243, 232, 0.1);
  border-radius: var(--radius);
  content: "";
  pointer-events: none;
}

.closing-panel h2,
.closing-panel .section-kicker,
.closing-panel .lead {
  color: var(--ivory);
}

.closing-panel .lead {
  max-width: 700px;
  color: rgba(248, 243, 232, 0.76);
}

.closing-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

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

@keyframes navGlow {
  0%,
  100% {
    opacity: 0.65;
    transform: scaleX(0.86);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes ambientPulse {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.025);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes mapPinFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes formStatusIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes lightboxImageIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.965);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cinematicImageSettle {
  from {
    filter: saturate(0.82) contrast(0.96);
    transform: scale(1.055);
  }
  to {
    filter: saturate(1) contrast(1);
    transform: scale(1);
  }
}

@keyframes particleDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 74px 74px, 74px 74px;
  }
}

@keyframes widgetIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1160px) {
  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-inner,
  .project-detail-hero {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 430px;
  }

  .highlight-grid,
  .feature-grid,
  .amenity-grid,
  .trust-grid,
  .location-grid,
  .floor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid,
  .blog-grid,
  .feature-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .section {
    padding: 68px 0;
  }

  .section-grid,
  .section-grid.reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero {
    min-height: auto;
    padding: 124px 0 68px;
  }

  .hero-inner {
    gap: 34px;
  }

  .hero-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .form-actions .btn {
    width: 100%;
  }

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

  .showcase-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .showcase-item.large {
    grid-row: span 1;
  }

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

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

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

  .closing-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  body {
    font-size: 15.5px;
  }

  h1 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  h2 {
    font-size: clamp(1.52rem, 7vw, 2rem);
  }

  .lead {
    font-size: 1rem;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand {
    min-width: auto;
  }

  .brand-text strong {
    font-size: 1.08rem;
  }

  .brand-text span {
    font-size: 0.68rem;
  }

  .mobile-nav-panel {
    top: 70px;
  }

  .mobile-nav {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 108px;
  }

  .page-hero {
    min-height: 46vh;
    padding: 108px 0 52px;
  }

  .highlight-grid,
  .feature-grid,
  .amenity-grid,
  .trust-grid,
  .location-grid,
  .floor-grid,
  .project-grid,
  .blog-grid,
  .feature-grid.three,
  .form-grid,
  .stat-band {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 112px;
    padding: 22px;
  }

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

  .testimonial-card {
    min-height: 410px;
  }

  .testimonial-profile {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
  }

  .testimonial-profile img {
    width: 76px;
    height: 76px;
  }

  .testimonial-profile strong {
    font-size: 1.18rem;
  }

  .buyer {
    align-items: stretch;
    flex-direction: column;
  }

  .buyer .btn {
    width: 100%;
  }

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

  .map-panel {
    min-height: 500px;
  }

  .map-pin {
    width: 118px;
    font-size: 0.84rem;
  }

  .map-pin.main {
    top: 40%;
    left: 33%;
  }

  .wa-root {
    right: 14px;
    bottom: 14px;
  }

  .wa-prompt {
    display: none;
  }

  .wa-launch {
    width: 58px;
    height: 58px;
  }

  .wa-widget {
    right: -2px;
    bottom: 72px;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 104px);
  }

  .wa-body {
    max-height: calc(100vh - 190px);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
