/* ==========================================================================
   ARANYA LOKA - 3D LUXURY BIOPHILIC SANCTUARY DESIGN SYSTEM (PERFECTED)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Core Luxury Color Palette */
  --bg-primary: #FAF8F5;
  --bg-secondary: #F2ECE1;
  --bg-surface: #FFFFFF;
  --bg-dark: #0A2417;
  --bg-dark-deep: #06180F;
  --bg-card-dark: rgba(255, 255, 255, 0.05);

  --emerald-900: #0A2417;
  --emerald-800: #113624;
  --emerald-700: #1B4D34;
  --emerald-600: #29684A;
  
  --gold-500: #C59B4F;
  --gold-400: #D8B26B;
  --gold-300: #EAD098;
  --gold-100: #FBF4E4;
  --gold-glow: rgba(197, 155, 79, 0.28);

  --sage-600: #556B5C;
  --sage-500: #748B7C;
  --sage-300: #A8BDB0;
  --sage-100: #E2ECE5;
  --sage-50: #F2F7F4;

  --text-primary: #0E261A;
  --text-secondary: #475E50;
  --text-muted: #728A7C;
  --text-light: #FBF9F4;
  --text-light-muted: #C5D4CB;

  --border-light: rgba(14, 38, 26, 0.09);
  --border-gold: rgba(197, 155, 79, 0.35);
  --border-dark: rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container-max: 1240px;
  --container-pad: clamp(1.5rem, 5vw, 4.5rem);
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(10, 36, 23, 0.04);
  --shadow-md: 0 10px 32px rgba(10, 36, 23, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 36, 23, 0.12);
  --shadow-dark: 0 24px 60px rgba(0, 0, 0, 0.35);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s var(--ease-smooth);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) - 10px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   CONTAINER & SECTION UTILITIES
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding-top: clamp(4.5rem, 7.5vw, 8rem);
  padding-bottom: clamp(4.5rem, 7.5vw, 8rem);
  position: relative;
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section-warm {
  background-color: var(--bg-secondary);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1.2rem;
  white-space: nowrap;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background-color: currentColor;
}

.eyebrow-light {
  color: var(--gold-300);
}

.heading-display {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.heading-display em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-500);
}

.section-dark .heading-display em {
  color: var(--gold-300);
}

.text-lead {
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.75;
  color: var(--text-secondary);
}

.section-dark .text-lead {
  color: var(--text-light-muted);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.8rem 1.65rem;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500) 0%, #A87E35 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(197, 155, 79, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(197, 155, 79, 0.5);
  color: #FFFFFF;
}

.btn-dark {
  background: var(--emerald-900);
  color: #FFFFFF;
  border: 1px solid rgba(197, 155, 79, 0.3);
}

.btn-dark:hover {
  background: var(--emerald-800);
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: #FFFFFF;
  color: var(--emerald-900);
  border-color: #FFFFFF;
}

.btn-outline-dark {
  background: transparent;
  color: var(--emerald-900);
  border: 1px solid rgba(10, 36, 23, 0.25);
}

.btn-outline-dark:hover {
  background: var(--emerald-900);
  color: #FFFFFF;
  border-color: var(--emerald-900);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  line-height: 1;
  transition: transform var(--transition-normal);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ==========================================================================
   PAGE LOADER & PROGRESS BAR
   ========================================================================== */

.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--sage-300));
  z-index: 1001;
  transition: width 0.1s linear;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-logo {
  max-width: 240px;
  width: 80%;
  animation: logoPulse 1.8s infinite ease-in-out;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(0.97); opacity: 0.9; }
  50% { transform: scale(1.03); opacity: 1; }
}

.loader-bar-wrap {
  width: 140px;
  height: 3px;
  background: rgba(10, 36, 23, 0.08);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.loader-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 40%;
  background: var(--gold-500);
  border-radius: 3px;
  animation: loaderPulse 1.4s infinite ease-in-out;
}

@keyframes loaderPulse {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ==========================================================================
   NAVIGATION BAR (LUXURY GLASSMORPHISM, PERFECTLY ALIGNED)
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all var(--transition-normal);
  background: rgba(8, 26, 17, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--emerald-900);
  box-shadow: 0 4px 24px rgba(10, 36, 23, 0.08);
  border-bottom: 1px solid rgba(10, 36, 23, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2.5vw, 2.5rem);
  gap: clamp(0.75rem, 1.8vw, 2rem);
}

/* Brand Logo (White Background Badge Container for Maximum Visibility) */
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.brand-logo-img {
  height: 38px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast), height var(--transition-fast);
}

.site-header.is-scrolled .brand {
  padding: 0.3rem 0.75rem;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.site-header.is-scrolled .brand-logo-img {
  height: 32px;
}

.brand:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35), 0 0 0 2px var(--gold-400);
}

