/* ==========================================
   CRC MAESTA — Global Styles
   Palette: Deep Charcoal | Warm Gold | Ivory | Sage
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&family=Playfair+Display:wght@400;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --gold:       #B8953F;
  --gold-light: #D4AF5E;
  --gold-pale:  #F0E4C0;
  --charcoal:   #1C2214;
  --charcoal-2: #2A3020;
  --ivory:      #F2F5EE;
  --bg-green:   #F2F5EE;
  --white:      #FFFFFF;
  --sage:       #8A9E80;
  --text-mid:   #555555;
  --text-light: #888888;
  --border:     rgba(184,149,63,0.25);

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
  --font-accent:  'Playfair Display', serif;

  --max-w: 1280px;
  --section-pad: 90px 0;
  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: #F2F5EE;
  overflow-x: hidden;
  line-height: 1.7;
  width: 100%;
  max-width: 100vw;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; width: 100%; box-sizing: border-box; }
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}
.section-title span { color: var(--gold); font-style: italic; }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 620px;
  margin-top: 16px;
  line-height: 1.8;
}
.gold-divider {
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 18px 0 32px;
}
.text-center { text-align: center; }
.text-center .gold-divider { margin-left: auto; margin-right: auto; }
.text-center .section-subtitle { margin: 16px auto 0; }

/* ==========================================
   STICKY HEADER
   ========================================== */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1100;
  background: rgba(28,34,20,0.92);
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
#site-header.scrolled {
  background: rgba(28,34,20,0.98);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--gold-light);
  text-transform: uppercase;
}

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 1px;
  transition: color var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute; bottom: -2px; left: 14px; right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.main-nav a:hover { color: var(--gold-light); }
.main-nav a:hover::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; }
.dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: var(--charcoal-2);
  min-width: 200px;
  border-top: 2px solid var(--gold);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  padding: 8px 0;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8) !important;
  letter-spacing: 1px;
  border-radius: 0 !important;
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:hover {
  background: rgba(184,149,63,0.15);
  color: var(--gold-light) !important;
}
.dropdown-menu a::after { display: none !important; }

