/* ==========================================================================
   ARDENA RESIDENCES — MAIN ARCHITECTURAL STYLESHEET
   Concept: "LIVE BEYOND A HOUSE"
   Editorial, Calm, Warm, Premium, Trustworthy
   ========================================================================== */

/* --- 1. FLOATING ARCHITECTURAL NAVBAR --- */
.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 clamp(16px, 3.5vw, 48px);
  pointer-events: none;
  transition: top 0.35s var(--ease-cinematic);
}

.site-header.scrolled {
  top: 10px;
}

.header-floating-island {
  max-width: 1440px;
  margin: 0 auto;
  background: rgba(250, 248, 245, 0.90);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(23, 25, 28, 0.08);
  border-radius: 9999px;
  box-shadow: 0 8px 32px rgba(22, 24, 27, 0.06);
  pointer-events: auto;
  transition: all 0.35s var(--ease-cinematic);
  padding: 0 10px 0 24px;
}

.site-header.scrolled .header-floating-island {
  background: rgba(250, 248, 245, 0.97);
  border-color: rgba(23, 25, 28, 0.12);
  box-shadow: 0 14px 38px rgba(22, 24, 27, 0.10);
}

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

/* Brand Logo */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-monogram {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(200, 109, 81, 0.35);
  background: rgba(200, 109, 81, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
}

.brand-logo:hover .brand-monogram {
  border-color: var(--accent-terracotta);
  background: rgba(200, 109, 81, 0.12);
  transform: rotate(5deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.1;
}

.brand-subtitle {
  font-family: var(--font-specs);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  font-family: var(--font-editorial);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 9999px;
  transition: color 0.2s ease, background-color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--accent-terracotta);
  background-color: rgba(200, 109, 81, 0.08);
}

.nav-link.active {
  color: var(--accent-terracotta);
  background-color: rgba(200, 109, 81, 0.12);
  font-weight: 600;
}

/* Nav Action & CTA */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--green-deep-forest);
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: 9999px;
  font-family: var(--font-editorial);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px solid var(--green-deep-forest);
  cursor: pointer;
  transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-cta-btn:hover {
  background-color: var(--green-forest-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(20, 36, 27, 0.25);
}

.nav-cta-btn .btn-arrow {
  transition: transform 0.2s ease;
}

.nav-cta-btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* Mobile Toggle */
.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border-light-medium);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.mobile-menu-btn:hover {
  border-color: var(--accent-terracotta);
  background-color: rgba(200, 109, 81, 0.08);
}

.mobile-menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 88%;
  max-width: 420px;
  height: 100vh;
  background-color: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: -12px 0 45px rgba(0, 0, 0, 0.18);
  z-index: 10001;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s var(--ease-cinematic);
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light-medium);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.mobile-drawer-close:hover {
  background-color: var(--accent-terracotta);
  border-color: var(--accent-terracotta);
  color: #FFFFFF;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
  padding: 8px 0;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.mobile-nav-link .m-idx {
  font-family: var(--font-specs);
  font-size: 0.75rem;
  color: var(--accent-terracotta);
}

.mobile-nav-link:hover {
  color: var(--accent-terracotta);
  transform: translateX(6px);
}

.mobile-drawer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.mobile-drawer-contact {
  font-family: var(--font-specs);
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 12px;
}

/* --- 2. HERO SECTION — CINEMATIC PROPERTY EXPERIENCE --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vh, 120px);
  padding-top: 140px;
  overflow: hidden;
  background-color: var(--bg-stone-dark);
}

.hero-background-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: slowHeroZoom 20s infinite alternate ease-in-out;
}

@keyframes slowHeroZoom {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(14, 16, 18, 0.4) 0%,
    rgba(14, 16, 18, 0.25) 45%,
    rgba(14, 16, 18, 0.85) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  color: var(--text-light);
  max-width: 960px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(250, 248, 245, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-dark-medium);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-specs);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg-warm-white);
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-terracotta);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  margin-bottom: 22px;
}

.hero-subtitle {
  font-family: var(--font-editorial);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 48px;
}

.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
}

.hero-stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  line-height: 1.2;
}

.hero-stat-item .stat-lbl {
  font-family: var(--font-specs);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-light-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* --- 2. ABOUT THE RESIDENCE (EDITORIAL MAGAZINE STYLE) --- */
.about-editorial-section {
  padding: clamp(90px, 12vw, 160px) 0;
  background-color: var(--bg-cream);
  position: relative;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.editorial-img-collage {
  position: relative;
}

.editorial-main-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-medium);
}

