/* ==========================================================================
   A. CSS Variables / Root
   ========================================================================== */
:root {
  --primary: #413936;
  /* Bespoke British Warm Earth */
  --accent-gold: #C5A880;
  /* Champagne Gold Satin */
  --accent-bright: #F5EFEB;
  /* Rare Soft Silk Highlight */
  --text-dark: #2C2624;
  /* Rich Espresso Ground */
  --text-muted: #7E7470;
  /* Muted Ash Clay */
  --bg-cream: #FAF6F0;
  /* Alabaster Warm Silk Base */
  --bg-pure: #FFFFFF;
  --bg-luxoria-service: #F2EAE1;
  /* Signature Luxoria Soft Taupe */
  --shadow-lux: rgba(65, 57, 54, 0.02);
  --shadow-card: rgba(65, 57, 54, 0.05);
  --font-display: 'Cinzel', 'Didot', serif;
  --font-body: 'Inter', sans-serif;
  --radius-lg: 8px;
  --radius-sm: 4px;
}

/* ==========================================================================
   B. Reset / Normalize
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.75;
  overflow-x: hidden;
}

/* ==========================================================================
   C. Typography
   ========================================================================== */
h1,
h2,
h3,
h4,
.luxury-title {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--primary);
}

.display-lux-title {
  font-family: var(--font-display, 'Cinzel', serif);
  font-size: 2.4rem;
  color: var(--primary, #413936);
  line-height: 1.3;
  margin-bottom: 25px;
}

.display-lux-title.text-light {
  color: #FFFFFF !important;
}

/* ==========================================================================
   D. Layout & Container
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.container-lux {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  box-sizing: border-box;
}

.container-testi-clean {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  box-sizing: border-box;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 2.6rem;
  margin-bottom: 18px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-header-left {
  margin-bottom: 50px;
  text-align: left;
}

.section-header-left h2 {
  font-size: 2.6rem;
  margin-top: 8px;
  margin-bottom: 12px;
}

.azzura-grid-4x {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
}

.azzura-grid-3x {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.azzura-grid-2x {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  width: 100%;
}

.azzura-grid-2x.align-center {
  align-items: center;
}

.relative-layer {
  position: relative;
  z-index: 2;
}

.gap-60 {
  gap: 60px !important;
}


/* --- Cinematic Global Reveal Engine --- */
.reveal-item {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.reveal-fade-up {
  transform: translateY(50px);
}

.reveal-item.reveal-fade-left {
  transform: translateX(-60px);
}

.reveal-item.reveal-fade-right {
  transform: translateX(60px);
}

.reveal-item.reveal-scale {
  transform: scale(0.95);
}

.reveal-fade {
  transform: translateY(0);
}

.reveal-fade-left {
  transform: translateX(-55px) !important;
  transform: translateY(0);
}

.reveal-fade-right {
  transform: translateX(55px) !important;
  transform: translateY(0);
}

.reveal-item.active {
  opacity: 1;
  transform: translate(0) scale(1) !important;
}

/* ==========================================================================
   E. Shared Components
   ========================================================================== */
/* --- Buttons --- */
.btn-lux {
  display: inline-block;
  padding: 16px 38px;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius-lg);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  transition-duration: 0.35s !important;
}

.btn-lux-primary {
  background-color: var(--primary);
  color: #FFFFFF;
  border: 1px solid var(--primary);
}

.btn-lux-primary:hover {
  background-color: var(--accent-gold);
  color: var(--primary);
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(197, 168, 128, 0.25);
}

.btn-lux-primary-outline {
  background-color: var(--primary);
  color: #FFFFFF;
  border: 1px solid var(--primary);
}

.btn-lux-primary-outline:hover {
  background-color: transparent;
  color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(65, 57, 54, 0.08);
}

.btn-lux-accent {
  background-color: var(--accent-gold);
  color: #FFFFFF;
  border: 1px solid var(--accent-gold);
}

.btn-lux-accent:hover {
  background-color: transparent;
  color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(197, 168, 128, 0.15);
}

/* --- Badges --- */
.badge-lux {
  display: inline-block;
  background: rgba(197, 168, 128, 0.03);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  padding: 5px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 25px;
}

.card-status-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
  background-color: rgba(44, 38, 36, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   F. Header / Navbar Styles
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 22px 0;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

header .container {
  padding-right: 50px;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 13px 0;
  box-shadow: 0 8px 25px rgba(65, 57, 54, 0.03);
  border-bottom: 1px solid rgba(197, 168, 128, 0.12);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: var(--font-display);
  color: #FFFFFF;
  font-size: 1.8rem;
  text-decoration: none;
  letter-spacing: 5px;
  font-weight: 500;
  transition: color 0.4s ease;
}

header.scrolled .brand-logo {
  color: var(--primary);
}

.desktop-nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.desktop-nav-menu > li {
  position: relative;
}

.desktop-nav-menu a {
  position: relative;
  display: block;
  padding: 4px 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.desktop-nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

.desktop-nav-menu a:hover::after {
  width: 100%;
}

.desktop-nav-menu a:hover {
  color: #FFFFFF;
}

header.scrolled .desktop-nav-menu a {
  color: rgba(44, 38, 36, 0.6);
}

header.scrolled .desktop-nav-menu a:hover {
  color: var(--accent-gold);
}

.desktop-nav-menu > li.active-nav > a,
.desktop-nav-menu > li > a:hover {
  color: #FFFFFF !important;
}

header.scrolled .desktop-nav-menu > li.active-nav > a,
header.scrolled .desktop-nav-menu > li > a:hover {
  color: var(--accent-gold) !important;
}

.desktop-nav-menu > li.active-nav > a::after {
  width: 100% !important;
  background-color: var(--accent-gold);
}

/* --- Dropdown Submenu --- */
.has-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  min-width: 220px;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 35px rgba(44, 38, 36, 0.12);
  border: 1px solid rgba(197, 168, 128, 0.2);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

header.scrolled .dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 24px;
  color: var(--text-dark) !important;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.dropdown-menu li a::after {
  display: none;
}

.dropdown-menu li a:hover {
  background-color: rgba(197, 168, 128, 0.1);
  color: var(--accent-gold) !important;
  padding-left: 28px;
  transform: translateX(0);
}

.dropdown-menu li.active-sub a {
  background-color: rgba(197, 168, 128, 0.08) !important;
  color: var(--accent-gold) !important;
  padding-left: 28px !important;
}

/* --- Mobile Menu Trigger --- */
.menu-trigger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px 5px 10px 15px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-trigger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}

header.scrolled .menu-trigger span {
  background-color: var(--primary);
}

/* --- Off-Canvas Sidebar --- */
.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(44, 38, 36, 0.35);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.offcanvas-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.offcanvas-nav-left {
  position: fixed;
  top: 0;
  left: -290px;
  z-index: 1001;
  width: 270px;
  height: 100vh;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  background-color: var(--primary);
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(197, 168, 128, 0.15);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  transition-property: left;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.offcanvas-nav-left.open {
  left: 0;
}

.offcanvas-close-btn {
  align-self: flex-end;
  margin-bottom: 30px;
  background: none;
  border: none;
  color: var(--accent-gold);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ==========================================================================
   G. Hero Section Styles
   ========================================================================== */
.hero-slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #12100F;
  overflow: hidden;
}

.hero-slider-container .container {
  position: relative;
  z-index: 4;
}

.hero-track-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
  cursor: grab;
}

.hero-track-wrapper:active {
  cursor: grabbing;
}

.hero-slide-node {
  position: relative;
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide-node::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(44, 38, 36, 0.4), rgba(44, 38, 36, 0.75));
}

.hero-slide-node::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-color: rgba(250, 246, 240, 0.05);
  backdrop-filter: sepia(5%) contrast(100%);
}