/* Nav Menu (Centered & Balanced) */
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.25vw, 1.45rem);
  margin: 0 auto;
  flex-shrink: 1;
}

.nav-link {
  position: relative;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-400);
}

.site-header.is-scrolled .nav-link {
  color: var(--emerald-900);
  opacity: 0.85;
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.active {
  color: var(--gold-500);
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-400);
  transition: width var(--transition-normal);
}

.site-header.is-scrolled .nav-link::after {
  background: var(--gold-500);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Header Utilities & Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 0.75vw, 0.75rem);
  flex-shrink: 0;
}

.weather-tag, .sound-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.site-header.is-scrolled .weather-tag,
.site-header.is-scrolled .sound-btn {
  background: rgba(10, 36, 23, 0.05);
  border-color: rgba(10, 36, 23, 0.12);
  color: var(--emerald-900);
}

.weather-tag:hover, .sound-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--gold-400);
  transform: translateY(-1px);
}

.site-header.is-scrolled .weather-tag:hover,
.site-header.is-scrolled .sound-btn:hover {
  background: rgba(10, 36, 23, 0.08);
  border-color: var(--gold-500);
}

.header-actions .btn-primary {
  padding: 0.52rem 1.25rem;
  font-size: 0.72rem;
  box-shadow: 0 4px 14px rgba(197, 155, 79, 0.35);
  flex-shrink: 0;
}

.sound-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 10px;
  width: 12px;
}

.sound-bars span {
  display: block;
  width: 2px;
  background: currentColor;
  border-radius: 1px;
  height: 3px;
  transition: height 0.2s ease;
}

.sound-btn.is-playing .sound-bars span:nth-child(1) { animation: soundBar 0.7s infinite ease-in-out; }
.sound-btn.is-playing .sound-bars span:nth-child(2) { animation: soundBar 0.5s infinite ease-in-out 0.15s; }
.sound-btn.is-playing .sound-bars span:nth-child(3) { animation: soundBar 0.8s infinite ease-in-out 0.3s; }

@keyframes soundBar {
  0%, 100% { height: 3px; }
  50% { height: 10px; }
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  gap: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: inherit;
}

.site-header.is-scrolled .mobile-toggle {
  background: rgba(10, 36, 23, 0.05);
  border-color: rgba(10, 36, 23, 0.12);
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 5rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.92) contrast(1.05);
}


.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: 
    linear-gradient(90deg, rgba(6, 24, 15, 0.88) 0%, rgba(6, 24, 15, 0.55) 45%, rgba(6, 24, 15, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 24, 15, 0.65) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 6.5vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-300);
}

.hero-lead {
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.7;
  color: #F1EDE3;
  max-width: 530px;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-bottom-bar {
  position: absolute;
  left: 0;
  bottom: 1.8rem;
  width: 100%;
  z-index: 2;
}

.hero-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-scroll-hint i {
  display: block;
  width: 36px;
  height: 1px;
  background: currentColor;
}

/* ==========================================================================
   FLOATING STATS STRIP
   ========================================================================== */

.stat-strip-wrap {
  position: relative;
  z-index: 10;
  margin-top: -3rem;
  margin-bottom: 2rem;
}

.stat-strip {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  padding: 2.2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.stat-col {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.stat-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-light);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 3.6vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
  color: var(--emerald-900);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.stat-number small {
  font-size: 0.45em;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--gold-500);
  margin-left: 0.2rem;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==========================================================================
   INTERACTIVE 3D 360° VILLA & SANCTUARY STUDIO (PERFECTLY CENTERED)
   ========================================================================== */

.studio-3d-section {
  background: radial-gradient(circle at top center, #113624 0%, #06180F 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.studio-3d-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.studio-3d-header h2 {
  font-size: clamp(2.5rem, 4.2vw, 4.2rem);
  margin-bottom: 0.85rem;
}

.studio-3d-container {
  position: relative;
  width: 100%;
  height: min(680px, 78vh);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #06180F;
}

#villa3dCanvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
}

#villa3dCanvas:active {
  cursor: grabbing;
}

/* 3D UI Overlay Controls */
.studio-3d-controls {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  flex-wrap: wrap;
  gap: 1rem;
}

.studio-3d-modes, .studio-3d-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: auto;
}

.mood-btn {
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(6, 24, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  backdrop-filter: blur(12px);
  transition: all var(--transition-fast);
}

.mood-btn:hover {
  border-color: var(--gold-400);
}

.mood-btn.active {
  background: var(--gold-500);
  border-color: var(--gold-500);
  box-shadow: 0 4px 14px rgba(197, 155, 79, 0.4);
}

.studio-3d-instructions {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(6, 24, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-300);
  pointer-events: none;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  z-index: 10;
}

/* 3D Dynamic Callout Hotspots */
.callout-3d {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.35rem 0.8rem;
  background: rgba(6, 24, 15, 0.88);
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-full);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: auto;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  transition: background 0.2s ease, border-color 0.2s ease;
  display: none;
  align-items: center;
  gap: 0.4rem;
  z-index: 5;
  white-space: nowrap;
}

