/* THE RIDGE - MASHOBRA LUXURY STYLESHEET (WORLD-CLASS ULTIMATE) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-burgundy: #4A0E17;
  --dark-burgundy: #1E0308;
  --deep-wine: #33060C;
  --accent-gold: #D4AF37;
  --metallic-gold: #C5A059;
  --light-gold: #F3E5C8;
  --bg-cream: #FAF7F2;
  --bg-card: #FFFFFF;
  --text-dark: #111827;
  --text-muted: #6B7280;
  --text-light: #F9FAFB;
  --border-gold: rgba(212, 175, 55, 0.28);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-luxury: 0 20px 50px rgba(74, 14, 23, 0.18);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px; /* offset for sticky bottom bar */
}

h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
}

/* --- STICKY BOTTOM QUICK ACTION BAR --- */
.bottom-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(30, 3, 8, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  padding: 0.85rem 2rem;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
}

.bottom-bar-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: white;
}

.bottom-bar-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.bottom-bar-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

.bottom-bar-actions {
  display: flex;
  gap: 1rem;
}

/* --- ENHANCED NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2.5rem;
  transition: var(--transition);
  background: rgba(30, 3, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-emblem {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(74, 14, 23, 0.85));
  border: 1.5px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.25);
}

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

.brand-subtext {
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 700;
}

.brand-main {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 1.5px;
  line-height: 1.1;
}

.brand-main span {
  color: var(--accent-gold);
  font-weight: 400;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  transition: var(--transition);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #D4AF37 0%, #AA8222 100%);
  color: #111827;
  padding: 0.75rem 1.4rem;
  border: none;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E5C98E 0%, #C5A059 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--accent-gold);
  padding: 0.75rem 1.4rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover {
  background: var(--accent-gold);
  color: var(--dark-burgundy);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(30, 3, 8, 0.68), rgba(30, 3, 8, 0.84)), url('../assets/images/hero_bg.jpg') center/cover no-repeat;
  color: var(--text-light);
  text-align: center;
  padding: 9rem 1.5rem 5rem;
}

.hero-content {
  max-width: 960px;
  margin: 0 auto;
  z-index: 10;
}

.hero-tag {
  display: inline-block;
  color: var(--accent-gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 700;
  border-bottom: 1px solid var(--accent-gold);
  padding-bottom: 0.25rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.hero-subtitle {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 300;
  max-width: 780px;
  margin: 0 auto 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.stat-item h3 {
  font-size: 1.9rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.stat-item p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- SECTIONS COMMON --- */
.section {
  padding: 6.5rem 1.5rem;
  max-width: 1320px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 4rem;
}

