/* ══════════════════════════════════════════════
   DESIGN TOKENS — OBSIDIAN × GOLD SYSTEM
══════════════════════════════════════════════ */
:root {
  --obsidian:        #080808;
  --obsidian-2:      #101010;
  --obsidian-3:      #161616;
  --surface:         #1c1c1c;
  --surface-2:       #222222;
  --border:          rgba(255,255,255,0.06);
  --border-gold:     rgba(212,175,55,0.15);
  --border-gold-hi:  rgba(212,175,55,0.4);
  --gold:            #d4af37;
  --gold-light:      #f4d03f;
  --gold-dim:        rgba(212,175,55,0.08);
  --gold-glow:       rgba(212,175,55,0.25);
  --text:            #f0ece4;
  --text-dim:        rgba(240,236,228,0.55);
  --text-hint:       rgba(240,236,228,0.3);
  --display:         'Cormorant Garamond', 'Georgia', serif;
  --body:            'DM Sans', system-ui, sans-serif;
  --mono:            'DM Mono', 'Courier New', monospace;
  --ease-out:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-inout:      cubic-bezier(0.45, 0, 0.55, 1);
}

/* ══════ RESET ══════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; overflow-x:hidden; -webkit-text-size-adjust:100%; }
body {
  background: var(--obsidian);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width:100%; height:auto; display:block; }
button, a, input, select, textarea { min-height: 44px; }
* { -webkit-tap-highlight-color: transparent; }

/* ══════ SCROLLBAR ══════ */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--obsidian); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: rgba(212,175,55,0.3); }

/* ══════ AMBIENT GRAIN OVERLAY ══════ */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.4;
}

/* ══════ GOLD SHIMMER LINES ══════ */
.gold-line {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.2;
}

/* ══════ SKIP LINK ══════ */
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
.sr-only:focus { position:fixed; top:1rem; left:1rem; width:auto; height:auto; clip:auto; z-index:9999; padding:.5rem 1rem; background:var(--gold); color:var(--obsidian); border-radius:4px; font-weight:600; }

/* ══════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════ */
#navbar {
  position: fixed; top:0; left:0; right:0;
  z-index: 1000;
  height: 72px;
  display: flex; align-items: center;
  background: rgba(8,8,8,0.75);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.4s, background 0.4s;
  will-change: transform;
}
#navbar.scrolled {
  border-bottom-color: rgba(212,175,55,0.12);
  background: rgba(8,8,8,0.92);
}
.nav-inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo {
  width: 36px; height: 36px; border-radius: 50%; overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo img { width:100%; height:100%; object-fit:cover; }
.nav-wordmark {
  font-family: var(--display);
  font-size: 22px; font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.nav-wordmark span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 400;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  padding: 9px 22px;
  border: 1px solid var(--border-gold-hi);
  color: var(--gold);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s;
  background: var(--gold-dim);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--obsidian);
  box-shadow: 0 0 20px var(--gold-glow);
}
.mob-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 6px 10px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
#mobileMenu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 32px;
  z-index: 999;
  flex-direction: column;
}
#mobileMenu.open { display: flex; }
.mob-link {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.mob-link:hover { color: var(--gold); }
.mob-cta-btn {
  margin-top: 16px;
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--obsidian);
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* ══════════════════════════════════════════════
   SCROLL REVEAL SYSTEM
══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ══════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

/* Background slider */
.hero-slides {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
  transform: scale(1.05);
  transition: opacity 1.4s ease-in-out, transform 8s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.5) 0%,
    rgba(8,8,8,0.35) 40%,
    rgba(8,8,8,0.75) 100%
  );
}

/* Parallax wrapper */
.hero-parallax {
  position: absolute; inset: -20%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* Hero vignette sides */
#hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(8,8,8,0.5) 0%, transparent 30%, transparent 70%, rgba(8,8,8,0.5) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 900px;
  text-align: center;
}

/* Staggered hero animations */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeUp 0.7s 0.2s var(--ease-out) forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(52px, 9vw, 108px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.35s var(--ease-out) forwards;
}
.hero-title .gold-word {
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  display: inline;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.5s var(--ease-out) forwards;
}

/* Glass search card */
.search-card {
  opacity: 0;
  animation: heroFadeUp 0.9s 0.65s var(--ease-out) forwards;
  background: rgba(22,22,22,0.7);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 20px 20px 24px;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.search-card:hover {
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 0 40px rgba(212,175,55,0.08), 0 24px 48px rgba(0,0,0,0.4);
}

.search-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: 20px;
}
.tab-btn {
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  min-height: 40px;
}
.tab-btn:hover { color: var(--text); border-color: var(--border-gold); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--obsidian);
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(212,175,55,0.3);
}

