/* ============================================================
   JUBIMAS PROPERTY — IVORY COLLECTION (Concept A)
   Light luxury design system
   Fonts: Cormorant Garamond + DM Sans
   ============================================================ */

/* ─── Design Tokens ──────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:           #F8F5EF;
  --bg-soft:      #F2EDE4;
  --bg-card:      #FFFFFF;
  --white:        #FFFFFF;

  /* Text */
  --charcoal:     #1C1C1C;
  --ink:          #2D2820;
  --body:         #5A5247;
  --muted:        #9A8E82;

  /* Dark footer bg (contrast) */
  --void:         #2D2820;
  --abyss:        #F8F5EF;   /* page bg alias */
  --deep:         #F2EDE4;   /* soft section alias */
  --onyx:         #FFFFFF;   /* card alias */
  --graphite:     #F2EDE4;   /* input bg alias */
  --fog:          #9A8E82;
  --ghost:        #BDB4A8;
  --parchment:    #5A5247;
  --cream:        #2D2820;
  --ivory:        #1C1C1C;
  --slate:        #E5DDD0;
  --mist:         #7A6E64;

  /* Gold */
  --gold:         #C9A227;
  --gold-warm:    #B8911E;
  --gold-light:   #D9B240;
  --gold-pale:    #FDF3D0;
  --gold-dk:      #A8841C;
  --gold-dim:     rgba(201,162,39,.08);
  --gold-glow:    rgba(201,162,39,.22);
  --gold-border:  rgba(201,162,39,.28);

  /* Borders */
  --border:       #E5DDD0;
  --border-lt:    rgba(229,221,208,.6);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, system-ui, sans-serif;

  /* Layout */
  --nav-h:       72px;
  --container:   1400px;
  --section-py:  104px;

  /* Easing */
  --ease-silk:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:      0.18s;
  --t-med:       0.38s;
  --t-slow:      0.65s;

  /* Shadows */
  --shadow:      0 2px 16px rgba(28,20,10,.07);
  --shadow-md:   0 8px 40px rgba(28,20,10,.12);
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ─── Custom Cursor (disabled on light theme) ────────────── */
.cursor-dot, .cursor-ring { display: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--charcoal);
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 64px);
}
@media (max-width: 768px) { .container { padding: 0 24px; } }

.section-block { padding: var(--section-py) 0; }
@media (max-width: 768px) { .section-block { padding: 72px 0; } }

/* ============================================================
   UTILITIES
   ============================================================ */

.bg-void      { background: var(--void); }
.bg-abyss     { background: var(--bg); }
.bg-deep      { background: var(--bg-soft); }
.bg-onyx      { background: var(--bg-card); }
.bg-charcoal  { background: var(--charcoal); }
.bg-cream     { background: var(--bg-soft); }
.bg-white     { background: #ffffff; }

.text-gold    { color: var(--gold); }
.text-muted   { color: var(--muted); }
.text-center  { text-align: center; }

.hidden { display: none !important; }
.inline-block { display: inline-block; }
.w-full { width: 100%; display: block; }

.mt-2  { margin-top: 0.5rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.gold-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  margin: 20px 0;
}
.gold-line { display: block; width: 40px; height: 1px; background: var(--gold); opacity: 0.5; }
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,.3), transparent);
  border: none;
}
.body-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--body);
  line-height: 1.9;
}
.font-cinzel { font-family: var(--font-display); }
.page-body { padding-top: var(--nav-h); }

/* ─── Reveal animation ────────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-silk), transform 0.8s var(--ease-silk);
}
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}
[data-aos][data-aos-delay="60"].aos-animate  { transition-delay: 60ms; }
[data-aos][data-aos-delay="100"].aos-animate { transition-delay: 100ms; }
[data-aos][data-aos-delay="120"].aos-animate { transition-delay: 120ms; }
[data-aos][data-aos-delay="150"].aos-animate { transition-delay: 150ms; }
[data-aos][data-aos-delay="180"].aos-animate { transition-delay: 180ms; }
[data-aos][data-aos-delay="200"].aos-animate { transition-delay: 200ms; }
[data-aos][data-aos-delay="240"].aos-animate { transition-delay: 240ms; }
[data-aos][data-aos-delay="300"].aos-animate { transition-delay: 300ms; }

/* ============================================================
   SECTION HEADER PATTERN
   ============================================================ */

.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-eyebrow { justify-content: center; }
.section-header.centered .section-sub { margin-left: auto; margin-right: auto; }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}
.section-eyebrow.left::before { display: none; }
.section-eyebrow.center::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}
.section-eyebrow-line { display: block; width: 32px; height: 1px; background: var(--gold); opacity: 0.45; }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  text-transform: uppercase;
}
.section-heading.dark { color: var(--charcoal); }
.section-heading em { font-style: italic; color: var(--gold); text-transform: none; font-weight: 400; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.section-title em { font-style: italic; color: var(--gold); text-transform: none; font-weight: 400; }
.section-title-sm {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--body);
  line-height: 1.85;
  max-width: 560px;
  margin-top: 16px;
}
.section-sub.dark { color: var(--body); }
.section-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--body);
  line-height: 1.85;
  max-width: 560px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 32px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  border-radius: 6px;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  cursor: pointer;
}
.btn-gold:hover { background: var(--gold-dk); border-color: var(--gold-dk); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,162,39,.32); }
.btn-gold:active { transform: translateY(0); }

.btn-gold-outline, .btn-gold-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 32px;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background var(--t-med), color var(--t-med), transform var(--t-med);
  cursor: pointer;
}
.btn-gold-outline:hover, .btn-gold-outline-gold:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
  background: transparent;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background var(--t-med), border-color var(--t-med);
  cursor: pointer;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}

/* Legacy aliases */
.btn-gold-sm {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 22px; background: var(--gold); color: #fff;
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; border-radius: 6px;
  border: none; cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
}
.btn-gold-sm:hover { background: var(--gold-dk); transform: translateY(-1px); }

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow var(--t-slow);
}

.site-nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--charcoal);
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0 auto;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--body);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: color var(--t-fast);
  position: relative;
}
.nav-link:hover { color: var(--gold); }
.nav-link.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown-wrap { position: relative; }
/* Invisible hover bridge — keeps :hover alive while cursor moves
   from the trigger link down to the dropdown panel */
