/* ==========================================
   CRC THE PERIDONA — Design System
   Palette: Warm Ivory bg, Deep Bronze dark,
   Antique Gold accent — Live. More.
   ========================================== */

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

/* ── Variables ── */
:root {
  --gold:        #B8943A;
  --gold-light:  #D4AE5E;
  --gold-pale:   #F5EDD8;
  --bronze:      #2C1A0E;
  --bronze-2:    #3D2510;
  --ivory:       #F5F0E8;
  --ivory-2:     #EDE6D6;
  --charcoal:    #1A120A;
  --white:       #FFFFFF;
  --text-mid:    #6B5E4E;
  --text-light:  #9C8C7A;
  --border:      rgba(184,148,58,0.18);
  --max-w:       1280px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
  --font-accent:  'Playfair Display', serif;
}

/* ── 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: var(--ivory);
  overflow-x: hidden;
  line-height: 1.7;
  width: 100%;
  max-width: 100vw;
}
img, video, iframe, embed, object { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  box-sizing: border-box;
}

/* ── Utility ── */
.text-center { text-align: center; }
.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 8px;
}
.section-title span { color: var(--gold); font-style: italic; }
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 0.92rem;
  color: var(--text-mid);
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.8;
}
.gold-divider {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 20px 0;
}
.gold-divider.centered { margin: 20px auto; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: border-color 0.25s, color 0.25s;
}
.btn-secondary:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
}
.btn-wa:hover { background: #1fba58; transform: translateY(-2px); }
.btn-wa svg { flex-shrink: 0; }

/* ==========================================
   HEADER
   ========================================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: rgba(28,18,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.35s, box-shadow 0.35s;
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  background: rgba(28,18,10,0.98);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
  border-bottom-color: var(--border);
}
.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: 10px; text-decoration: none; }
.logo-img { height: 36px; width: auto; display: block; flex-shrink: 0; object-fit: contain; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-size: 0.58rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  transition: color 0.2s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--gold-light); }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: rgba(28,18,10,0.97);
  border: 1px solid var(--border);
  border-radius: 2px;
  min-width: 200px;
  padding: 8px 0;
  display: none;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,0.75);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.dropdown-menu a:hover { color: var(--gold-light); background: rgba(184,148,58,0.08); }
.header-ctas { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-call:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-header-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 100px;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-header-wa:hover { background: #1fba58; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  margin-left: 12px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(28,18,10,0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 20px 0 32px;
  z-index: 1099;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 13px 28px;
  color: rgba(255,255,255,0.82);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold-light); }
.mob-sub { padding-left: 44px !important; font-size: 0.72rem !important; color: rgba(255,255,255,0.55) !important; }
.mob-section-label {
  display: block;
  padding: 14px 28px 6px;
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.mobile-nav-ctas { padding: 20px 28px 0; display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-ctas .btn-wa,
.mobile-nav-ctas .btn-call { width: 100%; justify-content: center; }

/* ==========================================
   HERO SECTION
   ========================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-bg video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(28,18,10,0.75) 0%,
    rgba(28,18,10,0.45) 50%,
    rgba(28,18,10,0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 32px 100px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-monogram {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 300;
  color: rgba(255,255,255,0.06);
  line-height: 0.85;
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: -2px;
  pointer-events: none;
  user-select: none;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 680px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}
.hero-tagline {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-config {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  margin-bottom: 36px;
  border-radius: 2px;
  box-sizing: border-box;
  max-width: 100%;
  word-break: break-word;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-tagline-sub {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  margin-top: 40px;
  letter-spacing: 1px;
}
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span { font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(184,148,58,0.8), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ==========================================
   STATS BAR
   ========================================== */
.stats-bar {
  background: var(--bronze);
  border-bottom: 1px solid var(--border);
}
.stats-bar-inner {
  display: flex;
  max-width: var(--max-w);
  margin: 0 auto;
  flex-wrap: wrap;
  width: 100%;
}
.stat-item {
  flex: 1 0 0;
  min-width: 0;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.62rem; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ==========================================
   ABOUT SECTION
   ========================================== */
#about {
  padding: 100px 0;
  background: var(--ivory);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.about-label { margin-bottom: 8px; }
.about-body { font-size: 0.95rem; color: var(--text-mid); line-height: 1.9; margin-top: 24px; }
.about-body p + p { margin-top: 16px; }
.about-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1.4;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
}
.about-video-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.about-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  max-height: 480px;
}
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.about-stat {
  background: var(--ivory);
  padding: 28px 20px;
  text-align: center;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-mid); }

