:root {
  --ink: #fbf8f2;
  --ink-soft: #d7cdea;
  --copy-dark: #5a4f72;
  --panel: #fff9f0;
  --panel-strong: #f6ecdd;
  --gold: #d8b161;
  --gold-strong: #c6902f;
  --gold-soft: rgba(216, 177, 97, 0.22);
  --purple-950: #080312;
  --purple-900: #120a2e;
  --purple-850: #1a113d;
  --purple-800: #23154f;
  --purple-700: #372065;
  --violet: #7a62da;
  --green: #2d9a69;
  --line: rgba(216, 177, 97, 0.28);
  --shadow: 0 26px 65px rgba(5, 2, 17, 0.46);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --page-width: min(1240px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 16%, rgba(216, 177, 97, 0.13), transparent 32%),
    radial-gradient(circle at 88% 2%, rgba(122, 98, 218, 0.22), transparent 30%),
    linear-gradient(165deg, #07020f 0%, #120a2e 44%, #1a103f 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 88%);
}

body::after {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 220, 155, 0.06), transparent 48%),
    radial-gradient(circle at 50% 110%, rgba(86, 61, 167, 0.18), transparent 28%);
  z-index: -3;
}

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

.bg-orb {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.46;
  pointer-events: none;
  z-index: -1;
}

.bg-orb--one {
  top: -140px;
  left: -120px;
  background: #6138e3;
}

.bg-orb--two {
  right: -120px;
  bottom: -170px;
  background: #bd8d35;
}

.page-shell {
  width: var(--page-width);
  margin: 1rem auto 0;
}

.top-nav {
  position: sticky;
  top: 0.8rem;
  z-index: 30;
  width: var(--page-width);
  margin: 1rem auto 0;
  padding: 0.92rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  border: 1px solid rgba(216, 177, 97, 0.22);
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(36, 22, 81, 0.42), rgba(18, 11, 42, 0.58));
  box-shadow: 0 18px 36px rgba(6, 3, 18, 0.18);
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

.top-nav::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 243, 214, 0.08), transparent);
  transform: translateX(-100%);
  animation: navSweep 8s linear infinite;
}

.top-nav.is-scrolled {
  background: linear-gradient(120deg, rgba(36, 22, 81, 0.94), rgba(18, 11, 42, 0.98));
  border-color: rgba(216, 177, 97, 0.22);
  box-shadow: var(--shadow);
}