.search-form { display: none; }
.search-form.active { display: block; }

.search-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
@media (min-width: 768px) { .search-grid { grid-template-columns: repeat(3, 1fr); } }

.search-select {
  width: 100%;
  padding: 11px 14px;
  background: rgba(8,8,8,0.6);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-dim);
  font-family: var(--body);
  font-size: 13px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.25s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23d4af37' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
  padding-right: 32px;
}
.search-select:focus { border-color: var(--gold); }
.search-select option { background: var(--obsidian-2); color: var(--text); }

/* Shimmer button */
.shimmer-btn {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  color: var(--obsidian);
  font-family: var(--body);
  font-size: 14px; font-weight: 700;
  border: none; border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: box-shadow 0.3s, transform 0.2s;
  animation: shimmerSlide 3.5s ease-in-out infinite;
}
.shimmer-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  animation: shimmerPass 3.5s ease-in-out infinite;
}
.shimmer-btn:hover {
  box-shadow: 0 0 30px var(--gold-glow), 0 8px 24px rgba(0,0,0,0.4);
  transform: translateY(-1px);
}
.shimmer-btn:active { transform: translateY(0); }

@keyframes shimmerPass {
  0% { left: -75%; }
  40%,100% { left: 125%; }
}
@keyframes shimmerSlide {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Stats */
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: heroFadeUp 0.8s 1s var(--ease-out) forwards;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--display);
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}
.stat-label {
  font-size: 11px;
  color: var(--text-hint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0;
  animation: heroFadeUp 0.6s 1.4s forwards;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 11px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 6px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollWheel 2s ease-in-out infinite;
}
.scroll-text {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-hint);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@keyframes heroFadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes scrollWheel {
  0%   { opacity:1; transform:translateY(0); }
  100% { opacity:0; transform:translateY(8px); }
}

/* ══════════════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════════════ */
.section {
  padding: 96px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-full { padding: 96px 0; }
.section-full > .inner { padding: 0 24px; max-width: 1280px; margin: 0 auto; }

.section-label {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 10px; font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section-title .gold { color: var(--gold); }
.section-desc {
  font-size: 15px; font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════ */
#about { background: var(--obsidian-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 56px;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%; height: 420px;
  object-fit: cover;
  transition: transform 6s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }
.about-img-frame {
  position: absolute; inset: 0;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  pointer-events: none;
}
.about-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  padding: 12px 16px;
}
.about-img-badge .num {
  font-family: var(--display);
  font-size: 28px; font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.about-img-badge .lbl {
  font-size: 11px;
  color: var(--text-hint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-text p {
  font-size: 15px; font-weight: 300;
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 18px;
}
.about-text p strong { color: var(--text); font-weight: 500; }

.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px;
  transition: border-color 0.3s, background 0.3s;
}
.pillar:hover { border-color: var(--border-gold); background: var(--surface-2); }
.pillar-icon {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.pillar-icon svg { width:18px; height:18px; color: var(--gold); }
.pillar-name { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.pillar-desc { font-size: 12px; color: var(--text-hint); line-height: 1.6; }

/* ══════════════════════════════════════════════
   PROPERTY CARDS
══════════════════════════════════════════════ */
#properties { background: var(--obsidian-3); }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 16px;
  flex-wrap: wrap;
}
.view-all {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: gap 0.25s;
}
.view-all:hover { gap: 10px; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cards-grid { grid-template-columns: 1fr; } }

/* Property card — 3D tilt + image zoom */
.prop-card {
  position: relative;
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  will-change: transform;
  border: 1px solid var(--border);
}
.prop-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5), 0 0 0 1px var(--border-gold);
}

.prop-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.prop-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
  will-change: transform;
}
.prop-card:hover .prop-img-wrap img { transform: scale(1.08); }

.prop-badge-tl {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.06em;
}
.badge-sale { background: var(--gold); color: var(--obsidian); }
.badge-rent { background: #3b82f6; color: #fff; }

.prop-badge-tr {
  position: absolute; top: 14px; right: 14px;
  padding: 4px 10px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}

/* Overlay CTA */
.prop-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex; align-items: flex-end;
  padding: 16px;
}
.prop-card:hover .prop-overlay { opacity: 1; }
.prop-overlay-btn {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--obsidian);
  font-weight: 700; font-size: 13px;
  border: none; border-radius: 6px;
  cursor: pointer;
  transform: translateY(8px);
  transition: transform 0.35s var(--ease-out);
}
.prop-card:hover .prop-overlay-btn { transform: translateY(0); }

.prop-body { padding: 18px; }
.prop-title-row {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 8px;
  margin-bottom: 6px;
}
.prop-name {
  font-family: var(--display);
  font-size: 18px; font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
/* Dynamic price pop */
.prop-price {
  font-family: var(--display);
  font-size: 17px; font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  transition: color 0.25s, text-shadow 0.25s, transform 0.25s;
  transform-origin: right;
}
.prop-card:hover .prop-price {
  color: var(--gold-light);
  text-shadow: 0 0 12px rgba(244,208,63,0.5);
  transform: scale(1.05);
}

.prop-location { font-size: 13px; color: var(--text-hint); margin-bottom: 14px; }
.prop-meta {
  display: flex; align-items: center; gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.prop-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--text-hint);
}
.prop-meta-item svg { width:14px; height:14px; color: var(--text-hint); }

/* ══════════════════════════════════════════════
   CARS CAROUSEL
══════════════════════════════════════════════ */
#cars { background: var(--surface); }

.carousel-wrap {
  overflow: hidden;
  margin: 0 -24px;
  padding: 0 24px;
}
.cars-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
  -ms-overflow-style: none;
}
.cars-track::-webkit-scrollbar { display: none; }

