:root {
  --void: #000000;
  --deep: #000000;
  --surface: rgba(0, 0, 0, 0.92);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(96, 165, 250, 0.2);
  --text: #f5f5f5;
  --muted: #999999;
  --neon: #60a5fa;
  --neon-dim: rgba(96, 165, 250, 0.35);
  --neon-glow: rgba(96, 165, 250, 0.45);
  --violet: #93c5fd;
  --violet-glow: rgba(96, 165, 250, 0.12);
  --accent: #3b82f6;
  --gold: #60a5fa;
  --gold-light: #93c5fd;
  --gold-soft: rgba(96, 165, 250, 0.14);
  --border: rgba(96, 165, 250, 0.18);
  --radius: 16px;
  --font: 'Segoe UI', system-ui, sans-serif;
  --max: 1200px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --perspective: 1400px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--void);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  perspective: var(--perspective);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% -5%, rgba(30, 64, 175, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 35% at 100% 100%, rgba(59, 130, 246, 0.08), transparent 50%),
    #000000;
  pointer-events: none;
  z-index: -2;
}

img { max-width: 100%; display: block; }
a { color: var(--neon); text-decoration: none; transition: color 0.25s var(--ease-out), text-shadow 0.25s; }
a:hover { color: var(--gold-light); text-shadow: 0 0 20px var(--neon-dim); }
.container { width: min(var(--max), 100% - 32px); margin-inline: auto; }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateZ(-80px) translateY(40px) rotateX(8deg);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transform-style: preserve-3d;
}
.reveal.is-visible { opacity: 1; transform: translateZ(0) translateY(0) rotateX(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  z-index: 9999;
  box-shadow: 0 0 12px var(--neon-glow);
}

.demo-bar {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  z-index: 50;
  background: linear-gradient(90deg, #1e3a8a, #1e40af);
  color: #fff;
  font-size: 0.82rem;
  text-align: center;
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
}
.demo-bar a { color: #93c5fd; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 301;
  padding: 12px 16px 0;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
  margin: 0 auto;
  width: min(var(--max), 100% - 32px);
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateZ(40px);
  transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.site-header.is-scrolled .site-header__inner {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 12px 48px rgba(37, 99, 235, 0.1);
}

.logo {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.logo span {
  color: var(--neon);
  font-weight: 400;
  text-shadow: 0 0 24px var(--neon-glow);
}

.site-nav { display: flex; gap: 20px; font-size: 0.82rem; }
.site-nav a {
  color: var(--muted);
  position: relative;
  padding: 4px 0;
}
.site-nav a.is-active,
.site-nav a:hover { color: var(--text); text-shadow: 0 0 16px var(--neon-dim); }

.nav-toggle {
  display: none;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, background 0.3s;
  transform-style: preserve-3d;
}
.btn--gold,
.btn--primary {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
  color: #ffffff;
  box-shadow: 0 0 30px var(--neon-dim), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn--gold:hover,
.btn--primary:hover {
  color: #ffffff;
  box-shadow: 0 0 50px var(--neon-glow);
  transform: translateY(-2px) translateZ(12px);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: var(--neon);
  box-shadow: 0 0 24px var(--neon-dim);
  transform: translateZ(8px);
}
.btn--block { width: 100%; }

/* ── 3D Hero World ── */
.hero-world {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 180px 0 60px;
}
.hero-world > canvas,
.hero-world__canvas {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
  pointer-events: none;
}
.hero-world__grid-floor {
  position: absolute;
  bottom: -20%;
  left: -50%;
  width: 200%;
  height: 60%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(500px) rotateX(72deg);
  transform-origin: center top;
  mask-image: linear-gradient(180deg, transparent, black 30%, black 80%, transparent);
  z-index: 1;
  pointer-events: none;
  animation: gridPulse 6s ease-in-out infinite;
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.9; }
}

.hero-world__content {
  position: relative;
  z-index: 10;
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-world__badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon);
  border: 1px solid var(--glass-border);
  background: rgba(37, 99, 235, 0.06);
  box-shadow: 0 0 20px var(--neon-dim);
  margin-bottom: 20px;
  transform: translateZ(60px);
}
.hero-world h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  transform: translateZ(80px);
  text-shadow: 0 0 60px rgba(37, 99, 235, 0.2);
}
.hero-world h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--neon), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-world__intro {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 32px;
  transform: translateZ(50px);
}

.hud-dock {
  position: relative;
  z-index: 20;
  margin-top: 40px;
  padding: 20px 24px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transform: translateZ(100px) rotateX(4deg);
  transform-style: preserve-3d;
}
.hud-dock__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--neon);
  margin-bottom: 14px;
  font-weight: 700;
}
.property-search {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 12px;
  align-items: end;
}
.property-search label {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.property-search select,
.property-search input {
  width: 100%;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.88rem;
}
.property-search select:focus,
.property-search input:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: 0 0 16px var(--neon-dim);
}

