@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ==========================================
   DESIGN TOKENS & SYSTEM VARIABLES
   ========================================== */
:root {
  /* Color Palette - Luxury Dark/Light Hybrid */
  --color-dark-ebony: #0A0B0D;       /* Deepest black for cinematic impact */
  --color-dark-slate: #14161B;       /* Card backgrounds on dark sections */
  --color-gold-primary: #C5A880;     /* Signature warm luxury gold */
  --color-gold-hover: #A68A5E;       /* Deep gold for interactive state changes */
  --color-gold-light: rgba(197, 168, 128, 0.15); /* Translucent gold highlight */
  
  --color-cream-soft: #F7F5F2;       /* Premium editorial off-white for reading sections */
  --color-cream-darker: #EAE7E2;     /* Background for borders/dividers in cream sections */
  
  --color-text-dark: #1A1D20;        /* High-contrast text on cream background */
  --color-text-light: #F7F5F2;       /* High-contrast text on ebony background */
  --color-text-muted: #8A929C;       /* Understated secondary descriptive labels */
  --color-text-muted-dark: #6C737D;  /* Muted dark text on cream */
  
  /* Typography */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Shadows & Glassmorphism */
  --shadow-premium-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
  --shadow-premium-hover: 0 20px 50px -15px rgba(0, 0, 0, 0.15);
  --glass-bg-dark: rgba(10, 11, 13, 0.75);
  --glass-bg-light: rgba(247, 245, 242, 0.8);
  --glass-border: rgba(197, 168, 128, 0.2);
  
  /* Timing & Motion */
  --transition-smooth: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  
  /* Structural Properties */
  --header-height: 80px;
  --max-width: 1400px;
}

/* ==========================================
   RESET & INITIAL BASE STYLES
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--color-dark-ebony);
  color: var(--color-text-light);
  overflow-x: hidden;
}

/* Custom premium scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-dark-ebony);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold-hover);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Helper Headings & Typography Classes */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.05em;
}

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

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

/* ==========================================
   PREMIUM UTILITIES & DESIGN SYSTEM
   ========================================== */
.section-padding {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Light background section override */
.section-light {
  background-color: var(--color-cream-soft);
  color: var(--color-text-dark);
}
.section-light .text-muted {
  color: var(--color-text-muted-dark);
}

/* Luxury Section Titles */
.section-title-wrap {
  text-align: center;
  margin-bottom: 80px;
}
.section-subtitle {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold-primary);
  margin-bottom: 12px;
  display: inline-block;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title-wrap p {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* High-end Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0px; /* Monolithic sharp luxury edges */
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-gold-primary);
  color: var(--color-dark-ebony);
  border: 1px solid var(--color-gold-primary);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}
.btn-primary:hover::after {
  left: 100%;
}
.btn-primary:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197, 168, 128, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-light);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.section-light .btn-secondary {
  color: var(--color-text-dark);
  border-color: rgba(26, 29, 32, 0.25);
}
.btn-secondary:hover {
  background-color: var(--color-text-light);
  color: var(--color-dark-ebony);
  border-color: var(--color-text-light);
  transform: translateY(-3px);
}
.section-light .btn-secondary:hover {
  background-color: var(--color-text-dark);
  color: var(--color-cream-soft);
  border-color: var(--color-text-dark);
}

/* Glassmorphism surface */
.glass-panel {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-premium-soft);
}
.section-light .glass-panel {
  background: var(--glass-bg-light);
  border: 1px solid rgba(197, 168, 128, 0.15);
}