/* Header CTAs */
.header-ctas {
  flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
.btn-call {
  display: flex; align-items: center; gap: 7px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 1px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-call:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-call svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn-wa-header {
  display: flex; align-items: center; gap: 7px;
  background: #25D366;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 9px 18px;
  border-radius: 1px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-wa-header:hover { background: #1ebe5d; }
.btn-wa-header svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: #F2F5EE;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 24px;
  z-index: 999;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav .mob-sub { padding-left: 16px; font-size: 0.8rem; }
.mobile-nav .mob-section-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--gold);
  padding: 16px 0 6px;
  border-bottom: none;
}

/* ==========================================
   HERO SECTION
   ========================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
  margin-top: 0;
}
.hero-video-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-video-bg iframe {
  width: 100%; height: 100%;
  border: none;
  pointer-events: none;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.82) 0%,
    rgba(26,26,26,0.55) 50%,
    rgba(26,26,26,0.4) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 130px 24px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-config {
  display: inline-block;
  background: rgba(184,149,63,0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 1px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold-light);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.4);
  transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(184,149,63,0.7));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* Stats Bar below Hero */
.stats-bar {
  background: var(--charcoal-2);
  border-top: 1px solid var(--border);
  border-bottom: 3px solid var(--gold);
}
.stats-bar-inner {
  display: flex; align-items: stretch;
  max-width: var(--max-w); margin: 0 auto;
}
.stat-item {
  flex: 1; padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(184,149,63,0.08); }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
#about {
  padding: var(--section-pad);
  background: var(--ivory);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%; box-sizing: border-box;
  align-items: center;
}
.about-text p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-features {
  margin-top: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.about-feat {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.about-feat::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 5px;
  flex-shrink: 0;
}
.about-media {
  position: relative;
}
.about-video-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}
.about-video-wrap iframe {
  width: 100%; aspect-ratio: 16/9;
  border: none; display: block;
}
.about-badge {
  position: absolute; bottom: -24px; left: -24px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 20px 24px;
  border-radius: 2px;
  text-align: center;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.badge-text {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

/* ==========================================
   PROJECT DIFFERENTIATORS
   ========================================== */
#differentiators {
  padding: var(--section-pad);
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
#differentiators::before {
  content: 'MAESTA';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 18vw;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  white-space: nowrap;
}
#differentiators .section-title,
#differentiators .section-label { color: var(--white); }
#differentiators .section-title span { color: var(--gold-light); }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.diff-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.diff-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.diff-card:hover { background: rgba(184,149,63,0.06); }
.diff-card:hover::after { transform: scaleX(1); }
.diff-icon {
  width: 48px; height: 48px;
  background: rgba(184,149,63,0.15);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.diff-icon svg { width: 22px; height: 22px; color: var(--gold-light); }
.diff-card h3 {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.diff-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}
.diff-card a {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 16px;
  transition: gap var(--transition);
}
.diff-card a:hover { gap: 10px; }

/* ==========================================
   HIGHLIGHTS (AMENITIES PREVIEW)
   ========================================== */
#highlights {
  padding: var(--section-pad);
  background: #F2F5EE;
}
.highlights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.highlight-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  background: var(--ivory);
  border-left: 2px solid var(--gold);
  border-radius: 1px;
  transition: var(--transition);
}
.highlight-item:hover { background: var(--gold-pale); }
.highlight-arrow {
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.highlight-item span {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ==========================================
   AMENITIES GRID
   ========================================== */
#amenities {
  padding: var(--section-pad);
  background: var(--ivory);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.amenity-card {
  background: #F2F5EE;
  border: 1px solid var(--border);
  padding: 28px 16px 20px;
  text-align: center;
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.amenity-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.amenity-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.amenity-card:hover::before { transform: scaleX(1); }
.amenity-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.amenity-card h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* ==========================================
   FLOOR PLANS
   ========================================== */
#floor-plans {
  padding: var(--section-pad);
  background: var(--charcoal);
}
#floor-plans .section-title,
#floor-plans .section-label { color: var(--white); }
#floor-plans .section-title span { color: var(--gold-light); }
#floor-plans .gold-divider { background: linear-gradient(90deg, var(--gold), transparent); }

.plans-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 40px; margin-bottom: 32px;
}
.plan-tab {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 22px;
  cursor: pointer;
  border-radius: 1px;
  transition: var(--transition);
}
.plan-tab:hover,
.plan-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}
.plan-panel { display: none; }
.plan-panel.active { display: block; }
.plan-img {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 32px;
  text-align: center;
}
.plan-img img { max-width: 700px; margin: 0 auto; border-radius: 2px; }
.plan-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}

/* ==========================================
   GALLERY
   ========================================== */
#gallery {
  padding: var(--section-pad);
  background: #F2F5EE;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 6px;
  margin-top: 50px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 1px;
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item .gallery-bg {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-bg { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,26,0);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(26,26,26,0.3); }