.orbit-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
  transform-style: preserve-3d;
}
.orbit-stat {
  flex: 1;
  min-width: 140px;
  padding: 18px 20px;
  background: #0a0a0a;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  transform: translateZ(30px);
  backdrop-filter: blur(12px);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.orbit-stat:hover {
  transform: translateZ(50px) scale(1.02);
  box-shadow: 0 0 30px var(--neon-dim);
}
.orbit-stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--neon);
  text-shadow: 0 0 20px var(--neon-glow);
}
.orbit-stat span { font-size: 0.82rem; color: var(--muted); }

.wa-orbit {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.wa-orbit a,
.wa-funnel a {
  flex: 1;
  min-width: 140px;
  padding: 12px 16px;
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  transform: translateZ(20px);
}
.wa-orbit a strong,
.wa-funnel a strong {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
}
.wa-orbit a:hover,
.wa-funnel a:hover {
  border-color: var(--neon);
  box-shadow: 0 0 24px var(--neon-dim);
  transform: translateZ(36px);
}

/* ── 3D Carousel ── */
.section { padding: 100px 0; position: relative; }
.section--alt { background: #0a0a0a; }
.section__header { text-align: center; margin-bottom: 48px; }
.section__header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 12px;
  transform: translateZ(30px);
}
.section__header p { color: var(--muted); max-width: 560px; margin: 0 auto; }

.carousel-3d {
  position: relative;
  padding: 20px 0 24px;
}
.carousel-3d__stage {
  perspective: var(--perspective);
  height: 500px;
  position: relative;
  transform-style: preserve-3d;
  overflow: visible;
  margin-bottom: 8px;
}
.carousel-3d__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform-style: preserve-3d;
  transition: transform 0.9s var(--ease-out);
}
.carousel-3d__card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(320px, 88vw);
  margin-left: calc(min(320px, 88vw) / -2);
  margin-top: -200px;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: opacity 0.5s, filter 0.5s, transform 0.9s var(--ease-out);
}
.carousel-3d__card:not(.is-front) {
  opacity: 0.45;
  filter: blur(1px) brightness(0.65);
  pointer-events: none;
}
.carousel-3d__card.is-front {
  opacity: 1;
  filter: none;
  pointer-events: auto;
}
.carousel-3d__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  position: relative;
  z-index: 20;
}
.carousel-3d__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.carousel-3d__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(37, 99, 235, 0.08);
  color: var(--neon);
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  transform: translateZ(20px);
}
.carousel-3d__btn:hover {
  transform: translateZ(40px) scale(1.08);
  box-shadow: 0 0 30px var(--neon-dim);
}
.carousel-3d__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

/* Slide mode (tablet / mobile) */
.carousel-3d--slide .carousel-3d__stage {
  height: auto;
  perspective: none;
  margin-bottom: 0;
}
.carousel-3d--slide .carousel-3d__ring {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  height: auto;
  transform: none !important;
}
.carousel-3d--slide .carousel-3d__card {
  position: relative;
  left: auto;
  top: auto;
  margin: 0 auto;
  width: min(360px, 100%);
  display: none;
  opacity: 1 !important;
  filter: none !important;
  pointer-events: auto;
  transform: none !important;
}
.carousel-3d--slide .carousel-3d__card.is-front {
  display: block;
}
.carousel-3d__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.carousel-3d__dot.is-active {
  background: var(--neon);
  transform: scale(1.3);
  box-shadow: 0 0 12px var(--neon-glow);
}