/* ==========================================
   NAVIGATION HEADER
   ========================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}
.main-header.scrolled {
  height: 70px;
  background: rgba(10, 11, 13, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197, 168, 128, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-link:hover .logo-icon {
  transform: rotate(360deg);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  line-height: 1.1;
}
.logo-tag {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--color-gold-primary);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 0;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold-primary);
  transition: var(--transition-fast);
}
.nav-link:hover {
  color: var(--color-text-light);
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link.active {
  color: var(--color-gold-primary);
}
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 10px 20px;
  border: 1px solid var(--color-gold-primary);
  color: var(--color-gold-primary);
  transition: var(--transition-fast);
}
.nav-cta:hover {
  background-color: var(--color-gold-primary);
  color: var(--color-dark-ebony);
  transform: translateY(-2px);
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1100;
}
.mobile-nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--color-text-light);
  transition: var(--transition-fast);
  transform-origin: left;
}

@media (max-width: 991px) {
  .nav-menu {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
  }
}

/* Mobile Sidebar menu styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--color-dark-ebony);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 40px;
}
.mobile-menu-overlay.active {
  right: 0;
}
.mobile-menu-list {
  list-style: none;
  text-align: center;
  margin-bottom: 40px;
}
.mobile-menu-item {
  margin: 24px 0;
}
.mobile-menu-link {
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  text-transform: uppercase;
}
.mobile-menu-link:hover, .mobile-menu-link.active {
  color: var(--color-gold-primary);
}
.mobile-menu-cta {
  width: 80%;
  max-width: 300px;
  margin-top: 20px;
}

/* State when mobile menu is open */
.body-lock {
  overflow: hidden;
}
.mobile-nav-toggle.open span:first-child {
  transform: rotate(45deg);
}
.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.open span:last-child {
  transform: rotate(-45deg);
}

/* ==========================================
   CINEMATIC HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slowZoom 25s infinite alternate ease-in-out;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 11, 13, 0.4) 0%,
    rgba(10, 11, 13, 0.7) 60%,
    var(--color-dark-ebony) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: var(--max-width);
  margin: var(--header-height) auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(100% - var(--header-height));
}
.hero-tag {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-primary);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 500;
}
.hero-desc {
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  max-width: 600px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.scroll-indicator-wrap {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scroll-indicator-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.scroll-indicator-mouse {
  width: 24px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--color-gold-primary);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseScroll 2s infinite ease-in-out;
}

@keyframes slowZoom {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}
@keyframes mouseScroll {
  0% { top: 6px; opacity: 0; }
  30% { opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* ==========================================
   STATISTICS & HIGHLIGHTS SECTION
   ========================================== */
.stats-section {
  padding: 60px 0;
  border-top: 1px solid rgba(197, 168, 128, 0.1);
  border-bottom: 1px solid rgba(197, 168, 128, 0.1);
  background-color: var(--color-dark-ebony);
  position: relative;
  z-index: 5;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item {
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -15px;
  width: 1px;
  height: 80%;
  background: linear-gradient(to bottom, transparent, rgba(197, 168, 128, 0.3), transparent);
}
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 600;
  color: var(--color-gold-primary);
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

@media (max-width: 991px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stat-item::after {
    display: none !important;
  }
}

/* ==========================================
   ABOUT US SECTION
   ========================================== */
.about-section {
  position: relative;
  background-color: var(--color-cream-soft);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-content-left {
  display: flex;
  flex-direction: column;
}
.about-paragraph {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  color: var(--color-text-dark);
  margin-bottom: 24px;
  font-weight: 350;
}
.about-signature-wrap {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--color-cream-darker);
  padding-top: 32px;
}
.about-signature-text {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--color-gold-hover);
  letter-spacing: 0.05em;
}
.about-signature-meta {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted-dark);
}

.about-visual-right {
  position: relative;
  height: 520px;
}
.about-image-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-premium-soft);
  border: 1px solid rgba(197, 168, 128, 0.1);
}
.about-visual-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.about-visual-right:hover img {
  transform: scale(1);
}
.about-decorative-border {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-gold-primary);
  z-index: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}