.editorial-overlap-card {
  position: absolute;
  bottom: -40px;
  right: -30px;
  background: var(--green-deep-forest);
  color: var(--bg-warm-white);
  padding: 32px;
  border-radius: var(--radius-xs);
  max-width: 320px;
  box-shadow: var(--shadow-elevated);
}

.overlap-card-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.overlap-card-txt {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-light-muted);
}

.editorial-content-col {
  padding-left: 20px;
}

.editorial-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}

.editorial-vision-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

/* 4 Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light-medium);
}

.pillar-item .pillar-idx {
  font-family: var(--font-specs);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--accent-terracotta);
  margin-bottom: 6px;
}

.pillar-item .pillar-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.pillar-item .pillar-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- 7. HOUSE TYPES SECTION --- */
.house-types-section {
  padding: clamp(90px, 12vw, 150px) 0;
  background-color: var(--bg-warm-white);
}

.ht-tabs-nav {
  display: flex;
  gap: 14px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 14px;
  overflow-x: auto;
}

.house-type-tab {
  background: transparent;
  border: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding: 8px 18px;
  cursor: pointer;
  position: relative;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.house-type-tab::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-terracotta);
  transition: width var(--transition-fast);
}

.house-type-tab.active {
  color: var(--accent-terracotta);
  font-weight: 600;
}

.house-type-tab.active::after {
  width: 100%;
}

.ht-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.ht-visual-col {
  position: relative;
}

.ht-main-img-wrap {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.ht-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.ht-interior-thumb-wrap {
  position: absolute;
  bottom: -24px;
  right: 24px;
  width: 220px;
  height: 150px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  border: 4px solid var(--bg-warm-white);
  box-shadow: var(--shadow-elevated);
}

.ht-interior-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ht-details-col {
  padding-right: 20px;
}

.ht-category-tag {
  font-family: var(--font-specs);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-terracotta);
  margin-bottom: 8px;
}

.ht-unit-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 8px;
}

.ht-unit-tagline {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.ht-price-box {
  background: var(--bg-cream);
  padding: 16px 22px;
  border-radius: var(--radius-xs);
  margin-bottom: 28px;
  display: inline-flex;
  flex-direction: column;
}

.ht-price-label {
  font-family: var(--font-specs);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.ht-price-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-deep-forest);
}

/* Specs Table Grid */
.ht-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.spec-cell .spec-label {
  font-family: var(--font-specs);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.spec-cell .spec-val {
  font-family: var(--font-editorial);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 4px;
}

.ht-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.ht-feat-bullet {
  color: var(--accent-terracotta);
  font-weight: bold;
  margin-right: 8px;
}

/* --- 8. INTERACTIVE FLOOR PLAN SECTION --- */
.floorplan-section {
  padding: clamp(90px, 12vw, 150px) 0;
  background-color: var(--bg-cream);
}

.fp-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

.fp-blueprint-canvas-wrap {
  position: relative;
  background-color: var(--bg-warm-white);
  border: 1px solid var(--border-light-medium);
  border-radius: var(--radius-xs);
  padding: 30px;
  box-shadow: var(--shadow-medium);
}

.fp-svg-container {
  width: 100%;
  height: auto;
}

.fp-room-hotspot {
  cursor: pointer;
  transition: all var(--transition-fast);
}

.fp-room-hotspot polygon,
.fp-room-hotspot rect {
  fill: rgba(226, 221, 212, 0.5);
  stroke: var(--border-light-strong);
  stroke-width: 1.5;
  transition: fill 0.25s ease, stroke 0.25s ease;
}

.fp-room-hotspot:hover polygon,
.fp-room-hotspot:hover rect {
  fill: var(--accent-terracotta-soft);
  stroke: var(--accent-terracotta);
}

.fp-room-hotspot.active polygon,
.fp-room-hotspot.active rect {
  fill: rgba(200, 109, 81, 0.25);
  stroke: var(--accent-terracotta);
  stroke-width: 2.5;
}

.fp-room-label {
  font-family: var(--font-specs);
  font-size: 11px;
  fill: var(--text-primary);
  font-weight: 500;
  pointer-events: none;
}

.fp-details-card {
  background: var(--bg-warm-white);
  border: 1px solid var(--border-light-medium);
  border-radius: var(--radius-xs);
  padding: 36px;
  box-shadow: var(--shadow-medium);
  transition: opacity 0.2s ease;
}

.fp-room-img-wrap {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  margin-bottom: 20px;
}

.fp-room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fp-room-tag {
  font-family: var(--font-specs);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: var(--accent-terracotta);
  margin-bottom: 6px;
}

.fp-room-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.fp-metrics-pills {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.fp-metric-pill {
  background: var(--bg-cream);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-specs);
  font-size: 0.75rem;
  color: var(--text-primary);
  font-weight: 500;
}

.fp-room-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.fp-highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-primary);
}