/* ── Listing / property cards (3D) ── */
.listing-card {
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}
.listing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.listing-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.listing-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.listing-card:hover .listing-card__img img { transform: scale(1.08) translateZ(20px); }
.listing-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.9);
  color: #0a0a0a;
}
.listing-card__body { padding: 18px; position: relative; z-index: 2; }
.listing-card__price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neon);
  text-shadow: 0 0 16px var(--neon-dim);
}
.listing-card__meta { font-size: 0.82rem; color: var(--muted); margin: 4px 0 8px; }
.listing-card h3 { margin: 0; font-size: 1.05rem; }
.listing-card.is-hidden { display: none; }

.tilt-card { transform-style: preserve-3d; }
.tilt-card__glare {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(96, 165, 250, 0.15), transparent 55%);
  pointer-events: none;
  z-index: 3;
  border-radius: inherit;
}

/* ── Addon orbit ring ── */
.addons-orbit {
  position: relative;
  height: 420px;
  perspective: var(--perspective);
  margin: 40px auto;
  max-width: 900px;
}
.addons-orbit__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform-style: preserve-3d;
  animation: orbitSpin 40s linear infinite;
}
@keyframes orbitSpin {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}
.addons-orbit:hover .addons-orbit__ring { animation-play-state: paused; }

.addon-card {
  position: absolute;
  width: 160px;
  padding: 20px 16px;
  text-align: center;
  background: rgba(0, 0, 0, 0.92);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  transition: box-shadow 0.3s;
}
.addon-card:hover { box-shadow: 0 0 40px var(--neon-dim); }
.addon-card__icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 8px var(--neon-glow));
}
.addon-card h4 { margin: 0 0 6px; font-size: 0.9rem; }
.addon-card p { margin: 0; font-size: 0.78rem; color: var(--muted); }

.addons-strip { padding: 80px 0; overflow: hidden; }
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