.about-visual-right:hover .about-decorative-border {
  top: -20px;
  right: -20px;
}
.about-image-frame {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-visual-right {
    height: 400px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ==========================================
   SERVICES & BESPOKE VALUE
   ========================================== */
.services-section {
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  padding: 48px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold-primary);
  box-shadow: var(--shadow-premium-hover);
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-gold-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::after {
  transform: scaleX(1);
}

.service-header {
  margin-bottom: 40px;
}
.service-icon {
  font-size: 32px;
  color: var(--color-gold-primary);
  margin-bottom: 24px;
  line-height: 1;
}
.service-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.service-desc {
  font-size: 14px;
  color: var(--color-text-muted-dark);
  font-weight: 400;
}
.section-light .service-card {
  border-color: rgba(197, 168, 128, 0.15);
}
.service-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold-hover);
  transition: var(--transition-fast);
}
.service-card:hover .service-cta {
  color: var(--color-gold-primary);
  gap: 16px;
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-card {
    padding: 36px;
  }
}

/* ==========================================
   PORTFOLIO & PROPERTY SHOWCASE Grid
   ========================================== */
.portfolio-section {
  background-color: var(--color-cream-soft);
  color: var(--color-text-dark);
  border-top: 1px solid var(--color-cream-darker);
}

.portfolio-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 12px 28px;
  border: 1px solid var(--color-cream-darker);
  background-color: transparent;
  color: var(--color-text-dark);
  transition: var(--transition-fast);
  cursor: pointer;
}
.filter-btn:hover {
  background-color: var(--color-text-dark);
  color: var(--color-cream-soft);
  border-color: var(--color-text-dark);
}
.filter-btn.active {
  background-color: var(--color-gold-primary);
  color: var(--color-dark-ebony);
  border-color: var(--color-gold-primary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.property-card {
  position: relative;
  background-color: var(--color-white);
  box-shadow: var(--shadow-premium-soft);
  border: 1px solid rgba(0,0,0,0.02);
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
}
.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium-hover);
}

.property-img-wrap {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
}
.property-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.property-card:hover .property-img-wrap img {
  transform: scale(1.06);
}
.property-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--color-dark-ebony);
  color: var(--color-gold-primary);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  padding: 8px 16px;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.property-info {
  padding: 32px;
}
.property-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.property-location {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-hover);
}
.property-postal {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  color: var(--color-text-muted-dark);
}
.property-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.property-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  border-top: 1px solid var(--color-cream-darker);
  border-bottom: 1px solid var(--color-cream-darker);
  padding: 20px 0;
  margin-bottom: 24px;
}
.metric-col {
  display: flex;
  flex-direction: column;
}
.metric-val {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-dark);
}
.metric-lbl {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted-dark);
}
.property-details-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}
.property-details-btn:hover {
  color: var(--color-gold-hover);
}
.property-details-btn span {
  transition: transform 0.3s ease;
}
.property-card:hover .property-details-btn span {
  transform: translateX(6px);
}

@media (max-width: 991px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .property-info {
    padding: 24px;
  }
}

/* ==========================================
   DYNAMIC PROPERTY DRAWER / MODAL
   ========================================== */
.property-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background-color: rgba(10, 11, 13, 0.7);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.property-drawer.active {
  opacity: 1;
  pointer-events: all;
}

.drawer-body {
  width: 60%;
  max-width: 850px;
  height: 100%;
  background-color: var(--color-cream-soft);
  color: var(--color-text-dark);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
  position: relative;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  overflow-y: auto;
}
.property-drawer.active .drawer-body {
  transform: translateX(0);
}

@media (max-width: 991px) {
  .drawer-body {
    width: 85%;
  }
}
@media (max-width: 768px) {
  .drawer-body {
    width: 100%;
  }
}