/* ==========================================
   DIFFERENTIATORS / HIGHLIGHTS
   ========================================== */
#differentiators {
  padding: 100px 0;
  background: var(--bronze);
}
.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.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 32px;
  transition: background 0.3s, border-color 0.3s;
  text-decoration: none;
  display: block;
}
.diff-card:hover { background: rgba(184,148,58,0.08); border-color: var(--border); }
.diff-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(184,148,58,0.25);
  line-height: 1;
  margin-bottom: 20px;
}
.diff-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}
.diff-body { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.8; }
.diff-arrow { margin-top: 24px; color: var(--gold); font-size: 0.75rem; letter-spacing: 2px; }

/* ==========================================
   NEIGHBOURHOOD SECTION
   ========================================== */
#neighbourhood {
  padding: 100px 0;
  background: var(--ivory-2);
}
.neighbourhood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
  width: 100%;
  box-sizing: border-box;
}
.neighbourhood-list { list-style: none; }
.neighbourhood-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.neighbourhood-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}
.neighbourhood-list li strong { color: var(--charcoal); }
.neighbourhood-img-block {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  background: var(--ivory);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.neighbourhood-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 40px;
}
.n-stat {
  background: var(--ivory);
  padding: 24px 20px;
  text-align: center;
}
.n-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.n-stat-label { font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-mid); }

/* ==========================================
   CLUB AMENITIES
   ========================================== */
#the-club {
  padding: 100px 0;
  background: var(--bronze);
}
.club-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
  width: 100%;
  box-sizing: border-box;
}
.club-intro { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.9; margin: 20px 0 32px; }
.club-size-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 12px 24px;
  border-radius: 2px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
}
.club-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.club-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 2px;
}
.club-item::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 4px;
}
.rooftop-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 40px 32px;
}
.rooftop-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}
.rooftop-card .size-note {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.rooftop-list { list-style: none; }
.rooftop-list li {
  padding: 10px 0;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 12px;
}
.rooftop-list li::before { content: '—'; color: var(--gold); font-size: 0.8rem; }

/* ==========================================
   ARCHITECTS / CONSULTANTS
   ========================================== */
#architects {
  padding: 100px 0;
  background: var(--ivory);
}
.arch-intro {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.7;
  margin: 20px 0 56px;
}
.arch-principal {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
  padding: 56px;
  background: var(--ivory-2);
  border: 1px solid var(--border);
  border-radius: 2px;
  margin-bottom: 48px;
  width: 100%;
  box-sizing: border-box;
}
.arch-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.arch-role { font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.arch-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; }
.consultants-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 0;
  width: 100%;
  box-sizing: border-box;
}
.consultant-card {
  background: var(--ivory-2);
  border: 1px solid var(--border);
  padding: 28px 20px;
  text-align: center;
  transition: background 0.2s;
}
.consultant-card:hover { background: var(--gold-pale); }
.consultant-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.consultant-origin { font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.consultant-role { font-size: 0.75rem; color: var(--text-mid); }

/* ==========================================
   FLOOR PLANS SLIDER
   ========================================== */
#floor-plans {
  padding: 100px 0;
  background: var(--bronze);
}
.fp-slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  margin-top: 40px;
  touch-action: pan-y;
  width: 100%;
  box-sizing: border-box;
}
.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: 560px;
  object-fit: contain;
  background: #0f0a06;
  display: block;
  border-radius: 2px;
}
.fp-slide-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
  padding: 32px 24px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0 0 2px 2px;
}
.fp-slide-label span {
  color: var(--gold-light);
  font-size: 0.68rem;
  display: block;
  margin-top: 4px;
  letter-spacing: 2.5px;
}
.fp-prev, .fp-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(28,18,10,0.85);
  color: var(--gold-light);
  border: 1px solid var(--gold);
  width: 48px; height: 48px;
  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: 16px; }