/* ── Vault panels (mortgage + agent) ── */
.vault-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  transform-style: preserve-3d;
}
.panel-3d {
  padding: 32px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  transform: translateZ(30px) rotateY(-2deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transition: transform 0.5s var(--ease-out);
}
.panel-3d:nth-child(2) { transform: translateZ(30px) rotateY(2deg); }
.panel-3d:hover { transform: translateZ(50px) rotateY(0deg); }

.mortgage-calc label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.mortgage-calc input {
  width: 100%;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  margin-bottom: 14px;
}
.mortgage-calc__result {
  margin-top: 20px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid var(--neon-dim);
  text-align: center;
  color: var(--muted);
  transform: translateZ(20px);
}
.mortgage-calc__result strong {
  display: block;
  font-size: 1.5rem;
  color: var(--neon);
  margin-top: 6px;
  text-shadow: 0 0 20px var(--neon-glow);
}

.agent-card {
  display: flex;
  gap: 20px;
  align-items: center;
}
.agent-card__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--neon);
  box-shadow: 0 0 30px var(--neon-dim);
  flex-shrink: 0;
}
.agent-card__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ── Depth showcase ── */
.depth-showcase {
  position: relative;
  height: min(520px, 80vw);
  perspective: var(--perspective);
  margin: 40px 0;
}
.depth-showcase__layers {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}
.depth-showcase__layer {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.depth-showcase__layer--back {
  inset: 8% 5%;
  transform: translateZ(-120px) scale(0.92);
  opacity: 0.5;
}
.depth-showcase__layer--mid {
  inset: 4% 3%;
  transform: translateZ(-40px) scale(0.96);
  opacity: 0.75;
}
.depth-showcase__layer--front {
  inset: 0;
  transform: translateZ(60px);
}
.depth-showcase__layer img { width: 100%; height: 100%; object-fit: cover; }
.depth-showcase__caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 10;
  padding: 24px 28px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateZ(100px);
}
.depth-showcase__caption h3 { margin: 0 0 6px; }
.depth-showcase__caption p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.fleet-showcase__wrap { position: relative; border-radius: 20px; overflow: hidden; }
.fleet-showcase__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ── Testimonial fan ── */
.fan-3d {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  perspective: var(--perspective);
  min-height: 320px;
  padding: 40px 0;
}
.testimonial-card {
  width: min(300px, 85vw);
  padding: 28px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
}
.fan-3d .testimonial-card:nth-child(1) { transform: rotateY(18deg) translateZ(-40px) translateX(30px); z-index: 1; }
.fan-3d .testimonial-card:nth-child(2) { transform: translateZ(60px) scale(1.05); z-index: 3; box-shadow: 0 0 40px var(--neon-dim); }
.fan-3d .testimonial-card:nth-child(3) { transform: rotateY(-18deg) translateZ(-40px) translateX(-30px); z-index: 1; }
.fan-3d:hover .testimonial-card:nth-child(1) { transform: rotateY(8deg) translateZ(0) translateX(60px); }
.fan-3d:hover .testimonial-card:nth-child(2) { transform: translateZ(80px) scale(1.08); }
.fan-3d:hover .testimonial-card:nth-child(3) { transform: rotateY(-8deg) translateZ(0) translateX(-60px); }
.testimonial-card__stars { color: var(--neon); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card blockquote { margin: 0 0 16px; font-style: italic; }
.testimonial-card cite { font-size: 0.82rem; color: var(--muted); font-style: normal; }

/* ── Blog stack ── */
.blog-stack {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  perspective: var(--perspective);
  min-height: 380px;
  padding: 20px 0;
}
.blog-card {
  width: min(280px, 80vw);
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
}
.blog-stack .blog-card:nth-child(1) { transform: rotateY(12deg) translateZ(-30px); }
.blog-stack .blog-card:nth-child(2) { transform: translateZ(40px) scale(1.06); box-shadow: 0 0 40px var(--violet-glow); }
.blog-stack .blog-card:nth-child(3) { transform: rotateY(-12deg) translateZ(-30px); }
.blog-stack .blog-card:hover { transform: translateZ(60px) scale(1.04); box-shadow: 0 0 50px var(--neon-dim); }
.blog-card__img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 18px; }
.blog-card__tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon);
}
.blog-card h3 { margin: 8px 0 6px; font-size: 1rem; }
.blog-card p { margin: 0; font-size: 0.85rem; color: var(--muted); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* ── CTA vortex ── */
.cta-band,
.cta-vortex {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-vortex::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  margin: -300px 0 0 -300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 65%);
  animation: vortexSpin 20s linear infinite;
  pointer-events: none;
}
@keyframes vortexSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.cta-vortex .container { position: relative; z-index: 1; transform: translateZ(40px); }
.cta-vortex h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0 0 12px; }

/* ── Page hero (subpages) ── */
.page-hero {
  padding: 180px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255, 255, 255, 0.04), transparent),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(37, 99, 235, 0.05), transparent);
  pointer-events: none;
}
.page-hero .container { position: relative; transform: translateZ(50px); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 12px 0; }
.hero__eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neon);
  font-weight: 700;
}

/* ── Forms ── */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: 0 0 16px var(--neon-dim);
}

.lead-card {
  padding: 28px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transform: translateZ(40px);
}
.booking-summary {
  padding: 24px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid var(--border);
  border-radius: 14px;
}

/* ── Filters ── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  justify-content: center;
}
.filter-chip {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.filter-chip.is-active,
.filter-chip:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: 0 0 20px var(--neon-dim);
  background: rgba(37, 99, 235, 0.08);
}

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── Footer ── */
.site-footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border);
  background: #000000;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.site-footer h4 { margin: 0 0 12px; font-size: 0.9rem; color: var(--neon); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: var(--muted); font-size: 0.88rem; }