.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background-color: var(--color-dark-ebony);
  color: var(--color-gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.drawer-close:hover {
  transform: rotate(90deg);
  background-color: var(--color-gold-primary);
  color: var(--color-dark-ebony);
}

.drawer-hero {
  position: relative;
  height: 380px;
  width: 100%;
  overflow: hidden;
}
.drawer-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.drawer-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.drawer-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}
.drawer-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.drawer-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(10, 11, 13, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-gold-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}
.drawer-hero:hover .drawer-slider-btn {
  opacity: 1;
  pointer-events: all;
}
.drawer-slider-btn:hover {
  background-color: var(--color-gold-primary);
  color: var(--color-dark-ebony);
  border-color: var(--color-gold-primary);
  transform: translateY(-50%) scale(1.1);
}
.drawer-slider-btn.prev {
  left: 20px;
}
.drawer-slider-btn.next {
  right: 20px;
}
.drawer-slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  transition: opacity 0.3s ease;
}
.drawer-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.drawer-slider-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.drawer-slider-dot.active {
  background-color: var(--color-gold-primary);
  width: 20px;
  border-radius: 4px;
}
.drawer-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 40%, var(--color-cream-soft) 100%);
  pointer-events: none;
  z-index: 2;
}
.drawer-header-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
}
.drawer-badge {
  display: inline-block;
  background-color: var(--color-gold-primary);
  color: var(--color-dark-ebony);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  padding: 6px 12px;
  margin-bottom: 12px;
}
.drawer-title {
  font-size: clamp(20px, 3.5vw, 32px);
  line-height: 1.2;
}

.drawer-content {
  padding: 0 40px 60px 40px;
}
.drawer-tabs {
  display: flex;
  border-bottom: 1px solid var(--color-cream-darker);
  margin-bottom: 30px;
}
.drawer-tab {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 16px 24px;
  color: var(--color-text-muted-dark);
  cursor: pointer;
  position: relative;
}
.drawer-tab.active {
  color: var(--color-text-dark);
}
.drawer-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-gold-primary);
}

.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}

/* Modal text and structural rules */
.drawer-narrative {
  font-size: 15px;
  color: var(--color-text-dark);
  margin-bottom: 24px;
  font-weight: 350;
}
.drawer-narrative p {
  margin-bottom: 16px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.spec-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-cream-darker);
  padding: 12px 0;
}
.spec-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-muted-dark);
}
.spec-value {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
}

.metrics-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background-color: var(--color-white);
  padding: 30px;
  box-shadow: var(--shadow-premium-soft);
  margin-bottom: 30px;
  border: 1px solid rgba(197, 168, 128, 0.15);
}

@media (max-width: 576px) {
  .drawer-content {
    padding: 0 24px 40px 24px;
  }
  .drawer-header-content {
    padding: 24px;
  }
  .drawer-tabs {
    flex-wrap: wrap;
  }
  .drawer-tab {
    padding: 12px 16px;
  }
  .specs-grid {
    grid-template-columns: 1fr;
  }
  .metrics-block {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================
   WHY INVEST WITH US TIMELINE
   ========================================== */
.why-invest-section {
  position: relative;
}
.timeline-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}
.timeline-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(197, 168, 128, 0.3) 10%, rgba(197, 168, 128, 0.3) 90%, transparent 100%);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  position: relative;
}
.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--color-dark-ebony);
  border: 2px solid var(--color-gold-primary);
  position: absolute;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.4);
}

.timeline-card {
  width: 44%;
  padding: 32px;
  position: relative;
  transition: var(--transition-smooth);
}
.timeline-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold-primary);
}

.timeline-item:nth-child(even) .timeline-card {
  margin-left: auto;
}
.timeline-item:nth-child(odd) .timeline-card {
  margin-right: auto;
  text-align: right;
}

.timeline-num {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--color-gold-primary);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}
.timeline-title {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.timeline-desc {
  font-size: 13px;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .timeline-wrap::before {
    left: 20px;
  }
  .timeline-dot {
    left: 20px;
  }
  .timeline-card {
    width: calc(100% - 40px);
    margin-left: 40px !important;
    text-align: left !important;
  }
  .timeline-item {
    margin-bottom: 40px;
  }
}

/* ==========================================
   TESTIMONIALS SLIDER SECTION
   ========================================== */
.testimonials-section {
  position: relative;
  border-top: 1px solid rgba(197, 168, 128, 0.1);
}
.testimonials-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.slide {
  flex: 0 0 100%;
  padding: 0 20px;
  text-align: center;
}
.testimonial-quote-icon {
  font-size: 48px;
  color: var(--color-gold-primary);
  font-family: var(--font-serif);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.5;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  line-height: 1.5;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}
.testimonial-author-name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold-primary);
  margin-bottom: 4px;
}
.testimonial-author-region {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}
.slider-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  cursor: pointer;
  transition: var(--transition-fast);
}
.slider-arrow:hover {
  background-color: var(--color-gold-primary);
  color: var(--color-dark-ebony);
  border-color: var(--color-gold-primary);
}