.car-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--obsidian-3);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
  cursor: pointer;
}
.car-card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px var(--border-gold);
  border-color: var(--border-gold);
}

.car-img-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.car-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.car-card:hover .car-img-wrap img { transform: scale(1.09); }

.car-year-badge {
  position: absolute; top: 12px; right: 12px;
  padding: 4px 10px;
  background: var(--gold);
  color: var(--obsidian);
  font-family: var(--mono);
  font-size: 10px; font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.car-body { padding: 16px; }
.car-name {
  font-family: var(--display);
  font-size: 17px; font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.car-meta { font-size: 12px; color: var(--text-hint); margin-bottom: 14px; }
.car-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.car-price {
  font-family: var(--display);
  font-size: 18px; font-weight: 700;
  color: var(--gold);
  transition: color 0.25s, text-shadow 0.25s;
}
.car-card:hover .car-price {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(244,208,63,0.4);
}
.car-details-btn {
  font-size: 12px;
  color: var(--text-hint);
  background: none; border: none;
  cursor: pointer;
  transition: color 0.25s;
  padding: 4px;
}
.car-details-btn:hover { color: var(--gold); }

.carousel-controls {
  display: flex; gap: 10px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-dim);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
}
.carousel-btn:hover { border-color: var(--gold); color: var(--gold); }
.carousel-btn svg { width: 18px; height: 18px; }

/* ══════════════════════════════════════════════
   INVESTMENT PROJECTS
══════════════════════════════════════════════ */
#investments { background: var(--obsidian-2); }
.invest-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 768px) { .invest-grid { grid-template-columns: 1fr; } }

.invest-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s;
}
.invest-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.invest-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.invest-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.invest-card:hover .invest-img-wrap img { transform: scale(1.04); }
.invest-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,22,22,0.95) 0%, rgba(22,22,22,0.3) 60%, transparent 100%);
}
.invest-img-info {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  z-index: 1;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.invest-img-title {
  font-family: var(--display);
  font-size: 22px; font-weight: 600;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 4px;
}
.invest-img-loc { font-size: 12px; color: var(--text-hint); }
.active-badge {
  padding: 5px 12px;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  font-family: var(--mono);
  font-size: 10px; font-weight: 500;
  border-radius: 100px;
  border: 1px solid rgba(74, 222, 128, 0.3);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.invest-body { padding: 20px; }
.invest-kpi-row {
  display: flex; justify-content: space-between;
  margin-bottom: 20px;
}
.invest-kpi-label { font-size: 11px; color: var(--text-hint); margin-bottom: 4px; letter-spacing: 0.05em; }
.invest-kpi-val {
  font-family: var(--display);
  font-size: 20px; font-weight: 700;
  color: var(--gold);
}
.invest-kpi-val.green { color: #4ade80; }

.progress-label-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.progress-label { font-size: 12px; color: var(--text-hint); }
.progress-pct { font-family: var(--mono); font-size: 12px; color: var(--gold); }
.progress-track {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 20px;
}
.progress-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0;
  transition: width 1.2s var(--ease-out);
}

.invest-actions { display: flex; gap: 10px; }
.invest-btn {
  flex: 1;
  padding: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--obsidian);
  font-family: var(--body);
  font-size: 13px; font-weight: 700;
  border: none; border-radius: 6px;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.2s;
  position: relative; overflow: hidden;
}
.invest-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  animation: shimmerPass 3.5s ease-in-out infinite;
}
.invest-btn:hover {
  box-shadow: 0 0 24px var(--gold-glow);
  transform: translateY(-1px);
}
.invest-doc-btn {
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 6px;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.25s;
  display: flex; align-items: center; justify-content: center;
}
.invest-doc-btn:hover { border-color: var(--gold); color: var(--gold); }
.invest-doc-btn svg { width: 18px; height: 18px; }