.nav-dropdown-wrap::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -10px; right: -10px;
  height: 18px;
  z-index: 1000;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid rgba(201,162,39,.18);
  padding: 8px 0;
  min-width: 240px;
  z-index: 1001;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(5,5,13,.10), 0 2px 8px rgba(5,5,13,.06);
  /* animated state */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
/* gold top-border accent */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -1px; left: 24px; right: 24px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}
/* small caret triangle */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px;
  background: var(--white);
  border-top: 1px solid rgba(201,162,39,.18);
  border-left: 1px solid rgba(201,162,39,.18);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--body);
  transition: color 0.15s ease, background 0.15s ease, padding-left 0.15s ease;
  position: relative;
}
.nav-dropdown a:hover {
  color: var(--gold);
  background: var(--gold-dim);
  padding-left: 26px;
}
.dropdown-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.nav-chevron { width: 10px; height: 10px; transition: transform 0.22s ease; opacity: 0.5; }
.nav-dropdown-wrap:hover .nav-chevron { transform: rotate(180deg); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-login-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 9px 22px;
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  transition: background var(--t-fast), color var(--t-fast);
  cursor: pointer;
}
.nav-login-btn:hover { background: var(--gold-pale); }

/* User menu */
.nav-user-wrap { position: relative; }
.nav-user-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color var(--t-fast);
}
.nav-user-btn:hover { border-color: var(--gold); }
.nav-user-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-user-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--body);
  text-transform: uppercase;
}
.nav-user-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  background: var(--white);
  border: 1px solid rgba(201,162,39,.18);
  padding: 8px 0;
  min-width: 210px;
  z-index: 1001;
  box-shadow: 0 12px 40px rgba(5,5,13,.10), 0 2px 8px rgba(5,5,13,.06);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.nav-user-dropdown::before {
  content: '';
  position: absolute;
  top: -1px; left: 24px; right: 24px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}
.nav-user-dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-user-dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--body);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-user-dropdown a:hover { color: var(--gold); background: var(--gold-dim); }
.nav-user-dropdown svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.4; }
.nav-dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }
.nav-dropdown-danger { color: #a05050 !important; }
.nav-dropdown-danger:hover { background: rgba(160,80,80,0.06) !important; color: #c06060 !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  padding: 100px 32px 48px;
  transition: right var(--t-slow) var(--ease-silk);
  border-left: 1px solid var(--border);
  overflow-y: auto;
}
.nav-mobile-drawer.open { right: 0; }
.nav-mobile-links { list-style: none; }
.nav-mobile-links li { border-bottom: 1px solid var(--border-lt); }
.nav-mobile-links a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--body);
  transition: color var(--t-fast);
}
.nav-mobile-links a:hover { color: var(--gold); }
.nav-mobile-login {
  display: block;
  margin-top: 28px;
  padding: 13px 24px;
  border: 2px solid var(--gold);
  text-align: center;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-radius: 6px;
  transition: background var(--t-fast);
}
.nav-mobile-login:hover { background: var(--gold-pale); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 998;
  backdrop-filter: blur(4px);
}
.nav-overlay.open { display: block; }

/* Legacy compat */
.nav-container { max-width: var(--container); margin: 0 auto; padding: 0 48px; height: 100%; display: flex; align-items: center; gap: 32px; }
.nav-menu { display: flex; align-items: center; gap: 0; list-style: none; margin-left: auto; }
.nav-menu > li > a { font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--body); padding: 8px 14px; display: flex; align-items: center; gap: 4px; transition: color var(--t-fast); white-space: nowrap; }
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--gold); }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border: 1px solid var(--border); padding: 10px 0; min-width: 220px; z-index: 1001; box-shadow: var(--shadow-md); border-radius: 8px; }
.nav-menu .dropdown-menu-wrap:hover .dropdown-menu { display: block; }
.dropdown-menu li a { display: flex; align-items: center; gap: 12px; padding: 12px 18px; font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--body); transition: color var(--t-fast), background var(--t-fast); }
.dropdown-menu li a:hover { color: var(--gold); background: var(--gold-dim); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px 4px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); border-radius: 1px; transition: transform var(--t-fast), opacity var(--t-fast); }
.nav-dashboard-btn { font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 10px 22px; background: var(--gold); color: #fff; border-radius: 6px; display: inline-flex; align-items: center; gap: 8px; transition: background var(--t-fast); border: none; cursor: pointer; }
.nav-dashboard-btn:hover { background: var(--gold-dk); }
.nav-account-wrap { position: relative; }
.mobile-menu-overlay, .nav-mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 998; backdrop-filter: blur(4px); }
.mobile-menu-overlay.open, .nav-mobile-overlay.open { display: block; }
.nav-mobile-drawer a { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--body); padding: 14px 0; border-bottom: 1px solid var(--border-lt); transition: color var(--t-fast); letter-spacing: 0.04em; }
.nav-mobile-drawer a:hover { color: var(--gold); }
.drawer-sub { padding-left: 16px; font-size: 1rem !important; color: rgba(44,40,32,.4) !important; }
.drawer-login { margin-top: 24px; display: block; text-align: center; padding: 12px 24px !important; border: 2px solid var(--gold) !important; border-radius: 6px !important; color: var(--gold) !important; font-family: var(--font-body) !important; font-size: 10px !important; font-weight: 700 !important; letter-spacing: 0.2em !important; text-transform: uppercase !important; }
.navbar-glass { background: rgba(255,255,255,.97); }
.navbar-glass.scrolled { background: rgba(255,255,255,.98); box-shadow: var(--shadow-md); }

@media (max-width: 960px) {
  .nav-links, .nav-login-btn { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 24px; }
  .nav-menu { display: none; }
  .nav-burger { display: flex; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 70% at 75% 50%, rgba(201,162,39,.06) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 5% 80%, rgba(201,162,39,.04) 0%, transparent 55%);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.012;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px;
}

#hero-canvas { position: absolute; inset: 0; z-index: 1; opacity: 0.15; }

.hero-section::after {
  content: '';
  position: absolute;
  top: 15%; bottom: 15%;
  left: calc(50% - 210px);
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,162,39,.2), transparent);
  z-index: 2;
}
@media (max-width: 900px) { .hero-section::after { display: none; } }