/* ==========================================
   CONVERSION / CTA SECTIONS
   ========================================== */
.cta-banner-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: var(--color-dark-slate);
  border-top: 1px solid rgba(197, 168, 128, 0.1);
  border-bottom: 1px solid rgba(197, 168, 128, 0.1);
}
.cta-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  z-index: 1;
}
.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-banner-title {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  margin-bottom: 24px;
  line-height: 1.2;
}
.cta-banner-desc {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

/* ==========================================
   CONTACT & CONSULTATION FORM
   ========================================== */
.contact-section {
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.contact-info-left {
  display: flex;
  flex-direction: column;
}
.contact-info-desc {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 48px;
  font-weight: 300;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 48px;
}
.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.contact-method-icon {
  font-size: 20px;
  color: var(--color-gold-primary);
  margin-top: 4px;
}
.contact-method-title {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold-primary);
  margin-bottom: 6px;
}
.contact-method-value {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--color-text-light);
  line-height: 1.4;
}

.social-links {
  display: flex;
  gap: 16px;
}
.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}
.social-link:hover {
  border-color: var(--color-gold-primary);
  color: var(--color-gold-primary);
  transform: translateY(-2px);
}

.contact-form-panel {
  padding: 48px;
  border-radius: 0;
}
.form-title {
  font-size: 24px;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.form-subtitle {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  font-weight: 400;
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.form-group {
  position: relative;
  margin-bottom: 30px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  color: var(--color-text-light);
  font-size: 13px;
  transition: var(--transition-fast);
  background-color: transparent;
  border-radius: 0;
}
.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238A929C' d='M0,0 L5,5 L10,0 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 10px;
}
.form-group select option {
  background-color: var(--color-dark-slate);
  color: var(--color-text-light);
}

/* Floating labels effect */
.form-group label {
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 13px;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: var(--transition-fast);
}
.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
  top: -12px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--color-gold-primary);
}

.form-submit-btn {
  width: 100%;
  margin-top: 10px;
}

/* Custom Success State styling */
.form-success-container {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
}
.success-icon-wrap {
  width: 80px;
  height: 80px;
  background-color: var(--color-gold-light);
  border: 1px solid var(--color-gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-primary);
  font-size: 32px;
  margin-bottom: 24px;
  animation: scalePop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.success-title {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--color-gold-primary);
}
.success-msg {
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 320px;
  margin: 0 auto;
  font-weight: 300;
}

@keyframes scalePop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
@media (max-width: 576px) {
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form-panel {
    padding: 32px 24px;
  }
}

/* ==========================================
   PREMIUM LUXURY FOOTER
   ========================================== */
.main-footer {
  background-color: var(--color-dark-ebony);
  border-top: 1px solid rgba(197, 168, 128, 0.1);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 20px;
  max-width: 280px;
  font-weight: 300;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold-primary);
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-links {
  list-style: none;
}
.footer-link-item {
  margin-bottom: 12px;
}
.footer-link {
  font-size: 13px;
  color: var(--color-text-muted);
}
.footer-link:hover {
  color: var(--color-gold-primary);
  padding-left: 4px;
}