.callout-3d::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 8px var(--gold-400);
}

.callout-3d:hover {
  background: var(--gold-500);
  border-color: #FFFFFF;
}

/* 3D Features Sub-Grid */
.studio-3d-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.stat-3d-box {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform var(--transition-normal);
}

.stat-3d-box:hover {
  transform: translateY(-4px);
  border-color: var(--gold-400);
}

.stat-3d-box strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-300);
  display: block;
  margin-bottom: 0.2rem;
}

.stat-3d-box span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-muted);
}

/* ==========================================================================
   3D CARD TILT EFFECTS
   ========================================================================== */

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease;
  will-change: transform;
}

/* ==========================================================================
   LOGO IDENTITY & THE LIVING HARMONY OBSERVATORY (DARK LUXURY THEME)
   ========================================================================== */

.harmony-observatory-section {
  position: relative;
  background: #06180F;
  color: #FFFFFF;
  overflow: hidden;
  padding-top: clamp(5rem, 8vw, 8.5rem);
  padding-bottom: clamp(5rem, 8vw, 8.5rem);
  border-bottom: 1px solid rgba(197, 155, 79, 0.2);
}

.observatory-ambient-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.observatory-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
  filter: saturate(1.2) brightness(1.04) contrast(1.08);
  pointer-events: none;
  z-index: 0;
}

.observatory-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
  filter: saturate(1.2) brightness(1.04) contrast(1.08);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s ease;
}

.observatory-video-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 30%, rgba(6, 24, 15, 0.08) 0%, rgba(4, 18, 11, 0.42) 75%, rgba(2, 10, 6, 0.7) 100%),
    linear-gradient(180deg, rgba(6, 24, 15, 0.35) 0%, transparent 15%, transparent 85%, rgba(4, 18, 11, 0.55) 100%);
  pointer-events: none;
  z-index: 2;
}

.ambient-glow-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.25;
}

.ambient-glow-orb.glow-top {
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--gold-500) 0%, #29684A 60%, transparent 70%);
}

.ambient-glow-orb.glow-bottom {
  bottom: -150px;
  right: 5%;
  background: radial-gradient(circle, #10B981 0%, transparent 70%);
  opacity: 0.15;
}

.ambient-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
}

.harmony-container {
  position: relative;
  z-index: 5;
  max-width: 1320px;
  margin: 0 auto;
}

.observatory-header {
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
}

.observatory-header h2 {
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  margin-bottom: 1.2rem;
  color: #FFFFFF;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.9), 0 0 35px rgba(6, 24, 15, 0.95);
}

.observatory-header .text-lead {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9), 0 0 25px rgba(6, 24, 15, 0.9);
}

.observatory-logo-pod {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  padding: 0.9rem 2.4rem;
  background: #FFFFFF;
  border: 1px solid rgba(197, 155, 79, 0.45);
  border-radius: var(--radius-full);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.38), 0 0 0 2px rgba(255, 255, 255, 0.9);
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s ease;
}

.observatory-logo-pod:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 45px rgba(197, 155, 79, 0.45), 0 0 0 3px var(--gold-400);
}

.observatory-brand-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   MASTER LIVING SANCTUARY BOX (WALKING NATURE TOP & WATERFALL RIGHT FLANK)
   ========================================================================== */

.living-sanctuary-master-box {
  position: relative;
  margin: 5.5rem auto 0;
  max-width: 1260px;
  background: linear-gradient(145deg, rgba(8, 30, 20, 0.9) 0%, rgba(4, 18, 11, 0.96) 100%);
  border: 1px solid rgba(197, 155, 79, 0.32);
  border-radius: 28px;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 30px rgba(16, 185, 129, 0.06),
    0 0 40px rgba(197, 155, 79, 0.08);
  overflow: visible;
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth), border-color 0.4s ease;
}

.living-sanctuary-master-box:hover {
  border-color: rgba(197, 155, 79, 0.5);
  box-shadow: 
    0 35px 95px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 0 35px rgba(16, 185, 129, 0.1),
    0 0 55px rgba(197, 155, 79, 0.16);
}

.living-sanctuary-master-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 3%;
  right: 3%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(197, 155, 79, 0.85) 30%, rgba(16, 185, 129, 0.75) 70%, transparent);
  border-radius: var(--radius-full);
  z-index: 3;
}

/* --------------------------------------------------------------------------
   Top Promenade: Wildlife & Explorer Walking Along the Top Ledge
   -------------------------------------------------------------------------- */

.box-top-promenade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  z-index: 20;
}

.top-walker {
  position: absolute;
  bottom: -4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transform-origin: bottom center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease;
  user-select: none;
}