.site-footer__copy {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease-spring);
  transform: translateZ(60px);
  animation: waFloat 3s ease-in-out infinite;
}
@keyframes waFloat {
  0%, 100% { transform: translateZ(60px) translateY(0); }
  50% { transform: translateZ(60px) translateY(-8px); }
}
.whatsapp-float:hover { transform: translateZ(80px) scale(1.08); }

/* ── Hero layout extras ── */
.hero-world__layout {
  display: grid;
  grid-template-columns: 1fr min(360px, 100%);
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 10;
  margin-bottom: 32px;
}
.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.hero-checklist li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
}
.hero-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--neon);
  font-weight: 700;
}
.hero-lead {
  padding: 28px;
}
.hero-lead h3 { margin: 0 0 8px; font-size: 1.15rem; }
.hero-lead > p { color: var(--muted); font-size: 0.9rem; margin: 0 0 20px; }
.hero-lead__note { font-size: 0.8rem; color: var(--muted); margin: 16px 0 0; text-align: center; }

.hero-floats {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}
.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  color: var(--muted);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transform-style: preserve-3d;
}
.hero-float img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.hero-float span { color: var(--text); white-space: nowrap; }
.hero-float--1 { top: 22%; right: 8%; animation: floatDrift 7s ease-in-out infinite; transform: translateZ(80px) rotateY(-8deg); }
.hero-float--2 { top: 42%; right: 14%; animation: floatDrift 9s ease-in-out infinite 1s; transform: translateZ(120px) rotateY(-12deg); }
.hero-float--3 { top: 58%; right: 6%; animation: floatDrift 8s ease-in-out infinite 2s; transform: translateZ(60px) rotateY(-6deg); }
@keyframes floatDrift {
  0%, 100% { translate: 0 0; }
  50% { translate: -12px -16px; }
}

/* ── Zone marquee ── */
.zone-marquee {
  overflow: hidden;
  padding: 20px 0;
  border-block: 1px solid var(--border);
  background: #000000;
}
.zone-marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}
.zone-marquee__track span {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  white-space: nowrap;
}
.zone-marquee__track span::before {
  content: '◆';
  color: var(--neon);
  margin-right: 12px;
  font-size: 0.6rem;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Market ticker ── */
.market-ticker { padding: 40px 0; background: #000000; }
.market-ticker__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.market-ticker__item {
  padding: 20px 16px;
  text-align: center;
  background: #0a0a0a;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  transform: translateZ(20px);
}
.market-ticker__label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.market-ticker__item strong {
  display: block;
  font-size: 1.35rem;
  color: var(--neon);
  text-shadow: 0 0 16px var(--neon-dim);
}
.market-ticker__delta {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Feature grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-tile {
  padding: 28px 24px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  transform: translateZ(24px);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.feature-tile:hover {
  transform: translateZ(48px) translateY(-4px);
  box-shadow: 0 0 32px var(--neon-dim);
}
.feature-tile__icon { font-size: 1.8rem; margin-bottom: 12px; }
.feature-tile h3 { margin: 0 0 8px; font-size: 1.05rem; }
.feature-tile p { margin: 0; font-size: 0.88rem; color: var(--muted); }

/* ── Areas grid ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.area-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--glass-border);
  transform: translateZ(20px);
  transition: transform 0.4s, box-shadow 0.4s;
  display: block;
  color: var(--text);
}
.area-card:hover {
  transform: translateZ(40px) scale(1.02);
  box-shadow: 0 0 40px var(--neon-dim);
  color: var(--text);
}
.area-card--lg {
  grid-row: span 2;
  aspect-ratio: auto;
}
.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.area-card:hover img { transform: scale(1.06); }
.area-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.area-card__overlay h3 { margin: 0 0 4px; font-size: 1.1rem; }
.area-card__overlay p { margin: 0; font-size: 0.82rem; color: var(--muted); }

/* ── Process steps ── */
.process-3d {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  perspective: var(--perspective);
}
.process-step {
  padding: 28px 22px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  transform: translateZ(30px) rotateY(-3deg);
  transition: transform 0.4s;
}
.process-step:nth-child(even) { transform: translateZ(30px) rotateY(3deg); }
.process-step:hover { transform: translateZ(50px) rotateY(0deg); }
.process-step__num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--neon);
  opacity: 0.5;
  margin-bottom: 12px;
  text-shadow: 0 0 20px var(--neon-glow);
}
.process-step h3 { margin: 0 0 10px; font-size: 1rem; }
.process-step p { margin: 0; font-size: 0.85rem; color: var(--muted); }

/* ── Photo mosaic ── */
.photo-mosaic { padding: 80px 0; }
.photo-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 160px);
  gap: 12px;
}
.photo-mosaic__item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transform: translateZ(16px);
  transition: transform 0.4s, box-shadow 0.4s;
}
.photo-mosaic__item:hover {
  transform: translateZ(36px) scale(1.02);
  box-shadow: 0 0 30px var(--neon-dim);
  z-index: 2;
}
.photo-mosaic__item img { width: 100%; height: 100%; object-fit: cover; }
.photo-mosaic__item--tall { grid-row: span 2; }
.photo-mosaic__item--wide { grid-column: span 2; }