.footer-newsletter-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  font-weight: 300;
}
.newsletter-form {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 8px;
  transition: var(--transition-fast);
}
.newsletter-form:focus-within {
  border-color: var(--color-gold-primary);
}
.newsletter-input {
  flex: 1;
  color: var(--color-text-light);
  font-size: 13px;
}
.newsletter-submit {
  color: var(--color-gold-primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-fast);
}
.newsletter-submit:hover {
  color: var(--color-text-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.copyright-text {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 300;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-link {
  font-size: 12px;
  color: var(--color-text-muted);
}
.footer-bottom-link:hover {
  color: var(--color-gold-primary);
}

.back-to-top {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  cursor: pointer;
  transition: var(--transition-fast);
}
.back-to-top:hover {
  background-color: var(--color-gold-primary);
  border-color: var(--color-gold-primary);
  color: var(--color-dark-ebony);
  transform: translateY(-4px);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    text-align: center;
    align-items: center;
  }
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ==========================================
   ANIMATIONS & MOTION REVEAL SYSTEM
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.reveal.revealed,
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   PROPERTY SHOWCASE DETAILS PAGE
   ========================================== */
.property-detail-page {
  background-color: var(--color-dark-ebony);
  color: var(--color-text-light);
}

/* Back navigation button */
.property-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition-fast);
}

.property-back-btn:hover {
  color: var(--color-gold-primary);
  border-color: var(--color-gold-primary);
  background: rgba(197, 168, 128, 0.08);
}

.property-back-btn .back-arrow {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  font-size: 14px;
}

.property-back-btn:hover .back-arrow {
  transform: translateX(-4px);
}

/* Cinematic property hero banner */
.property-hero {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 100px;
}

.property-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.03);
  animation: slowZoom 25s infinite alternate ease-in-out;
}

.property-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 11, 13, 0.2) 0%,
    rgba(10, 11, 13, 0.6) 60%,
    var(--color-dark-ebony) 100%
  );
  z-index: 2;
}

.property-hero-container {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.property-detail-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold-primary);
  border: 1px solid var(--color-gold-primary);
  background: rgba(197, 168, 128, 0.08);
  padding: 6px 16px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.property-detail-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  color: var(--color-text-light);
  margin-bottom: 8px;
  font-weight: 500;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.property-detail-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-text-muted);
}

/* Dynamic metrics bar section */
.metrics-bar {
  position: relative;
  z-index: 5;
  margin-top: -50px;
  margin-bottom: 60px;
}

.metrics-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.metrics-bar-grid .metric-card {
  padding: 30px;
  text-align: center;
  transition: var(--transition-smooth);
}

.metrics-bar-grid .metric-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold-primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.metric-value-large {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--color-gold-primary);
  line-height: 1.1;
  margin-bottom: 8px;
}

.metric-label-small {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Two-column layout grid */
.property-main-content {
  padding-bottom: 120px;
}

.property-grid-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.property-left-column,
.property-right-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Card components base styling */
.case-study-card,
.slider-card,
.gallery-card,
.specs-card,
.enquiry-card {
  padding: 40px;
  transition: var(--transition-smooth);
}

.section-title-small {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-gold-primary);
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

/* Narrative styles */
.case-study-narrative p {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-bottom: 20px;
}

.case-study-narrative p:last-child {
  margin-bottom: 0;
}

.case-study-narrative p strong {
  color: var(--color-text-light);
  font-weight: 500;
}

/* Detail interactive slider */
.detail-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.detail-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.detail-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

.detail-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 11, 13, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-text-light);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.detail-slider-btn:hover {
  background: var(--color-gold-primary);
  color: var(--color-dark-ebony);
  border-color: var(--color-gold-primary);
  box-shadow: 0 5px 15px rgba(197, 168, 128, 0.3);
}

.detail-slider-btn.prev {
  left: 20px;
}

.detail-slider-btn.next {
  right: 20px;
}

.detail-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.detail-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
}

.detail-slider-dot.active {
  background: var(--color-gold-primary);
  transform: scale(1.3);
}

/* Photography Grid */
.gallery-card {
  padding-bottom: 40px;
}

.gallery-header {
  margin-bottom: 24px;
}

.section-desc-small {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
  font-weight: 300;
  margin-top: -12px;
}

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

.gallery-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  cursor: pointer;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 11, 13, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  z-index: 2;
  transition: var(--transition-smooth);
}