.top-trustbar {
  width: var(--page-width);
  margin: 1rem auto 0;
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  border: 1px solid rgba(216, 177, 97, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #ead8af;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.top-trustbar span {
  white-space: nowrap;
}

.top-trustbar + .top-nav {
  margin-top: 0.45rem;
}

@keyframes navSweep {
  to {
    transform: translateX(100%);
  }
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
}

.brand__icon {
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 0.45rem;
  background: linear-gradient(145deg, #f3cf85, #b8862f);
  color: #2c1c06;
  font-size: 0.96rem;
}

.brand__text,
.section-title,
.page-title,
.footer-title,
h1,
h2,
h3 {
  font-family: "Cinzel", serif;
}

.brand__text {
  letter-spacing: 0.08em;
  font-size: 1.04rem;
}

.menu {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.menu a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.86rem;
  opacity: 0.9;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #f0cd84, transparent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.menu a:hover,
.menu a.active {
  color: #f3ddb0;
  opacity: 1;
}

.menu a:hover::after,
.menu a.active::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.76rem 1.08rem;
  border: 0;
  border-radius: 11px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

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

.btn--gold {
  color: #2a1b06;
  background: linear-gradient(135deg, #f3d38c, var(--gold-strong));
  box-shadow: 0 14px 24px rgba(164, 118, 29, 0.28);
}

.btn--glass {
  color: #f0e7ff;
  border: 1px solid rgba(241, 226, 255, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

.btn--whatsapp {
  color: #ecfaf3;
  background: linear-gradient(135deg, #26835b, #39a66f);
  box-shadow: 0 14px 24px rgba(18, 96, 62, 0.22);
}

.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  min-height: 680px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(118deg, rgba(18, 11, 42, 0.97), rgba(56, 36, 104, 0.8)),
    radial-gradient(circle at 78% 72%, rgba(255, 207, 106, 0.16), transparent 34%);
  box-shadow: var(--shadow);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.page-hero__content,
.page-hero__visual {
  position: relative;
  z-index: 1;
}

.page-hero__content {
  padding: 4.4rem 3.25rem 3.1rem;
}

.page-hero__seal {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
  padding: 0.48rem 0.8rem;
  border: 1px solid rgba(216, 177, 97, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #f7dfb0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section-label {
  display: inline-block;
  margin: 0 0 0.8rem;
  color: #f4d7a2;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label--dark {
  color: #88692d;
}

.page-title {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.6rem, 4.9vw, 4.5rem);
  line-height: 1.05;
}

.page-copy {
  max-width: 56ch;
  margin: 1.2rem 0 0;
  color: var(--ink-soft);
  line-height: 1.85;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.4rem 0 0;
}

.pill-row span {
  padding: 0.56rem 0.86rem;
  border: 1px solid rgba(216, 177, 97, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #efe7ff;
  font-size: 0.76rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.55rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 2.6rem;
}

.hero-stat {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(216, 177, 97, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-stat strong {
  display: block;
  color: #f9dcaa;
  font-size: 1.08rem;
}

.hero-stat span {
  color: #d8d0ed;
  font-size: 0.8rem;
}

.page-hero__visual {
  padding: 2rem;
  border-left: 1px solid rgba(216, 177, 97, 0.18);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 220, 146, 0.1), transparent 28%),
    radial-gradient(circle at 70% 78%, rgba(255, 211, 119, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(9, 5, 23, 0.2), rgba(10, 5, 25, 0.6));
}

.hero-frame {
  position: relative;
  height: 100%;
  min-height: 520px;
}

.visual-note {
  position: absolute;
  z-index: 2;
  max-width: 270px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(216, 177, 97, 0.22);
  background: rgba(16, 9, 38, 0.72);
  box-shadow: 0 12px 28px rgba(7, 3, 21, 0.42);
  backdrop-filter: blur(10px);
}

.visual-note span {
  display: block;
  margin-bottom: 0.35rem;
  color: #f6dca8;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-note strong {
  color: #fef8ec;
  font-size: 0.93rem;
  line-height: 1.55;
}

.visual-note--top {
  top: 1.3rem;
  left: 0.4rem;
}

.visual-note--bottom {
  right: 0.4rem;
  bottom: 1.6rem;
}

.hero-art {
  position: absolute;
  inset: 12% 8% 9%;
  border-radius: 30px;
  border: 1px solid rgba(242, 209, 140, 0.28);
  box-shadow:
    0 34px 46px rgba(8, 4, 22, 0.56),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
}

.hero-art--home {
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 224, 163, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(251, 211, 139, 0.08), rgba(18, 10, 46, 0.22)),
    linear-gradient(155deg, #271553 0%, #130923 100%);
}

.hero-art--home::before {
  inset: 18% 10% 18% 8%;
  border-radius: 18px 18px 12px 12px;
  background:
    linear-gradient(180deg, rgba(255, 218, 146, 0.74) 0 8%, transparent 8% 100%),
    linear-gradient(90deg, rgba(255, 223, 160, 0.65) 0 8%, transparent 8% 12%, rgba(255, 223, 160, 0.62) 12% 20%, transparent 20% 24%, rgba(255, 223, 160, 0.6) 24% 32%, transparent 32% 100%),
    linear-gradient(180deg, rgba(61, 42, 124, 0.9), rgba(20, 10, 42, 0.98));
  clip-path: polygon(12% 32%, 28% 10%, 58% 10%, 74% 22%, 100% 22%, 100% 100%, 0 100%, 0 32%);
}

.hero-art--home::after {
  left: 7%;
  right: 7%;
  bottom: 8%;
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 200, 110, 0.34), rgba(18, 10, 46, 0));
  filter: blur(12px);
}

.hero-art--properties {
  background:
    linear-gradient(180deg, rgba(255, 221, 153, 0.09), transparent 30%),
    linear-gradient(145deg, #24134d, #130923);
}

.hero-art--properties::before {
  inset: 14% 12%;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 214, 132, 0.7), transparent 12%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 226, 173, 0.18) 0,
      rgba(255, 226, 173, 0.18) 1px,
      transparent 1px,
      transparent 72px
    ),
    repeating-linear-gradient(
      180deg,
      rgba(255, 226, 173, 0.12) 0,
      rgba(255, 226, 173, 0.12) 1px,
      transparent 1px,
      transparent 66px
    ),
    linear-gradient(180deg, rgba(76, 54, 142, 0.9), rgba(20, 11, 42, 0.98));
}

.hero-art--properties::after {
  top: 28%;
  right: 10%;
  width: 30%;
  height: 42%;
  border-radius: 18px;
  border: 1px solid rgba(255, 225, 166, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 224, 163, 0.7), transparent 10%),
    linear-gradient(180deg, rgba(36, 21, 77, 0.9), rgba(19, 11, 42, 0.98));
  box-shadow: 0 18px 30px rgba(6, 3, 16, 0.34);
}

.hero-art--invest {
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 223, 152, 0.18), transparent 18%),
    linear-gradient(150deg, #281657, #100825);
}

.hero-art--invest::before {
  top: 16%;
  left: 12%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 225, 166, 0.24);
  background:
    radial-gradient(circle at 34% 32%, rgba(255, 227, 173, 0.8), rgba(255, 227, 173, 0) 25%),
    radial-gradient(circle at center, rgba(255, 210, 118, 0.18), rgba(18, 10, 46, 0) 72%);
  box-shadow: inset 0 0 0 24px rgba(255, 255, 255, 0.02);
}

.hero-art--invest::after {
  right: 10%;
  bottom: 14%;
  width: 34%;
  height: 48%;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 224, 163, 0.76), transparent 11%),
    linear-gradient(160deg, rgba(76, 54, 142, 0.95), rgba(18, 10, 46, 0.98));
  clip-path: polygon(14% 22%, 50% 0, 86% 22%, 100% 100%, 0 100%);
}

.hero-art--requests {
  background:
    linear-gradient(180deg, rgba(255, 220, 148, 0.09), transparent 26%),
    linear-gradient(145deg, #24134d, #120923);
}

.hero-art--requests::before {
  inset: 16% 12%;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 225, 166, 0.78), transparent 12%),
    linear-gradient(180deg, rgba(76, 54, 142, 0.92), rgba(20, 11, 42, 0.98));
  clip-path: polygon(0 14%, 100% 0, 100% 86%, 0 100%);
}

.hero-art--requests::after {
  left: 10%;
  right: 10%;
  bottom: 10%;
  height: 18%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(241, 200, 110, 0.3), rgba(18, 10, 46, 0));
  filter: blur(10px);
}

.hero-art--about {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 223, 152, 0.16), transparent 20%),
    linear-gradient(145deg, #251451, #110825);
}

.hero-art--about::before {
  inset: 18% 16% 18% 12%;
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(255, 224, 163, 0.76) 0 5%, transparent 5% 18%, rgba(255, 224, 163, 0.38) 18% 22%, transparent 22% 100%),
    linear-gradient(180deg, rgba(255, 224, 163, 0.76), transparent 14%),
    linear-gradient(160deg, rgba(70, 49, 133, 0.95), rgba(18, 10, 46, 0.98));
}