.top-walker img {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 12px rgba(197, 155, 79, 0.2));
  transition: transform 0.35s ease, filter 0.35s ease;
  pointer-events: auto;
}

.walker-ledge-shadow {
  width: 70%;
  height: 7px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.75) 0%, transparent 70%);
  border-radius: 50%;
  margin-top: -6px;
  filter: blur(2px);
  pointer-events: none;
}

.walker-tooltip {
  position: absolute;
  top: -34px;
  white-space: nowrap;
  padding: 0.32rem 0.75rem;
  background: rgba(6, 24, 15, 0.92);
  border: 1px solid rgba(197, 155, 79, 0.45);
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold-300);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  z-index: 30;
}

.top-walker:hover .walker-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.top-walker:hover {
  transform: translateY(-8px) scale(1.06);
  z-index: 25;
}

.top-walker:hover img {
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 20px rgba(197, 155, 79, 0.5));
}

/* --------------------------------------------------------------------------
   Top Promenade: Cameraman in Left Corner & Walking Deer across Ledge
   -------------------------------------------------------------------------- */

.left-cameraman-walker {
  position: absolute;
  left: 20px;
  bottom: -4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transform-origin: bottom center;
  z-index: 28;
  transition: transform 0.35s ease;
}

.left-cameraman-walker img {
  width: 160px;
  height: 148px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 16px rgba(197, 155, 79, 0.35));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.left-cameraman-walker .walker-ledge-shadow {
  width: 80%;
  height: 8px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  margin-top: -8px;
  filter: blur(2.5px);
  pointer-events: none;
}

.left-cameraman-walker:hover img {
  transform: scale(1.06) translateY(-4px);
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 24px rgba(197, 155, 79, 0.65));
}

.photo-capture-badge {
  position: absolute;
  bottom: -22px;
  white-space: nowrap;
  padding: 0.2rem 0.58rem;
  background: rgba(6, 24, 15, 0.92);
  border: 1px solid rgba(197, 155, 79, 0.45);
  border-radius: var(--radius-full);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--gold-300);
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  pointer-events: none;
  animation: badgePulse 2.8s infinite ease-in-out;
}

@keyframes badgePulse {
  0%, 100% { opacity: 0.85; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}

.solo-deer-walker {
  position: absolute;
  bottom: -4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transform-origin: bottom center;
  animation: deerWalkRightToLeft 18s linear infinite;
  user-select: none;
  z-index: 25;
}

.solo-deer-walker:hover {
  animation-play-state: paused;
}

.solo-deer-walker img {
  width: 120px;
  height: 95px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 16px rgba(197, 155, 79, 0.35));
  transition: transform 0.3s ease, filter 0.3s ease;
  pointer-events: auto;
}

.solo-deer-walker:hover img {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 24px rgba(197, 155, 79, 0.6));
}

.solo-deer-walker .walker-ledge-shadow {
  width: 75%;
  height: 6px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  margin-top: -6px;
  filter: blur(2px);
  pointer-events: none;
}

.solo-deer-walker .walker-tooltip {
  position: absolute;
  top: -36px;
  white-space: nowrap;
  padding: 0.35rem 0.85rem;
  background: rgba(6, 24, 15, 0.95);
  border: 1px solid rgba(197, 155, 79, 0.5);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-300);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  z-index: 30;
}

.solo-deer-walker:hover .walker-tooltip {
  opacity: 1;
  transform: translateY(0);
}

@keyframes deerWalkRightToLeft {
  0% {
    left: calc(100% - 240px);
    opacity: 0;
  }
  3% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    left: 155px;
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   Silhouette Elephant Walker: Starts when deer completes half distance (-9s offset)
   -------------------------------------------------------------------------- */

.solo-elephant-walker {
  position: absolute;
  bottom: -4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transform-origin: bottom center;
  animation: elephantWalkRightToLeft 18s linear infinite;
  animation-delay: -9s; /* Starts at exact half-distance timing */
  user-select: none;
  z-index: 26;
}

.solo-elephant-walker:hover {
  animation-play-state: paused;
}

.solo-elephant-walker img {
  width: 165px;
  height: 122px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 16px rgba(197, 155, 79, 0.35));
  transition: transform 0.3s ease, filter 0.3s ease;
  pointer-events: auto;
}

.solo-elephant-walker:hover img {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 24px rgba(197, 155, 79, 0.6));
}

.solo-elephant-walker .walker-ledge-shadow {
  width: 85%;
  height: 8px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  margin-top: -8px;
  filter: blur(2.5px);
  pointer-events: none;
}

.solo-elephant-walker .walker-tooltip {
  position: absolute;
  top: -36px;
  white-space: nowrap;
  padding: 0.35rem 0.85rem;
  background: rgba(6, 24, 15, 0.95);
  border: 1px solid rgba(197, 155, 79, 0.5);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-300);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  z-index: 30;
}