/* Left content */
.hero-content {
  position: relative;
  z-index: 10;
  padding: 120px 64px 80px 64px;
  max-width: 680px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.hero-eyebrow-rule {
  display: block; width: 40px; height: 1px;
  background: var(--gold); opacity: 0.5; flex-shrink: 0;
}

.hero-title-gold {
  font-style: italic; color: var(--gold); text-transform: none; font-weight: 400;
}

.hero-lead {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--body);
  line-height: 1.85;
  max-width: 460px;
  margin: 28px 0 40px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-item { }
.hero-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-stat-divider {
  width: 1px; height: 36px;
  background: var(--border); flex-shrink: 0;
}

/* Right: media */
.hero-media {
  position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 64px 80px 24px;
  height: 100%;
}
.hero-video-frame {
  position: relative;
  width: 380px; height: 380px;
  flex-shrink: 0;
}
.hero-video-frame video {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block; position: relative; z-index: 3;
  box-shadow: 0 0 0 1px rgba(201,162,39,.25), 0 0 60px rgba(201,162,39,.1), 0 32px 80px rgba(28,20,10,.2);
}
.hero-video-ring {
  position: absolute; inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,.15);
  z-index: 2;
  animation: ringBreath 5s ease-in-out infinite;
}
.hero-video-frame::before {
  content: '';
  position: absolute; inset: -36px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,.07);
  z-index: 1;
  animation: ringBreath 5s ease-in-out infinite 1.5s;
}
@keyframes ringBreath {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.025); }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 20;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(201,162,39,.45);
  text-decoration: none;
  animation: scrollFloat 3.5s ease-in-out infinite;
}
.hero-scroll-hint::before {
  content: 'SCROLL';
  font-family: var(--font-body); font-size: 7px; font-weight: 700;
  letter-spacing: 0.35em; color: rgba(201,162,39,.35);
}
.hero-scroll-hint svg { width: 18px; height: 18px; }
@keyframes scrollFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(7px); opacity: 1; }
}

@media (max-width: 960px) {
  .hero-section { grid-template-columns: 1fr; min-height: 100vh; }
  .hero-media { order: -1; padding: 120px 24px 24px; height: auto; justify-content: center; }
  .hero-video-frame { width: 240px; height: 240px; }
  .hero-content { padding: 24px 24px 80px; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-cta-row { justify-content: center; }
  .hero-stats-row { justify-content: center; flex-wrap: wrap; }
  .hero-lead { margin-left: auto; margin-right: auto; }
}

/* ============================================================
   HERO — SLIDESHOW (matches Concept A mock)
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

/* Slideshow slides */
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
  animation: heroZoomIn 8s var(--ease-silk) forwards;
}
@keyframes heroZoomIn {
  from { transform: scale(1.07); }
  to   { transform: scale(1.0); }
}

/* Progress bar */
.hero-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; z-index: 10;
  background: rgba(255,255,255,.15);
}
.hero-progress-bar {
  height: 100%; background: var(--gold); width: 0%;
  transition: width linear;
}

/* Overlays */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to left,
    rgba(20,15,8,.88) 0%,
    rgba(20,15,8,.78) 20%,
    rgba(20,15,8,.55) 42%,
    rgba(20,15,8,.18) 65%,
    rgba(20,15,8,.0) 100%
  );
}
.hero-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, rgba(20,15,8,.5), transparent);
}

/* Inner layout — content on the right */
.hero-inner {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: var(--nav-h);
}
.hero-content {
  width: 100%;
  max-width: clamp(480px, 38vw, 640px);
}

/* Eyebrow label */
.hero-label {
  font-size: .8rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.hero-label::before { content: '◆'; font-size: .5rem; color: var(--gold); }

/* Title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.4vw, 3.6rem);
  font-weight: 600; line-height: 1.08;
  color: #fff; letter-spacing: .02em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--gold-light); font-weight: 400; text-transform: none; }

/* Description */
.hero-desc {
  font-size: clamp(.9rem, .95vw, 1.05rem);
  color: rgba(255,255,255,.72);
  line-height: 1.8; margin-bottom: 36px; max-width: 480px;
}

/* Stat chips */
.hero-chips {
  display: flex; gap: 10px; flex-wrap: nowrap;
  margin-bottom: 36px;
}
.hero-chip {
  flex: 1;
  background: rgba(201,162,39,.2);
  border: 1px solid rgba(201,162,39,.45);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  transition: background .25s;
  min-width: 0;
}
.hero-chip:hover { background: rgba(201,162,39,.32); }
.hero-chip-num {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.6vw, 1.9rem); font-weight: 600;
  color: var(--gold-light); line-height: 1;
}
.hero-chip-lbl {
  font-size: clamp(.6rem, .55vw, .72rem); font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-top: 5px;
}

/* CTA row */
.hero-cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-content { max-width: 500px; padding-right: 40px; }
}
@media (max-width: 768px) {
  .hero-chips  { display: none; }
  .hero-desc   { margin-bottom: 24px; }
  .hero-title  { margin-bottom: 14px; }
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(20,15,8,.82) 0%, rgba(20,15,8,.65) 45%, rgba(20,15,8,.25) 100%);
  }
  .hero-inner  { align-items: flex-start; padding-top: calc(var(--nav-h) + 40px); padding-bottom: 48px; }
  .hero-content { max-width: 100%; padding-right: 0; padding-left: 0; }
}
@media (max-width: 540px) {
  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn-gold,
  .hero-cta-row .btn-ghost { width: 100%; justify-content: center; }
}
@media (min-width: 1920px) {
  .hero-title { font-size: 4.2rem; }
  .hero-desc  { font-size: 1.1rem; max-width: 540px; }
  .hero-chip  { padding: 18px 20px; }
  .hero-chip-num { font-size: 1.8rem; }
}

/* ============================================================
   PROPERTIES SECTION (mock layout)
   ============================================================ */