/* ══════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════ */
#why { background: var(--obsidian-3); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  border-color: var(--border-gold);
  background: var(--surface-2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.why-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.3s, transform 0.4s var(--ease-out), box-shadow 0.3s;
}
.why-card:hover .why-icon-wrap {
  background: rgba(212,175,55,0.15);
  transform: translateY(-4px) rotate(5deg);
  box-shadow: 0 8px 20px rgba(212,175,55,0.2);
}
.why-icon-wrap svg { width: 24px; height: 24px; color: var(--gold); }

.why-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.why-desc { font-size: 13px; color: var(--text-hint); line-height: 1.7; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
  background: var(--obsidian);
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand-name {
  font-family: var(--display);
  font-size: 22px; font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.footer-brand-name span { color: var(--gold); }
.footer-tagline { font-size: 13px; font-weight: 300; color: var(--text-dim); line-height: 1.8; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: var(--text-dim);
  transition: all 0.25s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.social-btn.wa:hover { border-color: #25d366; color: #25d366; }
.social-btn svg { width: 16px; height: 16px; }

.footer-col-title {
  font-size: 11px; font-weight: 600;
  color: var(--text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13px; font-weight: 300;
  color: var(--text-dim);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.25s, gap 0.25s;
}
.footer-links a::before { content: '›'; color: var(--gold); font-size: 14px; }
.footer-links a:hover { color: var(--gold); gap: 12px; }

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; }
.contact-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 14px; height: 14px; color: var(--gold); }
.contact-item a, .contact-item span {
  font-size: 13px; font-weight: 300;
  color: var(--text-dim);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--text-hint); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 12px; color: var(--text-hint);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════
   FLOATING WA BUTTON
══════════════════════════════════════════════ */
#wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  animation: waPulse 2.5s ease-in-out infinite;
}
#wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
  animation: none;
}
#wa-float svg { width: 26px; height: 26px; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0); }
}

/* ══════════════════════════════════════════════
   INQUIRY MODAL
══════════════════════════════════════════════ */
#inquiryModal {
  position: fixed; inset: 0; z-index: 9000;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  overflow-y: auto;
}
#inquiryModal.open { display: flex; }

.modal-inner {
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 32px;
  width: 100%; max-width: 460px;
  position: relative;
  animation: modalIn 0.4s var(--ease-out);
}
@keyframes modalIn {
  from { opacity:0; transform: translateY(20px) scale(0.97); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-dim);
  transition: all 0.2s;
}
.modal-close:hover { border-color: var(--border-gold); color: var(--gold); }
.modal-close svg { width: 16px; height: 16px; }

.modal-title {
  font-family: var(--display);
  font-size: 26px; font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.modal-subtitle { font-family: var(--mono); font-size: 12px; color: var(--gold); margin-bottom: 24px; letter-spacing: 0.04em; }

.modal-form { display: flex; flex-direction: column; gap: 14px; }
.form-label { font-size: 11px; color: var(--text-hint); letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.form-input, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--obsidian-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 90px; }

/* ══════════════════════════════════════════════
   RESPONSIVE UTILITIES
══════════════════════════════════════════════ */
.hide-mobile { display: block; }
@media (max-width: 768px) {
  .hide-mobile { display: none; }
  .mob-btn { display: block; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .section { padding: 64px 20px; }
  #hero { padding: 100px 20px 70px; }
}
@media (max-width: 480px) {
  .section { padding: 48px 16px; }
  .search-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .hero-title { font-size: 44px; }
}

/* safe areas */
.safe-bottom { padding-bottom: env(safe-area-inset-bottom, 20px); }

/* Added Utility Classes for Clean Code */
.text-center { text-align: center; }
.justify-center { justify-content: center; }