.hero-art--about::after {
  left: 56%;
  top: 22%;
  width: 18%;
  height: 42%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 220, 148, 0.7), rgba(201, 147, 48, 0.6));
  box-shadow: 0 0 24px rgba(255, 219, 147, 0.24);
}

.art-chip,
.art-panel {
  position: absolute;
  z-index: 2;
  padding: 0.7rem 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(216, 177, 97, 0.2);
  background: rgba(14, 8, 34, 0.72);
  box-shadow: 0 16px 28px rgba(5, 2, 17, 0.38);
  backdrop-filter: blur(8px);
}

.art-chip strong,
.art-panel strong {
  display: block;
  color: #fbf5ea;
  font-size: 0.92rem;
}

.art-chip span,
.art-panel span {
  display: block;
  margin-top: 0.25rem;
  color: #d8d0ed;
  font-size: 0.76rem;
}

.art-chip--one {
  right: 10%;
  top: 18%;
}

.art-chip--two {
  left: 8%;
  bottom: 20%;
}

.art-panel--tall {
  right: 10%;
  bottom: 18%;
  width: 160px;
}

.section-shell {
  position: relative;
  margin-top: 1.15rem;
  padding: 2.35rem;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.section-shell::before {
  content: "";
  position: absolute;
  top: -90px;
  left: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 177, 97, 0.1), rgba(216, 177, 97, 0));
}

.section-shell--light {
  color: #1f1638;
  border: 1px solid rgba(111, 90, 198, 0.18);
  background:
    radial-gradient(circle at 0% 40%, rgba(226, 199, 151, 0.28), transparent 35%),
    linear-gradient(180deg, #fffaf2, #f8efe2);
}

.section-shell--dark {
  border: 1px solid rgba(216, 177, 97, 0.24);
  background:
    radial-gradient(circle at 88% 18%, rgba(219, 179, 98, 0.2), transparent 45%),
    linear-gradient(165deg, rgba(21, 13, 52, 0.98), rgba(31, 19, 71, 0.97));
}

.section-shell--refinement {
  overflow: visible;
}

.section-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-title {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: 0.02em;
}

.section-copy {
  position: relative;
  z-index: 1;
  max-width: 60ch;
  margin: 0.8rem 0 0;
  line-height: 1.8;
  color: var(--copy-dark);
}

.section-copy--dark {
  color: #d6cde9;
}

.lux-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

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

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

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

.lux-card {
  position: relative;
  overflow: hidden;
  padding: 1.1rem;
  border-radius: 20px;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.lux-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 36px rgba(35, 23, 76, 0.16);
}

.lux-card--light {
  border: 1px solid rgba(111, 90, 198, 0.18);
  background: linear-gradient(180deg, #fffdf8, #f8efe3);
}

.lux-card--dark {
  border: 1px solid rgba(216, 177, 97, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.card-media {
  position: relative;
  height: 180px;
  margin-bottom: 1rem;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 220, 148, 0.18), transparent 40%),
    linear-gradient(145deg, rgba(52, 36, 102, 0.95), rgba(20, 11, 43, 0.98));
}

.card-media::before,
.card-media::after {
  content: "";
  position: absolute;
}

.card-media::before {
  inset: 18% 10% 16%;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 225, 166, 0.8) 0 10%, transparent 10% 100%),
    linear-gradient(90deg, rgba(255, 226, 173, 0.6) 0 10%, transparent 10% 14%, rgba(255, 226, 173, 0.52) 14% 28%, transparent 28% 32%, rgba(255, 226, 173, 0.4) 32% 44%, transparent 44% 100%),
    linear-gradient(180deg, rgba(66, 46, 130, 0.95), rgba(25, 13, 51, 0.98));
  clip-path: polygon(16% 34%, 32% 14%, 58% 14%, 72% 26%, 100% 26%, 100% 100%, 0 100%, 0 34%);
}

.card-media::after {
  left: 10%;
  right: 10%;
  bottom: 6%;
  height: 20%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(241, 200, 110, 0.28), rgba(18, 10, 46, 0));
  filter: blur(10px);
}

.card-media--coastal {
  background:
    linear-gradient(180deg, rgba(255, 222, 154, 0.14), transparent 34%),
    linear-gradient(145deg, #1f3565, #111832);
}

.card-media--tower::before {
  inset: 12% 18% 12% 22%;
  clip-path: polygon(22% 0, 78% 0, 100% 100%, 0 100%);
}

.card-media--garden::before {
  inset: 18% 8% 18%;
  clip-path: polygon(10% 28%, 28% 8%, 60% 8%, 76% 22%, 100% 22%, 100% 100%, 0 100%, 0 28%);
}

.card-media--district::before {
  inset: 16% 8% 18%;
  clip-path: polygon(0 18%, 100% 0, 100% 82%, 0 100%);
}

.tag,
.mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag {
  margin-bottom: 0.7rem;
  background: rgba(111, 90, 198, 0.1);
  color: #694fbb;
}

.mini-tag {
  background: rgba(216, 177, 97, 0.14);
  color: #8d6626;
}

.card-title {
  margin: 0;
  font-size: 1.15rem;
}

.card-copy {
  margin: 0.55rem 0 0;
  line-height: 1.7;
  color: #5a4f72;
  font-size: 0.9rem;
}

.card-copy--dark {
  color: #d5cbe8;
}

.price-row,
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1rem;
}

.price-row strong,
.card-meta strong {
  font-size: 0.94rem;
  color: #241942;
}

.card-meta span {
  color: #d9d0ec;
  font-size: 0.78rem;
}

.property-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.property-filters button,
.chip {
  padding: 0.5rem 0.86rem;
  border: 1px solid rgba(111, 90, 198, 0.22);
  border-radius: 999px;
  background: #fff8ee;
  color: #2a1b5a;
  font-size: 0.78rem;
}