.props-section {
  padding: clamp(72px,7vw,120px) 0;
  background: var(--white);
}
.props-head {
  text-align: center;
  margin-bottom: clamp(40px,4vw,64px);
}
.prop-lot {
  font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 2px;
}
.prop-location {
  font-size: .8125rem; color: var(--muted); margin-bottom: 12px;
  display: flex; align-items: center; gap: 5px;
}
.prop-location::before { content: '📍'; font-size: .7rem; }
.prop-desc {
  font-size: .875rem; color: var(--body); line-height: 1.65; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.prop-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px dashed var(--border); margin-bottom: 18px;
}
.prop-price {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--charcoal);
}
.prop-price span { font-size: .75rem; color: var(--muted); font-family: var(--font-body); font-weight: 400; }
.prop-cta {
  display: block; width: 100%;
  background: var(--gold); color: #fff;
  border: none; border-radius: 6px; padding: 12px 20px;
  font-family: var(--font-body); font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; text-align: center;
  cursor: pointer; transition: background var(--t-fast);
}
.prop-card:hover .prop-cta { background: var(--gold-dk); }
.props-more { text-align: center; margin-top: 56px; padding-bottom: 24px; }

/* ============================================================
   REFERRAL SECTION (split layout)
   ============================================================ */

.referral-section {
  padding: clamp(72px,7vw,120px) 0;
  background: var(--bg-soft);
}
.referral-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,5vw,100px); align-items: center;
}
.ref-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-pale); border: 1px solid rgba(201,162,39,.3);
  border-radius: 100px; padding: 6px 16px;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.ref-title {
  font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.6rem);
  font-weight: 700; line-height: 1.15; color: var(--charcoal);
  text-transform: uppercase; margin-bottom: 16px; letter-spacing: .02em;
}
.ref-title em { font-style: italic; color: var(--gold); text-transform: none; font-weight: 400; }
.ref-desc { font-size: .9375rem; color: var(--body); line-height: 1.75; margin-bottom: 32px; }
.ref-metrics { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.ref-metric {
  flex: 1; min-width: 140px;
  padding: 20px; border-radius: 8px;
  border: 1.5px solid var(--border); background: var(--white);
  box-shadow: var(--shadow);
}
.ref-metric-num {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 600;
  color: var(--charcoal); line-height: 1;
}
.ref-metric-lbl { font-size: .75rem; color: var(--body); margin-top: 6px; line-height: 1.4; }
.ref-img {
  border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 4/3;
}
.ref-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   WHY SECTION (mock layout)
   ============================================================ */

.why-section {
  padding: clamp(72px,7vw,120px) 0;
  background: var(--white);
}
.why-head {
  text-align: center;
  margin-bottom: clamp(40px,4vw,64px);
}
.why-card {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: clamp(28px,3vw,48px) clamp(24px,2.5vw,40px);
  background: var(--white);
  text-align: center;
  transition: border-color var(--t-med), box-shadow var(--t-med), transform var(--t-med);
}
.why-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-md);
  transform: translateY(-4px);
}
.why-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.4rem;
}
.why-card-title {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--charcoal); letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 12px;
}
.why-card-body { font-size: .875rem; color: var(--body); line-height: 1.7; }
/* legacy aliases */
.why-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--charcoal); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 12px; }
.why-desc  { font-size: .875rem; color: var(--body); line-height: 1.7; }

/* ============================================================
   REGISTER SECTION (split layout)
   ============================================================ */

.register-section {
  padding: clamp(72px,7vw,120px) 0;
  background: var(--bg-soft);
}
.register-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px,6vw,100px); align-items: center;
}
.register-info .section-title { margin-bottom: 16px; }
.register-promises { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.promise-row {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .875rem; color: var(--body);
}
.promise-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold-pale); border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; color: var(--gold); flex-shrink: 0; margin-top: 2px;
}
.form-card-title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--charcoal);
  margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.form-submit {
  width: 100%; margin-top: 8px;
  background: var(--gold); color: #fff;
  border: none; border-radius: 6px; padding: 15px 32px;
  font-family: var(--font-body); font-size: .8125rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; transition: background var(--t-fast), box-shadow var(--t-fast);
}
.form-submit:hover { background: var(--gold-dk); box-shadow: 0 6px 24px rgba(201,162,39,.35); }

/* ============================================================
   CTA STRIP
   ============================================================ */

.cta-strip {
  padding: 80px 0;
  background: var(--charcoal);
  text-align: center;
}
.cta-strip .section-tag  { color: var(--gold-light); }
.cta-strip .section-title { color: #fff; margin-bottom: 10px; }
.cta-strip .section-sub  { color: rgba(255,255,255,.5); margin: 0 auto 36px; text-align: center; }
.cta-strip-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}

/* Responsive — referral, register, why */
@media (max-width: 1024px) {
  .referral-grid  { grid-template-columns: 1fr; gap: 40px; }
  .ref-img        { order: -1; }
  .register-wrap  { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .props-grid    { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .ref-metrics   { flex-direction: column; }
  .cta-strip-actions { flex-direction: column; align-items: center; }
}

/* ============================================================
   MARQUEE TICKER
   ============================================================ */

.marquee-bar {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 48px;
  padding: 0 48px;
  font-family: var(--font-body);
  font-size: 8.5px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.marquee-item span { color: var(--gold); margin: 0 4px; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   LAUNCH / COUNTDOWN BAR
   ============================================================ */

.launch-bar {
  background: var(--bg-soft);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.launch-bar-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(24px,4vw,64px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.launch-bar-label { flex-shrink: 0; }
.launch-bar-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); margin-bottom: 10px;
  animation: dotPulse 2.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(201,162,39,.4); }
  60% { opacity:0.6; box-shadow: 0 0 0 8px transparent; }
}
.launch-bar-label-text {
  display: block; font-family: var(--font-body);
  font-size: 8.5px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.launch-bar-heading {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 500;
  color: var(--charcoal); letter-spacing: 0.06em;
}
.countdown-wrap {
  display: flex; align-items: stretch; gap: 0;
  flex: 1; max-width: 560px;
}
.countdown-unit {
  text-align: center; padding: 0 32px;
  border-right: 1px solid var(--border); flex: 1;
}
.countdown-unit:last-child { border-right: none; }
.countdown-num {
  display: block; font-family: var(--font-display);
  font-size: clamp(2.8rem,5vw,4.5rem); font-weight: 400;
  color: var(--gold); line-height: 1; letter-spacing: 0.02em;
}
.countdown-lbl {
  display: block; font-family: var(--font-body);
  font-size: 8px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--muted); margin-top: 10px;
}
.countdown-sep { display: none; }
.countdown-label { font-size: 8px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--muted); margin-top: 8px; display: block; }
.countdown-box { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.launch-bar-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px;
  border: 2px solid var(--gold); color: var(--gold);
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 6px; flex-shrink: 0;
  transition: background var(--t-med), color var(--t-med);
  cursor: pointer;
}
.launch-bar-cta:hover { background: var(--gold); color: #fff; }

@media (max-width: 768px) {
  .launch-bar { padding: 48px 0; }
  .launch-bar-inner { flex-direction: column; padding: 0 24px; gap: 32px; align-items: center; text-align: center; }
  .countdown-unit { padding: 0 20px; }
  .countdown-num { font-size: 2.5rem; }
}

/* ============================================================
   FEATURED PROPERTIES
   ============================================================ */

.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px,1.6vw,28px);
}
@media (max-width: 900px) { .props-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .props-grid { grid-template-columns: 1fr; } }

.prop-card {
  display: block; color: inherit; position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--t-med) var(--ease-silk), box-shadow var(--t-med) var(--ease-silk);
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.prop-card-overlay {
  position: absolute; inset: 0;
  border: 1px solid rgba(201,162,39,0);
  pointer-events: none; z-index: 5;
  border-radius: 12px;
  transition: border-color var(--t-med);
}
.prop-card:hover .prop-card-overlay { border-color: rgba(201,162,39,.35); }
.prop-card-img {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: var(--bg-soft);
}
.prop-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-silk);
}
.prop-card:hover .prop-card-img img { transform: scale(1.07); }
.prop-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.prop-card-placeholder svg { width: 48px; height: 48px; color: var(--muted); }