.solo-elephant-walker:hover .walker-tooltip {
  opacity: 1;
  transform: translateY(0);
}

@keyframes elephantWalkRightToLeft {
  0% {
    left: calc(100% - 240px);
    opacity: 0;
  }
  3% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    left: 165px;
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   Right Corner Waterfall: Cascading Down along the Right Flank
   -------------------------------------------------------------------------- */

.box-waterfall-corner {
  position: absolute;
  top: -35px;
  right: -30px;
  bottom: -25px;
  width: 290px;
  z-index: 15;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
}

.waterfall-stream-wrap {
  position: relative;
  width: 100%;
  height: calc(100% - 40px);
  display: flex;
  justify-content: flex-end;
}

.waterfall-corner-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: right top;
  animation: waterfallFlow 6s ease-in-out infinite;
  pointer-events: auto;
  filter: drop-shadow(-12px 18px 28px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 20px rgba(56, 189, 248, 0.35));
}

@keyframes waterfallFlow {
  0% {
    transform: translateY(0px);
    filter: drop-shadow(-12px 18px 28px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 20px rgba(56, 189, 248, 0.35)) brightness(1);
  }
  50% {
    transform: translateY(2px);
    filter: drop-shadow(-14px 22px 34px rgba(0, 0, 0, 0.82)) drop-shadow(0 0 28px rgba(56, 189, 248, 0.5)) brightness(1.08);
  }
  100% {
    transform: translateY(0px);
    filter: drop-shadow(-12px 18px 28px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 20px rgba(56, 189, 248, 0.35)) brightness(1);
  }
}

.waterfall-splash-particles {
  position: absolute;
  top: 15%;
  right: 75px;
  width: 40px;
  height: 70%;
  pointer-events: none;
}

.splash-drop {
  position: absolute;
  width: 5px;
  height: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(56, 189, 248, 0.75));
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  filter: blur(0.5px);
  opacity: 0;
  animation: waterDropFall 3.2s infinite linear;
}

.drop-1 { left: 8px; top: 10%; animation-delay: 0s; }
.drop-2 { left: 22px; top: 25%; animation-delay: 0.8s; width: 4px; height: 10px; }
.drop-3 { left: 14px; top: 45%; animation-delay: 1.6s; width: 6px; height: 14px; }
.drop-4 { left: 28px; top: 60%; animation-delay: 2.3s; width: 4px; height: 9px; }

@keyframes waterDropFall {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.6);
  }
  30% {
    opacity: 0.9;
    transform: translateY(60px) scale(1);
  }
  70% {
    opacity: 0.7;
    transform: translateY(180px) scale(0.9);
  }
  100% {
    opacity: 0;
    transform: translateY(280px) scale(0.4);
  }
}

.waterfall-pool-glow {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 5px;
  pointer-events: auto;
}

.pool-ripple {
  position: absolute;
  bottom: 16px;
  width: 120px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(56, 189, 248, 0.5);
  pointer-events: none;
}

.ripple-1 {
  animation: poolRippleExpand 3.6s infinite ease-out;
}

.ripple-2 {
  animation: poolRippleExpand 3.6s infinite ease-out 1.8s;
}

@keyframes poolRippleExpand {
  0% {
    transform: scale(0.6);
    opacity: 0.8;
    border-color: rgba(56, 189, 248, 0.6);
  }
  50% {
    transform: scale(1.3);
    opacity: 0.4;
    border-color: rgba(16, 185, 129, 0.4);
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
    border-color: rgba(56, 189, 248, 0);
  }
}

.waterfall-pool-badge {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  background: rgba(4, 20, 14, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 600;
  color: #7DD3FC;
  letter-spacing: 0.04em;
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55), 0 0 12px rgba(56, 189, 248, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.waterfall-pool-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.65), 0 0 18px rgba(56, 189, 248, 0.35);
}

.pulse-emerald {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0%, 100% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
}

/* --------------------------------------------------------------------------
   Box Body Content: Editorial Typography, 6 Emblem Pills & Conservation Bar
   -------------------------------------------------------------------------- */

.sanctuary-box-content {
  position: relative;
  z-index: 5;
  padding: clamp(4.5rem, 5.5vw, 5.5rem) clamp(2.5rem, 4.5vw, 4.5rem) 3rem;
  margin-right: 250px;
}

.sanctuary-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.9rem;
}

.eyebrow-symbol {
  font-size: 1.1em;
}

.sanctuary-display-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.4vw, 3.1rem);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.18;
  margin-bottom: 1.2rem;
  max-width: 820px;
}

.sanctuary-lead-desc {
  font-size: 0.98rem;
  color: var(--text-light-muted);
  line-height: 1.75;
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.sanctuary-emblem-pills {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
  margin-bottom: 2.8rem;
}

.emblem-pill-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: all var(--transition-normal);
  backdrop-filter: blur(14px);
  position: relative;
  outline: none;
}

