/* ========================================
   KASHMIR ESTATES — COMPLETE STYLESHEET
   ======================================== */

/* --- Custom Properties --- */
:root {
  --bg: #0D0B08;
  --bg-soft: #151210;
  --saffron: #C8873A;
  --rose: #B5735A;
  --slate: #2C3E35;
  --teal: #1A4A4A;
  --cream: #F0EAD6;
  --gold: #D4A853;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 8px 40px rgba(13,11,8,0.5);
  --shadow-lg: 0 20px 80px rgba(13,11,8,0.6);
  --ease: cubic-bezier(0.25,0.46,0.45,0.94);
  --ease-out: cubic-bezier(0.33,1,0.68,1);
  --font-h: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'DM Sans', system-ui, sans-serif;
  --nav-h: 72px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-b);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none) and (pointer: coarse) { body { cursor: auto; } }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; cursor: none; }
button { background: none; border: none; color: inherit; font-family: inherit; cursor: none; }
ul, ol { list-style: none; }
::selection { background: var(--saffron); color: var(--bg); }
input, textarea { font-family: inherit; }

/* --- Grain Overlay --- */
.grain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.035;
}

/* --- Custom Cursor --- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  pointer-events: none;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
}
.cursor__dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.15s var(--ease);
}
.cursor__ring {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.15s var(--ease), width 0.2s var(--ease-out), height 0.2s var(--ease-out);
}
.cursor--hover .cursor__dot { opacity: 0; }
.cursor--hover .cursor__ring { opacity: 1; }
.cursor__label {
  position: absolute;
  font-family: var(--font-b);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: lowercase;
  opacity: 0;
  transition: opacity 0.15s var(--ease);
  white-space: nowrap;
  pointer-events: none;
}
.cursor--explore .cursor__label,
.cursor--drag .cursor__label { opacity: 1; }
.cursor--explore .cursor__ring,
.cursor--drag .cursor__ring { opacity: 1; width: 100px; height: 100px; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 60px);
  height: var(--nav-h);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.nav--scrolled {
  background: rgba(13,11,8,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav__logo {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.nav__links { display: flex; gap: 36px; }
.nav__link {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  color: var(--cream);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--saffron);
  transition: width 0.3s var(--ease-out);
}
.nav__link:hover,
.nav__link--active { color: var(--saffron); }
.nav__link--active::after,
.nav__link:hover::after { width: 100%; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(13,11,8,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu--open { opacity: 1; pointer-events: all; }
.mobile-menu__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: blur(2px);
}
.mobile-menu__links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-menu__links a {
  font-family: var(--font-h);
  font-size: 42px;
  font-weight: 300;
  color: var(--cream);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease-out), color 0.3s var(--ease);
}
.mobile-menu--open .mobile-menu__links a { opacity: 1; transform: translateY(0); }
.mobile-menu--open .mobile-menu__links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu--open .mobile-menu__links a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu--open .mobile-menu__links a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu--open .mobile-menu__links a:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu__links a:hover { color: var(--saffron); }
.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  font-family: var(--font-h);
  font-size: 36px;
  color: var(--cream);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.mobile-menu__close:hover { color: var(--saffron); transform: rotate(90deg); }

/* --- Hero --- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 clamp(24px, 4vw, 60px) clamp(40px, 6vh, 100px);
}
.hero__bg {
  position: absolute;
  inset: -15%;
  width: 130%;
  height: 130%;
  will-change: transform;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken-burns 20s var(--ease-out) forwards;
}
@keyframes ken-burns { from { transform: scale(1); } to { transform: scale(1.12); } }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,8,0.8) 0%, rgba(13,11,8,0.2) 40%, rgba(13,11,8,0.1) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 900px; }
.hero__title {
  font-family: var(--font-h);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 24px;
  font-size: clamp(56px, 8vw, 110px);
}
.hero__line { display: block; }
.hero__line--accent { font-size: clamp(64px, 9vw, 120px); margin-top: -4px; }
.hero__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.hero__word--visible { opacity: 1; transform: translateY(0); }
.hero__word--saffron { color: var(--saffron); }
.hero__subtitle {
  font-size: 18px;
  color: var(--cream);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease) 0.8s, transform 0.8s var(--ease) 0.8s;
  max-width: 440px;
}
.hero__subtitle--visible { opacity: 0.85; transform: translateY(0); }
.hero__scroll {
  position: absolute;
  bottom: clamp(24px, 4vh, 60px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: var(--cream);
  opacity: 0.4;
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--saffron);
  animation: scroll-line 2s var(--ease-in-out) infinite;
}
@keyframes scroll-line { 0% { top: -50%; } 100% { top: 150%; } }
.hero__scroll-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--cream);
  opacity: 0.4;
}

/* --- Scene (shared immersive section) --- */
.scene {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.scene__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.scene__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.2s var(--ease-out);
}
.scene__visual-img--revealed { transform: scale(1); }
.scene__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,11,8,0.7) 0%, rgba(13,11,8,0.1) 60%);
}
.scene__text { position: relative; z-index: 2; max-width: 600px; }