.prop-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-family: var(--font-body); font-size: 8px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px;
}
.badge-new-launch, .badge-new_launch { background: var(--gold); color: #fff; }
.badge-under-construction, .badge-under_construction { background: rgba(30,80,140,.85); color: #90c0e8; }
.badge-available { background: rgba(20,80,40,.85); color: #80c890; }
.badge-land { background: rgba(80,50,20,.85); color: var(--gold); }
.badge-residential { background: var(--gold-pale); color: var(--gold); border: 1px solid rgba(201,162,39,.35); }

.prop-card-body { padding: 24px 24px 28px; }
.prop-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 8px;
  letter-spacing: 0.02em; line-height: 1.25;
  transition: color var(--t-fast);
}
.prop-card:hover .prop-card-title { color: var(--gold); }
.prop-card-loc, .prop-card-location {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; color: var(--muted);
  margin-bottom: 10px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500;
}
.prop-card-loc svg, .prop-card-location svg { width: 11px; height: 11px; color: var(--gold); flex-shrink: 0; }
.prop-card-desc {
  font-size: 13px; color: var(--body); line-height: 1.7;
  margin-bottom: 18px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.prop-card-specs, .prop-card-meta {
  display: flex; gap: 14px;
  font-size: 11px; color: var(--body); margin-bottom: 18px; letter-spacing: 0.04em;
}
.prop-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px dashed var(--border);
}
.prop-card-price {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600;
  color: var(--charcoal); letter-spacing: 0.02em;
}
.prop-card-cta {
  font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 6px;
  transition: gap var(--t-fast), color var(--t-fast);
}
.prop-card:hover .prop-card-cta { gap: 10px; color: var(--gold-dk); }

/* ============================================================
   ABOUT SPLIT
   ============================================================ */

.about-split-wrap, .about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(8px,1vw,16px); }
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: border-color var(--t-med), box-shadow var(--t-med);
}
.stat-card:hover { border-color: rgba(201,162,39,.45); box-shadow: var(--shadow-md); }
.stat-num {
  display: block; font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 600;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-lbl {
  display: block; font-family: var(--font-body);
  font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}
@media (max-width: 800px) {
  .about-split-wrap, .about-split { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   WHY JUBIMAS
   ============================================================ */

.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px,1.4vw,24px);
}
.why-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color var(--t-med), box-shadow var(--t-med), transform var(--t-med);
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.7s var(--ease-silk);
}
.why-card:hover::before { width: 100%; }
.why-card:hover { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--shadow-md); transform: translateY(-4px); }
.why-card { position: relative; }
.why-icon {
  font-size: 1.6rem; margin-bottom: 18px; display: block;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.why-title {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 12px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.why-desc { font-family: var(--font-body); font-size: 13.5px; color: var(--body); line-height: 1.75; }

@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   REFERRAL
   ============================================================ */

.referral-wrap { text-align: center; max-width: 800px; margin: 0 auto; }
.referral-cards {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; margin: 48px 0; flex-wrap: wrap;
}
.referral-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 36px 52px;
  box-shadow: var(--shadow);
  position: relative;
}
.referral-card::before {
  content: ''; position: absolute;
  top: -1px; left: 24%; right: 24%; height: 2px;
  background: var(--gold); border-radius: 2px; opacity: 0.7;
}
.referral-amount {
  display: block; font-family: var(--font-display);
  font-size: 3rem; font-weight: 600;
  color: var(--gold); line-height: 1;
  margin-bottom: 10px; letter-spacing: 0.02em;
}
.referral-label {
  display: block; font-family: var(--font-body);
  font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted);
}
.referral-plus {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 300; color: var(--border);
}
/* Legacy referral */
.referral-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; }
.referral-reward-card { background: var(--gold-pale); border: 1px solid rgba(201,162,39,.3); padding: 28px 36px; text-align: center; border-radius: 8px; }
.referral-reward-amount { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--gold); display: block; line-height: 1; margin-bottom: 8px; }
.referral-reward-label { font-family: var(--font-body); font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); }
.referral-code-box { background: var(--gold-pale); border: 1px solid rgba(201,162,39,.3); border-radius: 6px; padding: 1.5rem; }

/* ============================================================
   FORMS
   ============================================================ */

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.form-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 48px; right: 48px; height: 2px;
  background: var(--gold); border-radius: 2px; opacity: 0.6;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; }