.property-filters--dark button {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(216, 177, 97, 0.2);
  color: #eee4ff;
}

.property-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.property-tabs button {
  padding: 0.62rem 0.96rem;
  border: 1px solid rgba(111, 90, 198, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #2a1b5a;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.property-tabs button.is-active {
  background: linear-gradient(135deg, #f3d38c, var(--gold-strong));
  border-color: rgba(201, 144, 47, 0.42);
  color: #2a1b06;
}

.facts-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.facts-list li {
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(111, 90, 198, 0.12);
  background: rgba(255, 255, 255, 0.56);
  color: #473c5f;
  font-size: 0.78rem;
}

.metric-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.metric-card {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(216, 177, 97, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.metric-card strong {
  display: block;
  color: #f5ddb0;
  font-size: 1.2rem;
}

.metric-card span {
  color: #d7cdea;
  font-size: 0.84rem;
}

.metric-card--light {
  border-color: rgba(111, 90, 198, 0.16);
  background: linear-gradient(180deg, #fffdf8, #f6ecdd);
}

.metric-card--light strong {
  color: #241942;
}

.metric-card--light span {
  color: #5a4f72;
}

.split-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 1rem;
  align-items: stretch;
}

.feature-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.3rem;
}

.feature-item {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(111, 90, 198, 0.16);
  background: rgba(255, 255, 255, 0.48);
}

.feature-item strong {
  display: block;
  color: #241942;
}

.feature-item span {
  display: block;
  margin-top: 0.35rem;
  color: #5a4f72;
  font-size: 0.88rem;
  line-height: 1.65;
}

.feature-item--dark {
  border-color: rgba(216, 177, 97, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.feature-item--dark strong {
  color: #fbf5ea;
}

.feature-item--dark span {
  color: #d7cdea;
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(216, 177, 97, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.process-step__index {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0cf89, #ba8427);
  color: #2d1c06;
  font-weight: 700;
}

.process-step__body strong {
  display: block;
  color: #fbf5ea;
  font-size: 0.98rem;
}

.process-step__body span {
  display: block;
  margin-top: 0.35rem;
  color: #d7cdea;
  font-size: 0.88rem;
  line-height: 1.65;
}

.timeline {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  bottom: 0.8rem;
  left: 1rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(216, 177, 97, 0.42), rgba(216, 177, 97, 0.06));
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1rem 1rem 0.2rem;
}

.timeline-step__number {
  position: relative;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0cf89, #ba8427);
  color: #2d1c06;
  font-weight: 700;
}

.timeline-step__content {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(216, 177, 97, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.timeline-step__content strong {
  display: block;
  color: #fbf5ea;
  font-size: 0.98rem;
}

.timeline-step__content span {
  display: block;
  margin-top: 0.35rem;
  color: #d7cdea;
  font-size: 0.88rem;
  line-height: 1.7;
}

.form-card {
  position: relative;
  overflow: hidden;
  padding: 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(90, 60, 190, 0.18);
  background: linear-gradient(180deg, #fffdf9, #f8efe3);
  box-shadow: 0 14px 28px rgba(31, 19, 71, 0.08);
}

.form-card--dark {
  border-color: rgba(216, 177, 97, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.form-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.form-card p {
  margin: 0 0 1rem;
  color: #5a4f72;
  line-height: 1.7;
  font-size: 0.88rem;
}

.form-card--dark p {
  color: #d7cdea;
}

.form-grid {
  display: grid;
  gap: 0.72rem;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  padding: 0.76rem 0.84rem;
  border: 1px solid rgba(111, 90, 198, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  color: #291e47;
}

.form-card--dark .form-grid input,
.form-card--dark .form-grid textarea,
.form-card--dark .form-grid select {
  border-color: rgba(216, 177, 97, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: #fbf8f2;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 1rem;
}

.contact-card {
  position: relative;
  padding: 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(111, 90, 198, 0.18);
  background: linear-gradient(180deg, #fffdf8, #f8efe2);
}

.contact-card h3 {
  margin-top: 0;
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.contact-list div {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(111, 90, 198, 0.14);
  background: rgba(255, 255, 255, 0.58);
}

.contact-list strong {
  display: block;
  color: #241942;
}

.contact-list span {
  display: block;
  margin-top: 0.2rem;
  color: #5a4f72;
  font-size: 0.88rem;
}

.quote-panel {
  position: relative;
  padding: 1.4rem;
  border-radius: 24px;
  border: 1px solid rgba(216, 177, 97, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    linear-gradient(145deg, rgba(31, 19, 71, 0.98), rgba(18, 11, 42, 0.98));
  color: #fbf5ea;
}

.quote-panel p {
  margin: 0;
  line-height: 1.9;
  color: #d7cdea;
}

.cta-band {
  position: relative;
  margin-top: 1.15rem;
  padding: 2rem 2.2rem;
  border-radius: 28px;
  border: 1px solid rgba(216, 177, 97, 0.22);
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 216, 141, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(36, 22, 81, 0.96), rgba(19, 12, 45, 0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 177, 97, 0.18), rgba(216, 177, 97, 0));
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-band__copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.cta-band__copy p {
  margin: 0.8rem 0 0;
  max-width: 56ch;
  line-height: 1.8;
  color: #d7cdea;
}

.cta-note {
  margin-top: 0.9rem;
  color: #f1ddb1;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ticker-shell {
  position: relative;
  margin-top: 1.15rem;
  padding: 0.9rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(216, 177, 97, 0.2);
  border-bottom: 1px solid rgba(216, 177, 97, 0.2);
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: tickerMove 22s linear infinite;
}

.ticker-track span {
  color: #ead7ae;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.footer {
  width: var(--page-width);
  margin: 1rem auto;
  padding: 1.1rem 1rem;
  text-align: center;
  border: 1px solid rgba(216, 177, 97, 0.22);
  border-radius: 14px;
  background: rgba(20, 13, 47, 0.96);
  color: #d1c8eb;
}

.footer-title {
  margin: 0;
  font-size: 1rem;
}

.footer p {
  margin: 0.35rem 0 0;
  color: #cfc5e5;
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(38px) scale(0.985);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

.eid-popup {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
}

.eid-popup.is-visible {
  display: flex;
}

.eid-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 3, 17, 0.78);
  backdrop-filter: blur(5px);
}

.eid-house {
  position: relative;
  z-index: 1;
  width: min(930px, calc(100% - 2rem));
  padding-top: 118px;
  opacity: 0;
  transform-style: preserve-3d;
  transform: perspective(1500px) rotateX(8deg) rotateY(-6deg) translateY(22px) scale(0.97);
  animation: houseEntrance 0.56s cubic-bezier(0.2, 0.85, 0.24, 1) forwards;
}

@keyframes houseEntrance {
  to {
    opacity: 1;
    transform: perspective(1500px) rotateX(8deg) rotateY(-6deg) translateY(0) scale(1);
  }
}

.eid-popup__close {
  position: absolute;
  top: 132px;
  right: 22px;
  z-index: 4;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.eid-house__roof,
.eid-house__side,
.eid-house__base,
.eid-house__facade {
  position: absolute;
}

.eid-house__roof {
  top: 0;
  left: 78px;
  right: 78px;
  height: 154px;
  border: 1px solid rgba(216, 177, 97, 0.26);
  border-radius: 26px 26px 8px 8px;
  background:
    linear-gradient(180deg, rgba(255, 224, 163, 0.08), transparent 34%),
    linear-gradient(180deg, #3b2671 0%, #24124f 36%, #150c33 100%);
  clip-path: polygon(50% 0%, 98% 86%, 100% 100%, 0 100%, 2% 86%);
  box-shadow:
    0 28px 44px rgba(4, 2, 14, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateZ(58px);
}

.eid-house__side {
  top: 145px;
  right: -48px;
  bottom: 22px;
  width: 72px;
  border: 1px solid rgba(216, 177, 97, 0.18);
  border-left: 0;
  border-radius: 0 24px 22px 0;
  background: linear-gradient(180deg, #190e37, #110928);
  transform: skewY(-18deg) translateZ(-18px);
  transform-origin: left top;
}

.eid-house__base {
  left: 55px;
  right: 20px;
  bottom: 0;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(241, 200, 110, 0.42), rgba(18, 10, 46, 0));
  filter: blur(8px);
  transform: translateZ(-60px) rotateX(72deg);
}

.eid-house__facade {
  position: relative;
  min-height: 470px;
  border: 1px solid rgba(216, 177, 97, 0.24);
  border-radius: 34px 34px 28px 28px;
  background:
    linear-gradient(180deg, rgba(255, 218, 150, 0.06), transparent 24%),
    linear-gradient(145deg, rgba(28, 17, 65, 0.98), rgba(16, 10, 41, 0.98));
  box-shadow:
    0 36px 70px rgba(4, 2, 13, 0.72),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.eid-house__sky {
  position: absolute;
  inset: 0 0 44% 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 223, 152, 0.12), transparent 24%),
    radial-gradient(circle at 84% 26%, rgba(255, 223, 152, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(21, 12, 49, 0.98), rgba(27, 17, 60, 0.88));
}

.moon {
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe8b8, #d4a856);
  box-shadow: 0 0 26px rgba(255, 226, 160, 0.58);
}

.star {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 242, 212, 0.86);
  box-shadow: 0 0 14px rgba(255, 239, 194, 0.66);
  animation: twinkle 2.4s ease-in-out infinite;
}

.star--one {
  top: 32px;
  left: 22%;
}

.star--two {
  top: 68px;
  left: 68%;
  animation-delay: -0.7s;
}

.star--three {
  top: 42px;
  left: 54%;
  animation-delay: -1.2s;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.lantern {
  position: absolute;
  width: 28px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffde9f, #c49234);
  box-shadow: 0 0 22px rgba(255, 207, 116, 0.52);
  transform-origin: top center;
  animation: sway 3.2s ease-in-out infinite;
}

.lantern::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  width: 2px;
  height: 34px;
  transform: translateX(-50%);
  background: rgba(255, 229, 179, 0.45);
}

.lantern--left {
  top: 28px;
  left: 16%;
  animation-delay: -0.2s;
}

.lantern--center {
  top: 18px;
  left: 43%;
  animation-delay: -0.8s;
}

.lantern--right {
  top: 36px;
  right: 22%;
  animation-delay: -1.1s;
}

@keyframes sway {
  0%,
  100% {
    transform: rotate(-7deg);
  }
  50% {
    transform: rotate(7deg);
  }
}

.eid-house__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 1.7rem;
  align-items: end;
  min-height: 470px;
  padding: 145px 2.35rem 2rem;
}

.eid-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
}

.eid-copy p {
  line-height: 1.8;
  color: #d7ceec;
}

.eid-copy__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1.25rem;
}

.eid-copy__meta span {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 177, 97, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: #f5ddb0;
  font-size: 0.76rem;
}

.eid-silhouette {
  position: relative;
  min-height: 260px;
  transform: translateZ(30px) rotateY(-10deg);
}

.eid-silhouette__glow {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 14px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 200, 110, 0.36), rgba(18, 10, 46, 0));
  filter: blur(10px);
}

.eid-silhouette__arch {
  position: absolute;
  bottom: 38px;
  width: 98px;
  height: 150px;
  border-radius: 50px 50px 18px 18px;
  border: 1px solid rgba(255, 227, 170, 0.22);
  background: linear-gradient(180deg, rgba(86, 61, 167, 0.92), rgba(23, 13, 48, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 30px rgba(7, 3, 21, 0.35);
}

.eid-silhouette__arch::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 40px 40px 12px 12px;
  background:
    linear-gradient(180deg, rgba(255, 230, 174, 0.92), rgba(201, 147, 48, 0.8)),
    linear-gradient(180deg, transparent, rgba(27, 16, 60, 0.3));
  box-shadow: 0 0 20px rgba(255, 211, 125, 0.34);
}

.eid-silhouette__arch--left {
  left: 10%;
}

.eid-silhouette__arch--center {
  left: 50%;
  width: 122px;
  height: 184px;
  transform: translateX(-50%) translateY(-8px);
}

.eid-silhouette__arch--right {
  right: 8%;
}

.eid-silhouette__door {
  position: absolute;
  left: 50%;
  bottom: 38px;
  width: 36px;
  height: 76px;
  border-radius: 14px 14px 0 0;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #f3d292, #ad7824);
  box-shadow: 0 0 18px rgba(250, 223, 163, 0.36);
}

.eid-silhouette__steps {
  position: absolute;
  left: 18%;
  right: 16%;
  bottom: 20px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(34, 20, 76, 0), rgba(255, 224, 164, 0.24), rgba(34, 20, 76, 0));
}

@media (max-width: 1100px) {
  .page-hero,
  .split-layout,
  .contact-grid,
  .eid-house__content {
    grid-template-columns: 1fr;
  }

  .page-hero__visual {
    min-height: 420px;
    border-left: 0;
    border-top: 1px solid rgba(216, 177, 97, 0.16);
  }

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

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

  .eid-house {
    width: min(760px, calc(100% - 1.2rem));
    padding-top: 92px;
    transform: none;
  }

  .eid-popup__close {
    top: 102px;
    right: 18px;
  }

  .eid-house__roof {
    left: 42px;
    right: 42px;
    height: 126px;
  }

  .eid-house__side {
    display: none;
  }

  .eid-house__base {
    left: 24px;
    right: 24px;
  }

  .eid-house__content {
    padding: 128px 1.4rem 1.5rem;
  }

  .eid-silhouette {
    min-height: 220px;
    transform: none;
  }
}

@media (max-width: 820px) {
  .top-trustbar {
    gap: 0.6rem;
    padding: 0.55rem 0.8rem;
    font-size: 0.62rem;
  }

  .top-nav {
    border-radius: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }

  .nav-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-hero__content {
    padding: 2.5rem 1.25rem 2rem;
  }

  .page-hero__visual {
    padding: 1.25rem;
  }

  .page-title {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }

  .hero-metrics,
  .lux-grid--2,
  .lux-grid--3,
  .lux-grid--4,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .facts-list {
    grid-template-columns: 1fr;
  }

  .section-shell,
  .cta-band {
    padding: 1.35rem;
  }

  .hero-art {
    inset: 14% 4% 8%;
  }

  .visual-note {
    position: static;
    max-width: none;
    margin-bottom: 0.8rem;
  }

  .hero-frame {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-art {
    position: relative;
    min-height: 320px;
  }

  .ticker-track {
    gap: 1.6rem;
  }

  .eid-house {
    width: min(100%, calc(100% - 0.8rem));
    padding-top: 72px;
  }

  .eid-popup__close {
    top: 78px;
    right: 12px;
  }

  .eid-house__roof {
    left: 20px;
    right: 20px;
    height: 102px;
  }

  .eid-house__facade {
    min-height: 0;
  }

  .eid-house__content {
    min-height: 0;
    padding: 108px 1rem 1.15rem;
  }

  .eid-silhouette {
    min-height: 185px;
  }

  .eid-silhouette__arch {
    width: 74px;
    height: 120px;
  }

  .eid-silhouette__arch--center {
    width: 94px;
    height: 146px;
  }

  .eid-silhouette__door {
    height: 62px;
  }
}

.page-properties .page-hero--properties-luxe {
  min-height: 90vh;
  background:
    linear-gradient(110deg, rgba(10, 7, 20, 0.88), rgba(38, 22, 82, 0.7)),
    radial-gradient(circle at 78% 68%, rgba(255, 209, 119, 0.18), transparent 34%);
}

.page-properties .page-title {
  max-width: 11ch;
  font-size: clamp(3rem, 5.6vw, 5rem);
}

.page-properties .page-copy {
  max-width: 58ch;
}

.hero-frame--property-luxe {
  isolation: isolate;
}

.property-hero-stage {
  inset: 10% 6% 7%;
  animation: propertyStageFloat 16s ease-in-out infinite alternate;
}

@keyframes propertyStageFloat {
  0% {
    transform: scale(1) translateY(0);
  }
  100% {
    transform: scale(1.06) translateY(-10px);
  }
}

.property-preview-card,
.hero-float-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(216, 177, 97, 0.24);
  background: rgba(12, 8, 30, 0.74);
  box-shadow: 0 22px 36px rgba(5, 2, 16, 0.34);
  backdrop-filter: blur(16px);
}

.property-preview-card {
  right: 1.4rem;
  bottom: 1.8rem;
  width: min(320px, 66%);
  padding: 0.85rem;
  border-radius: 22px;
}

.property-preview-card__image {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 224, 163, 0.16), transparent 34%),
    linear-gradient(145deg, #2d1b61, #120924);
  overflow: hidden;
  position: relative;
}

.property-preview-card__image::before {
  content: "";
  position: absolute;
  inset: 16% 12%;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 223, 160, 0.8) 0 10%, transparent 10% 100%),
    linear-gradient(90deg, rgba(255, 226, 173, 0.55) 0 10%, transparent 10% 14%, rgba(255, 226, 173, 0.48) 14% 28%, transparent 28% 100%),
    linear-gradient(180deg, rgba(66, 46, 130, 0.95), rgba(25, 13, 51, 0.98));
  clip-path: polygon(12% 32%, 28% 10%, 58% 10%, 74% 22%, 100% 22%, 100% 100%, 0 100%, 0 32%);
}

.property-preview-card__body {
  padding-top: 0.9rem;
}

.property-preview-card__body h3 {
  margin: 0.2rem 0 0;
  color: #fbf5ea;
}

.property-preview-card__body p {
  margin: 0.35rem 0 0;
  color: #d7cdea;
  font-size: 0.88rem;
}

.property-preview-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.property-preview-card__meta span {
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 177, 97, 0.18);
  color: #ead7ae;
  font-size: 0.72rem;
}

.hero-float-card {
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  max-width: 180px;
}

.hero-float-card strong {
  display: block;
  color: #fbf5ea;
  font-size: 0.96rem;
}

.hero-float-card span {
  display: block;
  margin-top: 0.25rem;
  color: #d7cdea;
  font-size: 0.76rem;
  line-height: 1.55;
}

.hero-float-card--one {
  left: 1rem;
  bottom: 5.5rem;
}

.hero-float-card--two {
  left: 2rem;
  top: 7.2rem;
}

.property-statband {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(216, 177, 97, 0.2);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(31, 19, 71, 0.96), rgba(16, 10, 41, 0.98));
  box-shadow: var(--shadow);
}

.property-stat {
  padding: 1.3rem 1.4rem;
  position: relative;
}

.property-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 0;
  width: 1px;
  height: 56%;
  background: linear-gradient(180deg, rgba(216, 177, 97, 0), rgba(216, 177, 97, 0.34), rgba(216, 177, 97, 0));
}

.property-stat strong {
  display: block;
  color: #fbf5ea;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1;
}

.property-stat span {
  display: block;
  margin-top: 0.45rem;
  color: #ead7ae;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.property-stat small {
  display: block;
  margin-top: 0.45rem;
  color: #cfc5e5;
  font-size: 0.84rem;
  line-height: 1.6;
}

.property-filter-panel {
  position: sticky;
  top: 6.5rem;
  z-index: 18;
  margin-top: 1.4rem;
  padding: 1.2rem;
  border: 1px solid rgba(216, 177, 97, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(18, 11, 42, 0.74), rgba(37, 25, 76, 0.54));
  box-shadow: 0 20px 34px rgba(8, 4, 22, 0.12);
  backdrop-filter: blur(18px);
}

.property-filter-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.results-summary {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  color: #f9f4ea;
}

.results-summary strong {
  font-family: "Cinzel", serif;
  font-size: 1.9rem;
  color: #f3cf89;
}

.results-summary span {
  color: #d4cae7;
  font-size: 0.9rem;
}

.reset-link {
  border: 0;
  background: transparent;
  color: #7c63d8;
  cursor: pointer;
  font-size: 0.84rem;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.property-filter-panel__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: end;
}

.filter-field {
  display: grid;
  gap: 0.4rem;
}

.filter-field span {
  color: #e7dbbc;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filter-field select {
  width: 100%;
  padding: 0.86rem 0.9rem;
  border: 1px solid rgba(216, 177, 97, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fbf8f2;
}

.filter-field select option {
  color: #241942;
}

.shortlist-toggle {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(216, 177, 97, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #fbf5ea;
}

.shortlist-toggle input {
  width: 1rem;
  height: 1rem;
  margin: 0 0 0.1rem;
}

.shortlist-toggle span {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shortlist-toggle small {
  color: #d4cae7;
  line-height: 1.5;
}

.filter-cta {
  display: flex;
  justify-content: flex-end;
}

#propertyGridSection [hidden] {
  display: none !important;
}

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

.property-card-elite {
  border-color: rgba(111, 90, 198, 0.14);
}

.property-card-elite:hover {
  border-color: rgba(201, 144, 47, 0.42);
  box-shadow: 0 24px 40px rgba(37, 23, 76, 0.18);
}

.property-card-elite:hover .property-media {
  transform: scale(1.02);
}

.property-card-elite:hover .card-title {
  transform: translateY(-3px);
}

.property-media {
  aspect-ratio: 16 / 10;
  height: auto;
  transition: transform 0.45s ease;
}

.property-media::before {
  inset: 12% 10% 14%;
}

.property-media--estate {
  background:
    linear-gradient(180deg, rgba(255, 220, 148, 0.18), transparent 40%),
    linear-gradient(145deg, rgba(52, 36, 102, 0.95), rgba(20, 11, 43, 0.98));
}

.property-media--urban {
  background:
    linear-gradient(180deg, rgba(255, 220, 148, 0.12), transparent 30%),
    linear-gradient(145deg, #1d244d, #101629);
}

.property-media--coast {
  background:
    linear-gradient(180deg, rgba(255, 223, 160, 0.12), transparent 32%),
    linear-gradient(145deg, #1a355b, #111a30);
}

.property-media--garden {
  background:
    linear-gradient(180deg, rgba(255, 220, 148, 0.12), transparent 32%),
    linear-gradient(145deg, #2c4b3d, #122017);
}

.property-media--skyline {
  background:
    linear-gradient(180deg, rgba(255, 220, 148, 0.12), transparent 32%),
    linear-gradient(145deg, #21335f, #131b33);
}

.property-media--compound {
  background:
    linear-gradient(180deg, rgba(255, 220, 148, 0.12), transparent 32%),
    linear-gradient(145deg, #443253, #1b1428);
}

.property-card-elite__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.property-utility {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.property-utility button {
  padding: 0.42rem 0.58rem;
  border: 1px solid rgba(111, 90, 198, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #4c4164;
  font-size: 0.72rem;
  cursor: pointer;
}

.property-card-elite .card-title {
  transition: transform 0.3s ease;
}

.property-card-elite__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.property-card-elite__price strong {
  color: #241942;
  font-size: 1.02rem;
}

.property-card-elite__price span {
  color: #5c5276;
  font-size: 0.8rem;
}

.property-spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.property-spec-row span {
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  background: rgba(111, 90, 198, 0.08);
  color: #4f4568;
  font-size: 0.76rem;
}

.property-card-elite__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
}

.district-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 144, 47, 0.16);
  background: rgba(243, 211, 140, 0.16);
  color: #8a6626;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.property-card-elite__footer .btn::after {
  content: "->";
  margin-left: 0.45rem;
  transition: transform 0.25s ease;
}

.property-card-elite:hover .property-card-elite__footer .btn::after {
  transform: translateX(3px);
}

.loadmore-row {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}

.district-card {
  display: grid;
  gap: 0.95rem;
}

.district-media {
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 220, 148, 0.1), transparent 34%),
    linear-gradient(145deg, #2d1b61, #130923);
  position: relative;
  overflow: hidden;
}

.district-media::before {
  content: "";
  position: absolute;
  inset: 16% 14%;
  border-radius: 18px;
  border: 1px solid rgba(255, 225, 166, 0.22);
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 226, 173, 0.12) 0,
      rgba(255, 226, 173, 0.12) 1px,
      transparent 1px,
      transparent 54px
    ),
    repeating-linear-gradient(
      180deg,
      rgba(255, 226, 173, 0.1) 0,
      rgba(255, 226, 173, 0.1) 1px,
      transparent 1px,
      transparent 50px
    );
}

.district-media--waterfront {
  background:
    linear-gradient(180deg, rgba(255, 220, 148, 0.08), transparent 30%),
    linear-gradient(145deg, #173556, #101826);
}

.district-media--crescent {
  background:
    linear-gradient(180deg, rgba(255, 220, 148, 0.08), transparent 30%),
    linear-gradient(145deg, #33214a, #160f24);
}

.district-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.district-tags span {
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 177, 97, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #ead7ae;
  font-size: 0.74rem;
}

.protocol-card {
  padding-top: 1.4rem;
}

.protocol-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3d38c, #ba8427);
  color: #2d1c06;
  font-family: "Cinzel", serif;
  font-size: 0.96rem;
  box-shadow: 0 16px 24px rgba(164, 118, 29, 0.22);
}

.protocol-card:hover .protocol-icon {
  box-shadow: 0 0 0 8px rgba(216, 177, 97, 0.08);
}

.authority-break {
  margin-top: 1.15rem;
  padding: 3rem 2rem;
  border: 1px solid rgba(216, 177, 97, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 216, 141, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(28, 17, 65, 0.98), rgba(16, 10, 41, 0.98));
  text-align: center;
  box-shadow: var(--shadow);
}

.authority-break blockquote {
  max-width: 18ch;
  margin: 1.1rem auto;
  color: #fbf5ea;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.35;
}

.authority-break p {
  margin: 0;
  color: #d7cdea;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.authority-break__line {
  width: min(220px, 50%);
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(216, 177, 97, 0.52), transparent);
}

.cta-band__inner--form {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px);
  align-items: start;
  gap: 1.2rem;
}

.shortlist-form-card {
  background: linear-gradient(180deg, #fffdf8, #f8efe3);
}

.shortlist-form textarea {
  grid-column: 1 / -1;
}

.desktop-action-rail {
  position: fixed;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 24;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.desktop-action-rail a {
  padding: 0.78rem 0.92rem;
  border-radius: 16px;
  border: 1px solid rgba(216, 177, 97, 0.14);
  background: rgba(18, 11, 42, 0.8);
  color: #fbf5ea;
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 1200px) {
  .desktop-action-rail {
    display: none;
  }
}

@media (max-width: 1100px) {
  .property-statband {
    grid-template-columns: 1fr;
  }

  .property-stat:not(:last-child)::after {
    display: none;
  }

  .property-filter-panel {
    top: 5.8rem;
  }

  .property-filter-panel__grid,
  .cta-band__inner--form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .property-preview-card {
    width: min(340px, 72%);
  }
}

@media (max-width: 820px) {
  .page-properties .page-hero--properties-luxe {
    min-height: auto;
  }

  .property-preview-card,
  .hero-float-card {
    position: static;
    width: 100%;
    max-width: none;
  }

  .hero-frame--property-luxe {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .property-hero-stage {
    inset: auto;
    min-height: 320px;
  }

  .property-statband {
    border-radius: 22px;
  }

  .property-filter-panel {
    position: static;
    padding: 1rem;
  }

  .property-filter-panel__grid,
  .cta-band__inner--form {
    grid-template-columns: 1fr;
  }

  .filter-cta {
    justify-content: stretch;
  }

  .filter-cta .btn {
    width: 100%;
  }

  .property-card-elite__top,
  .property-card-elite__price,
  .property-card-elite__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .authority-break {
    padding: 2.1rem 1.1rem;
  }

  .authority-break blockquote {
    max-width: none;
    font-size: clamp(1.6rem, 8vw, 2.3rem);
  }

  .mobile-action-bar {
    position: fixed;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0.55rem;
    border: 1px solid rgba(216, 177, 97, 0.18);
    border-radius: 18px;
    background: rgba(18, 11, 42, 0.92);
    box-shadow: 0 20px 34px rgba(5, 2, 16, 0.32);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    padding: 0.76rem 0.55rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: #fbf5ea;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.06);
  }

  .footer {
    margin-bottom: 5.8rem;
  }
}