.emblem-pill-item:hover, .emblem-pill-item:focus-visible, .emblem-pill-item.active {
  background: linear-gradient(180deg, rgba(197, 155, 79, 0.18) 0%, rgba(10, 36, 23, 0.75) 100%);
  border-color: var(--gold-400);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(197, 155, 79, 0.25);
}

.pill-letter {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 0.4rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.emblem-pill-item:hover .pill-letter,
.emblem-pill-item.active .pill-letter {
  color: var(--gold-300);
  text-shadow: 0 0 10px rgba(197, 155, 79, 0.6);
}

.pill-info strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  line-height: 1.2;
}

.pill-info small {
  display: block;
  font-size: 0.65rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
  white-space: nowrap;
}

.sanctuary-metrics-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 2rem;
}

.sanctuary-metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sanctuary-metric .metric-big {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  font-weight: 600;
  color: var(--gold-300);
  line-height: 1;
}

.sanctuary-metric .metric-caption {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light-muted);
}

/* ==========================================================================
   SETTING & RIVERFRONT SECTION
   ========================================================================== */

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.story-content h2 {
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  margin-bottom: 1.4rem;
}

.story-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-light);
}

.metric-item strong {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--emerald-900);
  display: block;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.metric-item strong small {
  font-size: 0.55em;
  font-family: var(--font-sans);
  color: var(--gold-500);
}

.metric-item span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.story-media {
  position: relative;
}

.story-media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.story-media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.story-media:hover .story-media-frame img {
  transform: scale(1.03);
}

.story-caption {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  background: var(--bg-surface);
  color: var(--emerald-900);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
}

/* ==========================================================================
   SANCTUARY ETHOS (DARK SECTION)
   ========================================================================== */

.ethos-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.ethos-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.ethos-img-wrap img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.ethos-img-wrap:hover img {
  transform: scale(1.03);
}

.ethos-content h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 1.4rem;
}

.ethos-quote {
  margin-top: 2rem;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--gold-400);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.ethos-quote p {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold-300);
  line-height: 1.4;
  margin-bottom: 0.4rem;
}

.ethos-quote span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-light-muted);
}

/* ==========================================================================
   INTERACTIVE MASTERPLAN SECTION
   ========================================================================== */

.masterplan-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2.8rem;
}

.masterplan-head h2 {
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
}

.masterplan-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(26, 46, 38, 0.08);
  box-shadow: 0 20px 50px -10px rgba(26, 46, 38, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.03);
  padding: clamp(1.2rem, 3.2vw, 2.5rem);
  overflow: hidden;
  transform-style: preserve-3d;
}

.masterplan-view {
  position: relative;
  border-radius: var(--radius-md);
  overflow: visible;
  background: #FFFFFF;
  aspect-ratio: 2240 / 1420;
  width: 100%;
}

.masterplan-view img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: var(--radius-md);
}

/* Hotspots */
.hotspot-pin {
  position: absolute;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  background: var(--gold-500);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 6px 20px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hotspot-pin::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: var(--gold-glow);
  animation: hotspotPulse 2s infinite;
  z-index: -1;
}

@keyframes hotspotPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 0.2; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hotspot-pin:hover, .hotspot-pin.active {
  transform: translate(-50%, -50%) scale(1.2);
  background: var(--emerald-900);
  color: var(--gold-300);
  box-shadow: 0 0 0 3px var(--gold-400), 0 10px 25px rgba(0, 0, 0, 0.5);
}

.masterplan-info-bar {
  margin-top: 1.25rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.hotspot-details h4 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--emerald-900);
  margin-bottom: 0.2rem;
}

.hotspot-details p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.masterplan-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.plan-pill {
  padding: 1.25rem;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  text-align: center;
}

.plan-pill strong {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--emerald-900);
  display: block;
}

.plan-pill span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-500);
  font-weight: 700;
}

/* ==========================================================================
   VILLAS & FLOOR PLAN STUDIO
   ========================================================================== */

.villa-banner {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-lg);
}

.villa-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
}

.villa-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 24, 15, 0.9) 0%, rgba(6, 24, 15, 0.65) 45%, rgba(6, 24, 15, 0.1) 100%);
}

.villa-banner-text {
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 600px;
  color: #FFFFFF;
}

.villa-banner-text h2 {
  font-size: clamp(2.5rem, 4.2vw, 4.2rem);
  margin-bottom: 1.2rem;
}