.form-span-2 { grid-column: span 2; }
.form-label {
  display: block; font-family: var(--font-body);
  font-size: 8.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--body); margin-bottom: 8px;
}
.form-optional { font-size: 9px; font-weight: 400; color: var(--muted); text-transform: none; letter-spacing: 0; margin-left: 4px; }
.form-input {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--charcoal);
  font-family: var(--font-body); font-size: 14.5px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none; appearance: none; -webkit-appearance: none;
}
.form-input::placeholder { color: var(--muted); font-size: 13.5px; }
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,.1); }
.form-input.is-error { border-color: rgba(180,82,82,.6); }
.form-input.uppercase { text-transform: uppercase; }
select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A227' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center; background-size: 12px;
  padding-right: 38px; cursor: pointer;
}
.form-hint { font-size: 11px; color: var(--muted); margin-top: 4px; }
.form-error { font-size: 11px; color: #a05050; margin-top: 4px; min-height: 1rem; }

@media (max-width: 600px) {
  .form-grid-2 { grid-template-columns: 1fr; }
  .form-span-2 { grid-column: span 1; }
  .form-card { padding: 28px 20px; }
}

/* Auth pages */
.form-page-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 24px 60px; background: var(--bg); }
.form-page-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 48px 40px; width: 100%; max-width: 480px; box-shadow: var(--shadow-md); position: relative; }
.form-page-card::before { content: ''; position: absolute; top: -1px; left: 40px; right: 40px; height: 2px; background: var(--gold); opacity: 0.6; border-radius: 2px; }

/* Booking form */
.booking-form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 28px; box-shadow: var(--shadow); }
.booking-form-card .form-label { color: var(--body); }

/* ============================================================
   CTA ROW
   ============================================================ */

.cta-btn-row {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}

/* ============================================================
   PAGE HERO BANNER (about, inner pages with image bg)
   ============================================================ */

.page-hero-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

/* Background image */
.page-hero-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.page-hero-banner:hover .page-hero-banner-bg { transform: scale(1.0); }

/* Overlays */
.page-hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5,5,13,.82) 0%,
    rgba(5,5,13,.60) 55%,
    rgba(5,5,13,.30) 100%
  );
}
.page-hero-banner-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
}

/* Decorative corner lines */
.page-hero-banner-corner {
  position: absolute;
  width: 72px; height: 72px;
  opacity: 0.35;
}
.page-hero-banner-corner.tl {
  top: 32px; left: 40px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.page-hero-banner-corner.tr {
  top: 32px; right: 40px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

/* Gold vertical accent line */
.page-hero-banner::after {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: 0;
  width: 1px; height: 64px;
  background: linear-gradient(to top, transparent, rgba(201,162,39,.5));
}

/* Content */
.page-hero-banner-inner {
  position: relative; z-index: 2;
  width: 100%;
  padding: 140px 0 96px;
  text-align: center;
}
.page-hero-banner-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 9px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.page-hero-banner-eyebrow::before,
.page-hero-banner-eyebrow::after {
  content: ''; display: block;
  width: 32px; height: 1px;
  background: var(--gold); opacity: 0.55;
}
.page-hero-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 600; color: #fff;
  letter-spacing: 0.04em; text-transform: uppercase;
  line-height: 1.1; margin-bottom: 20px;
}
.page-hero-banner-sub {
  font-size: 15px; color: rgba(255,255,255,.6);
  line-height: 1.8; max-width: 500px;
  margin: 0 auto;
}

/* Stat chips row */
.page-hero-banner-chips {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-top: 44px; flex-wrap: wrap;
}
.page-hero-banner-chip {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 36px;
  border-left: 1px solid rgba(201,162,39,.2);
}
.page-hero-banner-chip:first-child { border-left: none; }
.page-hero-banner-chip-num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600; color: var(--gold);
  line-height: 1;
}
.page-hero-banner-chip-lbl {
  font-family: var(--font-body);
  font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: 5px;
}

@media (max-width: 640px) {
  .page-hero-banner-inner { padding: 120px 0 72px; }
  .page-hero-banner-corner { display: none; }
  .page-hero-banner-chip { padding: 12px 20px; }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.faq-item {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s ease;
}
.faq-item:last-child { border-bottom: none; }
.faq-item:hover { background: var(--bg-soft); }
.faq-item.open  { background: var(--white); }

.faq-question {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  user-select: none;
}

/* Number badge */
.faq-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
  min-width: 22px;
}

/* Question text */
.faq-text {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.4;
  transition: color 0.2s ease;
}
.faq-item:hover .faq-text,
.faq-item.open  .faq-text { color: var(--gold-dk); }

/* Pure-CSS toggle — no SVG, no sizing bugs */
.faq-toggle {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.faq-item.open .faq-toggle {
  background: var(--gold);
  border-color: var(--gold);
}
/* Horizontal bar */
.faq-toggle::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 1.5px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: background 0.25s ease;
}
/* Vertical bar — collapses when open */
.faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 1.5px; height: 12px;
  background: var(--gold);
  transform: translate(-50%, -50%) scaleY(1);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.25s ease;
}
.faq-item.open .faq-toggle::before,
.faq-item.open .faq-toggle::after { background: #fff; }
.faq-item.open .faq-toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-answer p {
  padding: 0 28px 24px 70px; /* indent to align with question text */
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--body);
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* Gold left accent when open */
.faq-item.open {
  box-shadow: inset 3px 0 0 var(--gold);
}

/* Contact prompt */
.faq-contact-prompt {
  margin-top: 48px;
  padding: 40px 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
}
.faq-contact-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 10px;
}
.faq-contact-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto 28px;
}

@media (max-width: 640px) {
  .faq-question  { padding: 18px 20px; gap: 14px; }
  .faq-text      { font-size: 0.95rem; }
  .faq-answer p  { padding: 14px 20px 20px; }
  .faq-contact-prompt { padding: 28px 20px; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  padding: 140px 48px 80px;
  text-align: center;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; bottom: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,.3), transparent);
}
.page-hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-body); font-size: 9px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.page-hero-eyebrow::before, .page-hero-eyebrow::after { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); opacity: 0.5; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem,5vw,4rem); font-weight: 600; color: var(--charcoal); margin-bottom: 16px; letter-spacing: 0.03em; text-transform: uppercase; }
.page-hero p { font-size: 15px; color: var(--body); line-height: 1.8; max-width: 520px; margin: 0 auto; }

/* ============================================================
   PROPERTIES & FILTER
   ============================================================ */