.hero-media-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-media-wrapper img,
.hero-media-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text-block {
  max-width: 850px;
}

.hero-text-block .btn-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-slide-node h1 {
  margin-bottom: 30px;
  font-size: 4.5rem;
  line-height: 1.15;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(44, 38, 36, 0.3);
}

.hero-slide-node p {
  max-width: 650px;
  margin-bottom: 50px;
  font-size: 1.1rem;
  color: var(--bg-cream);
  font-weight: 300;
}

/* --- Hero Animation Triggers --- */
.hero-slide-node.active-slide .badge-lux {
  animation: luxuryFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
  opacity: 0;
}

.hero-slide-node.active-slide h1 {
  animation: luxuryFadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
  opacity: 0;
}

.hero-slide-node.active-slide p {
  animation: luxuryFadeInUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
  opacity: 0;
}

.hero-slide-node.active-slide .btn-group {
  animation: luxuryFadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
  opacity: 0;
}

/* --- Hero Controls --- */
.hero-slider-nav-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  padding: 0 45px;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider-arrow-btn {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.35s ease;
  pointer-events: auto;
}

.slider-arrow-btn:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: scale(1.05);
}

.hero-indicators-dock {
  position: absolute;
  bottom: 40px;
  left: 50%;
  z-index: 5;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-indicator-dot {
  width: 30px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.22);
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.4s ease;
}

.hero-indicator-dot.active {
  background-color: var(--accent-gold);
  width: 50px;
}

/* ==========================================================================
   H. About Section Styles
   ========================================================================== */