.villa-banner-text p {
  color: var(--text-light-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Floor Plan Studio */
.plans-studio {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  padding: clamp(1.5rem, 4vw, 3.2rem);
}

.plans-studio-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.plans-studio-head h2 {
  font-size: clamp(2.3rem, 3.8vw, 3.6rem);
  margin-bottom: 0.75rem;
}

.plan-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.plan-btn {
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.plan-btn:hover {
  background: var(--sage-100);
  color: var(--text-primary);
}

.plan-btn.active {
  background: var(--emerald-900);
  color: #FFFFFF;
  border-color: var(--emerald-900);
  box-shadow: 0 4px 16px rgba(10, 36, 23, 0.25);
}

.plan-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.plan-visual {
  position: relative;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  text-align: center;
  cursor: pointer;
}

.plan-visual img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.plan-visual:hover img {
  transform: scale(1.03);
}

.plan-zoom-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(10, 36, 23, 0.8);
  color: #FFFFFF;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-info h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--emerald-900);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.plan-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.plan-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.8rem;
}

.spec-box {
  padding: 0.85rem 1rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.spec-box span {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 700;
  display: block;
}

.spec-box strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--emerald-900);
}

/* ==========================================================================
   AMENITIES SECTION
   ========================================================================== */

.amenities-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.8rem;
}

.amenities-head h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-bottom: 0.75rem;
}

.amenity-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.8rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg-surface);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--gold-400);
  color: var(--text-primary);
}

.filter-btn.active {
  background: var(--gold-500);
  color: #FFFFFF;
  border-color: var(--gold-500);
  box-shadow: 0 4px 14px rgba(197, 155, 79, 0.35);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.amenity-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--emerald-900);
  aspect-ratio: 4 / 3.2;
  transform-style: preserve-3d;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.amenity-card.wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.amenity-card:hover {
  box-shadow: var(--shadow-lg);
}

.amenity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.9) contrast(1.05);
}

.amenity-card:hover img {
  transform: scale(1.05);
}

.amenity-card-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 24, 15, 0.1) 0%, rgba(6, 24, 15, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  color: #FFFFFF;
}

.amenity-card-info span {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold-300);
  font-style: italic;
}

.amenity-card-info h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
}

.amenity-card-info small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-muted);
  margin-top: 0.25rem;
}

/* Clubhouse Banner */
.clubhouse-panel {
  margin-top: 4rem;
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.clubhouse-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.85);
}

.clubhouse-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 24, 15, 0.9) 0%, rgba(6, 24, 15, 0.5) 60%, transparent 100%);
}

.clubhouse-panel-content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 5vw, 4rem);
  max-width: 560px;
  color: #FFFFFF;
}

.clubhouse-panel-content h3 {
  font-size: clamp(2.3rem, 3.8vw, 3.6rem);
  margin-bottom: 1.2rem;
}

.clubhouse-panel-content p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ==========================================================================
   LIFESTYLE PRIVILEGES
   ========================================================================== */

.lifestyle-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.lifestyle-copy h2 {
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  margin-bottom: 1.4rem;
}

.lifestyle-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.lifestyle-box {
  padding: 1.4rem;
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  transform-style: preserve-3d;
  transition: all var(--transition-normal);
}

.lifestyle-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-400);
}

.lifestyle-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-300);
  font-style: italic;
  margin-bottom: 0.4rem;
  display: block;
}

.lifestyle-box h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.lifestyle-box p {
  font-size: 0.82rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

/* ==========================================================================
   LOCATION & CONNECTIVITY
   ========================================================================== */

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.location-copy h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 1.4rem;
}

.routes-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.route-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.5rem;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.route-item:hover {
  border-color: var(--gold-400);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.route-name h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--emerald-900);
  margin-bottom: 0.15rem;
}

.route-name span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.route-dist {
  text-align: right;
}

.route-dist strong {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-500);
  display: block;
  line-height: 1;
}

.route-dist small {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.8rem;
}

.faq-head h2 {
  font-size: clamp(2.3rem, 3.8vw, 3.6rem);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item.is-open {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
}

.faq-btn {
  width: 100%;
  padding: 1.25rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--emerald-900);
}

.faq-symbol {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--emerald-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.is-open .faq-symbol {
  transform: rotate(45deg);
  background: var(--gold-500);
  color: #FFFFFF;
}

.faq-answer {
  padding: 0 1.6rem 1.4rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* ==========================================================================
   INVITATION / CTA SECTION
   ========================================================================== */

.invitation-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  overflow: hidden;
}

.invitation-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.invitation-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(6, 24, 15, 0.6) 0%, rgba(6, 24, 15, 0.92) 100%);
}

.invitation-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}

.invitation-content h2 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  margin-bottom: 1.2rem;
}

.invitation-content p {
  color: #F1EDE3;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

.invitation-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--bg-dark-deep);
  color: var(--text-light-muted);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  margin-bottom: 0.5rem;
}

.footer-brand img {
  max-width: 150px;
  height: auto;
  display: block;
  filter: none;
  opacity: 1;
}

.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.65;
  margin-top: 1.2rem;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.82rem;
  color: var(--text-light-muted);
  white-space: nowrap;
}