.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.filter-tab {
  padding: 9px 22px;
  border: 1.5px solid var(--border);
  font-family: var(--font-body); font-size: 9px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--body); background: transparent; cursor: pointer;
  border-radius: 6px;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.filter-tab:hover { border-color: var(--gold); color: var(--gold); }
.filter-tab.active { background: var(--gold); border-color: var(--gold); color: #fff; font-weight: 700; }

.prop-detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
@media (max-width: 900px) { .prop-detail-layout { grid-template-columns: 1fr; } .prop-detail-gallery-side { display: none; } }

/* Lightbox */
.lightbox-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9000; display: none; align-items: center; justify-content: center; }
.lightbox-overlay.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 86vh; object-fit: contain; }
.gallery-img-btn { cursor: pointer; }

/* ============================================================
   TEAM CARDS
   ============================================================ */

.team-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 28px 20px; text-align: center; box-shadow: var(--shadow); transition: box-shadow var(--t-med); }
.team-card:hover { box-shadow: var(--shadow-md); }
.team-card-photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(201,162,39,.3); margin: 0 auto 16px; display: block; }
.team-card-photo-placeholder { width: 96px; height: 96px; border-radius: 50%; background: var(--gold-pale); border: 2px solid rgba(201,162,39,.25); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 2rem; color: var(--gold); font-family: var(--font-display); }

/* ============================================================
   STATUS BADGES
   ============================================================ */