.section-label {
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  color: var(--primary-burgundy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* --- LONGEVITY DASHBOARD --- */
.longevity-banner {
  background: linear-gradient(135deg, #1E0308 0%, #4A0E17 100%);
  color: white;
  border-radius: 16px;
  padding: 3.5rem 3rem;
  margin-bottom: 4rem;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-luxury);
  position: relative;
  overflow: hidden;
}

.longevity-banner-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.longevity-intro-quote {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--light-gold);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.longevity-intro-body {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 950px;
}

.longevity-stats-dashboard {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
  align-items: stretch;
}

.healthspan-gap-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(74, 14, 23, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.health-bar-container {
  margin: 1.5rem 0 2rem;
  background: var(--bg-cream);
  padding: 1.5rem;
  border-radius: 10px;
}

.health-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.health-progress-bg {
  width: 100%;
  height: 24px;
  background: #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  position: relative;
}

.progress-healthy {
  width: 84.5%;
  height: 100%;
  background: linear-gradient(90deg, #10B981 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
}

.progress-poor {
  width: 15.5%;
  height: 100%;
  background: linear-gradient(90deg, #EF4444 0%, #DC2626 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
}

.gap-insight-box {
  background: rgba(74, 14, 23, 0.04);
  border-left: 4px solid var(--primary-burgundy);
  padding: 1rem 1.25rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--primary-burgundy);
  font-weight: 600;
}

.market-stats-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.market-stat-card {
  background: #FFFFFF;
  padding: 1.8rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat-badge-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(74, 14, 23, 0.06);
  color: var(--primary-burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.stat-number-big {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-burgundy);
  line-height: 1;
}

.stat-title-small {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

.media-press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.press-card {
  background: var(--bg-cream);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.press-source {
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: var(--primary-burgundy);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.press-headline {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.press-quote {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blueprint-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pillar-card-enhanced {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-burgundy), var(--accent-gold));
}

.pillar-card-enhanced:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxury);
}

.pillar-num-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.pillar-name-heading {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--primary-burgundy);
  margin-bottom: 0.75rem;
}

.pillar-desc-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- INTERACTIVE FLOOR PLAN / RESIDENCE EXPLORER --- */
.floorplan-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  background: var(--bg-card);
  border: 1px solid rgba(197, 160, 89, 0.4);
  color: var(--primary-burgundy);
  padding: 1rem 2rem;
  border-radius: 6px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--primary-burgundy);
  color: var(--light-gold);
  border-color: var(--primary-burgundy);
  box-shadow: var(--shadow-soft);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- VIRTUAL TOUR BANNER --- */
.virtual-tour-banner {
  background: linear-gradient(rgba(30, 3, 8, 0.85), rgba(30, 3, 8, 0.92)), url('../assets/images/clubhouse.jpg') center/cover no-repeat;
  border-radius: 16px;
  padding: 5rem 2rem;
  text-align: center;
  color: white;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-luxury);
  margin: 5rem auto;
}

.play-btn-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.play-btn-circle:hover {
  transform: scale(1.1);
  background: #E5C98E;
}

/* --- FAQ ACCORDION --- */
.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-burgundy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent-gold);
}

.faq-answer {
  padding: 0 1.8rem 1.4rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-icon {
  font-size: 1.4rem;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* --- PHOTO GALLERY GRID --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(30, 3, 8, 0.9), transparent);
  padding: 1.5rem 1rem 0.85rem;
  color: white;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

/* --- COMPARISON TABLE --- */
.table-wrapper {
  overflow-x: auto;
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.compare-table th {
  background: var(--primary-burgundy);
  color: var(--text-light);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
}

.compare-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
}

.compare-table tr:hover {
  background: rgba(197, 160, 89, 0.05);
}

.compare-table td.highlight {
  font-weight: 700;
  color: var(--primary-burgundy);
  background: rgba(197, 160, 89, 0.1);
}

/* --- VILLAS & CLUBHOUSE --- */
.villas-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.villa-features {
  list-style: none;
}

.villa-feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.villa-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-luxury);
  object-fit: cover;
}

.clubhouse-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-luxury);
}

.clubhouse-banner img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.clubhouse-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(30, 3, 8, 0.95), transparent);
  padding: 3.5rem 2.5rem 2.5rem;
  color: white;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.amenity-card {
  background: var(--bg-card);
  padding: 1.8rem 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.amenity-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}

.amenity-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  color: var(--primary-burgundy);
}

/* --- MODAL SYSTEM --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 3, 6, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal-card {
  background: #FFFFFF;
  width: 100%;
  max-width: 540px;
  border-radius: 14px;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-luxury);
  border: 1px solid var(--border-gold);
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1.15rem;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-input, .form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
  background: #FFFFFF;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* --- FOOTER --- */
.footer {
  background: var(--dark-burgundy);
  color: rgba(255, 255, 255, 0.7);
  padding: 4.5rem 1.5rem 2rem;
  font-size: 0.85rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
}

/* --- TOAST --- */
.toast {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  background: var(--primary-burgundy);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-luxury);
  border-left: 4px solid var(--accent-gold);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .longevity-stats-dashboard, .villas-container, .footer-container { grid-template-columns: 1fr; }
  .navbar { padding: 0.85rem 1.25rem; }
  .bottom-bar-sub { display: none; }
}