.gallery-zoom-icon {
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  color: var(--color-gold-primary);
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-zoom-text {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  transform: translateY(5px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover behaviors for image wraps */
.gallery-img-wrap:hover img {
  transform: scale(1.08);
}

.gallery-img-wrap:hover .gallery-img-overlay {
  opacity: 1;
}

.gallery-img-wrap:hover .gallery-zoom-icon {
  transform: scale(1);
}

.gallery-img-wrap:hover .gallery-zoom-text {
  transform: translateY(0);
}

/* Technical Specification Table */
.specs-table {
  display: flex;
  flex-direction: column;
}

.specs-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
  gap: 20px;
}

.specs-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.specs-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
}

.specs-value {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-light);
  text-align: right;
  line-height: 1.4;
}

/* HNW Sourcing enquiry card & form styling */
.enquiry-card {
  position: relative;
  overflow: hidden;
}

.enquiry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-gold-primary);
}

.enquiry-header {
  margin-bottom: 30px;
}

.enquiry-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold-primary);
  margin-bottom: 8px;
}

.enquiry-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.enquiry-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
  font-weight: 300;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
}

.form-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 18px;
  color: var(--color-text-light);
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-input:focus {
  border-color: var(--color-gold-primary);
  background: rgba(255, 255, 255, 0.05);
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C5A880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px;
  padding-right: 48px;
}

select.form-input option {
  background: var(--color-dark-slate);
  color: var(--color-text-light);
}

textarea.form-input.text-area {
  min-height: 110px;
  resize: none;
  line-height: 1.5;
}

.form-submit-btn {
  background-color: var(--color-gold-primary);
  color: var(--color-dark-ebony);
  border: 1px solid var(--color-gold-primary);
  padding: 16px 24px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: var(--transition-fast);
  margin-top: 10px;
  text-align: center;
}

.form-submit-btn:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  box-shadow: 0 8px 25px rgba(197, 168, 128, 0.3);
  transform: translateY(-2px);
}

/* Sourcing Form Success Panel */
.enquiry-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.enquiry-success.active {
  opacity: 1;
  transform: translateY(0);
}

.success-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--color-gold-primary);
  color: var(--color-gold-primary);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  animation: scaleUpReveal 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.success-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--color-gold-primary);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.success-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 280px;
  font-weight: 300;
}

/* Immersive Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 11, 13, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 50px;
  height: 50px;
  font-size: 36px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10020;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-gold-primary);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10020;
  transition: var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--color-gold-primary);
  color: var(--color-dark-ebony);
  border-color: var(--color-gold-primary);
  box-shadow: 0 8px 25px rgba(197, 168, 128, 0.3);
}

.lightbox-nav.prev {
  left: 40px;
}

.lightbox-nav.next {
  right: 40px;
}

.lightbox-content {
  width: 80%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10010;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 70px rgba(0,0,0,0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-counter {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--color-gold-primary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  z-index: 10020;
}

/* Footer layout */
.property-footer {
  background-color: var(--color-dark-ebony);
  border-top: 1px solid rgba(197, 168, 128, 0.1);
  padding: 60px 0;
  margin-top: 60px;
}

.property-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.property-footer-copy {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 300;
}