/* --- Property Cards --- */
.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-soft);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__image-wrap { overflow: hidden; position: relative; height: 100%; }
.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}
.card:hover .card__image { transform: scale(1.05); }
.card__price {
  position: absolute;
  top: 20px;
  right: -4px;
  z-index: 3;
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 400;
  color: var(--saffron);
  background: rgba(13,11,8,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 18px 8px 14px;
  border-radius: 4px;
  transform: rotate(-3deg);
}
.card__location {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--cream);
  opacity: 0.8;
  background: rgba(13,11,8,0.6);
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.card__heart {
  position: absolute;
  top: 20px;
  left: 16px;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,11,8,0.5);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: background 0.3s var(--ease);
}
.card__heart svg {
  width: 18px;
  height: 18px;
  transition: fill 0.3s var(--ease), stroke 0.3s var(--ease);
}
.card__heart--saved svg { fill: var(--saffron); stroke: var(--saffron); }
.card__details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 20px;
  background: linear-gradient(to top, rgba(13,11,8,0.9) 60%, transparent);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.card:hover .card__details { transform: translateY(0); }
.card__details-row { display: flex; gap: 20px; margin-bottom: 10px; }
.card__details-item {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--cream);
  opacity: 0.8;
}
.card__details-link {
  font-size: 13px;
  color: var(--saffron);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease-out);
}
.card:hover .card__details-link { gap: 12px; }
.card__name {
  padding: 16px 20px;
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
}

/* --- Horizontal Scroll --- */
.h-scroll { position: relative; }
.h-scroll__track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 40px clamp(24px, 4vw, 60px) 60px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.h-scroll__track::-webkit-scrollbar { display: none; }
.h-scroll__track.is-dragging { scroll-snap-type: none; cursor: grabbing; }
.h-scroll__track .card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  height: 480px;
}
.h-scroll__label {
  position: absolute;
  bottom: 24px;
  right: clamp(24px, 4vw, 60px);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  color: var(--cream);
  opacity: 0.4;
  display: flex;
  align-items: center;
  gap: 8px;
}
.h-scroll__label-line {
  width: 32px;
  height: 1px;
  background: var(--cream);
  opacity: 0.4;
}

/* --- Lifestyle Categories --- */
.lifestyle {
  position: relative;
  min-height: 100vh;
  padding: clamp(80px, 12vh, 160px) 0 clamp(40px, 6vh, 80px);
}
.lifestyle__item {
  position: relative;
  width: clamp(300px, 40vw, 520px);
  margin-bottom: -80px;
  transition: transform 0.5s var(--ease-out);
}
.lifestyle__item:hover { transform: scale(1.03); }
.lifestyle__item:nth-child(1) { margin-left: clamp(24px, 8vw, 140px); z-index: 3; }
.lifestyle__item:nth-child(2) { margin-left: auto; margin-right: clamp(24px, 6vw, 100px); z-index: 2; }
.lifestyle__item:nth-child(3) { margin-left: clamp(60px, 15vw, 240px); z-index: 1; }
.lifestyle__image {
  width: 100%;
  height: clamp(300px, 45vh, 520px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lifestyle__label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  font-family: var(--font-h);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--cream);
  transition: color 0.4s var(--ease);
}
.lifestyle__item:hover .lifestyle__label { color: var(--saffron); }

/* --- Stats & Pull Quote --- */
.stats-section {
  background: linear-gradient(135deg, var(--teal) 0%, rgba(26,74,74,0.3) 100%);
  padding: clamp(80px, 12vh, 160px) clamp(24px, 4vw, 60px);
  position: relative;
  overflow: hidden;
}
.stats { display: flex; gap: clamp(40px, 6vw, 100px); flex-wrap: wrap; margin-bottom: 80px; }
.stat__number {
  font-family: var(--font-h);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.stat__label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--cream);
  opacity: 0.6;
  margin-top: 8px;
}
.pull-quote {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.3;
  max-width: 700px;
  transform: rotate(2deg);
  font-style: italic;
}