/* ── Team grid ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  padding: 28px 24px;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transform: translateZ(24px);
  transition: transform 0.4s, box-shadow 0.4s;
}
.team-card:hover {
  transform: translateZ(44px);
  box-shadow: 0 0 32px var(--neon-dim);
}
.team-card__photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 2px solid var(--neon);
  box-shadow: 0 0 24px var(--neon-dim);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { margin: 0 0 4px; font-size: 1.05rem; }
.team-card__role { color: var(--neon); font-size: 0.85rem; margin: 0 0 8px; }
.team-card__bio { color: var(--muted); font-size: 0.82rem; margin: 0 0 16px; }

/* ── Rating banner ── */
.rating-banner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 24px;
  margin-bottom: 40px;
  background: #0a0a0a;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}
.rating-banner > div { text-align: center; }
.rating-banner strong {
  display: block;
  font-size: 1.8rem;
  color: var(--neon);
  text-shadow: 0 0 20px var(--neon-glow);
}
.rating-banner span { font-size: 0.8rem; color: var(--muted); }

/* ── FAQ ── */
.faq-3d { max-width: 720px; margin: 0 auto; }
.faq-item {
  margin-bottom: 12px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  overflow: hidden;
  transform: translateZ(16px);
  transition: box-shadow 0.3s;
}
.faq-item[open] { box-shadow: 0 0 24px var(--neon-dim); }
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--neon);
  font-size: 1.2rem;
  font-weight: 400;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin: 0;
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Conversion cards ── */
.conversion-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.conversion-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  color: var(--text);
  transform: translateZ(20px);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s, border-color 0.4s;
}
.conversion-card:hover {
  transform: translateZ(44px) translateY(-4px);
  border-color: var(--neon);
  box-shadow: 0 0 32px var(--neon-dim);
  color: var(--text);
}
.conversion-card__icon { font-size: 1.8rem; margin-bottom: 12px; }
.conversion-card strong { display: block; margin-bottom: 4px; font-size: 1rem; }
.conversion-card span { font-size: 0.8rem; color: var(--muted); }

/* ── Listing cards as links ── */
.carousel-3d__card .listing-card__cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  position: relative;
  z-index: 5;
}
.carousel-3d__card .listing-card__cta:hover {
  color: var(--gold-light);
}
a.listing-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a.listing-card--link:hover {
  color: inherit;
  text-shadow: none;
}

.listing-card--link .listing-card__cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.listing-card--link:hover .listing-card__cta {
  color: var(--gold-light);
}

/* ── Property detail page ── */
.property-breadcrumb {
  padding: 120px 0 16px;
  font-size: 0.88rem;
}
.property-breadcrumb a { color: var(--muted); }
.property-breadcrumb a:hover { color: var(--gold); }