/* Responsive grid modifications */
@media (max-width: 991px) {
  .property-hero {
    height: 50vh;
    padding-bottom: 80px;
  }
  
  .metrics-bar {
    margin-top: -40px;
    margin-bottom: 40px;
  }
  
  .metrics-bar-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .metrics-bar-grid .metric-card {
    padding: 20px 10px;
  }
  
  .property-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .lightbox-close {
    top: 20px;
    right: 20px;
  }
  
  .lightbox-nav.prev {
    left: 20px;
  }
  
  .lightbox-nav.next {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .property-hero {
    height: auto;
    padding: 120px 0 50px 0;
  }
  
  .property-hero-bg {
    animation: none;
  }
  
  .metrics-bar {
    margin-top: 0;
  }
  
  .metrics-bar-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .case-study-card,
  .slider-card,
  .gallery-card,
  .specs-card,
  .enquiry-card {
    padding: 24px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .property-footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .lightbox-nav {
    display: none; /* Swipe/tap navigation or close lightbox on mobile */
  }
  
  .lightbox-content {
    width: 90%;
    height: 70%;
  }
}

/* ==========================================
   EDITORIAL SINGLE COLUMN PROPERTY SHOWCASE
   ========================================== */
.property-single-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: -60px auto 0;
  position: relative;
  z-index: 5;
}

.property-single-layout .case-study-card,
.property-single-layout .slider-card,
.property-single-layout .gallery-card {
  padding: 45px 50px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.property-single-layout .case-study-card {
  background: linear-gradient(135deg, rgba(20, 22, 26, 0.75) 0%, rgba(15, 17, 20, 0.85) 100%);
}

.property-single-layout .slider-card,
.property-single-layout .gallery-card {
  background: linear-gradient(135deg, rgba(18, 20, 24, 0.7) 0%, rgba(12, 14, 16, 0.8) 100%);
}

@media (max-width: 768px) {
  .property-single-layout {
    margin: -30px 15px 0 15px;
    gap: 30px;
  }
  .property-single-layout .case-study-card,
  .property-single-layout .slider-card,
  .property-single-layout .gallery-card {
    padding: 30px 24px;
  }
}

/* ==========================================
   PREMIUM MOTION & CINEMATIC REDESIGN STYLES
   ========================================== */

/* 1. LUXURY PAGE LOADER */
.luxury-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #0b0c0c; /* Ultra dark luxury ebony */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.8s cubic-bezier(0.85, 0, 0.15, 1), visibility 0.8s;
  opacity: 1;
  visibility: visible;
}
.luxury-page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.loader-logo {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseLogo 2s infinite alternate ease-in-out;
}

.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.loader-brand-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.loader-logo-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.35em;
  font-family: var(--font-primary);
}
.loader-logo-tag {
  font-size: 0.7rem;
  color: var(--color-gold-primary, #c5a880);
  opacity: 0.8;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.loader-progress-bar {
  width: 220px;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 15px;
  position: relative;
}
.loader-progress-inner {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--color-gold-primary, #c5a880));
  transition: width 0.4s cubic-bezier(0.1, 0.8, 0.3, 1);
}

@keyframes pulseLogo {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

/* 2. HERO BLUEPRINT DRAWING CANVAS */
.blueprint-canvas-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}
.blueprint-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 11, 13, 0.1) 0%, rgba(10, 11, 13, 0.6) 50%, #0b0c0c 95%);
  z-index: 4;
}
.blueprint-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 1300px;
  z-index: 5;
  opacity: 0.85;
}
.hero-finished-render {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0; /* Animated dynamically by GSAP */
  will-change: opacity, transform;
}

/* Drawing animations path control */
.draw-path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  will-change: stroke-dashoffset;
}

/* 3. PARALLAX & IMAGES SYSTEM */
.parallax-wrap {
  overflow: hidden;
  position: relative;
}
.parallax-img {
  will-change: transform;
}

/* 4. PREMIUM CARD SPOTLIGHT GLOW EFFECT */
.property-card, .enquiry-card, .footer-section, .case-study-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
}
.glow-spotlight {
  position: relative;
}
.glow-spotlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    400px circle at var(--mouse-x) var(--mouse-y),
    rgba(197, 168, 128, 0.08),
    transparent 60%
  );
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
}
.glow-spotlight:hover::before {
  opacity: 1;
}

/* 3D Property Card Tilt Setup */
.property-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform;
}
.property-card .property-img-wrap,
.property-card .property-content-wrap {
  transform: translateZ(0px);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.property-card:hover .property-img-wrap {
  transform: translateZ(20px);
}

/* 5. TEXT REVEAL MASKS */
.text-reveal-wrap {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  line-height: 1.2;
}
.text-reveal-line {
  display: inline-block;
  transform: translateY(100%);
  will-change: transform;
}

/* Scroll indicators premium tweaks */
.scroll-indicator-wrap {
  z-index: 10;
}

/* Smooth scrolling settings for html */
html.lenis, html.lenis body {
  height: auto;
}
.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis-stopped {
  overflow: hidden;
}
.lenis-scrolling iframe {
  pointer-events: none;
}