.about-section {
  padding: 130px 0;
  background-color: var(--bg-pure, #FFFFFF);
}

.about-img-container {
  position: relative;
  border-radius: var(--radius-lg, 8px);
  box-shadow: 0 20px 50px rgba(65, 57, 54, 0.06);
  overflow: hidden;
}

.about-img-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-container:hover img {
  transform: scale(1.04);
}

.about-prose-lead {
  margin-bottom: 35px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark, #2C2624);
  font-weight: 300;
}

.nav-tabs-custom {
  display: flex;
  gap: 35px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

.nav-tabs-custom .tab-anchor-btn {
  padding: 12px 0;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font-body, sans-serif);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text-muted, #7E7470);
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.nav-tabs-custom .tab-anchor-btn:hover {
  color: var(--primary, #413936);
}

.nav-tabs-custom .tab-anchor-btn.active {
  color: var(--accent-gold, #C5A880);
  border-bottom: 2px solid var(--accent-gold, #C5A880);
}

.tab-panes-wrapper .tab-sheet-node {
  display: none;
  animation: azzuraFadeIn 0.5s ease forwards;
}

.tab-panes-wrapper .tab-sheet-node.active {
  display: block;
}

.tab-panes-wrapper p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted, #7E7470);
}

.about-list {
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-dark, #2C2624);
  margin-bottom: 10px;
}

.about-list li i {
  color: var(--accent-gold, #C5A880);
  font-size: 1.05rem;
}

/* ==========================================================================
   I. Concept & Showcase Sections
   ========================================================================== */
/* --- Concept (The Sanctuary) --- */
.concept {
  padding: 150px 0;
  background-color: var(--bg-cream);
}

.concept-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.concept-desc h2 {
  margin-bottom: 35px;
  font-size: 3rem;
  line-height: 1.22;
}

.parallax-wrapper {
  position: relative;
  width: 100%;
  height: 640px;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 55px rgba(65, 57, 54, 0.06);
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130% !important;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

/* --- Discover Properties --- */
.discover-section {
  padding: 120px 0;
  background-color: var(--bg-cream, #FAF6F0);
}

.discover-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg, 8px);
  box-shadow: 0 10px 30px rgba(65, 57, 54, 0.04);
  cursor: pointer;
  overflow: hidden;
}

.discover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.discover-card:hover img {
  transform: scale(1.08);
}

.discover-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 38, 36, 0.15);
  transition: background 0.3s ease;
}

.discover-card:hover .card-overlay {
  background: rgba(44, 38, 36, 0.45);
}

.discover-card .btn-view-all {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--bg-pure, #ffffff);
  border: 1px solid rgba(65, 57, 54, 0.1);
  border-radius: var(--radius-sm, 4px);
  color: var(--text-dark, #2C2624);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.discover-card .btn-view-all:hover {
  background: var(--accent-gold, #C5A880);
  color: #ffffff;
}

.discover-card:hover .btn-view-all {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.discover-card .property-badge {
  position: absolute;
  bottom: 25px;
  left: 50%;
  z-index: 10;
  width: 85%;
  text-align: center;
  transform: translateX(-50%);
}

.discover-card .location-tag {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: -12px;
  padding: 6px 16px;
  background: var(--primary, #413936);
  border: 1px solid var(--accent-gold, #C5A880);
  border-radius: var(--radius-sm, 4px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 4px 15px rgba(65, 57, 54, 0.15);
}

.discover-card .count-box {
  padding: 24px 15px 16px 15px;
  background: var(--bg-pure, #ffffff);
  border: 1px solid rgba(197, 168, 128, 0.1);
  border-radius: var(--radius-lg, 8px);
  box-shadow: 0 12px 35px rgba(65, 57, 54, 0.05);
}

.discover-card .count-box .number {
  display: block;
  font-family: var(--font-display, serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary, #413936);
  line-height: 1.2;
}

.discover-card .count-box .label {
  display: block;
  margin-top: 2px;
  font-size: 0.7rem;
  color: var(--text-muted, #7E7470);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   J. Services & Privileges Styles
   ========================================================================== */
/* --- Perks (The Privileges) --- */
.perks-lux {
  padding: 150px 0;
  background-color: var(--bg-pure);
  border-top: 1px solid rgba(197, 168, 128, 0.15);
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.perk-node {
  padding: 40px 30px;
  background: var(--bg-cream);
  border: 1px solid rgba(197, 168, 128, 0.08);
  border-radius: var(--radius-lg);
  will-change: transform, box-shadow, background-color, border-color;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.perk-node:hover {
  background: var(--bg-pure);
  box-shadow: 0 25px 50px var(--shadow-card);
  border-color: var(--accent-gold);
  transform: translateY(-10px) !important;
}

.perk-meta {
  display: block;
  margin-bottom: 15px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.perk-node h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 500;
}

.perk-node p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Inaugural Privilege Banner --- */
.privilege-sec {
  padding: 150px 0;
  background-color: var(--bg-luxoria-service);
  color: var(--text-dark);
  text-align: center;
}

.timer-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 60px 0;
}

.timer-unit {
  min-width: 120px;
  padding: 30px 20px;
  background: var(--bg-pure);
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 24px var(--shadow-lux);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.privilege-sec.activated-reveal .timer-unit {
  opacity: 1;
  transform: translateY(0);
}

.timer-digits {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--primary);
}

.timer-lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
}

/* --- Financing Concierge --- */
.financing-section {
  padding: 130px 0;
  background-color: var(--bg-pure, #FFFFFF);
  box-sizing: border-box;
}

.financing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-cream, #FAF6F0);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: var(--radius-lg, 8px);
  overflow: hidden;
  box-sizing: border-box;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.financing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(65, 57, 54, 0.06);
  border-color: var(--accent-gold, #C5A880);
}

.financing-card .card-main {
  padding: 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.financing-card .card-main h4 {
  margin-bottom: 12px;
  font-family: var(--font-body, sans-serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--primary, #413936);
  letter-spacing: 0.5px;
}

.financing-card .card-main p {
  margin-bottom: 30px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted, #7E7470);
  font-weight: 300;
}

.financing-card .btn-link-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--accent-gold, #C5A880);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
}

.financing-card .btn-link-custom:hover {
  color: var(--primary, #413936);
}

.financing-card .card-footer-bank {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  background: var(--bg-pure, #FFFFFF);
  border-top: 1px solid rgba(197, 168, 128, 0.12);
}

.financing-card .bank-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.financing-card .bank-logo-sm {
  width: auto;
  height: 24px;
  object-fit: contain;
}

.financing-card .bank-name {
  display: block;
  font-weight: 600;
  color: var(--text-dark, #2C2624);
  font-size: 0.95rem;
}

.financing-card .bank-rate {
  display: block;
  margin-top: 1px;
  font-size: 0.8rem;
  color: var(--text-muted, #7E7470);
}

.financing-card .card-footer-bank > i {
  color: var(--accent-gold, #C5A880);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.financing-card:hover .card-footer-bank > i {
  transform: translateX(4px);
}

/* ==========================================================================
   K. Card Components & Collections
   ========================================================================== */
/* --- Main Collection Section --- */
.collection-sec {
  padding: 150px 0;
  background-color: var(--bg-cream);
}

.coll-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.coll-card {
  position: relative;
  height: 485px;
  background-color: var(--bg-pure);
  border: 1px solid rgba(65, 57, 54, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px var(--shadow-lux);
  overflow: hidden;
}

.coll-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 82%;
  z-index: 2;
  background: linear-gradient(to top, rgba(44, 38, 36, 0.98) 0%, rgba(44, 38, 36, 0.35) 68%, transparent 100%);
}

.coll-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(44, 38, 36, 0.08);
  border-color: var(--accent-gold);
}

.coll-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.coll-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.3, 1);
}

.coll-card:hover .coll-img-wrapper img {
  transform: scale(1.05);
}

.coll-content-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 25px 25px 25px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}

.coll-card:hover .coll-content-box {
  transform: translateY(-8px);
}

.coll-title {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #FFFFFF;
}

.coll-dim {
  margin-top: 2px;
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.coll-price {
  margin: 8px 0 14px 0;
  font-size: 0.95rem;
  color: var(--accent-gold);
  font-weight: 500;
}

.coll-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 15px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  margin-bottom: 5px;
}

.spec-icon-node {
  display: flex;
  align-items: center;
  gap: 8px;
}

.spec-icon-node svg {
  width: 14px;
  height: 14px;
  color: var(--accent-gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  opacity: 0.9;
}

.coll-action-reveal {
  max-height: 0;
  opacity: 0;
  overflow: visible !important;
  transition: max-height 0.5s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.4s ease, margin-top 0.5s ease;
}

.coll-card:hover .coll-action-reveal {
  max-height: 80px;
  opacity: 1;
  margin-top: 15px;
}

/* --- Azzura Suite Reworked Component --- */
.azzura-suite-section {
  width: 100%;
  padding: 150px 0;
  background-color: var(--bg-pure);
  overflow-x: hidden;
}

/* Memperbaiki bentrokan margin antara Bootstrap mb-5 dengan header */
.azzura-suite-section .section-header:not(.mb-0) {
  margin-bottom: 50px;
}

.azzura-suite-section .section-header h2 {
  font-size: 2.6rem;
  margin-top: 8px;
  margin-bottom: 12px;
}

.azzura-suite-section .section-header p {
  margin: 0;
  max-width: unset;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- THE AZZURA SUITE CARD COMPONENT --- */
.azzura-suite-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%; /* Memaksa card mengisi tinggi swiper-slide secara konsisten */
  background-color: var(--bg-cream);
  border: 1px solid rgba(197, 168, 128, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(65, 57, 54, 0.02);
  will-change: transform, box-shadow, background-color, border-color;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.azzura-suite-card:hover {
  background: var(--bg-pure);
  border-color: var(--accent-gold);
  transform: translateY(-10px) !important;
  box-shadow: 0 25px 50px var(--shadow-card) !important;
}

.azzura-suite-card .image-wrapper {
  position: relative;
  height: 270px;
  background-color: rgba(65, 57, 54, 0.05);
  overflow: hidden;
}

.azzura-suite-card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.azzura-suite-card:hover .image-wrapper img {
  transform: scale(1.05);
}

.azzura-suite-card .image-counter {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  display: flex;
  gap: 6px;
}

.azzura-suite-card .image-counter .badge-media {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background-color: rgba(44, 38, 36, 0.65) !important;
  color: #FFFFFF;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.azzura-suite-card .card-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.azzura-suite-card .card-title {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 1px;
}

.azzura-suite-card .card-text {
  margin-bottom: 20px;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-muted);
}

.azzura-suite-card .features-dock {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 0.8rem;
  color: var(--text-dark);
}

.azzura-suite-card .features-dock .score-star {
  color: var(--accent-gold);
  font-weight: 600;
}

.azzura-suite-card .features-dock i {
  color: var(--accent-gold);
  margin-right: 4px;
}

.azzura-suite-card .btn-action-lux {
  margin-top: auto;
  padding: 14px;
  width: 100%;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.azzura-suite-card .btn-action-lux:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--primary);
}

/* ==========================================================================
   L. Gallery Section Styles
   ========================================================================== */
.arch-gallery {
  padding: 150px 0;
  background-color: var(--bg-pure);
}

.symphony-asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 280px;
  gap: 25px;
}

.symphony-grid-node {
  position: relative;
  background-color: var(--bg-cream);
  border: 1px solid rgba(197, 168, 128, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(65, 57, 54, 0.03);
  overflow: hidden;
}

.symphony-grid-node img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.symphony-grid-node:hover img {
  transform: scale(1.04);
}

.symphony-curated-veil {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  background: linear-gradient(to top, rgba(44, 38, 36, 0.8) 0%, rgba(44, 38, 36, 0.05) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.symphony-grid-node:hover .symphony-curated-veil {
  opacity: 1;
}

.symphony-glass-plate {
  width: 100%;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.symphony-grid-node:hover .symphony-glass-plate {
  transform: translateY(0);
  opacity: 1;
}

.symphony-glass-plate span {
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.symphony-glass-plate h4 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.symphony-span-7-wide { grid-column: span 7; grid-row: span 2; }
.symphony-span-5-tall { grid-column: span 5; grid-row: span 3; }
.symphony-span-4-box  { grid-column: span 4; grid-row: span 2; }
.symphony-span-8-long { grid-column: span 8; grid-row: span 2; }

/* ==========================================================================
   M. Testimonial Section Styles
   ========================================================================== */
/* --- Legacy Testimonials --- */
.tribute {
  padding: 150px 0;
  background-color: var(--bg-pure);
  user-select: none;
}

.slider-viewport {
  position: relative;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  overflow: hidden;
  cursor: grab;
}

.slider-viewport:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  will-change: transform;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.tribute-card {
  min-width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 0 20px;
  pointer-events: none;
}

.tribute-avatar-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px auto;
  padding: 6px;
  border: 1px solid var(--accent-gold);
  border-radius: 50%;
  background-color: var(--bg-cream);
}

.tribute-avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.tribute-text {
  margin-bottom: 35px;
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 1.8rem;
  color: var(--primary);
  line-height: 1.6;
  letter-spacing: -0.5px;
}

.tribute-author {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  font-weight: 600;
}

.tribute-subtitle {
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.tribute-stars {
  margin-bottom: 25px;
  color: var(--accent-gold);
  font-size: 0.9rem;
  letter-spacing: 4px;
}

.slider-dots-flex {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot-node {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  background-color: rgba(65, 57, 54, 0.15);
  border: 1px solid rgba(197, 168, 128, 0.2);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dot-node.active {
  background-color: var(--accent-gold) !important;
  width: 32px;
  border-radius: var(--radius-sm);
  border-color: var(--accent-gold);
}

/* --- Azzura Client Chronicles Section --- */
.azzura-client-section {
  position: relative;
  width: 100%;
  padding: 150px 0;
  background-color: var(--bg-cream);
}

.azzura-client-section .section-header {
  margin-bottom: 60px;
  text-align: left;
}

.azzura-client-section .section-header h2 {
  margin-top: 10px;
  font-size: 2.6rem;
}

.azzura-client-matrix-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.15fr;
  gap: 50px;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.client-large-frame-slider {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(65, 57, 54, 0.08);
  overflow: hidden;
}

.client-large-frame-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-large-frame-slider,
.client-text-slider,
.client-user-identity-slider,
.client-thumbs-vertical-wheel {
  min-width: 0 !important;
  width: 100%;
}

.client-text-workspace {
  position: relative;
  padding-left: 15px;
}

.client-box-container {
  position: relative;
  margin-top: 25px;
}

.client-text-slider,
.client-large-frame-slider,
.client-user-identity-slider {
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.client-testimonial-card {
  position: relative;
  width: 100%;
  padding: 50px;
  background: var(--bg-pure);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 45px rgba(65, 57, 54, 0.02);
  border: 1px solid rgba(197, 168, 128, 0.12);
  min-width: 0;
}

.client-testimonial-card .prose-quote {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  font-style: italic;
  word-break: break-word;
}

.client-box-container .quote-seal-float {
  position: absolute;
  top: -28px;
  left: 45px;
  z-index: 10;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold);
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.25);
}

.client-user-identity-slider {
  width: 100%;
  margin-top: 30px;
  overflow: hidden;
  min-width: 0;
}

.client-user-identity-slider .swiper-slide {
  width: 100% !important;
  height: auto;
  display: flex;
}

.client-profile-dock {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 10px;
}

.client-profile-dock .avatar-box-lux {
  width: 72px;
  height: 72px;
  padding: 4px;
  background: var(--bg-pure);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-lg);
}

.client-profile-dock .avatar-box-lux img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px);
}

.client-profile-dock .meta-details h4 {
  margin: 0 0 4px 0;
  font-family: var(--font-body);
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.client-profile-dock .meta-details span {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 300;
}

.client-profile-dock .meta-details .corporate-seal {
  display: block;
  height: 18px;
  margin-top: 8px;
  opacity: 0.5;
  filter: grayscale(100%);
  object-fit: contain;
}

.client-thumbs-vertical-wheel {
  width: 100%;
  height: 280px;
  padding: 5px 0;
  overflow: hidden;
  min-width: 0;
}

.client-thumbs-vertical-wheel .swiper-wrapper {
  align-items: center;
}

.client-thumbs-vertical-wheel .swiper-slide {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.35;
  border: 2px solid transparent;
  margin-bottom: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-thumbs-vertical-wheel .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-thumbs-vertical-wheel .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--accent-gold);
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.2);
}

.client-thumbs-vertical-wheel .swiper-slide:hover {
  opacity: 1;
}

/* --- Premium Testimonial One Box Engine --- */
.testimonial-one {
  position: relative;
  width: 100%;
  padding: 150px 0;
  background-color: var(--bg-cream, #FAF6F0);
  box-sizing: border-box;
}

.testimonial-one .section-header-testi {
  margin-bottom: 60px;
  text-align: left;
}

.testimonial-one .section-header-testi .sub-title {
  display: block;
  color: var(--accent-gold, #C5A880);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.testimonial-one .section-header-testi h2 {
  margin-top: 10px;
  font-family: var(--font-display, 'Cinzel', serif);
  color: var(--primary, #413936);
  font-size: 2.6rem;
  letter-spacing: 2px;
}

.testi-one-flex-master {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  width: 100%;
}

.testi-one-left-media {
  flex: 0 0 40%;
  min-width: 0;
}

.testimonial-one .testi-large-slider {
  aspect-ratio: 3 / 3;
  border-radius: var(--radius-lg, 8px);
  box-shadow: 0 25px 60px rgba(65, 57, 54, 0.08);
  overflow: hidden;
}

.testimonial-one .testi-large-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-one-center-workspace {
  flex: 0 0 48%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-one .testimonial-box-container {
  position: relative;
  width: 100%;
  margin-top: 30px;
}

.testimonial-one .testimonial-box {
  width: 100%;
  padding: 50px;
  background: var(--bg-pure, #FFFFFF);
  border: 1px solid rgba(197, 168, 128, 0.12);
  border-radius: var(--radius-lg, 8px);
  box-shadow: 0 15px 45px rgba(65, 57, 54, 0.02);
  box-sizing: border-box;
}

.testimonial-one .testi-text-slider {
  width: 100%;
  overflow: hidden;
}

.testimonial-one .testi-text {
  font-family: var(--font-body, sans-serif);
  color: var(--text-dark, #2C2624);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-one .quote-icon-float {
  position: absolute;
  top: -28px;
  left: 45px;
  z-index: 10;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold, #C5A880);
  border-radius: var(--radius-sm, 4px);
  color: var(--primary, #413936);
  font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.25);
}

.testimonial-one .testi-user-slider {
  width: 100%;
  margin-top: 25px;
  overflow: hidden;
}

.testimonial-one .user-profile-area {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-one .user-thumb-box {
  width: 72px;
  height: 72px;
  padding: 4px;
  background: var(--bg-pure, #FFFFFF);
  border: 1px solid var(--accent-gold, #C5A880);
  border-radius: var(--radius-lg, 8px);
  box-sizing: border-box;
}

.testimonial-one .user-thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg, 8px) - 4px);
}

.testimonial-one .user-info h5 {
  margin: 0 0 4px 0;
  font-family: var(--font-body, sans-serif);
  color: var(--primary, #413936);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.testimonial-one .user-info span {
  display: block;
  font-family: var(--font-body, sans-serif);
  color: var(--text-muted, #7E7470);
  font-size: 0.85rem;
}

.testimonial-one .company-logo {
  height: 18px;
  margin-top: 8px;
  opacity: 0.5;
  filter: grayscale(100%);
}

.testi-one-right-thumbs {
  flex: 0 0 6%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-one .testi-thumbs-vertical {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: visible !important;
}

.testimonial-one .testi-thumbs-vertical .swiper-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.testimonial-one .testi-thumbs-vertical .swiper-slide {
  width: 54px !important;
  height: 54px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  cursor: pointer;
  opacity: 0.35;
  border: 2px solid transparent;
  box-sizing: border-box;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-one .testi-thumbs-vertical .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% !important;
}

.testimonial-one .testi-thumbs-vertical .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--accent-gold, #C5A880);
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.3);
}

/* ==========================================================================
   N. Advanced Dual-Slider Showcase (Swiper v12 Optimized)
   ========================================================================== */
.azzura-showcase-section {
  position: relative;
  width: 100%;
  padding: 150px 0;
  background-color: var(--bg-cream);
}

.azzura-showcase-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: stretch;
  width: 100%;
}

.azzura-showcase-main-wrapper {
  position: relative;
  width: 100%;
  min-width: 0;
}

.showcase-main-slider {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(65, 57, 54, 0.05);
  overflow: hidden;
}

.showcase-main-image-card {
  position: relative;
  width: 100%;
  height: 480px;
  background-color: var(--primary);
}

.showcase-main-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-map-preview-btn {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 10;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--primary);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.showcase-media-indicators {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.showcase-media-indicators .badge-pill-lux {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background-color: rgba(44, 38, 36, 0.75);
  color: #FFFFFF;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.65rem;
}

.showcase-action-sidebar {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.showcase-action-sidebar .btn-circle-lux {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(44, 38, 36, 0.75);
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.showcase-action-sidebar .btn-circle-lux:hover {
  background-color: var(--bg-pure);
  color: var(--accent-gold);
}

.showcase-slider-nav-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding: 0 5px;
  width: 100%;
}

.showcase-slider-nav-wrapper .nav-btn-lux {
  position: relative;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
}

.showcase-slider-nav-wrapper .nav-btn-lux:hover {
  color: var(--accent-gold);
  transform: scale(1.1);
}

.showcase-thumbs-slider {
  margin-top: 15px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.showcase-thumb-item {
  width: 100%;
  height: 90px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  opacity: 0.4;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.35s ease;
}

.showcase-thumbs-slider .swiper-slide-thumb-active .showcase-thumb-item {
  border-color: var(--accent-gold);
  opacity: 1;
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.15);
}

.showcase-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-info-slider {
  width: 100%;
  background-color: var(--bg-pure);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 45px rgba(65, 57, 54, 0.03);
  min-width: 0;
}

.property-details-sync {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 45px 40px;
  box-sizing: border-box;
}

.property-details-sync h2 {
  margin: 15px 0 8px 0;
  font-size: 2.2rem;
  color: var(--primary);
}

.property-details-sync .location-text {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 30px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.property-details-sync .location-text i {
  color: var(--accent-gold);
}

.property-details-sync .spec-matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 35px;
}

.property-details-sync .spec-node-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background-color: var(--bg-cream);
  border: 1px solid rgba(197, 168, 128, 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
}

.property-details-sync .spec-node-card i {
  color: var(--accent-gold);
}

.property-details-sync .price-tag-lux {
  margin-top: auto;
  padding-top: 20px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent-gold);
  border-top: 1px solid rgba(197, 168, 128, 0.15);
}

/* ==========================================================================
   O. Chronicles / Blog Section
   ========================================================================== */
.chronicles-sec {
  padding: 150px 0;
  background-color: var(--bg-cream);
  border-top: 1px solid rgba(197, 168, 128, 0.15);
}

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

.blog-card {
  background-color: var(--bg-pure);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px var(--shadow-lux);
  border: 1px solid rgba(197, 168, 128, 0.1);
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 45px rgba(65, 57, 54, 0.04);
}

.blog-img-box {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-img-box img {
  transform: scale(1.04);
}

.blog-body {
  padding: 30px;
}

.blog-meta-date {
  display: block;
  margin-bottom: 10px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  font-weight: 500;
}

.blog-body h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.blog-body p {
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

.blog-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 1.5px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-read-btn:hover {
  color: var(--accent-gold);
}

/* ==========================================================================
   P. FAQ / Dossier Section
   ========================================================================== */
/* --- Layout 1: Dossier Split View --- */
.faq-lux-sec {
  padding: 150px 0;
  background-color: var(--bg-cream);
  border-top: 1px solid rgba(197, 168, 128, 0.15);
}

.dossier-matrix-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
  perspective: 1500px;
  overflow: visible !important;
}

.dossier-index-pane {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.matrix-tab-anchor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 25px 35px;
  background: var(--bg-pure);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: var(--radius-lg);
  text-align: left;
  cursor: pointer;
}

.matrix-tab-anchor h3 {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.matrix-tab-anchor span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.matrix-tab-anchor .tab-arrow {
  font-size: 0.75rem;
  color: var(--accent-gold);
  transform: translateX(0);
  transition: transform 0.4s ease;
}

.matrix-tab-anchor:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 10px 25px rgba(65, 57, 54, 0.03);
}

.matrix-tab-anchor:hover .tab-arrow {
  transform: translateX(5px);
}

.matrix-tab-anchor.active-tab {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(44, 38, 36, 0.12);
}

.matrix-tab-anchor.active-tab h3 {
  color: #FFFFFF;
}

.matrix-tab-anchor.active-tab .tab-arrow {
  color: #FFFFFF;
  transform: translateX(5px) rotate(-40deg);
}

.dossier-viewer-stage {
  position: relative;
  width: 100%;
  min-height: 360px;
  padding: 50px;
  background: var(--bg-pure);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: var(--radius-lg);
  transform-style: preserve-3d;
  box-shadow: 0 15px 45px rgba(197, 168, 128, 0.05);
  overflow: visible !important;
  will-change: transform, box-shadow;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.dossier-viewer-stage:hover {
  transform: rotateX(5deg) rotateY(-3deg) translateY(-10px) translateZ(20px) !important;
  box-shadow: 0 5px 15px rgba(197, 168, 128, 0.03), 0 20px 40px rgba(197, 168, 128, 0.12), 0 40px 70px rgba(65, 57, 54, 0.06) !important;
  border-color: rgba(197, 168, 128, 0.35) !important;
}

.dossier-document-sheet {
  display: none;
  opacity: 0;
  transform: translateY(10px) translateZ(0);
  backface-visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.dossier-document-sheet.active-sheet {
  display: block;
  opacity: 1;
  transform: translateY(0) translateZ(20px);
}

.doc-header-seal {
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

.doc-header-seal h4 {
  margin-top: 4px;
  font-size: 1.4rem;
  font-weight: 500;
}

.doc-body-prose {
  color: var(--text-muted);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.8;
  text-align: justify;
}

/* --- Layout 2: Accordion View --- */
.faq-section-lux {
  padding: 130px 0;
  background-color: var(--bg-cream, #FAF6F0);
}

.faq-image-wrapper {
  position: relative;
  padding: 20px;
}

.faq-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--accent-gold, #C5A880) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  z-index: 1;
  opacity: 0.25;
}

.faq-image-wrapper .image-blob-frame {
  position: relative;
  z-index: 2;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--accent-gold, #C5A880);
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  box-shadow: 0 20px 45px rgba(65, 57, 54, 0.08);
  overflow: hidden;
}

.faq-image-wrapper .image-blob-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accordion-faq-matrix {
  margin-top: 35px;
  margin-bottom: 40px;
}

.accordion-node {
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

.accordion-trigger-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 22px 0;
  background: transparent;
  border: none;
  font-family: var(--font-body, sans-serif);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--primary, #413936);
  cursor: pointer;
  transition: color 0.3s ease;
}

.accordion-trigger-btn::after {
  content: '\f067';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-pure, #ffffff);
  color: var(--accent-gold, #C5A880);
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(197, 168, 128, 0.15);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.accordion-node.active .accordion-trigger-btn {
  color: var(--accent-gold, #C5A880);
}

.accordion-node.active .accordion-trigger-btn::after {
  content: '\f068';
  background-color: var(--primary, #413936);
  color: #ffffff;
  transform: rotate(180deg);
}

.accordion-panel-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-node.active .accordion-panel-collapse {
  max-height: 300px;
}

.accordion-body-prose {
  padding-bottom: 24px;
  color: var(--text-muted, #7E7470);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ==========================================================================
   Q. Strategic Location & Strip
   ========================================================================== */
/* --- Sovereign Parallax Strip --- */
.lux-parallax-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
  background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1920&q=85');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.lux-parallax-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(44, 38, 36, 0.65);
  backdrop-filter: grayscale(15%) sepia(5%);
}

.lux-parallax-card {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 45px 60px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--accent-gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.lux-parallax-card h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.lux-parallax-card p {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 300;
}

/* --- Strategic Location Map --- */
.loc-lux {
  padding: 150px 0;
  background-color: var(--bg-pure);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.map-frame-lux {
  height: 520px;
  padding: 15px;
  background-color: var(--bg-cream);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-frame-lux img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.loc-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.loc-node {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

/* ==========================================================================
   R. Executive Team Section
   ========================================================================== */
.executive-team {
  padding: 120px 0;
  background-color: var(--bg-cream);
}

.team-header {
  max-width: 650px;
  margin: 0 auto 70px auto;
  text-align: center;
}

.team-header h2 {
  margin: 20px 0 25px 0;
  font-size: 2.8rem;
  line-height: 1.25;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px 25px;
}

.team-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 45px rgba(65, 57, 54, 0.03);
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 65px rgba(65, 57, 54, 0.09);
}

.team-image-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  background-color: #f0f0f0;
  overflow: hidden;
}

.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-image-wrapper img {
  transform: scale(1.06);
}

.team-badges-container {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge-team {
  width: fit-content;
  padding: 6px 12px;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.badge-best  { background-color: var(--accent-gold); color: #ffffff; }
.badge-elite { background-color: #222222; color: var(--accent-gold); border: 1px solid rgba(197, 168, 128, 0.3); }
.badge-gold  { background-color: #ffffff; color: #333333; border-left: 3px solid var(--accent-gold); }

.team-info {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px 22px;
}

.team-info h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.3;
  color: #2b2523;
}

.team-role {
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: #8c827e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-socials {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.team-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(65, 57, 54, 0.03);
  border: 1px solid transparent;
  color: #413936;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-socials a:hover {
  background-color: var(--accent-gold);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(197, 168, 128, 0.25);
}

/* ==========================================================================
   S. Contact & Form Styles
   ========================================================================== */
.azzura-contact-section {
  position: relative;
  width: 100%;
  padding: 140px 0;
  background-color: #1a1615;
  box-sizing: border-box;
  overflow: hidden;
}

.contact-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140%;
  background-image: linear-gradient(to right, rgba(26, 22, 21, 0.94) 30%, rgba(26, 22, 21, 0.75) 100%), 
                    url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  transform: translateY(0);
}

.contact-dossier-pane {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-lead-prose {
  margin-bottom: 40px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #CECECE;
  font-weight: 300;
}

.contact-meta-directory {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.meta-directory-node {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.meta-directory-node .icon-box {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(197, 168, 128, 0.1);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: var(--radius-sm, 4px);
  color: var(--accent-gold, #C5A880);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.meta-directory-node .node-text h5 {
  margin-bottom: 4px;
  font-family: var(--font-body, sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.meta-directory-node .node-text p {
  color: #A69E9B;
  font-size: 0.88rem;
  line-height: 1.6;
  font-weight: 300;
}

.contact-maps-viewport {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-sm, 4px);
  border: 1px solid rgba(197, 168, 128, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  filter: grayscale(100%) invert(90%) contrast(110%);
  opacity: 0.85;
  overflow: hidden;
  transition: filter 0.4s ease, opacity 0.4s ease;
}

.contact-maps-viewport:hover {
  filter: grayscale(0%) invert(0%) contrast(100%);
  opacity: 1;
}

.contact-form-pane {
  display: flex;
  align-items: center;
}

.luxury-form-card {
  width: 100%;
  padding: 50px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(15px);
  border: 1px solid var(--accent-gold, #C5A880);
  border-radius: var(--radius-sm, 4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}

.form-card-header {
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(65, 57, 54, 0.1);
}

.form-card-header h4 {
  margin-bottom: 8px;
  font-family: var(--font-display, 'Cinzel', serif);
  font-size: 1.4rem;
  color: var(--primary, #413936);
  font-weight: 500;
  letter-spacing: 1px;
}

.form-card-header p {
  color: var(--text-muted, #7E7470);
  font-size: 0.85rem;
  line-height: 1.6;
  font-weight: 300;
}

.form-row-lux {
  display: flex;
  gap: 20px;
  width: 100%;
}

.form-group-lux {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
  width: 100%;
}

.form-group-lux label {
  margin-bottom: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--primary, #413936);
}

.form-group-lux input,
.form-group-lux select,
.form-group-lux textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-cream, #FAF6F0);
  border: 1px solid rgba(65, 57, 54, 0.15);
  border-radius: var(--radius-sm, 4px);
  font-family: var(--font-body, sans-serif);
  font-size: 0.9rem;
  color: var(--text-dark, #2C2624);
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-group-lux input::placeholder,
.form-group-lux textarea::placeholder {
  color: #A69E9B;
  font-weight: 300;
}

.form-group-lux input:focus,
.form-group-lux select:focus,
.form-group-lux textarea:focus {
  outline: none;
  border-color: var(--accent-gold, #C5A880);
  background: #FFFFFF;
  box-shadow: 0 6px 15px rgba(197, 168, 128, 0.12);
}

.form-group-lux select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23413936' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px;
  padding-right: 40px;
}

.btn-lux-submit-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background-color: var(--primary, #413936);
  color: #FFFFFF;
  border: 1px solid var(--primary, #413936);
  border-radius: var(--radius-sm, 4px) !important;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  box-shadow: 0 10px 25px rgba(65, 57, 54, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-lux-submit-form:hover {
  background-color: var(--accent-gold, #C5A880);
  border-color: var(--accent-gold, #C5A880);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(197, 168, 128, 0.3);
}

/* ==========================================================================
   T. Footer Styles
   ========================================================================== */
footer {
  position: relative;
  font-size: 0.88rem;
  color: #A39995;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25%;
  width: 50%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
  opacity: 0.4;
}

.footer-grid-lux {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 80px;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}

footer h4 {
  margin-bottom: 35px;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 3px;
  font-weight: 500;
}

footer p.footer-corporate-vision {
  line-height: 1.8;
  color: #8F8480;
  font-weight: 300;
  text-align: justify;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 16px;
}

.footer-links-list a {
  position: relative;
  display: inline-block;
  color: #A39995;
  text-decoration: none;
}

.footer-links-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

.footer-links-list a:hover::after {
  width: 100%;
}

.footer-links-list a:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

.footer-office-address {
  font-style: normal;
  line-height: 1.8;
  color: #8F8480;
  font-weight: 300;
}

/* ==========================================================================
   U. Third Party Overrides & Sliders
   ========================================================================== */
/* --- Swiper Core Elements & Pagination Engine --- */
.azzura-suite-slider {
  overflow: visible !important; 
  padding-bottom: 40px;
  padding-top: 30px;
}

.azzura-suite-controls .btn-nav-lux {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-cream);
  border: 1px solid rgba(197, 168, 128, 0.25);
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.azzura-suite-controls .btn-nav-lux:hover {
  background-color: var(--accent-gold);
  color: #FFFFFF;
  border-color: var(--accent-gold);
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(197, 168, 128, 0.2);
}

/* Memperbaiki jarak tombol navigasi atas ke card content di bawahnya */
.azzura-suite-section .d-flex.justify-content-between.align-items-end {
  margin-bottom: 3.5rem !important; /* Memaksa jarak aman bootstrap mb-5 kembali bekerja */
}

/* Isolasi total pagination khusus untuk Featured Suites */
.azzura-suite-section .swiper-pagination {
  position: relative !important;
  bottom: 0 !important;
  margin-top: 50px !important; /* Jarak dari bawah card ke indicator */
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100% !important;
  z-index: 10;
}

.azzura-suite-section .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  margin: 0 !important;
  background: rgba(65, 57, 54, 0.2) !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.azzura-suite-section .swiper-pagination-bullet-active {
  background: var(--accent-gold) !important;
  width: 35px !important;
  border-radius: var(--radius-sm) !important;
}

/* Mengembalikan kestabilan ukuran tinggi card (equal height layout) tanpa merusak slide global */
.azzura-suite-slider .swiper-slide {
  height: auto !important;
  display: flex !important;
  align-items: stretch;
}

/* Menjinakkan wrapper bawaan swiper agar flexbox di atas bekerja normal */
.azzura-suite-slider .swiper-wrapper {
  display: flex !important;
}

/* Komponen Swiper global dinormalisasi agar slider lain di web Anda tidak hancur */
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block; /* kembalikan ke default swiper engine */
}

/* Pembenahan slider milik section Showcase agar tidak ikut berantakan */
.showcase-main-wrapper .swiper-pagination {
  position: absolute !important;
  bottom: 25px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: auto !important;
  z-index: 15;
}

.showcase-main-wrapper .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: rgba(255, 255, 255, 0.4) !important;
  opacity: 1 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.showcase-main-wrapper .swiper-pagination-bullet-active {
  background: var(--accent-gold) !important;
  width: 35px !important;
  border-radius: var(--radius-sm) !important;
}

/* --- Infinite Brand Logo Track --- */
.logo-slider-wrapper {
  position: relative;
  width: 100%;
  margin-top: 70px;
  padding: 25px 0;
  overflow: hidden;
}

.logo-slider-wrapper::before,
.logo-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.logo-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-pure, #FFFFFF), transparent);
}

.logo-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-pure, #FFFFFF), transparent);
}

.logo-track {
  display: flex;
  width: calc(240px * 12);
  animation: azzuraInfiniteScroll 35s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  padding: 0 40px;
  box-sizing: border-box;
}

.logo-item img {
  max-width: 130px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: all 0.4s ease;
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 0.9;
}

/* ==========================================================================
   V. Helpers, Animations & Optimization
   ========================================================================== */
/* --- Global Smooth Tuning System --- */
.btn-lux,
.coll-card,
.blog-card,
.matrix-tab-anchor,
.symphony-grid-node img,
.symphony-glass-plate,
.offcanvas-nav-left {
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  transition-duration: 0.35s !important;
}

/* --- Lazy Loading Performance Optimizer --- */
.azzura-suite-card .image-wrapper.loading::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(197, 168, 128, 0.1), transparent);
  animation: azzuraShimmer 1.5s infinite;
}

.animate-content {
  opacity: 0;
  transform: translateY(15px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.swiper-slide-active .animate-content {
  opacity: 1;
  transform: translateY(0);
}

/* --- Interactive Preloader Mechanism --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: var(--bg-cream);
  transition: opacity 1s ease;
}

#preloader .loader .loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(197, 168, 128, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#preloader .loader .loader-container::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border-top: 3px solid var(--accent-gold);
  border-radius: 50%;
  animation: loaderspin 1.2s infinite ease-in-out;
  transform: translate(-50%, -50%);
}

#preloader .loader .loader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  text-align: center;
  transform: translate(-50%, -50%);
}

#preloader .loader .loader-icon img {
  width: 70px;
  animation: loaderpulse alternate 900ms infinite;
}

/* --- Floating Concierge Utilities --- */
.utility-dock-horizontal {
  position: fixed;
  bottom: 45px;
  right: 45px;
  z-index: 99;
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.utility-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(65, 57, 54, 0.15);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-wa-lux {
  background-color: #25D366;
  border-color: #20BA5A;
  color: #FFFFFF;
  font-size: 1.5rem;
}

.btn-wa-lux:hover {
  background-color: var(--primary);
  border-color: var(--accent-gold);
}

.btn-top-lux {
  background-color: var(--bg-pure);
  border-color: rgba(197, 168, 128, 0.3);
  color: var(--primary);
  font-size: 0.9rem;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}

.btn-top-lux.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.btn-top-lux:hover {
  background-color: var(--accent-gold);
  color: #ffffff;
  border-color: var(--accent-gold);
}

/* --- Core Keyframes Library --- */
@keyframes luxuryFadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes azzuraShimmer {
  100% { transform: translateX(100%); }
}
@keyframes loaderspin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes loaderpulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
@keyframes azzuraFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes azzuraInfiniteScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-240px * 6)); }
}

/* ==========================================================================
   Responsive - Desktop (1200px)
   ========================================================================== */
@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .team-image-wrapper {
    height: 350px;
  }
}

/* ==========================================================================
   Responsive - Tablet Landscape (992px)
   ========================================================================== */
@media (max-width: 992px) {
  .desktop-nav-menu {
    display: none;
  }

  .menu-trigger {
    display: flex;
  }

  .hero-slide-node h1 {
    font-size: 3rem;
  }

  .concept-grid,
  .loc-grid,
  .footer-grid-lux,
  .dossier-matrix-grid,
  .chronicles-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .perks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .coll-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .coll-card {
    height: 520px !important;
    overflow: visible !important;
    border-radius: var(--radius-lg) !important;
  }

  .coll-img-wrapper {
    border-radius: var(--radius-lg) !important;
  }

  .coll-card::before {
    border-bottom-left-radius: var(--radius-lg) !important;
    border-bottom-right-radius: var(--radius-lg) !important;
  }

  .coll-content-box {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 30px 22px 22px 22px !important;
    transform: none !important;
    border-bottom-left-radius: var(--radius-lg) !important;
    border-bottom-right-radius: var(--radius-lg) !important;
  }

  .coll-action-reveal {
    max-height: 80px !important;
    opacity: 1 !important;
    margin-top: 16px !important;
    overflow: visible !important;
  }

  .coll-action-reveal .btn-lux {
    padding: 12px !important;
    width: 100% !important;
    text-align: center;
    font-size: 0.68rem !important;
  }

  .symphony-asymmetric-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
  }

  .symphony-span-7-wide,
  .symphony-span-5-tall,
  .symphony-span-4-box,
  .symphony-span-8-long {
    grid-column: span 2;
    grid-row: span 1;
  }

  .timer-row {
    flex-wrap: wrap;
    gap: 15px;
  }

  .timer-unit {
    min-width: 45%;
  }

  .utility-dock-horizontal {
    bottom: 30px;
    right: 30px;
  }

  .dossier-index-pane {
    position: static;
  }

  .executive-team {
    padding: 90px 0;
  }

  .team-header h2 {
    font-size: 2.3rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .team-card {
    overflow: hidden !important;
  }

  .offcanvas-menu-vertical {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
  }

  .offcanvas-menu-vertical li {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .offcanvas-menu-vertical > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px !important;
    color: rgba(255, 255, 255, 0.65) !important;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .offcanvas-menu-vertical > li.active-nav > a {
    background: linear-gradient(90deg, rgba(197, 168, 128, 0.15) 0%, rgba(197, 168, 128, 0.03) 100%);
    color: var(--accent-gold) !important;
    border-left: 3px solid var(--accent-gold);
    padding-left: 25px !important;
  }

  .offcanvas-menu-vertical > li > a:hover {
    background: rgba(255, 255, 255, 0.02);
    color: #FFFFFF !important;
  }

  .offcanvas-menu-vertical .menu-chevron {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s ease;
  }

  .offcanvas-menu-vertical > li.active-nav .menu-chevron {
    color: var(--accent-gold);
  }

  .offcanvas-menu-vertical .has-dropdown.open-dropdown .menu-chevron {
    transform: rotate(-180deg);
    color: var(--accent-gold);
  }

  .offcanvas-menu-vertical .dropdown-menu {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    position: static;
    background: rgba(0, 0, 0, 0.15);
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: unset;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  }

  .offcanvas-menu-vertical .has-dropdown.open-dropdown .dropdown-menu {
    max-height: 250px;
    opacity: 1;
    visibility: visible;
    padding: 8px 0;
    border-top: 1px solid rgba(197, 168, 128, 0.08);
  }

  .offcanvas-menu-vertical .dropdown-menu li a {
    display: block;
    padding: 10px 35px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none !important;
    transition: all 0.25s ease;
  }

  .offcanvas-menu-vertical .dropdown-menu li.active-sub a,
  .offcanvas-menu-vertical .dropdown-menu li a:hover {
    color: var(--accent-gold) !important;
    background: transparent !important;
    padding-left: 40px !important;
  }

  .azzura-showcase-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .showcase-main-image-card {
    height: 380px;
  }

  .property-details-sync {
    padding: 35px 30px;
  }

  .azzura-client-matrix-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .client-text-workspace {
    padding-left: 0;
  }

  .client-thumbs-vertical-wheel {
    height: auto;
    width: 100%;
    margin-top: 10px;
  }

  .client-thumbs-vertical-wheel .swiper-wrapper {
    flex-direction: row !important;
    justify-content: center;
    gap: 15px;
  }

  .client-thumbs-vertical-wheel .swiper-slide {
    margin-bottom: 0;
  }

  .testi-one-flex-master {
    flex-direction: column;
    gap: 30px;
  }

  .testi-one-left-media,
  .testi-one-center-workspace,
  .testi-one-right-thumbs {
    flex: 0 0 100%;
    width: 100%;
  }

  .testimonial-one .testi-large-slider {
    height: 320px;
    min-height: unset;
  }

  .testimonial-one .testi-thumbs-vertical {
    width: 100%;
    height: auto;
    margin-top: 20px;
    overflow: visible !important;
  }

  .testimonial-one .testi-thumbs-vertical .swiper-wrapper {
    flex-direction: row !important;
    justify-content: center;
    gap: 15px;
  }

  .azzura-grid-4x {
    grid-template-columns: repeat(2, 1fr);
  }

  .azzura-grid-2x {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section-header-left h2,
  .display-lux-title {
    font-size: 2.1rem;
  }

  .azzura-grid-3x {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .financing-card .card-main {
    padding: 30px;
  }

  .financing-card .card-footer-bank {
    padding: 20px 30px;
  }

  .logo-slider-wrapper::before,
  .logo-slider-wrapper::after {
    width: 60px;
  }

  .azzura-contact-section {
    padding: 90px 0;
  }

  .contact-form-pane {
    margin-top: 20px;
  }

  .luxury-form-card {
    padding: 35px 25px;
  }
}

/* ==========================================================================
   Responsive - Tablet Portrait (768px)
   ========================================================================== */
@media (max-width: 768px) {
  .parallax-wrapper {
    height: 450px;
  }
}

/* ==========================================================================
   Responsive - Mobile Large (576px)
   ========================================================================== */
@media (max-width: 576px) {
  .perks-grid {
    grid-template-columns: 1fr;
  }

  .coll-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .coll-card {
    height: 490px !important;
    overflow: visible !important;
    border-radius: var(--radius-lg) !important;
  }

  .coll-img-wrapper {
    border-radius: var(--radius-lg) !important;
  }

  .coll-card::before {
    border-bottom-left-radius: var(--radius-lg) !important;
    border-bottom-right-radius: var(--radius-lg) !important;
  }

  .coll-content-box {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 30px 22px 22px 22px !important;
    transform: none !important;
    border-bottom-left-radius: var(--radius-lg) !important;
    border-bottom-right-radius: var(--radius-lg) !important;
  }

  .coll-action-reveal {
    max-height: 80px !important;
    opacity: 1 !important;
    margin-top: 16px !important;
    overflow: visible !important;
  }

  .coll-action-reveal .btn-lux {
    padding: 12px !important;
    width: 100% !important;
    text-align: center;
  }

  .hero-slide-node h1 {
    font-size: 2.2rem;
  }

  .btn-lux {
    width: 100%;
    text-align: center;
  }

  .symphony-asymmetric-grid {
    grid-template-columns: 1fr;
  }

  .symphony-span-7-wide,
  .symphony-span-5-tall,
  .symphony-span-4-box,
  .symphony-span-8-long {
    grid-column: span 1;
  }

  .dossier-viewer-stage {
    padding: 30px 20px;
  }

  .team-header h2 {
    font-size: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-image-wrapper {
    height: 400px;
  }

  .showcase-main-image-card {
    height: 280px;
  }

  .property-details-sync h2 {
    font-size: 1.8rem;
  }

  .property-details-sync .spec-matrix-grid {
    grid-template-columns: 1fr;
  }

  .property-details-sync {
    padding: 35px 25px;
  }

  .showcase-media-indicators {
    top: 15px;
    left: 15px;
  }

  .showcase-action-sidebar {
    top: 15px;
    right: 15px;
  }

  .azzura-grid-4x {
    grid-template-columns: 1fr;
  }

  .discover-card {
    aspect-ratio: 4 / 5;
  }

  .nav-tabs-custom {
    overflow-x: auto;
    gap: 20px;
  }

  .form-row-lux {
    flex-direction: column;
    gap: 0;
  }

  .contact-maps-viewport {
    height: 200px;
  }
}

/* ==========================================================================
   W. State Classes / Interaction Flags (Touch Fallbacks)
   ========================================================================== */
@media (hover: none) {
  .coll-card {
    height: 520px !important;
    overflow: visible !important;
    border-radius: var(--radius-lg) !important;
  }

  .coll-img-wrapper {
    border-radius: var(--radius-lg) !important;
  }

  .coll-card::before {
    border-bottom-left-radius: var(--radius-lg) !important;
    border-bottom-right-radius: var(--radius-lg) !important;
  }

  .coll-content-box {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 30px 22px 22px 22px !important;
    transform: none !important;
    border-bottom-left-radius: var(--radius-lg) !important;
    border-bottom-right-radius: var(--radius-lg) !important;
  }

  .coll-action-reveal {
    max-height: 80px !important;
    opacity: 1 !important;
    margin-top: 16px !important;
    overflow: visible !important;
  }

  .coll-action-reveal .btn-lux {
    padding: 12px !important;
    width: 100% !important;
    text-align: center;
    font-size: 0.68rem !important;
  }
}