/* --- Editorial Moment --- */
.editorial {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.editorial__bg {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
}
.editorial__bg img { width: 100%; height: 100%; object-fit: cover; }
.editorial__overlay { position: absolute; inset: 0; background: rgba(13,11,8,0.5); }
.editorial__text {
  position: relative;
  z-index: 2;
  font-family: var(--font-h);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 300;
  color: var(--cream);
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  line-height: 1.2;
}

/* --- Contact Teaser --- */
.teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.teaser__visual { position: relative; overflow: hidden; }
.teaser__visual img { width: 100%; height: 100%; object-fit: cover; }
.teaser__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--bg) 100%);
}
.teaser__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 120px);
}
.teaser__title {
  font-family: var(--font-h);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 32px;
  line-height: 1.1;
}
.teaser__buttons { display: flex; gap: 20px; flex-wrap: wrap; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn--saffron { background: var(--saffron); color: var(--bg); }
.btn--saffron:hover { background: var(--gold); transform: translateY(-2px); }
.btn--outline { border: 1.5px solid rgba(240,234,214,0.25); color: var(--cream); }
.btn--outline:hover { border-color: var(--cream); }
.btn--teal { background: var(--teal); color: var(--cream); }
.btn--teal:hover { background: #1f5a5a; }
.btn--magnetic { transition: transform 0.2s var(--ease-out), background 0.3s var(--ease-out); }
.btn__arrow { display: inline-block; transition: transform 0.3s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* --- Footer --- */
.footer {
  border-top: 1px solid rgba(240,234,214,0.08);
  padding: 60px clamp(24px, 4vw, 60px) 40px;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.footer__logo { font-family: var(--font-h); font-size: 20px; color: var(--cream); display: block; margin-bottom: 8px; }
.footer__tagline { font-size: 12px; letter-spacing: 0.12em; text-transform: lowercase; color: var(--cream); opacity: 0.4; }
.footer__links { display: flex; gap: 28px; }
.footer__links a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--cream);
  opacity: 0.5;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}
.footer__links a:hover { opacity: 1; color: var(--saffron); }
.footer__copy {
  width: 100%;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(240,234,214,0.06);
  font-size: 12px;
  color: var(--cream);
  opacity: 0.3;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}

/* --- WhatsApp Button --- */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8000;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26,74,74,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.3s var(--ease);
}
.whatsapp-btn--visible { opacity: 1; transform: translateY(0); }
.whatsapp-btn--pulse { animation: wa-pulse 0.6s var(--ease) 1; }
@keyframes wa-pulse { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(0) scale(1.15); } }
.whatsapp-btn:hover { background: #1f5a5a; }
.whatsapp-btn svg { width: 24px; height: 24px; fill: var(--cream); }

/* --- Page Transition --- */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99998;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.page-transition--out { opacity: 0; }

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal--left { transform: translateX(-40px); }
.reveal--scale { transform: scale(0.95); }
.reveal--wipe {
  opacity: 1;
  transform: none;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.reveal--wipe::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 0.9s var(--ease-out);
  z-index: 1;
}
.revealed { opacity: 1; transform: translateY(0) translateX(0) scale(1); }
.reveal--wipe.revealed::before { transform: scaleX(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }
.reveal[data-delay="6"] { transition-delay: 0.6s; }

/* --- Utilities --- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--saffron);
  margin-bottom: 20px;
  display: block;
}
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 40px) clamp(24px, 4vw, 60px) 60px;
  position: relative;
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; opacity: 0.3; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg) 10%, transparent 60%); }
.page-hero__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-h);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: var(--cream);
}

/* --- Properties Page --- */
.filters {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: rgba(13,11,8,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px clamp(24px, 4vw, 60px);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid rgba(240,234,214,0.06);
}
.filter-pill {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  border: 1px solid rgba(240,234,214,0.15);
  color: var(--cream);
  opacity: 0.6;
  transition: all 0.3s var(--ease);
}
.filter-pill:hover,
.filter-pill--active {
  border-color: var(--saffron);
  color: var(--saffron);
  opacity: 1;
  background: rgba(200,135,58,0.08);
}
.properties-grid {
  padding: clamp(40px, 6vh, 80px) clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.properties-grid .card { height: 460px; }
.load-more-wrap { text-align: center; padding: 20px 0 80px; }

/* --- Map View --- */
.map-view {
  display: none;
  position: relative;
  height: 70vh;
  margin: 0 clamp(24px, 4vw, 60px);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--slate);
}
.map-view--active { display: block; }
.map-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--saffron);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px rgba(200,135,58,0.2), 0 0 0 12px rgba(200,135,58,0.08);
  transition: transform 0.3s var(--ease-out);
  cursor: none;
}
.map-pin:hover { transform: translate(-50%, -50%) scale(1.3); }
.map-pin-label {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--cream);
  white-space: nowrap;
  opacity: 0.8;
  background: rgba(13,11,8,0.7);
  padding: 3px 10px;
  border-radius: 4px;
  pointer-events: none;
}