.fp-next { right: 16px; }
.fp-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.fp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(184,148,58,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.fp-dot.active { background: var(--gold); }

/* ==========================================
   GALLERY SLIDER
   ========================================== */
#gallery {
  padding: 100px 0;
  background: var(--ivory);
}
.gal-slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  margin-top: 48px;
  touch-action: pan-y;
  width: 100%;
  box-sizing: border-box;
}
.gal-slider { display: flex; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); }
.gal-slide { min-width: 100%; box-sizing: border-box; }
.gal-slide-img {
  width: 100%; height: 520px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.gal-slide-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(28,18,10,0.7)); }
.gal-slide-caption {
  position: absolute;
  bottom: 24px; left: 28px;
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.gal-prev, .gal-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(28,18,10,0.8);
  color: var(--gold-light);
  border: 1px solid var(--gold);
  width: 48px; height: 48px;
  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: 16px; }
.gal-next { right: 16px; }
.gal-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.gal-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(184,148,58,0.3); border: none; cursor: pointer; transition: background 0.2s; padding: 0; }
.gal-dot.active { background: var(--gold); }

/* ==========================================
   CTA BAND
   ========================================== */
.cta-band {
  padding: 80px 32px;
  background: linear-gradient(135deg, var(--bronze), #1a0c05);
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-band p { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================
   BLOG SECTION
   ========================================== */
#blog {
  padding: 100px 0;
  background: var(--ivory-2);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  width: 100%;
  box-sizing: border-box;
}
.blog-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
}
.blog-card:hover { box-shadow: 0 12px 40px rgba(184,148,58,0.12); transform: translateY(-4px); }
.blog-thumb {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--ivory-2);
}
.blog-body { padding: 24px 22px 28px; }
.blog-cat {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.blog-card-title {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-excerpt { font-size: 0.82rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.blog-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-link:hover { color: var(--bronze); }

/* ==========================================
   RERA BAR
   ========================================== */
.rera-bar {
  background: #0d0805;
  padding: 16px 32px;
  text-align: center;
}
.rera-bar p {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 1100px;
  margin: 0 auto;
}
.rera-bar a { color: rgba(184,148,58,0.7); }

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: var(--charcoal);
  padding: 72px 0 0;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  width: 100%;
  box-sizing: border-box;
}
.footer-brand-tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  line-height: 1.6;
}
.footer-tagline-main {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  font-style: italic;
  margin-top: 8px;
}
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-contact p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 6px;
}
.footer-contact a { color: var(--gold-light); display: inline; }
.footer-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 100px;
  margin-top: 16px;
  transition: background 0.2s;
}
.footer-wa-btn:hover { background: #1fba58; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.68rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ==========================================
   FLOATING CTAs
   ========================================== */
.floating-ctas {
  position: fixed;
  bottom: 28px;
  right: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.float-wa {
  display: flex; align-items: center; gap: 10px;
  background: #25D366;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.float-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.float-call {
  display: flex; align-items: center; gap: 10px;
  background: var(--charcoal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s;
  white-space: nowrap;
}
.float-call:hover { transform: translateY(-2px); }

/* ==========================================
   INNER PAGES
   ========================================== */
.page-hero {
  padding: 160px 32px 80px;
  background: var(--bronze);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,18,10,0.5), transparent);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { margin: 0 8px; }

/* Blog article */
.blog-hero-cover {
  width: 100%;
  height: 420px;
  background-size: cover;
  background-position: center;
  display: block;
}
.blog-article {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 32px 80px;
}
.article-header { margin-bottom: 40px; }
.article-cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.article-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
}
.article-meta { font-size: 0.75rem; color: var(--text-light); letter-spacing: 1px; }
.article-body { font-size: 0.95rem; color: var(--text-mid); line-height: 1.95; }
.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 40px 0 16px;
  line-height: 1.25;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 32px 0 12px;
}
.article-body p + p { margin-top: 18px; }
.article-body a { color: var(--gold); border-bottom: 1px solid var(--gold-pale); }
.wa-cta-box {
  background: linear-gradient(135deg, var(--bronze), #1a0c05);
  border-radius: 2px;
  padding: 36px;
  margin: 48px 0;
  text-align: center;
}
.wa-cta-box h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}
.wa-cta-box p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.related-posts { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--border); }
.related-posts h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--charcoal); margin-bottom: 28px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { border: 1px solid var(--border); border-radius: 2px; padding: 20px; }
.related-card .blog-cat { font-size: 0.6rem; }
.related-card h4 { font-family: var(--font-accent); font-size: 0.88rem; color: var(--charcoal); margin: 8px 0 12px; line-height: 1.4; }
.related-card a { font-size: 0.68rem; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }

/* Legal pages */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 32px 80px;
  background: var(--ivory);
}
.legal-content h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--charcoal); margin: 32px 0 12px; font-weight: 400; }
.legal-content p, .legal-content li { font-size: 0.88rem; color: var(--text-mid); line-height: 1.9; }
.legal-content ul { padding-left: 24px; list-style: disc; margin: 12px 0; }
.legal-content li { margin-bottom: 6px; }

/* Blog listing */
.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  width: 100%;
  box-sizing: border-box;
}

/* ==========================================
   MOBILE — COMPREHENSIVE RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
  .consultants-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .arch-principal { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
}

@media (max-width: 900px) {
  .main-nav, .header-ctas { display: none !important; }
  .hamburger { display: flex !important; }
  .header-inner { padding: 0 20px; height: 64px; }
  .mobile-nav { top: 64px; }
  .logo-img { height: 30px; }
  .logo-text { font-size: 1.15rem; }

  .diff-grid { grid-template-columns: 1fr 1fr; }
  .neighbourhood-grid { grid-template-columns: 1fr; gap: 40px; }
  .club-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .club-list { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-listing-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  html, body { overflow-x: hidden; }
  .container { padding: 0 16px; }

  /* Hero stacked 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 video {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-overlay { display: none !important; }
  .hero-content {
    background: var(--charcoal);
    position: relative !important;
    z-index: 2;
    padding: 36px 18px 52px;
    width: 100%;
    box-sizing: border-box;
  }
  .hero-monogram { display: none; }
  .hero-title { font-size: 2.8rem; }
  .hero-tagline { font-size: 0.68rem; letter-spacing: 2.5px; }
  .hero-config { font-size: 0.65rem; padding: 8px 14px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-secondary, .btn-wa { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }

  /* Stats */
  .stats-bar-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
  .stat-item { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.07); padding: 20px 8px; }
  .stat-item:nth-child(3n) { border-right: none; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: 0.55rem; }

  /* Sections */
  section, #about, #differentiators, #neighbourhood, #the-club, #architects, #floor-plans, #gallery, #blog { padding: 56px 0; }

  /* Diff grid 1 col */
  .diff-grid { grid-template-columns: 1fr; }

  /* About stats */
  .about-stats-row { grid-template-columns: 1fr 1fr 1fr; }
  .about-stat { padding: 20px 10px; }
  .about-stat-num { font-size: 1.6rem; }

  /* Neighbourhood */
  .neighbourhood-stats-grid { grid-template-columns: 1fr 1fr; }

  /* Club */
  .club-list { grid-template-columns: 1fr; }

  /* Architects */
  .arch-principal { padding: 28px 20px; }
  .consultants-grid { grid-template-columns: repeat(2, 1fr); }

  /* Floor plan */
  .fp-slide img { max-height: 260px; }
  .fp-prev, .fp-next { width: 36px; height: 36px; font-size: 1rem; }

  /* Gallery */
  .gal-slide-img { height: 240px; }

  /* Blog */
  .blog-grid, .blog-listing-grid { grid-template-columns: 1fr; }

  /* Blog article */
  .blog-hero-cover { height: 220px; }
  .blog-article { padding: 36px 16px 56px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }

  /* CTA band */
  .cta-band { padding: 56px 16px; }

  /* Floating CTAs */
  .floating-ctas { bottom: 16px; right: 12px; }
  .float-wa span, .float-call span { display: none; }

  /* Inner pages */
  .page-hero { padding: 120px 16px 56px; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 2.2rem; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2n) { border-right: none; }
}