.footer-col a:hover {
  color: var(--gold-300);
}

.newsletter-box {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-box input {
  flex: 1;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  color: #FFFFFF;
  font-size: 0.8rem;
  outline: none;
}

.newsletter-box input:focus {
  border-color: var(--gold-400);
}

.newsletter-box button {
  padding: 0.6rem 1.2rem;
  background: var(--gold-500);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   MODALS
   ========================================================================== */

dialog {
  max-width: min(920px, 94vw);
  width: 100%;
  border: none;
  border-radius: var(--radius-xl);
  padding: 0;
  background: var(--bg-surface);
  box-shadow: var(--shadow-dark);
  margin: auto;
  overflow: hidden;
}

dialog::backdrop {
  background: rgba(4, 19, 11, 0.82);
  backdrop-filter: blur(8px);
}

.modal-header {
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
}

.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--emerald-900);
}

.modal-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--emerald-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
}

.modal-close:hover {
  background: var(--emerald-900);
  color: #FFFFFF;
}

.modal-body {
  padding: 1.8rem;
}

.modal-grid-plan {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  min-height: 440px;
}

.modal-plan-img-wrap {
  background: var(--bg-secondary);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-plan-img-wrap img {
  max-height: 65vh;
  object-fit: contain;
}

.modal-plan-details {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Tour Form Grid */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.form-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-item.full {
  grid-column: span 2;
}

.form-item label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald-900);
}

.form-item input, .form-item select, .form-item textarea {
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--bg-secondary);
  font-size: 0.9rem;
  color: var(--text-primary);
  outline: none;
}

.form-item input:focus, .form-item select:focus, .form-item textarea:focus {
  border-color: var(--gold-500);
  background: #FFFFFF;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--bg-dark-deep);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 3rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-smooth);
}

.mobile-nav-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: auto;
}

.mobile-nav-links a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #FFFFFF;
}

.mobile-nav-links a:hover {
  color: var(--gold-300);
}

/* ==========================================================================
   SCROLL REVEALS
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1280px) {
  .weather-tag {
    display: none;
  }
}

@media (max-width: 1140px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .sanctuary-box-content {
    margin-right: 180px;
    padding: 4.2rem 2rem 2.2rem;
  }

  .sanctuary-emblem-pills {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }

  .box-waterfall-corner {
    width: 210px;
    right: -20px;
  }

  .waterfall-corner-img {
    width: 100%;
  }

  .solo-deer-walker img { width: 105px; height: 83px; }
  .solo-elephant-walker img { width: 140px; height: 104px; }
  .left-cameraman-walker img { width: 135px; height: 125px; }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }

  .stat-col:nth-child(2)::after {
    display: none;
  }

  .studio-3d-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid, .ethos-grid, .plan-grid, .location-grid, .lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenity-card.wide {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .sanctuary-emblem-pills {
    grid-template-columns: repeat(3, 1fr);
  }

  .solo-deer-walker img { width: 90px; height: 71px; }
  .solo-elephant-walker img { width: 120px; height: 89px; }
  .left-cameraman-walker img { width: 115px; height: 107px; }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.8rem, 11vw, 4rem);
  }

  .living-sanctuary-master-box {
    margin-top: 4.5rem;
    border-radius: 22px;
  }

  .sanctuary-box-content {
    margin-right: 0;
    padding: 3.5rem 1.4rem 2rem;
  }

  .sanctuary-emblem-pills {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .sanctuary-metrics-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .box-waterfall-corner {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 250px;
    margin: 1.5rem auto 0;
    align-items: center;
  }

  .waterfall-stream-wrap {
    justify-content: center;
    height: 190px;
  }

  .waterfall-corner-img {
    width: auto;
    height: 100%;
    object-position: center;
  }

  .waterfall-splash-particles {
    right: calc(50% - 40px);
  }

  .left-cameraman-walker { left: 10px; }
  .left-cameraman-walker img { width: 95px; height: 88px; }
  .solo-deer-walker img { width: 75px; height: 59px; }
  .solo-elephant-walker img { width: 95px; height: 70px; }

  .studio-3d-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .studio-3d-stats {
    grid-template-columns: 1fr;
  }

  .masterplan-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .masterplan-pills {
    grid-template-columns: 1fr;
  }

  .masterplan-info-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .lifestyle-items {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .amenity-card.wide {
    grid-column: span 1;
  }

  .modal-grid-plan {
    grid-template-columns: 1fr;
  }

  .tour-grid {
    grid-template-columns: 1fr;
  }

  .form-item.full {
    grid-column: span 1;
  }

  .weather-tag {
    display: none;
  }
}

@media (max-width: 576px) {
  .stat-strip {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem;
  }

  .stat-col:not(:last-child)::after {
    display: none;
  }

  .stat-col:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .story-metrics {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