/* --- Property Detail --- */
.detail-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  max-width: 1400px;
  margin: -120px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 clamp(24px, 4vw, 60px) 80px;
}
.detail-content { padding-right: 60px; }
.detail-sidebar { padding-left: 40px; border-left: 1px solid rgba(240,234,214,0.08); }
.detail-sidebar__sticky { position: sticky; top: calc(var(--nav-h) + 40px); }
.detail-price {
  font-family: var(--font-h);
  font-size: 48px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 8px;
}
.detail-price-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  color: var(--cream);
  opacity: 0.5;
  margin-bottom: 28px;
}
.detail-sidebar-btns { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.detail-share { display: flex; gap: 16px; margin-top: 16px; }
.detail-share button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(240,234,214,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.detail-share button:hover { border-color: var(--saffron); color: var(--saffron); }
.detail-section { margin-bottom: 48px; }
.detail-section-title {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 20px;
}
.detail-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--cream);
  opacity: 0.75;
}
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: rgba(240,234,214,0.03);
  text-align: center;
  transition: background 0.3s var(--ease);
}
.amenity:hover { background: rgba(200,135,58,0.06); }
.amenity svg { width: 24px; height: 24px; stroke: var(--saffron); fill: none; stroke-width: 1.5; }
.amenity__label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--cream);
  opacity: 0.7;
}
.detail-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 40px; }
.detail-gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  cursor: none;
}
.detail-gallery img:hover { opacity: 0.8; transform: scale(1.02); }
.similar-title {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 24px;
}
.similar-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
}
.similar-scroll::-webkit-scrollbar { display: none; }
.similar-scroll .card { flex: 0 0 320px; height: 400px; }

/* --- About Page --- */
.about-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(80px, 12vh, 160px) clamp(24px, 4vw, 60px);
  position: relative;
  overflow: hidden;
}
.about-hero__bg { position: absolute; inset: -10%; width: 120%; height: 120%; opacity: 0.15; }
.about-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.about-statement {
  font-family: var(--font-h);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  max-width: 900px;
  position: relative;
  z-index: 1;
}
.about-pull-quote {
  font-family: var(--font-h);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.3;
  max-width: 650px;
  transform: rotate(-2deg);
  padding: clamp(60px, 8vh, 120px) clamp(24px, 4vw, 60px);
  font-style: italic;
}
.team-section { padding: clamp(60px, 8vh, 120px) clamp(24px, 4vw, 60px); }
.team-section__title {
  font-family: var(--font-h);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 48px;
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }
.team-member { position: relative; }
.team-member__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(0.3);
  transition: filter 0.5s var(--ease);
}
.team-member:hover .team-member__img { filter: grayscale(0); }
.team-member__name { font-family: var(--font-h); font-size: 22px; color: var(--cream); margin-top: 16px; }
.team-member__role { font-size: 12px; letter-spacing: 0.12em; text-transform: lowercase; color: var(--saffron); margin-top: 4px; }
.timeline-section { padding: clamp(60px, 8vh, 120px) 0; overflow: hidden; }
.timeline-section__title {
  font-family: var(--font-h);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 48px;
  padding: 0 clamp(24px, 4vw, 60px);
}
.timeline-track {
  display: flex;
  gap: 0;
  padding: 0 clamp(24px, 4vw, 60px) 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.timeline-track::-webkit-scrollbar { display: none; }
.timeline-item {
  flex: 0 0 280px;
  scroll-snap-align: start;
  padding: 32px;
  border-left: 2px solid var(--saffron);
  margin-left: 40px;
}
.timeline-item:first-child { margin-left: 0; }
.timeline-year { font-family: var(--font-h); font-size: 36px; font-weight: 300; color: var(--saffron); margin-bottom: 12px; }
.timeline-text { font-size: 15px;