.badge { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 0.1em; padding: 4px 10px; text-transform: uppercase; border-radius: 4px; }
.status-badge { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; padding: 4px 10px; text-transform: uppercase; border-radius: 4px; }
.status-new { background: rgba(37,99,235,.1); color: #2563eb; }
.status-documents_pending { background: rgba(200,88,12,.1); color: #c55a0d; }
.status-documents_submitted { background: rgba(201,162,39,.12); color: var(--gold-dk); }
.status-deposit_paid { background: rgba(100,60,180,.1); color: #6e4bb5; }
.status-confirmed { background: rgba(22,163,74,.1); color: #14a05a; }
.status-cancelled { background: rgba(180,82,82,.1); color: #b04040; }
.status-submitted { background: rgba(37,99,235,.1); color: #2563eb; }
.status-in_review { background: rgba(201,162,39,.12); color: var(--gold-dk); }
.status-in_progress { background: rgba(200,88,12,.1); color: #c55a0d; }
.status-resolved { background: rgba(22,163,74,.1); color: #14a05a; }
.status-closed { background: rgba(107,114,128,.1); color: var(--muted); }

/* ============================================================
   DOCUMENT UPLOAD
   ============================================================ */

.doc-upload-area {
  border: 1.5px dashed rgba(201,162,39,.35);
  padding: 24px; text-align: center; cursor: pointer;
  border-radius: 8px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.doc-upload-area:hover { border-color: var(--gold); background: var(--gold-dim); }
.doc-upload-area.required-doc::before { content: '* '; color: #a05050; }

/* ============================================================
   ADMIN (kept dark for clarity)
   ============================================================ */

.admin-page { background: #080812; min-height: 100vh; }
.admin-nav { background: #05050D; border-bottom: 1px solid rgba(184,145,58,.08); padding: 0 32px; height: 60px; display: flex; align-items: center; gap: 32px; }
.admin-nav a { font-size: 11px; color: #585870; transition: color var(--t-fast); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.admin-nav a:hover, .admin-nav a.active { color: #CFA84F; }
.admin-content { max-width: 1200px; margin: 0 auto; padding: 40px 32px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: #585870; padding: 12px 16px; border-bottom: 1px solid rgba(184,145,58,.08); text-align: left; }
.admin-table td { padding: 16px; border-bottom: 1px solid rgba(255,255,255,.025); font-size: 13px; color: #C2BBAf; }
.admin-table tr:hover td { background: rgba(184,145,58,.025); }
.admin-stat-card { background: #151526; border: 1px solid rgba(184,145,58,.08); padding: 24px; }

/* Section bg variants */
.section-white { background: #fff; }
.section-cream { background: var(--bg-soft); }
.section-dark { background: var(--charcoal); }
.section-gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); }
.trust-bar { background: var(--bg-soft); border-top: 1px solid var(--border); }
.trust-item { color: var(--muted); transition: color var(--t-fast); }
.trust-item:hover { color: var(--gold); }
.register-section { background: var(--bg-soft); }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 72px;
}
.footer-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(24px,4vw,64px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo { height: 44px; width: auto; display: block; margin-bottom: 16px; opacity: 0.9; }
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 300; font-style: italic;
  color: rgba(240,235,225,.55); margin-bottom: 10px; letter-spacing: 0.06em;
}
.footer-desc { font-family: var(--font-body); font-size: 13px; color: rgba(240,235,225,.3); line-height: 1.8; max-width: 260px; }
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.footer-social-icon {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3);
  border-radius: 6px;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.footer-social-icon svg { width: 15px; height: 15px; }
.footer-social-icon:hover { color: var(--gold); border-color: rgba(201,162,39,.35); background: rgba(201,162,39,.07); }
.footer-col { }
.footer-col-heading {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.footer-col-heading::after { content: ''; display: block; flex: 1; height: 1px; background: rgba(201,162,39,.15); }
.footer-col-links { list-style: none; padding: 0; margin: 0; }
.footer-col-links li { margin-bottom: 10px; }
.footer-col-links a { font-family: var(--font-body); font-size: 15px; color: rgba(240,235,225,.35); transition: color var(--t-fast); }
.footer-col-links a:hover { color: rgba(240,235,225,.8); }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { display: flex; gap: 10px; font-size: 15px; color: rgba(240,235,225,.35); margin-bottom: 14px; align-items: flex-start; line-height: 1.6; }
.footer-contact-list svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--gold); margin-top: 2px; opacity: 0.7; }
.footer-contact-list a { color: rgba(240,235,225,.35); transition: color var(--t-fast); }
.footer-contact-list a:hover { color: rgba(240,235,225,.8); }
.footer-bottom {
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,.18);
  letter-spacing: 0.06em; flex-wrap: wrap; gap: 12px;
}
/* Footer legacy aliases */
.footer-heading { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: rgba(240,235,225,.35); transition: color var(--t-fast); }
.footer-links a:hover { color: rgba(240,235,225,.8); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 10px; font-size: 13px; color: rgba(240,235,225,.35); margin-bottom: 14px; align-items: flex-start; line-height: 1.6; }
.footer-contact a { color: rgba(240,235,225,.35); transition: color var(--t-fast); }
.footer-contact a:hover { color: rgba(240,235,225,.8); }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social-btn { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.3); transition: color var(--t-fast), border-color var(--t-fast); }
.footer-social-btn:hover { color: var(--gold); border-color: rgba(201,162,39,.35); }
.footer-brand p { font-family: var(--font-body); font-size: 15px; line-height: 1.8; }

@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */

.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 52px; height: 52px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  animation: waEntrance 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s both;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.wa-float svg { width: 23px; height: 23px; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(37,211,102,.5); }
@keyframes waEntrance { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ============================================================
   FEATURE CARDS
   ============================================================ */

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--t-med), border-color var(--t-med);
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: rgba(201,162,39,.35); }

/* ============================================================
   TAILWIND COMPAT
   ============================================================ */

.rounded-xl { border-radius: 12px !important; }
.rounded-lg  { border-radius: 8px !important; }
.rounded     { border-radius: 6px !important; }

/* ============================================================
   MOBILE — COMPREHENSIVE 768px FIXES
   ============================================================ */

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section-block { padding: 72px 0; }
  .hero-cta-row        { gap: 10px; }
  .launch-bar          { padding: 48px 0; }
  .launch-bar-inner    { flex-direction: column; align-items: center; padding: 0 20px; gap: 28px; text-align: center; }
  .launch-bar-label    { align-items: center; }
  .launch-bar-heading  { font-size: 1.3rem; }
  .countdown-wrap      { max-width: 100%; width: 100%; justify-content: center; }
  .countdown-unit      { padding: 0 16px; }
  .countdown-num       { font-size: clamp(2rem, 8vw, 3rem); }
  .launch-bar-cta      { width: 100%; max-width: 280px; text-align: center; justify-content: center; }
  .referral-cards      { flex-direction: column; align-items: center; gap: 16px; margin: 36px 0; }
  .referral-card       { padding: 28px 40px; width: 100%; max-width: 300px; }
  .referral-amount     { font-size: clamp(2.2rem, 7vw, 3rem); }
  .referral-plus       { font-size: 1.6rem; }
  .about-split-wrap, .about-split { grid-template-columns: 1fr; gap: 48px; }
  .form-card           { padding: 28px 20px; }
  .form-card::before   { left: 20px; right: 20px; }
  .footer-inner        { padding: 0 20px; }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 36px; }
  .site-footer         { padding-top: 56px; }
  .section-header      { margin-bottom: 48px; }
}

/* ============================================================
   MOBILE — TIGHT 540px FIXES
   ============================================================ */

@media (max-width: 540px) {
  .container  { padding: 0 16px; }
  .section-block { padding: 56px 0; }
  .btn-gold, .btn-gold-outline, .btn-ghost {
    padding: 12px 22px; font-size: 9.5px; letter-spacing: 0.14em;
    width: 100%; justify-content: center;
  }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .nav-inner   { padding: 0 16px; }
  .nav-logo-img { height: 38px; }
  .nav-mobile-drawer { width: 280px; padding: 88px 24px 40px; }
  .launch-bar  { padding: 40px 0; }
  .launch-bar-inner { gap: 20px; padding: 0 16px; }
  .countdown-unit  { padding: 0 10px; }
  .countdown-num   { font-size: clamp(1.7rem, 7.5vw, 2.5rem); }
  .countdown-lbl   { font-size: 7px; letter-spacing: 0.18em; margin-top: 6px; }
  .launch-bar-heading { font-size: 1.1rem; }
  .props-grid  { grid-template-columns: 1fr; gap: 16px; }
  .prop-card-body  { padding: 18px 16px 22px; }
  .prop-card-title { font-size: clamp(1.1rem, 4vw, 1.35rem); }
  .prop-card-price { font-size: 1.1rem; }
  .prop-card-specs { font-size: 10px; gap: 10px; }
  .about-split-wrap, .about-split { gap: 36px; }
  .stat-grid   { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card   { padding: 20px 16px; }
  .stat-num    { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .stat-lbl    { font-size: 7.5px; }
  .why-grid    { grid-template-columns: 1fr; gap: 12px; }
  .why-card    { padding: 24px 20px; }
  .why-title   { font-size: clamp(1rem, 3.5vw, 1.2rem); }
  .referral-card   { padding: 24px 20px; width: 100%; max-width: 100%; }
  .referral-amount { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .form-card   { padding: 24px 16px; }
  .form-card::before { left: 16px; right: 16px; }
  .form-grid-2 { grid-template-columns: 1fr; gap: 14px; }
  .form-span-2 { grid-column: span 1; }
  .form-input  { font-size: 16px; padding: 12px 14px; }
  .form-label  { font-size: 8px; }
  .section-heading { font-size: clamp(1.7rem, 6.5vw, 2.4rem); }
  .section-eyebrow { font-size: 8px; letter-spacing: 0.2em; }
  .section-sub     { font-size: 13.5px; }
  .section-header  { margin-bottom: 36px; }
  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { padding: 0 16px; }
  .site-footer  { padding-top: 48px; }
  .footer-logo  { height: 38px; }
  .footer-tagline { font-size: 0.9rem; }
  .footer-desc  { font-size: 12px; }
  .footer-col-links a, .footer-contact-list li { font-size: 12px; }
  .footer-col-heading { font-size: 8px; }
  .footer-social-icon { width: 30px; height: 30px; border-radius: 5px; }
  .footer-social-icon svg { width: 13px; height: 13px; }
  .footer-bottom { font-size: 10px; flex-direction: column; text-align: center; gap: 8px; padding: 18px 0; }
  .footer-socials { gap: 6px; }
  .marquee-item { font-size: 7.5px; gap: 32px; padding: 0 32px; }
  .cta-btn-row { flex-direction: column; align-items: center; gap: 10px; }
  .cta-btn-row .btn-gold, .cta-btn-row .btn-gold-outline { width: 100%; max-width: 280px; }
  .body-text { font-size: 13px; }
  .wa-float { width: 46px; height: 46px; bottom: 20px; right: 20px; }
  .wa-float svg { width: 20px; height: 20px; }
}