/* --- 9. LIFESTYLE SECTION --- */
.lifestyle-section {
  padding: clamp(90px, 12vw, 160px) 0;
  background-color: var(--green-deep-forest);
  color: var(--bg-warm-white);
  position: relative;
  overflow: hidden;
}

.lifestyle-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px auto;
}

.lifestyle-header .section-title-large {
  color: #FFFFFF;
}

.lifestyle-header .section-subtitle {
  color: var(--text-light-muted);
}

.lifestyle-gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 24px;
}

.lifestyle-card {
  position: relative;
  border-radius: var(--radius-xs);
  overflow: hidden;
}

.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-cinematic);
}

.lifestyle-card:hover img {
  transform: scale(1.06);
}

.lifestyle-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 18, 15, 0.85) 100%);
}

.lifestyle-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.lifestyle-card-desc {
  font-size: 0.875rem;
  color: var(--text-light-muted);
}

.card-span-7 { grid-column: span 7; }
.card-span-5 { grid-column: span 5; }
.card-span-4 { grid-column: span 4; }
.card-span-8 { grid-column: span 8; }

/* --- 10. FACILITIES HORIZONTAL GALLERY --- */
.facilities-section {
  padding: clamp(90px, 12vw, 150px) 0;
  background-color: var(--bg-warm-white);
  overflow: hidden;
}

.facilities-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.fac-slider-nav {
  display: flex;
  gap: 12px;
}

.fac-nav-btn {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-light-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.fac-nav-btn:hover {
  background-color: var(--green-deep-forest);
  border-color: var(--green-deep-forest);
  color: #FFFFFF;
}

.facilities-track-wrap {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
}

.facilities-track-wrap::-webkit-scrollbar {
  display: none;
}

.facilities-track-wrap.dragging {
  cursor: grabbing;
}

.facilities-track {
  display: flex;
  gap: 30px;
  padding-bottom: 20px;
}

.facility-card {
  min-width: 360px;
  width: 360px;
  background: var(--bg-cream);
  border-radius: var(--radius-xs);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.facility-card-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.facility-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.facility-card-body {
  padding: 26px;
}

.facility-tag {
  font-family: var(--font-specs);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  color: var(--accent-terracotta);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.facility-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.facility-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- 11. LOCATION SECTION --- */
.location-section {
  padding: clamp(90px, 12vw, 150px) 0;
  background-color: var(--bg-cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.loc-content-col {
  padding-right: 20px;
}

.loc-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 36px 0;
}

.loc-filter-btn {
  background: var(--bg-warm-white);
  border: 1px solid var(--border-light);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-specs);
  font-size: 0.75rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.loc-filter-btn.active,
.loc-filter-btn:hover {
  background-color: var(--green-deep-forest);
  color: #FFFFFF;
  border-color: var(--green-deep-forest);
}

.loc-pois-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.loc-poi-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-warm-white);
  padding: 18px 24px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.loc-poi-card:hover {
  transform: translateX(6px);
  border-color: var(--accent-terracotta);
}

.poi-info-left {
  display: flex;
  flex-direction: column;
}

.poi-category {
  font-family: var(--font-specs);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: var(--accent-terracotta);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.poi-name {
  font-family: var(--font-editorial);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.poi-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.poi-badge-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.poi-time {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-deep-forest);
}

.poi-dist {
  font-family: var(--font-specs);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Styled Interactive Map Mockup */
.loc-map-col {
  position: relative;
  height: 540px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-light-medium);
}

.loc-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loc-map-pin-ardena {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent-terracotta);
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px var(--accent-terracotta-glow);
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- 12. WHY INVEST HERE --- */
.invest-section {
  padding: clamp(90px, 12vw, 150px) 0;
  background-color: var(--bg-warm-white);
}

.invest-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px auto;
}

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

.invest-card {
  background: var(--bg-cream);
  padding: 36px 30px;
  border-radius: var(--radius-xs);
  border-top: 3px solid var(--accent-terracotta);
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-fast);
}

.invest-card:hover {
  transform: translateY(-6px);
}

.invest-num {
  font-family: var(--font-specs);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent-terracotta);
  margin-bottom: 14px;
}

.invest-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.invest-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- 13. GALLERY SECTION --- */
.gallery-section {
  padding: clamp(90px, 12vw, 150px) 0;
  background-color: var(--bg-cream);
}

.gal-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.gal-tab-btn {
  background: var(--bg-warm-white);
  border: 1px solid var(--border-light);
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-specs);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gal-tab-btn.active,
.gal-tab-btn:hover {
  background-color: var(--green-deep-forest);
  color: #FFFFFF;
  border-color: var(--green-deep-forest);
}

.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-grid-item {
  position: relative;
  height: 280px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  cursor: pointer;
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-cinematic);
}