.property-detail { padding-bottom: 80px; }
.property-detail__header { margin-bottom: 32px; }
.property-detail__header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 12px 0 6px;
}
.property-detail__location {
  color: var(--muted);
  margin: 0 0 16px;
  font-size: 1rem;
}
.property-detail__price {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 20px var(--neon-dim);
}
.property-detail__price-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.property-gallery { margin-bottom: 48px; }
.property-gallery__main {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 16/10;
  background: #0a0a0a;
  margin-bottom: 12px;
}
.property-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
}
.property-gallery__thumb {
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: none;
  aspect-ratio: 4/3;
  opacity: 0.65;
  transition: opacity 0.25s, border-color 0.25s;
}
.property-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.property-gallery__thumb.is-active,
.property-gallery__thumb:hover {
  opacity: 1;
  border-color: var(--gold);
}

.property-detail__grid {
  display: grid;
  grid-template-columns: 1fr min(340px, 100%);
  gap: 40px;
  align-items: start;
}
.property-detail__main h2 {
  font-size: 1.25rem;
  margin: 0 0 20px;
  color: var(--gold-light);
}
.property-about,
.property-features {
  margin-top: 40px;
}
.property-about p {
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
}

.property-specs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.property-spec {
  padding: 18px 16px;
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
}
.property-spec strong {
  display: block;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.property-spec span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.property-features__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.property-features__list li {
  padding: 12px 16px;
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.property-features__list li::before {
  content: '✓ ';
  color: var(--gold);
  font-weight: 700;
}

.property-enquiry h3 { margin: 0 0 8px; font-size: 1.1rem; }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }

/* ── Mobile ── */
@media (max-width: 900px) {
  .property-breadcrumb { padding-top: 88px; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 20px;
    background: rgba(0, 0, 0, 0.98);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }
  .site-nav.is-open { display: flex; }
  .site-header .btn--primary { display: none; }

  .hero-world__layout { grid-template-columns: 1fr; }
  .hero-floats { display: none; }
  .hero-checklist { grid-template-columns: 1fr; }

  .market-ticker__grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .area-card--lg { grid-row: span 1; aspect-ratio: 4/3; }
  .process-3d { grid-template-columns: 1fr; }
  .process-step { transform: none !important; }
  .photo-mosaic__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .photo-mosaic__item--tall,
  .photo-mosaic__item--wide { grid-row: span 1; grid-column: span 1; }
  .team-grid { grid-template-columns: 1fr; }
  .conversion-strip { grid-template-columns: 1fr 1fr; }
  .rating-banner { gap: 20px; }
  .property-detail__grid { grid-template-columns: 1fr; }
  .property-breadcrumb { padding-top: 88px; }

  .property-search {
    grid-template-columns: 1fr 1fr;
  }
  .property-search .btn--primary {
    grid-column: 1 / -1;
  }

  .vault-grid,
  .grid-2,
  .grid-3,
  .site-footer__grid { grid-template-columns: 1fr; }

  .fan-3d {
    flex-direction: column;
    gap: 16px;
    min-height: auto;
  }
  .fan-3d .testimonial-card,
  .fan-3d .testimonial-card:nth-child(1),
  .fan-3d .testimonial-card:nth-child(2),
  .fan-3d .testimonial-card:nth-child(3) {
    transform: none !important;
    width: 100%;
  }

  .blog-stack {
    flex-direction: column;
    align-items: center;
    min-height: auto;
  }
  .blog-stack .blog-card,
  .blog-stack .blog-card:nth-child(1),
  .blog-stack .blog-card:nth-child(2),
  .blog-stack .blog-card:nth-child(3) {
    transform: none !important;
  }

  .addons-orbit { height: auto; perspective: none; }
  .addons-orbit__ring {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    animation: none;
    width: 100%;
    height: auto;
  }
  .addon-card { position: static !important; width: auto; transform: none !important; }

  .carousel-3d__stage { height: auto; }
  .carousel-3d__controls { margin-top: 20px; }

  .depth-showcase { height: 320px; }
  .depth-showcase__layer--back,
  .depth-showcase__layer--mid { display: none; }
  .depth-showcase__layer--front { inset: 0; transform: none; }
  .depth-showcase__caption { position: relative; bottom: auto; margin-top: -80px; }
}