/* Gallery placeholder backgrounds (CSS gradient replacements for missing images) */
.gal-1 { background: linear-gradient(135deg, #2D2D2D 0%, #444 50%, #B8953F22 100%); }
.gal-2 { background: linear-gradient(135deg, #3D4A3A 0%, #5A6E56 100%); }
.gal-3 { background: linear-gradient(135deg, #2A3040 0%, #3D4A5C 100%); }
.gal-4 { background: linear-gradient(135deg, #3A2D2D 0%, #5C3D3D 100%); }
.gal-5 { background: linear-gradient(135deg, #2D3A2D 0%, #4A5C4A 100%); }
.gal-6 { background: linear-gradient(135deg, #2D2D3A 0%, #3D3D5C 100%); }
.gal-7 { background: linear-gradient(135deg, #3A3020 0%, #B8953F33 100%); }

/* ==========================================
   LOCATION
   ========================================== */
#location {
  padding: var(--section-pad);
  background: var(--ivory);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 50px;
}
.location-points { display: flex; flex-direction: column; gap: 0; }
.loc-point {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.loc-point:last-child { border-bottom: none; }
.loc-point:hover { padding-left: 8px; }
.loc-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.loc-point span {
  font-size: 0.9rem;
  color: var(--text-mid);
}
.loc-point strong {
  font-weight: 600;
  color: var(--charcoal);
}
/* .map-embed removed */
/* .map-embed iframe removed */

/* ==========================================
   TESTIMONIALS
   ========================================== */
#testimonials {
  padding: var(--section-pad);
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '"';
  position: absolute;
  top: -20px; left: 40px;
  font-family: var(--font-display);
  font-size: 28rem;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
}
#testimonials .section-label,
#testimonials .section-title { color: var(--white); }
#testimonials .section-title span { color: var(--gold-light); }

.testimonials-slider {
  margin-top: 56px;
  position: relative;
}
.testimonial-track {
  display: flex; gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 calc(50% - 14px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 44px 40px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; left: 32px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}
.test-stars {
  display: flex; gap: 4px;
  margin-bottom: 20px;
}
.test-stars span { color: var(--gold); font-size: 1rem; }
.test-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  font-style: italic;
  font-family: var(--font-display);
  margin-bottom: 28px;
}
.test-author {
  display: flex; align-items: center; gap: 14px;
}
.test-avatar {
  width: 46px; height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--charcoal);
  font-weight: 700;
  flex-shrink: 0;
}
.test-name {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.test-role {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}
.slider-controls {
  display: flex; align-items: center; gap: 14px;
  margin-top: 36px;
}
.slider-btn {
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.slider-btn:hover { border-color: var(--gold); color: var(--gold); }
.slider-btn svg { width: 18px; height: 18px; }
.slider-dots {
  display: flex; gap: 8px;
}
.slider-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active {
  background: var(--gold);
  width: 24px; border-radius: 3px;
}

/* ==========================================
   EXPERTS / TEAM
   ========================================== */
#experts {
  padding: var(--section-pad);
  background: var(--ivory);
}
.experts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.expert-card {
  background: #F2F5EE;
  border: 1px solid var(--border);
  padding: 28px 20px;
  text-align: center;
  border-radius: 2px;
  transition: var(--transition);
}
.expert-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.expert-avatar {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}
.expert-card h4 {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.expert-card p {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==========================================
   CTA BAND
   ========================================== */
.cta-band {
  background: linear-gradient(135deg, #B8953F 0%, #8a6e2e 40%, #1A1A1A 100%);
  padding: 80px 24px;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-band p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 36px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 2px;
  transition: var(--transition);
  border: 2px solid #25D366;
}
.btn-wa:hover { background: transparent; color: #25D366; }
.btn-wa svg { width: 20px; height: 20px; }
.btn-call-lg {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 2px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.btn-call-lg:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-call-lg svg { width: 18px; height: 18px; }

/* ==========================================
   BLOG PREVIEW
   ========================================== */
#blog-preview {
  padding: var(--section-pad);
  background: #F2F5EE;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.blog-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); transform: translateY(-4px); }
.blog-thumb {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.blog-thumb-1 { background: linear-gradient(135deg, #2D3A2D, #B8953F33); }
.blog-thumb-2 { background: linear-gradient(135deg, #2A3040, #3D4A5C); }
.blog-thumb-3 { background: linear-gradient(135deg, #3A2D2D, #5C3D3D); }
.blog-body { padding: 24px; }
.blog-cat {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 12px;
}
.blog-card p {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}
.blog-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: gap var(--transition);
}
.blog-link:hover { gap: 10px; }

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: #111111;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  box-sizing: border-box;
}
.footer-brand .logo-text { font-size: 1.8rem; }
.footer-brand .logo-text span { color: var(--gold-light); }
.footer-brand p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
  line-height: 1.8;
}
/* .footer-socials removed */
/* .social-icon removed */

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  line-height: 1.7;
}
.footer-contact strong { color: rgba(255,255,255,0.75); }
.footer-contact a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 2px;
  margin-top: 14px;
  transition: var(--transition);
}
.footer-wa-btn:hover { background: #1ebe5d; }
.footer-wa-btn svg { width: 15px; height: 15px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold-light); }

/* ==========================================
   FLOATING BUTTONS
   ========================================== */
.floating-ctas {
  position: fixed;
  right: 20px; bottom: 30px;
  z-index: 900;
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-end;
}
.float-wa {
  display: flex; align-items: center; gap: 10px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 20px 12px 14px;
  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
}
.float-wa:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,0.5); }
.float-wa svg { width: 20px; height: 20px; flex-shrink: 0; }

.float-call {
  display: flex; align-items: center; gap: 8px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 18px 11px 12px;
  border-radius: 100px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
  text-decoration: none;
  border: 1px solid var(--gold);
}
.float-call:hover { background: var(--gold); color: var(--charcoal); }
.float-call svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ==========================================
   RERA DISCLAIMER
   ========================================== */
.rera-bar {
  background: var(--charcoal-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 10px 24px;
  text-align: center;
}
.rera-bar p {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  letter-spacing: 0.3px;
}

/* ==========================================
   INNER PAGE STYLES
   ========================================== */
.page-hero {
  height: 50vh;
  min-height: 340px;
  background: linear-gradient(135deg, var(--charcoal) 0%, #2D2D2D 100%);
  display: flex; align-items: flex-end;
  padding-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1" fill="%23B8953F" opacity="0.15"/></svg>') repeat;
  background-size: 60px;
}
.page-hero-content {
  position: relative; z-index: 1;
  padding-top: 80px;
}
.page-hero .section-label { color: var(--gold-light); }
.page-hero .section-title { color: var(--white); font-size: clamp(2.2rem, 5vw, 4rem); }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 16px;
}
.breadcrumb a { color: var(--gold); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { opacity: 0.4; }

.page-content {
  padding: 80px 0 100px;
  background: var(--ivory);
}
.page-content .container { max-width: 920px; }
.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--charcoal);
  margin: 40px 0 16px;
}
.page-content p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 18px;
}
.page-content ul {
  margin: 0 0 20px 20px;
  list-style: disc;
}
.page-content ul li {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 8px;
  padding-left: 6px;
}

/* ==========================================
   BLOG POST STYLES
   ========================================== */
.blog-hero { background: linear-gradient(135deg, #1A1A1A, #2D2D2D); }
.blog-article {
  padding: 72px 0 100px;
  background: var(--ivory);
}
.blog-article .container { max-width: 820px; }
.article-meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.article-cat {
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 1px;
}
.article-date {
  font-size: 0.8rem;
  color: var(--text-light);
}
.article-reading {
  font-size: 0.8rem;
  color: var(--text-light);
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--charcoal);
  margin: 48px 0 16px;
  line-height: 1.3;
}
.article-body h3 {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--charcoal);
  margin: 32px 0 12px;
}
.article-body p {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 20px;
}
.article-body a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: var(--gold-pale);
  transition: color var(--transition);
}
.article-body a:hover { color: var(--charcoal); }
.article-body ul, .article-body ol {
  margin: 16px 0 24px 24px;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 8px;
}
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  background: #F2F5EE;
  margin: 32px 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--charcoal);
  font-style: italic;
  line-height: 1.7;
}
.article-cta-box {
  background: var(--charcoal);
  border-radius: 2px;
  padding: 36px 40px;
  margin: 48px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.article-cta-box p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-family: var(--font-display);
  margin: 0;
}
.related-posts {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.related-posts h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.related-card {
  background: #F2F5EE;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 24px;
  transition: var(--transition);
}
.related-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.related-card .blog-cat { margin-bottom: 8px; }
.related-card h4 {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.4;
}
.related-card a.blog-link { margin-top: 4px; }

/* Blog Listing page */
.blog-listing {
  padding: 72px 0 100px;
  background: var(--ivory);
}
.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

/* ==========================================
   ABOUT PAGE SPECIFICS
   ========================================== */
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}
.value-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 40px;
}
.value-card {
  background: #F2F5EE;
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 2px;
}
.value-card h4 {
  font-family: var(--font-accent);
  color: var(--charcoal);
  margin-bottom: 8px;
}
.value-card p { font-size: 0.85rem; color: var(--text-mid); }

/* ==========================================
   HIGHLIGHTS PAGE
   ========================================== */
.diff-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.diff-detail-card {
  background: #F2F5EE;
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: 2px;
  border-top: 3px solid var(--gold);
}
.diff-detail-card h3 {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.diff-detail-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; }

/* Testimonials page */
.test-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.test-page-card {
  background: #F2F5EE;
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: 2px;
  position: relative;
}
.test-page-card::before {
  content: '"';
  position: absolute; top: 16px; left: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
  .experts-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-listing-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card { flex: 0 0 90%; }
  .about-page-grid { grid-template-columns: 1fr; }
  .test-page-grid { grid-template-columns: 1fr; }
  .diff-detail-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { flex-wrap: wrap; width: 100%; }
  .stat-item { flex: 1 0 45%; border-bottom: 1px solid rgba(255,255,255,0.07); max-width: 50%; }
}

@media (max-width: 640px) {
  section { overflow-x: hidden; width: 100%; }
  .container { padding: 0 16px; }
  .header-ctas .btn-call span { display: none; }
  .diff-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-list { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-listing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .plans-tabs { gap: 6px; }
  .plan-tab { font-size: 0.68rem; padding: 8px 14px; }
  .experts-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .article-cta-box { flex-direction: column; text-align: center; }
  .value-cards { grid-template-columns: 1fr; }
  .plans-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; -webkit-overflow-scrolling: touch; max-width: 100%; }
}

/* ==========================================
   MOBILE OVERFLOW FIX
   ========================================== */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
* {
  max-width: 100%;
}
section, header, footer, main, div.container {
  overflow-x: hidden;
}

/* ==========================================
   HERO MOBILE — Content shown below video
   ========================================== */
/* old hero mobile block removed — consolidated below */

/* Prevent media overflow on mobile */
img, video, iframe, embed, object {
  max-width: 100%;
}


/* Logo image */
.logo-img {
  height: 38px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

/* ==========================================
   FLOOR PLAN SLIDER
   ========================================== */
.fp-slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-top: 32px;
  touch-action: pan-y;
}
.fp-slider {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.fp-slide {
  min-width: 100%;
  box-sizing: border-box;
}
.fp-slide a {
  display: block;
  position: relative;
  cursor: pointer;
}
.fp-slide img {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: contain;
  background: #0a0e08;
  display: block;
  border-radius: 4px;
}
.fp-slide-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  padding: 24px 20px 16px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0 0 4px 4px;
}
.fp-slide-label span {
  color: var(--gold-light);
  font-size: 0.75rem;
  display: block;
  margin-top: 4px;
  letter-spacing: 2px;
}
.fp-prev, .fp-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(28,34,20,0.82);
  color: var(--gold-light);
  border: 1px solid var(--gold);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.fp-prev:hover, .fp-next:hover { background: var(--gold); color: #fff; }
.fp-prev { left: 12px; }
.fp-next { right: 12px; }
.fp-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.fp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(184,149,63,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.fp-dot.active { background: var(--gold); }

/* ==========================================
   GALLERY SLIDER
   ========================================== */
.gal-slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-top: 40px;
  touch-action: pan-y;
}
.gal-slider {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.gal-slide {
  min-width: 100%;
  box-sizing: border-box;
}
.gal-slide-img {
  width: 100%;
  height: 480px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 640px) {
  .gal-slide-img { height: 260px; }
}
.gal-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 55%, rgba(0,0,0,0.65));
}
.gal-slide-caption {
  position: absolute;
  bottom: 20px; left: 20px;
  color: #fff;
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.gal-prev, .gal-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(28,34,20,0.82);
  color: var(--gold-light);
  border: 1px solid var(--gold);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.gal-prev:hover, .gal-next:hover { background: var(--gold); color: #fff; }
.gal-prev { left: 12px; }
.gal-next { right: 12px; }
.gal-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.gal-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(184,149,63,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.gal-dot.active { background: var(--gold); }

/* ==========================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ========================================== */

/* Header always visible and never overlapped by video */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
}

/* Ensure video hero doesn't cover header */
.hero-video-bg iframe {
  pointer-events: none;
}

/* Mobile hamburger zone — prevent header CTA clipping */
@media (max-width: 900px) {
  .header-inner {
    padding: 0 16px;
    height: 64px;
  }
  .logo-img { height: 30px; }
  .logo-text { font-size: 1.2rem; }
  .logo-text span { font-size: 0.55rem; letter-spacing: 3px; }
  .header-ctas {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
    margin-left: auto;
  }
  .mobile-nav {
    top: 64px;
    left: 0; right: 0;
    width: 100%;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    z-index: 1099;
  }
  .mobile-nav.open {
    display: block;
  }
}

@media (max-width: 640px) {
  /* Base layout */
  body { font-size: 15px; }
  .container { padding: 0 15px; }
  
  /* Hero on mobile */
  #hero {
    flex-direction: column;
    min-height: auto;
    padding-top: 64px;
  }
  .hero-video-bg {
    position: relative !important;
    height: 56vw;
    min-height: 200px;
    max-height: 280px;
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    overflow: hidden;
    box-sizing: border-box;
  }
  .hero-video-bg iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .hero-overlay { display: none !important; }
  .hero-content {
    background: var(--charcoal);
    position: relative !important;
    z-index: 2;
    padding: 36px 18px 48px;
    width: 100%;
    box-sizing: border-box;
  }
  .hero-title { font-size: 2.6rem; }
  .hero-config {
    font-size: 0.72rem;
    padding: 8px 14px;
    word-break: break-word;
  }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }

  /* Stats bar */
  .stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-item { flex: unset; max-width: unset; border-bottom: none; border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(3n) { border-right: none; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: 0.6rem; }

  /* About section */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  
  /* Sections padding */
  section { padding: 52px 0; }
  
  /* Floor plans */
  .fp-slide img { max-height: 280px; object-fit: cover; }
  .fp-prev, .fp-next { width: 36px; height: 36px; font-size: 1rem; }
  
  /* Gallery */
  .gal-slide-img { height: 240px; }
  
  /* Amenities */
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  
  /* Experts */
  .experts-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  
  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  
  /* Diff grid */
  .diff-grid { grid-template-columns: 1fr; }
  
  /* Plan tabs on mobile */
  .plans-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; gap: 6px; }
  .plan-tab { font-size: 0.68rem; padding: 8px 12px; white-space: nowrap; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 2.1rem; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================
   BLOG HERO COVER IMAGE
   ========================================== */
.blog-hero-cover {
  width: 100%;
  height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  display: block;
  margin-bottom: 0;
}
.blog-article { position: relative; }
@media (max-width: 640px) {
  .blog-hero-cover { height: 220px; }
}


/* ==========================================
   HIGHLIGHTS — MOBILE 2-COL TO 1-COL FIX
   ========================================== */
@media (max-width: 760px) {
  #highlights .container > div {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
}
@media (max-width: 640px) {
  #highlights .container > div {
    display: block !important;
  }
  #highlights .container > div > div:last-child {
    margin-top: 32px;
  }
}