.gallery-grid-item:hover img {
  transform: scale(1.08);
}

.gal-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 18, 15, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-grid-item:hover .gal-item-overlay {
  opacity: 1;
}

.gal-item-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #FFFFFF;
}

.gal-item-overlay p {
  font-size: 0.8125rem;
  color: var(--text-light-muted);
}

/* Lightbox Modal */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 12, 14, 0.94);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 30px;
}

.gallery-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lb-content-wrap {
  position: relative;
  max-width: 960px;
  width: 100%;
  text-align: center;
}

.lb-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-xs);
  margin: 0 auto;
}

.lb-meta {
  margin-top: 16px;
  color: #FFFFFF;
}

.lb-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #FFFFFF;
  font-size: 2.2rem;
  cursor: pointer;
}

/* --- 14. TESTIMONIALS SECTION --- */
.testimonial-section {
  padding: clamp(90px, 12vw, 150px) 0;
  background-color: var(--bg-warm-white);
  text-align: center;
}

.testimonial-container {
  max-width: 860px;
  margin: 0 auto;
}

.testimonial-quote-icon {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--accent-terracotta);
  line-height: 0.8;
  margin-bottom: 24px;
}

.testimonial-large-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 36px;
}

.testimonial-author-wrap {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.test-author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-terracotta);
}

.test-author-info {
  text-align: left;
}

.test-author-name {
  font-family: var(--font-editorial);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.test-author-unit {
  font-family: var(--font-specs);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* --- 15. FINAL CALL TO ACTION --- */
.final-cta-section {
  position: relative;
  padding: clamp(120px, 16vw, 200px) 0;
  background-color: var(--bg-stone-dark);
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.final-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(14, 16, 18, 0.4) 0%, rgba(14, 16, 18, 0.92) 100%);
}

.final-cta-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.final-cta-sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.final-cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

/* --- 16. FLOATING WHATSAPP BUTTON --- */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  z-index: 9990;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-floating-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.6);
}

.wa-pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s infinite ease-out;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--bg-stone-dark);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-editorial);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-medium);
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-floating-btn:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --- 17. VIP VISIT BOOKING MODAL --- */
.visit-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 16, 18, 0.8);
  backdrop-filter: blur(12px);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.visit-modal.active {
  opacity: 1;
  pointer-events: all;
}

.visit-modal-content {
  background: var(--bg-warm-white);
  max-width: 580px;
  width: 100%;
  border-radius: var(--radius-xs);
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-elevated);
  max-height: 90vh;
  overflow-y: auto;
}

.visit-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-primary);
}

.visit-form-group {
  margin-bottom: 20px;
}

.visit-form-group label {
  display: block;
  font-family: var(--font-specs);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.visit-form-group input,
.visit-form-group select,
.visit-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light-medium);
  border-radius: var(--radius-xs);
  font-family: var(--font-editorial);
  font-size: 0.9375rem;
  background: var(--bg-cream);
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-fast);
}

.visit-form-group input:focus,
.visit-form-group select:focus,
.visit-form-group textarea:focus {
  border-color: var(--accent-terracotta);
}

/* --- 18. FOOTER --- */
.site-footer {
  background-color: var(--bg-stone-darker);
  color: var(--text-light);
  padding: 100px 0 40px 0;
  border-top: 1px solid var(--border-dark);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  margin-bottom: 80px;
}

.footer-brand-col .brand-title {
  color: #FFFFFF;
}

.footer-brand-desc {
  font-size: 0.9375rem;
  color: var(--text-light-muted);
  line-height: 1.7;
  margin: 18px 0 24px 0;
  max-width: 340px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light-muted);
  margin-bottom: 12px;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
  font-family: var(--font-specs);
  font-size: 0.75rem;
  color: var(--text-light-dim);
  flex-wrap: wrap;
  gap: 16px;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1160px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .editorial-grid,
  .ht-showcase-grid,
  .fp-layout-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }

  .editorial-img-collage {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 10px;
    padding: 0 12px;
  }

  .header-floating-island {
    padding: 0 8px 0 16px;
    border-radius: 9999px;
  }

  .nav-container {
    height: 56px;
  }

  .nav-cta-btn {
    display: none;
  }

  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .invest-grid {
    grid-template-columns: 1fr;
  }

  .gallery-masonry-grid {
    grid-template-columns: 1fr;
  }

  .lifestyle-gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .card-span-7, .card-span-5, .card-span-4, .card-span-8 {
    grid-column: span 1;
    height: 260px;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .ht-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
